/* ================================================================
   PROCUREMENT VMS — ENTERPRISE DESIGN SYSTEM
   Brand: Slate Navy + Electric Teal + Arctic White
   Display: Syne 800/700/600 | Body: DM Sans 400/500/600/700
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Primitive Palette */
  --clr-navy-950:  #050D1A;
  --clr-navy-900:  #0A1628;
  --clr-navy-800:  #0F2040;
  --clr-navy-700:  #162B55;
  --clr-navy-600:  #1E3A6E;
  --clr-navy-500:  #274B8A;
  --clr-teal-600:  #00A89D;
  --clr-teal-500:  #00C4B8;
  --clr-teal-400:  #00DDD0;
  --clr-teal-300:  #5EEEE8;
  --clr-slate-300: #94A3B8;
  --clr-slate-200: #CBD5E1;
  --clr-slate-100: #E2EBF5;
  --clr-slate-50:  #F0F5FA;
  --clr-white:     #FFFFFF;
  --clr-success:   #10B981;
  --clr-warning:   #F59E0B;
  --clr-error:     #EF4444;

  /* Semantic Roles */
  --bg-base:       var(--clr-navy-900);
  --bg-raised:     var(--clr-navy-800);
  --bg-overlay:    var(--clr-navy-700);
  --bg-invert:     var(--clr-slate-50);
  --text-primary:  var(--clr-white);
  --text-body:     var(--clr-slate-200);
  --text-muted:    #7A93B4;
  --text-dark:     var(--clr-navy-900);
  --accent:        var(--clr-teal-500);
  --accent-hi:     var(--clr-teal-400);
  --accent-lo:     var(--clr-teal-600);
  --border-subtle: rgba(255,255,255,0.07);
  --border-accent: rgba(0,196,184,0.22);

  /* Typography */
  --ff-display: 'Syne', sans-serif;
  --ff-body:    'DM Sans', sans-serif;

  /* Type Scale (fluid-friendly) */
  --fs-xs:   0.75rem;     /* 12px */
  --fs-sm:   0.875rem;    /* 14px */
  --fs-base: 1rem;        /* 16px */
  --fs-lg:   1.125rem;    /* 18px */
  --fs-xl:   1.25rem;     /* 20px */
  --fs-2xl:  1.5rem;      /* 24px */
  --fs-3xl:  1.875rem;    /* 30px */
  --fs-4xl:  2.25rem;     /* 36px */
  --fs-5xl:  3rem;        /* 48px */
  --fs-6xl:  3.75rem;     /* 60px */
  --fs-7xl:  4.5rem;      /* 72px */

  /* Spacing Scale (8-point grid) */
  --sp-1:  0.25rem;   /*  4px */
  --sp-2:  0.5rem;    /*  8px */
  --sp-3:  0.75rem;   /* 12px */
  --sp-4:  1rem;      /* 16px */
  --sp-5:  1.25rem;   /* 20px */
  --sp-6:  1.5rem;    /* 24px */
  --sp-8:  2rem;      /* 32px */
  --sp-10: 2.5rem;    /* 40px */
  --sp-12: 3rem;      /* 48px */
  --sp-16: 4rem;      /* 64px */
  --sp-20: 5rem;      /* 80px */
  --sp-24: 6rem;      /* 96px */
  --sp-32: 8rem;      /* 128px */

  /* Radii */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   12px;
  --r-xl:   20px;
  --r-2xl:  28px;
  --r-pill: 9999px;

  /* Elevation */
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.35);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.45);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.55);
  --shadow-teal: 0 0 32px rgba(0,196,184,0.18);
  --shadow-card: 0 2px 24px rgba(0,0,0,0.38);

  /* Motion */
  --ease-fast: 0.14s ease;
  --ease-base: 0.24s ease;
  --ease-slow: 0.4s cubic-bezier(.4,0,.2,1);

  /* Layout */
  --max-w:    1280px;
  --nav-h:    72px;
  --col-gap:  1.5rem;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: var(--r-sm); }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.5rem, 5.5vw, var(--fs-7xl)); font-weight: 800; }
h2 { font-size: clamp(1.875rem, 3.8vw, var(--fs-5xl)); }
h3 { font-size: clamp(1.375rem, 2.5vw, var(--fs-3xl)); }
h4 { font-size: var(--fs-xl); font-weight: 600; letter-spacing: -0.015em; }
h5 { font-size: var(--fs-lg); font-weight: 600; letter-spacing: -0.01em; }
p  { color: var(--text-body); line-height: 1.78; }
strong { font-weight: 600; color: var(--clr-white); }
.text-accent  { color: var(--accent); }
.text-muted   { color: var(--text-muted); }
.text-white   { color: var(--clr-white); }

/* ── LAYOUT UTILITIES ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}
.section       { padding-block: var(--sp-24); }
.section-sm    { padding-block: var(--sp-16); }
.section-lg    { padding-block: var(--sp-32); }

.section-light { background: var(--clr-white); }
.section-light p, .section-light .text-muted { color: #4B5B6E; }
.section-light h2, .section-light h3, .section-light h4, .section-light h5 { color: var(--clr-navy-900); }
.section-light .section-eyebrow { color: var(--clr-teal-600); }
.section-light .section-eyebrow::before { background: var(--clr-teal-600); }

.section-mid   { background: var(--bg-raised); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--col-gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--col-gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--col-gap); }
.flex-c { display: flex; align-items: center; }
.flex-bc { display: flex; align-items: center; justify-content: space-between; }
.flex-cc { display: flex; align-items: center; justify-content: center; }

/* ── SECTION EYEBROW ────────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-4);
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  flex-shrink: 0;
}
.section-header { margin-bottom: var(--sp-12); }
.section-header.center { text-align: center; }
.section-header.center .section-eyebrow { justify-content: center; }
.section-header.center .section-subtitle { margin-inline: auto; }
.section-subtitle {
  font-size: var(--fs-lg);
  color: var(--text-body);
  margin-top: var(--sp-4);
  max-width: 640px;
  line-height: 1.72;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  transition: all var(--ease-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: var(--clr-navy-950);
  box-shadow: 0 0 22px rgba(0,196,184,0.28);
}
.btn-primary:hover {
  background: var(--accent-hi);
  box-shadow: 0 0 36px rgba(0,196,184,0.42);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255,255,255,0.22);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}
.btn-outline-teal {
  background: transparent;
  color: var(--accent);
  border-color: var(--border-accent);
}
.btn-outline-teal:hover { background: rgba(0,196,184,0.08); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding: 13px 0;
  border: none;
}
.btn-ghost:hover { gap: var(--sp-3); }
.btn-dark {
  background: var(--bg-raised);
  color: var(--clr-white);
  border-color: var(--border-subtle);
}
.btn-dark:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 17px 38px; font-size: var(--fs-base); }
.btn-sm { padding: 9px 18px; font-size: var(--fs-xs); letter-spacing: 0.02em; }
.btn-block { width: 100%; justify-content: center; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(10,22,40,0.82);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--ease-base);
  will-change: background, border-color;
}
.nav.scrolled {
  background: rgba(5,13,26,0.97);
  border-bottom-color: rgba(0,196,184,0.14);
  box-shadow: 0 2px 24px rgba(0,0,0,0.45);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}
/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--clr-white);
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--clr-teal-500), var(--clr-teal-600));
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 20px; height: 20px; fill: var(--clr-navy-950); }
.logo-text em { font-style: normal; color: var(--accent); }
/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-body);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  transition: color var(--ease-fast);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--clr-white); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: var(--sp-3); right: var(--sp-3);
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.nav-actions { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--clr-white);
  border-radius: 1px;
  transition: all var(--ease-base);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Mobile menu */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  z-index: 899;
  background: var(--clr-navy-950);
  padding: var(--sp-6);
  flex-direction: column;
  gap: var(--sp-1);
  overflow-y: auto;
  border-top: 1px solid var(--border-subtle);
}
.mobile-nav.open { display: flex; animation: slideDown 0.2s ease; }
.mobile-nav-link {
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--text-body);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: color var(--ease-fast);
  display: block;
}
.mobile-nav-link:hover { color: var(--clr-white); }
.mobile-nav .btn { margin-top: var(--sp-5); width: 100%; justify-content: center; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-block-start: var(--nav-h);
  overflow: hidden;
  background: var(--clr-navy-950);
}
.hero-bg-layer {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 72% 55% at 65% -15%, rgba(0,196,184,0.11) 0%, transparent 58%),
    radial-gradient(ellipse 55% 42% at 8% 85%,  rgba(26,55,116,0.55) 0%, transparent 52%),
    linear-gradient(155deg, #050D1A 0%, #0A1628 45%, #0F2040 100%);
  pointer-events: none;
}
.hero-grid-layer {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,196,184,0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,196,184,0.038) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: radial-gradient(ellipse 78% 80% at 50% 45%, black 25%, transparent 100%);
  mask-image: radial-gradient(ellipse 78% 80% at 50% 45%, black 25%, transparent 100%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 580px; height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,196,184,0.065) 0%, transparent 70%);
  top: 50%; right: 4%;
  transform: translateY(-50%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: var(--sp-16);
  align-items: center;
  width: 100%;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(0,196,184,0.09);
  border: 1px solid rgba(0,196,184,0.22);
  border-radius: var(--r-pill);
  padding: 5px 16px 5px 8px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-6);
}
.hero-pill-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2.2s ease-in-out infinite;
}
.hero-content h1 { margin-bottom: var(--sp-6); }
.hero-content h1 em { font-style: normal; color: var(--accent); }
.hero-desc {
  font-size: var(--fs-lg);
  color: var(--text-body);
  line-height: 1.76;
  max-width: 540px;
  margin-bottom: var(--sp-10);
}
.hero-actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; align-items: center; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-5);
  margin-top: var(--sp-8);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border-subtle);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.trust-item-icon { font-size: 0.875rem; color: var(--accent); }

/* Dashboard mockup */
.hero-dashboard-wrap { animation: heroFloatIn 0.9s 0.3s cubic-bezier(.22,1,.36,1) both; }
.hero-dashboard {
  background: var(--clr-navy-800);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(0,0,0,0.5);
}
.dash-titlebar {
  background: var(--clr-navy-900);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--border-subtle);
}
.dash-dots { display: flex; gap: 6px; }
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot-r { background: #FF5F57; }
.dash-dot-y { background: #FFBD2E; }
.dash-dot-g { background: #28C840; }
.dash-titlebar-txt { font-size: var(--fs-xs); font-weight: 600; color: var(--text-muted); margin-left: var(--sp-2); }
.dash-body { padding: var(--sp-5); }
.dash-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-3); margin-bottom: var(--sp-4); }
.kpi-card {
  background: var(--clr-navy-700);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
}
.kpi-label { font-size: var(--fs-xs); color: var(--text-muted); font-weight: 500; margin-bottom: 4px; }
.kpi-val { font-family: var(--ff-display); font-size: var(--fs-xl); font-weight: 700; color: var(--clr-white); }
.kpi-delta { font-size: var(--fs-xs); font-weight: 600; color: var(--clr-success); margin-top: 2px; }
.dash-chart-box {
  background: var(--clr-navy-700);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  margin-bottom: var(--sp-3);
}
.dash-chart-label { font-size: var(--fs-xs); color: var(--text-muted); font-weight: 500; margin-bottom: var(--sp-3); }
.dash-bars { display: flex; align-items: flex-end; gap: 6px; height: 64px; }
.dash-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, var(--clr-teal-600), var(--clr-teal-400));
  transform-origin: bottom;
  animation: barGrow 0.8s cubic-bezier(.22,1,.36,1) forwards;
}
.dash-vendor-rows { display: flex; flex-direction: column; gap: var(--sp-2); }
.dash-vrow {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--clr-navy-700);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
}
.dash-vname { font-size: var(--fs-xs); font-weight: 500; color: var(--text-body); }
.dash-vscore {
  font-size: var(--fs-xs); font-weight: 700;
  color: var(--clr-success);
  background: rgba(16,185,129,0.1);
  padding: 2px 9px;
  border-radius: var(--r-pill);
}

/* ── STATS BAR ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-raised);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding-block: var(--sp-10);
}
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-8); }
.stat-block { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, var(--fs-5xl));
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.stat-lbl { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.45; }

/* ── FEATURE GRID ───────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.feat-card {
  background: var(--bg-raised);
  padding: var(--sp-8);
  position: relative;
  transition: background var(--ease-base);
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-teal-600), transparent);
  opacity: 0;
  transition: opacity var(--ease-base);
}
.feat-card:hover { background: var(--bg-overlay); }
.feat-card:hover::before { opacity: 1; }
.feat-icon {
  width: 46px; height: 46px;
  background: rgba(0,196,184,0.1);
  border: 1px solid rgba(0,196,184,0.2);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: var(--sp-5);
}
.feat-card h4 { color: var(--clr-white); margin-bottom: var(--sp-3); }
.feat-card p { font-size: var(--fs-sm); line-height: 1.72; }

/* ── ICP CARDS ──────────────────────────────────────────────── */
.icp-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--sp-6); }
.icp-card {
  background: var(--clr-white);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.055);
  transition: transform var(--ease-base), box-shadow var(--ease-base);
}
.icp-card:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(0,0,0,0.11); }
.icp-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-teal-600), var(--clr-teal-400));
}
.icp-role {
  display: inline-block;
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--clr-teal-600);
  margin-bottom: var(--sp-3);
}
.icp-card h3 { color: var(--clr-navy-900); margin-bottom: var(--sp-3); font-size: var(--fs-xl); }
.icp-card p  { color: #4B5B6E; font-size: var(--fs-sm); }

/* ── PROCESS STEPS ──────────────────────────────────────────── */
.steps-row { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-6); position: relative; }
.steps-row::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 13px);
  right: calc(12.5% + 13px);
  height: 1px;
  background: linear-gradient(90deg, var(--clr-teal-600) 0%, rgba(0,196,184,0.15) 100%);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--bg-raised);
  border: 2px solid var(--clr-teal-600);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-size: var(--fs-lg); font-weight: 800;
  color: var(--accent);
  margin: 0 auto var(--sp-5);
}
.step h4 { color: var(--clr-white); margin-bottom: var(--sp-3); font-size: var(--fs-base); }
.step p { font-size: var(--fs-sm); }

/* ── WHY CARDS ──────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--sp-5); }
.why-card {
  display: flex; gap: var(--sp-4);
  padding: var(--sp-6);
  background: var(--bg-raised);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  transition: border-color var(--ease-base);
}
.why-card:hover { border-color: rgba(0,196,184,0.28); }
.why-tick {
  width: 26px; height: 26px; flex-shrink: 0;
  background: var(--clr-teal-600);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: #fff;
  margin-top: 2px;
}
.why-card h4 { color: var(--clr-white); margin-bottom: var(--sp-2); }
.why-card p  { font-size: var(--fs-sm); }

/* ── INTEGRATION LOGOS BAR ──────────────────────────────────── */
.integrations-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-5) var(--sp-8);
  padding-block: var(--sp-10);
}
.int-logo {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  opacity: 0.6;
  transition: opacity var(--ease-fast);
  padding: var(--sp-2) var(--sp-4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
}
.int-logo:hover { opacity: 1; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-wrap { max-width: 800px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-6) 0;
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--clr-white);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--ease-fast);
}
.faq-btn:hover { color: var(--accent); }
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--accent);
  transition: transform var(--ease-base), background var(--ease-base);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(0,196,184,0.1); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.28s ease;
}
.faq-item.open .faq-body { max-height: 600px; padding-bottom: var(--sp-6); }
.faq-body p { font-size: var(--fs-sm); color: var(--text-body); line-height: 1.8; }

/* ── CTA BAND ───────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--clr-navy-800) 0%, var(--clr-navy-700) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-2xl);
  padding: var(--sp-16) var(--sp-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(0,196,184,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2  { color: var(--clr-white); margin-bottom: var(--sp-4); }
.cta-band > p { max-width: 560px; margin-inline: auto; margin-bottom: var(--sp-8); }
.cta-actions  { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; }

/* ── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  background: linear-gradient(158deg, var(--clr-navy-950) 0%, var(--clr-navy-900) 100%);
  padding-block-start: calc(var(--nav-h) + var(--sp-16));
  padding-block-end: var(--sp-16);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--clr-teal-600) 50%, transparent 100%);
}
.breadcrumb {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: var(--fs-xs); color: var(--text-muted);
  margin-bottom: var(--sp-8);
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { opacity: 0.5; }
.page-hero h1 { max-width: 680px; margin-bottom: var(--sp-5); }
.page-hero-lead {
  font-size: var(--fs-lg);
  color: var(--text-body);
  max-width: 580px;
  line-height: 1.74;
}

/* ── CONTACT ────────────────────────────────────────────────── */
.contact-panel {
  background: var(--bg-raised);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  margin-bottom: var(--sp-5);
  transition: border-color var(--ease-base);
}
.contact-panel:hover { border-color: var(--border-accent); }
.contact-panel h4 { color: var(--clr-white); margin-bottom: var(--sp-3); }
.contact-panel p  { font-size: var(--fs-sm); margin-bottom: var(--sp-3); }
.contact-row {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: var(--fs-sm); color: var(--text-body);
}
.contact-row a { color: var(--accent); }
.contact-row a:hover { text-decoration: underline; }
/* Form */
.form-box {
  background: var(--bg-raised);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-2xl);
  padding: var(--sp-10);
}
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--sp-5); }
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-group.span-2 { grid-column: 1 / -1; }
.form-label {
  font-size: var(--fs-sm); font-weight: 500;
  color: var(--text-body);
}
.form-label .req { color: var(--accent); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--clr-navy-800);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: 13px var(--sp-4);
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  color: var(--clr-white);
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,196,184,0.13);
}
.form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A93B4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.form-select option { background: var(--clr-navy-900); }
.form-textarea { resize: vertical; min-height: 118px; line-height: 1.6; }

/* ── ABOUT / BELIEF CARDS ───────────────────────────────────── */
.belief-card {
  background: var(--bg-raised);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  position: relative;
  overflow: hidden;
}
.belief-num {
  position: absolute; top: var(--sp-5); right: var(--sp-6);
  font-family: var(--ff-display);
  font-size: 3.25rem; font-weight: 800;
  color: rgba(0,196,184,0.09);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.belief-card h4 { color: var(--clr-white); margin-bottom: var(--sp-3); font-size: var(--fs-lg); }
.belief-card p  { font-size: var(--fs-sm); }

/* ── VISION QUOTE ───────────────────────────────────────────── */
.vision-quote {
  background: var(--bg-raised);
  border: 1px solid rgba(0,196,184,0.22);
  border-radius: var(--r-2xl);
  padding: var(--sp-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vision-quote::before {
  content: '\201C';
  position: absolute; top: -3rem; left: var(--sp-8);
  font-family: var(--ff-display);
  font-size: 18rem; font-weight: 800;
  color: rgba(0,196,184,0.038);
  line-height: 1;
  pointer-events: none;
}
.vision-quote h3 {
  font-size: clamp(1.35rem, 2.4vw, var(--fs-3xl));
  color: var(--clr-white);
  line-height: 1.42;
  position: relative;
}

/* ── LEGAL PAGES ────────────────────────────────────────────── */
.legal-wrap { max-width: 800px; margin-inline: auto; }
.legal-meta {
  display: flex; gap: var(--sp-8); flex-wrap: wrap;
  background: var(--bg-raised);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
  margin-bottom: var(--sp-10);
}
.legal-meta-item label {
  display: block; font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 4px;
}
.legal-meta-item span { font-size: var(--fs-sm); color: var(--clr-white); }
.legal-alert {
  background: rgba(0,196,184,0.05);
  border: 1px solid rgba(0,196,184,0.2);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  margin-bottom: var(--sp-8);
}
.legal-alert p { font-size: var(--fs-sm); color: var(--text-body); margin: 0; }
.legal-wrap h2 {
  font-size: var(--fs-2xl); color: var(--clr-white);
  margin-top: var(--sp-10); margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border-subtle);
}
.legal-wrap h3 { font-size: var(--fs-lg); color: var(--clr-white); margin-top: var(--sp-6); margin-bottom: var(--sp-3); }
.legal-wrap p  { font-size: var(--fs-sm); color: var(--text-body); margin-bottom: var(--sp-4); line-height: 1.82; }
.legal-wrap ul { list-style: disc; padding-left: var(--sp-6); margin-bottom: var(--sp-4); }
.legal-wrap li { font-size: var(--fs-sm); color: var(--text-body); margin-bottom: var(--sp-2); line-height: 1.74; }
.legal-wrap a  { color: var(--accent); }
.legal-wrap a:hover { text-decoration: underline; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--clr-navy-950);
  border-top: 1px solid var(--border-subtle);
  padding-block-start: var(--sp-16);
  padding-block-end: var(--sp-8);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: var(--sp-8);
}
.footer-brand p {
  font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.74;
  max-width: 270px; margin-top: var(--sp-4);
}
.footer-sec-badges { display: flex; gap: var(--sp-4); flex-wrap: wrap; margin-top: var(--sp-5); }
.sec-badge {
  display: flex; align-items: center; gap: 5px;
  font-size: var(--fs-xs); color: var(--text-muted);
}
.sec-badge-icon { color: var(--clr-success); font-size: 0.7rem; }
.footer-col h5 {
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: var(--sp-5);
}
.footer-links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-link { font-size: var(--fs-sm); color: var(--text-body); transition: color var(--ease-fast); }
.footer-link:hover { color: var(--clr-white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--sp-4); }
.footer-copy { font-size: var(--fs-xs); color: var(--text-muted); }
.footer-legal { display: flex; gap: var(--sp-6); }
.footer-legal a { font-size: var(--fs-xs); color: var(--text-muted); transition: color var(--ease-fast); }
.footer-legal a:hover { color: var(--clr-white); }

/* ── SCROLL ANIMATIONS ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ── KEYFRAMES ──────────────────────────────────────────────── */
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.55; transform:scale(.8); }
}
@keyframes barGrow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}
@keyframes heroFloatIn {
  from { opacity:0; transform:translateX(40px); }
  to   { opacity:1; transform:translateX(0); }
}
@keyframes slideDown {
  from { opacity:0; transform:translateY(-8px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-navy-950); }
::-webkit-scrollbar-thumb { background: var(--clr-navy-600); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--clr-teal-600); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-inner  { grid-template-columns: 1fr; }
  .hero-dashboard-wrap { display: none; }
  .footer-top  { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: auto; padding-block: calc(var(--nav-h) + var(--sp-16)) var(--sp-16); }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .icp-grid  { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: repeat(2,1fr); }
  .steps-row::before { display: none; }
  .why-grid  { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { padding-inline: var(--sp-4); }
  .section { padding-block: var(--sp-16); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-band { padding: var(--sp-10) var(--sp-6); }
  .cta-actions { flex-direction: column; align-items: center; }
  .form-box { padding: var(--sp-6); }
  .footer-top { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .legal-meta { flex-direction: column; gap: var(--sp-4); }
}

/* ══════════════════════════════════════════════
   DROPDOWN NAVIGATION
══════════════════════════════════════════════ */
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }

.nav-link-parent {
  display: flex; align-items: center; gap: 4px; cursor: pointer;
  font-size: var(--text-sm); font-weight: 500; color: var(--text-secondary);
  padding: 8px 12px; border-radius: 6px; white-space: nowrap;
  transition: color .15s ease; user-select: none;
}
.nav-link-parent:hover { color: #fff; }
.nav-item:hover > .nav-link-parent { color: #fff; }

.caret {
  display: inline-block; width: 10px; height: 6px; flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%237A93B4' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  transition: transform .2s ease;
}
.nav-item:hover > .nav-link-parent .caret { transform: rotate(180deg); }

/* ── Dropdown panel ── */
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #0c1c38; border: 1px solid rgba(0,196,184,.18);
  border-radius: 12px; min-width: 220px; padding: 6px;
  box-shadow: 0 24px 64px rgba(0,0,0,.65), 0 0 0 1px rgba(0,196,184,.06);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 9999;
}
.nav-item:hover > .dropdown {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Arrow tip */
.dropdown::before {
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  border: 6px solid transparent; border-bottom-color: rgba(0,196,184,.18);
  border-top: none;
}
.dropdown::after {
  content: ''; position: absolute; top: -5px; left: 50%; transform: translateX(-50%);
  border: 5px solid transparent; border-bottom-color: #0c1c38; border-top: none;
}

.dropdown-label {
  display: block; font-size: .65rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #7A93B4; padding: 8px 10px 4px;
}
.dropdown-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 7px; font-size: .8125rem;
  font-weight: 500; color: #a0b3cc; text-decoration: none;
  transition: background .12s, color .12s; white-space: nowrap;
}
.dropdown-item:hover { background: rgba(0,196,184,.1); color: #fff; }
.dropdown-item::before {
  content: ''; display: block; width: 5px; height: 5px;
  border-radius: 50%; background: rgba(0,196,184,.3); flex-shrink: 0;
  transition: background .12s;
}
.dropdown-item:hover::before { background: #00C4B8; }
.dropdown-item.live { color: #e2ebf5; }
.dropdown-item.live::before { background: #00C4B8; }

/* ── Wide 2-col Resources dropdown ── */
.dropdown-wide {
  min-width: 400px; display: grid; grid-template-columns: 1fr 1fr;
  gap: 0 4px; left: auto; right: 0; transform: translateY(4px);
}
.nav-item:hover > .dropdown-wide { transform: translateY(0); }
.dropdown-wide::before, .dropdown-wide::after { left: auto; right: 28px; transform: none; }

/* Right-align last 2 dropdowns so they don't overflow */
.nav-item:nth-last-child(-n+2) > .dropdown:not(.dropdown-wide) {
  left: auto; right: 0; transform: translateY(4px);
}
.nav-item:nth-last-child(-n+2):hover > .dropdown:not(.dropdown-wide) {
  transform: translateY(0);
}
.nav-item:nth-last-child(-n+2) > .dropdown::before,
.nav-item:nth-last-child(-n+2) > .dropdown::after { left: auto; right: 20px; transform: none; }

/* ── Mobile dropdown ── */
.mobile-group { border-bottom: 1px solid rgba(255,255,255,.06); }
.mobile-nav-parent {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 1rem; font-weight: 500; color: #a0b3cc;
  padding: 14px 0; cursor: pointer; transition: color .15s;
  user-select: none;
}
.mobile-nav-parent:hover, .mobile-nav-parent.open { color: #fff; }
.m-caret { font-size: 1.1rem; color: #7A93B4; transition: transform .2s; display: inline-block; }
.mobile-nav-parent.open .m-caret { transform: rotate(180deg); }
.mobile-dropdown {
  display: none; flex-direction: column; padding: 4px 0 12px 12px; gap: 2px;
}
.mobile-dropdown.open { display: flex; }
.mobile-sub-link {
  font-size: .875rem; color: #7A93B4; padding: 7px 0;
  text-decoration: none; display: block; transition: color .15s;
  border-bottom: 1px solid rgba(255,255,255,.03);
}
.mobile-sub-link:hover { color: #00C4B8; }
