/* ─── NAV BRAND / LOGO ────────────────────────────────────────────────────── */
.nav-brand { display: flex; flex-direction: column; gap: 3px; }

.nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-by {
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-logo-img { display: block; height: 38px; width: auto; }
.footer-logo-img { display: block; height: 44px; width: auto; }

.nav-link {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.nav-link:hover, .nav-link.is-active { color: var(--cream); }

/* ─── NAV DROPDOWN ────────────────────────────────────────────────────────── */
.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color .2s;
}
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger[aria-expanded="true"] { color: var(--cream); }

.nav-dropdown-trigger svg {
  width: 10px; height: 10px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .2s;
}
.nav-dropdown-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 260px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity .18s, transform .18s, visibility .18s;
}
.nav-dropdown-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 12px 14px;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--muted);
  transition: background .15s, color .15s;
}
.nav-dropdown-item:hover { background: var(--gold-faint); color: var(--cream); }

.nav-dropdown-item-title {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  color: inherit;
  margin-bottom: 2px;
}
.nav-dropdown-item-desc {
  display: block;
  font-size: 11px;
  color: var(--ghost);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .nav-dropdown-menu { left: auto; right: 0; transform: translateY(-6px); min-width: 240px; }
  .nav-dropdown-menu.is-open { transform: translateY(0); }
}

/* ─── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 13px 28px;
  cursor: pointer;
  border: none;
  transition: opacity .2s, transform .2s;
}

.btn:hover { opacity: .86; transform: translateY(-1px); }

.btn-gold { background: var(--gold); color: #ffffff; }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
}

.btn-sm { font-size: 10px; padding: 10px 18px; }

/* ─── HERO ────────────────────────────────────────────────────────────────── */
.hero-watermark {
  position: absolute;
  right: -4vw;
  bottom: -4%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28vw;
  font-weight: 700;
  line-height: .85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(32,96,232,.045);
  pointer-events: none;
  user-select: none;
  letter-spacing: -.02em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: .6;
}

.hero-h1 {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 36px;
}

.hero-h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.72;
  max-width: 600px;
  margin-bottom: 56px;
}

.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

.hero-note { font-size: 11.5px; color: var(--ghost); letter-spacing: .06em; }

.product-hero-h1 {
  font-size: clamp(38px, 5.4vw, 62px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 24px;
}

.product-hero-sub {
  font-size: clamp(14.5px, 1.5vw, 17px);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.72;
  max-width: 620px;
  margin-bottom: 36px;
}

/* ─── STATUS BADGE ────────────────────────────────────────────────────────── */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  background: var(--gold-faint);
  padding: 7px 14px;
  margin-bottom: 24px;
}

.status-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── TICKER ──────────────────────────────────────────────────────────────── */
.ticker-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
  background: var(--surface);
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.ticker-track:hover { animation-play-state: paused; }

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 0 48px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ghost);
}

.ticker-dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .6;
  flex-shrink: 0;
}

/* ─── SECTION LABEL ───────────────────────────────────────────────────────── */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 64px;
}

.sec-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: .45;
}

/* ─── PROBLEM ─────────────────────────────────────────────────────────────── */
.problem-h2 {
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 500;
  margin-bottom: 28px;
  color: var(--white);
}

.problem-body p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 18px; }

.problem-list { margin-top: 8px; }

.problem-item { padding: 28px 0; border-bottom: 1px solid var(--border); }
.problem-item:first-child { border-top: 1px solid var(--border); }

.problem-item-title {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--cream);
  margin-bottom: 9px;
}

.problem-item p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

/* ─── POSITIONING / CAPABILITIES ─────────────────────────────────────────── */
.what-h2 { font-size: clamp(32px, 3.8vw, 52px); font-weight: 500; color: var(--white); }
.what-body { padding-top: 8px; }
.what-body p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 18px; }

.not-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 28px; }

.not-tag {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--ghost);
  padding: 6px 12px;
  border: 1px solid var(--border-2);
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,.15);
}

.pillar, .capability-card {
  background: var(--surface-2);
  padding: 48px 40px 52px;
  position: relative;
}

.pillar::before, .capability-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .3s;
}
.pillar:hover::before, .capability-card:hover::before { opacity: 1; }

.pillar-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--gold);
  opacity: .2;
  line-height: 1;
  margin-bottom: 24px;
  display: block;
}

.pillar-title, .capability-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 14px;
}

.pillar p, .capability-card p { font-size: 14px; color: var(--muted); line-height: 1.72; }

.control-principle {
  margin-top: 1px;
  background: var(--gold-faint);
  border: 1px solid var(--gold-dim);
  padding: 52px 56px;
}

.control-principle-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.control-principle blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.45;
}

@media (max-width: 860px) { .control-principle { padding: 36px 28px; } }

/* ─── STEPS ───────────────────────────────────────────────────────────────── */
.steps-header { max-width: 600px; margin-bottom: 80px; }
.steps-h2 { font-size: clamp(32px, 3.8vw, 50px); font-weight: 500; color: var(--white); margin-bottom: 20px; }
.steps-sub { font-size: 15px; color: var(--muted); line-height: 1.75; }

.step {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 72px;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:first-of-type { border-top: 1px solid var(--border); }

.step-roman {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  color: var(--gold);
  opacity: .18;
  line-height: .95;
  padding-top: 4px;
  user-select: none;
}

.step-phase {
  font-size: 9.5px; font-weight: 500; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block;
}
.step-name { font-size: clamp(26px, 3vw, 38px); font-weight: 500; color: var(--white); margin-bottom: 20px; }
.step-desc { font-size: 15px; color: var(--muted); line-height: 1.8; max-width: 580px; margin-bottom: 10px; }
.step-note {
  font-size: 13px; color: var(--muted); line-height: 1.75; max-width: 580px;
  margin-bottom: 22px; padding-left: 16px; border-left: 1px solid var(--border-2);
}
.step-duration {
  font-size: 11px; font-weight: 500; letter-spacing: .1em; color: var(--ghost);
  padding: 8px 16px; border: 1px solid var(--border); display: inline-block;
}

@media (max-width: 700px) {
  .step { grid-template-columns: 1fr; gap: 16px; }
  .step-roman { font-size: 56px; }
}

/* ─── DELIVERABLES ────────────────────────────────────────────────────────── */
.deliv-h2 { font-size: clamp(32px, 3.8vw, 52px); font-weight: 500; color: var(--white); }
.deliv-sub { font-size: 15px; color: var(--muted); line-height: 1.8; }

.deliv-card {
  background: var(--surface);
  padding: 52px 48px;
  position: relative;
  transition: background .25s;
}
.deliv-card:hover { background: var(--surface-2); }
.deliv-card::before {
  content: ''; display: block; width: 28px; height: 1.5px;
  background: var(--gold); opacity: .7; margin-bottom: 28px;
}
.deliv-card-title {
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--cream); margin-bottom: 12px;
}
.deliv-card p { font-size: 14px; color: var(--muted); line-height: 1.72; }

.deliv-not {
  margin-top: 48px; padding: 36px 48px; border: 1px solid var(--border);
  display: flex; align-items: center; gap: 48px; flex-wrap: wrap;
}
.deliv-not-label {
  font-size: 10px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ghost); white-space: nowrap; flex-shrink: 0;
}
.deliv-not-items { display: flex; gap: 12px; flex-wrap: wrap; }
.deliv-not-item {
  font-size: 12.5px; color: var(--ghost); padding: 6px 14px; border: 1px solid var(--border);
  text-decoration: line-through; text-decoration-color: rgba(255,255,255,.14);
}
.control-scope-items .deliv-not-item { text-decoration: none; }

@media (max-width: 860px) {
  .deliv-card { padding: 36px 28px; }
  .deliv-not { padding: 24px 28px; gap: 20px; }
}

/* ─── WHO ─────────────────────────────────────────────────────────────────── */
.who-intro { max-width: 620px; margin-bottom: 72px; }
.who-h2 { font-size: clamp(32px, 3.8vw, 52px); font-weight: 500; color: var(--white); margin-bottom: 20px; }
.who-sub { font-size: 15px; color: var(--muted); line-height: 1.8; }

.who-card { padding: 40px 36px 44px; border: 1px solid var(--border); transition: border-color .3s, background .3s; }
.who-card:hover { border-color: var(--gold-dim); background: var(--gold-faint); }

.who-icon {
  width: 36px; height: 36px; border: 1px solid var(--gold-dim);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.who-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.who-card-title {
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--cream); margin-bottom: 12px;
}
.who-card p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

.who-roles { padding: 44px 48px; border: 1px solid var(--border); background: var(--surface); }
.who-roles-label {
  font-size: 9.5px; font-weight: 500; letter-spacing: .25em; text-transform: uppercase;
  color: var(--ghost); margin-bottom: 28px; display: block;
}
.roles { display: flex; flex-wrap: wrap; gap: 10px; }
.role {
  font-size: 12.5px; font-weight: 400; color: var(--muted); padding: 7px 16px;
  border: 1px solid var(--border-2); letter-spacing: .02em;
}

@media (max-width: 860px) { .who-roles { padding: 28px; } }

/* ─── REGULATORY / PRINCIPLES ────────────────────────────────────────────── */
.reg-h2 { font-size: clamp(32px, 3.8vw, 52px); font-weight: 500; color: var(--white); }
.reg-sub { font-size: 15px; color: var(--muted); line-height: 1.8; padding-top: 8px; }

.reg-ref {
  font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500;
  color: var(--gold); letter-spacing: .01em; line-height: 1.25;
}

.reg-detail-title {
  font-family: 'Inter', sans-serif; font-size: 12.5px; font-weight: 600;
  letter-spacing: .05em; color: var(--cream); margin-bottom: 10px;
}
.reg-detail p { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ─── FINAL CTA CONTENT ──────────────────────────────────────────────────── */
.cta-h2 { font-size: clamp(36px, 5.5vw, 72px); font-weight: 400; color: var(--white); line-height: 1.07; margin-bottom: 14px; }
.cta-h2 em { font-style: italic; color: var(--gold); }
.cta-sub { font-size: 16px; color: var(--muted); line-height: 1.72; max-width: 560px; margin: 0 auto 56px; }
.cta-meta { margin-top: 28px; font-size: 11px; color: var(--ghost); letter-spacing: .08em; }

.cta-pair { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.cta-microcopy { margin-top: 14px; font-size: 12px; color: var(--ghost); letter-spacing: .03em; }
.cta-microcopy a { color: var(--gold); text-decoration: underline; text-decoration-color: var(--gold-dim); text-underline-offset: 3px; }
.cta-microcopy a:hover { text-decoration-color: var(--gold); }

.mid-cta {
  margin-top: 72px; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px; padding: 44px 48px; border: 1px solid var(--border); background: var(--surface);
}
.mid-cta-title { font-size: 13px; font-weight: 500; letter-spacing: .06em; color: var(--cream); margin-bottom: 6px; }
.mid-cta-desc { font-size: 13px; color: var(--muted); }
.mid-cta-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; flex-shrink: 0; }

.founder-block { max-width: 600px; margin: 0 auto 64px; padding: 0 24px; text-align: center; }
.founder-block p { font-size: 15px; color: var(--muted); line-height: 1.82; font-style: italic; }
.founder-sig {
  display: block; margin-top: 20px; font-family: 'Cormorant Garamond', serif; font-size: 19px;
  font-weight: 500; font-style: normal; color: var(--cream); letter-spacing: .02em;
}

/* ─── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-item { padding: 36px 0; border-bottom: 1px solid var(--border); }
.faq-item:first-of-type { border-top: 1px solid var(--border); }
.faq-q { font-family: 'Cormorant Garamond', serif; font-size: clamp(18px, 2vw, 22px); font-weight: 500; color: var(--cream); margin-bottom: 12px; }
.faq-a { font-size: 14.5px; color: var(--muted); line-height: 1.78; max-width: 720px; }

/* ─── THINKING / RESOURCES CARD ──────────────────────────────────────────── */
.thinking-card {
  display: block; max-width: 700px; padding: 48px 52px; border: 1px solid var(--border);
  background: var(--surface-2); transition: border-color .3s, background .3s; text-decoration: none;
}
.thinking-card:hover { border-color: var(--gold-dim); background: var(--gold-faint); }
.thinking-eyebrow {
  display: block; font-size: 10px; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.thinking-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(22px, 3vw, 34px); font-weight: 400;
  color: var(--white); line-height: 1.18; letter-spacing: -0.01em; margin-bottom: 14px;
}
.thinking-desc { font-size: 14.5px; color: var(--muted); line-height: 1.72; margin-bottom: 28px; }
.thinking-read {
  font-size: 10.5px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: 10px; transition: gap .2s;
}
.thinking-read::after { content: '\2192'; letter-spacing: 0; font-size: 14px; line-height: 1; }
.thinking-card:hover .thinking-read { gap: 14px; }

@media (max-width: 700px) { .thinking-card { padding: 36px 28px; } }

/* ─── FOOTER CONTENT ──────────────────────────────────────────────────────── */
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--cream); display: block;
}
.footer-brand-sub {
  font-size: 9px; font-weight: 400; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); display: block; margin-top: 3px;
}
.footer-right p { font-size: 11.5px; color: var(--ghost); letter-spacing: .04em; text-align: right; }

.footer-legal { margin-top: 8px; display: flex; gap: 18px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 600px) { .footer-legal { justify-content: center; } }

.cookie-settings-link {
  font-size: 11px; color: var(--ghost); letter-spacing: .04em; text-decoration: underline;
  text-underline-offset: 2px; cursor: pointer; background: none; border: none; padding: 0;
  font-family: inherit; transition: color .2s;
}
.cookie-settings-link:hover { color: var(--muted); }

/* ─── THEME TOGGLE / SOCIAL LINK ──────────────────────────────────────────── */
.theme-toggle {
  width: 34px; height: 34px; border-radius: 50%;
  background: transparent; border: 1px solid var(--border-2);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: border-color .2s, color .2s; flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--gold-dim); color: var(--gold); }
.theme-toggle svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.social-link {
  width: 34px; height: 34px; border-radius: 50%;
  background: transparent; border: 1px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: border-color .2s, color .2s; flex-shrink: 0;
}
.social-link:hover { border-color: var(--gold-dim); color: var(--gold); }
.social-link svg { width: 15px; height: 15px; fill: currentColor; }

/* ─── ARCHITECTURE DIAGRAM ────────────────────────────────────────────────── */
.arch-diagram {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 56px 48px;
  overflow-x: auto;
}

.arch-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  min-width: max-content;
}

.arch-node {
  border: 1px solid var(--border-2);
  background: var(--surface-2);
  padding: 18px 22px;
  min-width: 150px;
  text-align: center;
  transition: border-color .25s, background .25s;
}
.arch-node:hover { border-color: var(--gold-dim); background: var(--gold-faint); }

.arch-node-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--cream);
  line-height: 1.35;
}

.arch-node--accent { border-color: var(--gold-dim); background: var(--gold-faint); }
.arch-node--accent .arch-node-label { color: var(--gold); }

.arch-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  flex-shrink: 0;
  color: var(--ghost);
  font-size: 16px;
}

.arch-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}

@media (max-width: 700px) {
  .arch-diagram { padding: 32px 20px; }
  .arch-node { min-width: 120px; padding: 14px 16px; }
}

/* ─── UI PREVIEW MOCKUP ───────────────────────────────────────────────────── */
.ui-preview-frame {
  border: 1px solid var(--border-2);
  background: var(--ink);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.ui-preview-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.ui-preview-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-2); }

.ui-preview-label {
  margin-left: 12px;
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--ghost);
  text-transform: uppercase;
}

.ui-preview-body { padding: 24px; }

.ui-preview-note {
  margin-top: 10px;
  font-size: 11px;
  color: var(--ghost);
  letter-spacing: .04em;
  text-align: center;
}

.ui-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  margin-bottom: 8px;
  font-size: 12.5px;
}

.ui-row-id { color: var(--muted); font-family: 'Inter', monospace; }
.ui-row-status {
  font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border: 1px solid var(--border-2); color: var(--muted); white-space: nowrap;
}
.ui-row-status--flag { color: var(--gold); border-color: var(--gold-dim); background: var(--gold-faint); }

/* ─── CODE SNIPPET ────────────────────────────────────────────────────────── */
.code-block {
  border: 1px solid var(--border-2);
  background: var(--ink);
  padding: 28px 30px;
  overflow-x: auto;
  font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--cream);
}
.code-block .cm { color: var(--ghost); }
.code-block .kw { color: var(--gold); }
.code-block .str { color: #9fd88a; }

.code-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ghost);
  margin-bottom: 12px;
}

/* ─── DOC LINK ROW ────────────────────────────────────────────────────────── */
.doc-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 28px 32px;
  border: 1px solid var(--border);
  background: var(--surface);
  margin-bottom: 12px;
  transition: border-color .25s, background .25s;
}
.doc-link-row:hover { border-color: var(--gold-dim); background: var(--gold-faint); }

.doc-link-title { font-size: 13px; font-weight: 600; color: var(--cream); letter-spacing: .02em; margin-bottom: 4px; }
.doc-link-desc { font-size: 12.5px; color: var(--muted); }

.doc-link-arrow {
  font-size: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ─── COOKIE CONSENT ──────────────────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--surface-2);
  border-top: 1px solid var(--border-2);
  padding: 22px 0;
  transform: translateY(110%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
#cookie-banner.cb-visible { transform: translateY(0); }

.cookie-banner-inner { display: flex; align-items: center; gap: 36px; justify-content: space-between; }
.cookie-banner-text { flex: 1; min-width: 0; }
.cookie-banner-desc { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 7px; }
.cookie-banner-links { font-size: 11px; color: var(--ghost); }
.cookie-banner-links a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--gold-dim); transition: text-decoration-color .2s; }
.cookie-banner-links a:hover { text-decoration-color: var(--gold); }
.cookie-banner-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }

#cookie-modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(6,7,14,.8);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
#cookie-modal-overlay.cm-visible { opacity: 1; pointer-events: all; }

.cookie-modal {
  background: var(--surface); border: 1px solid var(--border-2);
  max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto;
  padding: 48px 48px 40px; position: relative; box-shadow: var(--shadow);
}
.cookie-modal-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(22px, 3vw, 28px); font-weight: 500;
  color: var(--white); margin-bottom: 10px; letter-spacing: -.01em;
}
.cookie-modal-intro { font-size: 13.5px; color: var(--muted); line-height: 1.7; margin-bottom: 4px; }

.cookie-category { padding: 20px 0; border-top: 1px solid var(--border); }
.cookie-cat-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 7px; }
.cookie-cat-title { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--cream); }
.cookie-always-on {
  font-size: 9.5px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold-dim); padding: 3px 10px; white-space: nowrap;
}
.cookie-cat-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

.c-toggle { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
.c-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.c-toggle-track { position: absolute; inset: 0; background: var(--border-2); cursor: pointer; transition: background .2s; }
.c-toggle input:checked + .c-toggle-track { background: var(--gold); }
.c-toggle-track::after { content: ''; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; background: #fff; transition: transform .2s; }
.c-toggle input:checked + .c-toggle-track::after { transform: translateX(20px); }
.c-toggle input:focus-visible + .c-toggle-track { outline: 2px solid var(--gold); outline-offset: 2px; }

.cookie-modal-footer {
  margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.cookie-modal-footer-right { display: flex; gap: 10px; flex-wrap: wrap; }

.cookie-modal-close {
  position: absolute; top: 14px; right: 14px; width: 32px; height: 32px;
  background: transparent; border: 1px solid var(--border-2); color: var(--muted);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, color .2s; padding: 0;
}
.cookie-modal-close svg { stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; }
.cookie-modal-close:hover { border-color: var(--gold-dim); color: var(--gold); }

@media (max-width: 700px) {
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
  .cookie-banner-actions { width: 100%; }
  .cookie-modal { padding: 36px 24px 28px; }
  .cookie-modal-footer { flex-direction: column; align-items: stretch; }
  .cookie-modal-footer-right { justify-content: stretch; }
  .cookie-modal-footer .btn-sm { flex: 1; text-align: center; }
}

/* ─── POLICY PAGES ────────────────────────────────────────────────────────── */
#policy-nav {
  position: fixed; inset: 0 0 auto; z-index: 200; padding: 22px 0;
  background: rgba(9,9,9,.88); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
[data-theme="light"] #policy-nav { background: rgba(255,255,255,.94); }

.policy-page { padding: 156px 0 120px; }
.policy-eyebrow {
  display: inline-flex; align-items: center; gap: 12px; font-size: 10px; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px;
}
.policy-h1 { font-size: clamp(34px, 5vw, 52px); font-weight: 400; color: var(--white); margin-bottom: 14px; }
.policy-meta { font-size: 12px; color: var(--ghost); letter-spacing: .04em; margin-bottom: 64px; }

.policy-section { padding: 40px 0; border-top: 1px solid var(--border); }
.policy-section:first-of-type { border-top: none; }
.policy-h2 { font-size: clamp(20px, 2.4vw, 26px); font-weight: 500; color: var(--white); margin-bottom: 16px; }
.policy-body { max-width: 720px; }
.policy-body p { font-size: 14.5px; color: var(--muted); line-height: 1.85; margin-bottom: 14px; }
.policy-body ul { padding-left: 20px; margin-bottom: 14px; }
.policy-body li { font-size: 14.5px; color: var(--muted); line-height: 1.85; margin-bottom: 6px; }
.policy-divider { border: none; border-top: 1px solid var(--border); margin: 12px 0; }

.cookie-table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 13px; }
.cookie-table th, .cookie-table td {
  text-align: left; padding: 10px 14px; border: 1px solid var(--border); color: var(--muted);
}
.cookie-table th { color: var(--cream); font-weight: 600; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.badge {
  display: inline-block; font-size: 10px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold-dim); padding: 3px 9px;
}

/* ─── ARTICLE ─────────────────────────────────────────────────────────────── */
.article-outer { padding: 156px 0 100px; }
.article-inner { max-width: 700px; margin: 0 auto; }
.article-kicker {
  display: inline-flex; align-items: center; gap: 12px; font-size: 10px; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 28px;
}
.article-title { font-size: clamp(32px, 5vw, 50px); font-weight: 400; color: var(--white); line-height: 1.12; margin-bottom: 24px; }
.article-byline { font-size: 13px; color: var(--ghost); letter-spacing: .04em; margin-bottom: 56px; }
.article-prose p { font-size: 16px; color: var(--muted); line-height: 1.9; margin-bottom: 22px; }
.probe-head { font-family: 'Cormorant Garamond', serif; font-size: clamp(22px, 3vw, 30px); font-weight: 500; color: var(--white); margin: 48px 0 20px; }
.article-query {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(19px, 2.4vw, 24px);
  color: var(--cream); line-height: 1.5; border-left: 2px solid var(--gold-dim); padding-left: 28px; margin: 32px 0;
}
.em-list { list-style: none; margin: 20px 0; }
.em-list li { font-size: 15px; color: var(--muted); line-height: 1.8; padding-left: 20px; position: relative; margin-bottom: 8px; }
.em-list li::before { content: '\2014'; position: absolute; left: 0; color: var(--gold); }
.article-cta-block { margin-top: 64px; padding: 44px 48px; border: 1px solid var(--border); background: var(--surface); }
.article-cta-block p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.article-sig { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--cream); margin-bottom: 24px; display: block; }

@media (max-width: 700px) { .article-cta-block { padding: 32px 24px; } }

/* ─── FRAMEWORKS PAGE ─────────────────────────────────────────────────────── */
.framework-card {
  border: 1px solid var(--border-2);
  background: var(--surface);
  padding: 52px 56px;
  max-width: 760px;
  position: relative;
}
.framework-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 60%);
}
.framework-card-label {
  font-size: 9.5px; font-weight: 500; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; display: block;
}
.framework-card-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(26px, 3.2vw, 40px); font-weight: 500;
  color: var(--white); letter-spacing: -.01em; margin-bottom: 18px; line-height: 1.1;
}
.framework-card-desc { font-size: 15px; color: var(--muted); line-height: 1.78; margin-bottom: 28px; }
.framework-doi {
  display: inline-flex; align-items: center; gap: 10px; font-size: 11.5px;
  color: var(--ghost); letter-spacing: .04em; margin-bottom: 36px;
}
.framework-doi a { color: var(--gold); text-decoration: underline; text-decoration-color: var(--gold-dim); text-underline-offset: 3px; transition: text-decoration-color .2s; }
.framework-doi a:hover { text-decoration-color: var(--gold); }
.framework-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.btn-sm-framework { font-size: 10px; padding: 11px 22px; }

.exec-grid { display: grid; grid-template-columns: 320px 1fr; gap: 100px; align-items: start; }
.exec-h2 { font-size: clamp(32px, 3.8vw, 50px); font-weight: 500; color: var(--white); line-height: 1.1; }
.exec-body p { font-size: 15px; color: var(--muted); line-height: 1.82; margin-bottom: 20px; }
.exec-body p:last-child { margin-bottom: 0; }
@media (max-width: 860px) { .exec-grid { grid-template-columns: 1fr; gap: 48px; } }

.components-header { max-width: 660px; margin-bottom: 72px; }
.components-h2 { font-size: clamp(30px, 3.6vw, 48px); font-weight: 500; color: var(--white); margin-bottom: 16px; }
.components-sub { font-size: 14.5px; color: var(--muted); line-height: 1.75; }
.components-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.component-card { background: var(--surface-2); padding: 44px 40px 48px; position: relative; transition: background .25s; }
.component-card:hover { background: var(--surface); }
.component-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 70%); opacity: 0; transition: opacity .3s;
}
.component-card:hover::before { opacity: 1; }
.component-letter {
  font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; color: var(--gold);
  opacity: .18; line-height: 1; margin-bottom: 20px; display: block;
}
.component-title {
  font-family: 'Inter', sans-serif; font-size: 11.5px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--cream); margin-bottom: 12px;
}
.component-card p { font-size: 13.5px; color: var(--muted); line-height: 1.72; }
@media (max-width: 900px) { .components-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .components-grid { grid-template-columns: 1fr; } }

.recon-header { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; margin-bottom: 80px; }
.recon-h2 { font-size: clamp(30px, 3.6vw, 48px); font-weight: 500; color: var(--white); line-height: 1.12; }
.recon-quote-block { padding-top: 6px; }
.recon-intro { font-size: 14.5px; color: var(--muted); line-height: 1.78; margin-bottom: 28px; }
.recon-quote {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(18px, 2.2vw, 24px); font-weight: 400;
  font-style: italic; color: var(--cream); line-height: 1.45; padding: 28px 36px;
  border-left: 2px solid var(--gold); background: var(--gold-faint);
}
.recon-dimensions { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.recon-dim { background: var(--surface); padding: 40px 32px 44px; text-align: center; position: relative; transition: background .25s; }
.recon-dim:hover { background: var(--surface-2); }
.recon-dim-n { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 300; color: var(--gold); opacity: .2; line-height: 1; margin-bottom: 16px; }
.recon-dim-title { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--cream); line-height: 1.4; }
@media (max-width: 860px) { .recon-header { grid-template-columns: 1fr; gap: 48px; } .recon-dimensions { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .recon-dimensions { grid-template-columns: 1fr; } .recon-dim { text-align: left; padding: 28px 28px; } }

.maturity-header { max-width: 660px; margin-bottom: 72px; }
.maturity-h2 { font-size: clamp(30px, 3.6vw, 48px); font-weight: 500; color: var(--white); margin-bottom: 16px; }
.maturity-sub { font-size: 14.5px; color: var(--muted); line-height: 1.75; }
.maturity-level {
  display: grid; grid-template-columns: 180px 1fr; gap: 72px; padding: 48px 0;
  border-bottom: 1px solid var(--border); align-items: start;
}
.maturity-level:first-of-type { border-top: 1px solid var(--border); }
.maturity-level-ref { font-family: 'Cormorant Garamond', serif; font-size: 13px; font-weight: 400; color: var(--gold); letter-spacing: .04em; padding-top: 4px; }
.maturity-level-title { font-family: 'Inter', sans-serif; font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--cream); margin-bottom: 8px; }
.maturity-level-desc { font-size: 14.5px; color: var(--muted); line-height: 1.75; }
.maturity-level--target .maturity-level-ref { color: var(--gold); }
.maturity-level--target .maturity-level-title { color: var(--white); }
.maturity-level--target {
  background: var(--gold-faint); padding-left: 32px; padding-right: 32px; margin-left: -32px; margin-right: -32px;
  border-left: 1px solid var(--gold-dim); border-right: 1px solid var(--gold-dim); border-bottom-color: var(--gold-dim);
}
@media (max-width: 700px) {
  .maturity-level { grid-template-columns: 1fr; gap: 8px; }
  .maturity-level--target { padding-left: 20px; padding-right: 20px; margin-left: -20px; margin-right: -20px; }
}

.reg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; margin-bottom: 64px; }
.reg-body { padding-top: 6px; }
.reg-body p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 32px; }
.reg-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.reg-badge {
  font-size: 10.5px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--cream);
  padding: 7px 14px; border: 1px solid var(--border-2); background: var(--surface);
}
.reg-disclaimer { padding: 28px 36px; border: 1px solid var(--border); background: var(--surface); }
.reg-disclaimer-label { font-size: 9.5px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--ghost); margin-bottom: 12px; display: block; }
.reg-disclaimer p { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 0; }
@media (max-width: 860px) { .reg-grid { grid-template-columns: 1fr; gap: 48px; } }

/* ─── CONTACT SALES MODAL ────────────────────────────────────────────────── */
body.sales-modal-open { overflow: hidden; }

.sales-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(4, 9, 19, .82);
  backdrop-filter: blur(8px);
}
.sales-modal.is-open { display: flex; }
.sales-modal-panel {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 48px;
  border: 1px solid var(--border-2);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.sales-modal-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent 75%);
}
.sales-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-2);
  background: transparent;
  color: var(--muted);
  font: 300 28px/1 Inter, sans-serif;
  cursor: pointer;
}
.sales-modal-close:hover { color: var(--white); border-color: var(--gold-dim); }
.sales-modal-title {
  max-width: 570px;
  margin: 18px 0 14px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.08;
}
.sales-modal-intro { max-width: 600px; margin-bottom: 32px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.sales-form { display: grid; gap: 20px; }
.sales-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.sales-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.sales-field { display: grid; gap: 8px; }
.sales-field label {
  color: var(--cream);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.sales-field label span { color: var(--gold); }
.sales-field input,
.sales-field select,
.sales-field textarea {
  width: 100%;
  border: 1px solid var(--border-2);
  border-radius: 0;
  outline: none;
  background: var(--surface-2);
  color: var(--white);
  font: 400 14px/1.5 Inter, sans-serif;
  padding: 12px 14px;
  transition: border-color .2s, box-shadow .2s;
}
.sales-field textarea { min-height: 112px; resize: vertical; }
.sales-field input:focus,
.sales-field select:focus,
.sales-field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 2px var(--gold-faint); }
.sales-field textarea::placeholder { color: var(--ghost); }
.sales-consent { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 12px; line-height: 1.6; }
.sales-consent input { width: 15px; height: 15px; margin-top: 2px; accent-color: var(--gold); flex: 0 0 auto; }
.sales-consent a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.sales-form-note { color: var(--ghost); font-size: 11px; line-height: 1.55; }
.sales-form-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.sales-form-status { color: var(--gold); font-size: 12px; }
.sales-form-status a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.sales-form .btn:disabled { cursor: wait; opacity: .65; transform: none; }

@media (max-width: 640px) {
  .sales-modal { padding: 0; align-items: stretch; }
  .sales-modal-panel { max-height: 100vh; padding: 38px 22px 30px; }
  .sales-form-grid { grid-template-columns: 1fr; }
}
