/* =========================================================
   Maxi 80 — landing page
   Palette pulled from the neon wordmark + the app UI.
   Rainbow is spent ONLY on the signature (EQ + rules).
   ========================================================= */
:root {
  --ink:        #05040a;      /* near-black, faint aubergine */
  --ink-2:      #0c0912;      /* raised surface */
  --ink-3:      #14101d;      /* cards */
  --line:       #26212f;      /* hairlines */
  --white:      #f7f4ff;
  --muted:      #a49db8;      /* body-dim */
  --muted-2:    #6f6883;      /* captions */

  --amber:      #ffb020;      /* app gold */
  --amber-hi:   #ffca5c;
  --orange:     #ff8a1e;      /* app play button */

  /* neon spectrum, straight off the logo, left→right */
  --n1: #b14dff;  /* violet */
  --n2: #4d7bff;  /* blue */
  --n3: #2fd05a;  /* green */
  --n4: #ffe14d;  /* yellow */
  --n5: #ff7a1a;  /* orange */
  --n6: #ff3b6b;  /* the red apostrophe */

  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body:    "Manrope", system-ui, sans-serif;
  --font-mono:    "Space Mono", ui-monospace, monospace;

  --maxw: 1160px;
  --radius: 20px;
  --ease: cubic-bezier(.16,.84,.32,1);
}

/* ---------- reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.04; letter-spacing: -.01em; }

/* ---------- shared bits ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: .6em;
  margin-bottom: 1.1rem;
}
.on-air {
  width: 9px; height: 9px; border-radius: 50%;
  background: #ff4d4d;
  box-shadow: 0 0 0 0 rgba(255,77,77,.7);
  animation: pulse 1.9s var(--ease) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,77,77,.65); }
  70%  { box-shadow: 0 0 0 9px rgba(255,77,77,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,77,77,0); }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-weight: 700; font-size: .95rem;
  padding: .7rem 1.3rem; border-radius: 999px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .2s var(--ease), background .2s, box-shadow .2s;
}
.btn--amber { background: var(--amber); color: #241700; box-shadow: 0 6px 24px -8px var(--amber); }
.btn--amber:hover { transform: translateY(-2px); background: var(--amber-hi); }
.btn--ghost { border-color: var(--line); color: var(--white); background: transparent; }
.btn--ghost:hover { border-color: var(--amber); color: var(--amber); }

/* ---------- section scaffolding ---------- */
section { padding: 6.5rem 1.5rem; }
.section-head { max-width: var(--maxw); margin: 0 auto 3.5rem; }
.section-head--center { text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.section-lede { color: var(--muted); font-size: 1.15rem; max-width: 46ch; margin-top: 1rem; }
.section-head--center .section-lede { margin-left: auto; margin-right: auto; }

/* =========================================================
   SIGNATURE — neon graphic equaliser
   ========================================================= */
.eq {
  display: flex; align-items: flex-end; gap: 5px;
  height: 84px; margin: 2rem 0 2.5rem;
}
.eq span {
  flex: 1;
  min-width: 3px;
  border-radius: 3px 3px 1px 1px;
  background: currentColor;
  color: var(--n2);
  box-shadow: 0 0 8px currentColor, 0 0 18px currentColor;
  transform-origin: bottom;
  animation: bounce 1.1s var(--ease) infinite alternate;
  height: 30%;
}
/* rainbow distribution across the bars */
.eq span:nth-child(6n+1){ color: var(--n1); }
.eq span:nth-child(6n+2){ color: var(--n2); }
.eq span:nth-child(6n+3){ color: var(--n3); }
.eq span:nth-child(6n+4){ color: var(--n4); }
.eq span:nth-child(6n+5){ color: var(--n5); }
.eq span:nth-child(6n){   color: var(--n6); }
/* varied heights + delays so it reads as spectrum, not a wave */
.eq span:nth-child(3n+1){ animation-duration: .9s;  animation-delay: -.2s; }
.eq span:nth-child(3n+2){ animation-duration: 1.3s; animation-delay: -.55s; }
.eq span:nth-child(3n){   animation-duration: 1.05s; animation-delay: -.8s; }
.eq span:nth-child(4n){   animation-duration: 1.5s; animation-delay: -.35s; }
@keyframes bounce { from { height: 18%; } to { height: 100%; } }
.eq--tall { height: 160px; gap: 7px; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(5,4,10,.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.is-stuck { border-bottom-color: var(--line); background: rgba(5,4,10,.82); }
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
  padding: .75rem 1.5rem;
}
.nav__logo { height: 30px; width: auto; }
.nav__links { display: flex; gap: 1.6rem; margin-left: auto; }
.nav__links a {
  font-size: .92rem; color: var(--muted); font-weight: 600;
  transition: color .2s;
}
.nav__links a:hover { color: var(--white); }
.nav__cta { margin-left: .4rem; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; padding-top: 4rem; padding-bottom: 4rem; overflow: hidden; }
.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 55% at 18% 12%, rgba(177,77,255,.20), transparent 70%),
    radial-gradient(50% 50% at 92% 30%, rgba(255,122,26,.16), transparent 70%),
    radial-gradient(70% 60% at 60% 100%, rgba(77,123,255,.12), transparent 70%);
}
.hero__grid {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 3rem; align-items: center;
}
.hero__title {
  font-size: clamp(2.7rem, 6.5vw, 5rem);
  font-weight: 800;
  margin: .3rem 0 0;
}
.hero__title-accent {
  background: linear-gradient(100deg, var(--n1), var(--n2) 30%, var(--n4) 62%, var(--n5) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero__lede { color: var(--muted); font-size: 1.15rem; max-width: 42ch; margin-top: 1.5rem; }
.hero__lede strong { color: var(--white); }
.hero__note { font-family: var(--font-mono); font-size: .8rem; color: var(--muted-2); margin-top: 1.2rem; }

.store-row { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: .5rem; }
.store-row--center { justify-content: center; margin-top: 2.5rem; }
.store-badge {
  display: inline-flex; align-items: center; gap: .7rem;
  background: var(--ink-3); border: 1px solid var(--line);
  padding: .6rem 1.1rem; border-radius: 14px;
  transition: transform .2s var(--ease), border-color .2s, background .2s;
}
.store-badge:hover { transform: translateY(-2px); border-color: var(--amber); background: #1a1526; }
.store-badge svg { width: 26px; height: 26px; fill: var(--white); flex: none; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.15; }
.store-badge small { font-size: .66rem; color: var(--muted); letter-spacing: .02em; }
.store-badge strong { font-size: 1.05rem; font-weight: 700; }

/* device */
.hero__device { display: flex; justify-content: center; }
.phone {
  position: relative;
  width: min(300px, 74vw);
  border-radius: 42px;
  padding: 9px;
  background: linear-gradient(160deg, #2a2438, #0c0912);
  border: 1px solid #342d45;
  box-shadow:
    0 40px 80px -30px rgba(0,0,0,.9),
    0 0 60px -20px rgba(177,77,255,.4);
}
.phone img { border-radius: 34px; width: 100%; }
.phone--sm { width: min(270px, 70vw); }
.hero__device .phone { animation: float 7s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* hero phone crossfade (iOS <-> Android) */
.phone__screens { position: relative; aspect-ratio: 1320 / 2868; border-radius: 34px; overflow: hidden; }
.phone__shot {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  opacity: 0; transition: opacity .8s var(--ease);
  border-radius: 0;
}
.phone__shot.is-active { opacity: 1; }
.phone__badge {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  font-family: var(--font-mono); font-size: .66rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--white);
  background: rgba(5,4,10,.6); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.16);
  padding: .3rem .7rem; border-radius: 999px;
  pointer-events: none;
}

/* =========================================================
   ECRANS (screens grid)
   ========================================================= */
.screens { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.screens__grid {
  max-width: var(--maxw); margin: 0 auto;
  list-style: none;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem;
}
.screen-card {
  background: var(--ink-3); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem;
  transition: transform .25s var(--ease), border-color .25s;
}
.screen-card:hover { transform: translateY(-4px); border-color: #3a3350; }
.screen-card__ico { font-size: 1.8rem; display: block; margin-bottom: .8rem; }
.screen-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.screen-card p { color: var(--muted); font-size: .95rem; }

/* =========================================================
   FEATURE ROWS
   ========================================================= */
.feature {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: center;
}
.feature--flip .feature__media { order: 2; }
.feature__copy h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 1.2rem; }
.feature__copy p { color: var(--muted); font-size: 1.1rem; }
.feature__copy p strong { color: var(--white); }
.feature__copy em { color: var(--amber); font-style: normal; font-weight: 600; }
.feature__media { display: flex; justify-content: center; }

.frame-wide {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.85);
  background: #b6a8ab;
}

.ticks { list-style: none; margin-top: 1.6rem; display: grid; gap: .8rem; }
.ticks li {
  position: relative; padding-left: 1.9rem;
  color: var(--white); font-weight: 500;
}
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .35em;
  width: 1.05rem; height: 1.05rem; border-radius: 50%;
  background: var(--amber);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/72% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/72% no-repeat;
}

.mini-stats { display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.mini-stats div { display: flex; flex-direction: column; }
.mini-stats strong {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  color: var(--amber); line-height: 1;
}
.mini-stats span { font-size: .82rem; color: var(--muted); margin-top: .35rem; }

/* =========================================================
   TV / SALON
   ========================================================= */
.tv { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tv__screens {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.tv-frame { position: relative; }
.tv-frame img {
  border-radius: 14px; border: 1px solid var(--line);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.9);
  width: 100%;
}
.tv-frame figcaption {
  font-family: var(--font-mono); font-size: .78rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
  text-align: center; margin-top: 1rem;
}

/* =========================================================
   ROUTE / CAR
   ========================================================= */
.road {
  max-width: var(--maxw); margin: 0 auto;
}
.road__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  background: linear-gradient(120deg, var(--ink-3), #0a0710);
  border: 1px solid var(--line); border-radius: 28px;
  padding: 3.5rem;
  position: relative; overflow: hidden;
}
.road__copy h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 1.2rem; }
.road__copy p { color: var(--muted); font-size: 1.1rem; }
.road__copy strong { color: var(--white); }
.chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.8rem; }
.chip {
  font-family: var(--font-mono); font-size: .78rem;
  padding: .45rem .9rem; border-radius: 999px;
  border: 1px solid var(--line); color: var(--muted);
  background: rgba(255,255,255,.02);
}
.road__eq { display: flex; justify-content: center; align-items: center; }

/* =========================================================
   EXTRAS
   ========================================================= */
.extras__grid {
  max-width: var(--maxw); margin: 0 auto;
  list-style: none;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem;
}
.extras__grid li {
  background: var(--ink-3); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.8rem 2rem;
  border-left: 3px solid var(--amber);
}
.extras__grid h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.extras__grid p { color: var(--muted); }

/* =========================================================
   CTA
   ========================================================= */
.cta {
  position: relative; text-align: center; overflow: hidden;
  padding-top: 7rem; padding-bottom: 7rem;
}
.cta__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(50% 60% at 50% 0%, rgba(255,176,32,.16), transparent 70%),
    radial-gradient(60% 60% at 50% 100%, rgba(177,77,255,.14), transparent 70%);
}
.cta__icon {
  position: relative; width: 96px; height: 96px; border-radius: 22px;
  margin: 0 auto 1.8rem; border: 1px solid var(--line);
  box-shadow: 0 0 50px -10px rgba(255,176,32,.5);
}
.cta h2 { position: relative; font-size: clamp(2rem, 5vw, 3.4rem); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--ink-2); border-top: 1px solid var(--line); padding: 4rem 1.5rem 3rem; }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: start;
}
.footer__brand img { height: 34px; margin-bottom: 1.2rem; }
.footer__brand p { color: var(--muted); font-size: .98rem; max-width: 44ch; margin-bottom: 1.4rem; }
.footer__brand strong { color: var(--white); }
.footer__meta { text-align: right; }
.footer__tag {
  font-family: var(--font-display); font-weight: 600; font-size: 1.15rem;
  color: var(--white); margin-bottom: 1rem;
}
.footer__contact { margin-bottom: 1.4rem; }
.footer__contact-lede { color: var(--muted); font-size: .95rem; margin-bottom: .8rem; }
.footer__small { color: var(--muted-2); font-size: .85rem; }
.footer__small a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; transition: color .2s; }
.footer__small a:hover { color: var(--amber); }

/* =========================================================
   LEGAL / PRIVACY PAGE
   ========================================================= */
.legal { padding-top: 5rem; padding-bottom: 6rem; }
.legal__inner { max-width: 720px; margin: 0 auto; }
.legal__title { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 800; margin: .3rem 0 0; }
.legal__lede { color: var(--muted); font-size: 1.2rem; margin-top: 1.6rem; }
.legal__lede strong { color: var(--white); }
.legal__prose { margin-top: 3rem; }
.legal__prose h2 {
  font-size: 1.3rem; margin: 2.6rem 0 .9rem;
  padding-top: 2rem; border-top: 1px solid var(--line);
}
.legal__prose h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.legal__prose p { color: var(--muted); font-size: 1.05rem; }
.legal__prose > .btn { margin-top: 1.2rem; }

/* cross-mark variant of the tick list (for "what we don't do") */
.ticks--cross li { color: var(--muted); font-weight: 500; }
.ticks--cross li::before {
  background: var(--amber);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 6l12 12M18 6L6 18' fill='none' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") center/66% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 6l12 12M18 6L6 18' fill='none' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") center/66% no-repeat;
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .screens__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__meta { text-align: left; }
}
@media (max-width: 820px) {
  section { padding: 4.5rem 1.3rem; }
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__copy .eyebrow, .hero .eq { justify-content: center; }
  .hero .eq { max-width: 340px; margin-left: auto; margin-right: auto; }
  .hero__lede, .hero__title { margin-left: auto; margin-right: auto; }
  .store-row { justify-content: center; }
  .hero__device { order: -1; }
  .feature { grid-template-columns: 1fr; gap: 2.2rem; }
  .feature--flip .feature__media { order: 0; }
  .feature__copy { text-align: center; }
  .ticks { display: inline-grid; text-align: left; }
  .mini-stats { justify-content: center; }
  .tv__screens { grid-template-columns: 1fr; }
  .road__inner { grid-template-columns: 1fr; padding: 2.2rem; text-align: center; }
  .chips { justify-content: center; }
  .road__eq { display: none; }
  .extras__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .nav__links { display: none; }
  .screens__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   A11Y — reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; transition: none !important; }
  .eq span { height: 60%; }
  .reveal { opacity: 1; transform: none; }
}
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 4px; }
