/* ============================================================
   Stronger365 — Landing Page Styles
   Dark-first · black + lime · premium, restrained motion
   ============================================================ */

/* Self-hosted Inter (variable, latin). Same-origin: no render-blocking
   cross-origin font request. Covers weights 100-900 in one file. */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
}

:root {
  /* Surfaces */
  --bg:        #0B0C0B;
  --bg-2:      #0E100E;
  --bg-elev:   #16181A;
  --bg-elev-2: #1C1F21;
  --border:    rgba(255, 255, 255, .08);
  --border-2:  rgba(255, 255, 255, .14);

  /* Text */
  --text:   #F4F6F2;
  --muted:  #A6ACA2;
  --muted-2:#7C827A;

  /* Brand (lime is the default accent) */
  --lime:       #B6D815;
  --lime-bright:#C7EB1E;

  /* Accent system. JS overrides --accent, --accent-rgb, --accent-ink, --accent-bright;
     the rest derive from --accent-rgb so the whole page reskins from a single color. */
  --accent:       #F4F6F2;
  --accent-rgb:   244, 246, 242;
  --accent-bright:#FFFFFF;
  --accent-ink:   #0B0C0B;
  --accent-soft:  rgba(var(--accent-rgb), .12);
  --accent-glow:  rgba(var(--accent-rgb), .22);
  --accent-dim:   rgba(var(--accent-rgb), .62);

  /* App-screen tones */
  --app-bg:    #0C0E0D;
  --app-card:  #15181A;
  --app-line:  rgba(255,255,255,.07);

  /* Geometry */
  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --maxw:      1180px;
  --shadow:    0 24px 60px -28px rgba(0,0,0,.7);
  --shadow-sm: 0 8px 24px -12px rgba(0,0,0,.6);

  --ease: cubic-bezier(.22, .61, .36, 1);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* -------------------- Reset / base -------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* Lock the page to vertical scrolling only. Clip on the ROOT (not just body)
     so decorative overflow (glows, cropped hero side phones) can never create
     page-level horizontal scroll or iOS sideways panning. */
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--accent); color: var(--accent-ink); }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--accent); color: var(--accent-ink); padding: 10px 16px;
  border-radius: 10px; font-weight: 600; transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* -------------------- Layout helpers -------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }

.section { padding-block: clamp(64px, 8vw, 108px); position: relative; }
.section--alt { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%); }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head.reveal { } /* hook */

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 18px;
}
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent-glow); }

.section-title {
  font-size: clamp(1.7rem, 4.2vw, 2.85rem);
  line-height: 1.1; font-weight: 700; letter-spacing: -.02em;
}
.section-sub { margin-top: 18px; font-size: clamp(1rem, 1.6vw, 1.12rem); color: var(--muted); max-width: 60ch; }
.hl { color: var(--accent); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 12, 11, .62);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--border); background: rgba(11,12,11,.82); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 20px; }

.nav__brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -.01em; }
.nav__logo {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px;
  background: var(--accent-soft); color: var(--accent); border: 1px solid var(--border);
}
.nav__name { font-size: 1.12rem; }
.nav__365 { color: var(--accent); }

/* Custom uploaded logo (assets/logo.png) replaces the built-in mark */
.nav__logo.has-img { background: transparent; border-color: transparent; padding: 0; overflow: hidden; }
.nav__logo.has-img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.nav__logo.has-img.is-wordmark { width: auto; height: 34px; border-radius: 0; }
.nav__logo.has-img.is-wordmark img { width: auto; height: 100%; }

.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__link { font-size: .95rem; color: var(--muted); font-weight: 500; transition: color .2s var(--ease); position: relative; }
.nav__link::after { content:""; position:absolute; left:0; bottom:-6px; height:2px; width:0; background:var(--accent); transition: width .25s var(--ease); border-radius:2px; }
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 12px; }

.lang-toggle { display: inline-flex; padding: 3px; gap: 2px; background: var(--bg-elev); border: 1px solid var(--border); border-radius: 999px; }
.lang-toggle__btn {
  font-size: .8rem; font-weight: 600; letter-spacing: .03em; padding: 5px 11px; border-radius: 999px;
  color: var(--muted); transition: all .2s var(--ease);
}
.lang-toggle__btn.is-active { background: var(--accent); color: var(--accent-ink); }

.nav__burger { display: none; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--border); background: var(--bg-elev); position: relative; }
.nav__burger span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease); }
.nav__burger span:nth-child(1) { top: 14px; }
.nav__burger span:nth-child(2) { top: 20px; }
.nav__burger span:nth-child(3) { top: 26px; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav__mobile {
  display: flex; flex-direction: column; gap: 4px;
  padding: 10px clamp(20px,5vw,40px) 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(11,12,11,.96);
  backdrop-filter: blur(16px);
  animation: dropdown .28s var(--ease);
}
.nav__mobile[hidden] { display: none; }
@keyframes dropdown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.nav__mobile-link { padding: 13px 6px; color: var(--muted); font-weight: 500; border-bottom: 1px solid var(--border); }
.nav__mobile-link:hover { color: var(--text); }
.nav__mobile-cta { margin-top: 14px; justify-content: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 22px; border-radius: 12px; font-weight: 600; font-size: .98rem;
  border: 1px solid transparent; transition: transform .18s var(--ease), background .2s var(--ease), box-shadow .25s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  will-change: transform;
}
.btn--sm { padding: 9px 16px; font-size: .9rem; }
.btn:active { transform: translateY(1px) scale(.99); }

.btn--primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 8px 26px -12px var(--accent-glow); }
.btn--primary:hover { background: var(--accent-bright); box-shadow: 0 12px 34px -10px var(--accent-glow); transform: translateY(-2px); }

.btn--ghost { background: var(--bg-elev); border-color: var(--border-2); color: var(--text); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.btn--store {
  background: var(--bg-elev); border-color: var(--border-2); color: var(--text);
  padding: 11px 20px; text-align: left;
}
.btn--store:hover { border-color: var(--border-2); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--store.is-live { background: var(--accent); color: var(--accent-ink); border-color: transparent; }
.btn--store.is-live:hover { background: var(--accent-bright); }
.btn__icon { flex-shrink: 0; }
.btn__stack { display: flex; flex-direction: column; line-height: 1.1; }
.btn__stack small { font-size: .68rem; color: var(--muted); font-weight: 500; letter-spacing: .01em; }
.btn--store.is-live .btn__stack small { color: rgba(11,12,11,.7); }
.btn__stack strong { font-size: 1rem; font-weight: 700; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(48px, 8vw, 88px); padding-bottom: clamp(60px, 9vw, 110px); overflow: clip; }
.hero__glow {
  position: absolute; top: 8%; left: 58%; width: min(680px, 80vw); aspect-ratio: 1;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 62%);
  filter: blur(28px); opacity: .55; transform: translateX(-30%);
  animation: breathe 7s var(--ease) infinite; pointer-events: none; z-index: 0;
}
@keyframes breathe { 0%,100% { opacity: .42; transform: translateX(-30%) scale(1); } 50% { opacity: .62; transform: translateX(-30%) scale(1.07); } }

.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center;
}
.hero__title { font-size: clamp(2.1rem, 5.6vw, 3.7rem); line-height: 1.04; font-weight: 800; letter-spacing: -.03em; }
.hero__sub { margin-top: 22px; font-size: clamp(1.04rem, 1.7vw, 1.2rem); color: var(--muted); max-width: 52ch; }

.hero__micro {
  margin-top: 22px; display: inline-flex; align-items: center; gap: 9px;
  font-size: .9rem; color: var(--text); padding: 8px 14px; border-radius: 999px;
  background: var(--accent-soft); border: 1px solid rgba(var(--accent-rgb),.22);
}
.hero__micro svg { color: var(--accent); flex-shrink: 0; }

.hero__ctas { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero__notify { display: inline-block; margin-top: 18px; color: var(--muted); font-weight: 500; font-size: .95rem; transition: color .2s var(--ease); }
.hero__notify:hover { color: var(--accent); }

.hero__visual { position: relative; display: grid; place-items: center; min-height: 540px; }

/* Floating cards */
.float-card {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px;
  background: rgba(22,24,26,.86); border: 1px solid var(--border-2); border-radius: 14px;
  padding: 11px 14px; box-shadow: var(--shadow); backdrop-filter: blur(8px);
  animation: floaty 6s ease-in-out infinite;
}
.float-card__ico { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; background: var(--accent-soft); color: var(--accent); flex-shrink: 0; }
.float-card__ico.flame { color: #ff8a3c; background: rgba(255,138,60,.14); }
.float-card__ico.trophy { color: var(--accent); }
.float-card__txt { display: flex; flex-direction: column; line-height: 1.2; }
.float-card__txt small { font-size: .68rem; color: var(--muted); }
.float-card__txt strong { font-size: .86rem; font-weight: 600; }

.float-card--a { top: 6%;  left: -4%;  animation-delay: 0s; }
.float-card--b { top: 20%; right: -6%; animation-delay: -1.4s; }
.float-card--c { top: 50%; right: -9%; animation-delay: -2.6s; }
.float-card--d { bottom: 13%; left: -7%; animation-delay: -1.9s; }
.float-card--e { bottom: 1%; right: 4%; animation-delay: -3.3s; }

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ============================================================
   PHONE MOCKUP + APP UI
   ============================================================ */
.phone { position: relative; z-index: 2; width: 290px; max-width: 78vw; }
.phone--showcase { width: 300px; }
/* Real device frame (assets/phone-frame.png) overlaid on top of the recreated UI.
   The PNG has a transparent screen cutout + its own camera; the UI sits behind it. */
.phone__frame {
  position: relative; width: 100%; aspect-ratio: 556 / 1186;
  border-radius: 0; padding: 0; background: none; border: none; box-shadow: none;
}
.phone__frame::after {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: center / 100% 100% no-repeat;
  /* WebP with a PNG fallback. Engines without image-set() ignore those two
     declarations and keep the plain url() above, so the frame never breaks. */
  background-image: url("assets/phone-frame.png");
  background-image: -webkit-image-set(url("assets/phone-frame.webp") type("image/webp"), url("assets/phone-frame.png") type("image/png"));
  background-image: image-set(url("assets/phone-frame.webp") type("image/webp"), url("assets/phone-frame.png") type("image/png"));
  filter: drop-shadow(0 38px 50px rgba(0,0,0,.55));
}
.phone__cam { display: none; }
.phone__screen {
  position: absolute; top: 1.3%; left: 3.6%; right: 4.2%; bottom: 1.4%; z-index: 1;
  border-radius: 7% / 3.2%; overflow: hidden;
  background: var(--app-bg); border: none;
}

/* App UI shell */
.ui { position: absolute; inset: 0; display: flex; flex-direction: column; color: var(--text); font-size: 12px; }
.ui__status { display: flex; justify-content: space-between; align-items: center; padding: 11px 16px 4px; font-size: 10px; font-weight: 600; color: var(--text); }
.ui__status-icons { display: flex; align-items: center; }
/* width matches the sprite baked into the framed screenshots (~58px at a 300px device) */
.ui__sb { display: block; width: 58px; height: auto; }
.ui__body { flex: 1; padding: 8px 14px 12px; display: flex; flex-direction: column; gap: 10px; overflow: hidden; }
.ui__body--center { align-items: center; text-align: center; gap: 8px; padding-top: 26px; }

.ui__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.ui__eyebrow { font-size: 9px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.ui__title { font-size: 17px; font-weight: 700; letter-spacing: -.01em; margin-top: 2px; }
.ui__title--c { font-size: 15px; margin-top: 4px; }

.ui__rest { display: inline-flex; align-items: center; gap: 5px; font-size: 9.5px; font-weight: 600; color: var(--accent); background: var(--accent-soft); padding: 4px 8px; border-radius: 999px; }
.ui__rest-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

.ui__suggest { display: flex; align-items: center; gap: 7px; font-size: 10.5px; font-weight: 600; color: var(--accent); background: var(--accent-soft); border: 1px solid rgba(var(--accent-rgb),.2); padding: 8px 10px; border-radius: 10px; }
.ui__suggest svg { flex-shrink: 0; }

/* logging table */
.ui__ex { background: var(--app-card); border: 1px solid var(--app-line); border-radius: 13px; padding: 11px; }
.ui__ex-head { display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 12.5px; margin-bottom: 9px; }
.ui__ex-meta { font-size: 9.5px; color: var(--muted); font-weight: 600; }
.ui__cols, .ui__set { display: grid; grid-template-columns: 18px 1fr 30px 26px 18px; gap: 5px; align-items: center; }
.ui__cols { font-size: 8px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; padding: 0 2px 6px; }
.ui__set { font-size: 11px; padding: 6px 2px; border-top: 1px solid var(--app-line); font-weight: 600; }
.ui__si { color: var(--muted); }
.ui__sp { font-size: 9.5px; color: var(--muted-2); }
.ui__sp.ghost { color: var(--muted-2); font-style: italic; }
.ui__sv { text-align: center; }
.ui__sv.muted { color: var(--muted-2); }
.ui__sv--in { background: rgba(255,255,255,.06); border-radius: 5px; padding: 2px 0; }
.ui__sc { text-align: center; color: var(--accent); font-size: 11px; }
.ui__set.is-done { color: var(--text); }
.ui__set.is-active { background: var(--accent-soft); border-radius: 8px; border-top-color: transparent; box-shadow: inset 0 0 0 1px rgba(var(--accent-rgb),.35); }
.ui__set.is-active .ui__sv--in { background: rgba(var(--accent-rgb),.18); color: var(--accent); }
.ui__sc--go { background: var(--accent); color: var(--accent-ink); border-radius: 5px; }

/* routines */
.ui__plus { width: 26px; height: 26px; border-radius: 8px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-size: 16px; font-weight: 400; }
.ui__plus.sm { width: 20px; height: 20px; font-size: 13px; }
.ui__day { background: var(--app-card); border: 1px solid var(--app-line); border-radius: 12px; padding: 11px 12px; }
.ui__day.is-accent { border-color: rgba(var(--accent-rgb),.4); box-shadow: inset 3px 0 0 var(--accent); }
.ui__day-top { display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 12.5px; }
.ui__day-sub { font-size: 9.5px; color: var(--muted); margin-top: 3px; }
.ui__chip { font-size: 9px; font-weight: 700; color: var(--muted); background: rgba(255,255,255,.06); border-radius: 999px; padding: 2px 7px; }
.ui__day--ghost { display: flex; align-items: center; gap: 8px; border-style: dashed; color: var(--muted); font-weight: 600; font-size: 11px; }

/* progress screen */
.ui__delta { font-size: 11px; font-weight: 700; color: var(--accent); background: var(--accent-soft); padding: 3px 8px; border-radius: 999px; align-self: center; }
.ui__chart { height: 88px; background: var(--app-card); border: 1px solid var(--app-line); border-radius: 12px; padding: 8px; }
.ui__pr { display: flex; align-items: center; gap: 10px; background: var(--app-card); border: 1px solid rgba(var(--accent-rgb),.3); border-radius: 12px; padding: 10px 12px; }
.ui__pr-badge { font-size: 8px; font-weight: 800; letter-spacing: .08em; color: var(--accent-ink); background: var(--accent); padding: 3px 7px; border-radius: 999px; }
.ui__pr-main { display: flex; flex-direction: column; line-height: 1.2; }
.ui__pr-main strong { font-size: 17px; font-weight: 800; }
.ui__pr-main span { font-size: 9px; color: var(--muted); }
.ui__minirow { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ui__mini { background: var(--app-card); border: 1px solid var(--app-line); border-radius: 11px; padding: 9px 10px; display: flex; flex-direction: column; gap: 2px; }
.ui__mini-k { font-size: 14px; font-weight: 800; }
.ui__mini-l { font-size: 8.5px; color: var(--muted); }

/* suggestions screen */
.ui__bigsuggest { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; background: var(--accent-soft); border: 1px solid rgba(var(--accent-rgb),.3); border-radius: 14px; padding: 18px 12px; color: var(--accent); }
.ui__bigsuggest strong { font-size: 22px; font-weight: 800; color: var(--text); letter-spacing: -.01em; }
.ui__bigsuggest span { font-size: 9.5px; color: var(--muted); }
.ui__hist { background: var(--app-card); border: 1px solid var(--app-line); border-radius: 12px; padding: 4px 12px; }
.ui__hist-row { display: flex; justify-content: space-between; align-items: center; font-size: 11px; padding: 9px 0; border-top: 1px solid var(--app-line); font-weight: 600; }
.ui__hist-row:first-child { border-top: none; }
.ui__hist-row span:first-child { color: var(--muted); font-weight: 500; }
.ui__up { color: var(--accent); }

/* streak screen */
.ui__flame { width: 28px; height: 28px; border-radius: 8px; background: rgba(255,138,60,.14); color: #ff8a3c; display: grid; place-items: center; }
.ui__cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; background: var(--app-card); border: 1px solid var(--app-line); border-radius: 12px; padding: 12px; }
.ui__cal i { aspect-ratio: 1; border-radius: 4px; background: rgba(255,255,255,.06); }
.ui__cal i.on { background: var(--accent); }
.ui__cal i.partial { background: rgba(var(--accent-rgb),.45); }

/* stw screen */
.ui__poster { background: linear-gradient(160deg, #1a1d18, #121412); border: 1px solid rgba(var(--accent-rgb),.22); border-radius: 14px; padding: 13px; }
.ui__poster-top { display: flex; justify-content: space-between; font-size: 8.5px; font-weight: 700; letter-spacing: .08em; color: var(--accent); }
.ui__poster-big { margin: 10px 0; display: flex; align-items: baseline; gap: 8px; }
.ui__poster-big strong { font-size: 38px; font-weight: 800; line-height: 1; color: var(--accent); }
.ui__poster-big span { font-size: 10px; color: var(--muted); }
.ui__poster-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.ui__poster-grid div { background: rgba(255,255,255,.04); border-radius: 9px; padding: 8px 6px; text-align: center; }
.ui__poster-grid b { display: block; font-size: 13px; font-weight: 800; }
.ui__poster-grid span { font-size: 8px; color: var(--muted); }
.ui__share { display: flex; align-items: center; justify-content: center; gap: 7px; background: var(--accent); color: var(--accent-ink); font-weight: 700; font-size: 11px; padding: 10px; border-radius: 11px; }

/* privacy screen */
.ui__lock { width: 58px; height: 58px; border-radius: 16px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-bottom: 4px; }
.ui__center-sub { font-size: 10.5px; color: var(--muted); max-width: 22ch; margin-bottom: 8px; }
.ui__priv-row { width: 100%; display: flex; justify-content: space-between; align-items: center; font-size: 11.5px; font-weight: 600; background: var(--app-card); border: 1px solid var(--app-line); border-radius: 10px; padding: 10px 12px; }
.ui__pill-off { font-size: 9px; font-weight: 700; color: var(--muted); background: rgba(255,255,255,.06); padding: 3px 9px; border-radius: 999px; }

/* tab bar */
.ui__tabs { display: flex; justify-content: space-around; align-items: center; padding: 12px 24px calc(12px + env(safe-area-inset-bottom)); border-top: 1px solid var(--app-line); background: rgba(0,0,0,.2); }
.ui__tab { width: 22px; height: 4px; border-radius: 999px; background: rgba(255,255,255,.14); }
.ui__tab.is-on { background: var(--accent); box-shadow: 0 0 10px var(--accent-glow); }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { border-block: 1px solid var(--border); background: var(--bg-2); }
.trust__row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px 28px; padding-block: 24px; }
.trust__item { display: inline-flex; align-items: center; gap: 9px; font-size: .92rem; font-weight: 500; color: var(--muted); }
.trust__item svg { color: var(--accent); flex-shrink: 0; }

/* ============================================================
   CARDS (problem / privacy)
   ============================================================ */
.cards { display: grid; gap: 20px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: var(--border-2); }
.card--accent { background: linear-gradient(160deg, rgba(var(--accent-rgb),.07), var(--bg-elev)); border-color: rgba(var(--accent-rgb),.28); }
.card__ico { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; background: var(--accent-soft); color: var(--accent); margin-bottom: 18px; }
.card__title { font-size: 1.18rem; font-weight: 700; letter-spacing: -.01em; }
.card__text { margin-top: 10px; color: var(--muted); font-size: .98rem; }

/* ============================================================
   SHOWCASE
   ============================================================ */
/* Scroll-pinned layout: tall scroller pins the inner grid while
   scroll progress drives the active feature (see app.js). */
.showcase__scroller { position: relative; }
.showcase__pin { }
.showcase__grid { display: grid; grid-template-columns: 360px 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.showcase__sticky { position: relative; display: grid; place-items: center; }
.showcase__glow { top: 50%; left: 50%; transform: translate(-50%,-50%); width: 420px; opacity: .4; }

@media (min-width: 861px) {
  .showcase__scroller { height: calc(var(--sc-count, 8) * 64vh); }
  .showcase__pin { position: sticky; top: 84px; min-height: calc(100vh - 104px); display: flex; align-items: center; }
}

.phone--showcase .phone__screen { } /* screens stacked */
.appscreen { position: absolute; inset: 0; opacity: 0; transition: opacity .45s var(--ease); pointer-events: none; }
.appscreen.is-active { opacity: 1; pointer-events: auto; }
@media (prefers-reduced-motion: reduce) { .appscreen { transition: none; } }

.showcase__list { display: flex; flex-direction: column; gap: 10px; }
.feature {
  display: flex; gap: 16px; text-align: left; width: 100%;
  background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 22px; transition: border-color .3s var(--ease), background .3s var(--ease), transform .2s var(--ease);
}
.feature:hover { border-color: var(--border-2); }
.feature.is-active { border-color: rgba(var(--accent-rgb),.42); background: linear-gradient(160deg, rgba(var(--accent-rgb),.06), var(--bg-elev)); box-shadow: var(--shadow-sm); }
.feature__num { font-size: .82rem; font-weight: 700; color: var(--muted-2); letter-spacing: .05em; padding-top: 3px; }
.feature.is-active .feature__num { color: var(--accent); }
.feature__body { display: flex; flex-direction: column; gap: 6px; }
.feature__title { font-size: 1.08rem; font-weight: 700; letter-spacing: -.01em; }
.feature__text { color: var(--muted); font-size: .94rem; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .4s var(--ease), opacity .3s var(--ease); }
.feature.is-active .feature__text { max-height: 160px; opacity: 1; margin-top: 2px; }

/* per-feature phone (mobile stacked view only) */
.feature__phone { display: none; }
.feature__phone .phone__frame { border-radius: 34px; padding: 9px; }
.feature__phone .phone__screen { border-radius: 26px; }

/* ============================================================
   STRONGER THIS WEEK
   ============================================================ */
.stw__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.stw__body { margin-top: 16px; color: var(--muted); font-size: 1rem; max-width: 52ch; }
.stw__tag { margin-top: 22px; font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em; }
.stw__tag::before { content: ""; }
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pill { display: inline-flex; align-items: center; gap: 8px; font-size: .88rem; font-weight: 500; color: var(--text); background: var(--bg-elev); border: 1px solid var(--border); border-radius: 999px; padding: 8px 14px; }
.pill__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent-glow); }

.stw__visual { position: relative; display: grid; place-items: center; min-height: 540px; }
.stw__glow { top: 50%; left: 50%; transform: translate(-50%,-50%); width: 460px; opacity: .35; }
.phone--stw { z-index: 2; width: 300px; max-width: 80%; }

.poster-card {
  position: absolute; right: -2%; bottom: 2%; z-index: 3; width: 196px;
  background: linear-gradient(165deg, #181b15 0%, #0f110e 100%);
  border: 1px solid rgba(var(--accent-rgb),.32); border-radius: 18px; padding: 18px;
  box-shadow: var(--shadow); animation: floaty 7s ease-in-out infinite;
}
.poster-card__head { display: flex; justify-content: space-between; align-items: center; }
.poster-card__brand { font-size: .62rem; font-weight: 800; letter-spacing: .14em; color: var(--accent); }
.poster-card__week { font-size: .58rem; font-weight: 700; color: var(--muted); letter-spacing: .08em; }
.poster-card__label { font-size: .72rem; color: var(--muted); margin-top: 14px; }
.poster-card__big { font-size: 3.4rem; font-weight: 800; line-height: 1; color: var(--accent); }
.poster-card__sub { font-size: .72rem; color: var(--muted); margin-top: 2px; }
.poster-card__bars { display: flex; align-items: flex-end; gap: 6px; height: 46px; margin-top: 16px; }
.poster-card__bars i { flex: 1; height: var(--h); background: linear-gradient(180deg, var(--accent), var(--accent-dim)); border-radius: 4px; }
.poster-card__foot { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border); font-size: .64rem; font-weight: 700; letter-spacing: .04em; color: var(--muted); }

/* ============================================================
   PROGRESS
   ============================================================ */
.prog__grid { display: grid; grid-template-columns: 1.4fr .9fr; gap: clamp(32px,5vw,60px); align-items: center; }
.prog__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card { background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.stat-card--pr { background: linear-gradient(160deg, rgba(var(--accent-rgb),.08), var(--bg-elev)); border-color: rgba(var(--accent-rgb),.3); }
.stat-card--chart { grid-column: span 2; }
.stat-card--prev { grid-column: span 1; }
.stat-card--mini { display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.stat-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.stat-card__ex { font-size: .82rem; color: var(--muted); font-weight: 600; }
.stat-card__num { font-size: 2.4rem; font-weight: 800; letter-spacing: -.02em; display: flex; align-items: baseline; gap: 5px; }
.stat-card__num small { font-size: 1rem; color: var(--muted); font-weight: 600; }
.stat-card__cap { font-size: .82rem; color: var(--muted); margin-top: 4px; }
.stat-card__title { font-size: .82rem; color: var(--muted); font-weight: 600; margin-bottom: 12px; }
.prog__chart { height: 110px; }
.prev-row { display: flex; justify-content: space-between; align-items: center; font-size: .9rem; padding: 9px 0; border-top: 1px solid var(--border); }
.prev-row:nth-of-type(1) { border-top: none; }
.prev-row > span:first-child { color: var(--muted); }
.prev-val { font-weight: 700; }
.prev-val--go { color: var(--accent); }
.mini-stat { display: flex; flex-direction: column; }
.mini-stat__k { font-size: 1.7rem; font-weight: 800; letter-spacing: -.02em; }
.mini-stat__l { font-size: .82rem; color: var(--muted); }

.prog__bullets { list-style: none; padding: 0; display: grid; gap: 14px; }
.prog__bullets li { display: flex; align-items: center; gap: 12px; font-size: 1.05rem; font-weight: 500; }
.prog__bullets svg { color: var(--accent); flex-shrink: 0; background: var(--accent-soft); border-radius: 7px; padding: 4px; box-sizing: content-box; width: 16px; height: 16px; }

/* ============================================================
   CUSTOMIZATION
   ============================================================ */
.custom__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,60px); align-items: center; }
.custom__controls { margin-top: 28px; display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.custom__swatches { display: flex; gap: 10px; }
.sw { width: 30px; height: 30px; border-radius: 50%; border: 2px solid transparent; cursor: default; transition: transform .2s var(--ease); }
.sw.is-active { border-color: var(--text); }
.sw--lime { background: #B6D815; } .sw--blue { background: #3B82F6; } .sw--orange { background: #F97316; } .sw--violet { background: #8B5CF6; } .sw--red { background: #EF4444; }
.lang-toggle--demo { pointer-events: none; }

.custom__previews { display: flex; gap: 20px; justify-content: center; }
.mini-phone { position: relative; width: 150px; aspect-ratio: 9/17; border-radius: 26px; padding: 16px 14px; border: 6px solid #1a1c1e; display: flex; flex-direction: column; gap: 10px; box-shadow: var(--shadow); }
.mini-phone--dark { background: var(--app-bg); }
.mini-phone--light { background: #F4F5F1; border-color: #d7d9d2; }
.mini-phone__label { font-size: .72rem; font-weight: 700; letter-spacing: .04em; }
.mini-phone--light .mini-phone__label { color: #14160f; }
.mini-phone__bar { height: 12px; border-radius: 6px; background: rgba(255,255,255,.1); }
.mini-phone__bar.sm { width: 60%; }
.mini-phone--light .mini-phone__bar { background: rgba(0,0,0,.08); }
.mini-phone__chip { margin-top: auto; height: 34px; border-radius: 10px; background: var(--accent); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery .section-head { text-align: center; margin-inline: auto; }
.gallery .section-head .eyebrow { justify-content: center; }
.gallery__scroller { position: relative; margin-top: 8px; }
/* Desktop: centered wrapping grid (all slides visible, reaches both ends) */
.gallery__track {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 28px 24px;
  max-width: var(--maxw); margin-inline: auto; padding: 16px clamp(20px,5vw,40px) 8px;
}
.shot { flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; gap: 14px; cursor: pointer; transition: transform .2s var(--ease); }
.shot:hover { transform: translateY(-4px); }
.shot figcaption { font-size: .9rem; color: var(--muted); font-weight: 500; }

/* Mobile/tablet: horizontal scroll-snap carousel with fade edges */
@media (max-width: 760px) {
  .gallery__scroller::before, .gallery__scroller::after { content: ""; position: absolute; top: 0; bottom: 0; width: 8%; z-index: 2; pointer-events: none; }
  .gallery__scroller::before { left: 0; background: linear-gradient(90deg, var(--bg-2), transparent); }
  .gallery__scroller::after { right: 0; background: linear-gradient(270deg, var(--bg-2), transparent); }
  .gallery__track {
    flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto;
    scroll-snap-type: x mandatory; scroll-padding-inline: 14%;
    padding: 16px 14% 18px; gap: 18px; scrollbar-width: none;
  }
  .gallery__track::-webkit-scrollbar { display: none; }
  .shot { scroll-snap-align: center; }
}
.phone--mini { width: 215px; }
.phone--mini .phone__frame { border-radius: 36px; padding: 9px; }
.phone--mini .phone__screen { border-radius: 28px; }

/* Framed screenshots: the clean 9:00 status bar is baked into the
   PNGs themselves (see README), no CSS overlay needed. */
.fb__shotwrap { position: relative; }
.fb__shotwrap .fb__shot { display: block; }

/* ============================================================
   LIGHTBOX (gallery fullscreen viewer)
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0, 0, 0, .92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: min(90vw, 440px); max-height: 88vh; width: auto; height: auto;
  border-radius: 18px; box-shadow: 0 32px 80px -20px rgba(0,0,0,.8);
  object-fit: contain;
  transform: scale(.92); opacity: 0;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.lightbox.is-open .lightbox__img { transform: scale(1); opacity: 1; }
.lightbox__close {
  position: absolute; top: clamp(16px, 3vw, 28px); right: clamp(16px, 3vw, 28px);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  color: var(--text); font-size: 20px; display: grid; place-items: center;
  cursor: pointer; transition: background .2s var(--ease), transform .2s var(--ease);
  backdrop-filter: blur(8px); z-index: 2;
}
.lightbox__close:hover { background: rgba(255,255,255,.2); transform: scale(1.08); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: var(--text); font-size: 22px; display: grid; place-items: center;
  cursor: pointer; transition: background .2s var(--ease), transform .2s var(--ease);
  backdrop-filter: blur(8px); z-index: 2;
}
.lightbox__nav:hover { background: rgba(255,255,255,.18); }
.lightbox__nav--prev { left: clamp(12px, 3vw, 28px); }
.lightbox__nav--next { right: clamp(12px, 3vw, 28px); }
.lightbox__caption {
  position: absolute; bottom: clamp(18px, 3vw, 32px); left: 50%; transform: translateX(-50%);
  font-size: .92rem; color: var(--muted); font-weight: 500; text-align: center;
  background: rgba(11,12,11,.7); backdrop-filter: blur(8px); padding: 8px 18px;
  border-radius: 999px; border: 1px solid rgba(255,255,255,.08);
  white-space: nowrap; max-width: 80vw; overflow: hidden; text-overflow: ellipsis;
}
.lightbox__counter {
  position: absolute; top: clamp(16px, 3vw, 28px); left: 50%; transform: translateX(-50%);
  font-size: .82rem; color: var(--muted-2); font-weight: 600; letter-spacing: .06em;
}
@media (max-width: 560px) {
  .lightbox__nav { width: 38px; height: 38px; font-size: 18px; }
  .lightbox__close { width: 38px; height: 38px; font-size: 17px; }
}

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */
.privacy-page { padding-top: clamp(48px, 7vw, 80px); padding-bottom: clamp(64px, 9vw, 110px); }
.privacy-page .container { max-width: 820px; }
.privacy__back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .92rem; font-weight: 600; color: var(--accent);
  padding: 9px 18px; border-radius: 10px;
  background: var(--accent-soft); border: 1px solid rgba(var(--accent-rgb), .22);
  transition: background .2s var(--ease), transform .2s var(--ease);
  margin-bottom: 36px;
}
.privacy__back:hover { background: rgba(var(--accent-rgb), .18); transform: translateY(-1px); }
.privacy__back svg { flex-shrink: 0; }
.privacy__title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem); font-weight: 800;
  letter-spacing: -.02em; line-height: 1.1; margin-bottom: 8px;
}
.privacy__effective {
  font-size: .92rem; color: var(--muted); margin-bottom: 32px;
  display: flex; flex-direction: column; gap: 2px;
}
.privacy__intro {
  font-size: 1.06rem; color: var(--muted); line-height: 1.8;
  margin-bottom: 40px; max-width: 68ch;
}
.privacy__section {
  background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: var(--radius); padding: clamp(24px, 4vw, 36px);
  margin-bottom: 20px;
  transition: border-color .3s var(--ease);
}
.privacy__section:hover { border-color: var(--border-2); }
.privacy__section h2 {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem); font-weight: 700;
  letter-spacing: -.01em; margin-bottom: 16px; color: var(--text);
}
.privacy__section h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--text);
  margin-top: 20px; margin-bottom: 10px;
}
.privacy__section p {
  font-size: .98rem; color: var(--muted); line-height: 1.8;
  margin-bottom: 12px;
}
.privacy__section p:last-child { margin-bottom: 0; }
.privacy__section ul {
  list-style: none; padding: 0; margin: 12px 0; display: grid; gap: 8px;
}
.privacy__section ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .98rem; color: var(--muted); line-height: 1.7;
}
.privacy__section ul li::before {
  content: ""; flex-shrink: 0; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); margin-top: 10px; box-shadow: 0 0 8px var(--accent-glow);
}
.privacy__section a {
  color: var(--accent); font-weight: 600;
  transition: color .2s var(--ease);
}
.privacy__section a:hover { color: var(--accent-bright); }
.privacy__contact-info {
  display: flex; flex-direction: column; gap: 4px;
  margin-top: 8px; font-size: .98rem; color: var(--muted);
}
.privacy__bottom-back { margin-top: 40px; text-align: center; }

/* ============================================================
   FOUNDER
   ============================================================ */
.founder__card {
  position: relative; max-width: 760px; margin-inline: auto;
  /* graphite card with a very soft accent glow from the top (no side line) */
  background: radial-gradient(130% 120% at 50% -10%, rgba(var(--accent-rgb), .06), transparent 55%), var(--bg-elev);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: clamp(30px, 5vw, 48px);
  box-shadow: 0 26px 60px -34px rgba(0, 0, 0, .7), inset 0 1px 0 rgba(255, 255, 255, .04);
}
/* accent used only as a tiny dot in the chip */
.founder .chip { display: inline-flex; align-items: center; gap: 7px; }
.founder .chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent-glow); }
.chip { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); background: var(--accent-soft); padding: 6px 12px; border-radius: 999px; margin-bottom: 20px; }
.founder__title { font-size: clamp(1.5rem, 3.2vw, 2.1rem); font-weight: 700; letter-spacing: -.02em; }
.founder__text { margin-top: 18px; color: var(--muted); font-size: 1.06rem; line-height: 1.75; }
/* signed footer row: app-icon logo mark + Stronger Labs + brand line */
.founder__sign {
  margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 14px;
}
.founder__mark { width: 42px; height: 42px; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); flex-shrink: 0; }
.founder__mark img { width: 100%; height: 100%; display: block; }
.founder__signtext { display: flex; flex-direction: column; gap: 2px; line-height: 1.35; }
.founder__signname { font-weight: 700; color: var(--text); font-size: 1rem; letter-spacing: -.01em; }
.founder__signtag { font-size: .82rem; color: var(--muted); }

/* ============================================================
   CTA / COMING SOON
   ============================================================ */
.cta { text-align: center; overflow: clip; }
.cta__glow { top: 0; left: 50%; transform: translateX(-50%); width: min(760px, 90vw); opacity: .4; }
.cta__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.cta__title { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.06; }
.cta__sub { margin-top: 18px; color: var(--muted); font-size: clamp(1rem,1.6vw,1.15rem); max-width: 54ch; }
.cta__ctas { justify-content: center; margin-top: 32px; }

.status-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 36px; }
.status-card { display: flex; flex-direction: column; gap: 5px; align-items: center; min-width: 130px; background: var(--bg-elev); border: 1px solid var(--border); border-radius: 14px; padding: 16px 22px; }
.status-card__os { font-size: .82rem; color: var(--muted); font-weight: 600; }
.status-card__state { font-weight: 700; font-size: .98rem; display: inline-flex; align-items: center; gap: 7px; }
.status-card--live { border-color: rgba(var(--accent-rgb),.35); }
.status-card--live .status-card__state { color: var(--accent); }
.live-dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
/* Composited pulse: an expanding ring on a pseudo-element (transform + opacity),
   not an animated box-shadow (which is paint-heavy / non-composited). */
.live-dot::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(var(--accent-rgb),.55);
  animation: livepulse 2s ease-out infinite; will-change: transform, opacity;
}
@keyframes livepulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(3.25); opacity: 0; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq__wrap { max-width: 820px; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; transition: border-color .25s var(--ease); }
.faq__item.is-open { border-color: rgba(var(--accent-rgb),.3); }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; text-align: left; padding: 20px 22px; font-size: 1.05rem; font-weight: 600; }
.faq__q:hover { color: var(--accent); }
.faq__chev { color: var(--muted); transition: transform .3s var(--ease), color .2s var(--ease); flex-shrink: 0; }
.faq__item.is-open .faq__chev { transform: rotate(180deg); color: var(--accent); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner { overflow: hidden; }
.faq__a-inner p { padding: 0 22px 22px; color: var(--muted); font-size: 1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--border); background: var(--bg-2); padding-top: clamp(48px,7vw,72px); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 44px; }
.footer__slogan { margin-top: 16px; color: var(--accent); font-weight: 600; }
.footer__by { margin-top: 4px; color: var(--muted); font-size: .9rem; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__h { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted-2); font-weight: 700; }
.footer__col a { color: var(--muted); font-size: .95rem; transition: color .2s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__status { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--muted); font-size: .95rem; }
.footer__tag { font-size: .72rem; font-weight: 600; color: var(--accent); background: var(--accent-soft); padding: 3px 9px; border-radius: 999px; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-block: 24px; border-top: 1px solid var(--border); color: var(--muted-2); font-size: .85rem; }
.footer__bottom-slogan { color: var(--accent); font-weight: 600; }

/* ============================================================
   ACCENT PICKER (hero + customization)
   ============================================================ */
.accent-picker { margin-top: 22px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.accent-picker--block { flex-direction: column; align-items: flex-start; gap: 12px; }
.accent-picker__label { font-size: .82rem; font-weight: 600; letter-spacing: .03em; color: var(--muted); }
.accent-picker__row { display: inline-flex; gap: 10px; }
.swatch {
  width: 28px; height: 28px; border-radius: 50%; padding: 0; cursor: pointer;
  border: 2px solid transparent; box-shadow: inset 0 0 0 2px var(--bg);
  /* Only the composited transform animates; the inset ring is static (not transitioned). */
  transition: transform .18s var(--ease);
}
.swatch:hover { transform: scale(1.12); }
.swatch.is-active { border-color: var(--text); transform: scale(1.08); }
.accent-picker--block .swatch { width: 34px; height: 34px; }

/* ============================================================
   PROGRESS METRICS (exercise card)
   ============================================================ */
.stat-card--exercise { grid-column: 1 / -1; }
.stat-card__ex-name { font-size: 1.12rem; font-weight: 700; letter-spacing: -.01em; }
.seg { display: inline-flex; padding: 3px; gap: 2px; background: var(--bg); border: 1px solid var(--border); border-radius: 999px; }
.seg__item { font-size: .78rem; font-weight: 600; color: var(--muted); padding: 4px 11px; border-radius: 999px; transition: all .2s var(--ease); }
.seg__item.is-on { background: var(--accent); color: var(--accent-ink); }
.prog__metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 20px; }
.pm { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px 18px; display: flex; flex-direction: column; gap: 6px; }
.pm--wide { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; }
.pm--accent { border-color: rgba(var(--accent-rgb), .3); background: linear-gradient(160deg, rgba(var(--accent-rgb),.08), var(--bg)); }
.pm__l { font-size: .8rem; color: var(--muted); font-weight: 500; }
.pm__v { font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; }
.pm--accent .pm__v { color: var(--accent); }
.pm--wide .pm__l { font-size: .9rem; }

.stw__body--accent { color: var(--text); border-left: 2px solid var(--accent); padding-left: 14px; }

/* ============================================================
   APP-SCREEN COMPONENTS (added in refinement pass)
   ============================================================ */
/* progress screen */
.ui__delta--plain { background: rgba(255,255,255,.06); color: var(--muted); }
.ui__seg { display: flex; gap: 4px; background: var(--app-card); border: 1px solid var(--app-line); border-radius: 999px; padding: 3px; }
.ui__seg-item { flex: 1; text-align: center; font-size: 9.5px; font-weight: 600; color: var(--muted); padding: 5px 0; border-radius: 999px; }
.ui__seg-item.is-on { background: var(--accent); color: var(--accent-ink); }
.ui__metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ui__metric { background: var(--app-card); border: 1px solid var(--app-line); border-radius: 11px; padding: 9px 11px; display: flex; flex-direction: column; gap: 3px; }
.ui__metric-l { font-size: 8.5px; color: var(--muted); }
.ui__metric-v { font-size: 13px; font-weight: 700; }
/* suggestions + warmups */
.ui__warm { background: var(--app-card); border: 1px solid var(--app-line); border-radius: 12px; padding: 4px 12px; }
.ui__warm-head { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; font-size: 11px; font-weight: 700; }
.ui__warm-edit { font-size: 8.5px; font-weight: 700; color: var(--accent); background: var(--accent-soft); padding: 3px 8px; border-radius: 999px; }
.ui__warm-row { display: flex; align-items: center; gap: 10px; font-size: 11px; padding: 8px 0; border-top: 1px solid var(--app-line); font-weight: 600; }
.ui__warm-i { width: 18px; height: 18px; border-radius: 6px; background: rgba(255,255,255,.06); color: var(--muted); display: grid; place-items: center; font-size: 9.5px; }
/* streak week strip */
.ui__weekstrip { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.ui__weekstrip i { aspect-ratio: 1; border-radius: 9px; background: var(--app-card); border: 1px solid var(--app-line); display: grid; place-items: center; font-size: 9.5px; font-style: normal; font-weight: 700; color: var(--muted-2); }
.ui__weekstrip i.on { background: var(--accent); color: var(--accent-ink); border-color: transparent; }
.ui__weekstrip i.today { border-color: var(--accent); color: var(--accent); }
/* workout calendar */
.ui__caldow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; padding: 0 2px; }
.ui__caldow span { text-align: center; font-size: 8px; color: var(--muted-2); font-weight: 700; }
.ui__callegend { display: flex; align-items: center; gap: 7px; font-size: 9.5px; color: var(--muted); }
.ui__cal-key { width: 10px; height: 10px; border-radius: 3px; background: var(--accent); }

/* ============================================================
   CAMPAIGN REALIGNMENT (Google Play screenshots)
   ============================================================ */
/* abstract status-bar glyphs */

/* ---- 3-phone hero ---- */
.hero__glow--center { top: 50%; left: 50%; transform: translate(-50%,-50%); width: min(560px, 80%); opacity: .35; }
.hero__visual { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.hero__phones { position: relative; width: 100%; min-height: 580px; display: flex; align-items: center; justify-content: center; }
.hero-phone { }
.hero-phone .phone { width: 100%; }
.hero-phone--center { position: relative; z-index: 3; width: 288px; max-width: 76vw; }
.hero-phone--left, .hero-phone--right { position: absolute; top: 50%; z-index: 1; width: 250px; opacity: .92; filter: saturate(1.05); }
.hero-phone--left  { left: 50%; transform: translate(-50%, -50%) translateX(-58%) rotate(-9deg) scale(.84); }
.hero-phone--right { left: 50%; transform: translate(-50%, -50%) translateX(58%)  rotate(9deg)  scale(.84); }
.hero-phone--left .phone__frame::after, .hero-phone--right .phone__frame::after { filter: drop-shadow(0 30px 44px rgba(0,0,0,.6)); }

.hero__chip { display: inline-flex; align-items: center; gap: 9px; margin-top: 26px; background: var(--bg-elev); border: 1px solid var(--border-2); border-radius: 999px; padding: 9px 16px; font-size: .85rem; font-weight: 600; box-shadow: var(--shadow-sm); }
.hero__chip-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent-glow); }

/* ---- HOME screen (recreated) ---- */
.ui__body--home { padding: 8px 12px 10px; gap: 8px; }
.uh__welcome { font-size: 10px; color: var(--muted); }
.uh__title { font-size: 15.5px; font-weight: 800; letter-spacing: -.01em; line-height: 1.15; color: var(--accent); }
.uh__card { background: var(--app-card); border: 1px solid var(--app-line); border-radius: 12px; padding: 10px 11px; }
.uh__streak-head { display: flex; gap: 8px; align-items: flex-start; }
.uh__flame { color: var(--accent); display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; }
.uh__flame svg { width: 17px; height: 17px; }
.uh__last { font-size: 9px; color: var(--muted); margin-top: 4px; }
.uh__streak-txt strong { display: block; font-size: 11.5px; font-weight: 700; }
.uh__streak-txt span { font-size: 9px; color: var(--muted); }
.uh__bar { height: 6px; border-radius: 999px; background: rgba(255,255,255,.09); margin: 9px 0 7px; overflow: hidden; }
.uh__bar i { display: block; height: 100%; width: 75%; background: var(--accent); border-radius: 999px; }
.uh__streak-meta { display: flex; justify-content: space-between; font-size: 9px; color: var(--muted); }
.uh__row { display: flex; justify-content: space-between; align-items: center; }
.uh__h { font-size: 12px; font-weight: 700; }
.uh__activity svg { color: var(--accent); }
.uh__dots { display: flex; gap: 4px; margin: 9px 0; }
.uh__dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.13); }
.uh__dots i.on { background: var(--accent); }
.uh__row--sub { font-size: 9px; color: var(--muted); }
.uh__link { color: var(--accent); font-weight: 600; }
.uh__stw-label { display: flex; align-items: center; gap: 5px; font-size: 8px; letter-spacing: .08em; font-weight: 700; color: var(--accent); }
.uh__stw-title { display: block; font-size: 13px; font-weight: 700; margin-top: 7px; }
.uh__stw-sub { display: block; font-size: 9.5px; color: var(--muted); margin-bottom: 9px; }
.uh__report { display: block; text-align: center; background: var(--accent); color: var(--accent-ink); font-size: 11px; font-weight: 700; padding: 8px; border-radius: 9px; }
.uh__quick { display: flex; align-items: center; gap: 10px; background: var(--accent); color: var(--accent-ink); }
.uh__bolt { width: 28px; height: 28px; border-radius: 8px; background: rgba(127,127,127,.22); color: var(--accent-ink); display: grid; place-items: center; flex-shrink: 0; }
.uh__quick-txt { flex: 1; }
.uh__quick-txt strong { display: block; font-size: 11.5px; font-weight: 700; }
.uh__quick-txt span { font-size: 9px; opacity: .68; }
.uh__chev { font-size: 16px; opacity: .7; }

/* ---- ACTIVE WORKOUT screen (recreated) ---- */
.ui__aw-clock { font-size: 11px; color: var(--muted); font-weight: 500; }
.ui__aw-finish { background: var(--accent); color: var(--accent-ink); font-weight: 700; font-size: 12px; padding: 8px 16px; border-radius: 10px; align-self: center; }
.ui__aw-last { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: 10px; color: var(--muted); margin-bottom: 10px; }
.ui__aw-last b { color: var(--text); font-weight: 600; }
.ui__aw-cards { display: grid; grid-template-columns: 1fr 1.6fr; gap: 8px; margin-bottom: 10px; }
.ui__aw-warm { background: rgba(255,255,255,.04); border: 1px solid var(--app-line); border-radius: 10px; display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 10px; color: var(--muted); font-weight: 600; }
.ui__aw-sug { background: var(--accent-soft); border: 1px solid rgba(var(--accent-rgb), .32); border-radius: 10px; padding: 8px 10px; display: flex; flex-direction: column; gap: 2px; }
.ui__aw-sug-l { display: flex; align-items: center; gap: 4px; font-size: 8px; font-weight: 700; letter-spacing: .06em; color: var(--accent); }
.ui__aw-sug strong { font-size: 14px; font-weight: 800; }
.ui__aw-sug span { font-size: 8.5px; color: var(--muted); }
.ui--aw .ui__cols, .ui--aw .ui__set { grid-template-columns: 24px 1fr 1fr 22px; }
.ui__box { background: rgba(255,255,255,.06); border: 1px solid var(--app-line); border-radius: 6px; text-align: center; padding: 6px 0; font-weight: 700; font-size: 12px; position: relative; }
.ui__prtag { position: absolute; top: -7px; right: -4px; font-size: 7px; font-weight: 800; background: var(--accent); color: var(--accent-ink); padding: 1px 4px; border-radius: 5px; }
.ui__aw-rest { display: flex; align-items: center; gap: 12px; background: var(--accent-soft); border-radius: 9px; padding: 8px 11px; margin-top: 8px; font-size: 10px; font-weight: 600; }
.ui__aw-rest-t { color: var(--accent); font-weight: 800; }
.ui__aw-rest-b { color: var(--muted); }

/* ---- Feature blocks (text + visual) ---- */
.fb__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 76px); align-items: center; }
.fb--reverse .fb__text { order: 2; }
.fb--reverse .fb__visual { order: 1; }
.fb__bullets { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 11px; }
.fb__bullets li { display: flex; align-items: center; gap: 11px; font-size: 1rem; color: var(--text); }
.fb__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent-glow); flex-shrink: 0; }
.fb__note { margin-top: 18px; font-size: .92rem; color: var(--muted); border-left: 2px solid var(--accent); padding-left: 13px; }
.fb__visual { position: relative; display: grid; place-items: center; min-height: 420px; }
.fb__glow { top: 50%; left: 50%; transform: translate(-50%,-50%); width: 360px; opacity: .22; }
/* framed device image (raw screenshot composited into the phone frame) */
.fb__shot { position: relative; z-index: 1; width: 300px; max-width: 80%; height: auto; display: block; filter: drop-shadow(0 38px 50px rgba(0,0,0,.55)); }

/* ---- Demo chips (floating, around recreated phones) ---- */
.phone--demo { position: relative; z-index: 1; width: 300px; max-width: 80%; }
.demo-chip { position: absolute; z-index: 4; display: inline-flex; align-items: center; gap: 8px; background: rgba(22,24,26,.9); border: 1px solid var(--border-2); border-radius: 12px; padding: 8px 13px; font-size: .82rem; font-weight: 600; box-shadow: var(--shadow); backdrop-filter: blur(8px); animation: floaty 6s ease-in-out infinite; }
.demo-chip--tl { top: 16%; left: -4%; }
.demo-chip--br { bottom: 18%; right: -4%; animation-delay: -2.4s; }

/* ---- Gallery with real slides ---- */
.shot__img { width: 244px; max-width: 72vw; height: auto; border-radius: 26px; border: 1px solid var(--border); box-shadow: var(--shadow); display: block; }

/* ============================================================
   PREVIEW UI REFINEMENTS (closer to the real app)
   ============================================================ */
/* active workout: two-line last/est */
.ui__aw-last { display: flex; flex-direction: column; gap: 3px; margin-bottom: 10px; }
.ui__aw-last-l { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; }
.ui__aw-last-l svg { color: var(--muted); }
.ui__aw-last-sub { font-size: 9px; color: var(--muted); }
.ui__aw-last-sub b { color: var(--text); font-weight: 600; }
/* completed-set input borders pick up the accent */
.ui__set.is-done .ui__box { border-color: rgba(var(--accent-rgb), .5); }
/* PR badge = gold trophy pill (not accent) */
.ui__prtag { position: absolute; top: -7px; right: -4px; display: inline-flex; align-items: center; gap: 2px; font-size: 7px; font-weight: 800; background: #fff; color: #0b0c0b; padding: 2px 4px; border-radius: 5px; box-shadow: 0 2px 6px rgba(0,0,0,.4); }
.ui__prtag svg { color: #E3A21A; }
/* rest timer row */
.ui__aw-rest { display: flex; align-items: center; gap: 8px; margin-top: 8px; font-size: 10px; font-weight: 600; color: var(--muted); }
.ui__aw-rest-ic { color: var(--text); font-size: 8px; letter-spacing: -1px; }
.ui__aw-rest-clk { color: var(--muted); }
.ui__aw-rest-t { color: var(--text); font-weight: 800; }
.ui__aw-rest-b { background: rgba(255,255,255,.06); border-radius: 6px; padding: 3px 6px; }
.ui__aw-rest-x { margin-left: auto; color: var(--muted-2); }
.ui__addset { text-align: center; font-size: 11px; font-weight: 700; color: var(--text); padding: 10px 0 2px; }

/* ---- Stronger This Week report ---- */
.ui__body--stw { padding: 8px 12px 10px; gap: 8px; }
.ui__stw-modalhead { display: flex; align-items: center; justify-content: space-between; font-size: 14px; font-weight: 700; }
.ui__stw-x { color: var(--muted); font-size: 13px; }
.ui__stw-nav { display: flex; align-items: center; justify-content: center; gap: 12px; font-size: 11px; font-weight: 600; }
.ui__stw-arr { color: var(--muted); width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; background: var(--app-card); }
.ui__report { background: linear-gradient(165deg, rgba(var(--accent-rgb), .05), var(--app-card)); border: 1px solid var(--app-line); border-radius: 14px; padding: 11px; display: flex; flex-direction: column; gap: 8px; }
.ui__report-top { display: flex; align-items: center; justify-content: space-between; }
.ui__report-brand { display: inline-flex; align-items: center; gap: 4px; font-size: 7.5px; font-weight: 800; letter-spacing: .06em; color: var(--accent); }
.ui__report-date { font-size: 7.5px; font-weight: 600; color: var(--muted); }
.ui__report-title { font-size: 18px; font-weight: 800; letter-spacing: -.01em; color: var(--accent); }
.ui__report-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.ui__rstat { background: rgba(0,0,0,.25); border-radius: 9px; padding: 8px 10px; display: flex; flex-direction: column; gap: 1px; }
.ui__rstat b { font-size: 16px; font-weight: 800; color: var(--accent); }
.ui__rstat span { font-size: 7px; font-weight: 700; letter-spacing: .05em; color: var(--muted); }
.ui__report-div { height: 2px; border-radius: 2px; background: var(--accent); opacity: .9; margin: 2px 0; }
.ui__report-weeks { display: flex; align-items: center; gap: 6px; font-size: 9.5px; font-weight: 800; letter-spacing: .04em; }
.ui__report-weeks svg { color: var(--accent); }
.ui__report-fm { font-size: 7.5px; font-weight: 700; letter-spacing: .06em; color: var(--muted); }
.ui__report-fmval { font-size: 10px; color: var(--muted); margin-top: -4px; }
.ui__report-fmval b { color: var(--text); font-weight: 700; }
.ui__bars { display: flex; flex-direction: column; gap: 5px; }
.ui__barrow { display: grid; grid-template-columns: 34px 1fr 16px; align-items: center; gap: 7px; font-size: 9px; color: var(--muted); }
.ui__barrow i { height: 6px; border-radius: 999px; background: rgba(255,255,255,.08); position: relative; }
.ui__barrow i::after { content: ""; position: absolute; inset: 0 auto 0 0; width: var(--v); background: var(--accent); border-radius: 999px; }
.ui__barrow b { text-align: right; color: var(--text); font-weight: 700; font-size: 9px; }
.ui__ach { border: 1px solid var(--app-line); border-radius: 11px; padding: 9px 10px; display: flex; flex-direction: column; gap: 1px; }
.ui__ach-l { font-size: 7px; font-weight: 800; letter-spacing: .06em; color: var(--muted); }
.ui__ach-t { font-size: 13px; font-weight: 800; }
.ui__ach-v { font-size: 11px; font-weight: 700; }
.ui__ach-pr { font-size: 7px; font-weight: 700; letter-spacing: .05em; color: var(--muted); margin-top: 1px; }
.ui__stw-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 2px; }
.ui__stw-share { text-align: center; font-size: 11px; font-weight: 700; background: var(--accent); color: var(--accent-ink); padding: 9px; border-radius: 999px; }
.ui__stw-save { text-align: center; font-size: 11px; font-weight: 700; border: 1px solid var(--border-2); color: var(--text); padding: 9px; border-radius: 999px; }

/* ---- Customization accent-reactive sample ---- */
.custom__previews { flex-wrap: wrap; }
.custom__themes { display: flex; gap: 18px; }
.csample { width: 200px; max-width: 100%; background: var(--bg-elev); border: 1px solid var(--border); border-radius: 18px; padding: 16px; box-shadow: var(--shadow-sm); }
.csample__label { display: flex; align-items: center; gap: 6px; font-size: .66rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); }
.csample__title { display: block; font-size: 1.3rem; font-weight: 800; letter-spacing: -.01em; margin: 8px 0 12px; color: var(--accent); }
.csample__bars { display: flex; align-items: flex-end; gap: 6px; height: 40px; margin-bottom: 14px; }
.csample__bars i { flex: 1; height: var(--v); background: var(--accent); border-radius: 4px; opacity: .9; }
.csample__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.csample__btn { flex: 1; text-align: center; font-size: .82rem; font-weight: 700; background: var(--accent); color: var(--accent-ink); padding: 9px; border-radius: 10px; }
.lang-mini { display: inline-flex; padding: 3px; gap: 2px; background: var(--bg); border: 1px solid var(--border); border-radius: 999px; }
.lang-mini i { font-style: normal; font-size: .72rem; font-weight: 700; color: var(--muted); padding: 4px 9px; border-radius: 999px; }
.lang-mini i.is-on { background: var(--accent); color: var(--accent-ink); }

/* ============================================================
   CURSOR GLOW (desktop only, subtle)
   ============================================================ */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  filter: blur(40px); opacity: 0; pointer-events: none; z-index: 0; mix-blend-mode: screen;
  transform: translate3d(var(--mx, -200px), var(--my, -200px), 0) translate(-50%, -50%);
  transition: opacity .4s var(--ease);
}
body.cursor-on .cursor-glow { opacity: .35; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-reveal-delay="1"] { transition-delay: .1s; }
.reveal[data-reveal-delay="2"] { transition-delay: .2s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .showcase__grid { grid-template-columns: 320px 1fr; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .nav__cta { display: none; }

  /* Mobile hero: keep the 3-phone concept, but reorder so the phone group
     appears before the accent selector (users see what changes first), and
     the trust pill comes last. Tighter vertical rhythm. */
  .hero { padding-top: clamp(16px, 4vw, 36px); }
  .hero__grid { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0; }
  .hero__copy { display: contents; }
  .eyebrow { justify-content: center; }
  .hero__copy .eyebrow { order: 1; margin-bottom: 12px; }
  .hero__title { order: 2; }
  .hero__sub { order: 3; margin: 13px auto 0; }
  .hero__ctas { order: 4; justify-content: center; margin-top: 20px; }
  .hero__visual { order: 5; min-height: 0; margin-top: 22px; }
  .accent-picker { order: 6; justify-content: center; margin-top: 22px; }
  .hero__micro { order: 7; justify-content: center; margin-top: 18px; }

  .cards--3 { grid-template-columns: 1fr; }

  /* Showcase becomes stacked: phone per card, no sticky */
  .showcase__grid { grid-template-columns: 1fr; gap: 0; }
  .showcase__sticky { display: none; }
  .showcase__list { gap: 28px; }
  .feature { flex-direction: column; }
  .feature__text { max-height: none !important; opacity: 1 !important; }
  .feature__phone { display: block; width: 230px; margin: 6px auto 14px; }

  .stw__grid { grid-template-columns: 1fr; }
  .stw__copy { order: 1; }
  .stw__visual { order: 2; }
  .prog__grid { grid-template-columns: 1fr; }
  .custom__grid { grid-template-columns: 1fr; text-align: center; }
  .custom__controls { justify-content: center; }
  .custom__copy .eyebrow { justify-content: center; }
  .custom__copy .accent-picker--block { align-items: center; }

  /* 3-phone mobile composition: dominant neutral center, blue/red side phones
     peeking behind and cropped at the viewport edges (body overflow-x: clip). */
  .hero__phones { min-height: 0; margin: 0 auto; }
  .hero-phone--center { width: 66vw; max-width: 300px; }
  .hero-phone--left, .hero-phone--right { display: block; width: 60vw; opacity: .5; filter: brightness(.55) saturate(1.05); }
  .hero-phone--left  { transform: translate(-50%, -50%) translateX(-54%) rotate(-8deg) scale(.9); }
  .hero-phone--right { transform: translate(-50%, -50%) translateX(54%)  rotate(8deg)  scale(.9); }
  .hero__chip { margin-top: 16px; }

  /* Fallback (browsers without overflow: clip): keep centered decorative glows
     inside the viewport so they can't create phantom horizontal width. */
  .stw__glow, .fb__glow, .showcase__glow { max-width: 90vw; }

  /* feature blocks stack, text first, centered */
  .fb__grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .fb__text { order: 1; }
  .fb__visual { order: 2; min-height: 0; }
  .fb--reverse .fb__text { order: 1; }
  .fb--reverse .fb__visual { order: 2; }
  .fb__text .eyebrow { justify-content: center; }
  .fb__bullets li { justify-content: center; }
  .fb__note { border-left: none; padding-left: 0; }
  .demo-chip--tl { top: 2%; left: 0; }
  .demo-chip--br { bottom: 4%; right: 0; }

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

@media (max-width: 560px) {
  .trust__row { justify-content: flex-start; gap: 12px 20px; }
  .trust__item { font-size: .85rem; }
  .prog__metrics { grid-template-columns: 1fr 1fr; gap: 10px; }
  .pm__v { font-size: 1.3rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .btn { flex: 1; min-width: 0; }
  .hero__ctas { width: 100%; }
  .hero__ctas .btn--store { flex: 1 1 45%; }
  .poster-card { width: 150px; right: -4%; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .float-card, .poster-card, .hero__glow, .live-dot::after, .ui__rest-dot { animation: none !important; }
  .cursor-glow { display: none; }
}
