/* =========================================================
   Subscrr — light / fresh (family.co · rainbow.me vibe)
   ========================================================= */
:root {
  --orange: #FF4000;
  --orange-soft: #FF6033;
  --peri: #aec4f7;
  --peri-ink: #4c63c7;
  --ink: #1a1712;
  --ink-2: #14141a;
  --muted: #7c766c;
  --bg: #f4f2ec;          /* warm paper */
  --bg-2: #eae6dc;
  --peri-panel: #e6ecfb;  /* soft periwinkle */
  --card: #ffffff;
  --line: rgba(26, 23, 18, 0.1);
  --shadow-sm: 0 4px 16px -6px rgba(30, 28, 24, 0.16);
  --shadow: 0 26px 60px -28px rgba(38, 34, 28, 0.34);
  --shadow-lg: 0 50px 110px -40px rgba(38, 34, 28, 0.42);
  --wrap: 1320px;
  --pad: clamp(20px, 5vw, 84px);
  --r: 26px;
  --r-lg: 40px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Inter Tight", var(--font);
}

* { box-sizing: border-box; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.6;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--display); font-weight: 800; line-height: 0.98; letter-spacing: -0.035em; margin: 0; }
em { font-style: normal; color: var(--orange); }
section { position: relative; z-index: 2; }

/* ============ Light mesh gradient + grain ============ */
#gl { position: fixed; inset: 0; width: 100vw; height: 100vh; z-index: 0; pointer-events: none; }
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.35; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* ============ Custom cursor ============ */
.cursor {
  position: fixed; top: 0; left: 0; width: 32px; height: 32px;
  border: 1.5px solid var(--ink); border-radius: 50%;
  transform: translate(-50%, -50%); pointer-events: none; z-index: 9999;
  transition: width 0.35s var(--spring), height 0.35s var(--spring),
    background 0.3s var(--ease), opacity 0.3s, border-color 0.3s;
}
.cursor span { position: absolute; inset: 0; margin: auto; width: 4px; height: 4px; border-radius: 50%; background: var(--ink); transition: opacity 0.3s; }
.cursor.is-hover { width: 66px; height: 66px; background: var(--orange); border-color: var(--orange); }
.cursor.is-hover span { opacity: 0; }
body.has-cursor, body.has-cursor a, body.has-cursor button, body.has-cursor summary { cursor: none; }

/* ============ Preloader ============ */
.loader { position: fixed; inset: 0; z-index: 9000; background: var(--bg); display: grid; place-content: center; gap: 24px; transition: opacity 0.8s var(--ease), visibility 0.8s; }
.loader.done { opacity: 0; visibility: hidden; }
.loader__word { font-family: var(--display); font-weight: 900; font-size: clamp(44px, 9vw, 120px); letter-spacing: -0.05em; color: var(--orange); display: flex; overflow: hidden; }
.loader__word span { transform: translateY(110%); animation: loadUp 0.7s var(--spring) forwards; }
.loader__word span:nth-child(1){animation-delay:.02s}.loader__word span:nth-child(2){animation-delay:.06s}.loader__word span:nth-child(3){animation-delay:.10s}.loader__word span:nth-child(4){animation-delay:.14s}.loader__word span:nth-child(5){animation-delay:.18s}.loader__word span:nth-child(6){animation-delay:.22s}.loader__word span:nth-child(7){animation-delay:.26s}
@keyframes loadUp { to { transform: translateY(0); } }

/* ============ Buttons ============ */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font); font-weight: 600; font-size: 15px;
  padding: 15px 26px; border-radius: 100px; border: 1.5px solid transparent;
  overflow: hidden; isolation: isolate;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.3s var(--spring), box-shadow 0.3s var(--ease);
}
.btn span { position: relative; z-index: 2; }
.btn::before { content: ""; position: absolute; inset: 0; z-index: 1; transform: scaleY(0); transform-origin: bottom; transition: transform 0.5s var(--ease); }
.btn:hover::before { transform: scaleY(1); }
.btn:active { transform: scale(0.96); }
.btn--solid { background: var(--orange); color: #fff; box-shadow: 0 12px 26px -12px rgba(255, 64, 0, 0.7); }
.btn--solid::before { background: var(--ink); }
.btn--solid:hover { color: #fff; }
.btn--ghost { border-color: var(--line); color: var(--ink); background: var(--card); }
.btn--ghost::before { background: var(--ink); }
.btn--ghost:hover { color: var(--bg); border-color: var(--ink); }
.btn--dark { background: var(--ink); color: var(--bg); }
.btn--dark::before { background: #fff; }
.btn--dark:hover { color: var(--ink); }
.btn--sm { padding: 11px 20px; font-size: 14px; }
.btn--lg { padding: 18px 34px; font-size: 16px; }
.btn--block { width: 100%; }

/* ============ Nav ============ */
.nav { position: fixed; top: 14px; left: 50%; transform: translateX(-50%); z-index: 100; width: calc(100% - 28px); max-width: var(--wrap); display: flex; align-items: center; gap: 24px; padding: 12px 12px 12px 22px; border-radius: 100px; transition: transform 0.5s var(--ease), background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s; }
.nav.is-scrolled { background: rgba(255, 255, 255, 0.72); backdrop-filter: blur(18px) saturate(160%); box-shadow: var(--shadow-sm); }
.nav.is-hidden { transform: translateX(-50%) translateY(-140%); }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; font-size: 19px; letter-spacing: -0.03em; }
.brand img { width: 26px; height: 26px; border-radius: 8px; }
.nav__links { display: flex; gap: 28px; margin-left: auto; font-size: 14px; font-weight: 500; color: var(--muted); }
.nav__links a { position: relative; transition: color 0.3s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1.5px; background: var(--orange); transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--ease); }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ============ Hero ============ */
.hero { min-height: 100svh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(20px, 4vw, 60px); padding: 150px var(--pad) 80px; max-width: var(--wrap); margin-inline: auto; }
.tagline { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; letter-spacing: 0.02em; color: var(--peri-ink); text-transform: uppercase; margin-bottom: clamp(20px, 4vh, 34px); }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(255, 64, 0, 0.18); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 9px rgba(255, 64, 0, 0); } }
.hero__title { font-size: clamp(44px, 6.6vw, 104px); font-weight: 900; letter-spacing: -0.05em; line-height: 0.94; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; }
.hero__lead { max-width: 460px; color: var(--muted); font-size: clamp(16px, 1.2vw, 19px); margin: clamp(22px, 4vh, 34px) 0 0; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

/* hero stage */
.hero__stage { position: relative; display: flex; justify-content: center; align-items: center; min-height: 60vh; }
.hero__device { position: relative; width: min(78%, 440px); border-radius: 34px; transform-style: preserve-3d; will-change: transform; }
.hero__frame { border-radius: 30px; overflow: hidden; box-shadow: var(--shadow-lg); background: #000; aspect-ratio: 3 / 4; }
.hero__video { width: 100%; height: 100%; object-fit: cover; }
.glass { position: absolute; background: rgba(255, 255, 255, 0.72); backdrop-filter: blur(14px) saturate(150%); border: 1px solid rgba(255,255,255,0.7); border-radius: 20px; padding: 14px 18px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 3px; animation: bob 6s ease-in-out infinite; }
.glass__k { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 600; }
.glass__v { font-family: var(--display); font-weight: 800; font-size: 26px; letter-spacing: -0.03em; color: var(--orange); }
.glass__v small { font-size: 13px; color: var(--muted); font-weight: 600; }
.glass__v--peri { color: var(--peri-ink); }
.glass--a { top: 8%; left: -4%; animation-delay: 0.2s; }
.glass--c { bottom: 12%; right: -6%; animation-delay: 1.1s; }
.glass--b { bottom: 6%; left: 2%; flex-direction: row; align-items: center; gap: 12px; animation-delay: 0.7s; }
.glass__bell { font-size: 22px; animation: ring 2.6s var(--ease) infinite; transform-origin: top center; }
@keyframes ring { 0%,60%,100%{transform:rotate(0)} 65%{transform:rotate(16deg)} 70%{transform:rotate(-14deg)} 75%{transform:rotate(10deg)} 80%{transform:rotate(-6deg)} 85%{transform:rotate(0)} }
.glass__t { display: block; font-weight: 700; font-size: 14px; }
.glass__s { display: block; font-size: 12px; color: var(--muted); }
@keyframes bob { 50% { transform: translateY(-12px); } }

.scroll-cue { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); z-index: 3; }
.scroll-cue i { width: 1.5px; height: 38px; background: linear-gradient(var(--muted), transparent); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0%{transform:scaleY(0);transform-origin:top} 40%{transform:scaleY(1);transform-origin:top} 60%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ============ Stats ============ */
.stats { padding: clamp(30px, 6vh, 60px) var(--pad); max-width: var(--wrap); margin-inline: auto; }
.stats__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 26px 24px; box-shadow: var(--shadow-sm); transition: transform 0.4s var(--spring), box-shadow 0.4s var(--ease); }
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.stat b { font-family: var(--display); font-weight: 800; font-size: clamp(38px, 4vw, 56px); letter-spacing: -0.04em; color: var(--orange); display: block; line-height: 1; }
.stat span { display: block; color: var(--muted); font-size: 14px; margin-top: 12px; }

/* ============ Marquee ============ */
.marquee { overflow: hidden; padding: clamp(50px, 8vh, 100px) 0; }
.marquee__row { display: flex; align-items: center; gap: 40px; white-space: nowrap; width: max-content; }
.marquee__row span { font-family: var(--display); font-weight: 800; font-size: clamp(30px, 5vw, 72px); letter-spacing: -0.04em; color: var(--ink); opacity: 0.14; }
.marquee__row i { color: var(--orange); font-size: clamp(18px, 2.6vw, 34px); font-style: normal; opacity: 0.8; }

/* ============ Manifesto ============ */
.manifesto { padding: clamp(70px, 12vh, 160px) var(--pad); max-width: 1120px; margin-inline: auto; }
.manifesto__text { font-family: var(--display); font-weight: 600; font-size: clamp(26px, 4.2vw, 60px); line-height: 1.1; letter-spacing: -0.035em; }

/* ============ Section head ============ */
.eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--peri-ink); margin-bottom: 20px; }
.eyebrow--c { color: var(--peri); }

/* ============ Overview ============ */
.work { padding: clamp(40px, 6vh, 80px) var(--pad) clamp(50px, 8vh, 100px); max-width: var(--wrap); margin-inline: auto; }
.work__head h2 { font-size: clamp(40px, 6.5vw, 104px); }
.lede { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(30px, 5vw, 80px); align-items: center; margin-top: clamp(36px, 6vh, 80px); }
.lede__media { margin: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); will-change: transform; }
.lede__media img { width: 100%; will-change: transform; }
.lede__text p { font-size: clamp(17px, 1.4vw, 22px); margin: 0 0 28px; }
.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.ticks li { position: relative; padding-left: 32px; color: var(--muted); }
.ticks li::before { content: ""; position: absolute; left: 0; top: 0.4em; width: 18px; height: 18px; border-radius: 50%; background: rgba(255,64,0,0.14); }
.ticks li::after { content: ""; position: absolute; left: 6px; top: calc(0.4em + 5px); width: 7px; height: 4px; border-left: 2px solid var(--orange); border-bottom: 2px solid var(--orange); transform: rotate(-45deg); }

/* ============ Breakdown (periwinkle) ============ */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; background: var(--peri-panel); border-radius: var(--r-lg); overflow: hidden; max-width: var(--wrap); margin: 0 auto clamp(30px, 5vh, 60px); box-shadow: var(--shadow-sm); }
.split__text { padding: clamp(40px, 6vw, 90px); display: flex; flex-direction: column; justify-content: center; }
.split__text .eyebrow { color: var(--peri-ink); }
.split__text h2 { font-size: clamp(42px, 5vw, 84px); }
.split__text p { color: rgba(26,23,18,0.62); font-size: clamp(16px, 1.2vw, 19px); max-width: 460px; margin: 26px 0 0; }
.split__media { margin: 0; overflow: hidden; }
.split__media img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }

/* ============ Reminder ============ */
.reminder { text-align: center; padding: clamp(80px, 14vh, 180px) var(--pad); max-width: 1000px; margin-inline: auto; }
.reminder h2 { font-size: clamp(40px, 6.5vw, 96px); }
.reminder p { color: var(--muted); max-width: 540px; margin: 26px auto 0; font-size: clamp(16px, 1.2vw, 19px); }
.reminder__card { margin: clamp(40px, 7vh, 80px) auto 0; max-width: 720px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); will-change: transform; }

/* ============ AI (dark card inset) ============ */
.ai { padding: clamp(30px, 5vh, 60px) var(--pad); }
.ai__card { max-width: var(--wrap); margin-inline: auto; background: var(--ink-2); color: #f4f4f6; border-radius: var(--r-lg); padding: clamp(40px, 6vw, 90px); box-shadow: var(--shadow-lg); overflow: hidden; }
.ai__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.ai__text h2 { font-size: clamp(36px, 4.6vw, 76px); }
.ai__text p { color: #a2a4ad; font-size: clamp(16px, 1.2vw, 20px); margin: 26px 0 0; max-width: 480px; }
.ai__stats { display: flex; gap: 44px; margin-top: 40px; }
.ai__stats b { font-family: var(--display); font-weight: 800; font-size: clamp(34px, 4vw, 54px); color: var(--orange); display: block; letter-spacing: -0.04em; }
.ai__stats span { display: block; color: #9a9ba3; font-size: 13.5px; margin-top: 6px; max-width: 160px; }
.ai__media { margin: 0; border-radius: 26px; overflow: hidden; box-shadow: var(--shadow); will-change: transform; }
.ai__media img { width: 100%; will-change: transform; }

/* ============ Bento ============ */
.bento { padding: clamp(50px, 9vh, 120px) var(--pad); max-width: var(--wrap); margin-inline: auto; }
.bento__head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: clamp(28px, 4vh, 50px); }
.bento__head h2 { font-size: clamp(36px, 5vw, 80px); }
.bento__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.bento__cell { position: relative; margin: 0; border-radius: var(--r-lg); overflow: hidden; background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.bento__cell--tall { grid-row: span 2; }
.bento__cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.bento__cell:hover img { transform: scale(1.05); }
.bento__cell figcaption { position: absolute; left: 20px; bottom: 18px; font-weight: 600; font-size: 15px; color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,0.6); }

/* ============ Privacy ============ */
.privacy { padding: clamp(80px, 14vh, 180px) var(--pad); max-width: 1100px; margin-inline: auto; }
.privacy__h { font-family: var(--display); font-weight: 600; font-size: clamp(28px, 4.2vw, 58px); line-height: 1.12; letter-spacing: -0.03em; }
.privacy__badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 40px 0 30px; }
.privacy__badges span { font-size: 14px; font-weight: 600; padding: 11px 18px; border-radius: 100px; background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform 0.35s var(--spring); }
.privacy__badges span:hover { transform: translateY(-4px) rotate(-2deg); }
.link { display: inline-block; font-weight: 700; color: var(--orange); }

/* ============ Pricing ============ */
.pricing { padding: clamp(40px, 6vh, 80px) var(--pad) clamp(60px, 10vh, 120px); max-width: var(--wrap); margin-inline: auto; }
.pricing__head { text-align: center; margin-bottom: clamp(30px, 5vh, 54px); }
.pricing__head h2 { font-size: clamp(36px, 5vw, 80px); }
.toggle { position: relative; display: inline-flex; margin-top: 30px; background: var(--bg-2); border-radius: 100px; padding: 5px; gap: 4px; }
.toggle__opt { position: relative; z-index: 2; border: 0; background: transparent; font-family: var(--font); font-weight: 600; font-size: 14px; color: var(--muted); padding: 10px 22px; border-radius: 100px; cursor: pointer; transition: color 0.35s var(--ease); display: inline-flex; align-items: center; gap: 7px; }
.toggle__opt.is-active { color: #fff; }
.toggle__opt i { font-style: normal; font-size: 11px; font-weight: 700; padding: 3px 7px; border-radius: 100px; background: rgba(255,64,0,0.16); color: var(--orange); transition: background 0.35s, color 0.35s; }
.toggle__opt.is-active i { background: rgba(255,255,255,0.25); color: #fff; }
.toggle__thumb { position: absolute; z-index: 1; top: 5px; left: 5px; height: calc(100% - 10px); border-radius: 100px; background: var(--orange); box-shadow: 0 8px 18px -8px rgba(255,64,0,0.7); transition: transform 0.45s var(--spring), width 0.45s var(--spring); }
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 440px)); gap: 20px; justify-content: center; align-items: start; }
.plan { position: relative; padding: 40px; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--card); box-shadow: var(--shadow-sm); }
.plan header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.plan h3 { font-size: 24px; font-weight: 700; }
.plan__price { font-family: var(--display); font-weight: 800; font-size: 40px; letter-spacing: -0.04em; }
.plan__price small { font-size: 16px; color: var(--muted); font-weight: 600; }
.plan > p { color: var(--muted); font-size: 15px; margin: 0 0 26px; min-height: 22px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 14px; }
.plan li { position: relative; padding-left: 28px; font-size: 15.5px; }
.plan li::before { content: "→"; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.plan--pro { background: linear-gradient(180deg, #fff, #fff7f2); border-color: rgba(255,64,0,0.35); box-shadow: var(--shadow); }
.plan__flag { position: absolute; top: -13px; right: 30px; background: var(--orange); color: #fff; font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 100px; box-shadow: 0 10px 20px -8px rgba(255,64,0,0.6); }
.plan__amt { display: inline-block; }

/* ============ FAQ ============ */
.faq { padding: clamp(50px, 9vh, 120px) var(--pad); max-width: var(--wrap); margin-inline: auto; display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(30px, 5vw, 80px); }
.faq__head h2 { font-size: clamp(36px, 4vw, 64px); }
.qa { border-top: 1px solid var(--line); }
.qa:last-child { border-bottom: 1px solid var(--line); }
.qa summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 26px 0; font-family: var(--display); font-weight: 600; font-size: clamp(18px, 1.7vw, 24px); letter-spacing: -0.02em; transition: color 0.3s; }
.qa summary:hover { color: var(--orange); }
.qa summary::-webkit-details-marker { display: none; }
.qa summary i { position: relative; width: 16px; height: 16px; flex: none; }
.qa summary i::before, .qa summary i::after { content: ""; position: absolute; inset: 0; margin: auto; background: var(--orange); transition: transform 0.4s var(--spring); }
.qa summary i::before { width: 100%; height: 2px; }
.qa summary i::after { width: 2px; height: 100%; }
.qa[open] summary i::after { transform: scaleY(0); }
.qa[open] summary i::before { transform: rotate(180deg); }
.qa p { margin: 0 0 26px; color: var(--muted); max-width: 620px; }

/* ============ CTA (orange) ============ */
.cta { padding: clamp(40px, 7vh, 90px) var(--pad); max-width: var(--wrap); margin-inline: auto; }
.cta__card { position: relative; overflow: hidden; text-align: center; border-radius: var(--r-lg); padding: clamp(70px, 12vw, 150px) 30px; background: var(--orange); color: #fff; box-shadow: 0 50px 110px -40px rgba(255,64,0,0.6); display: flex; flex-direction: column; align-items: center; gap: 30px; }
.cta__blob { position: absolute; width: 60vw; height: 60vw; max-width: 640px; max-height: 640px; right: -14%; bottom: -40%; border-radius: 50%; background: radial-gradient(circle, rgba(174,196,247,0.7), transparent 62%); pointer-events: none; }
.cta__h { position: relative; font-size: clamp(40px, 8vw, 128px); font-weight: 900; letter-spacing: -0.05em; line-height: 0.92; }
.cta .btn { position: relative; }
.cta__fine { position: relative; color: rgba(255,255,255,0.86); font-size: 14px; }

/* ============ Footer ============ */
.footer { padding: 0 var(--pad) 40px; overflow: hidden; }
.footer__word { font-family: var(--display); font-weight: 900; font-size: clamp(80px, 22vw, 340px); line-height: 0.8; letter-spacing: -0.06em; color: var(--orange); text-align: center; margin-bottom: 30px; opacity: 0.9; }
.footer__row { display: flex; flex-wrap: wrap; align-items: center; gap: 20px 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.footer__brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; }
.footer__brand img { width: 24px; height: 24px; border-radius: 6px; }
.footer__links { display: flex; gap: 24px; margin-left: auto; color: var(--muted); font-size: 14px; }
.footer__links a:hover { color: var(--ink); }
.footer__row p { color: var(--muted); font-size: 14px; margin: 0; }

/* ============ Card hover (micro) ============ */
.card-hover { transition: transform 0.5s var(--spring), box-shadow 0.5s var(--ease); }

/* ============ Reveal-safe ============ */
.gsap-ready .reveal-up, .gsap-ready .reveal-words .word > span, .gsap-ready .hero__title .line > span { will-change: transform, opacity; }

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 130px; }
  .hero__stage { min-height: 70vh; margin-top: 20px; }
  .stats__row { grid-template-columns: repeat(2, 1fr); }
  .lede, .split, .ai__grid, .faq { grid-template-columns: 1fr; }
  .split__media { min-height: 340px; }
  .bento__grid { grid-template-columns: 1fr; }
  .bento__cell--tall { grid-row: auto; }
  .plans { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .stats__row { grid-template-columns: 1fr 1fr; }
  .ai__stats { gap: 26px; }
  .hero__device { width: min(74%, 320px); }
}
@media (hover: none) { body.has-cursor { cursor: auto; } .cursor { display: none; } }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  #gl { display: none; }
}
