/* ============================================================
   27 AI landing page — styles.css
   Brand SSOT: ~/20seven/brand/DESIGN.md
   - Founders Grotesk Text (wordmark) / General Sans (symbol)
   - Clash Grotesk (body) / DM Serif Display Italic (display)
   - Monochrome + one accent per surface (Signal Orange on light,
     Acid Lime on dark, Electric Cyan as AI accent)
   - Slash `/` is the brand glyph (never accent-painted on logos)
   ============================================================ */

:root {
  --black: #000;
  --white: #fff;
  --grey:  #999;
  --grey-22: #1a1a1a;
  --grey-33: #333;
  --grey-44: #444;
  --light:  #f5f5f5;
  --rule:   #e5e5e5;

  --a-light: #ff5a1f;   /* Signal Orange — light bg */
  --a-dark:  #d4ff00;   /* Acid Lime — dark bg */
  --a-cyan:  #00c2ff;   /* Electric Cyan — AI accent */
  --a:       var(--a-light);

  --claude-coral: #d97757;   /* Anthropic coral */

  /* Brand-correct font stacks — DESIGN.md §3 */
  --f-wordmark: "Founders Grotesk Text","Test Founders Grotesk Text","Founders Grotesk","General Sans",system-ui,sans-serif;
  --f-symbol:   "General Sans","Clash Grotesk",system-ui,sans-serif;
  --f-body:     "Clash Grotesk","General Sans",system-ui,-apple-system,sans-serif;
  --f-display:  "DM Serif Display","Didot","Didot LT STD","Bodoni 72",Georgia,serif;

  --pad-x: clamp(20px, 5vw, 96px);
  --ease: cubic-bezier(.2,.6,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  color: var(--black);
  background: var(--white);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
strong, b { font-weight: 500; }
em { font-style: italic; }
img, svg { max-width: 100%; display: block; }

/* ============================================================
   FRAME
   ============================================================ */
.frame {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(72px, 10vw, 160px) var(--pad-x);
  position: relative;
}

/* ============================================================
   NAV  — transparent over hero, solid on scroll
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px var(--pad-x);
  background: transparent;
  color: var(--white);
  transition: background .2s var(--ease), padding .2s var(--ease), backdrop-filter .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.nav-scrolled {
  padding: 12px var(--pad-x);
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(255,255,255,.08);
}

/* Wordmark — brand-correct stack: slash + symbol + italic descriptor */
.wordmark {
  font-family: var(--f-symbol);
  font-weight: 600;
  letter-spacing: -0.5px;
  font-size: 24px;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  color: inherit;
}
.wordmark .slash {
  color: var(--a-light);
  font-family: var(--f-symbol);
  padding-right: 2px;
}
.nav.nav-scrolled .wordmark .slash { color: var(--a-light); }
.wm-num {
  font-family: var(--f-symbol);
}
.wm-sub {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 0;
  margin-left: 2px;
}
/* Hero (dark) defaults: white text, lime slash */
.nav:not(.nav-scrolled) .wordmark .slash { color: var(--a-dark); }
.nav:not(.nav-scrolled) { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 32px);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.nav-links a {
  color: rgba(255,255,255,.7);
  transition: color .15s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav.nav-scrolled .nav-links a { color: rgba(255,255,255,.7); }
.nav.nav-scrolled .nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--a-dark);
  color: var(--black) !important;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: transform .12s var(--ease), background .12s var(--ease);
}
.nav-cta:hover { background: var(--a-cyan); transform: translateY(-1px); }
.nav.nav-scrolled .nav-cta { background: var(--a-dark); color: var(--black) !important; }

/* ============================================================
   EYEBROWS + SECTION TITLES
   ============================================================ */
.eyebrow {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 24px;
}
.eyebrow .slash { color: var(--a-light); padding-right: 6px; }
.eyebrow.dark { color: rgba(255,255,255,.55); }
.eyebrow.dark .slash { color: var(--a-dark); }

.section-title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  max-width: 22ch;
}
.section-title.light { color: var(--white); }
.section-dek {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--grey-33);
  max-width: 60ch;
  margin-bottom: 56px;
}
.section-dek.light { color: rgba(255,255,255,.7); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  --a: var(--a-dark);
  overflow: hidden;
  isolation: isolate;
}
.hero-frame {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(120px, 14vw, 200px) var(--pad-x) clamp(96px, 12vw, 160px);
}

/* Layered background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
}
.hero-orb-a {
  width: 560px; height: 560px;
  left: -120px; top: -80px;
  background: radial-gradient(circle, var(--claude-coral) 0%, transparent 65%);
}
.hero-orb-b {
  width: 720px; height: 720px;
  right: -200px; bottom: -260px;
  background: radial-gradient(circle, var(--a-cyan) 0%, transparent 65%);
  opacity: .35;
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' /><feColorMatrix values='0 0 0 0 1   0 0 0 0 1   0 0 0 0 1   0 0 0 0.6 0' /></filter><rect width='100%' height='100%' filter='url(%23n)' /></svg>");
}

/* Floating chat tiles */
.hero-tiles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-tile {
  position: absolute;
  width: 320px;
  padding: 16px 18px;
  background: rgba(20,20,20,.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,.45);
  font-size: 14px;
  color: rgba(255,255,255,.9);
  animation: float 8s ease-in-out infinite;
}
.hero-tile .tile-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-family: var(--f-symbol);
  font-size: 12px;
  text-transform: lowercase;
  letter-spacing: 0.4px;
  color: rgba(255,255,255,.7);
}
.hero-tile .tile-mark { color: var(--a-dark); font-weight: 600; }
.hero-tile .tile-name { font-weight: 500; }
.hero-tile .tile-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--a-dark);
  margin-left: auto;
  box-shadow: 0 0 10px var(--a-dark);
  animation: pulse 1.6s ease-in-out infinite;
}
.hero-tile .tile-dot-cyan { background: var(--a-cyan); box-shadow: 0 0 10px var(--a-cyan); }
.hero-tile .tile-dot-orange { background: var(--a-light); box-shadow: 0 0 10px var(--a-light); }
.hero-tile .tile-body { line-height: 1.45; }
.hero-tile .tile-body em {
  color: var(--a-dark);
  font-family: var(--f-display);
  font-style: italic;
}

.tile-1 { top: 14%; right: 6%; animation-delay: 0s; transform: rotate(2deg); }
.tile-2 { top: 42%; right: 14%; animation-delay: -2.5s; transform: rotate(-1.5deg); }
.tile-3 { top: 64%; right: 4%; animation-delay: -5s; transform: rotate(1deg); }

@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}

@media (max-width: 1100px) {
  .hero-tiles { display: none; }
}

/* Hero badge — Claude partner mark */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  letter-spacing: 0.2px;
  margin-bottom: 36px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-badge .badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--a-dark);
  box-shadow: 0 0 8px var(--a-dark);
}
.hero-badge .badge-text { color: rgba(255,255,255,.7); }
.hero-badge .badge-text + .badge-text {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
}
.hero-badge .claude-mark {
  width: 18px; height: 18px;
  margin-left: 2px;
}

.hero .display {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(52px, 8.4vw, 120px);
  line-height: 1;
  letter-spacing: -1.5px;
  margin-bottom: 32px;
  max-width: 14ch;
}
.hero .display em {
  font-style: italic;
  color: var(--a-dark);
}
.lede {
  font-family: var(--f-body);
  font-size: clamp(18px, 1.6vw, 22px);
  color: rgba(255, 255, 255, .8);
  max-width: 56ch;
  margin-bottom: 40px;
  line-height: 1.5;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}
.hero-foot {
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  max-width: 56ch;
  margin-top: 24px;
}
.hero-link {
  color: var(--a-cyan);
  border-bottom: 1px solid currentColor;
}

/* Hero marquee */
.hero-marquee {
  margin-top: 8px;
  margin-bottom: 16px;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
}
.marquee-track {
  display: inline-flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--f-symbol);
  font-size: 14px;
  text-transform: lowercase;
  letter-spacing: 0.4px;
  color: rgba(255,255,255,.65);
  padding-left: 48px;
}
.marquee-track .slash { color: var(--a-dark); padding-right: 6px; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  border: 0;
  transition: transform .12s var(--ease), background .12s var(--ease), color .12s var(--ease), box-shadow .12s var(--ease);
  text-align: center;
  letter-spacing: 0.2px;
}
.btn-primary {
  background: var(--a-dark);
  color: var(--black);
  box-shadow: 0 10px 30px rgba(212,255,0,.18);
}
.btn-primary:hover { background: var(--a-cyan); transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,194,255,.22); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .35);
}
.btn-ghost:hover { border-color: var(--white); transform: translateY(-1px); }

.outcomes .btn-primary,
.format .btn-primary {
  background: var(--a-light);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(255,90,31,.18);
}
.outcomes .btn-primary:hover,
.format .btn-primary:hover { background: var(--black); color: var(--white); }

/* ============================================================
   OUTCOMES
   ============================================================ */
.outcomes { background: var(--white); }
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}
.outcome-card {
  background: var(--white);
  padding: 40px 32px 36px;
  transition: background .15s var(--ease);
  position: relative;
}
.outcome-card:hover { background: var(--light); }
.outcome-card-accent { background: var(--black); color: var(--white); }
.outcome-card-accent:hover { background: var(--grey-22); }

.outcome-stat {
  font-family: var(--f-symbol);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 28px;
}
.outcome-card .outcome-stat .slash { color: var(--a-light); padding-right: 4px; }
.outcome-card-accent .outcome-stat .slash { color: var(--a-dark); }
.outcome-card-accent .outcome-stat { color: rgba(255,255,255,.65); }

.outcome-card h3 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.4px;
}
.outcome-card h3 em { color: var(--a-light); }
.outcome-card-accent h3 em { color: var(--a-dark); }
.outcome-card p {
  color: var(--grey-33);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 38ch;
}
.outcome-card-accent p { color: rgba(255,255,255,.78); }

/* ============================================================
   MODULES (dark)
   ============================================================ */
.modules {
  background: var(--black);
  color: var(--white);
  position: relative;
  --a: var(--a-dark);
}
.modules::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 80% 10%, rgba(217,119,87,.18), transparent 70%),
              radial-gradient(ellipse 40% 30% at 10% 90%, rgba(212,255,0,.08), transparent 70%);
  pointer-events: none;
}
.modules .frame { position: relative; z-index: 1; }

.module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.module-card {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.1);
  padding: 36px 32px;
  border-radius: 6px;
  transition: border-color .15s var(--ease), transform .15s var(--ease), background .15s var(--ease);
}
.module-card:hover {
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.045);
  transform: translateY(-2px);
}
.module-card-feature {
  background: linear-gradient(135deg, rgba(217,119,87,.18) 0%, rgba(255,90,31,.06) 100%);
  border-color: rgba(217,119,87,.35);
}
.module-card-feature:hover { border-color: rgba(217,119,87,.55); }

.module-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.module-num {
  font-family: var(--f-symbol);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.module-num .slash { color: var(--a-dark); padding-right: 4px; }
.module-tag {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.18);
  padding: 4px 10px;
  border-radius: 999px;
}
.module-tag.tag-accent {
  color: var(--black);
  background: var(--a-dark);
  border-color: var(--a-dark);
}

.module-card h3 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.05;
  margin-bottom: 10px;
  letter-spacing: -0.4px;
  color: var(--white);
}
.module-dek {
  color: rgba(255,255,255,.65);
  font-size: 16px;
  margin-bottom: 22px;
  font-style: italic;
  font-family: var(--f-body);
}
.module-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.module-card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 15px;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
}
.module-card li::before {
  content: "/";
  position: absolute;
  left: 0;
  color: var(--a-dark);
  font-family: var(--f-symbol);
  font-weight: 600;
}
.module-card li strong {
  color: var(--white);
  font-weight: 600;
}

/* ============================================================
   FORMAT
   ============================================================ */
.format { background: var(--light); }
.format-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 8px;
}
.format-cell {
  background: var(--white);
  padding: 48px 40px;
  transition: background .15s var(--ease);
}
.format-cell:hover { background: var(--light); }

.format-stat {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(56px, 5vw, 88px);
  line-height: 1;
  color: var(--a-light);
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}
.format-stat-unit {
  font-family: var(--f-body);
  font-style: normal;
  font-size: 22px;
  color: var(--grey);
  margin-left: 6px;
  letter-spacing: 0;
}
.format-cell h3 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
  color: var(--black);
}
.format-cell p {
  color: var(--grey-33);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 44ch;
}

/* ============================================================
   PROOF
   ============================================================ */
.proof {
  background: var(--black);
  color: var(--white);
  --a: var(--a-dark);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 48px;
}
.proof-stat {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1;
  color: var(--a-dark);
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.proof p {
  color: rgba(255, 255, 255, .75);
  font-size: 16px;
  max-width: 28ch;
  line-height: 1.55;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--black);
  color: var(--white);
  --a: var(--a-dark);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 90% 0%, rgba(0,194,255,.12), transparent 60%);
  pointer-events: none;
}
.contact .frame { position: relative; z-index: 1; }
.contact .eyebrow { color: rgba(255,255,255,.55); }
.contact .eyebrow .slash { color: var(--a-dark); }
.contact .section-title { color: var(--white); }
.contact-dek {
  color: rgba(255, 255, 255, .75);
  max-width: 56ch;
  margin-bottom: 48px;
  font-size: 17px;
}
.lead-form {
  display: grid;
  gap: 20px;
  max-width: 720px;
}
.lead-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  background: rgba(255, 255, 255, .04);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 14px 16px;
  font-family: var(--f-body);
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  border-radius: 4px;
  outline: none;
  transition: border-color .12s var(--ease), background .12s var(--ease);
}
.lead-form input::placeholder,
.lead-form textarea::placeholder { color: rgba(255, 255, 255, .35); }
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--a-cyan);
  background: rgba(0, 194, 255, .06);
}
.lead-form select option { color: var(--black); }
.lead-form textarea {
  resize: vertical;
  min-height: 120px;
}
.btn-submit {
  justify-self: start;
  margin-top: 8px;
  background: var(--a-dark);
  color: var(--black);
}
.btn-submit:hover { background: var(--a-cyan); color: var(--black); }
.form-status {
  font-size: 14px;
  margin-top: 8px;
  min-height: 1.5em;
}
.form-status.sending { color: rgba(255, 255, 255, .65); }
.form-status.ok      { color: var(--a-dark); }
.form-status.err     { color: #ff7a5a; }

/* Honeypot */
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.footer-frame {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}
.wordmark-foot { color: var(--white); font-size: 22px; }
.wordmark-foot .slash { color: var(--a-dark); }
.foot-tag {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  margin-top: 6px;
  font-family: var(--f-body);
}
.foot-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
}
.foot-links a:hover { color: var(--a-cyan); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .outcome-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .outcome-grid,
  .module-grid,
  .format-grid,
  .proof-grid { grid-template-columns: 1fr; }
  .lead-form .row { grid-template-columns: 1fr; }
  .hero .display { font-size: clamp(40px, 11vw, 72px); }
  .footer-frame { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .hero-tile,
  .hero-tile .tile-dot,
  .marquee-track { animation: none; }
  * { transition: none !important; }
}
