:root {
  --bg: #f1f0e9;
  --surface: #faf9f3;
  --ink: #171916;
  --muted: #67695f;
  --line: rgba(23, 25, 22, .14);
  --acid: #d9ff59;
  --acid-deep: #b7e62d;
  --dark: #1d211b;
  --dark-2: #2a2f27;
  --cream: #faf7e9;
  --radius-xl: 42px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --shadow: 0 24px 70px rgba(25, 28, 23, .12);
  --font: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

.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;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 999;
  transform: translateY(-150%);
  background: var(--acid);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 112px 0; }

.site-header {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 100;
  transition: .3s ease;
}
.site-header.is-scrolled { transform: translateY(-3px); }
.nav-shell {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(22, 24, 21, .84);
  box-shadow: 0 18px 55px rgba(0,0,0,.18);
  backdrop-filter: blur(18px);
  color: #fff;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; width: max-content; }
.brand-mark {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  border-radius: 50%;
}
.brand-mark svg { width: 27px; }
.brand-word { font-size: 1rem; font-weight: 800; letter-spacing: .12em; }
.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav a { color: rgba(255,255,255,.78); font-size: .9rem; text-decoration: none; transition: .25s; }
.primary-nav a:hover { color: #fff; }
.nav-cta { justify-self: end; }
.menu-button { display: none; }

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 750;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 50px; padding-inline: 22px; font-size: .9rem; }
.button-dark { color: var(--ink); background: var(--acid); }
.button-primary { background: var(--acid); color: var(--ink); }
.button-light { background: var(--cream); color: var(--ink); }
.text-link { display: inline-flex; gap: 12px; align-items: center; font-weight: 700; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 3px; }

.hero {
  min-height: 900px;
  display: flex;
  align-items: center;
  padding-top: 145px;
  color: var(--cream);
  background:
    radial-gradient(circle at 75% 14%, rgba(217,255,89,.16), transparent 28%),
    linear-gradient(135deg, #151713 0%, #22261e 54%, #111310 100%);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 22px; font-size: .77rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.68); }
.eyebrow span { width: 28px; height: 2px; background: var(--acid); }
.eyebrow.dark { color: var(--muted); }
.hero h1, .section-heading h2, .steps-intro h2, .faq-intro h2, .cta-shell h2 {
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 7.2rem);
  line-height: .93;
  letter-spacing: -.065em;
  font-weight: 620;
}
.hero h1 em, .section-heading h2 em { color: var(--acid); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.hero-lead { max-width: 640px; margin: 28px 0 0; color: rgba(255,255,255,.68); font-size: 1.08rem; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 34px; }
.hero-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 58px; }
.hero-metrics div { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.16); }
.hero-metrics strong { display: block; font-size: 1.4rem; }
.hero-metrics span { color: rgba(255,255,255,.54); font-size: .85rem; }

.hero-visual { min-height: 620px; position: relative; display: grid; place-items: center; }
.hero-card {
  width: min(440px, 85%);
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 38px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 38px 120px rgba(0,0,0,.35);
  backdrop-filter: blur(18px);
  transform: rotate(2deg);
  position: relative;
  z-index: 3;
}
.hero-card-top, .hero-card-bottom { display: flex; align-items: center; gap: 10px; }
.hero-card-top { font-size: .78rem; color: rgba(255,255,255,.74); padding: 4px 2px 14px; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 18px var(--acid); }
.micro-pill { margin-left: auto; padding: 5px 9px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; font-size: .62rem; }
.screen-window { height: 360px; border-radius: 28px; background: linear-gradient(145deg, #cbef4e, #8aaa20); position: relative; overflow: hidden; display: grid; place-items: center; }
.screen-window::before, .screen-window::after { content: ""; position: absolute; border: 1px solid rgba(24,28,20,.22); border-radius: 50%; }
.screen-window::before { width: 310px; height: 310px; }
.screen-window::after { width: 210px; height: 210px; }
.screen-glow { position: absolute; width: 180px; height: 180px; border-radius: 50%; background: #fbffe5; filter: blur(34px); opacity: .55; }
.screen-brand { position: relative; z-index: 2; font-size: 6.8rem; font-weight: 900; letter-spacing: -.09em; color: var(--ink); }
.screen-lines { position: absolute; inset: auto 26px 24px; display: grid; gap: 8px; }
.screen-lines span { height: 3px; border-radius: 99px; background: rgba(23,25,22,.3); }
.screen-lines span:nth-child(2) { width: 75%; }
.screen-lines span:nth-child(3) { width: 48%; }
.hero-card-bottom { justify-content: space-between; padding: 16px 4px 2px; }
.hero-card-bottom small { display: block; color: rgba(255,255,255,.52); }
.hero-card-bottom strong { font-size: .95rem; }
.round-action { width: 46px; height: 46px; border-radius: 50%; border: 0; background: var(--acid); font-size: 1.2rem; cursor: pointer; }
.visual-orbit { position: absolute; border: 1px solid rgba(217,255,89,.18); border-radius: 50%; }
.orbit-one { width: 570px; height: 570px; }
.orbit-two { width: 430px; height: 430px; }
.floating-card { position: absolute; z-index: 5; min-width: 185px; display: flex; gap: 12px; align-items: center; padding: 14px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(29,33,27,.84); box-shadow: 0 20px 50px rgba(0,0,0,.22); backdrop-filter: blur(16px); }
.floating-card-a { left: 0; top: 21%; }
.floating-card-b { right: -3%; bottom: 18%; }
.floating-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: var(--ink); background: var(--acid); }
.floating-card small { display: block; color: rgba(255,255,255,.48); }
.floating-card strong { font-size: .88rem; }

.marquee-strip { overflow: hidden; background: var(--acid); color: var(--ink); border-block: 1px solid rgba(0,0,0,.08); transform: rotate(-1deg); transform-origin: center; }
.marquee-track { min-width: max-content; display: flex; align-items: center; gap: 26px; padding: 18px 0; animation: marquee 24s linear infinite; font-size: .78rem; font-weight: 900; letter-spacing: .13em; }
.marquee-track i { font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section-heading { margin-bottom: 54px; }
.split-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 80px; align-items: end; }
.section-heading h2, .steps-intro h2, .faq-intro h2 { font-size: clamp(2.7rem, 5.2vw, 5.6rem); }
.section-heading h2 em { color: #778c1c; }
.section-heading > p, .split-heading > p { margin: 0; color: var(--muted); line-height: 1.8; }
.centered { max-width: 780px; margin-inline: auto; text-align: center; }
.centered .eyebrow { justify-content: center; }
.centered > p:last-child { max-width: 620px; margin: 22px auto 0; }

.feature-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 18px; }
.feature-card { min-height: 450px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.54); }
.feature-large { background: var(--dark); color: #fff; }
.feature-number { width: 44px; height: 28px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 999px; font-size: .72rem; opacity: .56; }
.feature-card h3 { margin: auto 0 12px; font-size: 1.55rem; line-height: 1.18; letter-spacing: -.03em; }
.feature-card p { margin: 0; color: var(--muted); }
.feature-large p { color: rgba(255,255,255,.55); }
.abstract-panel { flex: 1; min-height: 220px; position: relative; display: grid; place-items: center; overflow: hidden; }
.speed-ring { position: absolute; border: 1px solid rgba(217,255,89,.24); border-radius: 50%; }
.speed-ring.r1 { width: 190px; height: 190px; }
.speed-ring.r2 { width: 125px; height: 125px; }
.speed-center { width: 82px; height: 82px; display: grid; place-items: center; background: var(--acid); color: var(--ink); border-radius: 28px; font-size: 1.8rem; font-weight: 900; transform: rotate(-7deg); }
.icon-tile { width: 105px; height: 105px; display: grid; place-items: center; margin-top: 72px; border-radius: 30px; background: var(--acid); font-size: 3rem; }

.access-section { color: var(--cream); background: var(--dark); }
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.access-card { min-height: 720px; display: flex; flex-direction: column; padding: 28px; border-radius: var(--radius-xl); overflow: hidden; position: relative; }
.browser-card { background: var(--acid); color: var(--ink); }
.app-card { background: #f7f4e6; color: var(--ink); }
.access-badge { align-self: flex-start; padding: 8px 12px; border: 1px solid currentColor; border-radius: 999px; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.browser-mockup { margin: 54px auto 28px; width: 88%; background: #fff; border: 8px solid var(--ink); border-radius: 24px; box-shadow: 0 28px 50px rgba(0,0,0,.18); transform: rotate(-3deg); overflow: hidden; }
.browser-bar { height: 42px; display: flex; align-items: center; gap: 6px; padding: 0 12px; border-bottom: 1px solid #ddd; }
.browser-bar i { width: 7px; height: 7px; border-radius: 50%; background: #bababa; }
.browser-bar span { margin-left: 10px; font-size: .62rem; color: #888; }
.browser-content { height: 250px; display: grid; place-items: center; position: relative; background: #20231e; }
.browser-logo { color: var(--acid); font-size: 4rem; font-weight: 900; }
.browser-copy { position: absolute; left: 24px; bottom: 24px; display: grid; gap: 6px; }
.browser-copy span { width: 120px; height: 4px; border-radius: 99px; background: rgba(255,255,255,.28); }
.browser-copy span:nth-child(2) { width: 90px; }
.browser-button { position: absolute; right: 22px; bottom: 20px; padding: 9px 13px; border-radius: 999px; background: var(--acid); font-size: .66rem; font-weight: 900; }
.phone-mockup { width: 230px; height: 430px; margin: 40px auto 24px; padding: 12px; background: #131512; border-radius: 40px; box-shadow: 0 30px 60px rgba(0,0,0,.25); transform: rotate(4deg); }
.phone-speaker { width: 70px; height: 18px; margin: 0 auto -11px; position: relative; z-index: 2; border-radius: 99px; background: #131512; }
.phone-screen { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 30px; color: #fff; background: radial-gradient(circle at 70% 20%, rgba(217,255,89,.2), transparent 28%), #272c24; }
.app-icon { width: 90px; height: 90px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 27px; color: var(--ink); background: var(--acid); font-size: 2.1rem; font-weight: 900; }
.phone-screen strong { font-size: 1.1rem; letter-spacing: .12em; }
.phone-screen small { margin-top: 5px; color: rgba(255,255,255,.5); }
.app-progress { width: 120px; height: 5px; margin-top: 34px; border-radius: 999px; background: rgba(255,255,255,.12); }
.app-progress span { display: block; width: 78%; height: 100%; border-radius: inherit; background: var(--acid); }
.access-copy { margin-top: auto; }
.access-copy h3 { margin: 0 0 12px; font-size: 2rem; letter-spacing: -.04em; }
.access-copy p { color: rgba(23,25,22,.64); }
.card-link { display: inline-flex; align-items: center; justify-content: space-between; width: 100%; margin-top: 18px; padding: 15px 0 4px; border-top: 1px solid rgba(0,0,0,.18); font-weight: 800; text-decoration: none; }

.bento-grid { display: grid; grid-template-columns: 1.3fr .7fr; grid-template-rows: repeat(2, minmax(300px, auto)); gap: 18px; }
.bento-card { position: relative; overflow: hidden; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.56); }
.bento-wide { grid-row: 1 / 3; min-height: 630px; display: grid; grid-template-rows: auto 1fr; }
.bento-copy { max-width: 500px; }
.mini-label { font-size: .7rem; font-weight: 900; letter-spacing: .13em; color: var(--muted); }
.bento-card h3 { margin: 18px 0 12px; font-size: 2rem; line-height: 1.12; letter-spacing: -.04em; }
.bento-card p { color: var(--muted); }
.pulse-visual { align-self: end; min-height: 350px; position: relative; display: grid; place-items: center; }
.pulse-line { position: absolute; border: 1px solid rgba(23,25,22,.16); border-radius: 50%; }
.p1 { width: 330px; height: 330px; }
.p2 { width: 230px; height: 230px; }
.p3 { width: 140px; height: 140px; }
.pulse-core { width: 100px; height: 100px; display: grid; place-items: center; border-radius: 50%; background: var(--acid); font-size: 2.2rem; font-weight: 900; box-shadow: 0 0 0 24px rgba(217,255,89,.18); }
.device-stack { height: 180px; position: relative; margin-top: 18px; }
.device { position: absolute; border: 5px solid var(--ink); background: var(--acid); box-shadow: 0 10px 20px rgba(0,0,0,.08); }
.device.desktop { width: 190px; height: 120px; right: 20px; top: 12px; border-radius: 12px; }
.device.tablet { width: 95px; height: 125px; left: 50px; top: 35px; border-radius: 14px; background: #efecdc; }
.device.mobile { width: 52px; height: 100px; left: 18px; top: 58px; border-radius: 12px; background: #fff; }
.dark-card { color: #fff; background: var(--dark); }
.dark-card .mini-label { color: rgba(255,255,255,.46); }
.dark-card blockquote { margin: 50px 0 0; max-width: 380px; font-family: Georgia, serif; font-size: 2rem; line-height: 1.25; }
.quote-mark { position: absolute; right: 22px; bottom: -42px; color: var(--acid); font-family: Georgia, serif; font-size: 12rem; line-height: 1; opacity: .16; }

.steps-section { background: var(--acid); }
.steps-shell { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; padding: 62px; border-radius: var(--radius-xl); background: var(--dark); color: #fff; }
.steps-intro h2 { font-size: clamp(2.7rem, 5vw, 5rem); }
.steps-intro > p:not(.eyebrow) { color: rgba(255,255,255,.56); line-height: 1.8; }
.steps-intro .button { margin-top: 22px; }
.steps-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.14); }
.steps-list li { display: grid; grid-template-columns: 50px 1fr; gap: 18px; padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.steps-list li > span { color: var(--acid); font-size: .75rem; font-weight: 900; }
.steps-list strong { font-size: 1.2rem; }
.steps-list p { margin: 7px 0 0; color: rgba(255,255,255,.48); }

.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.faq-intro h2 { font-size: clamp(2.7rem, 4.8vw, 4.8rem); }
.faq-intro > p:last-child { color: var(--muted); line-height: 1.8; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 24px 0; border: 0; background: transparent; text-align: left; font-size: 1.1rem; font-weight: 750; cursor: pointer; }
.accordion-item button i { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 34px; border: 1px solid var(--line); border-radius: 50%; font-style: normal; }
.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.accordion-panel p { overflow: hidden; margin: 0; color: var(--muted); }
.accordion-item.is-open .accordion-panel { grid-template-rows: 1fr; }
.accordion-item.is-open .accordion-panel p { padding: 0 50px 24px 0; }

.final-cta { padding-top: 30px; }
.cta-shell { position: relative; overflow: hidden; min-height: 560px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 50px; border-radius: var(--radius-xl); text-align: center; color: #fff; background: var(--dark); }
.cta-shell h2 { font-size: clamp(3.1rem, 6vw, 6.4rem); }
.cta-shell > p:not(.eyebrow) { max-width: 620px; margin: 24px auto; color: rgba(255,255,255,.56); }
.cta-shell .button { margin-top: 8px; }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .55; }
.orb-a { width: 330px; height: 330px; left: -170px; top: -70px; background: radial-gradient(circle at 30% 30%, var(--acid), transparent 70%); }
.orb-b { width: 300px; height: 300px; right: -120px; bottom: -100px; background: radial-gradient(circle at 30% 30%, #839d2b, transparent 70%); }
.cta-shell > *:not(.cta-orb) { position: relative; z-index: 1; }

.site-footer { padding: 50px 0 26px; color: rgba(255,255,255,.78); background: #111310; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .5fr .5fr; gap: 70px; padding-bottom: 45px; }
.footer-brand { color: #fff; }
.footer-grid > div:first-child p { max-width: 430px; color: rgba(255,255,255,.46); }
.footer-links { display: grid; align-content: start; gap: 10px; }
.footer-links strong { margin-bottom: 6px; color: #fff; }
.footer-links a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer-links a:hover { color: var(--acid); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.35); font-size: .78rem; }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1000px) {
  .nav-shell { grid-template-columns: 1fr auto; }
  .primary-nav, .nav-cta { display: none; }
  .menu-button { width: 48px; height: 48px; justify-self: end; display: grid; place-content: center; gap: 7px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; color: #fff; background: transparent; cursor: pointer; }
  .menu-button span:not(.sr-only) { width: 20px; height: 2px; background: currentColor; transition: .3s; }
  .primary-nav.is-open { position: absolute; left: 20px; right: 20px; top: 82px; display: grid; gap: 0; padding: 12px; border-radius: 24px; background: rgba(20,22,19,.98); box-shadow: var(--shadow); }
  .primary-nav.is-open a { padding: 14px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .hero { min-height: auto; padding-bottom: 80px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 45px; }
  .hero-visual { min-height: 580px; }
  .split-heading, .faq-grid, .steps-shell { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-large { grid-column: 1 / -1; }
  .access-card { min-height: 660px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 24px, 1180px); }
  .section { padding: 82px 0; }
  .site-header { inset: 10px 0 auto; }
  .nav-shell { min-height: 62px; padding: 7px 8px 7px 12px; }
  .brand-mark { width: 38px; }
  .hero { padding-top: 110px; }
  .hero h1 { font-size: clamp(3.35rem, 16vw, 5.4rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-metrics { gap: 10px; }
  .hero-metrics strong { font-size: 1.1rem; }
  .hero-metrics span { font-size: .7rem; }
  .hero-visual { min-height: 500px; }
  .hero-card { width: 89%; }
  .screen-window { height: 290px; }
  .screen-brand { font-size: 5rem; }
  .orbit-one { width: 440px; height: 440px; }
  .orbit-two { width: 330px; height: 330px; }
  .floating-card { min-width: 160px; padding: 10px; }
  .floating-card-a { left: -4%; top: 14%; }
  .floating-card-b { right: -4%; bottom: 10%; }
  .section-heading h2, .steps-intro h2, .faq-intro h2 { font-size: clamp(2.6rem, 12vw, 4.2rem); }
  .feature-grid, .access-grid, .bento-grid, .footer-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 390px; }
  .feature-large { grid-column: auto; }
  .access-card { min-height: 640px; }
  .bento-grid { grid-template-rows: none; }
  .bento-wide { grid-row: auto; min-height: 560px; }
  .steps-shell { padding: 34px 24px; }
  .cta-shell { min-height: 500px; padding: 42px 20px; }
  .cta-shell h2 { font-size: clamp(3rem, 14vw, 5rem); }
  .footer-grid { gap: 32px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* =========================================================
   FFTOTO BRAND THEME
   Palette derived from the supplied banner, logo, and favicon.
   Structure remains the original three-file Pomelli-style build.
   ========================================================= */
:root {
  --bg: #f2f4f5;
  --surface: #ffffff;
  --ink: #08090b;
  --muted: #60666b;
  --line: rgba(8, 9, 11, .14);
  --acid: #12b7d1;
  --acid-deep: #008ea8;
  --brand-red: #e20d17;
  --brand-red-deep: #99050b;
  --dark: #05070a;
  --dark-2: #0b1720;
  --cream: #ffffff;
  --shadow: 0 24px 70px rgba(3, 9, 14, .15);
}

body {
  background:
    radial-gradient(circle at 8% 18%, rgba(18,183,209,.055), transparent 24%),
    radial-gradient(circle at 92% 58%, rgba(226,13,23,.045), transparent 22%),
    var(--bg);
}

.site-header .nav-shell {
  border-color: rgba(255,255,255,.15);
  background: rgba(3,6,9,.90);
  box-shadow: 0 18px 55px rgba(0,0,0,.34);
}

.brand { min-width: 0; }
.brand-logo {
  display: block;
  width: 174px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
  border-radius: 8px;
}
.footer-brand .brand-logo { width: 190px; height: 54px; }

.button-dark,
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-red), #ff2d35);
  border-color: rgba(255,255,255,.10);
  box-shadow: 0 10px 30px rgba(226,13,23,.24);
}
.button-dark:hover,
.button-primary:hover {
  background: linear-gradient(135deg, #ff202a, var(--brand-red));
}
.button-light {
  color: #041017;
  background: linear-gradient(135deg, #ffffff, #dffaff);
  border-color: rgba(18,183,209,.35);
}

.hero {
  color: #fff;
  background:
    radial-gradient(circle at 79% 17%, rgba(18,183,209,.28), transparent 24%),
    radial-gradient(circle at 18% 76%, rgba(226,13,23,.22), transparent 27%),
    linear-gradient(135deg, #020304 0%, #07131c 52%, #020304 100%);
}
.hero::before {
  background-image:
    linear-gradient(rgba(18,183,209,.048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226,13,23,.042) 1px, transparent 1px);
}
.hero h1 em,
.section-heading h2 em { color: var(--acid); }
.hero-lead,
.eyebrow { color: rgba(255,255,255,.70); }
.eyebrow span { background: linear-gradient(90deg, var(--brand-red), var(--acid)); }
.hero-metrics div { border-top-color: rgba(18,183,209,.28); }

.hero-card {
  border-color: rgba(18,183,209,.24);
  background: linear-gradient(145deg, rgba(18,183,209,.10), rgba(226,13,23,.075));
  box-shadow: 0 38px 120px rgba(0,0,0,.56), 0 0 40px rgba(18,183,209,.08);
}
.live-dot {
  background: var(--brand-red);
  box-shadow: 0 0 18px var(--brand-red);
}
.micro-pill { border-color: rgba(18,183,209,.35); color: #dffaff; }
.screen-window {
  background: #020304;
  border: 1px solid rgba(18,183,209,.28);
}
.hero-banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.screen-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.28), transparent 34%),
    radial-gradient(circle at center, transparent 48%, rgba(0,0,0,.24) 100%);
  pointer-events: none;
}
.visual-orbit { border-color: rgba(18,183,209,.25); }
.orbit-two { border-color: rgba(226,13,23,.20); }
.floating-card {
  border-color: rgba(18,183,209,.22);
  background: rgba(4,10,15,.91);
}
.floating-icon {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-red), #ff4249);
}
.floating-card-b .floating-icon {
  color: #001117;
  background: linear-gradient(135deg, #8cefff, var(--acid));
}
.round-action {
  color: #001117;
  background: linear-gradient(135deg, #7cecff, var(--acid));
}

.marquee-strip {
  color: #fff;
  background: linear-gradient(90deg, var(--brand-red-deep), var(--brand-red), #ff323a);
  border-block-color: rgba(255,255,255,.12);
}
.marquee-track i { color: var(--acid); }

.section-heading h2 em { color: var(--acid-deep); }
.feature-card,
.bento-card { background: rgba(255,255,255,.82); }
.feature-large,
.dark-card,
.steps-shell,
.cta-shell {
  color: #fff;
  background:
    radial-gradient(circle at 84% 18%, rgba(18,183,209,.15), transparent 24%),
    radial-gradient(circle at 15% 83%, rgba(226,13,23,.15), transparent 25%),
    linear-gradient(145deg, #030507, #0b1720);
}
.speed-ring { border-color: rgba(18,183,209,.30); }
.speed-ring.r2 { border-color: rgba(226,13,23,.28); }
.speed-center {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-red), #ff3840);
}
.icon-tile {
  color: #001117;
  background: linear-gradient(135deg, #8eeeff, var(--acid));
}
.feature-card:nth-child(3) .icon-tile {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-red), #ff3f47);
}

.access-section {
  color: #fff;
  background:
    radial-gradient(circle at 80% 12%, rgba(18,183,209,.18), transparent 26%),
    radial-gradient(circle at 12% 82%, rgba(226,13,23,.16), transparent 24%),
    #030507;
}
.browser-card {
  color: #001017;
  background: linear-gradient(145deg, #8eefff 0%, #12b7d1 72%, #008ea8 100%);
}
.app-card {
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 10%, rgba(226,13,23,.13), transparent 25%),
    linear-gradient(145deg, #ffffff, #f0f3f4);
}
.browser-mockup { border-color: #020304; }
.browser-content {
  background:
    radial-gradient(circle at 70% 28%, rgba(18,183,209,.18), transparent 25%),
    linear-gradient(145deg, #020304, #0b1720);
}
.browser-logo-image {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 24px;
  border: 2px solid rgba(18,183,209,.38);
  background: #fff;
}
.browser-button {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-red), #ff3139);
}
.phone-mockup,
.phone-speaker { background: #020304; }
.phone-screen {
  background:
    radial-gradient(circle at 70% 20%, rgba(18,183,209,.22), transparent 28%),
    radial-gradient(circle at 24% 78%, rgba(226,13,23,.20), transparent 28%),
    #0b1720;
}
.app-icon-image {
  width: 90px;
  height: 90px;
  margin-bottom: 18px;
  object-fit: cover;
  border-radius: 27px;
  border: 2px solid rgba(255,255,255,.18);
  background: #fff;
}
.app-progress span { background: linear-gradient(90deg, var(--brand-red), var(--acid)); }
.browser-card .card-link { border-top-color: rgba(0,0,0,.20); }
.app-card .card-link { border-top-color: rgba(226,13,23,.20); }

.pulse-core {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-red), #ff333b);
  box-shadow: 0 0 0 24px rgba(18,183,209,.15);
}
.device { background: var(--acid); }
.device.tablet { background: #e8fbff; }
.device.mobile { background: #fff; }

.orb-a {
  background: radial-gradient(circle at 30% 30%, rgba(18,183,209,.92), transparent 70%);
}
.orb-b {
  background: radial-gradient(circle at 30% 30%, rgba(226,13,23,.88), transparent 70%);
}

.site-footer { background: #020304; }
.footer-links a:hover { color: var(--acid); }

@media (max-width: 760px) {
  .brand-logo { width: 132px; height: 40px; }
  .footer-brand .brand-logo { width: 160px; height: 46px; }
  .primary-nav.is-open { background: rgba(2,3,4,.985); }
}



/* Improved screen embedding for browser and APK mockups */
.access-grid {
  align-items: stretch;
}
.browser-mockup {
  position: relative;
  width: min(92%, 540px);
  aspect-ratio: 16 / 10;
  margin: 54px auto 28px;
  border: 8px solid #050607;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0,0,0,.28);
  transform: perspective(1400px) rotateX(8deg) rotateY(-5deg) rotateZ(-3deg);
  overflow: hidden;
  background: #ffffff;
}
.browser-bar {
  position: relative;
  z-index: 2;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  background: linear-gradient(180deg, #ffffff, #f0f0f0);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.browser-content,
.browser-content-image {
  position: relative;
  height: calc(100% - 48px);
  overflow: hidden;
  background: #080b10;
}
.browser-preview-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}
.browser-mockup::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.65);
  filter: blur(1px);
  opacity: .9;
}
.phone-mockup {
  position: relative;
  width: 246px;
  height: 486px;
  margin: 42px auto 24px;
  padding: 10px;
  border-radius: 42px;
  background: linear-gradient(180deg, #0d0d0e, #000000 70%);
  box-shadow: 0 35px 70px rgba(0,0,0,.30);
  transform: perspective(1400px) rotateY(7deg) rotateZ(3deg);
}
.phone-speaker {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  margin: 0;
  border-radius: 0 0 18px 18px;
  background: #050607;
  z-index: 3;
}
.phone-screen,
.phone-screen-image {
  position: relative;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #090909;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.phone-preview-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  border-radius: 32px;
}
.phone-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0) 16%, rgba(255,255,255,0) 82%, rgba(0,0,0,.08));
}
@media (max-width: 900px) {
  .browser-mockup {
    width: 94%;
    transform: rotate(-2deg);
  }
  .phone-mockup {
    width: 226px;
    height: 446px;
    transform: rotate(2deg);
  }
}


/* FFTOTO intent-led content refinements */
.intent-icon {
  font-size: .78rem !important;
  font-weight: 900;
  letter-spacing: .12em;
}
.hero-copy h1 { max-width: 760px; }
.feature-number { min-width: 62px; width: auto; padding-inline: 12px; }
@media (max-width: 760px) {
  .hero-copy h1 { max-width: 100%; }
}
