/* ── TruTalk V4 · base: tokens, aurora, cursor, type, nav, buttons, reveals ── */

@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/inter-regular.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/inter-medium.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/inter-semibold.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: italic; font-weight: 400; font-display: swap; src: url('../fonts/inter-italic.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: italic; font-weight: 500; font-display: swap; src: url('../fonts/inter-medium-italic.woff2') format('woff2'); }

:root {
  --ivory: #FAF6F1;
  --ink: #050404;
  --soft: rgba(250,246,241,0.74);
  --softer: rgba(250,246,241,0.60);
  --faint: rgba(250,246,241,0.42);
  --line: rgba(250,246,241,0.10);
  --line-2: rgba(250,246,241,0.18);
  --purple: #7B48FF;
  --purple-glow: #9D7AFF;
  --amber: #FCA631;
  --amber-warm: #FFB957;
  --sans: 'Inter', system-ui, sans-serif;
  --glass: linear-gradient(160deg, rgba(250,246,241,0.075), rgba(250,246,241,0.02));
  --glass-hi: inset 0 1px 0 rgba(255,255,255,0.12);
  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  font-size: 16px;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a.inline { color: var(--amber); text-decoration: underline; text-underline-offset: 3px; }
a.inline:hover { color: var(--amber-warm); }
button { font: inherit; cursor: pointer; }
::selection { background: rgba(252,166,49,0.35); }

/* ═══ KEYBOARD FOCUS — visible on every interactive element (WCAG 2.4.7) ═══ */
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }
/* On amber fills an amber ring is invisible — switch to the dark ink ring */
.btn-amber:focus-visible, .cc-accept:focus-visible, .tt-sticky-cta:focus-visible,
.pill.amber:focus-visible { outline-color: var(--ink); outline-width: 2.5px; }

/* Screen-reader-only (visually hidden but announced) */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.shell { width: 100%; max-width: 1360px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 480px) { .shell { padding: 0 28px; } }
@media (min-width: 768px) { .shell { padding: 0 48px; } }
@media (min-width: 1100px) { .shell { padding: 0 64px; } }

/* ═══ AURORA ═════════════════════════════════════════════ */
.aurora { position: fixed; inset: -25vh -20vw; pointer-events: none; z-index: 0; overflow: hidden; }
/* Fixed full-viewport aurora: soft radial glows anchored to the viewport (NOT scroll-parallaxed),
   so every scroll depth shows an identical ambient field — no travelling glow/ink boundary, i.e.
   seamless by construction. Each stop fades to 0-alpha of its OWN hue (never the `transparent`
   keyword mid-ramp) so there is no grey fringe / edge. Slow drift is translate/scale only. The transparent stops are widened slightly to recover the spread the old blur(110px) gave. Parallax translateY is compositor-only and moves only while scrolling. */
.au { position: absolute; border-radius: 50%; }
.au-amber {
  width: 74vw; height: 74vw; min-width: 720px; min-height: 720px;
  left: -20vw; top: -18vh; opacity: 0.8;
  background: radial-gradient(circle, rgba(252,166,49,0.24) 0%, rgba(214,110,32,0.10) 48%, rgba(214,110,32,0.03) 62%, rgba(214,110,32,0) 76%);
}
.au-purple {
  width: 68vw; height: 68vw; min-width: 660px; min-height: 660px;
  right: -22vw; top: 6vh; opacity: 0.85;
  background: radial-gradient(circle, rgba(123,72,255,0.26) 0%, rgba(83,40,190,0.10) 48%, rgba(83,40,190,0.03) 62%, rgba(83,40,190,0) 76%);
}
.au-ember {
  width: 60vw; height: 60vw; min-width: 580px; min-height: 580px;
  left: 16vw; bottom: -28vh; opacity: 0.7;
  background: radial-gradient(circle, rgba(214,92,26,0.18) 0%, rgba(123,72,255,0.09) 52%, rgba(123,72,255,0.03) 65%, rgba(123,72,255,0) 78%);
}
/* The single "living" layer: one small central core — transform-only, very slow (60s), tiny amplitude, blur ≤ 40px, no will-change. */
.au-core {
  width: 42vw; height: 42vw; min-width: 440px; min-height: 440px;
  left: 30vw; top: 28vh; opacity: 0.55;
  background: radial-gradient(circle, rgba(255,185,87,0.16) 0%, rgba(255,185,87,0.05) 42%, rgba(255,185,87,0) 66%);
  filter: blur(40px);
}
@media (prefers-reduced-motion: no-preference) {
  .au-core { animation: au-core-drift 60s ease-in-out infinite alternate; }
  /* slow glowy flow — translate/scale props only (compositor), painted once, paused when tab hidden */
  .au-amber { animation: au-drift-a 52s ease-in-out infinite alternate; }
  .au-purple { animation: au-drift-b 64s ease-in-out -22s infinite alternate; }
  .au-ember { animation: au-drift-c 76s ease-in-out -38s infinite alternate; }
}
@keyframes au-drift-a { from { translate: 0 0; scale: 1; } to { translate: 3.5vw 3vh; scale: 1.06; } }
@keyframes au-drift-b { from { translate: 0 0; scale: 1; } to { translate: -3vw 4vh; scale: 1.05; } }
@keyframes au-drift-c { from { translate: 0 0; scale: 1; } to { translate: 2.5vw -3vh; scale: 1.04; } }
@keyframes au-core-drift { from { translate: 0 0; scale: 1; } to { translate: 0 -4vh; scale: 1.04; } }
.grain-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: 0.42;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.18 0'/></filter><rect width='220' height='220' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}
.page { position: relative; z-index: 2; }
/* Pause helpers: JS toggles `.anim-paused` on off-screen sections and `.tab-hidden` on <html> when the tab is backgrounded. Descendant + pseudo-element animations included. */
html.tab-hidden *, html.tab-hidden *::before, html.tab-hidden *::after,
.anim-paused, .anim-paused *, .anim-paused *::before, .anim-paused *::after { animation-play-state: paused !important; }

/* ═══ CUSTOM CURSOR (fine pointers) ══════════════════════ */
@media (pointer: fine) {
  .cursor-dot, .cursor-ring { position: fixed; left: 0; top: 0; pointer-events: none; z-index: 200; }
  .cursor-dot {
    width: 6px; height: 6px; margin: -3px 0 0 -3px;
    background: var(--amber); transform: rotate(45deg);
    box-shadow: 0 0 12px rgba(252,166,49,0.8);
  }
  .cursor-ring {
    width: 34px; height: 34px; margin: -17px 0 0 -17px;
    border: 1px solid rgba(252,166,49,0.35); border-radius: 50%;
    transition: transform 200ms var(--ease), border-color 200ms, background 200ms;
  }
  body.cursor-hover .cursor-ring { border-color: rgba(252,166,49,0.7); background: rgba(252,166,49,0.06); }
}
@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ═══ TYPE SYSTEM — Inter only, hard modern scale ════════ */
.hi {
  background: linear-gradient(110deg, var(--amber) 5%, var(--amber-warm) 40%, var(--purple-glow) 80%, var(--amber) 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
/* Static gradient text — was hi-pan animating background-position (full repaint of the text every frame, infinite). */
.hi { background-position: 18% 50%; }
.dim { color: var(--softer); }
.lede { font-size: clamp(16px, 1.6vw, 19px); line-height: 1.65; color: var(--soft); letter-spacing: -0.008em; max-width: 560px; }
.tiny { font-size: 12px; color: var(--softer); letter-spacing: 0.015em; }
.diamond { width: 5px; height: 5px; background: var(--amber); transform: rotate(45deg); display: inline-block; flex-shrink: 0; }

/* chapter eyebrow: ( 01 ) LABEL */
.chap {
  display: inline-flex; align-items: baseline; gap: 14px;
  text-transform: uppercase; letter-spacing: 0.22em; font-size: 11px; font-weight: 500;
  color: var(--softer);
}
.chap .chap-n { font-size: 12px; font-weight: 600; color: var(--amber); letter-spacing: 0.1em; font-variant-numeric: tabular-nums; }
.chap .chap-n::before { content: "( "; color: var(--faint); }
.chap .chap-n::after { content: " )"; color: var(--faint); }
.chap.purple .chap-n { color: var(--purple-glow); }

/* section heading */
.h-chapter {
  font-weight: 600;
  font-size: clamp(36px, 5.8vw, 80px);
  line-height: 1.0; letter-spacing: -0.04em;
  margin: 24px 0 0; text-wrap: balance;
}

.section { padding: clamp(100px, 13vw, 190px) 0; position: relative; }
.section-head { margin-bottom: clamp(48px, 6vw, 88px); }
.section-head .lede { margin-top: 26px; }
.section-head.center { text-align: center; max-width: 900px; margin-left: auto; margin-right: auto; }
.section-head.center .lede { margin: 26px auto 0; }
.hairline-top { border-top: 1px solid var(--line); }

/* ═══ GLASS ══════════════════════════════════════════════ */
.glass {
  background: var(--glass);
  border: 1px solid var(--line-2);
  box-shadow: var(--glass-hi), 0 30px 70px -32px rgba(0,0,0,0.75);
  backdrop-filter: blur(10px) saturate(135%);
  -webkit-backdrop-filter: blur(10px) saturate(135%);
  border-radius: 26px;
  position: relative;
}

/* ═══ BUTTONS ════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 28px; border-radius: 999px; font-size: 15px; font-weight: 500;
  letter-spacing: -0.005em; border: 0; white-space: nowrap; position: relative; overflow: hidden;
  transition: transform 240ms var(--ease), box-shadow 240ms, background 240ms, color 240ms;
}
.btn .arr { transition: transform 220ms var(--ease); }
.btn:hover .arr { transform: translateX(3px); }
.btn-amber { background: linear-gradient(180deg, var(--amber-warm), var(--amber)); color: var(--ink); box-shadow: 0 0 0 1px rgba(252,166,49,0.4), 0 14px 38px -8px rgba(252,166,49,0.5); }
.btn-amber:hover { box-shadow: 0 0 0 1px rgba(252,166,49,0.55), 0 24px 52px -8px rgba(252,166,49,0.7); }
.btn-purple { background: linear-gradient(180deg, var(--purple-glow), var(--purple)); color: #fff; box-shadow: 0 0 0 1px rgba(123,72,255,0.5), 0 14px 38px -8px rgba(123,72,255,0.55); }
.btn-purple:hover { box-shadow: 0 0 0 1px rgba(123,72,255,0.6), 0 24px 52px -8px rgba(123,72,255,0.75); }
.btn-ghost { background: rgba(28,24,22,0.55); color: var(--ivory); border: 1px solid var(--line-2); box-shadow: var(--glass-hi); }
.btn-ghost:hover { background: rgba(40,35,32,0.7); border-color: rgba(250,246,241,0.28); }
.btn-lg { padding: 19px 34px; font-size: 16px; }
.btn-sm { padding: 9px 17px; font-size: 13px; }
@media (prefers-reduced-motion: no-preference) {
  .btn-lg.btn-amber::after, .btn-lg.btn-purple::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
    transform: translateX(-130%);
    animation: btn-sheen 5s var(--ease) infinite;
  }
  @keyframes btn-sheen { 0%, 64% { transform: translateX(-130%); } 84%, 100% { transform: translateX(130%); } }
}
.pill { display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px; border-radius: 999px; background: rgba(250,246,241,0.06); border: 1px solid var(--line-2); font-size: 12px; font-weight: 500; color: var(--soft); }
.pill.amber { background: rgba(252,166,49,0.12); border-color: rgba(252,166,49,0.4); color: var(--amber); }
.pill.purple { background: rgba(123,72,255,0.13); border-color: rgba(123,72,255,0.4); color: var(--purple-glow); }
.pill-tiny { font-size: 11px; padding: 4px 9px; letter-spacing: 0.05em; text-transform: uppercase; }

/* ═══ TOUCH TARGETS — ≥44px on coarse pointers (WCAG 2.5.5) ═══ */
@media (pointer: coarse) {
  .nav-links a { padding-top: 12px; padding-bottom: 12px; }
  .btn-sm { padding: 12px 18px; }
  .cc-btn { min-height: 44px; }
  .ft-cols a { padding: 11px 0; }
  .ft-social { width: 44px; height: 44px; }
}

/* ═══ NAV — minimal hairline bar ═════════════════════════ */
.topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background 350ms, border-color 350ms;
  border-bottom: 1px solid transparent;
}
.topnav.scrolled {
  background: rgba(5,4,4,0.82);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border-bottom-color: var(--line);
}
.topnav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 20px; padding-bottom: 20px; position: relative; }
.topnav.scrolled .topnav-inner { padding-top: 14px; padding-bottom: 14px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img.wordmark { height: 22px; width: auto; }
.nav-links { display: none; gap: 6px; position: absolute; left: 50%; transform: translateX(-50%); }
@media (min-width: 1020px) { .nav-links { display: inline-flex; } }
.nav-links a {
  color: var(--softer); font-size: 13.5px; font-weight: 500; padding: 8px 13px;
  transition: color 180ms; position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 1px;
  background: var(--amber); transform: scaleX(0); transform-origin: left;
  transition: transform 260ms var(--ease);
}
.nav-links a:hover { color: var(--ivory); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--ivory); }
.nav-cta { display: inline-flex; align-items: center; gap: 10px; }
@media (max-width: 1019px) { .nav-cta-desk { display: none; } }
.nav-hamburger {
  display: inline-flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 42px; height: 42px; padding: 0;
  background: rgba(250,246,241,0.05); border: 1px solid var(--line-2); border-radius: 999px;
}
.nav-hamburger .hb-bar { display: block; width: 15px; height: 1.5px; background: var(--ivory); border-radius: 1px; transition: transform 220ms var(--ease), opacity 180ms; }
.topnav.menu-open .hb-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.topnav.menu-open .hb-bar:nth-child(2) { opacity: 0; }
.topnav.menu-open .hb-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (min-width: 1020px) { .nav-hamburger { display: none; } }
.mobile-menu { position: fixed; inset: 0; z-index: 55; background: rgba(5,4,4,0.92); backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px); padding-top: 100px; overflow-y: auto; display: none; }
.mobile-menu.open { display: block; animation: mm-fade 240ms ease-out; }
@keyframes mm-fade { from { opacity: 0; } to { opacity: 1; } }

/* ═══ COOKIE CONSENT ═════════════════════════════════════ */
.cc-banner { position: fixed; left: 50%; bottom: 20px; transform: translateX(-50%) translateY(150%); z-index: 200; width: min(730px, calc(100vw - 32px)); opacity: 0; transition: transform 360ms cubic-bezier(.2,.7,.2,1), opacity 360ms; }
.cc-banner.cc-in { transform: translateX(-50%) translateY(0); opacity: 1; }
.cc-banner.cc-out { transform: translateX(-50%) translateY(150%); opacity: 0; }
.cc-inner { display: flex; flex-direction: column; gap: 16px; padding: 20px 22px; border-radius: 18px; background: rgba(16,14,13,0.94); border: 1px solid var(--line-2); box-shadow: 0 24px 64px -20px rgba(0,0,0,0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
@media (min-width: 660px) { .cc-inner { flex-direction: row; align-items: center; } }
.cc-title { margin: 0 0 4px; font-size: 13px; font-weight: 600; letter-spacing: -0.01em; color: var(--ivory); }
.cc-body { margin: 0; font-size: 12.5px; line-height: 1.55; color: var(--softer); }
.cc-body a { color: var(--amber); text-decoration: underline; text-underline-offset: 2px; }
.cc-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cc-btn { min-height: 42px; padding: 10px 18px; border-radius: 999px; font-size: 13px; font-weight: 600; cursor: pointer; white-space: nowrap; border: 1px solid transparent; transition: background 180ms, border-color 180ms, color 180ms, box-shadow 180ms; }
.cc-ghost { background: transparent; border-color: var(--line-2); color: var(--soft); }
.cc-ghost:hover { color: var(--ivory); border-color: rgba(250,246,241,0.4); }
.cc-accept { background: linear-gradient(180deg, var(--amber-warm), var(--amber)); color: #241a08; box-shadow: 0 0 0 1px rgba(252,166,49,0.4); }
.cc-accept:hover { box-shadow: 0 0 0 1px rgba(252,166,49,0.6), 0 10px 24px -8px rgba(252,166,49,0.6); }
@media (prefers-reduced-motion: reduce) { .cc-banner, .cc-banner.cc-out { transform: translateX(-50%); transition: opacity 200ms; } }
.mobile-menu-inner { padding: 12px 28px 56px; display: flex; flex-direction: column; max-width: 560px; margin: 0 auto; }
.mobile-menu-inner a {
  display: flex; align-items: baseline; gap: 16px;
  padding: 18px 4px; border-bottom: 1px solid var(--line);
  font-size: 28px; font-weight: 600; letter-spacing: -0.03em;
}
.mobile-menu-inner a .mm-n { font-size: 12px; font-weight: 500; color: var(--amber); letter-spacing: 0.08em; }
.mobile-menu-inner a:hover { color: var(--amber); }
.mobile-menu-cta { margin-top: 30px; }
.mobile-menu-cta .btn { width: 100%; }

/* ═══ REVEALS ════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 750ms var(--ease-out), transform 750ms var(--ease-out);
  transition-delay: var(--d, 0ms);
}
[data-reveal].in { opacity: 1; transform: none; }
/* line reveal: clipped slide-up — padding keeps ascenders/descenders unclipped */
.lr { display: block; overflow: hidden; padding: 0.1em 0 0.14em; margin: -0.1em 0 -0.14em; }
.lr > span { display: block; transform: translateY(130%); transition: transform 850ms var(--ease-out); transition-delay: var(--d, 0ms); }
.lr.in > span { transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal], .lr > span { opacity: 1; transform: none; filter: none; transition: none; }
}

/* ═══ TICKER (text marquee) ══════════════════════════════ */
.ticker { overflow: hidden; width: 100%; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ticker-track { display: flex; width: max-content; }
@media (prefers-reduced-motion: no-preference) {
  .ticker-track { animation: tk-scroll var(--tk-dur, 60s) linear infinite; }
  .ticker.reverse .ticker-track { animation-direction: reverse; }
}
@keyframes tk-scroll { from { transform: translateX(0); } to { transform: translateX(-33.3333%); } }
.ticker-item {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 34px; padding: 18px 17px;
  font-size: clamp(13px, 1.5vw, 16px); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--softer); white-space: nowrap;
}
.ticker-item .diamond { opacity: 0.7; }

/* ═══ IMAGE MARQUEE ══════════════════════════════════════ */
.marquee { overflow: hidden; width: 100%; position: relative; }
/* Edge fades via a real mask: the strip dissolves to true transparency so the
   aurora background shows through — no opaque overlay, no visible seam. */
.marquee { -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%); }
.marquee-track { display: flex; width: max-content; will-change: transform; }
.marquee-track > * { margin-right: 26px; }
/* Phone-mockup marquees only: reserve vertical headroom inside the clipped,
   masked box so the hover lift+scale on a .shot-frame isn't cut off up top.
   Text tickers (no .shot-frame) are unaffected. */
.marquee:has(.shot-frame) { padding-top: 26px; padding-bottom: 12px; }
@media (prefers-reduced-motion: no-preference) {
  .marquee-track { animation: mq-scroll var(--mq-dur, 40s) linear infinite; }
  .marquee:hover .marquee-track { animation-play-state: paused; }
}
@keyframes mq-scroll { from { transform: translateX(0); } to { transform: translateX(-33.3333%); } }

/* ═══ FOOTER ═════════════════════════════════════════════ */
.ft { border-top: 1px solid var(--line); padding: 90px 0 40px; position: relative; overflow: clip; }
.ft-giant {
  font-weight: 600;
  font-size: clamp(64px, 14vw, 230px); line-height: 0.85; letter-spacing: -0.05em;
  color: transparent; -webkit-text-stroke: 1px rgba(250,246,241,0.13);
  margin: 0 0 70px; user-select: none; white-space: nowrap;
}
.ft-giant .fg-fill { color: rgba(252,166,49,0.85); -webkit-text-stroke: 0; }
.ft-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 880px) { .ft-grid { grid-template-columns: 1.2fr 2fr; gap: 64px; } }
.ft-tag { font-size: 16px; font-weight: 500; color: var(--ivory); max-width: 320px; margin: 18px 0 0; line-height: 1.4; }
.ft-sub { font-size: 13px; color: var(--soft); max-width: 320px; margin: 14px 0 0; line-height: 1.5; }
.ft-social-row { display: flex; gap: 12px; margin-top: 24px; }
.ft-social { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--soft); transition: all 160ms; }
.ft-social:hover { color: var(--ivory); border-color: var(--amber); background: rgba(252,166,49,0.08); }
.ft-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
@media (min-width: 640px) { .ft-cols { grid-template-columns: repeat(4, 1fr); } }
.ft-h { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--softer); font-weight: 600; margin-bottom: 16px; }
.ft-cols a { display: block; font-size: 14px; color: var(--soft); padding: 6px 0; transition: color 160ms; }
.ft-cols a:hover { color: var(--amber); }
.ft-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; margin-top: 70px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--softer); }

/* ═══ STICKY MOBILE CTA ══════════════════════════════════ */
.tt-sticky-cta {
  position: fixed; left: 50%; bottom: 18px; z-index: 50;
  transform: translateX(-50%) translateY(80px);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 999px;
  background: linear-gradient(180deg, var(--amber-warm), var(--amber));
  color: var(--ink); font-size: 14px; font-weight: 600;
  box-shadow: 0 0 0 1px rgba(252,166,49,0.45), 0 16px 40px -10px rgba(252,166,49,0.6);
  opacity: 0; pointer-events: none;
  transition: transform 350ms var(--ease), opacity 300ms;
}
.tt-sticky-cta.is-visible { transform: translateX(-50%) translateY(0); opacity: 1; pointer-events: auto; }
@media (min-width: 760px) { .tt-sticky-cta { display: none; } }

/* ═══ MOBILE OPTIMISATION — shared rhythm & footer ═══════ */
@media (max-width: 768px) {
  .section { padding: clamp(64px, 11vw, 96px) 0; }
  .section-head { margin-bottom: clamp(34px, 8vw, 56px); }
  .btn-lg { padding: 16px 26px; font-size: 15px; }
  .lede { font-size: 16px; line-height: 1.6; }
}
@media (max-width: 640px) {
  .ft { padding: 64px 0 40px; }
  .ft-giant { margin-bottom: 44px; }
  .ft-grid { gap: 40px; }
  .ft-bottom { margin-top: 44px; gap: 8px; }
  /* room for the sticky CTA above the footer edge */
  .ft-bottom { padding-bottom: 8px; }
}
