/* =========================================================================
   Bounce Back Smart — shared stylesheet  (DARK / high-end tech theme)
   -------------------------------------------------------------------------
   EDIT QUICKLY:
   - All brand colors live in the :root block below. The whole site is dark by
     changing these few values. --accent + --accent-2 drive every glow,
     gradient, button, and highlight. Swap them to your exact palette and the
     entire site retunes.
   - A light-theme backup is saved as styles-light-backup.css if you ever want
     to revert.
   ========================================================================= */

:root {
  /* ---- Dark palette (edit to match your exact brand) ---- */
  --bg:          #070a12;   /* page base — blue-black              */
  --bg-soft:     #0b111d;   /* alternating section                 */
  --bg-ink:      #04060c;   /* deepest band (CTA / footer)         */
  --surface:     #111726;   /* card surface                        */
  --surface-2:   #161d2f;   /* raised / featured surface           */

  --ink:         #eef1f8;   /* primary text (near-white)           */
  --muted:       #98a1b4;   /* secondary text                      */
  --faint:       #6b7488;   /* tertiary / captions                 */

  --line:        rgba(255,255,255,.08);  /* hairline border        */
  --line-2:      rgba(255,255,255,.14);  /* stronger border        */

  --accent:      #17c1d6;   /* primary brand / buttons / links     */
  --accent-2:    #45e2ee;   /* gradient + glow companion (cyan)    */
  --accent-press:#12a8bc;   /* hover / pressed                     */
  --accent-soft: rgba(23,193,214,.14);   /* tint chips / icons     */
  --glow:        rgba(23,193,214,.40);   /* accent glow            */
  --glow-2:      rgba(69,226,238,.30);   /* cyan glow              */
  --success:     #34d8a6;   /* checkmarks                          */

  --grad: linear-gradient(100deg, var(--accent), var(--accent-2));

  /* ---- Type ---- */
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;

  /* ---- Shape & rhythm ---- */
  --radius:      20px;
  --radius-sm:   14px;
  --radius-pill: 999px;
  --maxw: 1160px;
  --gutter: 24px;
  --section-y: 104px;
  --shadow:     0 30px 80px -24px rgba(0,0,0,.7);
  --shadow-sm:  0 10px 30px -12px rgba(0,0,0,.6);
  --ring-inset: inset 0 1px 0 rgba(255,255,255,.06);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* Ambient glow wash behind everything */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60% 50% at 78% -8%, rgba(23,193,214,.18), transparent 60%),
    radial-gradient(50% 40% at 8% 4%, rgba(69,226,238,.10), transparent 60%);
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--accent-2); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 .4em;
  letter-spacing: -0.025em;
  font-weight: 800;
}
p { margin: 0 0 1em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); position: relative; }
.section { padding: var(--section-y) 0; position: relative; }
.section--soft { background: var(--bg-soft); }
.section--ink { background: var(--bg-ink); }
.section--tight { padding: 72px 0; }

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .76rem;
  font-weight: 700;
  color: transparent;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  margin: 0 0 16px;
}
.lead { font-size: 1.16rem; color: var(--muted); max-width: 640px; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* Gradient text helper */
.grad-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: .98rem;
  padding: 13px 28px; border-radius: var(--radius-pill);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--accent); color: #04060c;
  box-shadow: 0 10px 30px -8px var(--glow), var(--ring-inset);
}
.btn--primary:hover { background: var(--accent-press); color: #04060c; box-shadow: 0 16px 44px -8px var(--glow); }
.btn--ghost { background: rgba(255,255,255,.03); color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--accent); color: #fff; }
.btn--light { background: rgba(255,255,255,.06); color: var(--ink); border-color: var(--line); }
.btn--light:hover { color: #fff; border-color: var(--accent); }
.btn--lg { padding: 16px 34px; font-size: 1.05rem; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7,10,18,.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav__logo img { height: 46px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a:not(.btn) { color: var(--muted); font-weight: 500; font-size: .98rem; }
.nav__links a:not(.btn):hover { color: var(--ink); }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; width: 44px; height: 44px; padding: 10px; }
.nav__toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; margin: 5px 0; transition: .25s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding: 96px 0 84px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.hero h1 { font-size: clamp(2.5rem, 5.2vw, 4rem); }
.hero h1 .accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; }
.hero__media { position: relative; }
.hero__media::after { /* glow bloom behind hero image */
  content: ""; position: absolute; inset: -8% -6% -8% -6%; z-index: -1;
  background: radial-gradient(60% 60% at 60% 45%, var(--glow), transparent 70%);
  filter: blur(20px);
}
.hero__img {
  border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: var(--shadow), var(--ring-inset);
  -webkit-mask-image: linear-gradient(to bottom, #000 86%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 86%, transparent 100%);
}
.stats { display: flex; gap: 40px; margin-top: 38px; flex-wrap: wrap; }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: 2.1rem; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { color: var(--faint); font-size: .9rem; margin-top: 8px; letter-spacing: .01em; }

/* Full-bleed hero: headline overlaps the app-lineup image (homepage) */
.hero-x {
  position: relative;
  min-height: clamp(560px, 80vh, 840px);
  display: grid; align-items: center;
  overflow: hidden;
  background: var(--bg-ink);
  margin-top: -76px;          /* bleed up under the sticky header */
  padding-top: 76px;
}
.hero-x__bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-x__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(56% 56% at 50% 46%, rgba(4,6,12,.78), rgba(4,6,12,.32) 68%, rgba(4,6,12,0) 100%),
    linear-gradient(180deg, rgba(7,10,18,.62) 0%, rgba(7,10,18,.18) 28%, rgba(7,10,18,.16) 64%, rgba(4,6,12,.78) 100%);
}
.hero-x__inner {
  position: relative; z-index: 2;
  text-align: center; max-width: 900px;
  padding-top: 48px; padding-bottom: 48px;
  margin-inline: auto;
}
.hero-x h1 {
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  text-shadow: 0 2px 34px rgba(0,0,0,.6);
}
.hero-x h1 .accent {
  display: block;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-x .lead {
  margin: 20px auto 0; max-width: 660px; color: #dde2ee;
  text-shadow: 0 1px 18px rgba(0,0,0,.7);
}
.hero-x__cta { margin: 30px 0 0; }
.hero-x .stats { justify-content: center; margin-top: 42px; }
.hero-x .stat__label { color: #b6bdcd; }
.hero-x h1, .hero-x .lead, .hero-x__cta, .hero-x .stats {
  animation: rise .7s cubic-bezier(.2,.7,.2,1) both;
}
.hero-x .lead { animation-delay: .06s; }
.hero-x__cta { animation-delay: .12s; }
.hero-x .stats { animation-delay: .18s; }
@media (max-width: 700px) {
  /* The wide app-lineup image crops awkwardly on phones and its own text
     collides with the headline. Drop it on mobile for a clean, focused hero —
     the app screenshots are showcased in the sections just below. */
  .hero-x {
    min-height: auto;
    padding: 112px 0 56px;
    background:
      radial-gradient(120% 70% at 50% 0%, rgba(23,193,214,.16), transparent 62%),
      var(--bg-ink);
  }
  .hero-x__bg, .hero-x__scrim { display: none; }
  .hero-x__inner { padding-top: 6px; padding-bottom: 6px; }
  .hero-x h1 { font-size: clamp(2.1rem, 9vw, 3rem); text-shadow: none; }
  .hero-x .lead { font-size: 1.04rem; text-shadow: none; }
  .hero-x__cta { margin-top: 28px; }
  .hero-x .stats { margin-top: 34px; gap: 26px; }
}

/* Interior page hero */
.page-hero { padding: 92px 0 40px; text-align: center; }
.page-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.3rem); max-width: 900px; margin-inline: auto; }
.page-hero .lead { margin-inline: auto; }
.app-availability { display: flex; gap: 14px; justify-content: center; align-items: center; margin-top: 28px; flex-wrap: wrap; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step { text-align: center; }
.step__media { position: relative; width: fit-content; margin: 0 auto 24px; }
.step__media::after {
  content: ""; position: absolute; inset: -14%; z-index: 0;
  background: radial-gradient(50% 50% at 50% 40%, var(--glow), transparent 70%);
  filter: blur(26px); opacity: .8;
}
.step__img {
  position: relative; z-index: 1; max-width: 244px; border-radius: 28px;
  border: 1px solid var(--line-2); box-shadow: var(--shadow);
}
.step h3 { font-size: 1.32rem; }
.step p { color: var(--muted); max-width: 300px; margin-inline: auto; }

/* ---------- Coach ---------- */
.coach { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.coach__media { position: relative; }
.coach__media::after {
  content: ""; position: absolute; inset: -6%; z-index: -1;
  background: radial-gradient(55% 55% at 45% 50%, var(--glow), transparent 70%);
  filter: blur(28px);
}
.coach__img { border-radius: var(--radius); border: 1px solid var(--line-2); box-shadow: var(--shadow); }
.coach h2 { font-size: clamp(2rem, 3.8vw, 2.8rem); }
.tick-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.tick-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); }
.tick-list .tick {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent-2);
  display: grid; place-items: center; font-size: .8rem; font-weight: 800; margin-top: 2px;
  border: 1px solid var(--line);
}

/* ---------- Feature grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.feature {
  background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--ring-inset);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.feature:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: var(--shadow-sm), var(--ring-inset); }
.feature__icon {
  width: 54px; height: 54px; border-radius: 15px; background: var(--accent-soft);
  border: 1px solid var(--line); display: grid; place-items: center; margin-bottom: 18px; color: var(--accent-2);
}
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.26rem; margin-bottom: .35em; }
.feature p { color: var(--muted); margin: 0; }

/* ---------- Chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }
.chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 12px 22px; font-weight: 600; color: var(--ink); box-shadow: var(--ring-inset);
}
.chip .tick { color: var(--success); font-weight: 800; }

/* ---------- Testimonials ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote {
  background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--ring-inset); display: flex; flex-direction: column;
  transition: transform .2s ease, border-color .2s ease;
}
.quote:hover { transform: translateY(-4px); border-color: var(--line-2); }
.quote__stars { color: #ffc24b; letter-spacing: 3px; margin-bottom: 14px; }
.quote p { font-size: 1.06rem; color: var(--ink); }
.quote__who { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.quote__name { font-family: var(--font-display); font-weight: 700; }
.quote__role { color: var(--faint); font-size: .9rem; }

/* ---------- Download CTA ---------- */
.section--ink { overflow: hidden; }
.section--ink::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(50% 80% at 80% 50%, var(--glow), transparent 60%);
  opacity: .7;
}
.section--ink .container { z-index: 1; }
.download { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; }
.download h2 { font-size: clamp(2rem, 3.8vw, 2.8rem); }
.download p { color: var(--muted); max-width: 460px; }
.store-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.05); color: var(--ink);
  border: 1px solid var(--line-2); border-radius: 14px; padding: 11px 22px;
  font-family: var(--font-display); transition: transform .15s ease, border-color .15s ease;
}
.store-btn:hover { transform: translateY(-2px); color: #fff; border-color: var(--accent); }
.store-btn small { display: block; font-size: .68rem; color: var(--faint); line-height: 1; }
.store-btn strong { display: block; font-size: 1.02rem; line-height: 1.25; }
.download__media { position: relative; justify-self: center; }
.download__media::after {
  content: ""; position: absolute; inset: -10%; z-index: -1;
  background: radial-gradient(50% 50% at 50% 45%, var(--glow), transparent 70%); filter: blur(30px);
}
.download__phone { max-width: 280px; }

/* ---------- Pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 26px; max-width: 840px; margin: 0 auto; }
.plan {
  background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px; box-shadow: var(--ring-inset); position: relative;
}
.plan--featured {
  border-color: transparent;
  background:
    linear-gradient(180deg, var(--surface-2), var(--bg-soft)) padding-box,
    var(--grad) border-box;
  box-shadow: 0 30px 80px -30px var(--glow), var(--ring-inset);
}
.plan__badge {
  position: absolute; top: -13px; right: 26px; background: var(--grad); color: #04060c;
  font-family: var(--font-display); font-weight: 800; font-size: .76rem;
  padding: 6px 14px; border-radius: var(--radius-pill);
}
.plan h3 { font-size: 1.36rem; }
.plan__price { display: flex; align-items: baseline; gap: 6px; margin: 8px 0 4px; }
.plan__price .amt { font-family: var(--font-display); font-weight: 800; font-size: 2.7rem; color: var(--ink); }
.plan__price .per { color: var(--faint); }
.plan__sub { color: var(--muted); margin-bottom: 24px; }
.plan .btn { width: 100%; margin-bottom: 26px; }
.plan__incl-title { font-family: var(--font-display); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--faint); margin-bottom: 16px; }
.plan ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.plan li { display: flex; gap: 10px; align-items: center; color: var(--ink); }
.plan li .tick { color: var(--success); font-weight: 800; }

/* ---------- About: story + team ---------- */
.story-img { border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); margin: 44px 0; width: 100%; }
.story-text p { font-size: 1.14rem; color: var(--muted); max-width: 820px; }
.story-text strong, .story-text b { color: var(--ink); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.member {
  background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--ring-inset); display: flex; flex-direction: column;
  transition: transform .2s ease, border-color .2s ease;
}
.member:hover { transform: translateY(-4px); border-color: var(--line-2); }
.member__photo { aspect-ratio: 4/5; object-fit: cover; width: 100%; background: var(--surface); }
.member__body { padding: 24px 26px 28px; }
.member__name { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; margin-bottom: 4px; }
.member__role { color: transparent; background: var(--grad); -webkit-background-clip: text; background-clip: text; font-weight: 600; font-size: .88rem; margin-bottom: 12px; }
.member__bio { color: var(--muted); font-size: .96rem; margin: 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; background: rgba(255,255,255,.02); overflow: hidden; transition: border-color .2s ease; }
.faq__item.is-open { border-color: var(--line-2); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: var(--ink);
  padding: 22px 56px 22px 24px; position: relative;
}
.faq__q::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--accent-2); font-weight: 400; transition: transform .25s;
}
.faq__item.is-open .faq__q::after { content: "\2212"; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { color: var(--muted); padding: 0 24px 24px; margin: 0; }

/* ---------- Legal ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { font-size: 1.3rem; margin-top: 2em; color: var(--ink); }
.legal h3 { font-size: 1.05rem; margin-top: 1.4em; color: var(--ink); }
.legal p, .legal li { color: var(--muted); }
.legal ul { padding-left: 1.2em; }
.legal .effective { color: var(--ink); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-ink); padding: 80px 0 42px; border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand img { height: 36px; margin-bottom: 18px; }
.footer__tag { color: var(--muted); max-width: 280px; }
.footer__mail { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 600; margin-top: 10px; }
.footer__mail:hover { color: var(--accent-2); }
.footer h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; color: var(--faint); margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer ul a { color: var(--muted); font-size: .96rem; }
.footer ul a:hover { color: var(--ink); }
.footer__bottom { border-top: 1px solid var(--line); margin-top: 52px; padding-top: 28px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--faint); font-size: .88rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  :root { --section-y: 76px; }
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 6px;
    background: rgba(7,10,18,.96); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 16px var(--gutter) 22px; box-shadow: var(--shadow);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a:not(.btn) { padding: 10px 4px; }
  .nav__links .btn { margin-top: 6px; }

  .hero__grid, .coach, .download { grid-template-columns: 1fr; gap: 40px; }
  .hero__media, .coach__media { order: -1; }
  .steps, .cards-3, .team-grid { grid-template-columns: 1fr; }
  .feature-grid, .plans { grid-template-columns: 1fr; }
  .download__phone { max-width: 230px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .stats { gap: 26px; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* ---------- Motion / a11y ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.hero h1, .hero .lead, .hero .stats { animation: rise .7s cubic-bezier(.2,.7,.2,1) both; }
.hero .lead { animation-delay: .06s; }
.hero .stats { animation-delay: .12s; }

:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; border-radius: 6px; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}


/* ---------- Phone device frame (download CTA) ---------- */
.device { position: relative; width: 100%; max-width: 268px; margin: 0 auto; aspect-ratio: 1206 / 2622; background: #0a0d15; border: 1px solid var(--line-2); border-radius: 46px; padding: 9px; box-shadow: var(--shadow), inset 0 0 0 2px rgba(255,255,255,.05); }
.device__screen { width: 100%; height: 100%; object-fit: cover; border-radius: 38px; display: block; }
.device__island { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 33%; height: 22px; background: #05070c; border-radius: 999px; z-index: 2; }
.device::after { content: ""; position: absolute; inset: -12%; z-index: -1; background: radial-gradient(50% 50% at 50% 45%, var(--glow), transparent 70%); filter: blur(30px); }
.download__media::after { content: none; }

/* ---------- Download chooser modal (desktop) ---------- */
.dl-modal { position: fixed; inset: 0; z-index: 200; display: none; place-items: center; padding: 20px; background: rgba(4,6,12,.74); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.dl-modal.is-open { display: grid; }
.dl-modal__card { background: linear-gradient(180deg, var(--surface-2), var(--bg-soft)); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 34px 30px 26px; max-width: 430px; width: 100%; text-align: center; box-shadow: var(--shadow); }
.dl-modal__card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.dl-modal__card p { color: var(--muted); margin-bottom: 24px; }
.dl-modal__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.dl-modal__close { margin-top: 20px; background: none; border: 0; color: var(--faint); cursor: pointer; font-family: var(--font-body); font-size: .92rem; }
.dl-modal__close:hover { color: var(--ink); }

/* ---------- Homepage B2B strip ---------- */
.b2b-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  background: linear-gradient(120deg, var(--surface-2), var(--bg-soft));
  border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 38px 40px; box-shadow: var(--ring-inset);
}
.b2b-strip > div { max-width: 640px; }
.b2b-strip .eyebrow { margin-bottom: 10px; }
.b2b-strip h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 10px; }
.b2b-strip p { color: var(--muted); margin: 0; }
.b2b-strip .btn { flex: 0 0 auto; }
@media (max-width: 760px) { .b2b-strip { padding: 30px 26px; } }

/* ---------- Newsletter signup (Kit) ---------- */
.newsletter { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.newsletter > div { max-width: 560px; }
.newsletter .eyebrow { margin-bottom: 10px; }
.newsletter h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 8px; }
.newsletter p { color: var(--muted); margin: 0; }
.newsletter__form { display: flex; gap: 12px; flex: 1 1 320px; max-width: 440px; }
.newsletter__form input { flex: 1; background: rgba(255,255,255,.04); border: 1px solid var(--line-2); border-radius: var(--radius-pill); color: var(--ink); font-family: var(--font-body); font-size: 1rem; padding: 13px 20px; }
.newsletter__form input::placeholder { color: var(--faint); }
.newsletter__form input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.newsletter__form .btn { flex: 0 0 auto; }
@media (max-width: 560px) { .newsletter__form { flex-direction: column; } .newsletter__form .btn { width: 100%; } }

/* ---------- Footer newsletter row ---------- */
.footer__news { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-bottom: 36px; margin-bottom: 40px; border-bottom: 1px solid var(--line); }
.footer__news h4 { color: var(--ink); font-size: 1.05rem; text-transform: none; letter-spacing: 0; margin: 0 0 4px; }
.footer__news p { color: var(--muted); margin: 0; font-size: .95rem; }
.footer__news .newsletter__form { flex: 1 1 300px; max-width: 420px; }

/* ---------- See it in action (video) ---------- */
.demo { max-width: 340px; margin: 0 auto; }
.demo__frame { border-radius: 26px; overflow: hidden; border: 1px solid var(--line-2); box-shadow: 0 40px 90px -30px var(--glow), var(--shadow), var(--ring-inset); background: #05070c; }
.demo__frame video { display: block; width: 100%; height: auto; }
.demo__cap { text-align: center; color: var(--faint); font-size: .9rem; margin-top: 16px; }
