/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0e0d0c;
  --bg-2: #161513;
  --fg: #f0ebe1;
  --fg-muted: #a0907a;
  --accent: #c9a84c;
  --accent-dark: #a8893d;
  --border: #2a2722;
  --card-bg: #161513;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 4rem;
  border-bottom: 1px solid var(--border);
  background: rgba(14, 13, 12, 0.85);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.nav-tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 4rem 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 760px; position: relative; z-index: 1; }
.hero-overline {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 2rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.75;
  font-weight: 300;
}
.hero-rule {
  position: absolute;
  bottom: 0;
  left: 4rem;
  right: 4rem;
  height: 1px;
  background: linear-gradient(to right, var(--accent), transparent 60%);
}

/* ===== HERO IMAGE — split layout for Safe/Phone ad ===== */
/* Mobile-first: image stacks below text on small screens */
.hero--split {
  flex-direction: column;
  padding-bottom: 0;
}
.hero--split .hero-inner {
  padding-bottom: 3rem;
}
.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero-cta {
  display: inline-block;
  text-decoration: none;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 16px 32px;
  transition: background 0.2s;
  white-space: nowrap;
}
.hero-cta:hover { background: var(--accent-dark); }
.hero-secondary-cta {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.hero-secondary-link {
  color: var(--fg-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.18s;
}
.hero-secondary-link:hover { color: var(--accent); }
.hero-image-wrap {
  width: 100%;
  position: relative;
  z-index: 1;
  line-height: 0;
}
.hero-image {
  width: 100%;
  display: block;
  object-fit: cover;
  /* On mobile, show 56vw height to reveal the key contrast without cropping */
  max-height: 56vw;
  min-height: 220px;
}

/* Desktop: side-by-side — text left, image right */
@media (min-width: 900px) {
  .hero--split {
    flex-direction: row;
    align-items: stretch;
    padding: 0;
    min-height: 100vh;
  }
  .hero--split .hero-inner {
    flex: 1 1 50%;
    padding: 140px 4rem 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-image-wrap {
    flex: 1 1 50%;
  }
  .hero-image {
    width: 100%;
    height: 100%;
    max-height: none;
    min-height: 100vh;
    object-position: center;
  }
  /* Rule sits at bottom of text column only */
  .hero--split .hero-rule {
    left: 0;
    right: 50%;
  }
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 100px 4rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner { max-width: 680px; margin: 0 auto; }
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--accent);
  line-height: 1.4;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--accent);
}
.manifesto-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.manifesto-body strong { color: var(--fg); font-weight: 500; }

/* ===== SERVICES ===== */
.services {
  padding: 100px 4rem;
  background: var(--bg);
}
.services-header {
  text-align: center;
  margin-bottom: 64px;
}
.services-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 1rem;
}
.services-sub {
  font-size: 1rem;
  color: var(--fg-muted);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: var(--card-bg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.3s;
}
.service-card:hover { background: #1e1b17; }
.service-card-wide { grid-column: 1 / 3; }
.service-icon {
  color: var(--accent);
  width: 28px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fg);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
  flex: 1;
}

/* ===== DIFFERENCE ===== */
.difference {
  padding: 100px 4rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.difference-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.difference-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.difference-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.stat-row { display: flex; flex-direction: column; gap: 2.5rem; }
.stat {}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  line-height: 1.4;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 4rem;
  background: var(--bg);
  text-align: center;
}
.closing-inner { max-width: 620px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}
.closing-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px 4rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.footer-desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 0.25rem;
}
.footer-meta p {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-link {
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.15s;
}
.footer-link:hover { color: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav { padding: 0 1.5rem; }
  .hero { padding: 100px 1.5rem 60px; }
  .manifesto { padding: 70px 1.5rem; }
  .services { padding: 70px 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: 1; }
  .difference { padding: 70px 1.5rem; }
  .difference-inner { grid-template-columns: 1fr; gap: 48px; }
  .closing { padding: 80px 1.5rem; }
  .footer { padding: 40px 1.5rem; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}
/* ===== ASSESSMENT PAGE ===== */
.assess-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 4rem 60px;
  position: relative;
  overflow: hidden;
}
.assess-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.assess-hero-inner { max-width: 680px; position: relative; z-index: 1; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
  transition: color 0.2s;
}
.back-link:hover { color: var(--fg); }
.assess-overline {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.assess-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.assess-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.75;
  font-weight: 300;
}

/* Scope section */
.assess-scope {
  padding: 80px 4rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.assess-scope-inner { max-width: 900px; margin: 0 auto; }
.assess-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.assess-section-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  margin-bottom: 3rem;
}
.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.scope-item {
  background: var(--card-bg);
  padding: 36px 32px;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.scope-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.scope-item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.6rem;
}
.scope-item p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Process section */
.assess-process {
  padding: 80px 4rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.assess-process-inner { max-width: 800px; margin: 0 auto; }
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
}
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }
.process-step-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  padding-top: 4px;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Pricing section */
.assess-pricing {
  padding: 80px 4rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.assess-pricing-inner { max-width: 900px; margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
  max-width: 780px;
}
.pricing-card {
  background: var(--card-bg);
  padding: 40px 36px;
  position: relative;
}
.pricing-card--featured {
  background: #1e1b17;
}
.pricing-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
}
.pricing-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 1rem;
}
.pricing-period {
  font-size: 1.2rem;
  color: var(--fg-muted);
}
.pricing-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.pricing-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pricing-includes li {
  font-size: 0.875rem;
  color: var(--fg-muted);
  padding-left: 1.25rem;
  position: relative;
}
.pricing-includes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* CTA / Form section */
.assess-cta {
  padding: 80px 4rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.assess-cta-inner { max-width: 600px; margin: 0 auto; }
.assess-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.assess-cta-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  margin-bottom: 3rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group--full { width: 100%; }
.form-group label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
}
.form-group select { cursor: pointer; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--fg-muted); opacity: 0.6; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-primary {
  background: var(--accent);
  color: var(--bg);
  border: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 32px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--fg-muted); color: var(--fg); }
.closing-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.form-privacy {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-top: -0.5rem;
}
.form-success {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #1a2e1a;
  border: 1px solid #2d4a2d;
  padding: 24px;
  color: var(--accent);
}
.form-success svg { flex-shrink: 0; margin-top: 2px; }
.form-success strong { display: block; color: var(--fg); margin-bottom: 0.25rem; }
.form-success p { font-size: 0.875rem; color: var(--fg-muted); }
.form-error-banner {
  background: #2e1a1a;
  border: 1px solid #4a2d2d;
  color: #e07070;
  padding: 14px 20px;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-cta {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  padding: 8px 18px;
  border: 1px solid var(--accent);
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--accent); color: var(--bg); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav { padding: 0 1.5rem; }
  .assess-hero { padding: 100px 1.5rem 60px; }
  .assess-scope { padding: 60px 1.5rem; }
  .assess-process { padding: 60px 1.5rem; }
  .assess-pricing { padding: 60px 1.5rem; }
  .assess-cta { padding: 60px 1.5rem; }
  .scope-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form .btn-primary { width: 100%; }
  .footer { padding: 40px 1.5rem; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}
@media (max-width: 480px) {
  .assess-headline { font-size: 2.2rem; }
  .pricing-amount { font-size: 2.2rem; }
  .process-step { grid-template-columns: 50px 1fr; gap: 1rem; }
}

/* ===== NAV LINKS ===== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover,
.nav-link--active { color: var(--fg); }

/* ===== MEMBERSHIP PAGE ===== */
.mem-hero {
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 4rem 60px;
  position: relative;
  overflow: hidden;
}
.mem-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.mem-hero-inner { max-width: 720px; position: relative; z-index: 1; }
.mem-overline {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.mem-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 1.75rem;
}
.mem-headline em { font-style: italic; color: var(--accent); }
.mem-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.8;
  font-weight: 300;
}

/* Intro strip */
.mem-intro {
  padding: 56px 4rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.mem-intro-inner { max-width: 700px; margin: 0 auto; }
.mem-intro-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-style: italic;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Subscribe CTA */
.mem-subscribe-cta {
  padding: 80px 4rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.mem-subscribe-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 5rem;
}
.mem-subscribe-header { flex: 1; }
.mem-subscribe-overline {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.mem-subscribe-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.mem-subscribe-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 320px;
}
.mem-subscribe-tiers {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mem-subscribe-tier {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.mem-subscribe-tier-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  min-width: 70px;
}
.mem-subscribe-tier-price { flex: 1; }
.mem-subscribe-amount {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--fg);
}
.mem-subscribe-period {
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.mem-subscribe-btn {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 20px;
  transition: all 0.2s;
  white-space: nowrap;
}
.mem-subscribe-btn:hover { background: var(--accent); color: var(--bg); }
.mem-subscribe-annual {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.mem-subscribe-annual-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mem-subscribe-annual-btn {
  background: transparent;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 20px;
  transition: all 0.2s;
}
.mem-subscribe-annual-btn:hover { border-color: var(--accent); color: var(--accent); }
.mem-subscribe-trust {
  margin-top: 1.5rem;
  text-align: center;
}
.mem-subscribe-trust-link {
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.18s;
}
.mem-subscribe-trust-link:hover { color: var(--accent); }

/* Tiers */
.mem-tiers { padding: 0 4rem 100px; background: var(--bg); }
.mem-tiers-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 80px;
}
.mem-tier {
  background: var(--card-bg);
  padding: 56px 52px;
  position: relative;
}
.mem-tier--featured { background: #1a1714; }
.mem-tier-badge {
  position: absolute;
  top: 0;
  right: 40px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
}
.mem-tier-header {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.mem-tier-num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  padding-top: 6px;
  flex-shrink: 0;
  width: 32px;
}
.mem-tier-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.mem-tier-who {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 580px;
}
.mem-tier-includes-label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.mem-tier-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mem-tier-list li {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.mem-tier-list li:last-child { border-bottom: none; }
.mem-tier-item-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
  width: 18px;
}
.mem-tier-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.4rem;
}
.mem-tier-list p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.7;
}
.mem-cta-btn {
  display: inline-block;
  margin-top: 2.5rem;
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  transition: all 0.2s;
}
.mem-cta-btn:hover { background: var(--accent); color: var(--bg); }

/* Pricing note */
.mem-pricing-note {
  padding: 64px 4rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.mem-pricing-note-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.mem-pricing-note-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}
.mem-pricing-note-text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-style: italic;
  color: var(--fg-muted);
  text-align: center;
  line-height: 1.6;
  flex-shrink: 0;
  max-width: 380px;
}

/* Closing */
.mem-closing {
  padding: 120px 4rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
}
.mem-closing-inner { max-width: 600px; margin: 0 auto; }
.mem-closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 1.75rem;
}
.mem-closing-headline em { font-style: italic; color: var(--accent); }
.mem-closing-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* ===== CHECKOUT PAGE ===== */
.checkout-hero {
  min-height: 60vh;
  padding: 120px 4rem 60px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.checkout-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
}
.checkout-hero-inner { max-width: 640px; position: relative; z-index: 1; }
.checkout-plan-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.checkout-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.checkout-headline em { font-style: italic; color: var(--accent); }
.checkout-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
}
.checkout-form-section {
  padding: 0 4rem 100px;
  background: var(--bg);
}
.checkout-form-inner { max-width: 500px; }
.checkout-error {
  color: #e07070;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  min-height: 1.4rem;
}
.checkout-submit-btn {
  display: block;
  width: 100%;
  background: var(--accent);
  color: var(--bg);
  border: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 32px;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 1.25rem;
}
.checkout-submit-btn:hover:not(:disabled) { background: var(--accent-dark); }
.checkout-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.checkout-loading { display: inline-flex; align-items: center; gap: 8px; }
.checkout-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-align: center;
}

/* ===== WELCOME PAGE ===== */
.welcome-hero {
  min-height: 60vh;
  padding: 120px 4rem 60px;
  background: var(--bg);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.welcome-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
}
.welcome-hero-inner {
  max-width: 620px;
  position: relative;
  z-index: 1;
}
.welcome-icon {
  color: var(--accent);
  margin-bottom: 2rem;
}
.welcome-overline {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}
.welcome-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.welcome-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.8;
}
.welcome-next {
  padding: 80px 4rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.welcome-next-inner { max-width: 720px; }
.welcome-next-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 3rem;
}
.welcome-steps { display: flex; flex-direction: column; gap: 0; }
.welcome-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.welcome-step:last-child { border-bottom: none; }
.welcome-step-num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  padding-top: 6px;
  flex-shrink: 0;
  width: 32px;
}
.welcome-step-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.welcome-step-body p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.75;
}
.welcome-contact {
  padding: 80px 4rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
}
.welcome-contact-inner { max-width: 500px; margin: 0 auto; }
.welcome-contact-text {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 2rem;
}

/* Membership responsive */
@media (max-width: 900px) {
  .mem-hero { padding: 100px 1.5rem 60px; }
  .mem-intro { padding: 48px 1.5rem; }
  .mem-subscribe-cta { padding: 60px 1.5rem; }
  .mem-subscribe-cta-inner { flex-direction: column; gap: 3rem; }
  .mem-subscribe-sub { max-width: 100%; }
  .mem-tiers { padding: 0 1.5rem 80px; }
  .mem-tiers-inner { margin-top: 60px; }
  .mem-tier { padding: 40px 28px; }
  .mem-tier-header { flex-direction: column; gap: 1rem; }
  .mem-pricing-note { padding: 48px 1.5rem; }
  .mem-pricing-note-inner { flex-direction: column; gap: 1.5rem; }
  .mem-pricing-note-rule { width: 100%; flex: none; }
  .mem-closing { padding: 80px 1.5rem; }
}
@media (max-width: 480px) {
  .mem-tier-list li { flex-direction: column; gap: 0.75rem; }
}

/* ===== FOUNDING COHORT BAR ===== */
.founding-bar {
  background: #0a0908;
  border-top: 1px solid #1e1c18;
  border-bottom: 1px solid #1e1c18;
  padding: 18px 4rem;
}
.founding-bar-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.founding-bar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.founding-bar-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.founding-bar-copy {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--fg);
  letter-spacing: 0.01em;
}
.founding-bar-urgency {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.founding-bar-sub {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.5;
  max-width: 360px;
  text-align: right;
}

/* Founding rate line inside each subscribe tier card */
.mem-subscribe-founding-rate {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--fg-muted);
  font-style: italic;
  margin-bottom: 1rem;
  margin-top: -0.25rem;
  line-height: 1.4;
}

/* Waitlist CTA (when cohort is full) */
.mem-waitlist-cta {
  padding: 80px 4rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.mem-waitlist-cta-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}
.mem-waitlist-form {
  display: flex;
  gap: 1rem;
  width: 100%;
  flex-wrap: wrap;
}
.mem-waitlist-input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  border-radius: 2px;
}
.mem-waitlist-input:focus {
  border-color: var(--accent);
}

@media (max-width: 900px) {
  .founding-bar { padding: 16px 1.5rem; }
  .founding-bar-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .founding-bar-sub { text-align: left; max-width: 100%; }
  .mem-waitlist-cta { padding: 60px 1.5rem; }
}

/* ===== FIRST 30 DAYS PAGE ===== */

.f30-hero {
  padding: 140px 4rem 80px;
  min-height: 55vh;
  display: flex;
  align-items: center;
}
.f30-hero-inner { max-width: 760px; }
.f30-hero-overline {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}
.f30-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.f30-hero-headline em { font-style: italic; color: var(--accent); }
.f30-hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
}

/* Timeline */
.f30-timeline {
  padding: 60px 4rem 80px;
  border-top: 1px solid var(--border);
}
.f30-timeline-inner { max-width: 900px; margin: 0 auto; }

.f30-week {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 2.5rem;
  margin-bottom: 0;
}
.f30-week-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}
.f30-week-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.f30-week-connector {
  width: 1px;
  flex: 1;
  background: var(--border);
  min-height: 40px;
  margin-top: 12px;
}
.f30-week--last .f30-week-marker { justify-content: flex-start; }

.f30-week-content {
  padding-bottom: 64px;
}
.f30-week--last .f30-week-content { padding-bottom: 0; }

.f30-week-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
}
.f30-week-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 1rem;
}
.f30-week-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 1.25rem;
}
.f30-week-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.f30-week-details li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--fg);
}
.f30-week-details li svg { color: var(--accent); flex-shrink: 0; }

/* Closing / pricing */
.f30-closing {
  padding: 80px 4rem;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.f30-closing-inner { max-width: 1000px; margin: 0 auto; }
.f30-closing-overline {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
}
.f30-closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 1rem;
}
.f30-closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 3rem;
}

.f30-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.f30-tier {
  border: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  background: var(--bg);
}
.f30-tier--featured {
  border-color: var(--accent);
}
.f30-tier-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  font-weight: 500;
}
.f30-tier-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fg);
}
.f30-tier-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.f30-tier-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--accent);
}
.f30-tier-period {
  font-size: 0.9rem;
  color: var(--fg-muted);
}
.f30-tier-founding {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.5;
}
.f30-tier-who {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
  flex: 1;
}
.f30-tier-btn {
  display: block;
  padding: 0.85rem 1.25rem;
  background: var(--accent);
  color: var(--bg);
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.15s;
}
.f30-tier-btn:hover { background: var(--accent-dark); }

.f30-waitlist {
  text-align: center;
  padding: 3rem;
  border: 1px solid var(--border);
  margin-bottom: 2.5rem;
}
.f30-waitlist-copy {
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.f30-waitlist .f30-tier-btn {
  display: inline-block;
  min-width: 220px;
}

.f30-briefing-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.f30-briefing-link {
  font-size: 0.9rem;
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.f30-briefing-link:hover { color: var(--accent); }
.f30-briefing-note {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

/* Mobile — first-30-days */
@media (max-width: 900px) {
  .f30-hero { padding: 110px 1.5rem 60px; }
  .f30-timeline { padding: 40px 1.5rem 60px; }
  .f30-week { grid-template-columns: 56px 1fr; gap: 0 1.5rem; }
  .f30-week-num { width: 44px; height: 44px; font-size: 1.25rem; }
  .f30-week-content { padding-bottom: 48px; }
  .f30-tiers { grid-template-columns: 1fr; }
  .f30-closing { padding: 60px 1.5rem; }
  .nav-links .nav-link:nth-child(2) { display: none; }
}

/* ===== EXPOSURE CHECK (/exposure-check) ===== */
.ec-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 4rem 80px;
  position: relative;
  overflow: hidden;
}
.ec-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.ec-hero-inner {
  max-width: 640px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}
.ec-overline {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.ec-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 1.2rem;
}
.ec-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.ec-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

/* Scan form */
.ec-form { width: 100%; }
.ec-input-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  background: var(--bg-2);
}
.ec-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: var(--fg);
  font-family: var(--font-body);
}
.ec-input::placeholder { color: var(--fg-muted); opacity: 0.6; }
.ec-submit {
  background: var(--accent);
  color: #0d0d0c;
  border: none;
  padding: 1rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s;
}
.ec-submit:hover:not(:disabled) { background: var(--accent-dark); }
.ec-submit:disabled { opacity: 0.65; cursor: not-allowed; }
.ec-privacy {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-top: 0.9rem;
  opacity: 0.75;
}

/* Results section */
.ec-results {
  padding: 0 4rem 80px;
}
.ec-results-inner {
  max-width: 680px;
  margin: 0 auto;
}

/* Summary bar */
.ec-summary {
  border-left: 3px solid var(--accent);
  padding: 1.5rem 1.75rem;
  background: var(--bg-2);
  margin-bottom: 2rem;
  border-radius: 0 3px 3px 0;
}
.ec-summary-count {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.ec-summary-count--breach { color: #e0b060; }
.ec-summary-count--clean { color: #7ec88a; }
.ec-summary-copy {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Exposure tags */
.ec-tags-wrap {
  margin-bottom: 2rem;
}
.ec-tags-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
}
.ec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.ec-tag {
  display: inline-block;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--accent);
  padding: 0.35rem 0.85rem;
  border-radius: 2px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Recent breaches */
.ec-breaches-heading {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--fg-muted);
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}
.ec-breaches { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.ec-breach-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  border-radius: 3px;
}
.ec-breach-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 0.25rem;
}
.ec-breach-meta {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* Gated Full Exposure Report card */
.ec-gate {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.ec-gate-blur-preview {
  padding: 2rem 2rem 1.5rem;
  filter: blur(5px);
  user-select: none;
  pointer-events: none;
}
.ec-gate-preview-line {
  height: 13px;
  background: rgba(240, 235, 225, 0.12);
  border-radius: 2px;
  margin-bottom: 14px;
}
.ec-gate-preview-line--long { width: 92%; }
.ec-gate-preview-line--med { width: 68%; }
.ec-gate-preview-line--short { width: 44%; }

.ec-gate-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(14, 13, 12, 0.7);
  backdrop-filter: blur(4px);
}
.ec-gate-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.ec-gate-headline {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.9rem;
  line-height: 1.3;
}
.ec-gate-copy {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 1.5rem;
}
.ec-gate-cta {
  display: inline-block;
  background: var(--accent);
  color: #0d0d0c;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  transition: background 0.18s;
}
.ec-gate-cta:hover { background: var(--accent-dark); }
.ec-gate-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-top: 0.75rem;
  opacity: 0.75;
}

/* Unavailable state */
.ec-unavailable { text-align: center; padding: 2rem 0 3rem; }
.ec-unavailable-copy { font-size: 0.95rem; color: var(--fg-muted); line-height: 1.6; }

/* Footer tagline */
.ec-footer-tagline {
  text-align: center;
  font-size: 0.8rem;
  color: var(--fg-muted);
  opacity: 0.55;
  padding: 0 2rem 2.5rem;
  letter-spacing: 0.03em;
}

/* Mobile — exposure-check */
@media (max-width: 700px) {
  .ec-hero { padding: 110px 1.5rem 60px; }
  .ec-results { padding: 0 1.5rem 60px; }
  .ec-input-row { flex-direction: column; }
  .ec-submit { border-top: 1px solid var(--border); }
  .ec-gate-overlay { padding: 1.5rem 1.25rem; }
  .ec-gate-headline { font-size: 1.2rem; }
}

/* ===== MEMBERSHIP COMPARE TEASER ===== */
.mem-compare-teaser {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 4rem;
}
.mem-compare-teaser-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.mem-compare-teaser-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.15s;
}
.mem-compare-teaser-link:hover { opacity: 1; text-decoration: underline; }

/* ===== /COMPARE PAGE ===== */
.cmp-hero {
  padding: 140px 4rem 80px;
  max-width: 800px;
  margin: 0 auto;
}
.cmp-hero-overline {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.cmp-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 1.25rem;
}
.cmp-hero-headline em { font-style: italic; font-weight: 400; }
.cmp-hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 640px;
}

/* Table */
.cmp-table-section {
  padding: 0 2rem 80px;
}
.cmp-table-wrap {
  max-width: 1100px;
  margin: 0 auto;
  overflow-x: auto;
}
.cmp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.cmp-th {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  color: var(--fg-muted);
}
.cmp-th--sentinel {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.cmp-td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  color: var(--fg);
  line-height: 1.5;
}
.cmp-td--need { font-weight: 500; white-space: nowrap; }
.cmp-td--diy { color: var(--fg-muted); }
.cmp-td--cost {
  white-space: nowrap;
  font-weight: 500;
  color: var(--fg-muted);
}
.cmp-td--nobody { font-style: italic; }
.cmp-td--time { font-style: italic; color: #6b5e50; }
.cmp-included {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-weight: 500;
  font-size: 0.88rem;
}
.cmp-included svg { color: var(--accent); flex-shrink: 0; }
.cmp-included--sentinel-owns {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--accent);
}
/* Total row */
.cmp-row--total .cmp-td {
  border-top: 1px solid var(--accent);
  border-bottom: none;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.cmp-td--total-label { font-weight: 700; font-size: 0.95rem; }
.cmp-td--total-diy { color: #6b5e50; font-style: italic; }
.cmp-td--total-cost {
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg-muted);
}
.cmp-td--total-sentinel {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}

/* Prose blocks */
.cmp-prose-section {
  padding: 80px 4rem 80px;
  border-top: 1px solid var(--border);
}
.cmp-prose-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.cmp-prose-block { position: relative; }
.cmp-prose-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 600;
  color: var(--border);
  line-height: 1;
  margin-bottom: 0.5rem;
  user-select: none;
}
.cmp-prose-headline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 1rem;
}
.cmp-prose-headline em { font-style: italic; font-weight: 400; }
.cmp-prose-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 620px;
}

/* CTA bar */
.cmp-cta-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 72px 4rem;
}
.cmp-cta-bar-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cmp-cta-bar-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.cmp-cta-bar-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
}
.cmp-cta-bar-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cmp-cta-btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  text-align: center;
  white-space: nowrap;
}
.cmp-cta-btn--gold {
  background: var(--accent);
  color: #0e0d0c;
}
.cmp-cta-btn--gold:hover { background: var(--accent-dark); }
.cmp-cta-btn--outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}
.cmp-cta-btn--outline:hover { border-color: var(--accent); color: var(--accent); }

/* Mobile — compare */
@media (max-width: 700px) {
  .cmp-hero { padding: 110px 1.5rem 60px; }
  .cmp-table-section { padding: 0 0 60px; }
  .cmp-th, .cmp-td { padding: 0.75rem 0.85rem; }
  .cmp-th--cost, .cmp-td--cost { display: none; }
  .cmp-prose-section { padding: 60px 1.5rem; }
  .cmp-cta-bar { padding: 60px 1.5rem; }
  .cmp-cta-bar-inner { flex-direction: column; align-items: flex-start; }
  .cmp-cta-bar-actions { flex-direction: column; width: 100%; }
  .cmp-cta-btn { width: 100%; }
}

/* ===== TRUST PAGE ===== */
.trust-hero {
  padding: 140px 4rem 80px;
  position: relative;
}
.trust-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.trust-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.trust-hero-overline {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}
.trust-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.trust-hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.trust-hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.7;
}

.trust-body {
  padding: 40px 4rem 100px;
}
.trust-body-inner {
  max-width: 760px;
  margin: 0 auto;
}

.trust-section {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 2rem;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.trust-section:last-child { border-bottom: none; }

.trust-section-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  padding-top: 0.35rem;
}

.trust-section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.trust-section-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.trust-section-body:last-child { margin-bottom: 0; }

.trust-callout {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 1.1rem 1.4rem;
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-top: 1.25rem;
}
.trust-callout-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.97rem;
  color: var(--fg-muted);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.65;
}
.trust-list li:last-child { border-bottom: none; }
.trust-list li::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 0.9rem;
}
.trust-list--never li::before { display: none; }
.trust-list--never li svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
  color: var(--fg-muted);
  opacity: 0.5;
}

.trust-footer-cta {
  padding: 80px 4rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.trust-footer-cta-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.trust-footer-cta-rule {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 2rem;
}
.trust-footer-cta-text {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.trust-footer-cta-link {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--accent);
  text-decoration: none;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}
.trust-footer-cta-link:hover { color: var(--fg); }
.trust-footer-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-cta-btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.trust-cta-btn--gold {
  background: var(--accent);
  color: #0e0d0c;
}
.trust-cta-btn--gold:hover { background: var(--accent-dark); }
.trust-cta-btn--outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}
.trust-cta-btn--outline:hover { border-color: var(--accent); color: var(--accent); }

/* Mobile — trust */
@media (max-width: 700px) {
  .trust-hero { padding: 110px 1.5rem 60px; }
  .trust-body { padding: 20px 1.5rem 80px; }
  .trust-section { grid-template-columns: 1fr; gap: 0.5rem 0; padding: 40px 0; }
  .trust-section-num { margin-bottom: 0.25rem; }
  .trust-footer-cta { padding: 60px 1.5rem; }
  .trust-footer-cta-actions { flex-direction: column; }
  .trust-cta-btn { width: 100%; text-align: center; }
}
/* ===== SERVICES HUB GRID ===== */
.svc-hub {
  padding: 80px 4rem;
  border-top: 1px solid var(--border);
}
.svc-hub-inner { max-width: 1200px; margin: 0 auto; }
.svc-hub-header { margin-bottom: 48px; }
.svc-hub-label {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.svc-hub-title {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--fg);
  line-height: 1;
}
.svc-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.svc-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 32px;
  background: var(--bg);
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: background 0.15s;
}
.svc-card:hover { background: var(--bg-2); }
.svc-card-name {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--fg);
  line-height: 1;
}
.svc-card-desc {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.75rem;
  color: var(--fg-muted);
  line-height: 1.5;
  flex: 1;
}
.svc-card-arrow {
  font-size: 1rem;
  color: var(--accent);
  align-self: flex-end;
  transition: transform 0.15s;
}
.svc-card:hover .svc-card-arrow { transform: translateX(4px); }

@media (min-width: 900px) {
  .svc-hub-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .svc-hub { padding: 60px 1.5rem; }
  .svc-hub-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card { padding: 20px 16px; min-height: 44px; }
}

/* ===== FOUNDING 25 BAND ===== */
.founding-band {
  padding: 48px 4rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.founding-band-inner { max-width: 640px; margin: 0 auto; }
.founding-band-count {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 10px;
}
.founding-band-sub {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.founding-band-btn {
  display: inline-block;
  background: var(--accent);
  color: #0e0d0c;
  text-decoration: none;
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 28px;
  transition: background 0.18s;
}
.founding-band-btn:hover { background: var(--accent-dark); }

@media (max-width: 600px) {
  .founding-band { padding: 40px 1.5rem; }
}

/* ===== VS-DIY OBJECTION BAND ===== */
.vsdiy-band {
  padding: 72px 4rem;
  border-bottom: 1px solid var(--border);
}
.vsdiy-band-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.vsdiy-band-label {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--fg);
  margin-bottom: 12px;
}
.vsdiy-band-body {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.7;
}
.vsdiy-band-cta {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.vsdiy-band-link {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-decoration: none;
}
.vsdiy-band-link:hover { color: var(--fg); }

@media (max-width: 700px) {
  .vsdiy-band { padding: 48px 1.5rem; }
  .vsdiy-band-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== EXPOSURE CHECK CTA BAND ===== */
.exposure-band {
  padding: 40px 4rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.exposure-band-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.exposure-band-text {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.85rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}
.exposure-band-btn {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 10px 20px;
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.exposure-band-btn:hover { border-color: var(--accent); color: var(--fg); }

@media (max-width: 600px) {
  .exposure-band { padding: 32px 1.5rem; }
  .exposure-band-inner { flex-direction: column; gap: 16px; text-align: center; }
}

/* ===== NAV DROPDOWN ===== */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  cursor: pointer;
  user-select: none;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-2);
  border: 1px solid var(--border);
  min-width: 180px;
  z-index: 200;
  padding: 8px 0;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-item {
  display: block;
  padding: 8px 20px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown-item:hover { color: var(--fg); background: rgba(201,168,76,0.06); }
