/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  background: #F8F7F4;
  color: #111;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== TOKENS ===== */
:root {
  --navy: #0B1D3A;
  --teal: #0A6E5C;
  --teal-mid: #0E8A72;
  --teal-light: #E0F2ED;
  --blue: #1A3FBE;
  --blue-light: #EAF0FF;
  --coral: #C94A2A;
  --coral-light: #FBF0EC;
  --cream: #F8F7F4;
  --white: #FFFFFF;
  --ink: #111111;
  --muted: #6B7280;
  --border: rgba(0,0,0,0.09);
  --border-med: rgba(0,0,0,0.14);
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-weight: 300; line-height: 1.1; letter-spacing: -0.04em; }
h1 { font-size: clamp(48px, 5.5vw, 82px); font-weight: 300; }
h2 { font-size: clamp(36px, 3.8vw, 58px); font-weight: 300; }
h3 { font-size: clamp(22px, 2.2vw, 29px); font-weight: 400; }
p { line-height: 1.7; }

/* ===== LAYOUT ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1300px; margin: 0 auto; padding: 0 2rem; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(248,247,244,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  padding-top: env(safe-area-inset-top);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 88px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
}
.logo-mark {
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 18px; height: 18px; }
.logo-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500; font-size: 20px; letter-spacing: -0.02em;
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 17px; font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px; border-radius: var(--r-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px; font-weight: 400;
  cursor: pointer; text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-ghost {
  background: transparent;
  border-color: var(--border-med);
  color: var(--ink);
}
.btn-ghost:hover { background: rgba(0,0,0,0.04); }
.btn-primary {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
}
.btn-primary:hover { background: #085041; }
.btn-navy {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.btn-navy:hover { background: #0d2547; }
.btn-lg { padding: 13px 28px; font-size: 18px; border-radius: var(--r-lg); }

/* ===== HERO ===== */
.hero {
  padding: 196px 2rem 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(10,110,92,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center;
  font-size: clamp(13px, 1.4vw, 16px); font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 28px; border-radius: 40px;
  background: var(--teal-light); color: var(--teal);
  margin-bottom: 2.5rem;
  animation: fadeUp 0.6s ease both;
}
.hero-badge::before { display: none; }
.hero h1 {
  font-weight: 300;
  max-width: 820px; margin: 0 auto 1.5rem;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 em {
  font-style: italic;
  color: var(--teal);
}
.hero-sub {
  font-size: clamp(19px, 2vw, 23px);
  color: var(--muted); font-weight: 300;
  max-width: 560px; margin: 0 auto 2.5rem;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-trust {
  margin-top: 1.25rem;
  font-size: 14px; color: var(--muted);
  animation: fadeUp 0.6s 0.4s ease both;
}

/* ===== SHIFT STRIP ===== */
.shift-strip {
  background: var(--cream);
  padding: 5rem 2rem 6rem;
  overflow: hidden;
}
.transform-scene {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tx-pair {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: center;
  gap: 0;
  padding: 0.5rem 0;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1),
              transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.tx-pair.in-view { opacity: 1; transform: translateY(0); }
.tx-pair:nth-child(1) { transition-delay: 0.00s; }
.tx-pair:nth-child(2) { transition-delay: 0.10s; }
.tx-pair:nth-child(3) { transition-delay: 0.20s; }
.tx-from {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.25rem 1.5rem;
  text-align: right;
  transition: border-color 0.2s;
}
.tx-from-label {
  font-size: 13px; font-weight: 500; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 8px;
}
.tx-from-text {
  font-size: 24px; font-weight: 300; color: var(--muted);
  line-height: 1.2; letter-spacing: -0.02em;
}
.tx-arrow-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
}
.tx-arrow-line {
  width: 1px; height: 100%;
  position: absolute; top: 0; bottom: 0;
  background: var(--border);
  left: 50%;
}
.tx-arrow-circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border-med);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--teal-mid);
  position: relative; z-index: 1;
  flex-shrink: 0;
}
.tx-to {
  background: var(--teal-light);
  border: 1px solid rgba(10,110,92,0.14);
  border-radius: var(--r-xl);
  padding: 1.25rem 1.5rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.tx-to::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 120% at 0% 50%, rgba(10,110,92,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.tx-to-label {
  font-size: 13px; font-weight: 500; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--teal-mid);
  margin-bottom: 8px;
}
.tx-to-text {
  font-size: 24px; font-weight: 500; color: var(--teal);
  line-height: 1.2; letter-spacing: -0.02em;
}
.tx-connector {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  height: 32px;
  opacity: 0;
  transition: opacity 0.4s ease 0.4s;
}
.tx-connector.in-view { opacity: 1; }
.tx-connector-left { border-right: 1px solid var(--border); }
.tx-connector-mid {
  display: flex; align-items: center; justify-content: center;
}
.tx-connector-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--border-med);
}
.tx-connector-right {}

/* ===== METHOD SECTION ===== */
.method-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 2rem;
}
.method-section .container { max-width: 1100px; margin: 0 auto; }
.method-tag {
  font-size: 12px; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 0.5rem;
}
.method-headline {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300; line-height: 1.1; letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}
.method-aside {
  font-size: 15px; color: var(--muted); line-height: 1.7;
  max-width: 480px; margin-bottom: 3rem;
}
.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.method-step {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.method-step:hover { border-color: var(--border-med); transform: translateY(-2px); }
.method-numeral {
  font-size: 48px; font-weight: 300;
  color: var(--teal); line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.04em;
}
.method-step-title {
  font-size: 22px; font-weight: 400; letter-spacing: -0.02em;
  margin-bottom: 0.6rem; color: var(--ink);
}
.method-step-desc {
  font-size: 14px; color: var(--muted);
  line-height: 1.7; flex: 1;
}
.method-week {
  font-size: 11px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--teal);
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* ===== PHASES EDITORIAL ===== */
.phases-editorial {
  background: var(--cream);
  padding: 80px 2rem;
}
.phases-editorial .container { max-width: 1100px; margin: 0 auto; }
.pe-section-tag {
  font-size: 12px; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 0.5rem;
}
.pe-headline {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300; line-height: 1.1; letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}
.pe-em { font-style: italic; color: var(--teal); }
.pe-aside {
  font-size: 15px; color: var(--muted); line-height: 1.7;
  max-width: 520px; margin-bottom: 3.5rem;
}
.pe-phases { display: flex; flex-direction: column; gap: 0; }
.pe-phase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  align-items: start;
  transition: background 0.15s;
  border-radius: 0;
}
.pe-phase:last-child { border-bottom: 1px solid var(--border); }
.pe-num {
  font-size: 12px; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 0.85rem; display: block;
}
.pe-phase-title {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 300; line-height: 1.25; letter-spacing: -0.03em;
  color: var(--ink);
}
.pe-phase-right { }
.pe-phase-label {
  font-size: 12px; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 0.75rem; display: block;
}
.pe-phase-desc {
  font-size: 15px; color: var(--muted); line-height: 1.7;
  margin-bottom: 1.25rem;
}
.pe-bullets {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
}
.pe-bullets li {
  font-size: 14px; color: var(--muted);
  display: flex; align-items: baseline; gap: 10px; line-height: 1.5;
}
.pe-bullets li::before {
  content: '→'; color: var(--teal-mid);
  flex-shrink: 0; font-size: 13px;
}
.pe-arrow { display: none; }

/* ===== PRODUCT LINES INTRO ===== */
.products-intro { padding: 96px 2rem 48px; text-align: center; }
.products-intro h2 { margin-bottom: 1rem; }
.products-intro p { font-size: 20px; color: var(--muted); max-width: 520px; margin: 0 auto; }

/* ===== PRODUCT TABS NAV ===== */
.product-tabs-wrap { position: sticky; top: 88px; z-index: 90; background: var(--cream); border-bottom: 1px solid var(--border); }
.product-tabs {
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
  display: flex; gap: 0;
}
.ptab {
  padding: 1rem 1.5rem; font-size: 17px; font-weight: 400;
  color: var(--muted); cursor: pointer; border: none; background: none;
  font-family: 'DM Sans', sans-serif;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.ptab:hover { color: var(--ink); }
.ptab.active { color: var(--ink); font-weight: 500; border-bottom-color: var(--teal); }

/* ===== PRODUCT SECTIONS ===== */
.product-section { padding: 80px 2rem; }
.product-section:nth-child(even) { background: var(--white); }
.product-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; margin-bottom: 64px;
}
.product-header.reverse { direction: rtl; }
.product-header.reverse > * { direction: ltr; }
.product-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 1rem;
}
.product-title { margin-bottom: 1rem; }
.product-desc { font-size: 19px; color: var(--muted); line-height: 1.75; margin-bottom: 2rem; }
.product-outcomes { display: flex; flex-direction: column; gap: 8px; }
.outcome-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 17px; font-weight: 400;
}
.outcome-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}

/* ===== CAPABILITY GRID ===== */
.cap-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.cap-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  transition: border-color 0.2s, transform 0.2s;
}
.cap-card:hover { border-color: var(--border-med); transform: translateY(-2px); }
.cap-icon {
  width: 34px; height: 34px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem;
}
.cap-card h4 { font-size: 17px; font-weight: 500; margin-bottom: 6px; }
.cap-card p { font-size: 16px; color: var(--muted); line-height: 1.6; }

/* ===== AURORA CMS SHOWCASE ===== */
.cms-showcase { padding: 80px 2rem; background: var(--navy); color: white; }
.cms-showcase-inner { max-width: 1100px; margin: 0 auto; }
.cms-eyebrow { font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: #0EA5A4; margin-bottom: 0.75rem; }
.cms-showcase h2 { color: white; margin-bottom: 1rem; }
.cms-showcase .sub { font-size: 19px; color: rgba(255,255,255,0.55); max-width: 480px; margin-bottom: 2.5rem; line-height: 1.7; }
.screen-tabs { display: flex; gap: 2px; background: rgba(255,255,255,0.06); border-radius: var(--r-md); padding: 3px; width: fit-content; margin-bottom: 1.5rem; }
.stab {
  padding: 7px 16px; border-radius: 7px; font-size: 16px;
  font-weight: 400; cursor: pointer; border: none;
  background: transparent; color: rgba(255,255,255,0.5);
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}
.stab:hover { color: rgba(255,255,255,0.8); }
.stab.active { background: rgba(255,255,255,0.12); color: white; font-weight: 500; }
.aurora-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: #F8F7F4;
}
.aurora-shell { display: grid; grid-template-columns: 170px 1fr; min-height: 380px; }
.a-sidebar { background: #0B1D3A; padding: 0; }
.a-slogo { padding: 16px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.a-slogo-name { font-size: 13px; font-weight: 500; color: white; letter-spacing: 0.05em; }
.a-slogo-sub { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 2px; }
.a-sitem { padding: 9px 16px; font-size: 14px; color: rgba(255,255,255,0.45); cursor: pointer; display: flex; align-items: center; gap: 7px; transition: all 0.15s; }
.a-sitem:hover { color: rgba(255,255,255,0.75); }
.a-sitem.active { background: rgba(255,255,255,0.09); color: white; font-weight: 500; }
.a-main { padding: 1.25rem; background: #F8F7F4; }
.kpi-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 1rem; }
.kpi { background: white; border: 1px solid var(--border); border-radius: var(--r-md); padding: 10px 12px; }
.kpi-val { font-size: 26px; font-weight: 500; margin-bottom: 2px; color: #0B1D3A; }
.kpi-lbl { font-size: 12px; color: var(--muted); margin-bottom: 2px; }
.kpi-sub { font-size: 12px; }
.dash-body { display: grid; grid-template-columns: 1fr 185px; gap: 10px; }
.chart-box { background: white; border: 1px solid var(--border); border-radius: var(--r-md); padding: 12px; }
.chart-lbl { font-size: 13px; font-weight: 500; margin-bottom: 2px; }
.chart-sub { font-size: 11px; color: var(--muted); margin-bottom: 10px; }
.chart-bars { display: flex; align-items: flex-end; gap: 5px; height: 62px; }
.cb { flex: 1; border-radius: 3px 3px 0 0; }
.cb-lbl { font-size: 10px; color: var(--muted); text-align: center; margin-top: 3px; }
.comp-box { background: white; border: 1px solid var(--border); border-radius: var(--r-md); padding: 12px; }
.comp-lbl { font-size: 13px; font-weight: 500; margin-bottom: 8px; }
.comp-r { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; font-size: 13px; }
.comp-r span:first-child { color: var(--muted); }
.g { color: #059669; font-weight: 500; }
.a { color: #D97706; font-weight: 500; }
.queue-box { margin-top: 10px; background: white; border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.q-hdr { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 8px; padding: 8px 12px; border-bottom: 1px solid var(--border); background: #F8F7F4; }
.q-hdr span { font-size: 12px; font-weight: 500; color: var(--muted); }
.q-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 8px; padding: 8px 12px; border-bottom: 1px solid var(--border); font-size: 12px; }
.q-row:last-child { border-bottom: none; }
.q-row .qi { color: #111; }
.q-row span { color: var(--muted); }
.sbadge { font-size: 11px; font-weight: 500; padding: 2px 8px; border-radius: 10px; display: inline-block; }
.s-prompt { background: #EAF0FF; border: 1px solid #93AEED; border-radius: var(--r-md); padding: 9px 12px; margin-bottom: 1rem; display: flex; align-items: center; gap: 8px; }
.s-pt { font-size: 13px; color: #0B1D3A; flex: 1; }
.s-gen { background: #1A3FBE; color: white; font-size: 12px; font-weight: 500; padding: 5px 12px; border-radius: 6px; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.s-tag { font-size: 11px; font-weight: 500; color: #1A3FBE; background: #EAF0FF; padding: 2px 8px; border-radius: 10px; }
.s-grid { display: grid; grid-template-columns: 1fr 155px; gap: 12px; }
.s-blocks { display: flex; flex-direction: column; gap: 6px; }
.s-block { background: white; border: 1px solid var(--border); border-radius: var(--r-md); padding: 10px 12px; }
.s-bh { display: flex; justify-content: space-between; align-items: center; margin-bottom: 5px; }
.s-bn { font-size: 13px; font-weight: 500; }
.s-re { font-size: 11px; color: #1A3FBE; font-weight: 500; cursor: pointer; }
.s-bc { font-size: 12px; color: var(--muted); line-height: 1.5; }
.vc-card { background: white; border: 1px solid var(--border); border-radius: var(--r-md); padding: 9px 10px; margin-bottom: 6px; }
.vc-t { font-size: 12px; font-weight: 500; margin-bottom: 4px; }
.vc-d { font-size: 11px; color: var(--muted); line-height: 1.7; }
.lock-tag { display: flex; align-items: center; gap: 5px; font-size: 11px; color: #D97706; font-weight: 500; margin-top: 4px; }
.gov-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 1rem; }
.gov-kpi { background: white; border: 1px solid var(--border); border-radius: var(--r-md); padding: 9px 11px; }
.gov-v { font-size: 24px; font-weight: 500; color: #0B1D3A; margin-bottom: 1px; }
.gov-l { font-size: 11px; color: var(--muted); }
.comp-content { display: grid; grid-template-columns: 1fr 175px; gap: 10px; }
.tl-box { background: white; border: 1px solid var(--border); border-radius: var(--r-md); padding: 12px; }
.tl-t { font-size: 13px; font-weight: 500; margin-bottom: 10px; }
.tl-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; }
.tl-time { font-size: 11px; color: var(--muted); width: 28px; flex-shrink: 0; padding-top: 2px; }
.tl-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 2px; }
.tl-ev { font-size: 12px; font-weight: 500; }
.tl-ds { font-size: 11px; color: var(--muted); }
.tl-actor { font-size: 11px; font-weight: 500; padding: 1px 7px; border-radius: 8px; display: inline-block; margin-top: 2px; }
.pc-box { background: white; border: 1px solid var(--border); border-radius: var(--r-md); padding: 10px; }
.pc-t { font-size: 12px; font-weight: 500; margin-bottom: 6px; }
.pc-r { display: grid; grid-template-columns: 1fr 44px 1fr; gap: 4px; align-items: center; margin-bottom: 5px; font-size: 11px; }
.pc-pass { color: #059669; font-weight: 500; }
.pc-fail { color: #DC2626; font-weight: 500; }
.pc-note { color: var(--muted); }
.var-content { padding: 1.25rem; display: grid; grid-template-columns: 1fr 185px; gap: 12px; }
.graph-box { background: white; border: 1px solid var(--border); border-radius: var(--r-md); padding: 12px; }
.gr-t { font-size: 13px; font-weight: 500; margin-bottom: 2px; }
.gr-s { font-size: 11px; color: var(--muted); margin-bottom: 10px; }
.vgraph { position: relative; height: 140px; }
.vnode { position: absolute; font-size: 11px; font-weight: 500; padding: 5px 10px; border-radius: 5px; white-space: nowrap; }
.vn-base { background: #0B1D3A; color: white; }
.vn-locale { background: #1A3FBE; color: white; }
.vn-leaf { background: #EAF0FF; color: #0B1D3A; border: 1px solid #93AEED; }
.rules-box { margin-top: 8px; background: white; border: 1px solid var(--border); border-radius: var(--r-md); padding: 10px; }
.rules-t { font-size: 12px; font-weight: 500; margin-bottom: 5px; }
.rule-i { font-size: 11px; color: var(--muted); padding: 2px 0; display: flex; align-items: center; gap: 5px; }
.rule-dot { width: 5px; height: 5px; border-radius: 50%; background: #0EA5A4; flex-shrink: 0; }
.cp-box { background: white; border: 1px solid var(--border); border-radius: var(--r-md); padding: 10px; }
.cp-t { font-size: 12px; font-weight: 500; margin-bottom: 6px; }
.cp-tbl { width: 100%; font-size: 11px; border-collapse: collapse; }
.cp-tbl th { color: var(--muted); padding: 3px 4px; text-align: left; font-weight: 500; border-bottom: 1px solid var(--border); }
.cp-tbl td { padding: 4px; color: var(--muted); border-bottom: 1px solid var(--border); }
.cp-tbl .diff { color: #0B1D3A; font-weight: 500; }
.a-screen { display: none; }
.a-screen.visible { display: grid; }
.a-screen-full { display: none; }
.a-screen-full.visible { display: block; }

/* ===== HOW IT CONNECTS ===== */
.connects { padding: 96px 2rem; }
.connects h2 { text-align: center; margin-bottom: 0.75rem; }
.connects-sub { text-align: center; font-size: 19px; color: var(--muted); max-width: 440px; margin: 0 auto 3.5rem; }
.connects-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 2.5rem; }
.connects-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  transition: transform 0.2s;
}
.connects-card:hover { transform: translateY(-3px); }
.cc-num { font-size: 13px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 0.75rem; }
.connects-card h3 { font-size: 26px; margin-bottom: 0.6rem; }
.connects-card p { font-size: 17px; color: var(--muted); line-height: 1.7; }
.loop-row {
  display: flex; align-items: center; justify-content: center; gap: 1.25rem; flex-wrap: wrap;
  margin-top: 3rem;
}
.loop-node { font-size: 20px; font-weight: 400; padding: 14px 28px; border-radius: 40px; letter-spacing: -0.01em; }
.loop-arrow { font-size: 31px; color: var(--muted); }

/* ===== SHIFTS ===== */
.shifts-section { padding: 96px 2rem; background: var(--cream); color: var(--ink); }
.shifts-section h2 { color: var(--ink); text-align: center; margin-bottom: 0.75rem; }
.shifts-sub { text-align: center; font-size: 19px; color: var(--muted); max-width: 440px; margin: 0 auto 3.5rem; }
.shifts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.shift-card {
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  background: var(--white);
  transition: border-color 0.2s, transform 0.2s;
}
.shift-card:hover { border-color: var(--border-med); transform: translateY(-2px); }
.sf-from { font-size: 11px; color: var(--muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; }
.sf-old { font-size: 15px; color: var(--muted); margin-bottom: 14px; font-weight: 300; }
.sf-arr { font-size: 22px; color: var(--teal-mid); margin-bottom: 14px; }
.sf-new { font-size: 18px; font-weight: 400; color: var(--ink); letter-spacing: -0.02em; line-height: 1.35; }

/* ===== CTA ===== */
.cta-section { padding: 120px 2rem; text-align: center; position: relative; overflow: hidden; }
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(10,110,92,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { margin-bottom: 1rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-section p { font-size: 22px; color: var(--muted); max-width: 460px; margin: 0 auto 2.5rem; line-height: 1.7; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-left { display: flex; align-items: center; gap: 10px; font-size: 16px; color: var(--muted); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 16px; color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--ink); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .product-header { grid-template-columns: 1fr; gap: 2rem; }
  .product-header.reverse { direction: ltr; }
  .cap-grid { grid-template-columns: repeat(2,1fr); }
  .connects-grid, .shifts-grid { grid-template-columns: 1fr; }
  .kpi-row, .gov-kpis { grid-template-columns: repeat(2,1fr); }
  .aurora-shell { grid-template-columns: 130px 1fr; }
}
@media (max-width: 600px) {
  .cap-grid { grid-template-columns: 1fr; }
  .aurora-shell { grid-template-columns: 1fr; }
  .a-sidebar { display: none; }
  .kpi-row { grid-template-columns: repeat(2,1fr); }
  .dash-body { grid-template-columns: 1fr; }
  .product-tabs { overflow-x: auto; }
  .shift-strip-inner { gap: 1rem; }
  .shift-sep { display: none; }
}
