/* ════════════════════════════════════════════
   DRAGON — Personal Digital Protection
   Design System: Black / White / Gold
   ════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #060606;
  --black-2: #0d0d0d;
  --black-3: #141414;
  --black-4: #1c1c1c;
  --gold: #C8A84B;
  --gold-light: #E2C97A;
  --gold-dim: #8A6E28;
  --gold-faint: rgba(200, 168, 75, 0.08);
  --white: #F5F0E8;
  --white-dim: rgba(245, 240, 232, 0.7);
  --white-faint: rgba(245, 240, 232, 0.12);
  --white-ghost: rgba(245, 240, 232, 0.04);
  --border: rgba(200, 168, 75, 0.18);
  --border-faint: rgba(200, 168, 75, 0.08);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --display: 'Cinzel', serif;
  --sans: 'Jost', sans-serif;
  --max: 1180px;
  --nav-h: 76px;
}

html { scroll-behavior: smooth; }

.skip-link {
  position: absolute;
  top: -100px; left: 16px;
  z-index: 200;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 12px 20px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--black); }

/* ────────── NAVIGATION ────────── */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 48px;
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s;
}
nav.site-nav.scrolled,
nav.site-nav.solid {
  background: rgba(6,6,6,0.96);
  border-bottom-color: var(--border-faint);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.nav-login {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-login:hover { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
  z-index: 0;
}
.btn:hover::before { transform: scaleX(1); }
.btn:hover { color: var(--black); }
.btn span { position: relative; z-index: 1; }
.btn-solid { background: var(--gold); color: var(--black); border-color: var(--gold); font-weight: 700; }
.btn-solid::before { background: var(--gold-light); }
.btn-solid:hover { color: var(--black); }
.btn-sm-pad { padding: 10px 20px; font-size: 10px; }

/* Mobile hamburger */
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.nav-burger span { display: block; width: 22px; height: 1px; background: var(--gold); transition: transform 0.25s, opacity 0.25s; }
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 99;
  padding: 40px 32px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.14em;
  color: var(--white-dim);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-faint);
}
.mobile-menu a:hover { color: var(--gold); }

/* ────────── HERO (home) ────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--nav-h) 48px 0;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--border-faint) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border-faint) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(200,168,75,0.07) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  pointer-events: none;
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, var(--black) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 0 100px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 40px; height: 1px; background: var(--gold-dim);
}
.hero-dragon-mark { display: block; margin: 0 auto 24px; opacity: 0.95; }
.hero-title {
  font-family: var(--display);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 12px;
}
.hero-title .gold { color: var(--gold); }
.hero-subtitle-line {
  font-family: var(--display);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-bottom: 40px;
}
.hero-body {
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: var(--white-dim);
  max-width: 700px;
  margin: 0 auto 56px;
  line-height: 1.6;
}
.hero-ctas { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.22em;
  color: var(--gold-dim); text-transform: uppercase;
  animation: scrollBounce 2.4s ease-in-out infinite;
}
.hero-scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold-dim), transparent); }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ────────── PAGE HERO (subpages) ────────── */
.page-hero {
  padding: calc(var(--nav-h) + 96px) 48px 72px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-faint);
  background: var(--black);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--border-faint) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border-faint) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 100% at 50% 0%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 100% at 50% 0%, black 30%, transparent 100%);
}
.page-hero-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.page-hero.centered .page-hero-inner { text-align: center; }
.page-hero.centered .section-label { justify-content: center; }
.page-hero.centered .section-label::before { content: ''; width: 48px; height: 1px; background: var(--gold-dim); }
.page-hero-title {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 22px;
}
.page-hero-title em { font-style: italic; color: var(--gold); font-family: var(--serif); font-weight: 300; }
.page-hero-body {
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 300;
  color: var(--white-dim);
  max-width: 720px;
  line-height: 1.65;
}
.page-hero.centered .page-hero-body { margin: 0 auto; }
.page-hero-ctas { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.page-hero.centered .page-hero-ctas { justify-content: center; }

/* ────────── SECTIONS ────────── */
section { position: relative; overflow: hidden; }
.section-inner { max-width: var(--max); margin: 0 auto; padding: 110px 48px; }
.section-inner.tight { padding: 80px 48px; }
.section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::after { content: ''; flex: 0 0 auto; width: 60px; height: 1px; background: var(--gold-dim); }
.section-title {
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  color: var(--white);
}
.section-title em { font-style: italic; color: var(--gold); font-family: var(--serif); font-weight: 300; }
.section-body {
  font-family: var(--serif);
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 300;
  color: var(--white-dim);
  max-width: 680px;
  line-height: 1.65;
}
.centered-header { text-align: center; }
.centered-header .section-label { justify-content: center; }
.centered-header .section-label::before { content: ''; width: 48px; height: 1px; background: var(--gold-dim); }
.centered-header .section-body { margin: 0 auto; }

.bg-alt { background: var(--black-2); border-top: 1px solid var(--border-faint); border-bottom: 1px solid var(--border-faint); }

/* ────────── STAT BAR ────────── */
.stat-bar { border-top: 1px solid var(--border-faint); border-bottom: 1px solid var(--border-faint); background: var(--black-2); padding: 48px; }
.stat-bar-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-faint); }
.stat-item { background: var(--black-2); padding: 48px 40px; text-align: center; }
.stat-num { font-family: var(--display); font-size: clamp(42px, 5vw, 64px); font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 12px; }
.stat-label { font-size: 12px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--white-dim); }
.stat-sub { font-family: var(--serif); font-size: 13px; color: rgba(245,240,232,0.4); margin-top: 6px; font-style: italic; }

/* ────────── SPLIT LAYOUTS ────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.split.wide-right { grid-template-columns: 1fr 1.15fr; }
.split.wide-left { grid-template-columns: 1.15fr 1fr; }

/* ────────── LISTS ────────── */
.check-list { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 15px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 14px; font-weight: 400;
  color: var(--white-dim); letter-spacing: 0.02em;
}
.check-list li::before { content: '◆'; color: var(--gold); font-size: 7px; flex-shrink: 0; margin-top: 7px; }
.check-list li strong { color: var(--white); font-weight: 500; }

/* ────────── PILLAR GRID ────────── */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-faint); }
.pillar-card { background: var(--black-2); padding: 48px 40px; position: relative; transition: background 0.3s; }
a.pillar-card { text-decoration: none; display: block; }
.pillar-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.pillar-card:hover { background: var(--black-3); }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-num { font-family: var(--display); font-size: 11px; letter-spacing: 0.24em; color: var(--gold-dim); margin-bottom: 24px; }
.pillar-icon { width: 48px; height: 48px; margin-bottom: 24px; opacity: 0.85; }
.pillar-title { font-family: var(--display); font-size: 18px; font-weight: 600; letter-spacing: 0.06em; color: var(--white); margin-bottom: 14px; }
.pillar-body { font-size: 14px; font-weight: 300; color: rgba(245,240,232,0.55); line-height: 1.65; }

/* ────────── PILLAR DETAIL (protection page) ────────── */
.pillar-detail { padding: 90px 48px; border-bottom: 1px solid var(--border-faint); }
.pillar-detail:nth-child(even) { background: var(--black-2); }
.pillar-detail-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.pillar-detail:nth-child(even) .pillar-detail-inner { direction: rtl; }
.pillar-detail:nth-child(even) .pillar-detail-inner > * { direction: ltr; }
.pillar-detail-icon-wrap {
  width: 200px; height: 200px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
  position: relative;
  background: var(--gold-faint);
}
.pillar-detail-icon-wrap::before {
  content: '';
  position: absolute; inset: 14px;
  border: 1px solid var(--border-faint);
}
.pillar-detail-icon-wrap svg { width: 90px; height: 90px; }

/* ────────── WHO CARDS ────────── */
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.who-card {
  border: 1px solid var(--border-faint);
  background: var(--black-2);
  padding: 48px 36px 44px;
  position: relative;
  transition: border-color 0.3s, background 0.3s;
  text-decoration: none;
  display: block;
}
.who-card.featured { border-color: var(--border); background: var(--black-3); }
.who-card:hover { border-color: var(--gold-dim); background: var(--black-3); }
.who-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--border);
  padding: 5px 12px; margin-bottom: 28px;
}
.who-title { font-family: var(--display); font-size: 22px; font-weight: 600; letter-spacing: 0.06em; color: var(--white); margin-bottom: 16px; }
.who-body { font-family: var(--serif); font-size: 16px; font-weight: 300; color: var(--white-dim); line-height: 1.65; margin-bottom: 28px; }
.who-features { list-style: none; display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--border-faint); padding-top: 24px; }
.who-features li {
  font-size: 12px; font-weight: 400; letter-spacing: 0.05em;
  color: rgba(245,240,232,0.55);
  display: flex; align-items: center; gap: 10px;
}
.who-features li::before { content: ''; width: 16px; height: 1px; background: var(--gold-dim); flex-shrink: 0; }

/* ────────── FEATURE ROWS ────────── */
.feature-list { list-style: none; margin-top: 40px; display: flex; flex-direction: column; gap: 22px; }
.feature-list li { display: flex; gap: 18px; align-items: flex-start; }
.fl-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 14px; color: var(--gold);
  margin-top: 2px; background: var(--gold-faint);
}
.fl-title { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 4px; }
.fl-body { font-size: 13px; font-weight: 300; color: rgba(245,240,232,0.5); line-height: 1.6; }

/* ────────── HOW STEPS ────────── */
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); position: relative; }
.how-steps::before {
  content: '';
  position: absolute; top: 32px;
  left: calc(100%/6); right: calc(100%/6);
  height: 1px; background: var(--border); z-index: 0;
}
.how-step { padding: 0 40px; text-align: center; position: relative; z-index: 1; }
.how-step-num {
  width: 64px; height: 64px;
  border: 1px solid var(--border);
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 32px;
  font-family: var(--display);
  font-size: 22px; font-weight: 600; color: var(--gold);
  transition: background 0.3s, border-color 0.3s;
}
.bg-alt .how-step-num { background: var(--black-2); }
.how-step:hover .how-step-num { background: var(--gold-faint); border-color: var(--gold); }
.how-step-title { font-family: var(--display); font-size: 18px; font-weight: 600; letter-spacing: 0.08em; color: var(--white); margin-bottom: 16px; }
.how-step-body { font-family: var(--serif); font-size: 16px; font-weight: 300; color: var(--white-dim); line-height: 1.65; font-style: italic; }
.how-detail { margin-top: 12px; font-size: 12px; font-weight: 300; color: rgba(245,240,232,0.4); line-height: 1.6; font-style: normal; }

/* ────────── PLATFORM MOCK ────────── */
.platform-screen { width: 100%; border: 1px solid var(--border); background: var(--black-3); overflow: hidden; }
.platform-screen-bar {
  background: var(--black-4);
  border-bottom: 1px solid var(--border-faint);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 8px;
}
.screen-dot { width: 10px; height: 10px; border-radius: 50%; }
.screen-dot-r { background: #3a1a1a; }
.screen-dot-y { background: #3a3218; }
.screen-dot-g { background: #1a3a1a; }
.screen-url { font-size: 11px; color: rgba(245,240,232,0.25); margin-left: 8px; letter-spacing: 0.03em; }
.platform-ui { padding: 24px; }
.ui-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.ui-logo-sm { font-family: var(--display); font-size: 13px; letter-spacing: 0.2em; color: var(--gold); display: flex; align-items: center; gap: 8px; }
.ui-status { display: flex; align-items: center; gap: 6px; font-size: 10px; letter-spacing: 0.1em; color: #4CAF50; }
.ui-status-dot { width: 6px; height: 6px; border-radius: 50%; background: #4CAF50; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(76,175,80,0); }
  50% { opacity: 0.8; box-shadow: 0 0 0 4px rgba(76,175,80,0.1); }
}
.ui-threat-score {
  background: var(--black-4);
  border: 1px solid var(--border-faint);
  padding: 20px 24px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.ui-score-label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,240,232,0.4); margin-bottom: 4px; }
.ui-score-num { font-family: var(--display); font-size: 36px; color: var(--gold); font-weight: 600; }
.ui-score-ring {
  width: 64px; height: 64px; border-radius: 50%;
  border: 3px solid var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 11px; color: var(--gold); letter-spacing: 0.06em;
}
.ui-modules { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.ui-module { background: var(--black-4); border: 1px solid var(--border-faint); padding: 14px 16px; display: flex; align-items: center; gap: 10px; }
.ui-module-icon { width: 28px; height: 28px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 11px; }
.ui-module-info { flex: 1; min-width: 0; }
.ui-module-name { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; color: var(--white-dim); text-transform: uppercase; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ui-module-status { font-size: 9px; color: #4CAF50; letter-spacing: 0.06em; margin-top: 2px; }
.ui-module-status.warn { color: var(--gold); }
.ui-alert {
  background: rgba(200,168,75,0.06);
  border: 1px solid rgba(200,168,75,0.22);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
}
.ui-alert-icon { color: var(--gold); font-size: 12px; flex-shrink: 0; }
.ui-alert-text { font-size: 11px; color: var(--white-dim); letter-spacing: 0.03em; }
.ui-alert-text strong { color: var(--gold); font-weight: 600; }

/* ────────── TESTIMONIALS ────────── */
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-faint); }
.test-grid.single { grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; }
.test-card { background: var(--black); padding: 48px 36px; position: relative; }
.bg-alt .test-card { background: var(--black-2); }
.test-card::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 80px; color: var(--gold); opacity: 0.2;
  position: absolute; top: 24px; left: 28px; line-height: 1;
}
.test-quote {
  font-family: var(--serif);
  font-size: 17px; font-weight: 300; font-style: italic;
  color: var(--white-dim); line-height: 1.7;
  margin-bottom: 32px; position: relative; z-index: 1;
}
.test-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--border-faint); padding-top: 24px; }
.test-avatar {
  width: 42px; height: 42px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 13px; color: var(--gold);
  background: var(--black-3); flex-shrink: 0;
}
.test-name { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin-bottom: 3px; }
.test-role { font-size: 11px; color: rgba(245,240,232,0.4); letter-spacing: 0.05em; }

/* ────────── CONCIERGE STATS ────────── */
.concierge-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border-faint); margin-top: 52px; }
.conc-stat { background: var(--black-2); padding: 32px 28px; }
.conc-stat-num { font-family: var(--display); font-size: 36px; font-weight: 700; color: var(--gold); margin-bottom: 6px; }
.conc-stat-label { font-size: 11px; font-weight: 400; color: rgba(245,240,232,0.5); letter-spacing: 0.1em; text-transform: uppercase; }

/* ────────── FAQ ────────── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-faint); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 4px;
  background: none; border: none;
  font-family: var(--display);
  font-size: 17px; font-weight: 600;
  letter-spacing: 0.04em; color: var(--white);
  text-align: left; cursor: pointer;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q .faq-arrow { font-family: var(--sans); color: var(--gold); font-size: 18px; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-family: var(--serif);
  font-size: 17px; font-weight: 300;
  color: var(--white-dim); line-height: 1.7;
  padding: 0 4px;
}
.faq-item.open .faq-a { max-height: 1000px; padding: 0 4px 28px; }

/* ────────── FORMS ────────── */
.form-card {
  border: 1px solid var(--border-faint);
  background: var(--black-2);
  padding: 56px;
  max-width: 760px;
  margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
}
.field input, .field select, .field textarea {
  background: var(--black-3);
  border: 1px solid var(--border);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--white);
  outline: none;
  letter-spacing: 0.03em;
  transition: border-color 0.2s;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold-dim); }
.field input::placeholder, .field textarea::placeholder { color: rgba(245,240,232,0.3); }
.field select { appearance: none; cursor: pointer; }
.field textarea { resize: vertical; min-height: 120px; }
.form-submit-row { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 8px; flex-wrap: wrap; }
.form-note { font-size: 11px; color: rgba(245,240,232,0.3); letter-spacing: 0.08em; }

/* ────────── CTA ────────── */
.cta-box {
  border: 1px solid var(--border-faint);
  background: var(--black-2);
  padding: 96px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(200,168,75,0.06) 0%, transparent 100%);
  pointer-events: none;
}
.cta-title {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.cta-subtitle {
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 300; font-style: italic;
  color: var(--white-dim);
  max-width: 540px;
  margin: 0 auto 52px;
}
.cta-form {
  display: flex; align-items: stretch;
  max-width: 520px;
  margin: 0 auto 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative; z-index: 1;
}
.cta-input {
  flex: 1;
  background: var(--black-3);
  border: none;
  padding: 16px 20px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--white);
  outline: none;
  letter-spacing: 0.04em;
  min-width: 0;
}
.cta-input::placeholder { color: rgba(245,240,232,0.3); }
.cta-submit {
  background: var(--gold);
  border: none;
  padding: 0 32px;
  font-family: var(--sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--black);
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.cta-submit:hover { background: var(--gold-light); }
.cta-note { font-size: 11px; color: rgba(245,240,232,0.3); letter-spacing: 0.08em; position: relative; z-index: 1; }
.gold-divider { width: 48px; height: 1px; background: var(--gold); margin: 0 auto 20px; }

/* ────────── LOGIN ────────── */
.login-wrap {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: calc(var(--nav-h) + 40px) 24px 60px;
  position: relative;
}
.login-card {
  width: 100%; max-width: 440px;
  border: 1px solid var(--border);
  background: var(--black-2);
  padding: 56px 48px;
  position: relative; z-index: 1;
  text-align: center;
}
.login-title { font-family: var(--display); font-size: 24px; font-weight: 600; letter-spacing: 0.12em; color: var(--white); margin: 20px 0 8px; }
.login-sub { font-size: 12px; color: var(--white-dim); letter-spacing: 0.06em; margin-bottom: 36px; }
.login-card .field { text-align: left; margin-bottom: 18px; }
.login-meta { margin-top: 24px; font-size: 11px; color: rgba(245,240,232,0.35); letter-spacing: 0.06em; line-height: 1.8; }
.login-meta a { color: var(--gold); text-decoration: none; }

/* ────────── PRICING / PLANS ────────── */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; align-items: stretch; }
.plan-card {
  background: var(--black-2);
  border: 1px solid var(--border-faint);
  padding: 48px 40px 40px;
  position: relative;
  display: flex; flex-direction: column;
  transition: border-color 0.3s, background 0.3s;
}
.plan-card:hover { border-color: var(--gold-dim); background: var(--black-3); }
.plan-card.featured { border-color: var(--border); background: var(--black-3); }
.plan-flag {
  position: absolute; top: -1px; right: 28px;
  background: var(--gold); color: var(--black);
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 6px 14px;
}
.plan-name { font-family: var(--display); font-size: 20px; font-weight: 600; letter-spacing: 0.1em; color: var(--white); margin-bottom: 6px; }
.plan-tagline { font-family: var(--serif); font-size: 15px; font-style: italic; color: var(--white-dim); margin-bottom: 28px; }
.plan-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.plan-price { font-family: var(--display); font-size: 44px; font-weight: 700; color: var(--gold); line-height: 1; }
.plan-per { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,240,232,0.4); }
.plan-billing-note { font-size: 11px; color: rgba(245,240,232,0.35); letter-spacing: 0.06em; margin-bottom: 28px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 11px; border-top: 1px solid var(--border-faint); padding-top: 26px; margin-bottom: 36px; }
.plan-features li {
  font-size: 13px; font-weight: 300;
  color: rgba(245,240,232,0.6);
  display: flex; gap: 10px; align-items: flex-start;
  line-height: 1.5;
}
.plan-features li::before { content: '◆'; color: var(--gold); font-size: 7px; flex-shrink: 0; margin-top: 6px; }
.plan-cta { margin-top: auto; }
.plan-cta .btn { width: 100%; text-align: center; }
.plans-note { text-align: center; margin-top: 44px; font-size: 12px; color: rgba(245,240,232,0.35); letter-spacing: 0.08em; line-height: 1.9; }
.plans-note a { color: var(--gold); text-decoration: none; }

/* ────────── AUTH FEEDBACK ────────── */
.form-error {
  display: none;
  background: rgba(248,113,113,0.06);
  border: 1px solid rgba(248,113,113,0.3);
  color: #f8b4b4;
  font-size: 12px; letter-spacing: 0.04em; line-height: 1.6;
  padding: 12px 16px;
  margin-bottom: 18px;
  text-align: left;
}
.form-error.visible { display: block; }
.form-error a { color: var(--gold); }
.login-card.wide { max-width: 520px; }
.plan-summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--border);
  background: var(--gold-faint);
  padding: 14px 18px;
  margin-bottom: 26px;
  text-align: left;
}
.plan-summary-name { font-family: var(--display); font-size: 14px; font-weight: 600; letter-spacing: 0.1em; color: var(--gold); }
.plan-summary-price { font-size: 12px; color: var(--white-dim); letter-spacing: 0.06em; }
.plan-summary a { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); text-decoration: none; white-space: nowrap; }
.btn[disabled], .btn.loading { opacity: 0.55; pointer-events: none; }

/* ────────── PROSE (legal) ────────── */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 {
  font-family: var(--display);
  font-size: 20px; font-weight: 600;
  letter-spacing: 0.06em; color: var(--gold);
  margin: 44px 0 16px;
}
.prose p, .prose li {
  font-family: var(--serif);
  font-size: 17px; font-weight: 300;
  color: var(--white-dim); line-height: 1.75;
  margin-bottom: 16px;
}
.prose ul { padding-left: 22px; }
.prose .updated { font-family: var(--sans); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,240,232,0.35); margin-bottom: 32px; }

/* ────────── 404 ────────── */
.notfound-wrap {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: var(--nav-h) 24px 0;
  position: relative; overflow: hidden;
}
.notfound-code {
  font-family: var(--display);
  font-size: clamp(90px, 18vw, 200px);
  font-weight: 700; color: var(--gold);
  line-height: 1; opacity: 0.92;
  letter-spacing: 0.08em;
}
.notfound-title { font-family: var(--display); font-size: clamp(22px, 4vw, 36px); letter-spacing: 0.14em; color: var(--white); margin: 16px 0 12px; }
.notfound-body { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--white-dim); max-width: 480px; margin-bottom: 44px; }

/* ────────── FOOTER ────────── */
footer { background: var(--black); border-top: 1px solid var(--border-faint); padding: 64px 48px 40px; }
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand-name {
  font-family: var(--display);
  font-size: 26px; font-weight: 700;
  letter-spacing: 0.25em; color: var(--gold);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.footer-tagline {
  font-family: var(--serif);
  font-size: 15px; font-style: italic;
  color: rgba(245,240,232,0.4);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 260px;
}
.footer-col-title { font-size: 10px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px; font-weight: 300;
  color: rgba(245,240,232,0.45);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.04em;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border-faint);
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 11px; color: rgba(245,240,232,0.2); letter-spacing: 0.1em; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 11px; color: rgba(245,240,232,0.2); text-decoration: none; letter-spacing: 0.08em; transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold-dim); }

/* ────────── ANIMATION ────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

body.menu-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-in { opacity: 1; transform: none; transition: none; }
  .hero-scroll { animation: none; }
  .ui-status-dot { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ────────── RESPONSIVE ────────── */
@media (max-width: 980px) {
  .nav-links, .nav-login { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 640px) {
  /* keep the burger on-screen: the CTA lives in the mobile menu anyway */
  .nav-right .btn { display: none; }
  nav.site-nav { padding: 0 16px; }
}
@media (max-width: 900px) {
  nav.site-nav { padding: 0 24px; }
  .section-inner { padding: 80px 24px; }
  .page-hero { padding: calc(var(--nav-h) + 64px) 24px 56px; }
  .stat-bar { padding: 0; }
  .stat-bar-inner { grid-template-columns: 1fr; }
  .split, .split.wide-right, .split.wide-left { grid-template-columns: 1fr; gap: 48px; }
  .pillars-grid, .who-grid, .how-steps, .test-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .how-steps::before { display: none; }
  .how-step { padding: 0 0 40px; }
  .pillar-detail { padding: 64px 24px; }
  .pillar-detail-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cta-box { padding: 64px 28px; }
  .form-card { padding: 36px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  footer { padding: 48px 24px 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
