/* ═══════════════════════════════════════════════════════════
   ZEPHRA — INNER PAGES DESIGN SYSTEM
   styles-pages.css  ·  Load after styles.css
   World-class standard: every element debated, every detail intentional
   Workshop P12 note: "Design must be FELT, not just applied"
═══════════════════════════════════════════════════════════ */

/* ── GLOBAL RESETS FOR INNER PAGES ── */
/* Inner pages are always dark — canvas is ink */
body.page-body {
  background: var(--ink);
  color: var(--canvas);
}

/* ── MOBILE CURSOR RESTORATION (inner pages) ──
   Restores native cursors on mobile where the bird cursor is inactive.
   Note: desktop cursor suppression is already in styles.css.
── */
@media (max-width: 767px) {

  a,
  button,
  [role="button"] {
    cursor: pointer;
  }

  input,
  textarea {
    cursor: text;
  }

  select {
    cursor: default;
  }
}


/* ── BIRD-HOVER: triggered when hummingbird body overlaps an element ── */
.nav.scrolled .nav-demo-btn.bird-hover {
  background: var(--teal);
  color: var(--ink);
}

.breadcrumb a.bird-hover {
  color: var(--teal);
}

.btn-primary.bird-hover {
  background: var(--teal2);
  transform: translateY(-2px);
  color: var(--ink) !important;
  box-shadow: 0 8px 32px rgba(0, 196, 161, 0.3);
}

.btn-ghost.bird-hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(0, 196, 161, 0.05);
}

.btn-teal-link.bird-hover {
  border-color: var(--teal);
  color: var(--teal);
}

.form-submit.bird-hover {
  background: var(--teal2);
  transform: translateY(-2px);
  color: var(--ink) !important;
  box-shadow: 0 8px 32px rgba(0, 196, 161, 0.3);
}

.sticky-btn.bird-hover {
  background: var(--teal2);
  color: var(--ink) !important;
  box-shadow: 0 8px 24px rgba(0, 196, 161, 0.25);
}

.dark-card.bird-hover {
  background: rgba(15, 25, 35, .97);
  transform: translateY(-4px);
}

.border-card.bird-hover {
  border-color: var(--teal);
  transform: translateX(4px);
}

.layer-card.bird-hover {
  background: var(--ink2);
}

.layer-card.bird-hover::before {
  transform: scaleX(1);
}

.cap-card.bird-hover {
  border-top-color: var(--teal);
}

.value-card.bird-hover {
  background: var(--ink2);
}

.contact-panel.bird-hover {
  background: var(--ink2);
}

.contact-panel.teal.bird-hover {
  border-top-color: var(--teal);
}

/* Generic fallback */
a.bird-hover {
  color: var(--teal);
}


/* ── PROGRESS BAR ── */
.prog {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  z-index: 9999;
  pointer-events: none;
  transition: width 0.1s linear;
}

/* ── PAGE HERO — Cinematic. Matches homepage energy. ── */
/* P11: "Hero sections are the first handshake. Make them count." */
.page-hero {
  min-height: 88vh;
  background: var(--ink);
  display: flex;
  align-items: center;
  padding: 160px 80px 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--ink2);
}

/* Grid texture — exact match to homepage hero-grid-bg */
/* P12: "The grid IS the Zephra brand. Every page needs it." */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 196, 161, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 196, 161, .018) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 0%, transparent 70%);
}

/* Glow — matches homepage hero-glow */
.page-hero-glow {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(0, 196, 161, .09) 0%, rgba(0, 196, 161, .03) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: glowPulse 6s ease-in-out infinite;
}

.page-hero-glow.right {
  left: auto;
  right: -100px;
  transform: translateY(-50%);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.page-hero-inner.left {
  text-align: left;
  margin: 0;
  max-width: 680px;
}

/* Breadcrumb — IBM Plex Mono, minimal */
.breadcrumb {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--slate-on-dark);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  opacity: 0;
  animation: fadeUp .5s .05s cubic-bezier(.16, 1, .3, 1) forwards;
}

.page-hero-inner.left .breadcrumb {
  justify-content: flex-start;
}

.breadcrumb a {
  color: var(--teal2);
  transition: color .2s;
}

.breadcrumb a:hover {
  color: var(--teal);
}

.breadcrumb-sep {
  color: var(--ink3);
  font-size: 14px;
}

.breadcrumb-current {
  color: var(--slate-on-dark);
}

/* Hero label — same as homepage hero-label */
.page-hero-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal2);
  display: block;
  margin-bottom: 20px;
  font-weight: 500;
  opacity: 0;
  animation: fadeUp .6s .12s cubic-bezier(.16, 1, .3, 1) forwards;
}

/* Hero H1 — matches homepage quality, word-stagger entry */
.page-hero-h1 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(38px, 6.5vw, 76px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--canvas);
  margin-bottom: 24px;
}

/* P11: "Stagger the two lines just like homepage .line1 .line2" */
.page-hero-h1 .line1 {
  display: block;
  opacity: 0;
  animation: fadeUp .9s .18s cubic-bezier(.16, 1, .3, 1) forwards;
}

.page-hero-h1 .line2 {
  display: block;
  color: var(--teal2);
  opacity: 0;
  animation: fadeUp .9s .34s cubic-bezier(.16, 1, .3, 1) forwards;
}

.page-hero-h1 .line1.dark {
  color: var(--canvas);
}

.page-hero-h1 .line2.gold {
  color: var(--gold);
}

.page-hero-h1 .line2.white {
  color: var(--canvas);
}

/* Hero sub — teal, below headline */
.page-hero-sub {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 300;
  color: var(--teal);
  margin-bottom: 16px;
  letter-spacing: .02em;
  line-height: 1.4;
  opacity: 0;
  animation: fadeUp .8s .48s cubic-bezier(.16, 1, .3, 1) forwards;
}

/* Hero body */
.page-hero-body {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--slate-on-dark);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 32px;
  opacity: 0;
  animation: fadeUp .8s .56s cubic-bezier(.16, 1, .3, 1) forwards;
}

.page-hero-inner.left .page-hero-body {
  margin: 0 0 32px;
}

/* Hero trust line */
.page-hero-trust {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--slate-on-dark);
  opacity: 0;
  animation: fadeUp .7s .68s cubic-bezier(.16, 1, .3, 1) forwards;
}

.page-hero-trust .dot {
  color: var(--teal2);
  margin: 0 10px;
}

/* Hero CTA group */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp .8s .60s cubic-bezier(.16, 1, .3, 1) forwards;
}

.page-hero-inner.left .hero-cta-group {
  justify-content: flex-start;
}

/* ── BTN SYSTEM — matches homepage quality ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--ink);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--tr);
}

.btn-primary:hover {
  background: var(--teal2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 196, 161, 0.3);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--canvas);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: 15px 32px;
  border: 1px solid rgba(248, 247, 244, .2);
  cursor: pointer;
  transition: all 0.3s var(--tr);
}

.btn-ghost:hover {
  border-color: var(--teal3);
  color: var(--teal3);
  transform: translateY(-2px);
  background: rgba(0, 196, 161, 0.04);
}

.btn-teal-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--deep-teal);
  border-bottom: 1px solid rgba(0, 143, 122, .3);
  padding-bottom: 2px;
  cursor: pointer;
  transition: all 0.3s var(--tr);
}

.btn-teal-link:hover {
  border-color: var(--deep-teal);
  color: var(--deep-teal);
}

/* ── TIMELINE LINK STYLING ── */
.tl-detail-link {
  display: inline-block;
  margin-top: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--teal2);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 196, 161, 0.2);
  padding-bottom: 2px;
  transition: all 0.3s var(--tr);
}

.tl-detail-link:hover {
  color: var(--teal);
  border-color: var(--teal);
  transform: translateX(4px);
}
/* P7: "Scarcity + trust signal on every page above fold." */
.reassurance-bar {
  background: var(--ink2);
  border-top: 1px solid var(--ink3);
  border-bottom: 1px solid var(--ink3);
  padding: 18px 80px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

.reassurance-item {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--slate-on-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}

.reassurance-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── SECTION SYSTEM ── */
/* P12: "Sections need breathing room. Identical padding kills rhythm." */
.page-section {
  padding: 112px 80px;
  position: relative;
  border-bottom: 1px solid var(--ink2);
}

.page-section.s-ink {
  background: var(--ink);
}

.page-section.s-ink2 {
  background: var(--ink2);
}

.page-section.s-canvas {
  background: var(--canvas);
  color: var(--ink);
}

.page-section.s-teal {
  background: var(--teal);
  color: var(--ink);
}

.page-section.tight {
  padding: 72px 80px;
}

.page-section.loose {
  padding: 140px 80px;
}

.s-inner-full {
  max-width: 1200px;
  margin: 0 auto;
}

.s-inner-wide {
  max-width: 1100px;
  margin: 0 auto;
}

.s-inner {
  max-width: 960px;
  margin: 0 auto;
}

.s-inner-narrow {
  max-width: 760px;
  margin: 0 auto;
}

/* Section header — centred or left */
.section-header {
  margin-bottom: 72px;
}

.section-header.center {
  text-align: center;
}

.section-header.left {
  text-align: left;
}

/* P11: "Section label slide animation — this is THE micro-interaction." */
.s-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  font-weight: 500;
}

.s-label::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--teal);
  transition: width .7s cubic-bezier(.16, 1, .3, 1) .2s;
}

.s-label.sweep::after {
  width: 100%;
}

.section-h2 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.1;
  color: var(--canvas);
  margin-bottom: 24px;
}

.section-h2.ink {
  color: var(--ink);
}

.section-h2 em {
  font-style: normal;
  color: var(--teal);
  font-weight: 400;
}

.section-h2 .gold-em {
  color: var(--gold);
  font-weight: 400;
}

.section-lead {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--slate-on-dark);
  line-height: 1.82;
  max-width: 620px;
}

.section-lead.center {
  margin: 0 auto;
}

/* ── REVEAL ANIMATIONS ── */
/* P11: "Match the homepage reveal quality exactly." */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.16, 1, .3, 1), transform .75s cubic-bezier(.16, 1, .3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .75s cubic-bezier(.16, 1, .3, 1), transform .75s cubic-bezier(.16, 1, .3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: none;
}

.reveal-scale {
  opacity: 0;
  transform: scale(.97) translateY(16px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

.stagger-1 {
  transition-delay: .08s;
}

.stagger-2 {
  transition-delay: .16s;
}

.stagger-3 {
  transition-delay: .24s;
}

.stagger-4 {
  transition-delay: .32s;
}

.stagger-5 {
  transition-delay: .40s;
}

.stagger-6 {
  transition-delay: .48s;
}

/* ── CARD SYSTEM ── */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink3);
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--ink3);
}

/* Dark card — base */
.dark-card {
  background: var(--ink);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  transition: background .3s, transform .35s cubic-bezier(.16, 1, .3, 1);
}

.dark-card:hover {
  background: rgba(15, 25, 35, .97);
  transform: translateY(-4px);
}

/* Numbered card */
.card-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 32px;
  font-weight: 500;
  color: var(--teal);
  opacity: .12;
  line-height: 1;
  margin-bottom: 20px;
}

.dark-card h3 {
  font-size: 17px;
  font-weight: 500;
  color: var(--canvas);
  margin-bottom: 10px;
  letter-spacing: .04em;
}

.dark-card p {
  font-size: 14px;
  font-weight: 400;
  color: var(--slate-on-dark);
  line-height: 1.78;
  flex-grow: 1;
}

/* Bordered card — teal or gold left border */
.border-card {
  background: var(--ink2);
  border: 1px solid var(--ink3);
  border-left: 4px solid var(--teal);
  padding: 36px 40px;
  transition: border-color .3s, transform .3s;
}

.border-card:hover {
  border-color: var(--teal);
  transform: translateX(4px);
}

.border-card.gold {
  border-left-color: var(--gold);
}

.border-card h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--canvas);
  margin-bottom: 12px;
}

.border-card p {
  font-size: 14px;
  font-weight: 400;
  color: var(--slate-on-dark);
  line-height: 1.78;
}

/* ── TERMINAL STYLE DISPLAY ── */
/* P8: "Reuse the homepage terminal pattern — it's on-brand and functional." */
.terminal {
  background: rgba(15, 25, 35, .95);
  border: 1px solid rgba(0, 196, 161, .4);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .45), 0 0 80px rgba(0, 196, 161, .18);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 16px;
  background: rgba(15, 25, 35, .8);
  border-bottom: 1px solid var(--ink3);
}

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.terminal-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: .12em;
  color: var(--slate-on-dark);
  margin-left: 8px;
}

.terminal-label .t-blink {
  color: var(--teal);
  animation: blink 1s step-end infinite;
}

.terminal-body {
  padding: 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  line-height: 1.85;
  min-height: 160px;
}

.t-line {
  display: block;
  color: var(--teal);
  margin-bottom: 1px;
}

.t-line.dim {
  color: var(--ink3);
}

.t-line.hi {
  color: var(--canvas);
  font-weight: 500;
}

.t-line.gold {
  color: var(--gold);
}

.t-line.sp {
  height: 8px;
  display: block;
}

.t-approve {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.t-btn-approve {
  background: var(--deep-teal);
  color: var(--canvas);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--tr);
}

.t-btn-approve:hover {
  background: var(--teal2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 196, 161, 0.2);
}

.t-btn-approve:active {
  transform: scale(0.98);
}

.t-btn-mod {
  background: transparent;
  color: var(--slate-on-dark);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--ink3);
  cursor: pointer;
  transition: all .2s;
}

.t-btn-mod:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* Terminal metric strip */
.terminal-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink3);
  border-top: 1px solid var(--ink3);
}

.t-metric {
  background: rgba(15, 25, 35, .6);
  padding: 14px 16px;
  text-align: center;
}

.t-metric-val {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 22px;
  font-weight: 500;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}

.t-metric-lbl {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate-on-dark);
}

/* ── IFRAME EMBED SYSTEM ── */
/* P5: "The skeleton loader must feel premium, not like a loading state." */
.embed-wrap {
  background: var(--ink2);
  border: 1px solid var(--ink3);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: border-color .4s, box-shadow .4s;
}

.embed-wrap:hover {
  border-color: rgba(0, 196, 161, .3);
  box-shadow: 0 0 40px rgba(0, 196, 161, .08);
}

.embed-topbar {
  background: rgba(15, 25, 35, .9);
  border-bottom: 1px solid var(--ink3);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.embed-bar-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.embed-bar-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-left: 8px;
}

.embed-skel {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 480px;
}

.skel-line {
  background: linear-gradient(90deg, var(--ink3) 0%, rgba(43, 66, 96, .5) 50%, var(--ink3) 100%);
  background-size: 200% 100%;
  animation: skelShimmer 2s ease-in-out infinite;
  border-radius: 3px;
  height: 11px;
}

.skel-line.w30 {
  width: 30%;
}

.skel-line.w50 {
  width: 50%;
}

.skel-line.w70 {
  width: 70%;
}

.skel-line.w90 {
  width: 90%;
}

.skel-block {
  background: linear-gradient(90deg, var(--ink3) 0%, rgba(43, 66, 96, .5) 50%, var(--ink3) 100%);
  background-size: 200% 100%;
  animation: skelShimmer 2s ease-in-out infinite;
  border-radius: 3px;
  flex: 1;
  min-height: 160px;
}

@keyframes skelShimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.embed-iframe {
  width: 100%;
  border: none;
  display: none;
  background: var(--ink2);
}

.embed-iframe.loaded {
  display: block;
}

/* P5: "The fallback must be valuable itself — show the UI illustrated." */
.demo-fallback {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  min-height: 480px;
  justify-content: center;
}

.demo-fallback-ui {
  width: 100%;
  max-width: 500px;
  background: rgba(0, 196, 161, .04);
  border: 1px solid rgba(0, 196, 161, .2);
  border-radius: 4px;
  overflow: hidden;
}

.demo-fallback-ui-bar {
  padding: 10px 16px;
  background: rgba(15, 25, 35, .8);
  border-bottom: 1px solid var(--ink3);
  display: flex;
  align-items: center;
  gap: 6px;
}

.demo-fallback-ui-body {
  padding: 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  line-height: 1.85;
}

/* ── TWO-COLUMN LAYOUTS ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.two-col.wide-left {
  grid-template-columns: 1.4fr 1fr;
}

.two-col.wide-right {
  grid-template-columns: 1fr 1.4fr;
}

.two-col.center-align {
  align-items: center;
}

/* ── FAQ SYSTEM ── */
/* P9: "FAQ schema = rich results. Make it look premium too." */
.faq-stack {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--ink2);
  padding: 0;
  overflow: hidden;
}

.faq-item:first-child {
  border-top: 1px solid var(--ink2);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
}

.faq-q-text {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: .02em;
  transition: color 0.3s ease;
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--teal);
  position: relative;
  margin-top: 2px;
  transition: transform .3s;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  transition: transform .3s, opacity .3s;
}

.faq-icon::before {
  width: 14px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1.5px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height .4s cubic-bezier(.16, 1, .3, 1);
}

.faq-answer-inner {
  padding: 0 0 28px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--slate-on-dark);
  line-height: 1.82;
}

.faq-answer-inner a {
  color: var(--teal);
  border-bottom: 1px solid rgba(0, 196, 161, .3);
}

/* ── TIMELINE ── */
/* P10: "Timelines must build tension. Each step should feel like revelation." */
.timeline-stack {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding-left: 56px;
}

.timeline-stack::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 12px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal) 0%, rgba(0, 196, 161, .08) 100%);
}

.tl-item {
  position: relative;
  margin-bottom: 72px;
}

.tl-item:last-child {
  margin-bottom: 0;
}

.tl-dot {
  position: absolute;
  left: -52px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid rgba(0, 196, 161, .4);
  transition: background .3s, border-color .3s, box-shadow .3s;
}

.tl-item.visible .tl-dot {
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 0 20px rgba(0, 196, 161, .35);
}

.tl-step {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
  display: block;
}

.tl-h {
  font-size: 22px;
  font-weight: 500;
  color: var(--canvas);
  margin-bottom: 12px;
  letter-spacing: .03em;
  line-height: 1.2;
}

.tl-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--slate-on-dark);
  line-height: 1.82;
  margin-bottom: 16px;
  max-width: 640px;
}

.tl-detail {
  background: var(--ink2);
  border: 1px solid var(--ink3);
  border-left: 3px solid rgba(0, 196, 161, .4);
  padding: 18px 24px;
}

.tl-detail-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
  display: block;
}

.tl-detail p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(248, 247, 244, .75);
  line-height: 1.7;
}

/* ── LAYER CARDS ── */
/* P1: "Layer cards need iconographic personality. Not just list items." */
.layer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink3);
  max-width: 1100px;
  margin: 0 auto;
}

.layer-card {
  background: var(--ink);
  padding: 52px 40px;
  position: relative;
  overflow: hidden;
  transition: background .35s;
}

.layer-card:hover {
  background: var(--ink2);
}

.layer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}

.layer-card:hover::before {
  transform: scaleX(1);
}

.layer-num-bg {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 80px;
  font-weight: 500;
  color: var(--teal);
  opacity: .05;
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
  pointer-events: none;
}

.layer-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  color: var(--teal);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.layer-card h3 {
  font-size: 19px;
  font-weight: 500;
  color: var(--canvas);
  margin-bottom: 12px;
  letter-spacing: .04em;
}

.layer-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--slate-on-dark);
  line-height: 1.78;
  margin-bottom: 20px;
}

.layer-features {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--ink3);
  padding-top: 18px;
  margin-top: 8px;
}

.layer-features li {
  font-size: 12px;
  font-weight: 300;
  color: rgba(248, 247, 244, .55);
  padding: 5px 0 5px 14px;
  position: relative;
  line-height: 1.5;
}

.layer-features li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 16px;
  line-height: 1.2;
}

/* ── CAPABILITY SHOWCASE ── */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink3);
  max-width: 1100px;
  margin: 0 auto;
}

.cap-card {
  background: var(--ink);
  padding: 36px 30px;
  border-top: 3px solid transparent;
  display: flex;
  flex-direction: column;
  transition: all .35s cubic-bezier(.16, 1, .3, 1);
}

.cap-card:hover {
  background: var(--ink2);
  border-top-color: var(--teal);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
}

.cap-card.gold-hover:hover {
  border-top-color: var(--gold);
}

.cap-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--teal);
  padding: 3px 9px;
  display: inline-block;
  margin-bottom: 16px;
  align-self: flex-start;
}

.cap-tag.coming {
  background: var(--gold);
}

.cap-tag.outline {
  background: transparent;
  border: 1px solid var(--ink3);
  color: var(--slate-on-dark);
}

.cap-card h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--canvas);
  margin-bottom: 10px;
  letter-spacing: .03em;
  line-height: 1.3;
}

.cap-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--slate-on-dark);
  line-height: 1.75;
  flex-grow: 1;
  margin-bottom: 16px;
}

.cap-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--teal);
  margin-top: auto;
}

.cap-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s ease-in-out infinite;
}

.cap-status.soon {
  color: var(--gold);
}

.cap-status.soon .cap-status-dot {
  background: var(--gold);
  animation: none;
  border: 1px solid var(--gold);
}

/* ── ARCH DIAGRAM ── */
.arch-layers {
  max-width: 900px;
  margin: 0 auto;
}

.arch-layer {
  background: rgba(0, 196, 161, .03);
  border: 1px solid rgba(0, 196, 161, .12);
  padding: 28px 36px;
  margin-bottom: 2px;
  transition: border-color .3s, background .3s;
  cursor: default;
}

.arch-layer:hover {
  border-color: rgba(0, 196, 161, .35);
  background: rgba(0, 196, 161, .06);
}

.arch-layer-lbl {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
  display: block;
}

.arch-layer-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--canvas);
  margin-bottom: 6px;
}

.arch-layer-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--slate-on-dark);
  line-height: 1.7;
}

.arch-connector {
  text-align: center;
  padding: 6px 0;
  color: rgba(0, 196, 161, .3);
  font-size: 20px;
}

.arch-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.arch-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: .1em;
  color: var(--teal);
  border: 1px solid rgba(0, 196, 161, .2);
  padding: 3px 10px;
}

.arch-tag.dim {
  color: var(--slate-on-dark);
  border-color: var(--ink3);
}

/* ── COMPARISON TABLE ── */
.compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
}
.compare-table {
  min-width: 800px;
}
.compare-table th:first-child,
.compare-table td:first-child {
  position: sticky;
  left: 0;
  background: var(--dark);
  z-index: 2;
  border-right: 1px solid var(--ink2);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 960px;
  margin: 0 auto;
}

.compare-table th {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 16px 20px;
  text-align: left;
  border-bottom: 2px solid var(--ink3);
  white-space: nowrap;
}

.compare-table th.zephra {
  color: var(--teal);
}

.compare-table th.other {
  color: var(--slate-on-dark);
}

.compare-table td {
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 300;
  border-bottom: 1px solid var(--ink2);
  vertical-align: middle;
  line-height: 1.55;
}

.compare-table tr:hover td {
  background: rgba(28, 45, 62, .4);
}

.compare-table .row-label {
  color: var(--canvas);
  font-weight: 500;
  font-size: 13px;
}

.compare-table .zephra-val {
  color: var(--teal);
}

.compare-table .other-val {
  color: var(--slate-on-dark);
}

.check {
  color: var(--teal);
  font-weight: 700;
}

.cross {
  color: var(--slate-on-dark);
  opacity: .3;
}

/* ── FOUNDER CARDS ── */
/* P12: "Founder section IS the credibility section. It must look like it." */
.founder-card-full {
  display: grid;
  grid-template-columns: 220px 1fr;
  background: var(--ink2);
  border: 1px solid var(--ink3);
  max-width: 1040px;
  margin: 0 auto 48px;
  transition: transform .3s var(--tr), border-color .3s var(--tr), box-shadow .3s var(--tr);
  overflow: hidden;
}

.founder-card-full:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 196, 161, .4) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 24px rgba(0, 196, 161, 0.08);
}

.founder-photo-col {
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 32px 32px;
  /* Reduced top padding to align with bio heading */
  border-right: 1px solid var(--ink3);
  gap: 0;
}

.founder-avatar-xl {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid rgba(0, 196, 161, .4);
  background: var(--ink2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
  transition: border-color .3s;
  position: relative;
}

.founder-card-full:hover .founder-avatar-xl {
  border-color: var(--teal);
}

.founder-avatar-xl img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-avatar-xl .initials {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: .05em;
}

.founder-name-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--canvas);
  text-align: center;
  margin-bottom: 4px;
}

.founder-role-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--teal);
  text-align: center;
  margin-bottom: 20px;
}

.founder-tags {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--ink2);
}

.founder-social {
  margin-top: 24px;
  display: flex;
  gap: 12px;
}

.founder-text-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,196,161,.3);
  padding-bottom: 1px;
  transition: border-color .2s;
}
.founder-text-link:hover { border-color: var(--teal); }

.founder-social-link {
  color: var(--slate-on-dark);
  background: rgba(255, 255, 255, .02);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .06);
  transition: all .2s;
}

.founder-social-link:hover,
.founder-social-link.bird-hover {
  color: var(--ink) !important;
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 196, 161, .2);
}

.founder-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate-on-dark);
  background: rgba(0, 196, 161, .06);
  border: 1px solid rgba(0, 196, 161, .1);
  padding: 5px 10px;
  text-align: center;
  transition: background .2s, color .2s;
}

.founder-card-full:hover .founder-tag {
  background: rgba(0, 196, 161, .1);
  color: var(--teal2);
}

.founder-content-col {
  padding: 32px 48px;
}

/* Reduced top padding to match photo column */
.founder-content-col h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--canvas);
  margin-bottom: 16px;
  letter-spacing: .03em;
  line-height: 1.2;
}

.founder-content-col p {
  font-size: 16px;
  font-weight: 400;
  color: var(--slate-on-dark);
  line-height: 1.82;
  margin-bottom: 24px;
}

.founder-content-col p:last-child {
  margin-bottom: 0;
}

/* ── VALUES GRID ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--ink3);
  max-width: 1000px;
  margin: 0 auto;
}

.value-card {
  background: var(--ink);
  padding: 44px 40px;
  border-left: 3px solid transparent;
  transition: border-left-color .3s, background .3s;
  cursor: default;
}

.value-card:hover {
  background: var(--ink2);
}

.value-card:nth-child(odd):hover {
  border-left-color: var(--teal);
}

.value-card:nth-child(even):hover {
  border-left-color: var(--gold);
}

.value-n {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--teal);
  margin-bottom: 14px;
  display: block;
}

.value-card h3 {
  font-size: 19px;
  font-weight: 500;
  color: var(--canvas);
  margin-bottom: 12px;
  letter-spacing: .02em;
}

.value-card p {
  font-size: 15px;
  font-weight: 400;
  color: var(--slate-on-dark);
  line-height: 1.78;
}

/* ── STORY TIMELINE ── */
.story-stack {
  max-width: 740px;
  margin: 0 auto;
}

.story-beat {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--ink2);
}

.story-beat:last-child {
  border-bottom: none;
}

.story-year {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
  padding-top: 3px;
  letter-spacing: .04em;
}

.story-year.future {
  color: var(--gold);
}

.story-beat h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--canvas);
  margin-bottom: 8px;
  letter-spacing: .02em;
}

.story-beat p {
  font-size: 15px;
  font-weight: 400;
  color: var(--slate-on-dark);
  line-height: 1.75;
}

/* ── SIGNUP SYSTEM ── */
/* P8: "The split layout needs real breathing room and no overflow." */
.signup-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr minmax(400px, 520px);
  background: var(--ink);
  overflow-x: hidden;
}

.signup-context-panel {
  padding: 120px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--ink3);
}

.signup-context-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 196, 161, .015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 196, 161, .015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 30% 40%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 30% 40%, black 0%, transparent 70%);
}

.signup-form-panel {
  background: var(--ink2);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  position: relative;
}

.signup-form-panel::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(ellipse, rgba(0, 196, 161, .07) 0%, transparent 70%);
  pointer-events: none;
}

/* Progress dots */
.progress-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 40px;
}

.p-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink3);
  transition: background .3s, transform .3s;
}

.p-dot.active {
  background: var(--teal);
  transform: scale(1.5);
}

.p-dot.done {
  background: rgba(0, 196, 161, .5);
}

/* Form elements */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeUp .4s cubic-bezier(.16, 1, .3, 1) both;
}

.form-accent {
  width: 40px;
  height: 2px;
  background: var(--teal);
  margin-bottom: 20px;
}

.form-accent.gold {
  background: var(--gold);
}

.form-h {
  font-size: 26px;
  font-weight: 500;
  color: var(--canvas);
  margin-bottom: 6px;
  letter-spacing: .02em;
}

.form-lead {
  font-size: 14px;
  font-weight: 300;
  color: var(--canvas);
  margin-bottom: 32px;
  line-height: 1.6;
  opacity: 0.9;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--canvas);
  /* Increased from var(--slate-on-dark) */
  opacity: 0.85;
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--canvas);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding: 14px 16px;
  width: 100%;
  border-radius: 4px;
  outline: none;
  cursor: text;
  transition: all .2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder {
  color: rgba(248, 247, 244, 0.5);
}

.form-input:focus {
  border-color: var(--teal);
  background: rgba(255, 255, 255, 0.08);
}

.form-input.error {
  border-color: var(--alert);
}

.form-select {
  cursor: pointer;
}

/* Password strength */
.pw-strength {
  height: 3px;
  background: var(--ink3);
  border-radius: 2px;
  margin-top: 4px;
}

.pw-fill {
  height: 100%;
  border-radius: 2px;
  width: 0;
  transition: width .3s, background .3s;
}

/* Field error */
.field-err {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--alert);
  display: none;
}

.field-err.show {
  display: block;
}

/* OTP inputs */
.otp-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 8px 0;
}

.otp-box {
  width: 52px;
  height: 60px;
  text-align: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 24px;
  font-weight: 500;
  background: var(--ink);
  border: 1px solid var(--ink3);
  color: var(--canvas);
  border-radius: 2px;
  outline: none;
  cursor: none;
  transition: border-color .2s;
  caret-color: var(--teal);
}

.otp-box:focus {
  border-color: var(--teal);
}

.otp-box.filled {
  border-color: rgba(0, 196, 161, .6);
  color: var(--teal);
}

/* OAuth buttons */
.oauth-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  border: 1px solid var(--ink3);
  color: var(--canvas);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  padding: 13px;
  margin-bottom: 10px;
  cursor: none;
  transition: border-color .2s, background .2s;
  border-radius: 2px;
}

.oauth-btn:hover {
  border-color: rgba(248, 247, 244, .3);
  background: rgba(255, 255, 255, .03);
}

.oauth-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Submit */
.form-submit {
  width: 100%;
  background: var(--teal);
  color: var(--ink);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 17px;
  border: none;
  cursor: none;
  transition: all 0.3s var(--tr);
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--teal2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 196, 161, 0.3);
}

.form-submit:active {
  transform: scale(0.98);
}

.form-submit:disabled {
  background: var(--ink3);
  color: var(--slate-on-dark);
  cursor: not-allowed;
  transform: none;
}

.divider-or {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0;
}

.divider-or-line {
  flex: 1;
  height: 1px;
  background: var(--ink3);
}

.divider-or span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--slate-on-dark);
  white-space: nowrap;
}

/* ── CALL SECTION ── */
.call-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 36px;
}

.call-point {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
}

.call-point-n {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--teal);
  padding-top: 3px;
}

.call-point h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--canvas);
  margin-bottom: 4px;
  letter-spacing: .02em;
}

.call-point p {
  font-size: 13px;
  font-weight: 300;
  color: var(--slate-on-dark);
  line-height: 1.7;
}

/* ── FOUNDER CRED BAR ── */
.founder-cred {
  background: var(--ink);
  border: 1px solid var(--ink2);
  padding: 20px 24px;
  border-radius: 3px;
  margin-top: 32px;
}

.founder-cred-lbl {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--slate-on-dark);
  margin-bottom: 16px;
  display: block;
}

.founder-cred-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.founder-cred-row h4 {
  font-size: 12px;
  font-weight: 500;
  color: var(--canvas);
  margin-bottom: 4px;
  letter-spacing: .05em;
}

.founder-cred-row p {
  font-size: 11px;
  font-weight: 300;
  color: var(--slate-on-dark);
  line-height: 1.65;
}

.founder-cred-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--teal);
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--ink2);
  letter-spacing: .06em;
}

/* Calendar booking section */
.cal-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.cal-embed-outer {
  background: var(--ink2);
  border: 1px solid var(--ink3);
  border-radius: 4px;
  overflow: hidden;
  min-height: 580px;
  position: relative;
  transition: border-color .3s;
}

.cal-embed-outer:hover {
  border-color: rgba(0, 196, 161, .25);
}

.cal-embed-iframe {
  width: 100%;
  height: 580px;
  border: none;
  opacity: 0;
  transition: opacity .5s;
}

.cal-embed-iframe.loaded {
  opacity: 1;
}

/* ── MISSION CONTROL DASHBOARD ── */
.mc-dashboard {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: #0D161F;
  border: 1px solid var(--ink3);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6);
  min-height: 520px;
}

.mc-dashboard-side {
  background: rgba(15, 25, 35, 0.6);
  border-right: 1px solid var(--ink3);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mc-founder {
  margin-bottom: 8px;
}

.mc-founder-lbl {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  letter-spacing: .2em;
  color: var(--slate-on-dark);
  display: block;
  margin-bottom: 4px;
}

.mc-founder p {
  font-size: 13px;
  color: var(--canvas);
  font-weight: 500;
  margin: 0;
}

.mc-founder-micro {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  color: var(--slate-on-dark);
  opacity: 0.7;
}

.mc-mini-img {
  width: 100%;
  border: 1px solid var(--ink3);
  margin-top: 12px;
  opacity: 0.6;
  filter: grayscale(1);
  transition: all 0.3s;
}

.mc-icon-item:hover .mc-mini-img {
  opacity: 1;
  filter: grayscale(0);
  border-color: var(--teal);
}

.mc-dashboard-main {
  display: flex;
  flex-direction: column;
}

.mc-header {
  padding: 20px 32px;
  border-bottom: 1px solid var(--ink3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mc-status {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  color: var(--teal);
  letter-spacing: .12em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mc-timer {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--slate-on-dark);
}

/* Status Dot */
.status-dot-live {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--teal);
  animation: pulse 2s infinite;
}

/* Mission Brief Points */
.mission-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.m-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.m-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--teal);
  margin-top: 4px;
}

.m-point p {
  font-size: 14px;
  color: var(--slate-on-dark);
}

/* Status Lines Under Brief */
.mission-control-status {
  padding-top: 32px;
  border-top: 1px solid var(--ink3);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mc-line {
  display: flex;
  justify-content: space-between;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
}

.mc-lbl {
  color: var(--slate-on-dark);
}

.mc-val {
  color: var(--canvas);
}

.mc-val.teal {
  color: var(--teal);
}

/* Strategy Matrix Image Visibility Fix */
.ui-mockup-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--ink2);
  border: 1px solid var(--ink3);
  margin-top: 24px;
  overflow: hidden;
  position: relative;
  display: block;
  /* Ensure it renders */
}

.ui-mockup-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Better for mockups than cover */
  display: block;
}

/* FAQ Interactive Fixes */
.faq-item {
  border-bottom: 1px solid var(--ink3);
  margin-bottom: 8px;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 16px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
  cursor: none;
  pointer-events: auto !important;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(0, 0, 0, 0.03);
}

.faq-question:hover .faq-q-text {
  color: var(--teal);
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faq-answer-inner {
  padding: 0 16px 32px 16px;
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
  opacity: 0.9;
}

@media(max-width: 1024px) {
  .mc-dashboard {
    grid-template-columns: 1fr;
  }

  .mc-dashboard-side {
    border-right: none;
    border-bottom: 1px solid var(--ink3);
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.cal-skel-inner {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-confirm {
  background: rgba(0, 196, 161, .04);
  border: 1px solid rgba(0, 196, 161, .2);
  padding: 48px;
  display: none;
  border-radius: 3px;
}

.booking-confirm.show {
  display: block;
}

.booking-confirm h2 {
  font-size: 32px;
  font-weight: 500;
  color: var(--canvas);
  margin-bottom: 8px;
}

.booking-confirm p {
  font-size: 14px;
  font-weight: 300;
  color: var(--slate-on-dark);
  line-height: 1.8;
  margin-bottom: 12px;
}

.booking-confirm strong {
  color: var(--canvas);
  font-weight: 500;
}

/* ── FINAL CTA STRIP ── */
.page-cta-strip {
  background: var(--ink2);
  padding: 100px 80px;
  text-align: center;
  border-top: 1px solid var(--ink3);
}

.page-cta-strip h2 {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 300;
  color: var(--canvas);
  margin-bottom: 16px;
  letter-spacing: .03em;
  line-height: 1.2;
}

.page-cta-strip p {
  font-size: 16px;
  font-weight: 300;
  color: var(--slate-on-dark);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

/* ── STICKY CTA ── */
.sticky-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--ink2);
  border: 1px solid var(--ink3);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1100;
  transform: translateY(100px);
  opacity: 0;
  transition: all .45s cubic-bezier(.16, 1, .3, 1);
}

.sticky-cta.show {
  transform: none;
  opacity: 1;
}

.sticky-cta-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--canvas);
}

.sticky-cta-text .bolt {
  color: var(--gold);
}

.sticky-btn {
  background: var(--teal);
  color: var(--ink);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 10px 18px;
  cursor: none;
  transition: background .2s;
  white-space: nowrap;
  border: none;
}

.sticky-btn:hover {
  background: var(--teal2);
}

.sticky-close {
  font-size: 16px;
  color: var(--slate-on-dark);
  cursor: none;
  padding: 2px;
  line-height: 1;
  background: none;
  border: none;
  transition: color .2s;
}

.sticky-close:hover {
  color: var(--canvas);
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--teal);
  color: var(--ink);
  padding: 12px 28px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  font-weight: 500;
  text-transform: uppercase;
  z-index: 9999;
  opacity: 0;
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
  border-radius: 2px;
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── NAV ACTIVE ── */
.nav-links a.nav-active {
  color: var(--teal) !important;
}

.nav-links a.nav-active::after {
  width: 100%;
}

/* ── MISSION QUOTE ── */
.mission-quote {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 300;
  color: var(--canvas);
  letter-spacing: .03em;
  line-height: 1.45;
  max-width: 800px;
  margin: 0 auto 24px;
  text-align: center;
}

.mission-quote em {
  font-style: normal;
  color: var(--teal);
  font-weight: 400;
}

/* ── CALLOUT PANEL ── */
.callout {
  background: rgba(0, 196, 161, .04);
  border: 1px solid var(--ink3);
  border-left: 4px solid var(--teal);
  padding: 44px 48px;
  max-width: 1040px;
  margin: 32px auto 0;
}

.callout.gold {
  border-left-color: var(--gold);
}

.callout h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--canvas);
  margin-bottom: 12px;
}

.callout p {
  font-size: 16px;
  font-weight: 400;
  color: var(--slate-on-dark);
  line-height: 1.82;
}

/* ── CONTACT CTA SPLIT ── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--ink3);
  max-width: 1000px;
  margin: 0 auto;
}

.contact-panel {
  background: var(--ink);
  padding: 52px 48px;
  border-top: 3px solid transparent;
  transition: border-top-color .3s, background .3s;
}

.contact-panel:hover {
  background: var(--ink2);
}

.contact-panel.teal:hover {
  border-top-color: var(--teal);
}

.contact-panel.gold:hover {
  border-top-color: var(--gold);
}

.contact-panel h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--canvas);
  margin-bottom: 12px;
}

.contact-panel p {
  font-size: 14px;
  font-weight: 300;
  color: var(--slate-on-dark);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* ── PRODUCT TOKEN EXPLAINER ── */
.token-explainer {
  background: rgba(242, 166, 35, .04);
  border: 1px solid var(--ink3);
  border-left: 4px solid var(--gold);
  padding: 40px 48px;
  max-width: 900px;
  margin: 0 auto;
}

.token-explainer h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 14px;
}

.token-explainer p {
  font-size: 14px;
  font-weight: 300;
  color: var(--slate-on-dark);
  line-height: 1.8;
  margin-bottom: 12px;
}

.token-explainer p:last-child {
  margin-bottom: 0;
}

.token-explainer strong {
  color: var(--canvas);
  font-weight: 500;
}

/* ── FOOTER ── */
/* P12: "Footer must use the full homepage footer — exact match." */
.footer {
  background: #080E14;
  padding: 64px 80px 36px;
  border-top: 1px solid var(--ink2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-brand-tagline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--teal);
  margin-top: 8px;
  margin-bottom: 20px;
}

.footer-brand-quote {
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  color: var(--slate-on-dark);
  line-height: 1.7;
  max-width: 240px;
}

.footer-col h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul a {
  font-size: 13px;
  font-weight: 300;
  color: #94A3B8;
  text-decoration: none;
  transition: color .2s;
}

.footer-col ul a:hover {
  color: var(--teal);
}

.footer-contact-item {
  font-size: 13px;
  font-weight: 300;
  color: var(--teal);
  margin-bottom: 6px;
  text-decoration: none;
  display: block;
  transition: color .2s;
}

.footer-contact-item.plain {
  color: var(--slate-on-dark);
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.footer-social a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate-on-dark);
  transition: color .2s;
}

.footer-social a:hover {
  color: var(--teal);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: .1em;
  color: var(--slate-on-dark);
}

.footer-legal a {
  color: var(--slate-on-dark);
}

.footer-legal a:hover {
  color: var(--teal);
}

.footer-legal .sep {
  margin: 0 8px;
  color: var(--ink3);
}

.footer-built {
  font-size: 11px;
  font-weight: 300;
  font-style: italic;
  color: var(--teal);
}

/* ── RESPONSIVE ── */
@media(max-width: 1100px) {
  .signup-layout {
    grid-template-columns: 1fr 480px;
  }

  .cal-layout {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

@media(max-width: 900px) {
  .page-hero {
    padding: 140px 40px 60px;
    min-height: 72vh;
  }

  .page-section {
    padding: 80px 40px;
  }

  .page-section.tight {
    padding: 60px 40px;
  }

  .page-section.loose {
    padding: 100px 40px;
  }

  .reassurance-bar {
    padding: 18px 40px;
    gap: 28px;
  }

  .two-col,
  .two-col.wide-left,
  .two-col.wide-right {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .layer-grid {
    grid-template-columns: 1fr;
  }

  .cap-grid {
    grid-template-columns: 1fr 1fr;
  }

  .founder-card-full {
    grid-template-columns: 1fr;
  }

  .founder-photo-col {
    border-right: none;
    border-bottom: 1px solid var(--ink3);
    flex-direction: row;
    padding: 28px 32px;
    gap: 20px;
    align-items: center;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .cal-layout {
    grid-template-columns: 1fr;
  }

  .signup-layout {
    grid-template-columns: 1fr;
  }

  .signup-context-panel {
    display: none;
  }

  .signup-form-panel {
    padding: 100px 40px 60px;
  }

  .contact-split {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media(max-width: 768px) {
  .page-hero {
    padding: 130px 24px 60px;
  }

  .page-section {
    padding: 72px 24px;
  }

  .page-section.tight {
    padding: 52px 24px;
  }

  .page-section.loose {
    padding: 80px 24px;
  }

  .reassurance-bar {
    padding: 16px 24px;
    gap: 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  .page-cta-strip {
    padding: 64px 24px;
  }

  .footer {
    padding: 48px 24px 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }

  .sticky-cta {
    bottom: 20px;
    right: 20px;
    padding: 12px 16px;
    gap: 12px;
  }

  .cap-grid {
    grid-template-columns: 1fr;
  }

  

  .founder-cred-row {
    grid-template-columns: 1fr;
  }

  .story-beat {
    grid-template-columns: 80px 1fr;
  }

  .token-explainer {
    padding: 28px 24px;
  }

  .callout {
    padding: 28px 28px;
  }

  .otp-row {
    gap: 8px;
  }

  .otp-box {
    width: 44px;
    height: 52px;
    font-size: 20px;
  }

  .signup-form-panel {
    padding: 80px 24px 60px;
  }
}

/* ── 375px BREAKPOINT (Inner Pages) ── */
@media (max-width: 375px) {
  .signup-form-panel {
    padding: 60px 16px 40px;
  }

  .form-h {
    font-size: 24px;
    text-align: center;
  }

  .form-lead {
    text-align: center;
    margin-bottom: 24px;
  }

  .nav-right {
    gap: 8px !important;
  }

  .nav-demo-btn {
    padding: 8px 12px;
    font-size: 9px;
  }

  #navLogoSvg {
    height: 30px;
  }

  .mobile-trust-strip {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 10px;
  }

  .mts-item {
    flex-direction: row;
    gap: 8px;
    font-size: 10px;
  }

  .mts-item span {
    margin-bottom: 0;
  }
}

/* ── UTILS ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — SIGNAL GAP, BELIEFS & CONTACT ADDITIONS
   All classes required by about.html final version.
   Appended to production styles-pages.css.
   Match existing design system: ink/teal/gold palette,
   IBM Plex Mono labels, Josefin Sans body, no border-radius.
═══════════════════════════════════════════════════════════ */

/* ── BACKGROUND VARIANT — slightly darker than ink2 ── */
.page-section.s-ink3 {
  background: #0A1520;
}

/* ── SECTION ENTER LINE ── */
/* Also defined in styles.css — redeclared here for completeness */
.section-enter-line {
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.8s cubic-bezier(.16, 1, .3, 1);
  margin: 0 auto 32px;
}

.section-enter-line.visible {
  width: 48px;
}

/* ═══════════════════════════════════════════════════════════
   PROBLEM / SIGNAL GAP SECTION
═══════════════════════════════════════════════════════════ */

.problem-section-about {
  padding: 112px 80px;
  border-bottom: 1px solid var(--ink2);
  background: var(--ink2);
}

/* 2×2 grid of problem pillars */
.problem-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--ink3);
  max-width: 1040px;
  margin: 64px auto 0;
}

.problem-pillar {
  background: var(--ink);
  padding: 44px 40px;
  position: relative;
  border-top: 3px solid transparent;
  transition: background .3s, border-top-color .3s;
}

.problem-pillar:hover {
  background: rgba(15, 25, 35, .95);
}

/* Colour variants — border-top accent per pillar */
.problem-pillar.teal {
  border-top-color: var(--teal);
}

.problem-pillar.alert {
  border-top-color: #E24B4A;
}

.problem-pillar.gold {
  border-top-color: var(--gold);
}

.problem-pillar.slate {
  border-top-color: var(--slate-on-dark);
}

.problem-pillar-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 52px;
  font-weight: 500;
  color: var(--teal);
  opacity: .65;
  line-height: 1;
  margin-bottom: 24px;
}

.problem-pillar.alert .problem-pillar-num {
  color: #E24B4A;
}

.problem-pillar.gold .problem-pillar-num {
  color: var(--gold);
}

.problem-pillar h3 {
  font-size: 17px;
  font-weight: 500;
  color: var(--canvas);
  margin-bottom: 12px;
  letter-spacing: .03em;
  line-height: 1.3;
}

.problem-pillar p {
  font-size: 16px;
  font-weight: 400;
  color: var(--slate-on-dark);
  line-height: 1.8;
  letter-spacing: .01em;
}

.problem-pillar p strong {
  color: var(--canvas);
  font-weight: 500;
}

/* ── COMPOUND VISUAL — animated bars, 2 columns ── */
.compound-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--ink3);
  max-width: 1040px;
  margin: 48px auto 0;
}

.compound-side {
  background: var(--ink2);
  padding: 40px 36px;
}

.compound-side.bad {
  border-left: 2px solid rgba(148, 163, 184, .1);
}

.compound-side.good {
  border-left: 2px solid rgba(0, 196, 161, .1);
}

.compound-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--slate-on-dark);
  margin-bottom: 24px;
  display: block;
}

.compound-bars {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}

.compound-bar-row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
}

.compound-bar-wk {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: .1em;
  color: var(--slate-on-dark);
}

.compound-bar-track {
  height: 4px;
  background: var(--ink3);
  overflow: hidden;
}

/* Width animated by pages.js initCompoundBars() on scroll */
.compound-bar-fill {
  height: 100%;
  width: 0;
  transition: width 0.8s cubic-bezier(.25, 1, .5, 1);
}

.compound-bar-fill.bad {
  background: var(--slate-on-dark);
}

.compound-bar-fill.good {
  background: var(--teal);
}

.compound-desc {
  font-size: 15px;
  font-weight: 400;
  color: var(--slate-on-dark);
  line-height: 1.75;
  font-style: italic;
}

/* ── PROBLEM INSIGHT — the bridge paragraph ── */
.problem-insight {
  max-width: 840px;
  margin: 64px auto 0;
  padding: 40px 48px;
  background: rgba(0, 196, 161, .03);
  border: 1px solid rgba(0, 196, 161, .1);
  border-left: 4px solid rgba(0, 196, 161, .35);
}

.problem-insight p {
  font-size: 16px;
  font-weight: 400;
  color: var(--slate-on-dark);
  line-height: 1.85;
  margin-bottom: 0;
}

.problem-insight strong {
  color: var(--canvas);
  font-weight: 500;
}

.problem-bridge {
  font-size: 16px;
  font-weight: 400;
  color: var(--canvas);
  line-height: 1.75;
  border-top: 1px solid rgba(0, 196, 161, .15);
  padding-top: 16px;
  margin-top: 16px;
  display: block;
}

/* ═══════════════════════════════════════════════════════════
   VALUES / BELIEFS ADDITIONS
   (extends existing .value-card system)
═══════════════════════════════════════════════════════════ */

/* Icon container above belief number */
.value-icon-box {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  color: var(--teal);
}

.value-icon-box svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* Full-width card — spans both grid columns */
.value-card--wide {
  grid-column: 1 / -1;
}

/* Peak card — culminating belief, gold left accent */
.value-card--peak {
  border-left: 3px solid var(--gold) !important;
  background: rgba(242, 166, 35, .025);
}

.value-card--peak:hover {
  background: rgba(242, 166, 35, .05) !important;
  border-left-color: var(--gold) !important;
}

.value-card--peak h3 {
  color: var(--canvas);
}

/* ── FOUNDER TAGS — redesigned as a personal story, not a resume ── */
.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.founder-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal2);
  display: inline-flex;
  align-items: center;
}

.founder-tag::after {
  content: '·';
  margin-left: 12px;
  color: var(--ink3);
}

.founder-tag:last-child::after {
  display: none;
}

.founder-photo-col {
  padding: 48px 40px;
  border-right: 1px solid var(--ink3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.founder-content-col {
  padding: 64px 60px;
}

.founder-content-col h3 {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.45;
  color: var(--canvas);
  margin-bottom: 32px;
  font-style: italic;
}

.founder-content-col p {
  font-size: 17px;
  font-weight: 400;
  color: var(--slate-on-dark);
  line-height: 1.85;
  margin-bottom: 24px;
}

.founder-content-col p:last-child {
  margin-bottom: 0;
}


/* ═══════════════════════════════════════════════════════════
   MISSION SECTION ADDITIONS
═══════════════════════════════════════════════════════════ */

/* Think / Decide / Act triplet */
.think-decide-act {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 48px auto 0;
  max-width: 560px;
  border-left: 2px solid rgba(0, 196, 161, .35);
  padding-left: 24px;
}

.tda-row {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  color: var(--slate-on-dark);
  letter-spacing: .06em;
  line-height: 1.65;
}

.tda-word {
  font-weight: 500;
  margin-right: 6px;
}

.tda-word.teal {
  color: var(--teal);
}

.tda-word.gold {
  color: var(--gold);
}

/* Trajectory Now / Next grid */
.mission-trajectory {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--ink3);
  max-width: 560px;
  margin: 40px auto 0;
}

.traj-item {
  background: var(--ink2);
  padding: 28px 24px;
  transition: background .3s;
}

.traj-item:hover {
  background: rgba(28, 45, 62, .9);
}

.traj-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 10px;
}

.traj-item p {
  font-size: 15px;
  font-weight: 400;
  color: var(--slate-on-dark);
  line-height: 1.75;
}

/* ── MISSION FOOTER & HUMMINGBIRD ── */
.mission-lead-p {
  font-size: 17px;
  font-weight: 400;
  color: var(--slate-on-dark);
  line-height: 1.85;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.hummingbird-box {
  max-width: 580px;
  margin: 48px auto 0;
  padding: 0 24px;
  border-left: 2px solid rgba(0, 196, 161, .2);
}

.hummingbird-p {
  font-size: 15px;
  font-weight: 400;
  color: var(--slate-on-dark);
  font-style: italic;
  line-height: 1.8;
}

.hummingbird-footer {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  color: var(--teal);
  letter-spacing: .06em;
  margin-top: 16px;
}

.mission-stats-grid {
  margin: 40px auto 0;
  max-width: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  box-shadow: 0 0 30px rgba(0, 196, 161, 0.05);
}

.mission-stat-box {
  background: rgba(0, 196, 161, .06);
  border: 1px solid rgba(0, 196, 161, .2);
  padding: 24px 20px;
  text-align: center;
  position: relative;
}

.mission-stat-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
}

.mission-stat-val {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 28px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: -.02em;
}

.mission-stat-lbl {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--slate-on-dark);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 8px;
  line-height: 1.55;
  font-weight: 400;
}


/* ═══════════════════════════════════════════════════════════
   CONTACT SECTION — v2 STACK LAYOUT
═══════════════════════════════════════════════════════════ */

/* Stack replaces the old 2-column .contact-split */
.contact-stack {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* Primary customer panel — teal top accent, full width */
.contact-panel--primary {
  border-top: 3px solid var(--teal) !important;
  background: var(--ink) !important;
  padding: 52px 48px;
}

.contact-panel--primary:hover {
  background: rgba(15, 25, 35, .97) !important;
}

/* Two-column inner grid: copy left, details right */
.contact-panel-inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}

.contact-panel-copy h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--canvas);
  margin-bottom: 12px;
}

.contact-panel-copy p {
  font-size: 16px;
  font-weight: 400;
  color: var(--slate-on-dark);
  line-height: 1.82;
  margin-bottom: 32px;
}

/* Detail column — response time / who / what to expect */
.contact-panel-detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 32px;
  border-left: 1px solid var(--ink3);
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-detail-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
}

.contact-detail-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--canvas);
  line-height: 1.5;
}

/* Visual separator between customer and investor panels */
.contact-investor-sep {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 48px;
  background: var(--ink2);
  border-top: 1px solid var(--ink3);
  border-bottom: 1px solid var(--ink3);
}

.contact-investor-sep span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--slate-on-dark);
  text-transform: uppercase;
  white-space: nowrap;
}

.contact-investor-sep span:nth-child(2) {
  flex: 1;
  text-align: center;
  color: var(--gold);
}

/* Secondary investor panel — gold accent */
.contact-panel--secondary {
  background: var(--ink2);
  padding: 40px 48px;
  border-top: 3px solid var(--gold);
  text-align: center; /* Unified alignment with section header */
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background .3s;
}

.contact-panel--secondary:hover {
  background: rgba(28, 45, 62, .9);
}

.contact-panel--secondary h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--canvas);
  margin-bottom: 10px;
}

.contact-panel--secondary p {
  font-size: 16px;
  font-weight: 400;
  color: var(--slate-on-dark);
  line-height: 1.8;
  margin-bottom: 20px;
}

.investor-phone-p {
  font-size: 14px;
  color: var(--slate-on-dark);
  margin-top: 16px;
  line-height: 1.6;
  opacity: 0.9;
}

.btn-teal-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  color: var(--teal);
  letter-spacing: .02em;
}

/* System status pill — live indicator */
.system-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  color: var(--teal);
  margin-bottom: 14px;
  letter-spacing: .1em;
  opacity: .85;
}

.status-dot-live {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  flex-shrink: 0;
  animation: pulse 2.5s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — ABOUT PAGE ADDITIONS
═══════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .problem-section-about {
    padding: 80px 40px;
  }

  .problem-pillars {
    grid-template-columns: 1fr;
  }

  .compound-visual {
    grid-template-columns: 1fr;
  }

  .contact-panel-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-panel-detail {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--ink3);
    padding-top: 24px;
  }

  .mission-trajectory {
    grid-template-columns: 1fr;
  }

  .value-card--wide {
    grid-column: 1;
  }
}

@media (max-width: 768px) {
  .problem-section-about {
    padding: 72px 24px;
  }

  .problem-insight {
    padding: 28px 24px;
    margin-top: 40px;
  }

  .compound-visual {
    margin-top: 32px;
  }

  .contact-panel--primary,
  .contact-panel--secondary {
    padding: 32px 24px;
  }

  .contact-investor-sep {
    padding: 16px 24px;
  }

  .think-decide-act {
    padding-left: 16px;
  }

  .tda-row {
    font-size: 11px;
  }
}


/* ═══════════════════════════════════════════════════════════
   DEMO PAGE — STRATEGY MATRIX & GLASSMORPHISM
   Appending new foundation styles for the demo overhaul.
═══════════════════════════════════════════════════════════ */

.strategy-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 64px auto 0;
}

@media(max-width: 1100px) {
  .strategy-matrix {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.ui-glass {
  background: rgba(15, 25, 35, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 196, 161, 0.15);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.4s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.ui-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 196, 161, 0.3), transparent);
}

.ui-glass:hover {
  border-color: rgba(0, 196, 161, 0.3);
  background: rgba(15, 25, 35, 0.8);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ui-glass-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
}

.ui-glass-h {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--canvas);
  line-height: 1.3;
}

.ui-glass-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--slate-on-dark);
  line-height: 1.7;
}

.ui-mockup-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--ink2);
  border: 1px solid var(--ink3);
  margin-top: 12px;
  overflow: hidden;
  position: relative;
}

.ui-mockup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.4s, transform 0.4s;
}

.ui-glass:hover .ui-mockup-img {
  opacity: 1;
  transform: scale(1.02);
}

.floating-asset {
  animation: floatUI 6s ease-in-out infinite;
}

@keyframes floatUI {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}


/* ── DEMO PAGE: MISSION CONTROL ── */
.mc-dashboard {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: #0D161F;
  border: 1px solid var(--ink3);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6);
  min-height: 520px;
  position: relative;
}

.mc-dashboard-side {
  background: rgba(15, 25, 35, 0.6);
  border-right: 1px solid var(--ink3);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mc-founder {
  margin-bottom: 8px;
}

.mc-founder-lbl {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  letter-spacing: .2em;
  color: var(--slate-on-dark);
  display: block;
  margin-bottom: 4px;
}

.mc-founder p {
  font-size: 13px;
  color: var(--canvas);
  font-weight: 500;
  margin: 0;
}

.mc-founder-micro {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  color: var(--slate-on-dark);
  opacity: 0.7;
}

.mc-mini-img {
  width: 100%;
  border: 1px solid var(--ink3);
  margin-top: 12px;
  opacity: 0.6;
  filter: grayscale(1);
  transition: all 0.3s;
}

.mc-icon-item:hover .mc-mini-img {
  opacity: 1;
  filter: grayscale(0);
  border-color: var(--teal);
}

.mc-dashboard-main {
  display: flex;
  flex-direction: column;
}

.mc-header {
  padding: 20px 32px;
  border-bottom: 1px solid var(--ink3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mc-status {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  color: var(--teal);
  letter-spacing: .12em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mc-timer {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--slate-on-dark);
}


/* ── FAQ INTERACTIVE ── */
.faq-item {
  border-bottom: 1px solid var(--ink3);
  margin-bottom: 8px;
  width: 100%;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--canvas);
  cursor: none;
  pointer-events: auto !important;
}

.faq-answer {
  max-height: 0 !important;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  display: block !important;
  visibility: visible !important;
}

.faq-item.active .faq-answer {
  max-height: 1000px !important;
  /* Force expansion */
}

.faq-answer-inner {
  padding-bottom: 32px;
  font-size: 15px;
  color: var(--slate-on-dark);
  line-height: 1.8;
}

/* ── SECTION 01: WORKBENCH ── */
.workbench-container {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
}

.workbench-diagnostic {
  position: absolute;
  top: 40px;
  left: -120px;
  width: 320px;
  z-index: 10;
  pointer-events: none;
  animation: floatUI 8s ease-in-out infinite;
}

/* Standardize Gaps */
.page-section {
  padding: 120px 0 !important;
  min-height: auto !important;
}

.page-section.tight {
  padding: 80px 0 !important;
}

.asym-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: flex-start;
}


@media (max-width: 1024px) {
  .asym-grid {
    grid-template-columns: 1fr;
  }

  .workbench-diagnostic {
    position: static;
    width: 100%;
    margin-top: 24px;
    left: 0;
  }

  .mc-dashboard {
    grid-template-columns: 1fr;
  }
}

/* ── MOBILE TRUST STRIP ── */
.mobile-trust-strip {
  display: none;
  background: rgba(0, 196, 161, 0.05);
  border: 1px solid rgba(0, 196, 161, 0.15);
  border-radius: 8px;
  grid-template-columns: repeat(3, 1fr);
  padding: 12px;
  gap: 8px;
  margin-bottom: 24px;
}

.mts-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mts-item span {
  font-size: 14px;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .mobile-trust-strip {
    display: grid;
  }
}

/* ── UX: Input Cursor Fix ── */
.signup-layout input,
.signup-layout textarea,
.signup-layout select {
  cursor: text !important;
}

.signup-layout select {
  cursor: pointer !important;
}

.signup-layout .form-submit,
.signup-layout .oauth-btn,
.signup-layout a {
  cursor: pointer !important;
}

/* ── LEGAL ACCORDIONS (Anti-Copy) ── */
.interactive-zone {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.legal-accordion {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-acc-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-acc-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  padding: 24px 0;
  cursor: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.legal-acc-btn:hover {
  color: var(--teal);
}

.legal-acc-btn .acc-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.legal-acc-btn.active {
  color: var(--teal);
}

.legal-acc-btn.active .acc-icon {
  transform: rotate(45deg);
}

.legal-acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.legal-acc-inner {
  padding: 0 0 32px 0;
  color: var(--slate);
  font-size: 1rem;
  font-weight: 300;
  opacity: 0.9;
}

/* ── TIERED PRICING GRID ── */
.pricing-tiered-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.pricing-tier-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--tr);
}

.pricing-tier-card:hover {
  border-color: rgba(0, 196, 161, 0.3);
  transform: translateY(-8px);
}

.pricing-tier-card.featured {
  background: rgba(0, 196, 161, 0.03);
  border: 1px solid var(--teal);
  box-shadow: 0 0 40px rgba(0, 196, 161, 0.15);
  transform: scale(1.05);
  z-index: 2;
}

.pricing-tier-card.featured:hover {
  box-shadow: 0 0 60px rgba(0, 196, 161, 0.25);
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--ink);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .15em;
  padding: 4px 12px;
  text-transform: uppercase;
  border-radius: 2px;
}

.tier-header {
  margin-bottom: 32px;
}

.tier-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--teal);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.tier-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--canvas);
  margin-bottom: 12px;
}

.tier-hook {
  font-size: 14px;
  color: var(--slate-on-dark);
  line-height: 1.6;
}

.tier-credits {
  margin: 32px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  text-align: center;
}

.credit-amount {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--teal);
}

.credit-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate-on-dark);
  opacity: 0.7;
}

.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  flex-grow: 1;
}

.tier-features li {
  font-size: 13px;
  color: var(--slate-on-dark);
  margin-bottom: 16px;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.tier-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-family: 'IBM Plex Mono', monospace;
}

.tier-features li.premium {
  color: var(--canvas);
  font-weight: 500;
}

.tier-guarantee {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 12px;
  font-style: italic;
  color: var(--teal3);
  line-height: 1.6;
}

/* ── ADD-ON TRAY ── */
.addon-tray-section {
  margin-top: 80px;
  border-top: 1px solid var(--ink3);
  padding-top: 60px;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.addon-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s var(--tr);
}

.addon-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 196, 161, 0.2);
}

.addon-info h4 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--canvas);
  margin-bottom: 4px;
}

.addon-info p {
  font-size: 12px;
  color: var(--slate-on-dark);
  margin: 0;
}

/* ── BUILDING THE HORIZON ── */
.vision-horizon {
  margin-top: 120px;
  padding: 60px;
  background: linear-gradient(135deg, var(--ink2) 0%, #0c141c 100%);
  border: 1px solid var(--ink3);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vision-horizon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

.vision-h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 32px;
  color: var(--canvas);
  margin-bottom: 24px;
}

.vision-p {
  max-width: 680px;
  margin: 0 auto 40px;
  font-size: 15px;
  color: var(--slate-on-dark);
  line-height: 1.8;
}

.vision-roadmap {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.roadmap-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.4;
}

.roadmap-step.active {
  opacity: 1;
}

.roadmap-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px var(--teal);
}

.roadmap-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
}

@media (max-width: 1024px) {
  .pricing-tiered-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .pricing-tier-card.featured {
    transform: none;
  }
  .addon-grid {
    grid-template-columns: 1fr;
  }
}

/* ── INSIGHTS HUB (CONTENT LISTING) ── */
.insights-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 100%, rgba(0, 196, 161, 0.08) 0%, transparent 60%);
}

.insights-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(at 0% 0%, rgba(0, 196, 161, 0.02) 0%, transparent 50%),
              radial-gradient(at 100% 0%, rgba(242, 166, 35, 0.01) 0%, transparent 50%);
  pointer-events: none;
}

.insights-controls-hub {
  margin-top: 60px;
  position: relative;
  z-index: 10;
}

.controls-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 2px;
}

/* Studio Mono Tokens */
.studio-mono {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.filter-group {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid transparent;
  padding: 8px 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--slate);
  cursor: pointer;
  transition: all 0.3s var(--tr);
}

.filter-btn:hover {
  color: var(--canvas);
}

.filter-btn.active {
  border-color: rgba(0, 196, 161, 0.2);
  color: var(--teal);
  background: rgba(0, 196, 161, 0.05);
}

.search-wrap {
  position: relative;
  width: 240px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.search-input {
  width: 100%;
  background: transparent;
  border: none;
  padding: 8px 12px 8px 36px;
  color: var(--canvas);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
}

.search-input:focus {
  outline: none;
}

.search-icon-svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.3;
  pointer-events: none;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 40px;
  margin-bottom: 120px;
}

.insights-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  transition: all 0.5s var(--tr);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  height: 100%;
}

.insights-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 196, 161, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.card-banner {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  background: #0c141c;
}

.card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--tr), filter 0.4s var(--tr);
  opacity: 0.8;
}

.insights-card:hover .card-banner img {
  transform: scale(1.05);
  opacity: 1;
}

.card-media-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(0, 196, 161, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s var(--tr);
}

.insights-card:hover .card-media-indicator {
  opacity: 1;
}

.card-type-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--teal);
  border-radius: 2px;
  z-index: 2;
}

.difficulty-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-radius: 2px;
  z-index: 2;
  border: 1px solid transparent;
}

.difficulty-tag.foundation {
  background: rgba(0, 196, 161, 0.1);
  color: var(--teal);
  border-color: rgba(0, 196, 161, 0.2);
}

.difficulty-tag.strategy, .difficulty-tag.strategist {
  background: rgba(242, 166, 35, 0.1);
  color: var(--gold);
  border-color: rgba(242, 166, 35, 0.2);
}

.difficulty-tag.architect {
  background: rgba(255, 255, 255, 0.05);
  color: var(--canvas);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Single Post Side Authority */
.difficulty-meter-wrap {
  margin-bottom: 20px;
}

.difficulty-meter-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--teal);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.meter-track {
  height: 4px;
  background: var(--ink3);
  border-radius: 2px;
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  width: 0%;
  transition: width 1.2s cubic-bezier(.16, 1, .3, 1);
}

.pain-points-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  border-top: 1px solid var(--ink2);
  padding-top: 20px;
}

.pain-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  color: var(--slate);
  background: rgba(255,255,255,0.03);
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 2px;
}

.load-more-wrap {
  margin-top: 40px;
}

.studio-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--teal);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 1px solid rgba(0, 196, 161, 0.3);
  cursor: pointer;
  transition: all 0.3s var(--tr);
}

.studio-btn-ghost:hover {
  background: rgba(0, 196, 161, 0.05);
  border-color: var(--teal);
  transform: translateY(-2px);
}

.card-body {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--slate);
  margin-bottom: 14px;
  display: flex;
  gap: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--canvas);
  transition: color 0.3s var(--tr);
}

.insights-card:hover .card-h3 {
  color: var(--teal);
}

.card-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--slate-on-dark);
  margin-bottom: 32px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0.8;
}

.card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 196, 161, 0.2);
  object-fit: cover;
  background: var(--ink2);
}

.author-txt {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--canvas);
}

.author-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  color: var(--slate);
  text-transform: uppercase;
}

/* ── ADMIN CMS INTERFACE ── */
.admin-login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, var(--ink2) 0%, var(--ink) 100%);
  padding: 40px;
}

.admin-login-card {
  width: 100%;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px;
  text-align: center;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.admin-form-group {
  text-align: left;
  margin-bottom: 24px;
}

.admin-label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--slate);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.admin-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 18px;
  color: var(--canvas);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 15px;
  transition: all 0.3s var(--tr);
}

.admin-input:focus {
  border-color: var(--teal);
  background: rgba(255, 255, 255, 0.04);
  outline: none;
}

.admin-dashboard-container {
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 40px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--ink3);
  padding-bottom: 32px;
}

.admin-post-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-post-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.3s var(--tr);
}

.admin-post-row:hover {
  background: rgba(255, 255, 255, 0.015);
}

.admin-cell {
  padding: 24px 16px;
  font-size: 14px;
}

.admin-cell.title {
  font-weight: 500;
  color: var(--canvas);
}

.admin-cell.meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--slate);
  text-transform: uppercase;
}

.admin-action-btn {
  background: none;
  border: none;
  color: var(--slate);
  cursor: pointer;
  font-size: 11px;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 8px;
  transition: color 0.2s var(--tr);
}

.admin-action-btn:hover {
  color: var(--teal);
}

.admin-action-btn.delete:hover {
  color: #ef4444;
}

/* CMS EDITOR */
.cms-editor-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  margin-top: 48px;
}

.sidebar-panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px;
  margin-bottom: 24px;
}

.panel-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 196, 161, 0.1);
  padding-bottom: 12px;
}

/* Quill Overrides */
.ql-toolbar.ql-snow {
  background: #111e2a !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-bottom: none !important;
}

.ql-container.ql-snow {
  background: rgba(0, 0, 0, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  font-family: 'Josefin Sans', sans-serif !important;
  font-size: 17px !important;
  color: var(--canvas) !important;
  min-height: 500px;
}

.ql-editor::before {
  color: var(--slate) !important;
}

.seo-preview-card {
  background: #fff;
  color: #1a1a1a;
  padding: 16px;
  border-radius: 8px;
  font-family: sans-serif;
  margin-top: 12px;
}

.seo-preview-url {
  font-size: 12px;
  color: #202124;
  margin-bottom: 4px;
}

.seo-preview-title {
  font-size: 18px;
  color: #1a0dab;
  margin-bottom: 4px;
}

.seo-preview-desc {
  font-size: 14px;
  color: #4d5156;
}

@media (max-width: 1024px) {
  .cms-editor-grid {
    grid-template-columns: 1fr;
  }
  .insights-controls {
    top: 0;
  }
}

/* ── ABOUT PAGE — Founder Social Links ── */
.founder-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.founder-social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,196,161,0.1);
  border: 1px solid rgba(0,196,161,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  transition: all 0.3s var(--tr);
  font-size: 14px;
}
.founder-social-link:hover {
  background: var(--teal);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,196,161,0.3);
}

/* ── HOW IT WORKS PAGE — Gap Diagram & Decision Trail ── */
.gap-diagram {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  max-width: 900px;
  margin: 64px auto 0;
  align-items: stretch;
}
.gap-side {
  background: var(--ink2);
  border: 1px solid var(--ink3);
  padding: 32px 28px;
  transition: border-color .3s;
}
.gap-side:hover { border-color: rgba(0,196,161,.3); }
.gap-side.problem { border-top: 3px solid var(--alert,#E24B4A); }
.gap-side.solution { border-top: 3px solid var(--teal); }
.gap-side-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.gap-side.problem .gap-side-label { color: #E24B4A; }
.gap-side.solution .gap-side-label { color: var(--teal); }
.gap-side h3, .gap-side h4 { font-size: 16px; font-weight: 500; color: var(--canvas); margin-bottom: 8px; }
.gap-side p { font-size: 13px; font-weight: 300; color: var(--slate-on-dark); line-height: 1.7; margin-bottom: 12px; }
.gap-side ul { list-style: none; padding: 0; }
.gap-side ul li {
  font-size: 12px; font-weight: 300; color: var(--slate-on-dark);
  padding: 4px 0 4px 16px; position: relative; line-height: 1.5;
}
.gap-side.problem ul li::before { content: '×'; position: absolute; left: 0; color: #E24B4A; font-size: 13px; }
.gap-side.solution ul li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-size: 11px; }

.gap-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--teal);
  opacity: .4;
  background: transparent;
}

.decision-trail {
  background: var(--ink);
  border: 1px solid var(--ink3);
  padding: 32px;
  max-width: 600px;
}
.dt-row {
  border-left: 3px solid rgba(0,196,161,.3);
  padding-left: 16px;
  margin-bottom: 20px;
}
.dt-row:last-child { margin-bottom: 0; }
.dt-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
  display: block;
}
.dt-content { font-size: 13px; font-weight: 300; color: rgba(248,247,244,.8); line-height: 1.65; }
.dt-action { font-size: 14px; font-weight: 500; color: var(--canvas); margin-bottom: 4px; }
.section-tight-bottom { padding-bottom: 60px !important; }
.sticky-cta-buffer { margin-bottom: 80px !important; }

.trail-benefits {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.trail-benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.tb-icon {
  font-size: 14px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
  width: 20px;
  text-align: center;
}
.trail-benefit strong {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--canvas);
  margin-bottom: 6px;
}
.trail-benefit p {
  font-size: 13px;
  font-weight: 300;
  color: var(--slate-on-dark);
  line-height: 1.75;
  margin: 0;
}

/* contrast fixes — WCAG AA */
.layer-card p                  { color: var(--slate-on-dark) !important; }
.layer-features li             { color: rgba(203,213,225,.82) !important; }
.tl-detail p                    { color: rgba(248,247,244,.88) !important; }
.dt-content                     { color: var(--slate-on-dark) !important; }
.page-section p,
.page-section li                { color: var(--slate-on-dark); }
.page-section .section-h2,
.page-section h3,
.page-section h4                { color: var(--canvas); }
.s-label, .tl-step, .dt-label,
.gap-side-label, .tl-detail-label { color: var(--teal) !important; }

/* ── HOW IT WORKS PAGE — FAQ (native details/summary) ── */
.zfaq-list { max-width: 720px; margin: 48px auto 0; }
.zfaq-item { border-bottom: 1px solid var(--ink3); list-style: none; }
.zfaq-item:first-child { border-top: 1px solid var(--ink3); }
.zfaq-item summary { list-style: none; }
.zfaq-item summary::-webkit-details-marker { display: none; }
.zfaq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .03em;
  color: var(--canvas);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}
.zfaq-q:hover { color: var(--teal); }
.zfaq-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 1px solid var(--ink3); border-radius: 50%;
  position: relative; transition: border-color .2s, transform .3s;
}
.zfaq-icon::before, .zfaq-icon::after {
  content: ''; position: absolute; background: var(--slate-on-dark); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.zfaq-icon::before { width: 8px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.zfaq-icon::after  { width: 1.5px; height: 8px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.zfaq-item[open] .zfaq-icon { border-color: var(--teal); transform: rotate(45deg); }
.zfaq-item[open] .zfaq-icon::before,
.zfaq-item[open] .zfaq-icon::after { background: var(--teal); }
.zfaq-a { padding-bottom: 24px; }
.zfaq-a p {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 14px; font-weight: 300;
  color: var(--slate-on-dark); line-height: 1.8; margin: 0;
}
.zfaq-a a { color: var(--teal); border-bottom: 1px solid rgba(0,196,161,.3); text-decoration: none; }
.zfaq-a a:hover { border-bottom-color: var(--teal); }

.zfaq-a a:hover { border-bottom-color: var(--teal); }

@media(max-width:768px){
  .gap-diagram { grid-template-columns: 1fr; }
  .gap-arrow {
    transform: none;
    padding: 32px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .gap-arrow::before, .gap-arrow::after {
    content: '';
    width: 1px;
    height: 30px;
    background: var(--ink3);
  }
  .gap-arrow span {
    color: var(--teal);
    font-size: 14px;
    transform: rotate(90deg);
  }
  .decision-trail { padding: 24px; }
}

/* ── PRODUCT PAGE — Capability Filter Bar ── */
.cap-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

/* ── INSIGHTS HUB SEARCH ── */
.hub-search-container {
  margin-bottom: 24px;
  max-width: 600px;
}

.hub-search-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 196, 161, 0.2);
  border-radius: 4px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s var(--tr);
}

.hub-search-box:focus-within {
  border-color: var(--teal);
  background: rgba(0, 196, 161, 0.05);
  box-shadow: 0 0 20px rgba(0, 196, 161, 0.1);
}

.hub-search-prompt {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.hub-search-box input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--canvas);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  width: 100%;
  letter-spacing: 0.05em;
}

.hub-search-box input::placeholder {
  color: rgba(248, 247, 244, 0.2);
}

.hub-search-cursor {
  width: 8px;
  height: 15px;
  background: var(--teal);
  animation: blink 1s step-end infinite;
  opacity: 0.6;
}

.filter-btn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 9px 20px;
  background: transparent;
  border: 1px solid var(--ink3);
  color: var(--slate);
  cursor: default;
  transition: all .2s;
  border-radius: 2px;
}

.filter-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.filter-btn.active {
  background: rgba(0, 196, 161, .08);
  border-color: var(--teal);
  color: var(--teal);
}


/* ── DEMO PAGE — Live Demo Section ── */
.live-section-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.live-header { text-align: center; margin-bottom: 56px; }
.live-header .s-label { margin-bottom: 16px; }
.live-header .section-h2 { max-width: 640px; margin: 0 auto; }
.live-layout { display: grid !important; grid-template-columns: 340px 1fr !important; gap: 48px; align-items: start; }
.live-sidebar { display: flex; flex-direction: column; gap: 32px; position: sticky; top: 100px; }
.live-steps { display: flex; flex-direction: column; gap: 24px; }
.live-step { display: flex; gap: 16px; align-items: flex-start; }
.live-step-num { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: .18em; color: var(--teal); background: rgba(0,196,161,.08); border: 1px solid rgba(0,196,161,.2); padding: 5px 8px; flex-shrink: 0; margin-top: 2px; line-height: 1.4; }
.live-step strong { display: block; font-family: 'Josefin Sans', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--canvas); margin-bottom: 6px; }
.live-step p { font-size: 13.5px; color: var(--canvas); opacity: 0.85; line-height: 1.7; margin: 0; }
.live-engine-log { background: var(--ink2); border: 1px solid var(--ink3); border-top: 2px solid var(--teal); padding: 16px 18px; }
.live-log-header { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.live-log-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); animation: blink 1s step-end infinite; flex-shrink: 0; }
.live-log-lines { display: flex; flex-direction: column; gap: 4px; }
.live-log-line { font-family: 'IBM Plex Mono', monospace; font-size: 11px; line-height: 1.6; color: var(--canvas); opacity: 0.9; display: block; }
.live-log-line.dim { opacity: .45; }
.live-log-line.hi  { color: var(--teal); }
.live-real-data-cta { background: var(--ink2); border: 1px solid var(--ink3); border-left: 3px solid var(--teal); padding: 20px; }
.live-cta-label { font-family: 'IBM Plex Mono', monospace; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--teal); display: block; margin-bottom: 10px; }
.live-real-data-cta p { font-size: 13px; font-weight: 300; color: var(--slate-on-dark); line-height: 1.7; margin: 0 0 12px; }
.live-scratch-note { font-size: 13px; color: var(--slate-on-dark); line-height: 1.7; margin: 0; padding-top: 16px; border-top: 1px solid var(--ink3); }
.live-scratch-note strong { color: var(--canvas); }
.live-embed-col { display: flex; flex-direction: column; min-width: 0; }
.live-embed-footnote { font-family: 'IBM Plex Mono', monospace; font-size: 9px; letter-spacing: .12em; color: var(--slate-on-dark); margin-top: 12px; text-align: right; opacity: .5; }
@media (max-width: 1100px) {
  .live-layout { grid-template-columns: 1fr !important; gap: 40px; }
  .live-sidebar { position: static; }
  .live-steps { flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .live-step  { flex: 1 1 240px; }
}
@media (max-width: 640px) {
  .live-section-inner { padding: 0 20px; }
  .live-steps { flex-direction: column; }
}

/* ── DEMO PAGE — Mock Shell ── */
.demo-shell { background: #0a1520; border: 1px solid var(--ink3); border-radius: 6px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.5); }
.demo-chrome { display: flex; align-items: center; gap: 7px; background: #111d2b; border-bottom: 1px solid var(--ink3); padding: 10px 16px; }
.dc-dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.dc-url { flex: 1; font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: rgba(203,213,225,.35); letter-spacing: .04em; margin-left: 8px; }
.dc-badge { font-family: 'IBM Plex Mono', monospace; font-size: 8px; letter-spacing: .16em; color: var(--teal); background: rgba(0,196,161,.1); border: 1px solid rgba(0,196,161,.25); padding: 3px 8px; }
.demo-app { display: grid; grid-template-columns: 130px 1fr; min-height: 540px; }
.demo-nav { background: #0d1a26; border-right: 1px solid var(--ink3); padding: 16px 0; display: flex; flex-direction: column; gap: 2px; }
.demo-nav-item { display: flex; align-items: center; gap: 9px; padding: 9px 16px; font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: .06em; color: rgba(203,213,225,.45); cursor: default; transition: background .2s, color .2s; }
.demo-nav-item.active { color: var(--teal); background: rgba(0,196,161,.08); border-right: 2px solid var(--teal); }
.demo-nav-item.dim { opacity: .3; }
.dni-icon { font-size: 12px; flex-shrink: 0; }
.demo-nav-divider { height: 1px; background: var(--ink3); margin: 12px 0; }
.demo-main { padding: 20px; display: flex; flex-direction: column; gap: 16px; overflow: hidden; }
.demo-topbar { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.demo-page-title { font-family: 'Josefin Sans', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--canvas); }
.demo-page-sub { font-family: 'IBM Plex Mono', monospace; font-size: 9px; color: rgba(203,213,225,.4); letter-spacing: .08em; margin-top: 3px; }
.demo-badge-alert { font-family: 'IBM Plex Mono', monospace; font-size: 8px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); background: rgba(242,166,35,.1); border: 1px solid rgba(242,166,35,.3); padding: 4px 10px; white-space: nowrap; flex-shrink: 0; }
.demo-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.demo-metric { background: var(--ink2); border: 1px solid var(--ink3); padding: 10px 12px; display: flex; flex-direction: column; gap: 3px; }
.dm-label { font-family: 'IBM Plex Mono', monospace; font-size: 7px; letter-spacing: .14em; color: var(--canvas); opacity: 0.55; text-transform: uppercase; }
.dm-value { font-family: 'Josefin Sans', sans-serif; font-size: 18px; font-weight: 600; color: var(--canvas); line-height: 1.1; }
.dm-value.teal  { color: var(--teal); }
.dm-value.alert { color: var(--alert); }
.dm-delta { font-family: 'IBM Plex Mono', monospace; font-size: 8px; color: rgba(203,213,225,.4); }
.demo-decision-card { background: var(--ink2); border: 1px solid var(--ink3); border-top: 2px solid var(--teal); padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.ddc-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.ddc-label { font-family: 'IBM Plex Mono', monospace; font-size: 8px; letter-spacing: .14em; color: var(--teal); display: block; margin-bottom: 5px; }
.ddc-title { font-family: 'Josefin Sans', sans-serif; font-size: 15px; font-weight: 600; letter-spacing: .04em; color: var(--canvas); }
.ddc-conf { font-family: 'IBM Plex Mono', monospace; font-size: 22px; font-weight: 500; color: var(--teal); flex-shrink: 0; }
.ddc-reasoning { display: flex; flex-direction: column; gap: 6px; border-top: 1px solid var(--ink3); padding-top: 10px; }
.ddc-row { display: flex; gap: 10px; font-family: 'IBM Plex Mono', monospace; font-size: 10px; line-height: 1.5; }
.ddc-key { color: rgba(203,213,225,.4); width: 56px; flex-shrink: 0; }
.ddc-v { color: rgba(203,213,225,.8); }
.ddc-v.teal { color: var(--teal); }
.ddc-actions { display: flex; gap: 8px; border-top: 1px solid var(--ink3); padding-top: 12px; }
.dda-btn { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: .1em; padding: 8px 16px; border: 1px solid var(--ink3); background: transparent; color: rgba(203,213,225,.6); cursor: pointer; transition: all .2s; }
.dda-btn.approve { border-color: var(--teal); color: var(--teal); background: rgba(0,196,161,.08); }
.dda-btn.approve:hover { background: var(--deep-teal); color: var(--canvas); }
.dda-btn:not(.approve):hover { border-color: rgba(203,213,225,.4); color: var(--canvas); }
.demo-feed-wrap { background: #070f18; border: 1px solid var(--ink3); padding: 12px 14px; flex: 1; }
.demo-feed-label { font-family: 'IBM Plex Mono', monospace; font-size: 8px; letter-spacing: .16em; color: var(--teal); margin-bottom: 8px; display: flex; align-items: center; }
.demo-feed { display: flex; flex-direction: column; gap: 3px; }

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}


/* ── FREE AUDIT PAGE — Audit Grid & Security Box ── */
.audit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 64px;
  }
  .audit-step { margin-bottom: 48px; }
  .audit-step-n {
    font-family: 'IBM Plex Mono', monospace;
    color: var(--teal2);
    font-size: 11px;
    letter-spacing: 0.22em;
    display: block;
    margin-bottom: 12px;
  }
  .audit-step h3 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--canvas);
  }
  .audit-step p {
    font-family: 'Josefin Sans', sans-serif;
    color: var(--canvas); /* Increased contrast */
    opacity: 0.85;
    line-height: 1.75;
    font-weight: 300;
  }
  .audit-security {
    background: var(--ink2);
    border: 1px solid var(--ink3);
    padding: 32px;
    border-radius: 4px;
    margin-top: 24px;
    position: relative;
    overflow: hidden;
  }
  .audit-security::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: var(--teal);
  }
  .audit-security h4 {
    font-family: 'IBM Plex Mono', monospace;
    color: var(--teal);
    font-size: 13px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }
  .audit-security p {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14.5px; /* Slightly larger */
    line-height: 1.65;
    color: var(--canvas); /* Increased contrast */
    opacity: 0.9;
    font-weight: 300;
  }
  
  @media (max-width: 960px) {
    .audit-grid { grid-template-columns: 1fr; gap: 64px; }
  }


/* ── SAMPLE AUDIT PAGE — Audit Report ── */
:root {
  --cyan: #22d3ee;
}
.audit-page {
  background: var(--ink);
  color: var(--canvas);
  min-height: 100vh;
  padding-top: 120px;
}
.report-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 100px;
}
.report-header {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 40px;
  margin-bottom: 60px;
}
.report-label {
  font-family: 'IBM Plex Mono', monospace;
  color: var(--teal);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.report-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}
.report-meta {
  display: flex;
  gap: 32px;
  color: var(--slate);
  font-size: 14px;
}
.meta-item strong {
  color: var(--canvas);
}

/* THE SCORE CARD */
.score-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 80px;
}
.score-card {
  background: var(--ink2);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.big-score {
  font-size: 80px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.score-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--slate);
  margin-top: 8px;
}
.score-impact {
  font-size: 18px;
  margin-top: 24px;
  color: #ef4444; /* Alert red */
  font-weight: 500;
}

/* FINDINGS */
.findings-h {
  font-size: 24px;
  margin-bottom: 32px;
  border-left: 3px solid var(--teal);
  padding-left: 20px;
}
.finding-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 24px;
  transition: border-color 0.3s ease;
}
.finding-card:hover {
  border-color: var(--teal);
}
.finding-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 16px;
  display: inline-block;
}
.tag-waste { background: rgba(239, 68, 68, 0.1); color: #f87171; }
.tag-signal { background: rgba(34, 211, 238, 0.1); color: var(--cyan); }
.tag-creative { background: rgba(234, 179, 8, 0.1); color: var(--gold); }

.finding-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.finding-desc {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.6;
}
.finding-action {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 14px;
}
.finding-action strong { color: var(--teal); }

/* CTA SECTION */
.report-cta {
  margin-top: 100px;
  background: linear-gradient(to right, var(--ink2), var(--ink));
  padding: 60px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--teal);
}
.cta-h {
  font-size: 32px;
  margin-bottom: 16px;
}
.cta-p {
  color: var(--slate);
  margin-bottom: 32px;
  font-size: 18px;
}
.btn-audit {
  background: var(--deep-teal);
  color: var(--canvas);
  padding: 18px 36px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.3s ease;
}
.btn-audit:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .score-grid { grid-template-columns: 1fr; }
  .report-title { font-size: 36px; }
  .report-header { padding-top: 40px; }
}


/* ═══════════════════════════════════════════════════════════
   INNER PAGES — MOBILE OPTIMISATION
   Touch targets · Demo grid · Forms · Typography · Spacing
═══════════════════════════════════════════════════════════ */

/* ── DEMO PAGE — Mobile Collapse ── */
@media (max-width: 768px) {
  /* Demo shell: collapse sidebar nav into horizontal scroll */
  .demo-app {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .demo-nav {
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px;
    border-right: none;
    border-bottom: 1px solid var(--ink3);
    gap: 0;
  }
  .demo-nav-item {
    flex-shrink: 0;
    padding: 8px 14px;
    border-right: none;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
  }
  .demo-nav-item.active {
    border-right: none;
    border-bottom: 2px solid var(--teal);
  }
  .demo-nav-divider {
    display: none;
  }
  .demo-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .demo-shell {
    font-size: 12px;
  }
  /* Demo tiny text: readable minimum */
  .dm-label {
    font-size: 9px;
  }
  .demo-badge-alert {
    font-size: 10px;
    letter-spacing: .08em;
  }
  /* Demo decision card actions: stack on mobile */
  .ddc-actions {
    flex-wrap: wrap;
  }
  /* Live layout: handled by existing 1100px rule */
}

@media (max-width: 480px) {
  /* Demo metrics: single column on tiny screens */
  .demo-metrics {
    grid-template-columns: 1fr;
  }
  .demo-main {
    padding: 14px;
  }
  /* Live steps: stack */
  .live-steps {
    flex-direction: column;
  }
  .live-section-inner {
    padding: 0 16px;
  }
}

/* ── OTP BOXES — Touch Targets ── */
@media (max-width: 480px) {
  .otp-box {
    width: 44px;
    height: 52px;
    font-size: 20px;
  }
  .otp-row {
    gap: 8px;
  }
}

/* ── MOBILE USABILITY: minimum 12px text (Google CWV) ── */
@media (max-width: 768px) {
  .terminal-label,
  .t-btn-approve,
  .t-btn-mod,
  .embed-bar-label,
  .tl-detail-label,
  .arch-layer-lbl,
  .arch-tag,
  .founder-tag,
  .founder-cred-lbl,
  .mc-founder-micro,
  .mc-status,
  .footer-col h4,
  .footer-social a,
  .footer-legal,
  .compound-bar-wk,
  .contact-detail-label,
  .ui-glass-label,
  .author-label,
  .gap-side-label,
  .dt-label,
  .live-cta-label,
  .live-embed-footnote,
  .demo-page-sub,
  .demo-badge-alert {
    font-size: 12px;
  }
}

@media (max-width: 375px) {
  .otp-box {
    width: 40px;
    height: 46px;
    font-size: 18px;
  }
  .otp-row {
    gap: 6px;
  }
  /* Ensure cursor on OTP on mobile */
  .otp-box {
    cursor: text;
  }
}

@media (max-width: 320px) {
  .otp-box {
    width: 36px;
    height: 44px;
    font-size: 16px;
  }
  .otp-row {
    gap: 4px;
  }
}

/* ── PRICING TIER CARDS ── */
@media (max-width: 480px) {
  .pricing-tier-card {
    padding: 28px 18px;
  }
  .pricing-tiered-grid {
    gap: 32px;
  }
}

/* ── AUDIT GRID (FREE-AUDIT & SAMPLE-AUDIT) ── */
@media (max-width: 640px) {
  .audit-grid {
    gap: 40px;
  }
  .audit-step {
    margin-bottom: 28px;
  }
}

@media (max-width: 480px) {
  .audit-grid {
    gap: 24px;
  }
}

/* ── SAMPLE AUDIT REPORT ── */
@media (max-width: 640px) {
  .score-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .report-cta {
    padding: 36px 24px;
  }
  .cta-h {
    font-size: 24px;
  }
  .cta-p {
    font-size: 15px;
  }
  .finding-card {
    padding: 20px;
  }
}

/* ── PAGE HERO: tighter padding on mobile ── */
@media (max-width: 768px) {
  .page-hero {
    padding: 120px 24px 60px;
    min-height: 60vh;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 100px 16px 48px;
    min-height: 50vh;
  }
}

/* ── BREADCRUMB: wrap on mobile ── */
@media (max-width: 480px) {
  .breadcrumb {
    flex-wrap: wrap;
    gap: 4px;
  }
}

/* ── FORM PAGE MODALS: tighter on small screens ── */
@media (max-width: 480px) {
  .form-h {
    font-size: 22px;
  }
  .form-input,
  .form-select {
    font-size: 16px; /* Prevent iOS zoom */
  }
}

/* ── INSIGHTS HUB: single column on mobile ── */
@media (max-width: 640px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }
}

.insights-crawlable-index {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.01);
}

.index-section {
  max-width: 800px;
  margin: 0 auto;
}

.index-label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 0.15em;
  margin-bottom: 32px;
  opacity: 0.6;
}

.index-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 16px;
}

.index-list a {
  color: var(--slate-on-dark);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.index-list a:hover {
  color: var(--teal);
}

/* ── SECTION CONTAINER: prevent overflow ── */
@media (max-width: 480px) {
  .page-section {
    padding: 48px 16px;
  }
}

/* ── SIGNUP PAGE ── */
@media (max-width: 480px) {
  .signup-form-panel {
    padding: 80px 16px 60px;
  }
}

/* ── MOBILE: cursor: text on form fields (override cursor: none for touch) ── */
@media (max-width: 767px) {
  input,
  textarea,
  select,
  .otp-box {
    cursor: text;
  }
  button,
  a,
  [role="button"],
  .btn-primary,
  .btn-ghost,
  .sticky-btn,
  .mobile-sticky-btn,
  .filter-btn,
  .faq-question,
  .zfaq-q,
  summary {
    cursor: pointer;
  }
}

/* ── TRANSPARENCY ADVANTAGE — Comparison Matrix (product.html) ── */
.comp-matrix {
  width: 100%;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 48px;
}

.comp-row {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.comp-row:last-child {
  border-bottom: none;
}

/* Header row */
.comp-row.head {
  background: rgba(255,255,255,.03);
}

.comp-row.head .comp-cell {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--slate-on-dark);
  padding: 14px 20px;
  font-weight: 600;
}

.comp-row.head .comp-cell:nth-child(2) {
  color: var(--teal);
  border-left: 1px solid rgba(0,196,161,.15);
}

.comp-row.head .comp-cell:nth-child(3) {
  border-left: 1px solid rgba(255,255,255,.06);
}

/* Body cells */
.comp-cell {
  padding: 24px 20px;
  font-size: 14px;
  line-height: 1.6;
}

/* Col 1 — feature label */
.comp-cell.label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--slate-on-dark);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.02);
}

/* Col 2 — Zephra (teal accent) */
.comp-cell.zephra {
  border-left: 1px solid rgba(0,196,161,.15);
  background: rgba(0,196,161,.03);
}

.comp-cell.zephra strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 6px;
}

.comp-cell.zephra p {
  font-size: 13px;
  font-weight: 300;
  color: var(--slate-on-dark);
  line-height: 1.65;
  margin: 0;
}

.comp-cell.zephra a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,196,161,.3);
}

/* Col 3 — competitor (dimmed) */
.comp-cell.other {
  border-left: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.01);
}

.comp-cell.other strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(248,247,244,.4);
  margin-bottom: 6px;
}

.comp-cell.other p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(100,116,139,.7);
  line-height: 1.65;
  margin: 0;
}

/* Hover lift on each row */
.comp-row:not(.head):hover .comp-cell.zephra {
  background: rgba(0,196,161,.06);
}


/* ── ARTICLE CONTENT SYSTEM (RICH TEXT) ── */
.rich-text {
  max-width: 760px;
  margin: 0 auto;
}

.rich-text h2 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--canvas);
  margin: 48px 0 20px;
  letter-spacing: .02em;
  line-height: 1.3;
}

.rich-text h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--teal);
  margin: 36px 0 16px;
  letter-spacing: .02em;
}

.rich-text p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--slate-on-dark);
  margin-bottom: 28px;
}

.rich-text p strong {
  color: var(--canvas);
  font-weight: 500;
}

.rich-text ul, .rich-text ol {
  margin-bottom: 32px;
  padding-left: 24px;
}

.rich-text li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--slate-on-dark);
  margin-bottom: 16px;
  position: relative;
}

.rich-text ul li::marker {
  color: var(--teal);
}

.rich-text ol li::marker {
  font-family: 'IBM Plex Mono', monospace;
  color: var(--teal);
  font-size: 14px;
}

.rich-text a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 196, 161, 0.3);
  transition: border-color 0.2s;
}

.rich-text a:hover {
  border-color: var(--teal);
}

.rich-text code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--teal2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Studio Callout (Glassmorphism) */
.studio-callout {
  background: rgba(0, 196, 161, 0.05);
  border: 1px solid rgba(0, 196, 161, 0.15);
  border-radius: 8px;
  padding: 32px;
  margin: 48px 0;
  position: relative;
  overflow: hidden;
}

.studio-callout::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: var(--teal);
}

.studio-callout h3, .studio-callout h4 {
  margin-top: 0;
  font-size: 18px;
  color: var(--teal);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.studio-callout p {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.7;
}

.studio-callout p:last-child {
  margin-bottom: 0;
}

/* Related Articles Section */
.related-box {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--ink3);
}

.related-box-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--slate-on-dark);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
  opacity: 0.6;
}

.related-list {
  list-style: none;
  padding: 0 !important;
}

.related-list li {
  margin-bottom: 12px !important;
}

.related-list a {
  font-size: 15px;
  color: var(--teal);
  font-weight: 400;
}

/* Mobile Responsive adjustment for rich-text */
@media (max-width: 768px) {
  .rich-text p { font-size: 16px; }
  .rich-text h2 { font-size: 21px; }
  .studio-callout { padding: 24px; }
}

/* ── COMPARISON TABLE MOBILE ── */
@media (max-width: 768px) {
  .comp-row {
    grid-template-columns: 1fr;
  }
  .comp-cell.label {
    background: rgba(255,255,255,.04);
    padding: 12px 16px;
  }
  .comp-cell.zephra,
  .comp-cell.other {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 16px;
  }
  .comp-row.head {
    display: none;
  }
  .comp-cell.zephra::before {
    content: '✓ Zephra';
    display: block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 8px;
  }
  .comp-cell.other::before {
    content: '✗ Standard AI';
    display: block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(100,116,139,.7);
    margin-bottom: 8px;
  }
}


/* Base typography limits for readability */
.page-body .section-lead, .page-body .s-inner p { max-width: 65ch; margin-left: auto; margin-right: auto; }
.page-body .s-inner.left p { margin-left: 0; }