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

:root {
  --light: #F4F1ED;
  --dark: #141210;
  --gold: #C49A6C;
  --gold-dim: #8A6A48;
  --cream: #EDE8E1;
  --muted-l: #6B6560;
  --muted-d: #9A9189;
  --dim-l: #A0998F;
  --dim-d: #5C5652;
  --xdim-d: #3A3835;
  --d-green: #7B9E89;
  --d-red: #C96B6B;
  --d-blue: #5A7A98;
}

html {
  scroll-behavior: smooth;
  background: var(--dark);
}

body {
  background: var(--dark);
  color: var(--light);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}


/* ── HERO CANVAS ──────────────────────────────────── */
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero>*:not(#heroCanvas) {
  position: relative;
  z-index: 1;
}

/* ── NAV ──────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 22px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(20, 18, 16, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.6s ease, border-color 0.6s ease, backdrop-filter 0.6s ease, -webkit-backdrop-filter 0.6s ease;
}

nav.scrolled {
  background: rgba(20, 18, 16, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(255, 255, 255, 0.07);
}

.logo {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 24px;
  height: auto;
  opacity: 0.9;
}

.foot-logo-icon {
  width: 16px;
  opacity: 0.6;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold);
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: #d4a87c;
}

/* ── HERO — DARK ──────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, #221a10 0%, #181410 50%, #141210 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 64px 100px;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow behind headline */
.hero::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(196, 154, 108, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.2s forwards;
}

.hero-h1 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(88px, 15vw, 220px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--light);
  margin-bottom: 0;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-h1 .italic {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-size: clamp(72px, 12.5vw, 185px);
}

.hero-sub-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 48px;
  gap: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--muted-d);
  max-width: 520px;
  line-height: 1.7;
}

.hero-sub strong {
  color: var(--light);
  font-weight: 400;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--light);
  color: var(--dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 18px 40px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.hero-cta:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.hero-cta .arr {
  transition: transform 0.2s;
}

.hero-cta:hover .arr {
  transform: translateX(5px);
}

/* ── STATEMENT — LIGHT ────────────────────────────── */
.statement {
  background: linear-gradient(180deg, #F4F1ED 0%, #EEE8DF 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 120px 64px;
  position: relative;
  overflow: hidden;
}

.statement .section-num {
  right: -20px;
  bottom: -60px;
}

.statement-h {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(52px, 8.5vw, 128px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--dark);
  max-width: 1100px;
  margin-bottom: 48px;
}

.statement-h em {
  font-style: italic;
  color: var(--gold-dim);
  font-weight: 400;
}

.statement-h .dim {
  color: rgba(20, 18, 16, 0.25);
}

.statement-sub {
  font-size: clamp(17px, 1.7vw, 22px);
  color: var(--muted-l);
  max-width: 600px;
  line-height: 1.72;
}

.statement-sub strong {
  color: var(--dark);
  font-weight: 500;
}

.statement-cta {
  display: inline-block;
  margin-top: 48px;
  padding: 16px 36px;
  background: var(--dark);
  color: var(--cream);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1.5px solid var(--dark);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.statement-cta:hover {
  background: transparent;
  color: var(--dark);
}

.statement-cta .arr {
  margin-left: 8px;
  transition: transform 0.2s;
  display: inline-block;
}

.statement-cta:hover .arr {
  transform: translateX(4px);
}

/* ── SOURCES — LIGHT ──────────────────────────────── */
.sources-section {
  background: linear-gradient(155deg, #F4F1ED 0%, #EBE2D6 55%, #F2EDE6 100%);
  padding: 180px 64px;
  position: relative;
  overflow: hidden;
}

.sources-section .section-num {
  right: -20px;
  bottom: -80px;
}

.sources-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.sources-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 24px;
}

.sources-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--dark);
  margin-bottom: 32px;
}

.sources-h2 em {
  font-style: italic;
  color: var(--gold-dim);
  font-weight: 400;
}

.sources-body {
  font-size: 17px;
  color: var(--muted-l);
  line-height: 1.8;
  max-width: 400px;
}

.sources-body strong {
  color: var(--dark);
  font-weight: 500;
}

.sources-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 8px;
}

.source-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: padding-left 0.25s;
  cursor: default;
}

.source-row:hover {
  padding-left: 10px;
}

.source-arrow {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: var(--gold-dim);
  flex-shrink: 0;
}

.source-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  flex: 1;
}

.source-desc {
  font-size: 13px;
  color: var(--dim-l);
}

/* ── PRIVACY — DARK ───────────────────────────────── */
.privacy-section {
  background: linear-gradient(140deg, #10131e 0%, #121420 50%, #141218 100%);
  padding: 160px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.privacy-section .section-num {
  left: -20px;
  top: -80px;
}

.privacy-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 7vw, 104px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--light);
  max-width: 960px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
}

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

.privacy-body {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--muted-d);
  max-width: 520px;
  margin: 0 auto 80px;
  line-height: 1.78;
  position: relative;
  z-index: 1;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 1;
}

.privacy-card {
  background: #1A1816;
  padding: 32px 28px;
  border-top: 2px solid #2A2825;
  transition: border-color 0.25s;
}

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

.pcl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pcl.yes {
  color: #7B9E89;
}

.pcl.no {
  color: #C96B6B;
}

.pct {
  font-size: 15px;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 8px;
  line-height: 1.4;
}

.pcd {
  font-size: 13px;
  color: var(--dim-d);
  line-height: 1.6;
}


/* ── AYE AYE ──────────────────────────────────────── */
.aye-section {
  background: linear-gradient(135deg, #1e1610 0%, #161210 60%, #1a1510 100%);
  padding: 140px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.aye-section .section-num {
  left: -20px;
  bottom: -80px;
}

.aye-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.aye-exchange {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}

.aye-line {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.aye-line:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.aye-speaker {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim-d);
  margin-bottom: 6px;
}

.aye-line.you .aye-speaker {
  color: var(--muted-d);
}

.aye-line.brain .aye-speaker {
  color: var(--gold);
}

.aye-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.aye-line.you .aye-text {
  color: var(--light);
}

.aye-line.brain .aye-text {
  color: var(--gold);
  font-style: italic;
}

.aye-body {
  font-size: 16px;
  color: var(--muted-d);
  line-height: 1.8;
  max-width: 400px;
}

.aye-body strong {
  color: var(--light);
  font-weight: 500;
}

.aye-right {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.aye-card {
  background: #1A1816;
  padding: 24px 26px;
  border-left: 2px solid var(--xdim-d, #3A3835);
  transition: border-color 0.25s;
}

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

.aye-card-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim-d);
  margin-bottom: 8px;
}

.aye-card-text {
  font-size: 14px;
  color: var(--light);
  line-height: 1.55;
  font-family: 'Fraunces', serif;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.aye-card-sub {
  font-size: 12px;
  color: var(--muted-d);
  margin-top: 5px;
  line-height: 1.5;
}

@media (max-width: 960px) {
  .aye-section {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 100px 24px;
  }
}

@media (max-width: 560px) {
  .aye-section {
    padding: 72px 20px;
    gap: 48px;
  }

  .aye-text {
    font-size: 26px;
  }

  .aye-body {
    font-size: 15px;
  }

  .aye-card {
    padding: 18px 18px;
  }
}

/* ── FEATURES — LIGHT ─────────────────────────────── */
/* ── LIGHT SECTION SHARED POLISH ──────────────────── */
.features-section,
.sources-section,
.model-section,
.pricing-section {
  border-top: 1px solid rgba(196, 154, 108, 0.25);
  box-shadow:
    inset 0 120px 80px -50px rgba(20, 18, 16, 0.07),
    inset 0 -120px 80px -50px rgba(20, 18, 16, 0.07);
}

/* Decorative gold ring accents on light sections */
.features-section::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1.5px solid rgba(196, 154, 108, 0.15);
  top: -250px;
  right: -150px;
  pointer-events: none;
  z-index: 0;
}

.sources-section::before {
  content: '';
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  border: 1px solid rgba(196, 154, 108, 0.12);
  bottom: -180px;
  left: -120px;
  pointer-events: none;
  z-index: 0;
}

.model-section::after {
  content: '';
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  border: 1.5px solid rgba(196, 154, 108, 0.13);
  top: -200px;
  left: -180px;
  pointer-events: none;
  z-index: 0;
}

.pricing-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(196, 154, 108, 0.14);
  top: -100px;
  right: -100px;
  pointer-events: none;
  z-index: 0;
}

.features-section {
  background: linear-gradient(170deg, #F4F1ED 0%, #EDE5DA 50%, #F4F1ED 100%);
  padding: 140px 64px;
  position: relative;
  overflow: hidden;
}

.features-section .section-num {
  right: -20px;
  top: -80px;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.feat-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: end;
}

.feat-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 20px;
}

.feat-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--dark);
}

.feat-h2 em {
  font-style: italic;
  color: var(--gold-dim);
  font-weight: 400;
}

.joke-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim-l);
  margin-bottom: 12px;
}

.joke-q {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--muted-l);
  margin-bottom: 10px;
}

.joke-a {
  font-size: 14px;
  color: var(--dim-l);
  line-height: 1.65;
}

.joke-a em {
  color: var(--dark);
  font-style: normal;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
}

.feat-card {
  background: #EDEBE6;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, box-shadow 0.25s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.03);
}

.feat-card:hover {
  background: #E6E3DE;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.05);
}

.feat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-dim);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feat-card:hover::after {
  transform: scaleX(1);
}

.feat-n {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: var(--dim-l);
  margin-bottom: 16px;
}

.feat-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}

.feat-desc {
  font-size: 14px;
  color: var(--muted-l);
  line-height: 1.75;
}

/* ── USE CASES — DARK ─────────────────────────────── */
.cases-section {
  background: linear-gradient(145deg, #10121e 0%, #121318 55%, #141218 100%);
  padding: 160px 64px;
  position: relative;
  overflow: hidden;
}

.cases-section .section-num {
  left: -20px;
  bottom: -80px;
}

.cases-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cases-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.cases-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(52px, 9vw, 130px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--light);
  margin-bottom: 80px;
}

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

.cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.case-card {
  background: #1A1816;
  padding: 36px 26px;
  border-top: 2px solid #2A2825;
  transition: border-color 0.25s, transform 0.2s;
}

.case-card:hover {
  transform: translateY(-5px);
}

.case-card.c1:hover {
  border-color: var(--gold);
}

.case-card.c2:hover {
  border-color: #C07840;
}

.case-card.c3:hover {
  border-color: #5A7A98;
}

.case-card.c4:hover {
  border-color: #5A8A6A;
}

.case-num {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  color: var(--dim-d);
  margin-bottom: 16px;
}

.case-who {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted-d);
  margin-bottom: 12px;
}

.case-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--light);
  line-height: 1.38;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.case-hook {
  font-size: 13px;
  color: var(--dim-d);
  font-style: italic;
  line-height: 1.6;
}

/* ── CTA — LIGHT ──────────────────────────────────── */
.cta-section {
  background: var(--light);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 120px 64px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 200px;
  background: var(--gold-dim);
  opacity: 0.4;
}

.cta-h {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(72px, 13vw, 192px);
  line-height: 0.88;
  letter-spacing: -0.045em;
  color: var(--dark);
  margin-bottom: 0;
}

.cta-h .italic {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-dim);
  font-size: clamp(60px, 10.5vw, 156px);
}

.cta-sub-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 72px;
  gap: 60px;
  width: 100%;
}

.cta-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--muted-l);
  max-width: 460px;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: var(--light);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 18px 40px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-dark:hover {
  background: #2A2826;
  transform: translateY(-2px);
}

.btn-dark .arr {
  transition: transform 0.2s;
}

.btn-dark:hover .arr {
  transform: translateX(5px);
}

.cta-note {
  font-size: 12px;
  color: var(--dim-l);
  letter-spacing: 0.03em;
}

/* ── FOOTER ───────────────────────────────────────── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.foot-logo {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  color: var(--dim-d);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.foot-email {
  font-size: 12px;
  color: var(--dim-d);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.foot-email:hover {
  color: var(--gold);
}

.foot-copy {
  font-size: 11px;
  color: var(--dim-d);
  letter-spacing: 0.04em;
}


/* ── MODEL COMPARISON ─────────────────────────────── */
.model-section {
  background: linear-gradient(140deg, #EDE6DC 0%, #F4F1ED 45%, #EBE4D9 100%);
  padding: 140px 64px;
  position: relative;
  overflow: hidden;
}

.model-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 160px 160px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
}

.model-section .section-num {
  right: -20px;
  bottom: -80px;
}

.model-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.model-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 20px;
}

.model-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--dark);
  margin-bottom: 72px;
  max-width: 800px;
}

.model-h2 em {
  font-style: italic;
  color: var(--gold-dim);
  font-weight: 400;
}

.model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

/* ── AGENT COLUMN ─── */
.model-col {
  padding: 40px 36px 36px;
  position: relative;
}

.model-col.agent {
  background: #EDEAE5;
}

.model-col.brain {
  background: var(--dark);
}

.model-col-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.model-col.agent .model-col-label {
  color: var(--dim-l);
}

.model-col.brain .model-col-label {
  color: var(--gold);
}

.model-col-label::after {
  content: '';
  flex: 1;
  height: 1px;
}

.model-col.agent .model-col-label::after {
  background: rgba(0, 0, 0, 0.1);
}

.model-col.brain .model-col-label::after {
  background: rgba(255, 255, 255, 0.08);
}

.model-col-name {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
  line-height: 1.2;
}

.model-col.agent .model-col-name {
  color: var(--muted-l);
}

.model-col.brain .model-col-name {
  color: var(--light);
}

.model-col.brain .model-col-name em {
  font-style: italic;
  color: var(--gold);
}

/* ── FLOW STEPS ─── */
.flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}

.model-col.brain .flow-step {
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.flow-step:last-child {
  border-bottom: none;
}

.flow-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 20px;
  padding-top: 4px;
}

.flow-node {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.model-col.agent .flow-node {
  background: rgba(0, 0, 0, 0.2);
}

.model-col.brain .flow-node {
  background: var(--gold);
}

.model-col.brain .flow-step.loop .flow-node {
  background: var(--d-green);
}

.model-col.brain .flow-step.artifact .flow-node {
  background: var(--d-blue);
}

.flow-line {
  width: 1px;
  flex: 1;
  min-height: 20px;
  margin-top: 3px;
}

.model-col.agent .flow-line {
  background: rgba(0, 0, 0, 0.12);
}

.model-col.brain .flow-line {
  background: rgba(196, 154, 108, 0.2);
}

.flow-step:last-child .flow-line {
  display: none;
}

.flow-content {
  flex: 1;
}

.flow-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.model-col.agent .flow-label {
  color: var(--dim-l);
}

.model-col.brain .flow-label {
  color: var(--gold);
}

.model-col.brain .flow-step.loop .flow-label {
  color: var(--d-green);
}

.model-col.brain .flow-step.artifact .flow-label {
  color: var(--d-blue);
}

.flow-text {
  font-size: 13.5px;
  line-height: 1.55;
}

.model-col.agent .flow-text {
  color: var(--muted-l);
}

.model-col.brain .flow-text {
  color: var(--muted-d);
}

.flow-text strong {
  font-weight: 600;
}

.model-col.agent .flow-text strong {
  color: var(--dark);
}

.model-col.brain .flow-text strong {
  color: var(--light);
}

/* ── VERDICT ─── */
.model-verdict {
  padding: 18px 0 0;
  margin-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 13px;
  line-height: 1.6;
  font-style: italic;
}

.model-col.agent .model-verdict {
  color: var(--dim-l);
  border-top-color: rgba(0, 0, 0, 0.08);
}

.model-col.brain .model-verdict {
  color: var(--muted-d);
  border-top-color: rgba(255, 255, 255, 0.07);
}

.model-verdict strong {
  font-style: normal;
  font-weight: 600;
}

.model-col.agent .model-verdict strong {
  color: var(--muted-l);
}

.model-col.brain .model-verdict strong {
  color: var(--gold);
}

/* ── DIVIDER LABEL ─── */
.model-vs {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--light);
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--dim-l);
  z-index: 2;
  border-radius: 50%;
}

@media (max-width: 960px) {
  .model-section {
    padding: 100px 24px;
  }

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

  .model-vs {
    display: none;
  }

  .model-col {
    padding: 36px 28px 32px;
  }

  .model-col-name {
    font-size: 24px;
    margin-bottom: 28px;
  }
}

@media (max-width: 560px) {
  .model-section {
    padding: 72px 20px;
  }

  .model-col {
    padding: 28px 20px 24px;
  }
}

/* ── LEVELS ───────────────────────────────────────── */
.levels-section {
  background: linear-gradient(150deg, #0e1a14 0%, #101814 55%, #121612 100%);
  padding: 160px 64px;
  position: relative;
  overflow: hidden;
}

.levels-section .section-num {
  right: -40px;
  top: -60px;
}

.levels-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.levels-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.levels-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--light);
  margin-bottom: 80px;
  max-width: 700px;
}

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

.levels-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.level-row {
  display: grid;
  grid-template-columns: 80px 200px 1fr auto;
  gap: 0 32px;
  background: #1A1816;
  padding: 32px 40px;
  align-items: center;
  border-left: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}

.level-row:hover {
  background: #1F1D1B;
  border-color: var(--dim-d);
}

.level-row.brain {
  background: #1F1C18;
  border-left: 3px solid var(--gold);
  padding: 48px 40px;
}

.brain-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: right;
  white-space: nowrap;
}

.level-num {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 300;
  color: #4A4644;
  line-height: 1;
  letter-spacing: -0.02em;
}

.level-row.brain .level-num {
  font-size: 56px;
  color: var(--gold);
  font-weight: 400;
}

.level-name {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 400;
  color: #C8C0B8;
  letter-spacing: -0.015em;
}

.level-row.brain .level-name {
  font-size: 40px;
  color: var(--light);
  font-weight: 500;
  font-style: italic;
}

.level-desc {
  font-size: 14px;
  color: #6E6660;
  line-height: 1.6;
  max-width: 400px;
}

.level-row.brain .level-desc {
  font-size: 16px;
  color: var(--muted-d);
}

.level-examples {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--dim-d);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: normal;
}

.levels-payoff {
  margin-top: 64px;
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2.5vw, 34px);
  font-weight: 300;
  font-style: italic;
  color: #8A8480;
  max-width: 760px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.levels-payoff strong {
  color: var(--light);
  font-style: normal;
  font-weight: 400;
}

@media (max-width: 960px) {
  .levels-section {
    padding: 100px 24px;
  }

  .level-row {
    grid-template-columns: 48px 1fr;
    gap: 12px 16px;
    padding: 24px;
    cursor: pointer;
  }

  .brain-tag {
    display: none;
  }

  /* Collapsible descriptions */
  .level-desc {
    grid-column: 1 / -1;
    grid-row: 3;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
    margin-top: 0;
  }

  .level-row.expanded .level-desc {
    max-height: 200px;
    opacity: 1;
    margin-top: 12px;
  }

  /* Chevron indicator — under the number */
  .level-row::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--dim-d);
    border-bottom: 2px solid var(--dim-d);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
  }

  .level-row.expanded::after {
    transform: rotate(-135deg);
  }

  /* Brain row stays always expanded */
  .level-row.brain {
    padding: 36px 20px;
    cursor: default;
  }

  .level-row.brain .level-desc {
    grid-row: 2;
    max-height: 200px;
    opacity: 1;
    margin-top: 12px;
  }

  .level-row.brain::after {
    display: none;
  }

  .levels-h2 {
    letter-spacing: -0.025em;
  }
}

/* ── REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── ANIMATIONS ───────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@keyframes livepulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 960px) {
  nav {
    padding: 20px 24px;
  }

  .hero {
    padding: 100px 24px 60px;
    justify-content: center;
  }

  .hero-h {
    letter-spacing: -0.03em;
  }

  .hero-h .unify {
    font-size: clamp(72px, 18vw, 220px);
  }

  .hero-h .reality {
    font-size: clamp(60px, 15vw, 185px);
  }

  .statement {
    padding: 100px 24px;
    min-height: auto;
  }

  .statement .section-num {
    font-size: 240px;
  }

  .sources-section {
    padding: 100px 24px;
  }

  .sources-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .privacy-section {
    padding: 100px 24px;
  }

  .privacy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-section {
    padding: 100px 24px;
  }

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

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

  .cases-section {
    padding: 100px 24px;
  }

  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-section {
    padding: 100px 24px;
    min-height: auto;
  }

  .cta-section::before {
    display: none;
  }

  .cta-sub-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .cta-actions {
    align-items: flex-start;
  }

  .hero-sub-row {
    flex-direction: column;
    align-items: flex-start;
  }

  footer {
    padding: 22px 24px;
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

@media (max-width: 560px) {
  nav {
    padding: 16px 20px;
  }

  .logo {
    font-size: 16px;
    gap: 8px;
  }

  .logo-icon {
    width: 20px;
  }

  .privacy-grid,
  .cases-grid {
    grid-template-columns: 1fr;
  }

  .section-num {
    display: none;
  }

  .foot-logo {
    font-size: 16px;
    gap: 10px;
  }

  .foot-logo-icon {
    width: 20px;
    opacity: 0.8;
  }
}

/* Stagger delays */
.reveal-d1 {
  transition-delay: 0.1s;
}

.reveal-d2 {
  transition-delay: 0.2s;
}

.reveal-d3 {
  transition-delay: 0.3s;
}

.reveal-d4 {
  transition-delay: 0.4s;
}

.reveal-d5 {
  transition-delay: 0.5s;
}

.reveal-d6 {
  transition-delay: 0.6s;
}

/* Reveal-rise: slower, deeper entrance for section headings */
.reveal-rise {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-rise.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Transform row reveals */
.transform-row {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.transform-row.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Flow step reveals */
.flow-step {
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.flow-step.visible {
  opacity: 1;
  transform: translateX(0);
}

.model-col.brain .flow-step {
  transform: translateX(14px);
}

.model-col.brain .flow-step.visible {
  transform: translateX(0);
}

/* Aye line reveals */
.aye-exchange .aye-line-wrap {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.aye-exchange .aye-line-wrap.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Parallax watermark numbers */
.section-num {
  position: absolute;
  font-family: 'Fraunces', serif;
  font-size: 480px;
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.05em;
  user-select: none;
  z-index: 0;
  will-change: transform;
}

/* Light section watermark color */
.features-section .section-num,
.sources-section .section-num,
.statement .section-num,
.model-section .section-num,
.pricing-section .section-num {
  color: rgba(0, 0, 0, 0.06);
}

/* Dark section watermark color */
.aye-section .section-num,
.cases-section .section-num,
.levels-section .section-num,
.privacy-section .section-num {
  color: rgba(255, 255, 255, 0.02);
}

/* Floating gold orbs (parallax decoration on light sections) */
.float-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 154, 108, 0.18) 0%, rgba(196, 154, 108, 0.04) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  filter: blur(60px);
}


/* ── PRICING ──────────────────────────────────────────────── */
.pricing-section .section-num {
  right: -20px;
  bottom: -80px;
}

.pricing-section {
  background: linear-gradient(165deg, #F4F1ED 0%, #E9E1D5 50%, #F2EDE6 100%);
  padding: 180px 64px;
  position: relative;
  overflow: hidden;
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 20px;
}

.pricing-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--dark);
  margin-bottom: 24px;
}

.pricing-h2 em {
  font-style: italic;
  color: var(--gold-dim);
  font-weight: 400;
}

.pricing-positioning {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 20px;
}

.pricing-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--muted-l);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 72px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  align-items: start;
}

.pricing-card {
  background: #EDEBE6;
  padding: 44px 36px 40px;
  position: relative;
  border-top: 2px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.03);
}

.pricing-card:hover {
  border-color: var(--gold-dim);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.05);
}

.pricing-card.featured {
  background: var(--dark);
  border-top: 2px solid var(--gold);
  padding-top: 52px;
}

.pricing-badge {
  position: absolute;
  top: -1px;
  left: 36px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 4px 10px;
}

.pricing-tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim-l);
  margin-bottom: 16px;
}

.pricing-card.featured .pricing-tier {
  color: var(--gold);
}

.pricing-price {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 4px;
}

.pricing-card.featured .pricing-price {
  color: var(--light);
}

.pricing-freq {
  font-size: 12px;
  color: var(--dim-l);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.pricing-card.featured .pricing-freq {
  color: var(--muted-d);
}

.pricing-tagline {
  font-family: 'Fraunces', serif;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--dark);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-card.featured .pricing-tagline {
  color: var(--light);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.pricing-card.featured .pricing-tagline em {
  font-style: italic;
  color: var(--gold);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.pricing-features li {
  font-size: 13.5px;
  color: var(--muted-l);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

.pricing-features li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
  font-size: 11px;
}

.pricing-features li.dim {
  color: var(--dim-l);
}

.pricing-features li.dim::before {
  color: var(--dim-l);
}

.pricing-card.featured .pricing-features li {
  color: var(--muted-d);
}

.pricing-card.featured .pricing-features li::before {
  color: var(--gold);
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 24px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.pricing-cta.outline {
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  color: var(--dark);
  background: transparent;
}

.pricing-cta.outline:hover {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--light);
}

.pricing-cta.solid {
  background: var(--gold);
  color: var(--dark);
  border: 1.5px solid var(--gold);
}

.pricing-cta.solid:hover {
  background: #d4a87c;
  border-color: #d4a87c;
}

@media (max-width: 960px) {
  .pricing-section {
    padding: 100px 24px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .pricing-card.featured {
    padding-top: 52px;
  }
}

@media (max-width: 560px) {
  .pricing-section {
    padding: 72px 20px;
  }

  .pricing-card {
    padding: 36px 24px 32px;
  }
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-link:hover {
  color: rgba(255, 255, 255, 0.85);
}

.nav-link.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}


/* ══════════════════════════════════════════════
   EFFECT 1 — NOISE GRAIN TEXTURE
══════════════════════════════════════════════ */
.hero::after,
.aye-section::after,
.levels-section::after,
.cases-section::after,
.privacy-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 160px 160px;
  opacity: 0.022;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}

/* Noise grain on light sections (multiply blend for light bg) */
.features-section::after,
.sources-section::after,
.pricing-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 160px 160px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
}

/* Ensure content stays above grain (exclude decorative absolute elements) */
.hero>*:not(#heroCanvas):not(.section-num):not(.float-orb),
.aye-section>*:not(.section-num):not(.float-orb),
.levels-section>*:not(.section-num):not(.float-orb),
.cases-section>*:not(.section-num):not(.float-orb),
.privacy-section>*:not(.section-num):not(.float-orb),
.features-section>*:not(.section-num):not(.float-orb),
.sources-section>*:not(.section-num):not(.float-orb),
.model-section>*:not(.section-num):not(.float-orb),
.pricing-section>*:not(.section-num):not(.float-orb) {
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════════
   EFFECT 2 — GOLD CURSOR GLOW (dark sections)
══════════════════════════════════════════════ */
#cursor-glow {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 154, 108, 0.055) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: opacity 0.4s ease;
  opacity: 0;
  mix-blend-mode: screen;
}

/* ══════════════════════════════════════════════
   EFFECT 3 — MAGNETIC BUTTONS
══════════════════════════════════════════════ */
.nav-cta,
.hero-cta,
.btn-dark,
.pricing-cta.solid {
  transition: background 0.2s, transform 0.12s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.2s;
}

/* ══════════════════════════════════════════════
   EFFECT 4 — MAX CARD GOLD SHIMMER
══════════════════════════════════════════════ */
.pricing-card.featured {
  overflow: hidden;
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -60%;
  width: 50%;
  height: 300%;
  background: linear-gradient(105deg,
      transparent 30%,
      rgba(196, 154, 108, 0.08) 50%,
      transparent 70%);
  transform: skewX(-15deg);
  transition: none;
  pointer-events: none;
  z-index: 2;
}

.pricing-card.featured:hover::before {
  animation: shimmer 0.7s ease forwards;
}

@keyframes shimmer {
  0% {
    left: -60%;
  }

  100% {
    left: 120%;
  }
}

/* ══════════════════════════════════════════════
   EFFECT 5 — FEATURE CARD SCALE-IN
══════════════════════════════════════════════ */
.feat-card {
  transition: background 0.2s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.feat-card.reveal-scale {
  opacity: 0;
  transform: scale(0.97) translateY(12px);
}

.feat-card.reveal-scale.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Case cards scale too */
.case-card {
  transition: border-color 0.25s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.case-card.reveal-scale {
  opacity: 0;
  transform: scale(0.97) translateY(12px);
}

.case-card.reveal-scale.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}


/* ══════════════════════════════════════════════
   HAMBURGER MENU
══════════════════════════════════════════════ */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 201;
  position: relative;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--light);
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

@media (max-width: 760px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 18, 16, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    transform: none;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links .nav-link {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.1em;
  }

  .nav-cta {
    position: relative;
    z-index: 201;
  }
}

@media (max-width: 400px) {
  .nav-cta {
    display: none !important;
  }
}


/* ══════════════════════════════════════════════
   EARLY ACCESS FORM
══════════════════════════════════════════════ */
.early-access-form {
  width: 100%;
}

.form-row {
  display: flex;
  gap: 0;
  max-width: 520px;
}

.ea-input {
  flex: 1;
  padding: 18px 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--dark);
  background: white;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-right: none;
  border-radius: 100px 0 0 100px;
  outline: none;
  transition: border-color 0.2s;
}

.ea-input::placeholder {
  color: var(--dim-l);
}

.ea-input:focus {
  border-color: var(--gold-dim);
}

.ea-submit {
  border-radius: 0 100px 100px 0;
  white-space: nowrap;
  padding: 18px 32px;
}

.form-success {
  font-size: 14px;
  color: var(--d-green);
  margin-top: 12px;
  font-weight: 500;
  display: none;
}

.form-success.show {
  display: block;
}

@media (max-width: 560px) {
  .form-row {
    flex-direction: column;
    gap: 12px;
  }

  .ea-input {
    border-radius: 100px;
    border-right: 1.5px solid rgba(0, 0, 0, 0.12);
  }

  .ea-submit {
    border-radius: 100px;
  }
}