:root {
  --flyk-background: #1F2633;
  --flyk-grey: #2B3342;
  --flyk-black: #08101C;
  --flyk-primary: #C2541F;
  --flyk-primary-bright: #E96A2A;
  --flyk-red: #CC2929;
  --flyk-green: #4F992E;

  --white: #FFFFFF;
  --cream: #FFF7F0;
  --muted: #AAB3C1;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max-width: 1180px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Figtree", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(194,84,31,.28), transparent 34rem),
    radial-gradient(circle at 85% 10%, rgba(255,255,255,.08), transparent 24rem),
    var(--flyk-background);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .065;
  z-index: 50;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(194,84,31,.23), transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  mix-blend-mode: screen;
}

/* Centered compact menu bar */
.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100vw - 32px);
  height: 68px;
  padding: 0 10px 0 14px;
  border: 1px solid var(--line);
  background: rgba(8, 16, 28, .78);
  backdrop-filter: blur(24px);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 40;
  box-shadow: 0 10px 40px rgba(0,0,0,.28);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.02em; white-space: nowrap; }
.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  box-shadow: inset 0 1px 1px rgba(255,255,255,.28), 0 12px 30px rgba(194,84,31,.35);
}
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 15px;
  border-radius: 999px;
  transition: color .25s var(--ease), background .25s var(--ease);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.07); }
.nav-cta {
  padding: 13px 18px;
  background: var(--flyk-black);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  white-space: nowrap;
}
.menu-toggle { display: none; width: 44px; height: 44px; background: rgba(255,255,255,.08); border: 0; border-radius: 999px; position: relative; }
.menu-toggle span { display: block; width: 18px; height: 2px; background: var(--white); margin: 5px auto; border-radius: 999px; transition: transform .25s var(--ease); }

.section-pad { width: min(calc(100% - 40px), var(--max-width)); margin: 0 auto; padding: 110px 0; }
.hero { min-height: 100svh; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding-top: 150px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #FFD7C4;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.live-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--flyk-primary-bright); box-shadow: 0 0 0 6px rgba(194,84,31,.14); }
h1, h2, h3 { margin: 0; letter-spacing: -0.04em; line-height: .95; }
h1 { font-size: clamp(58px, 8vw, 112px); max-width: 780px; }
h2 { font-size: clamp(42px, 5.5vw, 78px); max-width: 850px; }
h3 { font-size: clamp(26px, 3vw, 38px); }
p { color: var(--muted); font-size: 18px; line-height: 1.6; margin: 0; }
.hero-subtitle { margin-top: 28px; max-width: 600px; font-size: 21px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 15px;
  font-weight: 900;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
  cursor: pointer;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--flyk-black); color: var(--white); box-shadow: 0 18px 50px rgba(0,0,0,.28);}
.button-secondary { background: rgba(255,255,255,.08); color: var(--white); }
.hero-stats { display: grid; grid-template-columns: repeat(3, max-content); gap: 24px; margin-top: 44px; }
.hero-stats div { display: grid; gap: 4px; }
.hero-stats strong { font-size: 24px; letter-spacing: -0.04em; }
.hero-stats span { color: var(--muted); font-size: 13px; font-weight: 700; }

.hero-visual { min-height: 650px; position: relative; display: grid; place-items: center; perspective: 1200px; }
.phone-stack { position: relative; width: min(470px, 86vw); height: 660px; transform-style: preserve-3d; animation: heroFloat 7s ease-in-out infinite; }
.phone { position: absolute; border-radius: 0 0 40px 40px; filter: drop-shadow(0 42px 70px rgba(0,0,0,.45)); }
.phone-back { width: 78%; left: -5%; top: 48px; transform: rotate(-7deg) translateZ(-70px); opacity: .72; }
.phone-front { width: 86%; right: -2%; top: 0; transform: rotate(5deg) translateZ(80px); }
.orbit { position: absolute; border-radius: 999px; border: 1px solid rgba(255,255,255,.08); pointer-events: none; }
.orbit-one { width: 540px; height: 540px; animation: spin 28s linear infinite; }
.orbit-two { width: 420px; height: 420px; border-style: dashed; animation: spin 22s linear reverse infinite; }
.orbit::after { content: ""; position: absolute; width: 12px; height: 12px; border-radius: 999px; background: var(--flyk-primary-bright); top: 14%; left: 18%; box-shadow: 0 0 36px var(--flyk-primary); }
.floating-card {
  position: absolute;
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 250px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(8, 16, 28, .72);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}
.floating-card strong { display: block; font-size: 15px; }
.floating-card p { font-size: 13px; line-height: 1.35; margin-top: 3px; }
.icon-bubble { width: 36px; height: 36px; display: grid; place-items: center; background: rgba(194,84,31,.18); color: #FFD7C4; border-radius: 12px; }
.card-ai { top: 128px; right: -10px; animation: floatCard 5.5s ease-in-out infinite; }
.card-remote { bottom: 118px; left: -22px; animation: floatCard 6.5s ease-in-out infinite reverse; }

.logo-strip { width: min(calc(100% - 40px), var(--max-width)); margin: -20px auto 0; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; background: rgba(255,255,255,.06); }
.marquee { overflow: hidden; padding: 18px 0; }
.marquee-track { display: flex; gap: 46px; width: max-content; animation: marquee 22s linear infinite; }
.marquee span { color: rgba(255,255,255,.55); font-size: 15px; font-weight: 900; letter-spacing: .02em; text-transform: uppercase; }

/* Scroll showcase inspired by the Framer scroll section */
.scroll-showcase {
  --progress: 0;
  position: relative;
  height: 245vh;
  margin-top: 40px;
  background:
    radial-gradient(circle at 50% 44%, rgba(194,84,31, calc(.14 + (var(--progress) * .30))), transparent 38rem),
    linear-gradient(180deg, var(--flyk-background), #263142 48%, var(--flyk-background));
  overflow: clip;
}
.scroll-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 760px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.scroll-bg-title {
  position: absolute;
  top: 16%;
  left: 50%;
  transform: translateX(-50%) translateY(calc(var(--progress) * -90px));
  width: min(1100px, calc(100% - 28px));
  text-align: center;
  color: rgba(255,255,255, calc(.94 - (var(--progress) * .58)));
  font-size: clamp(48px, 8vw, 110px);
  line-height: .88;
  letter-spacing: -.04em;
  font-weight: 900;
  z-index: 1;
  pointer-events: none;
}
.scroll-halo {
  position: absolute;
  width: min(760px, 86vw);
  height: min(760px, 86vw);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(194,84,31,.42), rgba(194,84,31,.14) 34%, transparent 68%);
  filter: blur(16px);
  transform: scale(calc(.72 + var(--progress) * .42));
  opacity: calc(.54 + (var(--progress) * .35));
  z-index: 2;
}
.scroll-phone-wrap {
  position: relative;
  width: min(430px, 72vw);
  height: 720px;
  transform:
    translateY(calc(160px - (var(--progress) * 300px)))
    scale(calc(.84 + (var(--progress) * .18)));
  z-index: 5;
  transition: transform .08s linear;
}
.scroll-phone {
  position: absolute;
  inset: 0;
  width: 100%;
  margin: auto;
  filter: drop-shadow(0 42px 80px rgba(0,0,0,.48));
}
.phone-remote { opacity: 1; transform: rotate(calc(-3deg + (var(--progress) * 3deg))); }
.scroll-caption {
  position: absolute;
  left: 50%;
  bottom: 9%;
  transform: translateX(-50%) translateY(calc(var(--progress) * 40px));
  text-align: center;
  max-width: 560px;
  color: rgba(255,255,255, calc(.68 - (var(--progress) * .30)));
  z-index: 4;
}
.feature-strip {
  position: absolute;
  z-index: 3;
  width: min(410px, 34vw);
  min-height: 88px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,247,240,.78);
  color: var(--flyk-black);
  box-shadow: 0 30px 90px rgba(0,0,0,.22);
  backdrop-filter: blur(20px);
  opacity: calc((var(--progress) - .12) * 2.2);
  transition: transform .08s linear, opacity .08s linear;
}
.feature-strip strong { display: block; font-size: 17px; letter-spacing: -.02em; }
.feature-strip small { display: block; margin-top: 4px; color: rgba(8,16,28,.58); font-size: 13px; font-weight: 700; line-height: 1.35; }
.strip-icon { width: 44px; height: 44px; border-radius: 15px; display: grid; place-items: center; background: var(--flyk-primary); color: var(--white); font-weight: 900; }
.strip-left { left: max(7vw, calc((100vw - var(--max-width)) / 2)); transform: translateX(calc(-120px + (var(--progress) * 100px))) rotate(calc(-7deg + var(--progress) * 4deg)); }
.strip-right { right: max(7vw, calc((100vw - var(--max-width)) / 2)); transform: translateX(calc(120px - (var(--progress) * 100px))) rotate(calc(7deg - var(--progress) * 4deg)); }
.strip-one { top: 25%; }
.strip-two { top: 31%; opacity: calc((var(--progress) - .28) * 2.2); }
.strip-three { bottom: 24%; opacity: calc((var(--progress) - .42) * 2.2); }
.strip-four { bottom: 19%; opacity: calc((var(--progress) - .58) * 2.2); }

.section-heading { display: grid; gap: 14px; margin-bottom: 42px; }
.section-heading.center { text-align: center; justify-items: center; margin-inline: auto; }
.section-heading.center p { max-width: 620px; }
.feature-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 18px; }
.feature-card {
  position: relative;
  min-height: 310px;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.045));
  box-shadow: 0 20px 60px rgba(0,0,0,.16);
  overflow: hidden;
}
.feature-card::after { content: ""; position: absolute; inset: auto -40px -90px auto; width: 180px; height: 180px; border-radius: 999px; background: rgba(194,84,31,.18); filter: blur(18px); }
.large-card { grid-row: span 2; min-height: 638px; display: flex; flex-direction: column; justify-content: space-between; }
.card-topline { color: rgba(255,255,255,.38); font-weight: 900; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.feature-card h3 { margin-top: 18px; max-width: 360px; }
.feature-card p { margin-top: 14px; font-size: 16px; }
.icon { width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #FFD7C4; font-size: 22px; }
.accent-card { background: linear-gradient(145deg, rgba(194,84,31,.92), rgba(194,84,31,.56)); }
.accent-card p { color: rgba(255,255,255,.74); }
.mini-chat { display: grid; gap: 12px; margin-top: 34px; }
.chat-bubble { width: fit-content; max-width: 86%; padding: 14px 16px; border-radius: 18px; font-weight: 800; line-height: 1.35; }
.chat-bubble.user { background: rgba(255,255,255,.1); color: var(--white); margin-left: auto; }
.chat-bubble.bot { background: var(--cream); color: var(--flyk-black); }

.split-showcase { display: grid; grid-template-columns: .86fr 1.14fr; gap: 40px; align-items: start; }
.sticky-copy { position: sticky; top: 130px; display: grid; gap: 20px; }
.check-list { list-style: none; padding: 0; margin: 10px 0 0; display: grid; gap: 12px; }
.check-list li { color: var(--muted); font-size: 17px; display: flex; gap: 10px; align-items: center; }
.check-list li::before { content: ""; width: 9px; height: 9px; border-radius: 999px; background: var(--flyk-primary-bright); box-shadow: 0 0 0 6px rgba(194,84,31,.12); }
.showcase-panel { min-height: 800px; border-radius: 48px; border: 1px solid var(--line); display: grid; place-items: center; background: radial-gradient(circle at 50% 20%, rgba(194,84,31,.18), transparent 26rem), rgba(255,255,255,.05); overflow: hidden; }
.glass-phone { width: min(450px, 80%); filter: drop-shadow(0 50px 80px rgba(0,0,0,.4)); transform: translateY(25px);}
.ai-section { padding-top: 70px; }
.recommendation-board { display: grid; grid-template-columns: .78fr 1.22fr; gap: 22px; align-items: stretch; }
.prompt-card, .movie-card { border-radius: var(--radius-xl); border: 1px solid var(--line); background: rgba(255,255,255,.08); padding: 30px; }
.prompt-card { display: flex; flex-direction: column; justify-content: space-between; min-height: 430px; background: var(--cream); color: var(--flyk-black); }
.prompt-card .button { align-self: flex-start; }
.prompt-card h3 { max-width: 420px; }
.prompt-label { color: var(--flyk-primary); text-transform: uppercase; letter-spacing: .1em; font-size: 12px; font-weight: 900; }
.movie-cards { position: relative; min-height: 430px; }
.movie-card { position: absolute; width: 78%; min-height: 330px; color: var(--flyk-black); background: var(--white); box-shadow: var(--shadow); }
.movie-card.active { left: 4%; top: 34px; transform: rotate(-2deg); z-index: 3; }
.movie-card.muted { right: 2%; top: 0; opacity: .58; transform: rotate(4deg) scale(.92); z-index: 2; }
.movie-card.second { top: 110px; right: 12%; transform: rotate(-5deg) scale(.88); z-index: 1; }
.movie-card p { color: #4B5565; margin-top: 16px; }
.movie-card small { display: block; color: #6B7280; margin-top: 20px; font-size: 14px; font-weight: 800; }
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.pill-row span { padding: 8px 11px; border-radius: 999px; background: rgba(194,84,31,.12); color: #70402E; font-size: 13px; font-weight: 800; }
.dark-band { width: min(calc(100% - 40px), var(--max-width)); margin: 50px auto; border-radius: 48px; padding: 48px; min-height: 420px; display: grid; grid-template-columns: 1fr .9fr; gap: 28px; align-items: center; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(145deg, var(--flyk-black), #121D30); position: relative; }
.dark-band::before { content: ""; position: absolute; inset: -20% auto auto 45%; width: 560px; height: 560px; border-radius: 999px; background: radial-gradient(circle, rgba(194,84,31,.35), transparent 65%); }
.band-content { position: relative; z-index: 1; }
.band-content p { margin-top: 20px; max-width: 550px; }
.band-visual { position: relative; z-index: 1; min-height: 300px; }
.remote-pill { position: absolute; padding: 22px 28px; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid var(--line); font-weight: 900; box-shadow: var(--shadow); }
.remote-pill:nth-child(1) { top: 12%; left: 18%; }
.remote-pill:nth-child(2) { top: 34%; right: 10%; background: var(--flyk-primary); }
.remote-pill:nth-child(3) { bottom: 16%; left: 4%; }
.remote-pill:nth-child(4) { bottom: 8%; right: 22%; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card { padding: 28px; border-radius: var(--radius-xl); background: rgba(255,255,255,.07); border: 1px solid var(--line); min-height: 260px; }
.step-card span { color: var(--flyk-primary-bright); font-weight: 900; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.step-card h3 { margin-top: 46px; font-size: 34px; }
.step-card p { margin-top: 12px; font-size: 16px; }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
details { border-radius: 22px; border: 1px solid var(--line); background: rgba(255,255,255,.07); overflow: hidden; }
summary { list-style: none; cursor: pointer; padding: 22px 24px; font-size: 18px; font-weight: 900; display: flex; justify-content: space-between; gap: 20px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--flyk-primary-bright); }
details[open] summary::after { content: "−"; }
details p { padding: 0 24px 24px; font-size: 16px; }
.final-cta { width: min(calc(100% - 40px), var(--max-width)); margin: 20px auto 100px; }
.cta-card { padding: 44px; border-radius: 48px; background: var(--cream); color: var(--flyk-black); display: flex; gap: 24px; justify-content: space-between; align-items: center; overflow: hidden; position: relative; }
.cta-card::after { content: ""; position: absolute; right: -120px; top: -120px; width: 320px; height: 320px; border-radius: 999px; background: rgba(194,84,31,.16); }
.cta-card h2 { max-width: 760px; }
.cta-card p { color: #626B78; margin-top: 14px; }
.cta-card .eyebrow { color: var(--flyk-primary); }
.cta-card > * { position: relative; z-index: 1; }
.site-footer { width: min(calc(100% - 40px), var(--max-width)); margin: 0 auto; padding: 0 0 38px; display: flex; justify-content: space-between; align-items: center; color: var(--muted); }
.site-footer p { font-size: 14px; }
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@keyframes heroFloat { 0%,100% { transform: translateY(0) rotateX(0deg); } 50% { transform: translateY(-18px) rotateX(2deg); } }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 980px) {
  .site-header { width: calc(100% - 32px); justify-content: space-between; gap: 12px; }
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .nav-links.is-open { position: fixed; display: grid; top: 82px; left: 0; right: 0; margin: 0 16px; padding: 18px; border-radius: 26px; background: rgba(8,16,28,.94); border: 1px solid var(--line); backdrop-filter: blur(24px); }
  .nav-links.is-open a { font-size: 18px; padding: 16px; }
  .hero { grid-template-columns: 1fr; padding-top: 140px; gap: 20px; }
  .hero-visual { min-height: 600px; }
  .scroll-stage { min-height: 700px; }
  .feature-strip { width: min(360px, 48vw); }
  .strip-one { top: 20%; }
  .strip-two { top: 25%; }
  .strip-three { bottom: 23%; }
  .strip-four { bottom: 18%; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .large-card { grid-column: span 2; min-height: 460px; }
  .split-showcase, .recommendation-board, .dark-band { grid-template-columns: 1fr; }
  .sticky-copy { position: static; }
  .showcase-panel { min-height: 680px; }
  .steps-grid { grid-template-columns: 1fr; }
  .cta-card { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  .section-pad { width: min(calc(100% - 24px), var(--max-width)); padding: 78px 0; }
  .site-header { width: calc(100% - 20px); top: 10px; height: 62px; }
  h1 { font-size: clamp(52px, 16vw, 76px); }
  h2 { font-size: clamp(38px, 11vw, 56px); }
  p, .hero-subtitle { font-size: 17px; }
  .hero-stats { grid-template-columns: 1fr; gap: 14px; }
  .hero-visual { min-height: 500px; }
  .phone-stack { height: 500px; width: 360px; }
  .phone-front { width: 82%; right: 3%; }
  .phone-back { width: 72%; left: 4%; }
  .floating-card { display: none; }
  .orbit-one { width: 360px; height: 360px; }
  .orbit-two { width: 290px; height: 290px; }
  .scroll-showcase { height: 220vh; }
  .scroll-stage { min-height: 640px; }
  .scroll-bg-title { top: 18%; font-size: clamp(48px, 15vw, 84px); }
  .scroll-phone-wrap { width: min(330px, 72vw); height: 560px; }
  .feature-strip { width: min(300px, 78vw); grid-template-columns: 38px 1fr; padding: 12px 14px; }
  .strip-icon { width: 38px; height: 38px; border-radius: 13px; }
  .strip-left { left: 14px; }
  .strip-right { right: 14px; }
  .feature-strip strong { font-size: 15px; }
  .feature-strip small { font-size: 12px; }
  .scroll-caption { bottom: 5%; width: calc(100% - 40px); }
  .feature-grid { grid-template-columns: 1fr; }
  .large-card { grid-column: span 1; }
  .feature-card, .prompt-card, .movie-card, .step-card { border-radius: 26px; padding: 22px; }
  .showcase-panel { min-height: 540px; border-radius: 32px; }
  .movie-cards { min-height: 520px; }
  .movie-card { width: 92%; }
  .dark-band, .cta-card { width: calc(100% - 24px); border-radius: 32px; padding: 28px; }
  .site-footer { flex-direction: column; gap: 14px; align-items: flex-start; }
  .cursor-glow { display: none; }
}


/* AI watchlist swipe-to-TV showcase */
.ai-section {
  padding-top: 70px;
}

.ai-swipe-scroll {
  --ai-progress: 0;
  position: relative;
  height: 170vh;
  min-height: 1180px;
  margin-top: 8px;
}

.ai-swipe-stage {
  position: sticky;
  top: 86px;
  height: calc(100svh - 110px);
  min-height: 680px;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(28px, 5vw, 82px);
  align-items: center;
  overflow: visible;
}

.ai-phone-scene {
  position: relative;
  width: min(410px, 34vw);
  justify-self: end;
  transform:
    translateY(calc(34px - (var(--ai-progress) * 22px)))
    scale(calc(.96 + (var(--ai-progress) * .03)));
  filter: drop-shadow(0 42px 78px rgba(0,0,0,.42));
  z-index: 5;
}

.ai-feature-phone {
  width: 80%;
  transform: rotate(-5deg);
}

.ai-swipe-card {
  position: absolute;
  left: 110px;
  bottom: 130px;
  width: 70%;
  max-width: none;
  border-radius: 26px;
  z-index: 8;
  transform-origin: 18% 84%;
  transform:
    translateX(calc(var(--ai-progress) * min(750px, 55vw)))
    translateY(calc(var(--ai-progress) * -86px))
    scale(calc(1 - (var(--ai-progress) * .53)))
    rotate(calc(-3deg - (var(--ai-progress) * 4deg)));
  opacity: clamp(0, calc(1 - ((var(--ai-progress) - .72) * 5.5)), 1);
  filter: drop-shadow(0 28px 72px rgba(0,0,0,.34));
  transition: transform .08s linear, opacity .08s linear;
}

.ai-tv-scene {
  position: relative;
  width: min(760px, 54vw);
  justify-self: start;
  transform:
    translateY(calc(36px - (var(--ai-progress) * 28px)))
    scale(calc(.96 + (var(--ai-progress) * .04)));
  z-index: 4;
}

.ai-tv-glow {
  position: absolute;
  inset: -18% -10%;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(194,84,31,.52), rgba(194,84,31,.22) 34%, transparent 66%);
  filter: blur(22px);
  opacity: calc(.55 + (var(--ai-progress) * .35));
  transform: scale(calc(.92 + (var(--ai-progress) * .10)));
  pointer-events: none;
}

.ai-tv-composition {
  position: relative;
  width: 100%;
  aspect-ratio: 2048 / 1177;
  filter: drop-shadow(0 46px 90px rgba(0,0,0,.42));
}

.ai-tv-screen {
  position: absolute;
  inset: 0% 0% 2% 0%;
  border-radius: 26px;
  overflow: hidden;
  background: #0A1220;
}

.ai-tv-ui {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ai-tv-before {
  opacity: clamp(0, calc(1 - ((var(--ai-progress) - .60) * 5)), 1);
  transition: opacity .08s linear;
}

.ai-tv-after {
  opacity: clamp(0, calc((var(--ai-progress) - .70) * 5.5), 1);
  transform: scale(calc(.985 + (var(--ai-progress) * .015)));
  transition: opacity .08s linear, transform .08s linear;
}

.ai-tv-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  z-index: 3;
}

@media (max-width: 980px) {
  .ai-swipe-scroll {
    height: 160vh;
    min-height: 1040px;
  }

  .ai-swipe-stage {
    top: 82px;
    grid-template-columns: .76fr 1.24fr;
    gap: 24px;
    min-height: 620px;
  }

  .ai-phone-scene {
    width: min(300px, 38vw);
  }

  .ai-swipe-card {
    left: 50px;
    bottom: -16px;
    width: 70%;
    transform:
      translateX(calc(var(--ai-progress) * min(520px, 53vw)))
      translateY(calc(var(--ai-progress) * -58px))
      scale(calc(1 - (var(--ai-progress) * .50)))
      rotate(calc(4deg - (var(--ai-progress) * 4deg)));
  }

  .ai-tv-scene {
    width: min(560px, 55vw);
  }
}

@media (max-width: 640px) {
  .ai-swipe-scroll {
    height: 170vh;
    min-height: 1000px;
    margin-top: -10px;
  }

  .ai-swipe-stage {
    top: 74px;
    height: calc(100svh - 90px);
    min-height: 690px;
    grid-template-columns: 1fr;
    gap: 18px;
    align-content: center;
  }

  .ai-phone-scene {
    width: min(260px, 64vw);
    justify-self: center;
    transform:
      translate(-18%, calc(26px - (var(--ai-progress) * 62px)))
      scale(calc(.88 + (var(--ai-progress) * .02)));
  }

  .ai-swipe-card {
    left: 42px;
    bottom: -14px;
    width: 72%;
    border-radius: 20px;
    transform:
      translateX(calc(var(--ai-progress) * 34vw))
      translateY(calc(var(--ai-progress) * 265px))
      scale(calc(1 - (var(--ai-progress) * .42)))
      rotate(calc(4deg - (var(--ai-progress) * 4deg)));
  }

  .ai-tv-scene {
    width: min(430px, 96vw);
    justify-self: center;
    transform:
      translateY(calc(-10px - (var(--ai-progress) * 68px)))
      scale(calc(.90 + (var(--ai-progress) * .05)));
  }

  .ai-tv-screen {
    border-radius: 16px;
  }
}

/* Mobile polish pass — desktop styles above remain untouched */
@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    background:
      radial-gradient(circle at 10% 0%, rgba(194,84,31,.22), transparent 22rem),
      radial-gradient(circle at 90% 5%, rgba(255,255,255,.06), transparent 18rem),
      var(--flyk-background);
  }

  .page-noise {
    opacity: .045;
  }

  .site-header {
    top: 10px;
    height: 58px;
    width: calc(100% - 20px);
    padding: 0 8px 0 12px;
    gap: 10px;
  }

  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 11px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
  }

  .nav-links.is-open {
    top: 70px;
    margin: 0 10px;
    border-radius: 22px;
  }

  .section-pad {
    width: min(calc(100% - 28px), var(--max-width));
    padding: 76px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: center;
  }

  .hero-copy {
    justify-items: center;
    display: grid;
  }

  .hero .eyebrow,
  .section-heading .eyebrow,
  .sticky-copy .eyebrow,
  .band-content .eyebrow,
  .cta-card .eyebrow {
    justify-content: center;
  }

  h1 {
    font-size: clamp(48px, 14vw, 70px);
    max-width: 10ch;
  }

  h2 {
    font-size: clamp(36px, 10.8vw, 52px);
    line-height: .98;
  }

  h3 {
    font-size: clamp(25px, 8vw, 34px);
  }

  p,
  .hero-subtitle {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-subtitle {
    margin-top: 20px;
    max-width: 34ch;
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
    margin-top: 28px;
  }

  .button {
    width: 100%;
    max-width: 320px;
    min-height: 52px;
  }

  .hero-visual {
    min-height: 520px;
    overflow: visible;
  }

  .phone-stack {
    width: min(330px, 88vw);
    height: 500px;
    animation: none;
    transform: none !important;
  }

  .phone-back {
    width: 74%;
    left: -2%;
    top: 58px;
    opacity: .62;
  }

  .phone-front {
    width: 84%;
    right: 2%;
    top: 8px;
  }

  .orbit-one {
    width: 350px;
    height: 350px;
  }

  .orbit-two {
    width: 280px;
    height: 280px;
  }

  /* Convert the big scroll animation into a clean mobile feature stack */
  .scroll-showcase {
    height: auto;
    margin-top: 0;
    padding: 84px 14px;
    overflow: hidden;
  }

  .scroll-stage {
    position: relative;
    top: auto;
    min-height: 0;
    height: auto;
    display: grid;
    gap: 22px;
    place-items: center;
    overflow: visible;
  }

  .scroll-bg-title {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: min(100%, 420px);
    font-size: clamp(42px, 12vw, 64px);
    opacity: 1;
    color: rgba(255,255,255,.94);
    margin-bottom: 8px;
  }

  .scroll-halo {
    width: 340px;
    height: 340px;
    opacity: .58;
  }

  .scroll-phone-wrap {
    width: min(260px, 66vw);
    height: 440px;
    transform: none !important;
    margin: 0 auto;
  }

  .phone-remote {
    transform: rotate(-2deg) !important;
  }

  .feature-strip,
  .strip-left,
  .strip-right,
  .strip-one,
  .strip-two,
  .strip-three,
  .strip-four {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: min(100%, 360px);
    opacity: 1;
    transform: none;
    z-index: 6;
  }

  .feature-strip {
    background: rgba(255,247,240,.9);
    min-height: 78px;
    border-radius: 22px;
  }

  .section-heading {
    gap: 12px;
    margin-bottom: 30px;
  }

  .section-heading:not(.center) {
    text-align: center;
    justify-items: center;
  }

  .section-heading p {
    max-width: 34ch;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .large-card {
    grid-column: auto;
    min-height: 420px;
  }

  .feature-card {
    min-height: auto;
    padding: 22px;
    border-radius: 26px;
  }

  .feature-card h3 {
    margin-top: 16px;
  }

  .mini-chat {
    margin-top: 28px;
  }

  .split-showcase {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .sticky-copy {
    position: relative;
    top: auto;
    justify-items: center;
  }

  .check-list {
    text-align: left;
    width: min(100%, 360px);
  }

  .showcase-panel {
    min-height: 560px;
    border-radius: 32px;
  }

  .glass-phone {
    width: min(315px, 82%);
    transform: translateY(12px);
  }

  /* AI section: mobile gets a static, readable showcase instead of a complex sticky swipe */
  .ai-section {
    padding-top: 58px;
  }

  .ai-swipe-scroll {
    height: auto;
    min-height: 0;
    margin-top: 22px;
  }

  .ai-swipe-stage {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
    overflow: visible;
  }

  .ai-phone-scene {
    width: min(330px, 88vw);
    justify-self: center;
    transform: none !important;
    padding: 22px 16px 18px;
    border-radius: 34px;
    background:
      radial-gradient(circle at 50% 30%, rgba(194,84,31,.22), transparent 18rem),
      rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.11);
    box-shadow: 0 28px 76px rgba(0,0,0,.26);
    filter: none;
  }

  .ai-feature-phone {
    width: 88%;
    margin: 0 auto;
    transform: rotate(-3deg);
    filter: drop-shadow(0 30px 55px rgba(0,0,0,.38));
  }

  .ai-swipe-card {
    left: 28%;
    bottom: 12%;
    width: 66%;
    border-radius: 20px;
    opacity: 1;
    transform: rotate(-3deg) !important;
    filter: drop-shadow(0 20px 48px rgba(0,0,0,.30));
    transition: none;
  }

  .ai-tv-scene {
    width: min(430px, 100%);
    justify-self: center;
    transform: none !important;
    margin-top: 4px;
  }

  .ai-tv-glow {
    inset: -24% -18%;
    opacity: .55;
    filter: blur(18px);
  }

  .ai-tv-composition {
    filter: drop-shadow(0 30px 64px rgba(0,0,0,.34));
  }

  .ai-tv-screen {
    inset: 0% 0% 2% 0%;
    border-radius: 14px;
  }

  .ai-tv-before {
    display: none;
  }

  .ai-tv-after {
    opacity: 1;
    transform: none;
  }

  .dark-band {
    width: min(calc(100% - 28px), var(--max-width));
    margin: 20px auto;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 30px 24px;
    border-radius: 32px;
    text-align: center;
  }

  .band-content {
    display: grid;
    justify-items: center;
  }

  .band-content p {
    max-width: 34ch;
  }

  .band-visual {
    display: none;
  }

  .steps-section .section-heading {
    text-align: center;
    justify-items: center;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .step-card {
    min-height: auto;
    padding: 22px;
    border-radius: 26px;
  }

  .step-card h3 {
    margin-top: 28px;
    font-size: 30px;
  }

  .faq-list {
    gap: 10px;
  }

  summary {
    padding: 18px 18px;
    font-size: 16px;
  }

  details p {
    padding: 0 18px 18px;
  }

  .final-cta {
    width: min(calc(100% - 28px), var(--max-width));
    margin: 0 auto 70px;
  }

  .cta-card {
    padding: 28px 22px;
    border-radius: 30px;
    text-align: center;
    align-items: center;
  }

  .cta-card h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .site-footer {
    width: min(calc(100% - 28px), var(--max-width));
    padding-bottom: 30px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
}

@media (max-width: 420px) {
  .hero-visual {
    min-height: 470px;
  }

  .phone-stack {
    width: min(300px, 92vw);
    height: 455px;
  }

  .scroll-phone-wrap {
    width: min(240px, 70vw);
    height: 405px;
  }

  .ai-phone-scene {
    width: min(310px, 92vw);
    padding: 18px 12px 16px;
  }

  .ai-swipe-card {
    left: 26%;
    bottom: 12%;
    width: 68%;
  }
}

/* Final mobile-only fixes requested: hamburger, static AI phone/card, full-width CTA */
@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Mobile header: compact hamburger menu */
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    transform: none;
    width: auto;
    max-width: none;
    height: 60px;
    padding: 0 10px 0 12px;
    border-radius: 999px;
    justify-content: space-between;
  }

  .site-header .brand {
    min-width: 0;
    flex: 1;
  }

  .nav-cta {
    display: none !important;
  }

  .nav-links {
    display: none !important;
  }

  .menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    padding: 0;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    margin: 0;
  }

  body.menu-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  body.menu-open .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .nav-links.is-open {
    display: grid !important;
    position: fixed;
    top: 78px;
    left: 10px;
    right: 10px;
    width: auto;
    margin: 0;
    padding: 12px;
    border-radius: 24px;
    background: rgba(8, 16, 28, .96);
    border: 1px solid var(--line);
    backdrop-filter: blur(24px);
    box-shadow: 0 24px 70px rgba(0,0,0,.34);
    z-index: 39;
  }

  .nav-links.is-open a {
    width: 100%;
    padding: 16px 18px;
    border-radius: 16px;
    font-size: 16px;
    text-align: left;
  }

  /* Mobile AI section: static phone + card only. No container, no TV. */
  .ai-swipe-scroll {
    height: auto !important;
    min-height: 0 !important;
    margin-top: 24px;
  }

  .ai-swipe-stage {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    min-height: 0 !important;
    display: block !important;
    overflow: visible;
  }

  .ai-phone-scene {
    width: min(340px, 92vw) !important;
    margin: 0 auto;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    filter: drop-shadow(0 34px 72px rgba(0,0,0,.42));
    transform: none !important;
    overflow: visible;
  }

  .ai-feature-phone {
    width: 100% !important;
    margin: 0 auto;
    transform: rotate(-5deg) !important;
  }

  .ai-swipe-card {
    left: 25% !important;
    bottom: 13% !important;
    width: 72% !important;
    max-width: none;
    border-radius: 20px;
    opacity: 1 !important;
    transform: rotate(-3deg) !important;
    filter: drop-shadow(0 22px 50px rgba(0,0,0,.34));
    transition: none !important;
  }

  .ai-tv-scene,
  .ai-tv-glow,
  .ai-tv-composition,
  .ai-tv-screen,
  .ai-tv-ui,
  .ai-tv-frame {
    display: none !important;
  }

  /* Bottom download CTA: prevent right-side gap on mobile */
  .final-cta {
    width: 100% !important;
    max-width: none !important;
    padding: 0 14px;
    margin: 0 auto 70px;
  }

  .cta-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0;
  }
}

@media (max-width: 420px) {
  .ai-phone-scene {
    width: min(280px, 92vw) !important;
  }

  .ai-swipe-card {
    left: 24% !important;
    bottom: 20% !important;
    width: 84% !important;
  }
}

/* iPad / tablet optimization only */
@media (min-width: 761px) and (max-width: 1180px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .section-pad {
    width: min(calc(100% - 40px), var(--max-width));
  }

  /* Header: keep it compact on iPad */
  .site-header {
    width: calc(100% - 40px);
    max-width: 760px;
    justify-content: space-between;
  }

  .nav-links {
    gap: 2px;
  }

  .nav-links a {
    padding: 11px 12px;
    font-size: 13px;
  }

  .nav-cta {
    padding: 12px 15px;
    font-size: 13px;
  }

  /* Hero: stack instead of squeezing two columns */
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 140px;
    text-align: center;
  }

  .hero-copy {
    display: grid;
    justify-items: center;
  }

  .hero-subtitle {
    max-width: 620px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: 620px;
  }

  .phone-stack {
    width: min(430px, 58vw);
    height: 620px;
  }

  .floating-card {
    display: none;
  }

  /* First scroll showcase: make it less aggressive on iPad */
  .scroll-showcase {
    height: 190vh;
    margin-top: 20px;
  }

  .scroll-stage {
    min-height: 720px;
  }

  .scroll-bg-title {
    top: 14%;
    font-size: clamp(54px, 9vw, 92px);
  }

  .scroll-phone-wrap {
    width: min(360px, 42vw);
    height: 620px;
  }

  .feature-strip {
    width: min(330px, 38vw);
    min-height: 78px;
    padding: 12px 14px;
  }

  .feature-strip strong {
    font-size: 15px;
  }

  .feature-strip small {
    font-size: 12px;
  }

  .strip-left {
    left: 24px;
  }

  .strip-right {
    right: 24px;
  }

  /* Feature cards */
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .large-card {
    grid-column: span 2;
    min-height: 470px;
  }

  /* Remote section: stack cleanly */
  .split-showcase {
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: center;
  }

  .sticky-copy {
    position: relative;
    top: auto;
    justify-items: center;
  }

  .check-list {
    width: min(100%, 520px);
    text-align: left;
  }

  .showcase-panel {
    min-height: 680px;
  }

  .glass-phone {
    width: min(420px, 64%);
  }

  /* AI section: remove sticky swipe behavior on iPad, keep a clean static composition */
  .ai-swipe-scroll {
    height: auto;
    min-height: 0;
    margin-top: 36px;
  }

  .ai-swipe-stage {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 46px;
    overflow: hidden;
  }

  .ai-phone-scene {
    width: min(430px, 56vw);
    justify-self: center;
    transform: none !important;
    filter: drop-shadow(0 42px 78px rgba(0,0,0,.38));
  }

  .ai-feature-phone {
    width: 82%;
    margin: 0 auto;
    transform: rotate(-5deg);
  }

  .ai-swipe-card {
    left: 30%;
    bottom: 18%;
    width: 70%;
    max-width: none;
    opacity: 1 !important;
    transform: rotate(-3deg) !important;
    transition: none !important;
  }

  .ai-tv-scene {
    width: min(720px, 92vw);
    justify-self: center;
    transform: none !important;
  }

  .ai-tv-glow {
    opacity: .62;
  }

  .ai-tv-screen {
    inset: 0% 0% 2% 0%;
    border-radius: 20px;
  }

  .ai-tv-before {
    display: none;
  }

  .ai-tv-after {
    opacity: 1;
    transform: none;
  }

  /* Dark band + steps */
  .dark-band {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .band-content {
    display: grid;
    justify-items: center;
  }

  .band-visual {
    min-height: 220px;
  }

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

  /* Download CTA */
  .final-cta {
    width: min(calc(100% - 40px), var(--max-width));
  }

  .cta-card {
    align-items: center;
    text-align: center;
    flex-direction: column;
  }

  .cta-card .button {
    width: min(100%, 320px);
  }
}

/* iPad portrait: simplify AI even more so nothing overflows */
@media (min-width: 761px) and (max-width: 900px) and (orientation: portrait) {
  .ai-tv-scene {
    display: none;
  }

  .ai-phone-scene {
    width: min(430px, 72vw);
  }

  .ai-swipe-card {
    left: 30%;
    bottom: 17%;
    width: 72%;
  }

  .scroll-showcase {
    height: auto;
    padding: 90px 20px;
  }

  .scroll-stage {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    gap: 20px;
  }

  .scroll-bg-title,
  .scroll-phone-wrap,
  .feature-strip {
    position: relative;
    inset: auto;
    transform: none !important;
    opacity: 1;
  }

  .scroll-bg-title {
    top: auto;
    left: auto;
    width: min(100%, 680px);
    font-size: clamp(52px, 10vw, 86px);
    margin-bottom: 14px;
  }

  .scroll-phone-wrap {
    width: min(330px, 48vw);
    height: 560px;
  }

  .feature-strip {
    width: min(100%, 480px);
  }
}

/* Privacy page */

.privacy-hero {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-bottom: 48px;
}

.privacy-hero h1 {
  font-size: clamp(52px, 7vw, 96px);
  max-width: 900px;
}

.privacy-card {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 42px;
  background:
    radial-gradient(circle at 90% 0%, rgba(194,84,31,.13), transparent 22rem),
    rgba(255,255,255,.065);
  box-shadow: 0 28px 90px rgba(0,0,0,.18);
}

.privacy-card section + section {
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.09);
}

.privacy-card h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 18px;
  max-width: none;
}

.privacy-card h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  margin: 28px 0 10px;
  line-height: 1.1;
}

.privacy-card p {
  margin-top: 12px;
  color: rgba(255,255,255,.72);
}

.privacy-card ul {
  margin: 16px 0 0;
  padding-left: 22px;
  display: grid;
  gap: 10px;
}

.privacy-card li {
  color: rgba(255,255,255,.72);
  font-size: 18px;
  line-height: 1.55;
}

.privacy-card a {
  color: #FFD7C4;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 760px) {

  .privacy-hero {
    margin-bottom: 30px;
  }

  .privacy-card {
    padding: 24px 20px;
    border-radius: 28px;
  }

  .privacy-card section + section {
    margin-top: 34px;
    padding-top: 28px;
  }

  .privacy-card p,
  .privacy-card li {
    font-size: 16px;
  }
}

/* Native iOS-style sticky App Store card */
.native-download-card {
  display: none;
}

@media (max-width: 760px) {
  .native-download-card {
    position: fixed;
    left: 0;
    right: 0;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 999;

    display: grid;
    grid-template-columns: 76px minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 10px;

    width: calc(100vw - 20px);
    max-width: 430px;
    min-height: 98px;
    margin: 0 auto;
    padding: 10px 14px;

    border-radius: 26px;
    background: rgba(35, 38, 42, 0.96);
    color: #fff;
    text-decoration: none;

    box-shadow:
      0 18px 48px rgba(0, 0, 0, 0.42),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);

    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.32s var(--ease), opacity 0.32s var(--ease);
  }

  body.has-sticky-download .native-download-card {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .native-app-icon {
    width: 58px;
    height: 58px;
    border-radius: 15px;
    object-fit: cover;
    background: var(--flyk-primary);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      0 8px 18px rgba(0, 0, 0, 0.24);
  }

  .native-app-info {
    min-width: 0;
    display: grid;
    align-content: center;
    gap: 2px;
  }

  .native-store-row {
    display: flex;
    align-items: center;
    gap: 6px;

    color: rgba(255, 255, 255, 0.44);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.02em;
  }

  .native-store-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    opacity: 0.44;
    filter: grayscale(1) brightness(1.8);
    transform: translateY(-1px);
  }

  .native-app-title {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.08;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-top: 4px;
  }

  .native-app-subtitle {
    color: rgba(255, 255, 255, 0.42);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.12;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-top: 6px;
  }

  .native-get-wrap {
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 5px;
    padding-left: 4px;
  }

  .native-get-button {
    min-width: 78px;
    height: 30px;
    padding: 0 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;
    background: var(--flyk-primary);
    color: #fff;

    font-size: 16px;
    font-weight: 600;
    line-height: 1;
  }

  .native-iap {
    color: rgba(255, 255, 255, 0.38);
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
  }

  body {
    padding-bottom: calc(106px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 390px) {
  .native-download-card {
    grid-template-columns: 68px minmax(0, 1fr) auto;
    column-gap: 12px;
    width: calc(100vw - 16px);
    min-height: 96px;
    padding: 9px 11px;
    border-radius: 26px;
  }

  .native-app-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }

  .native-store-row {
    font-size: 14px;
  }

  .native-store-icon {
    width: 16px;
    height: 16px;
  }

  .native-app-title {
    font-size: 16px;
    padding-top: 4px;
  }

  .native-app-subtitle {
    font-size: 14px;
    padding-top: 6px;
  }

  .native-get-button {
    min-width: 68px;
    height: 32px;
    font-size: 16px;
    padding: 0 15px;
  }

  .native-iap {
    font-size: 10px;
  }
}

/* Animated FAQ accordion */
.faq-list details {
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  user-select: none;
}

.faq-list summary::after {
  transition: transform 0.28s var(--ease), color 0.28s var(--ease);
}

.faq-list details[open] summary::after {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    max-height 0.36s var(--ease),
    opacity 0.26s var(--ease),
    transform 0.36s var(--ease);
}

.faq-content.is-open {
  opacity: 1;
  transform: translateY(0);
}

.faq-content p {
  padding: 0 24px 24px;
}

@media (max-width: 760px) {
  .faq-content p {
    padding: 0 18px 18px;
  }
}

/* SEO article pages */
.seo-article-hero {
  padding-top: 165px;
  padding-bottom: 64px;
}

.seo-article-kicker {
  margin-bottom: 18px;
}

.seo-article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: end;
}

.seo-article-hero h1 {
  max-width: 980px;
  font-size: clamp(50px, 7vw, 94px);
}

.seo-summary-card {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 100% 0%, rgba(194,84,31,.22), transparent 14rem),
    rgba(255,255,255,.07);
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
}

.seo-summary-card span {
  display: block;
  color: #FFD7C4;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.seo-summary-card p {
  font-size: 16px;
}

.seo-article {
  padding-top: 40px;
}

.seo-article-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 820px);
  gap: 64px;
  align-items: start;
}

.seo-article-toc {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
}

.seo-article-toc strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 14px;
}

.seo-article-toc a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  transition: color .2s var(--ease);
}

.seo-article-toc a:hover {
  color: var(--white);
}

.seo-article-body {
  display: grid;
  gap: 72px;
}

.seo-article-body section {
  scroll-margin-top: 110px;
}

.seo-article-body h2 {
  font-size: clamp(34px, 4vw, 56px);
  max-width: 760px;
  margin-bottom: 20px;
}

.seo-article-body h3 {
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.seo-article-body p {
  margin-top: 16px;
  color: rgba(255,255,255,.72);
}

.seo-callout {
  margin-top: 28px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.065);
}

.seo-callout strong {
  color: var(--white);
  font-size: 18px;
}

.seo-callout p {
  margin-top: 8px;
}

.seo-callout-bright {
  background: var(--cream);
  color: var(--flyk-black);
}

.seo-callout-bright strong {
  color: var(--flyk-black);
}

.seo-callout-bright p {
  color: rgba(8,16,28,.72);
}

.seo-card-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.seo-mini-card {
  padding: 22px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.065);
}

.seo-mini-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--flyk-primary-bright);
  font-weight: 900;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.seo-mini-card p {
  font-size: 15px;
  margin-top: 12px;
}

.seo-table-wrap {
  margin-top: 28px;
  overflow-x: auto;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
}

.seo-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.seo-table th,
.seo-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-align: left;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.45;
}

.seo-table th {
  color: var(--white);
  font-weight: 900;
  background: rgba(255,255,255,.045);
}

.seo-table tr:last-child td {
  border-bottom: 0;
}

.seo-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.seo-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255,255,255,.72);
  font-size: 18px;
  line-height: 1.55;
}

.seo-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .75em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--flyk-primary-bright);
  box-shadow: 0 0 0 6px rgba(194,84,31,.12);
}

.seo-related-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.seo-related-grid a {
  min-height: 150px;
  padding: 20px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.065);
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  transition: transform .2s var(--ease), background .2s var(--ease);
}

.seo-related-grid a:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.09);
}

.seo-related-grid span {
  display: block;
  margin-bottom: 38px;
  color: var(--flyk-primary-bright);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .seo-article-hero-grid,
  .seo-article-layout {
    grid-template-columns: 1fr;
  }

  .seo-summary-card {
    max-width: 620px;
  }

  .seo-article-toc {
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {
  .seo-article-hero {
    padding-top: 120px;
    padding-bottom: 34px;
    text-align: center;
  }

  .seo-article-kicker {
    display: grid;
    justify-items: center;
  }

  .seo-article-hero-grid {
    gap: 28px;
  }

  .seo-article-hero h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .seo-summary-card {
    text-align: left;
    border-radius: 24px;
  }

  .seo-article {
    padding-top: 20px;
  }

  .seo-article-layout {
    gap: 34px;
  }

  .seo-article-toc {
    display: none;
  }

  .seo-article-body {
    gap: 54px;
  }

  .seo-article-body h2 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .seo-article-body p {
    font-size: 16px;
  }

  .seo-card-grid,
  .seo-related-grid {
    grid-template-columns: 1fr;
  }

  .seo-mini-card {
    padding: 20px;
    border-radius: 24px;
  }

  .seo-list li {
    font-size: 16px;
  }

  .seo-related-grid a {
    min-height: 128px;
  }
}

/* SEO article mobile overflow fix */
@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  main,
  section,
  article,
  .section-pad,
  .seo-article-hero,
  .seo-article,
  .seo-article-layout,
  .seo-article-body,
  .seo-article-body section,
  .seo-article-hero-grid,
  .seo-summary-card,
  .seo-card-grid,
  .seo-mini-card,
  .seo-callout,
  .seo-related,
  .seo-related-grid,
  .seo-table-wrap,
  .final-cta,
  .cta-card {
    max-width: 100%;
    min-width: 0;
  }

  .seo-article-hero {
    width: min(calc(100% - 28px), var(--max-width));
    margin: 0 auto;
    padding-top: 120px;
    padding-bottom: 34px;
    text-align: center;
  }

  .seo-article {
    width: min(calc(100% - 28px), var(--max-width));
    margin: 0 auto;
    padding-top: 16px;
  }

  .seo-article-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
  }

  .seo-article-hero h1 {
    max-width: 100%;
    font-size: clamp(40px, 11.5vw, 58px);
    line-height: .96;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .seo-article-hero .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .seo-summary-card {
    width: 100%;
    text-align: left;
    padding: 22px;
    border-radius: 24px;
  }

  .seo-article-layout {
    display: block;
    width: 100%;
  }

  .seo-article-toc {
    display: none;
  }

  .seo-article-body {
    width: 100%;
    display: grid;
    gap: 52px;
  }

  .seo-article-body section {
    width: 100%;
    overflow: hidden;
  }

  .seo-article-body h2 {
    max-width: 100%;
    font-size: clamp(31px, 8.8vw, 44px);
    line-height: 1;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .seo-article-body h3 {
    max-width: 100%;
    font-size: clamp(22px, 6.6vw, 28px);
    overflow-wrap: anywhere;
  }

  .seo-article-body p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.58;
  }

  .seo-card-grid,
  .seo-related-grid {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 14px;
  }

  .seo-mini-card,
  .seo-callout,
  .seo-related-grid a {
    width: 100%;
    padding: 20px;
    border-radius: 24px;
  }

  .seo-mini-card span {
    margin-bottom: 20px;
  }

  .seo-list {
    width: 100%;
  }

  .seo-list li {
    font-size: 16px;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .seo-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .seo-table {
    min-width: 640px;
  }

  .seo-table th,
  .seo-table td {
    padding: 15px 16px;
    font-size: 14px;
  }

  .final-cta {
    width: min(calc(100% - 28px), var(--max-width));
    margin-left: auto;
    margin-right: auto;
  }

  .cta-card {
    width: 100%;
    padding: 28px 22px;
    border-radius: 30px;
    text-align: center;
    align-items: center;
    overflow: hidden;
  }

  .cta-card h2 {
    max-width: 100%;
    font-size: clamp(32px, 9.5vw, 48px);
    overflow-wrap: anywhere;
  }

  .cta-card .button {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 390px) {
  .seo-article-hero,
  .seo-article,
  .final-cta {
    width: min(calc(100% - 22px), var(--max-width));
  }

  .seo-article-hero h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .seo-summary-card,
  .seo-mini-card,
  .seo-callout,
  .seo-related-grid a {
    padding: 18px;
  }

  .seo-table {
    min-width: 590px;
  }
}

/* SEO comparison table: convert to mobile cards */
@media (max-width: 760px) {
  .seo-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
    border-radius: 0;
  }

  .seo-table {
    min-width: 0;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 14px;
  }

  .seo-table thead {
    display: none;
  }

  .seo-table tbody,
  .seo-table tr,
  .seo-table td {
    display: block;
    width: 100%;
  }

  .seo-table tr {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background:
      radial-gradient(circle at 100% 0%, rgba(194,84,31,.10), transparent 12rem),
      rgba(255,255,255,.065);
    box-shadow: 0 18px 50px rgba(0,0,0,.12);
    overflow: hidden;
    margin-bottom: 20px;
  }

  .seo-table td {
    position: relative;
    padding: 12px 0;
    color: rgba(255,255,255,.76);
    font-size: 15px;
    line-height: 1.45;
    border-bottom: 0;
  }

  .seo-table td:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .seo-table td:first-child {
    padding-top: 0;
    color: var(--white);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.03em;
  }

  .seo-table td:not(:first-child) {
    display: grid;
    grid-template-columns: 132px 1fr;
    gap: 14px;
    align-items: start;
  }

  .seo-table td:not(:first-child)::before {
    color: #FFD7C4;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .seo-table td:nth-child(2)::before {
    content: "Physical remote";
  }

  .seo-table td:nth-child(3)::before {
    content: "Basic app";
  }

  .seo-table td:nth-child(4)::before {
    content: "FlykMote";
  }

  .seo-table td:nth-child(4) {
    color: var(--white);
    font-weight: 800;
  }
}

@media (max-width: 390px) {
  .seo-table tr {
    padding: 16px;
    border-radius: 22px;
    margin-bottom: 20px;
  }

  .seo-table td:not(:first-child) {
    grid-template-columns: 112px 1fr;
    gap: 10px;
  }

  .seo-table td:not(:first-child)::before {
    font-size: 11px;
  }
}

