/* ============================================
   MD DATAVAULT — Global Stylesheet v2
   Dark Amber / Orange Theme + Binary Rain
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Source+Sans+3:wght@400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --white: #ffffff;
  --off-white: #faf8f6;
  --cream: #f5f0eb;
  --light-grey: #e8e2dc;
  --grey: #9a8e82;
  --dark-grey: #5a5047;
  --orange-lightest: #fff3e6;
  --orange-light: #ffb866;
  --orange: #e87a1e;
  --orange-mid: #cc6610;
  --orange-dark: #9e4e0a;
  --orange-darkest: #5c2d06;
  --charcoal: #1e1814;
  --charcoal-light: #2a2420;
  --charcoal-mid: #3a322c;
  --text-primary: #1e1814;
  --text-secondary: #5a5047;
  --text-muted: #8a7e72;
  --text-on-dark: #f0ebe6;
  --shadow-sm: 0 1px 3px rgba(30,24,20,0.08);
  --shadow-md: 0 4px 20px rgba(30,24,20,0.12);
  --shadow-lg: 0 12px 48px rgba(30,24,20,0.18);
  --shadow-xl: 0 24px 72px rgba(30,24,20,0.24);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-2xl: 48px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --glass-light: rgba(245, 240, 235, 0.92);
  --glass-white: rgba(255, 255, 255, 0.94);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* --- Binary Rain Canvas --- */
#binary-rain {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); letter-spacing: -0.01em; }
p { font-size: 1.05rem; color: var(--text-secondary); }

/* --- Container --- */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 2rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2.2rem; border-radius: 60px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: none; transition: var(--transition); letter-spacing: 0.01em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-mid));
  color: var(--white);
  box-shadow: 0 4px 24px rgba(232,122,30,0.4), 0 1px 0 rgba(255,255,255,0.1) inset;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--orange-mid), var(--orange-dark));
  transform: translateY(-2px); box-shadow: 0 8px 36px rgba(232,122,30,0.5);
}
.btn-outline {
  background: transparent; color: var(--orange-dark); border: 2px solid var(--orange-light);
}
.btn-outline:hover { background: var(--orange-lightest); border-color: var(--orange); }
.btn-white { background: var(--white); color: var(--orange-dark); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-glass {
  background: rgba(255,255,255,0.12); color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.btn-glass:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); }

/* --- Navigation --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 0; transition: var(--transition); background: transparent;
}
.navbar.scrolled {
  background: rgba(20,16,12,0.9);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.35), 0 1px 0 rgba(232,122,30,0.15);
  padding: 0.7rem 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }

/* Logo */
.logo { display: flex; align-items: center; gap: 0; text-decoration: none; }
.logo-img {
  height: 168px; width: auto; display: block;
  transition: var(--transition);
}
.logo-img:hover { opacity: 0.9; }
/* Footer logo */
.footer-logo-img {
  height: 168px !important;
  width: auto;
  max-width: 100%;
}
.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.1rem; box-shadow: 0 3px 14px rgba(232,122,30,0.35);
}

.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-family: var(--font-display); font-weight: 500; font-size: 0.92rem;
  transition: var(--transition); position: relative; color: rgba(255,255,255,0.75);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0;
  height: 2px; background: var(--orange); transition: var(--transition); border-radius: 2px;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta { margin-left: 0.5rem; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-toggle span { width: 26px; height: 2.5px; border-radius: 3px; transition: var(--transition); background: var(--white); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 75%; max-width: 340px; height: 100vh;
    background: rgba(20,16,12,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    flex-direction: column; align-items: flex-start; padding: 5rem 2.5rem 2rem; gap: 1.5rem;
    box-shadow: var(--shadow-xl); transition: var(--transition); z-index: 999;
    border-left: 1px solid rgba(232,122,30,0.15);
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: rgba(255,255,255,0.7) !important; }
  .nav-links a:hover, .nav-links a.active { color: var(--white) !important; }
  .nav-cta { margin-left: 0; margin-top: 1rem; }
  .nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); z-index: 998; }
  .nav-overlay.open { display: block; }
}

/* --- Hero --- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 8rem 0 5rem; overflow: hidden; background: transparent; color: var(--white); z-index: 1;
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.5;
  background-image:
    radial-gradient(circle at 15% 85%, rgba(232,122,30,0.18) 0%, transparent 55%),
    radial-gradient(circle at 85% 15%, rgba(255,184,102,0.1) 0%, transparent 55%);
  pointer-events: none; z-index: 1;
}
.hero-grid-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(232,122,30,0.12) 1px, transparent 1px);
  background-size: 36px 36px; pointer-events: none; opacity: 0.4; z-index: 1;
}
.hero .container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; position: relative; z-index: 2;
}
.hero-content { max-width: 600px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1.3rem; background: rgba(232,122,30,0.15);
  border: 1px solid rgba(232,122,30,0.35); border-radius: 60px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.78rem;
  color: var(--orange-light); margin-bottom: 1.5rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.hero-badge .pulse {
  width: 8px; height: 8px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,122,30,0.6); }
  50% { box-shadow: 0 0 0 8px rgba(232,122,30,0); }
}
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 50%, #ff9633 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p { color: rgba(255,255,255,0.72); font-size: 1.15rem; margin-bottom: 2.5rem; max-width: 500px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero Visual Card */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-visual-card {
  width: 100%; max-width: 480px;
  background: rgba(42,36,32,0.72);
  border-radius: var(--radius-xl); padding: 2.5rem;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(232,122,30,0.1);
  position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.hero-visual-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange-dark), var(--orange), var(--orange-light), var(--orange));
}
.hv-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.hv-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(232,122,30,0.25), rgba(255,184,102,0.15));
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  border: 1px solid rgba(232,122,30,0.2);
}
.hv-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--white); }
.hv-status { font-size: 0.82rem; color: var(--orange-light); font-weight: 500; }
.hv-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.hv-metric {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md); padding: 1.2rem; text-align: center; transition: var(--transition);
}
.hv-metric:hover { background: rgba(232,122,30,0.1); border-color: rgba(232,122,30,0.2); }
.hv-metric-value { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: var(--orange-light); }
.hv-metric-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 0.2rem; }
.hv-insight {
  background: rgba(232,122,30,0.1); border: 1px solid rgba(232,122,30,0.18);
  border-radius: var(--radius-md); padding: 1rem 1.2rem;
  display: flex; align-items: flex-start; gap: 0.8rem;
}
.hv-insight-icon {
  width: 32px; height: 32px; background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.9rem; flex-shrink: 0;
}
.hv-insight-text { font-size: 0.88rem; color: rgba(255,255,255,0.72); line-height: 1.5; }

.float-badge {
  position: absolute; background: rgba(42,36,32,0.85); border: 1px solid rgba(232,122,30,0.2);
  border-radius: var(--radius-md); padding: 0.7rem 1.1rem; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-display); font-weight: 600; font-size: 0.82rem;
  color: rgba(255,255,255,0.85); animation: float 4s ease-in-out infinite; z-index: 3;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.float-badge.fb-1 { top: 8%; right: -5%; }
.float-badge.fb-2 { bottom: 15%; left: -8%; animation-delay: 1.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.fb-dot { width: 10px; height: 10px; border-radius: 50%; }
.fb-dot.orange { background: var(--orange); box-shadow: 0 0 8px rgba(232,122,30,0.6); }
.fb-dot.amber { background: var(--orange-light); box-shadow: 0 0 8px rgba(255,184,102,0.6); }

/* --- Section Shared --- */
.section { padding: 6rem 0; position: relative; z-index: 1; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-label {
  font-family: var(--font-display); font-weight: 700; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--orange); margin-bottom: 0.8rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 560px; margin: 0 auto; }

/* --- Features Section --- */
.features-section { background: var(--glass-light); backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); z-index: 1; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.feature-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2.2rem;
  transition: var(--transition); border: 1px solid rgba(232,122,30,0.06);
  position: relative; overflow: hidden; box-shadow: var(--shadow-sm);
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange-light), var(--orange)); opacity: 0; transition: var(--transition);
}
.feature-card:hover {
  border-color: rgba(232,122,30,0.2);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(232,122,30,0.08);
  transform: translateY(-6px);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--orange-lightest), rgba(232,122,30,0.1));
  border: 1px solid rgba(232,122,30,0.12);
}
.feature-card h3 { margin-bottom: 0.8rem; color: var(--charcoal); }
.feature-card p { font-size: 0.95rem; }

/* --- Stats Bar --- */
.stats-bar {
  padding: 4rem 0; position: relative; overflow: hidden; z-index: 1;
  background: rgba(20,16,12,0.82);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(232,122,30,0.12); border-bottom: 1px solid rgba(232,122,30,0.12);
}
.stats-bar::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(232,122,30,0.04) 30%, rgba(232,122,30,0.04) 70%, transparent);
  pointer-events: none;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; z-index: 1; }
.stat-item { text-align: center; color: var(--white); }
.stat-number {
  font-family: var(--font-display); font-weight: 800; font-size: 2.8rem; margin-bottom: 0.3rem;
  color: var(--orange-light); text-shadow: 0 0 30px rgba(255,184,102,0.3);
}
.stat-label { font-size: 0.9rem; opacity: 0.6; font-family: var(--font-display); letter-spacing: 0.02em; }

/* --- Product / Services Layout --- */
.product-section { background: var(--glass-white); backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); z-index: 1; }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.product-visual {
  background: linear-gradient(150deg, var(--charcoal), var(--charcoal-mid));
  border-radius: var(--radius-xl); padding: 3rem; position: relative;
  box-shadow: var(--shadow-xl); border: 1px solid rgba(232,122,30,0.1);
}
.product-screen {
  background: rgba(30,24,20,0.8); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}
.ps-bar { display: flex; gap: 6px; margin-bottom: 1.5rem; }
.ps-dot { width: 10px; height: 10px; border-radius: 50%; }
.ps-dot:first-child { background: #ff6b6b; }
.ps-dot:nth-child(2) { background: #ffd93d; }
.ps-dot:nth-child(3) { background: var(--orange); }
.ps-line { height: 10px; border-radius: 6px; margin-bottom: 0.8rem; background: rgba(255,255,255,0.06); }
.ps-line.short { width: 40%; } .ps-line.medium { width: 65%; } .ps-line.long { width: 85%; }
.ps-line.accent { background: linear-gradient(90deg, var(--orange-dark), var(--orange)); opacity: 0.5; }
.ps-chart {
  display: flex; align-items: flex-end; gap: 8px; height: 100px;
  margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.06);
}
.ps-chart-bar {
  flex: 1; border-radius: 6px 6px 0 0;
  background: linear-gradient(to top, var(--orange-dark), var(--orange));
  opacity: 0.65; transition: var(--transition);
}
.ps-chart-bar:hover { opacity: 1; }
.product-content .section-label { text-align: left; }
.product-content h2 { margin-bottom: 1.2rem; }
.product-content > p { margin-bottom: 2rem; }
.product-features { margin-bottom: 2rem; }
.pf-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.2rem; }
.pf-check {
  width: 28px; height: 28px; border-radius: 8px; background: var(--orange-lightest);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); flex-shrink: 0; font-weight: 700; font-size: 0.9rem;
  border: 1px solid rgba(232,122,30,0.15);
}
.pf-text { font-size: 0.95rem; color: var(--text-secondary); padding-top: 0.2rem; }

/* --- How It Works --- */
.how-section { background: rgba(245,240,235,0.9); backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); z-index: 1; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 50px; left: 15%; right: 15%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange-light) 20%, var(--orange) 50%, var(--orange-light) 80%, transparent);
  z-index: 0;
}
.step-card {
  text-align: center; position: relative; z-index: 1;
  background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md); border: 1px solid rgba(232,122,30,0.06); transition: var(--transition);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(232,122,30,0.15); }
.step-number {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-lightest), rgba(232,122,30,0.12));
  border: 2.5px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.3rem;
  color: var(--orange-dark); margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md), 0 0 20px rgba(232,122,30,0.15);
}

/* --- Partners --- */
.partners-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.partner-tag {
  background: var(--white); border: 1px solid var(--light-grey);
  border-radius: var(--radius-md); padding: 1.4rem 1.5rem; text-align: center;
  font-family: var(--font-display); font-weight: 600; font-size: 0.92rem;
  color: var(--text-secondary); transition: var(--transition); box-shadow: var(--shadow-sm);
}
.partner-tag:hover {
  background: var(--orange-lightest); border-color: var(--orange-light);
  color: var(--orange-dark); transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(232,122,30,0.1);
}
.partner-tag .tag-icon { display: block; font-size: 1.8rem; margin-bottom: 0.6rem; }

/* --- About / Legal Hero --- */
.about-hero {
  background: transparent; color: var(--white); padding: 10rem 0 5rem;
  position: relative; overflow: hidden; z-index: 1;
}
.about-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(232,122,30,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,184,102,0.07) 0%, transparent 50%);
  pointer-events: none; z-index: 0;
}
.about-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(232,122,30,0.06) 1px, transparent 1px);
  background-size: 36px 36px; pointer-events: none; z-index: 0;
}
.about-hero .container { position: relative; z-index: 1; }
.about-hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.about-hero p { color: rgba(255,255,255,0.7); font-size: 1.2rem; max-width: 650px; }

/* --- Purpose --- */
.purpose-section { padding: 6rem 0; background: var(--glass-white); backdrop-filter: blur(2px); z-index: 1; }
.purpose-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: start; }
.purpose-content h2 { margin-bottom: 1.5rem; }
.purpose-content p { margin-bottom: 1.5rem; line-height: 1.85; }
.purpose-content p.lead { font-size: 1.15rem; color: var(--text-primary); font-weight: 500; }
.purpose-sidebar { position: sticky; top: 6rem; }
.purpose-card {
  background: linear-gradient(150deg, rgba(255,243,230,0.9), rgba(245,240,235,0.9));
  border-radius: var(--radius-xl); padding: 2.5rem;
  border: 1px solid rgba(232,122,30,0.15); box-shadow: var(--shadow-md);
}
.purpose-card h3 { margin-bottom: 1.5rem; color: var(--charcoal); }
.pc-value { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.2rem; }
.pc-icon {
  width: 38px; height: 38px; border-radius: var(--radius-sm); background: var(--white);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 1.1rem; box-shadow: var(--shadow-sm); border: 1px solid rgba(232,122,30,0.08);
}
.pc-value-text strong { display: block; font-size: 0.95rem; margin-bottom: 0.1rem; color: var(--charcoal); }
.pc-value-text span { font-size: 0.85rem; color: var(--text-muted); }

/* --- Team --- */
.team-section { background: rgba(245,240,235,0.9); backdrop-filter: blur(2px); z-index: 1; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2.2rem;
  text-align: center; transition: var(--transition);
  border: 1px solid rgba(232,122,30,0.06); box-shadow: var(--shadow-sm);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(232,122,30,0.15); }
.team-avatar {
  width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-lightest), rgba(232,122,30,0.15));
  margin: 0 auto 1.2rem; display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; border: 2px solid rgba(232,122,30,0.12);
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.team-role { font-size: 0.85rem; color: var(--orange); font-weight: 600; font-family: var(--font-display); }

/* --- Capability Cards --- */
.capability-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.capability-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem;
  border: 1px solid rgba(232,122,30,0.08); transition: var(--transition); box-shadow: var(--shadow-sm);
}
.capability-card:hover {
  border-color: rgba(232,122,30,0.2); box-shadow: var(--shadow-md); transform: translateY(-4px);
}
.capability-card h3 { margin-bottom: 0.8rem; }
.cap-icon { font-size: 2rem; margin-bottom: 1rem; }

/* --- Contact --- */
.contact-section { background: rgba(245,240,235,0.9); backdrop-filter: blur(2px); z-index: 1; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-form {
  background: var(--white); border-radius: var(--radius-xl); padding: 2.8rem;
  box-shadow: var(--shadow-md); border: 1px solid rgba(232,122,30,0.08);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: 0.88rem; color: var(--text-primary); margin-bottom: 0.5rem;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.9rem 1.2rem; border: 1.5px solid var(--light-grey);
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.95rem;
  color: var(--text-primary); background: var(--white); transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--orange); box-shadow: 0 0 0 4px rgba(232,122,30,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.ci-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 1.8rem;
  display: flex; align-items: flex-start; gap: 1.2rem; transition: var(--transition);
  margin-bottom: 1.5rem; border: 1px solid rgba(232,122,30,0.06); box-shadow: var(--shadow-sm);
}
.ci-card:hover { box-shadow: var(--shadow-md); border-color: rgba(232,122,30,0.15); }
.ci-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md); background: var(--orange-lightest);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  flex-shrink: 0; border: 1px solid rgba(232,122,30,0.1);
}
.ci-card h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.ci-card p { font-size: 0.9rem; }

/* --- CTA Section --- */
.cta-section {
  background: rgba(20,16,12,0.78); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 5.5rem 0; text-align: center; position: relative; overflow: hidden; z-index: 1;
  border-top: 1px solid rgba(232,122,30,0.15); border-bottom: 1px solid rgba(232,122,30,0.15);
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(232,122,30,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(255,184,102,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.75); margin-bottom: 2.5rem; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- Footer --- */
.footer {
  background: rgba(18,14,10,0.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  color: rgba(255,255,255,0.6); padding: 4.5rem 0 2rem;
  position: relative; z-index: 1; border-top: 1px solid rgba(232,122,30,0.12);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo { color: var(--white); margin-bottom: 1rem; max-width: 100%; overflow: hidden; }
.footer-brand p { font-size: 0.9rem; max-width: 300px; line-height: 1.7; }
.footer h4 {
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.9); margin-bottom: 1.2rem; font-family: var(--font-display);
}
.footer ul li { margin-bottom: 0.6rem; }
.footer ul a { font-size: 0.9rem; color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer ul a:hover { color: var(--orange-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem;
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--orange-light); }

/* --- Partners section with inline bg style --- */
.section[style*="background:var(--white)"], section[style*="background:var(--white)"] {
  background: var(--glass-white) !important; backdrop-filter: blur(2px); z-index: 1;
}

/* --- Animations --- */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* --- Legal Pages --- */
.legal-hero {
  background: transparent; color: var(--white); padding: 10rem 0 4rem;
  position: relative; overflow: hidden; z-index: 1;
}
.legal-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(232,122,30,0.06) 1px, transparent 1px);
  background-size: 36px 36px; pointer-events: none;
}
.legal-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 60%, rgba(232,122,30,0.1) 0%, transparent 55%);
  pointer-events: none;
}
.legal-hero .container { position: relative; z-index: 1; }
.legal-hero h1 { color: var(--white); margin-bottom: 1rem; font-size: clamp(2rem, 4vw, 3rem); }
.legal-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; }
.legal-body {
  padding: 4rem 0 6rem; background: var(--glass-white);
  backdrop-filter: blur(2px); z-index: 1; position: relative;
}
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 {
  font-size: 1.5rem; color: var(--charcoal); margin: 3rem 0 1rem;
  padding-top: 1.5rem; border-top: 1px solid var(--light-grey);
}
.legal-content h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.legal-content h3 { font-size: 1.15rem; color: var(--orange-dark); margin: 2rem 0 0.8rem; }
.legal-content p { margin-bottom: 1rem; line-height: 1.85; font-size: 1rem; }
.legal-content ul { margin: 0.5rem 0 1.5rem 1.5rem; list-style: disc; }
.legal-content ul li { margin-bottom: 0.5rem; line-height: 1.75; color: var(--text-secondary); font-size: 1rem; }
.legal-meta {
  background: var(--off-white); padding: 1.5rem 2rem; margin-bottom: 2.5rem;
  border-left: 4px solid var(--orange); border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.legal-meta p { margin-bottom: 0.3rem; font-size: 0.92rem; }
.legal-meta strong { color: var(--text-primary); }
.callout-box {
  background: linear-gradient(135deg, rgba(232,122,30,0.05), rgba(255,184,102,0.08));
  border: 1px solid rgba(232,122,30,0.15); border-radius: var(--radius-md); padding: 1.8rem 2rem; margin: 2rem 0;
}
.callout-box h4 { font-family: var(--font-display); font-size: 1.05rem; color: var(--orange-dark); margin-bottom: 0.6rem; }
.callout-box p { margin-bottom: 0; font-size: 0.95rem; }
.cookie-table {
  width: 100%; border-collapse: collapse; margin: 1.5rem 0 2rem; font-size: 0.92rem;
  border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm);
}
.cookie-table th {
  background: var(--charcoal); color: var(--white); font-family: var(--font-display); font-weight: 600;
  padding: 1rem 1.2rem; text-align: left; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em;
}
.cookie-table td { padding: 0.9rem 1.2rem; border-bottom: 1px solid var(--light-grey); color: var(--text-secondary); vertical-align: top; }
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table tr:nth-child(even) td { background: var(--off-white); }
.cookie-table code { background: rgba(232,122,30,0.08); padding: 0.15rem 0.45rem; border-radius: 4px; font-size: 0.85rem; color: var(--orange-dark); }

/* --- 404 --- */
.error-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: transparent; position: relative; overflow: hidden; padding: 2rem; z-index: 1;
}
.error-page::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(232,122,30,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.error-page .hero-grid-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(232,122,30,0.08) 1px, transparent 1px);
  background-size: 40px 40px; pointer-events: none; opacity: 0.4;
}
.error-card {
  text-align: center; max-width: 560px; position: relative; z-index: 2;
  background: rgba(30,24,20,0.65); padding: 4rem 3rem; border-radius: var(--radius-2xl);
  border: 1px solid rgba(232,122,30,0.15); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-xl);
}
.error-code {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(6rem, 15vw, 10rem); line-height: 1;
  background: linear-gradient(135deg, var(--orange-light), var(--orange), var(--orange-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 0.5rem; letter-spacing: -0.04em;
}
.error-icon {
  width: 72px; height: 72px; border-radius: 50%; background: rgba(232,122,30,0.12);
  display: flex; align-items: center; justify-content: center; font-size: 2rem;
  margin: 0 auto 1.5rem; box-shadow: 0 0 40px rgba(232,122,30,0.2); border: 1px solid rgba(232,122,30,0.2);
}
.error-card h1 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--white); margin-bottom: 1rem; }
.error-card p {
  font-size: 1.05rem; margin-bottom: 2.5rem; color: rgba(255,255,255,0.6);
  max-width: 440px; margin-left: auto; margin-right: auto;
}
.error-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.error-links { margin-top: 2.5rem; display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.error-links a { font-family: var(--font-display); font-weight: 500; font-size: 0.9rem; color: var(--orange-light); transition: var(--transition); }
.error-links a:hover { color: var(--orange); text-decoration: underline; }
.error-pulse {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,122,30,0.06) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation: errorPulse 4s ease-in-out infinite; pointer-events: none;
}
@keyframes errorPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* --- Cookie Banner --- */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 10000; transform: translateY(100%); transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner.dismissed { transform: translateY(110%); pointer-events: none; }
.cookie-backdrop { position: fixed; inset: 0; background: rgba(30,24,20,0.35); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); z-index: 9999; opacity: 0; transition: opacity 0.4s ease; pointer-events: none; }
.cookie-backdrop.visible { opacity: 1; pointer-events: auto; }
.cookie-backdrop.dismissed { opacity: 0; pointer-events: none; }
.cb-inner { background: rgba(255,255,255,0.97); border-top: 3px solid var(--orange); box-shadow: 0 -8px 48px rgba(30,24,20,0.25); padding: 2rem 2.5rem; backdrop-filter: blur(12px); }
.cb-layout { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; gap: 2.5rem; }
.cb-icon { width: 52px; height: 52px; border-radius: var(--radius-md); background: var(--orange-lightest); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0; border: 1px solid rgba(232,122,30,0.15); }
.cb-text { flex: 1; }
.cb-text h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--charcoal); margin-bottom: 0.35rem; }
.cb-text p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }
.cb-text a { color: var(--orange); text-decoration: underline; font-weight: 500; }
.cb-text a:hover { color: var(--orange-dark); }
.cb-actions { display: flex; gap: 0.8rem; flex-shrink: 0; }
.cb-btn { padding: 0.75rem 1.6rem; border-radius: 60px; font-family: var(--font-display); font-weight: 600; font-size: 0.88rem; cursor: pointer; border: none; transition: var(--transition); white-space: nowrap; }
.cb-btn-accept { background: var(--orange); color: var(--white); box-shadow: 0 3px 14px rgba(232,122,30,0.35); }
.cb-btn-accept:hover { background: var(--orange-mid); transform: translateY(-1px); }
.cb-btn-decline { background: var(--off-white); color: var(--text-secondary); border: 1.5px solid var(--light-grey); }
.cb-btn-decline:hover { background: var(--light-grey); color: var(--text-primary); }
.cb-btn-settings { background: transparent; color: var(--orange-dark); padding: 0.75rem 1.2rem; text-decoration: underline; text-underline-offset: 3px; }
.cb-settings-panel { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; padding: 0 2.5rem; background: var(--off-white); }
.cb-settings-panel.open { max-height: 500px; padding: 1.5rem 2.5rem; }
.cb-settings-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.cb-toggle-group { display: flex; align-items: flex-start; gap: 0.8rem; }
.cb-toggle-info h5 { font-family: var(--font-display); font-weight: 700; font-size: 0.88rem; color: var(--text-primary); margin-bottom: 0.2rem; }
.cb-toggle-info p { font-size: 0.78rem; color: var(--text-muted); margin: 0; line-height: 1.5; }
.cb-switch { position: relative; width: 44px; height: 24px; flex-shrink: 0; margin-top: 2px; }
.cb-switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.cb-slider { position: absolute; inset: 0; background: var(--light-grey); border-radius: 24px; cursor: pointer; transition: var(--transition); }
.cb-slider::before { content: ''; position: absolute; width: 18px; height: 18px; background: var(--white); border-radius: 50%; top: 3px; left: 3px; transition: var(--transition); box-shadow: 0 1px 4px rgba(0,0,0,0.15); }
.cb-switch input:checked + .cb-slider { background: var(--orange); }
.cb-switch input:checked + .cb-slider::before { transform: translateX(20px); }
.cb-switch input:disabled + .cb-slider { opacity: 0.6; cursor: not-allowed; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero .container, .product-layout, .purpose-layout, .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .features-grid, .steps-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { order: -1; }
  .purpose-sidebar { position: static; }
}
@media (max-width: 900px) {
  .cb-layout { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .cb-icon { display: none; }
  .cb-actions { width: 100%; flex-wrap: wrap; }
  .cb-btn-accept, .cb-btn-decline { flex: 1; text-align: center; }
  .cb-settings-inner { grid-template-columns: 1fr; }
  .cb-inner { padding: 1.5rem; }
  .cb-settings-panel.open { padding: 1.2rem 1.5rem; }
}
@media (max-width: 640px) {
  .features-grid, .steps-grid, .capability-grid, .team-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .hero { padding: 7rem 0 3rem; }
  .section { padding: 4rem 0; }
  .steps-grid::before { display: none; }
  .float-badge { display: none; }
}

/* ============================================
   DATA-BROKER.CO.UK INSPIRED REDESIGN
   ============================================ */

/* --- Top Info Bar --- */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  height: 36px;
  background: rgba(12, 9, 6, 0.97);
  border-bottom: 1px solid rgba(232,122,30,0.18);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.topbar.hidden { transform: translateY(-100%); }
.topbar .container { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.topbar-left {
  display: flex; align-items: center; gap: 1.1rem;
  font-family: var(--font-display); font-size: 0.71rem;
  color: rgba(255,255,255,0.48); font-weight: 500; letter-spacing: 0.02em;
}
.topbar-sep { color: rgba(232,122,30,0.3); font-size: 0.9rem; }
.topbar-right {
  display: flex; align-items: center; gap: 1.5rem;
  font-family: var(--font-display); font-size: 0.78rem;
}
.topbar-right a { color: var(--orange-light); font-weight: 600; transition: var(--transition); }
.topbar-right a:hover { color: #fff; }

/* Offset navbar below topbar */
.navbar { top: 36px; }
.navbar.at-top { top: 0; }

/* --- Hero Centered Variant --- */
.hero.hero-centered { padding-top: calc(36px + 6rem); padding-bottom: 7rem; position: relative; }
.hero.hero-centered .container {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}
.hero-center {
  max-width: 820px;
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.hero-center .hero-badge { margin-bottom: 1.5rem; }
.hero-center h1 { font-size: clamp(3rem, 6.5vw, 5.2rem); margin-bottom: 1.4rem; }
.hero-center > p { max-width: 640px; font-size: 1.2rem; color: rgba(240,235,230,0.75); margin-bottom: 2.2rem; }
.hero-center .hero-actions { justify-content: center; flex-wrap: wrap; }
.hero-scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  z-index: 3; cursor: default;
}
.hero-scroll-indicator > span {
  font-family: var(--font-display); font-size: 0.68rem; font-weight: 600;
  color: rgba(255,255,255,0.38); text-transform: uppercase; letter-spacing: 0.18em;
}
.scroll-line {
  width: 1.5px; height: 36px;
  background: linear-gradient(to bottom, rgba(232,122,30,0.55), transparent);
  animation: scrollDrop 2.2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%, 100% { opacity: 0.35; transform: scaleY(0.7) translateY(-4px); }
  50% { opacity: 1; transform: scaleY(1) translateY(4px); }
}

/* --- Intro Section (text + dashboard card, 2-col) --- */
.intro-section {
  background: var(--glass-white);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  position: relative; z-index: 1;
}
.intro-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.intro-content h2 { margin-bottom: 1.2rem; }
.intro-content p { margin-bottom: 1rem; }
.intro-visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  padding: 2rem 0;
}

/* --- Why Section (data-broker image-card style) --- */
.why-section {
  background: rgba(245,240,235,0.92);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  position: relative; z-index: 1;
}
.why-intro {
  max-width: 780px; margin: 0 auto 3.5rem; text-align: center;
}
.why-intro h2 { margin-bottom: 1rem; }
.why-intro > p { margin-bottom: 1.6rem; }
.why-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.why-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid rgba(232,122,30,0.07);
  transition: var(--transition); display: flex; flex-direction: column;
}
.why-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-xl);
  border-color: rgba(232,122,30,0.18);
}
.why-card-visual {
  height: 200px; position: relative; overflow: hidden;
  display: flex; align-items: center; padding: 2rem 1.8rem; gap: 1.5rem;
}
.wv-1 { background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 55%, rgba(158,78,10,0.45) 100%); }
.wv-2 { background: linear-gradient(135deg, #1a1410 0%, var(--charcoal-mid) 50%, rgba(92,45,6,0.55) 100%); }
.wv-3 { background: linear-gradient(135deg, var(--charcoal-mid) 0%, #1a1410 55%, rgba(232,122,30,0.22) 100%); }
.why-card-visual::before {
  content: ''; position: absolute;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,122,30,0.1) 0%, transparent 70%);
  top: -40px; right: -30px; pointer-events: none;
}
.why-card-visual::after {
  content: ''; position: absolute;
  width: 90px; height: 90px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,184,102,0.07) 0%, transparent 70%);
  bottom: 15px; right: 65px; pointer-events: none;
}
.wv-icon { font-size: 3rem; flex-shrink: 0; position: relative; z-index: 1; filter: drop-shadow(0 4px 14px rgba(232,122,30,0.45)); }
.wv-lines { display: flex; flex-direction: column; gap: 9px; flex: 1; position: relative; z-index: 1; }
.wv-line { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.08); }
.wv-line.long { width: 92%; }
.wv-line.medium { width: 65%; background: rgba(232,122,30,0.32); }
.wv-line.short { width: 40%; }
.why-card-body { padding: 1.8rem 2rem 2rem; flex: 1; display: flex; flex-direction: column; }
.why-card-body h3 { font-size: 1.12rem; margin-bottom: 0.65rem; color: var(--charcoal); }
.why-card-body > p { font-size: 0.92rem; line-height: 1.65; flex: 1; margin-bottom: 1.2rem; }
.card-link {
  font-family: var(--font-display); font-weight: 700; font-size: 0.88rem;
  color: var(--orange); transition: var(--transition);
  display: inline-flex; align-items: center; gap: 0.3rem; margin-top: auto;
}
.card-link:hover { color: var(--orange-dark); gap: 0.5rem; }

/* --- Stats Ticker (scrolling marquee) --- */
.stats-ticker {
  overflow: hidden; position: relative; z-index: 1;
  background: rgba(18,13,9,0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(232,122,30,0.15);
  border-bottom: 1px solid rgba(232,122,30,0.15);
}
.stats-ticker::before, .stats-ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 110px; z-index: 2; pointer-events: none;
}
.stats-ticker::before { left: 0; background: linear-gradient(to right, rgba(18,13,9,0.95), transparent); }
.stats-ticker::after  { right: 0; background: linear-gradient(to left,  rgba(18,13,9,0.95), transparent); }
.ticker-track {
  display: flex; align-items: center;
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap; width: max-content;
  padding: 1.1rem 0;
}
.stats-ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  font-family: var(--font-display); font-size: 1.08rem;
  color: rgba(255,255,255,0.75); padding: 0 2.8rem; white-space: nowrap;
}
.ticker-item strong { color: var(--orange-light); font-weight: 800; font-size: 1.22rem; margin-right: 0.35rem; }
.ticker-sep { color: var(--orange); font-size: 1.3rem; font-weight: 700; flex-shrink: 0; padding: 0 0.5rem; }

/* --- Compliance Section --- */
.compliance-section {
  background: var(--glass-white);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  position: relative; z-index: 1;
}
.compliance-layout { display: grid; grid-template-columns: 1.15fr 1fr; gap: 5rem; align-items: start; }
.compliance-content h2 { margin-bottom: 1.2rem; }
.compliance-content p { margin-bottom: 1.1rem; }
.compliance-badges {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem;
  padding-top: 0.5rem;
}
.badge-card {
  background: var(--off-white); border-radius: var(--radius-md);
  padding: 1.5rem 1.2rem; border: 1px solid rgba(232,122,30,0.1);
  transition: var(--transition); text-align: center;
}
.badge-card:hover {
  background: var(--orange-lightest); border-color: rgba(232,122,30,0.28);
  transform: translateY(-3px); box-shadow: var(--shadow-md);
}
.badge-icon { font-size: 1.9rem; margin-bottom: 0.55rem; }
.badge-label { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--charcoal); margin-bottom: 0.3rem; }
.badge-desc { font-size: 0.76rem; color: var(--text-muted); line-height: 1.5; }

/* --- Insights / Blog Section --- */
.insights-section {
  background: rgba(245,240,235,0.92);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  position: relative; z-index: 1;
}
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.insight-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(232,122,30,0.07);
  transition: var(--transition); display: flex; flex-direction: column;
}
.insight-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: rgba(232,122,30,0.18);
}
.insight-visual {
  height: 190px; position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 1.2rem;
}
.iv-1 { background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 45%, rgba(158,78,10,0.38) 100%); }
.iv-2 { background: linear-gradient(135deg, #181e12 0%, var(--charcoal) 50%, rgba(24,48,18,0.45) 100%); }
.iv-3 { background: linear-gradient(135deg, #121424 0%, var(--charcoal) 50%, rgba(18,20,44,0.45) 100%); }
.insight-visual::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(232,122,30,0.07) 1px, transparent 1px);
  background-size: 22px 22px; pointer-events: none;
}
.iv-tag {
  position: relative; z-index: 1;
  background: var(--orange); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.09em;
  padding: 0.32rem 0.85rem; border-radius: 60px;
}
.insight-body { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; }
.insight-body h3 { font-size: 1.03rem; margin-bottom: 0.65rem; color: var(--charcoal); line-height: 1.35; }
.insight-body > p { font-size: 0.9rem; line-height: 1.65; flex: 1; margin-bottom: 1.2rem; }

/* --- Footer Newsletter --- */
.footer-newsletter {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(232,122,30,0.14);
  border-radius: var(--radius-lg); padding: 2rem 2.2rem; margin-bottom: 2.8rem;
}
.footer-newsletter h4 {
  font-size: 1rem !important; text-transform: none !important;
  letter-spacing: 0 !important; margin-bottom: 0.3rem !important; color: var(--white) !important;
}
.footer-newsletter > p { font-size: 0.84rem; color: rgba(255,255,255,0.46); margin-bottom: 1.2rem; }
.newsletter-form { display: flex; gap: 0.65rem; }
.newsletter-form input {
  flex: 1; padding: 0.72rem 1.1rem; border-radius: 60px;
  border: 1.5px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.07);
  font-family: var(--font-body); font-size: 0.9rem; color: var(--white);
  outline: none; transition: var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus { border-color: rgba(232,122,30,0.45); background: rgba(255,255,255,0.11); }
.newsletter-form button {
  padding: 0.72rem 1.5rem; border-radius: 60px; border: none;
  background: var(--orange); color: #fff; font-family: var(--font-display);
  font-weight: 600; font-size: 0.85rem; cursor: pointer; transition: var(--transition);
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--orange-mid); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(232,122,30,0.35); }

/* --- Photo-backed insight card visual --- */
.insight-visual.iv-photo {
  position: relative; height: 190px; overflow: hidden;
  display: flex; align-items: flex-end; padding: 1.2rem;
}
.insight-visual.iv-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.insight-card:hover .insight-visual.iv-photo img { transform: scale(1.06); }
.insight-visual.iv-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,15,10,0.72) 0%, rgba(20,15,10,0.15) 60%, transparent 100%);
  pointer-events: none;
}
.insight-visual.iv-photo .iv-tag { position: relative; z-index: 1; }

/* --- Article / Insights Pages --- */
.article-hero {
  padding: calc(36px + 7rem) 0 4.5rem;
  position: relative; overflow: hidden; z-index: 1;
  background: transparent; color: var(--white);
}
.article-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(30,24,20,0.55) 0%, rgba(30,24,20,0.38) 100%);
  pointer-events: none; z-index: 1;
}
.article-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.55) saturate(0.75);
}
.article-hero .container { position: relative; z-index: 2; max-width: 900px; }
.article-breadcrumb {
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.55rem;
}
.article-breadcrumb a { color: var(--orange-light); transition: var(--transition); }
.article-breadcrumb a:hover { color: #fff; }
.article-breadcrumb span { color: rgba(255,255,255,0.3); }
.article-hero h1 {
  color: var(--white); font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 1.2rem; line-height: 1.2; max-width: 780px;
}
.article-meta {
  display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap;
  font-size: 0.87rem; color: rgba(255,255,255,0.65);
  font-family: var(--font-display); font-weight: 500;
}
.article-meta .meta-tag {
  background: var(--orange); color: #fff; padding: 0.28rem 0.9rem;
  border-radius: 60px; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em;
}
.article-meta .meta-dot { color: rgba(255,255,255,0.25); }

.article-body {
  background: var(--glass-white);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  position: relative; z-index: 1; padding: 4rem 0 6rem;
}
.article-layout {
  display: grid; grid-template-columns: 1fr 320px; gap: 4.5rem; max-width: 1200px; margin: 0 auto;
}
.article-content { max-width: 720px; }
.article-content h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.65rem); color: var(--charcoal);
  margin: 2.8rem 0 1rem; padding-top: 2rem;
  border-top: 1.5px solid var(--light-grey); letter-spacing: -0.01em;
}
.article-content h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.article-content h3 { font-size: 1.15rem; color: var(--orange-dark); margin: 2rem 0 0.75rem; }
.article-content p { margin-bottom: 1.2rem; line-height: 1.9; font-size: 1.02rem; color: var(--text-secondary); }
.article-content ul, .article-content ol { margin: 0.5rem 0 1.5rem 1.5rem; }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { margin-bottom: 0.6rem; line-height: 1.75; color: var(--text-secondary); font-size: 1rem; }
.article-content strong { color: var(--text-primary); font-weight: 700; }
.article-callout {
  background: linear-gradient(135deg, rgba(232,122,30,0.06), rgba(255,184,102,0.09));
  border-left: 4px solid var(--orange); border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem 1.8rem; margin: 2.2rem 0;
}
.article-callout p { margin-bottom: 0; font-size: 1rem; font-style: italic; color: var(--text-primary); }
.article-callout strong { color: var(--orange-dark); }

/* Article sidebar */
.article-sidebar { position: sticky; top: 110px; }
.sidebar-box {
  background: var(--off-white); border-radius: var(--radius-lg); padding: 1.8rem;
  border: 1px solid rgba(232,122,30,0.1); margin-bottom: 1.8rem;
}
.sidebar-box h4 {
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted); margin-bottom: 1.1rem; font-family: var(--font-display);
}
.sidebar-toc { list-style: none; }
.sidebar-toc li { margin-bottom: 0.55rem; padding-left: 0; }
.sidebar-toc a {
  font-size: 0.9rem; color: var(--text-secondary); transition: var(--transition);
  font-family: var(--font-display); font-weight: 500;
  display: flex; align-items: center; gap: 0.45rem;
}
.sidebar-toc a::before {
  content: ''; display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--orange); flex-shrink: 0; opacity: 0.5;
}
.sidebar-toc a:hover { color: var(--orange); }
.sidebar-toc a:hover::before { opacity: 1; }
.sidebar-cta {
  background: linear-gradient(135deg, var(--charcoal), var(--charcoal-mid));
  color: var(--white); border-radius: var(--radius-lg); padding: 2rem 1.8rem;
  border: 1px solid rgba(232,122,30,0.18); text-align: center;
}
.sidebar-cta h4 { color: var(--white); font-size: 1rem; margin-bottom: 0.6rem; text-transform: none; letter-spacing: 0; }
.sidebar-cta p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 1.3rem; }
.sidebar-cta .btn { width: 100%; text-align: center; justify-content: center; }

/* Related articles at bottom */
.related-section {
  background: rgba(245,240,235,0.92);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  position: relative; z-index: 1;
}

/* --- Insights Hub Page --- */
.insights-hub-hero {
  padding: calc(36px + 7rem) 0 5rem;
  position: relative; overflow: hidden; z-index: 1; color: var(--white);
}
.insights-hub-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(232,122,30,0.1) 0%, transparent 55%),
              radial-gradient(ellipse at 75% 30%, rgba(255,184,102,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.insights-hub-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(232,122,30,0.06) 1px, transparent 1px);
  background-size: 32px 32px; pointer-events: none;
}
.insights-hub-hero .container { position: relative; z-index: 1; text-align: center; }
.insights-hub-hero h1 { color: var(--white); margin-bottom: 1.1rem; }
.insights-hub-hero > .container > p {
  max-width: 640px; margin: 0 auto 2.5rem; font-size: 1.15rem; color: rgba(255,255,255,0.7);
}
.hub-filter-bar {
  display: flex; justify-content: center; gap: 0.65rem; flex-wrap: wrap;
}
.hub-filter {
  padding: 0.55rem 1.3rem; border-radius: 60px; border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.65);
  font-family: var(--font-display); font-weight: 600; font-size: 0.85rem;
  cursor: pointer; transition: var(--transition);
}
.hub-filter:hover, .hub-filter.active {
  background: var(--orange); border-color: var(--orange); color: #fff;
}

.insights-hub-body {
  background: rgba(245,240,235,0.92);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  position: relative; z-index: 1;
}
.hub-featured {
  display: grid; grid-template-columns: 1.45fr 1fr; gap: 2.2rem;
  margin-bottom: 3rem;
}
.hub-featured-card {
  background: var(--white); border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid rgba(232,122,30,0.08);
  transition: var(--transition); display: flex; flex-direction: column;
}
.hub-featured-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-xl);
  border-color: rgba(232,122,30,0.2);
}
.hub-featured-card .card-img {
  position: relative; height: 280px; overflow: hidden;
}
.hub-featured-card .card-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.hub-featured-card:hover .card-img img { transform: scale(1.05); }
.hub-featured-card .card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,15,10,0.5) 0%, transparent 55%);
  pointer-events: none;
}
.hub-featured-card .card-img .iv-tag {
  position: absolute; bottom: 1.2rem; left: 1.4rem; z-index: 1;
  background: var(--orange); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.32rem 0.9rem; border-radius: 60px;
}
.hub-card-body { padding: 2rem 2.2rem 2.2rem; flex: 1; display: flex; flex-direction: column; }
.hub-card-body .article-meta { margin-bottom: 1rem; }
.hub-card-body h3 { font-size: 1.3rem; margin-bottom: 0.8rem; color: var(--charcoal); line-height: 1.35; }
.hub-card-body > p { font-size: 0.95rem; line-height: 1.7; flex: 1; color: var(--text-secondary); margin-bottom: 1.4rem; }

.hub-side-cards { display: flex; flex-direction: column; gap: 2.2rem; }
.hub-side-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(232,122,30,0.07);
  transition: var(--transition); display: flex; flex-direction: column;
  flex: 1;
}
.hub-side-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-lg);
  border-color: rgba(232,122,30,0.18);
}
.hub-side-card .card-img { position: relative; height: 160px; overflow: hidden; }
.hub-side-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.hub-side-card:hover .card-img img { transform: scale(1.06); }
.hub-side-card .card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,15,10,0.45) 0%, transparent 60%); pointer-events: none;
}
.hub-side-card .card-img .iv-tag {
  position: absolute; bottom: 0.9rem; left: 1.1rem; z-index: 1;
  background: var(--orange); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.28rem 0.8rem; border-radius: 60px;
}
.hub-side-card .hub-card-body { padding: 1.4rem 1.6rem 1.6rem; }
.hub-side-card .hub-card-body h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.hub-side-card .hub-card-body > p { font-size: 0.87rem; }

/* Responsive for articles */
@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; gap: 3rem; }
  .article-sidebar { position: static; }
  .hub-featured { grid-template-columns: 1fr; }
  .hub-side-cards { flex-direction: row; }
}
@media (max-width: 768px) {
  .hub-side-cards { flex-direction: column; }
  .article-hero { padding-top: calc(36px + 5rem); }
}

/* --- Responsive: New Sections --- */
@media (max-width: 1024px) {
  .intro-layout { grid-template-columns: 1fr; gap: 3rem; }
  .compliance-layout { grid-template-columns: 1fr; gap: 3rem; }
  .why-cards { grid-template-columns: repeat(2, 1fr); }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .topbar-left .topbar-sep:nth-of-type(2),
  .topbar-left span:nth-child(5),
  .topbar-left span:nth-child(6) { display: none; }
}
@media (max-width: 768px) {
  .topbar-left { display: none; }
  .topbar .container { justify-content: flex-end; }
  .hero.hero-centered .hero-actions { flex-direction: column; align-items: center; }
  .newsletter-form { flex-direction: column; }
}
@media (max-width: 640px) {
  .why-cards { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .compliance-badges { grid-template-columns: 1fr 1fr; }
  .hero.hero-centered { padding-bottom: 5rem; }
}
