/* ============================================================
   GYMOVA — marketing landing
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg:        #0A0A0F;
  --surface:   #15151C;
  --surface-2: #1C1C26;
  --border:    #2A2A35;
  --border-2:  #353542;

  --text:      #FFFFFF;
  --muted:     #A1A1AA;
  --muted-2:   #71717A;

  --accent:    #FF6B35;
  --accent-2:  #FF3D71;
  --grad:      linear-gradient(135deg, #FF6B35 0%, #FF3D71 100%);
  --grad-soft: linear-gradient(135deg, rgba(255,107,53,.18) 0%, rgba(255,61,113,.18) 100%);

  --radius:    18px;
  --radius-lg: 26px;
  --radius-sm: 12px;

  --shadow:    0 24px 60px -24px rgba(0,0,0,.7);
  --shadow-glow: 0 18px 48px -16px rgba(255,107,53,.45);

  --maxw:      1180px;
  --nav-h:     72px;

  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: rgba(255,107,53,.35); color: #fff; }

/* ---------- Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .98rem;
  padding: 15px 26px;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn--primary:hover { box-shadow: 0 22px 56px -14px rgba(255,107,53,.6); }

.btn--sm { padding: 11px 20px; font-size: .9rem; }

.btn--store {
  background: var(--surface);
  color: #fff;
  border: 1px solid var(--border);
  padding: 11px 22px;
}
.btn--store:hover { border-color: var(--border-2); background: var(--surface-2); }
.btn__store-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; }
.btn__store-text small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .68rem;
  color: var(--muted);
  letter-spacing: .02em;
}
.btn__store-text strong { font-size: 1.02rem; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10,10,15,.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo { display: flex; align-items: center; gap: 9px; }
.logo__mark {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.logo__text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: -.01em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav__links {
  display: flex;
  gap: 34px;
  margin-left: auto;
}
.nav__links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  color: var(--muted);
  position: relative;
  transition: color .2s ease;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  border-radius: 2px;
  background: var(--grad);
  transition: width .25s ease;
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { width: 100%; }

.nav__cta { margin-left: 8px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span {
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  inset: var(--nav-h) 0 auto 0;
  background: rgba(10,10,15,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 24px 26px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform .25s ease, opacity .25s ease;
}
.nav__mobile.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.nav__mobile a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.nav__mobile a:last-of-type { border-bottom: none; }
.nav__mobile .btn { margin-top: 14px; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 70px) 0 90px;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  top: -160px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 620px;
  background: radial-gradient(ellipse at center, rgba(255,107,53,.22), transparent 62%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  color: var(--muted);
  padding: 7px 15px 7px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  margin-bottom: 26px;
}
.pill__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,107,53,.18);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 5.6vw, 4.3rem);
  line-height: 1.04;
  letter-spacing: -.025em;
  margin-bottom: 22px;
}
.hero__sub {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 510px;
  margin-bottom: 32px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .88rem;
  color: var(--muted);
}
.hero__stars { display: flex; gap: 3px; }

/* ---------- Phone mockup ---------- */
.hero__device {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__device-glow {
  position: absolute;
  inset: 8% 14%;
  background: var(--grad);
  filter: blur(70px);
  opacity: .32;
  z-index: 0;
  border-radius: 50%;
}

.phone {
  position: relative;
  z-index: 1;
  width: 312px;
  aspect-ratio: 312 / 640;
  background: #0d0d13;
  border: 2px solid #2f2f3b;
  border-radius: 46px;
  padding: 11px;
  box-shadow:
    var(--shadow),
    inset 0 0 0 2px #0a0a0f,
    0 0 0 1px rgba(255,255,255,.04);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.phone__notch {
  position: absolute;
  top: 11px; left: 50%;
  transform: translateX(-50%);
  width: 116px; height: 26px;
  background: #0d0d13;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}
.phone__screen {
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: var(--bg);
}

.screen {
  height: 100%;
  padding: 40px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background:
    radial-gradient(circle at 80% -5%, rgba(255,107,53,.16), transparent 45%),
    var(--bg);
}
.screen__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.screen__hello { font-size: .72rem; color: var(--muted-2); }
.screen__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
}
.screen__streak {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .68rem;
  color: var(--accent);
  background: rgba(255,107,53,.12);
  border: 1px solid rgba(255,107,53,.25);
  padding: 5px 9px;
  border-radius: 999px;
}

.screen__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
}
.screen__card--hero {
  display: flex;
  align-items: center;
  gap: 13px;
  background: linear-gradient(135deg, #18181f, #15151c);
}
.screen__ring { position: relative; flex-shrink: 0; display: grid; place-items: center; }
.screen__ring-val {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .92rem;
}
.screen__label {
  font-size: .64rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted-2);
}
.screen__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  margin: 3px 0 2px;
}
.screen__sub { font-size: .72rem; color: var(--muted); }

.screen__row { display: flex; gap: 10px; }
.screen__stat {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 11px 13px;
}
.screen__stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.screen__stat-lbl { font-size: .64rem; color: var(--muted); }

.screen__list { display: flex; flex-direction: column; gap: 8px; }
.screen__item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 10px 12px;
}
.screen__bar {
  width: 4px; height: 30px;
  border-radius: 4px;
  background: var(--grad);
  flex-shrink: 0;
}
.screen__item div { flex: 1; }
.screen__item-t {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
}
.screen__item-s { font-size: .68rem; color: var(--muted); }
.screen__pr {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .6rem;
  letter-spacing: .06em;
  color: var(--accent);
  background: rgba(255,107,53,.14);
  border: 1px solid rgba(255,107,53,.3);
  padding: 4px 7px;
  border-radius: 7px;
}
.screen__check {
  display: grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
}

.screen__timer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  color: #fff;
  background: rgba(255,107,53,.1);
  border: 1px solid rgba(255,107,53,.28);
  border-radius: 13px;
  padding: 11px;
}
.screen__timer-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: .35; transform: scale(.7); }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.strip__inner {
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.strip__label {
  font-size: .9rem;
  color: var(--muted);
  font-weight: 500;
}
.strip__roles { display: flex; align-items: center; gap: 18px; }
.strip__role {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .98rem;
  color: #fff;
}
.strip__role svg { color: var(--accent); }
.strip__sep { width: 4px; height: 4px; border-radius: 50%; background: var(--border-2); }

/* ============================================================
   SECTIONS (generic)
   ============================================================ */
.section { padding: 100px 0; }
.section--alt {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255,107,53,.07), transparent 70%),
    var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section__head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.section__lead {
  font-size: 1.08rem;
  color: var(--muted);
}

/* ---------- Grids ---------- */
.grid { display: grid; gap: 22px; }
.grid--features { grid-template-columns: repeat(3, 1fr); }
.grid--steps    { grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid--stats    { grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-2);
  background: var(--surface-2);
}
.card:hover::before { transform: scaleX(1); }

.card__icon {
  display: grid;
  place-items: center;
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--grad-soft);
  border: 1px solid rgba(255,107,53,.25);
  color: var(--accent);
  margin-bottom: 20px;
}
.card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  margin-bottom: 9px;
}
.card__text {
  font-size: .96rem;
  color: var(--muted);
}

/* ============================================================
   STEPS
   ============================================================ */
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform .25s ease, border-color .25s ease;
}
.step:hover { transform: translateY(-6px); border-color: var(--border-2); }
.step__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -.03em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.step__text {
  font-size: .98rem;
  color: var(--muted);
}

/* ============================================================
   SPLIT (Trainers & Gyms)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split__copy .section__lead { margin-bottom: 28px; }

.checklist {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 34px;
}
.checklist li {
  display: flex;
  gap: 14px;
}
.checklist__ic {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--grad);
  margin-top: 2px;
}
.checklist li div { font-size: .96rem; color: var(--muted); }
.checklist li strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.04rem;
  color: #fff;
  margin-bottom: 2px;
}

/* ---------- Trainer panel visual ---------- */
.split__visual { position: relative; }
.split__visual-glow {
  position: absolute;
  inset: 12% 4%;
  background: var(--grad);
  filter: blur(80px);
  opacity: .2;
  z-index: 0;
  border-radius: 50%;
}
.panel {
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, #17171f, #121218);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.panel__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
}
.panel__sub { font-size: .78rem; color: var(--muted); }
.panel__badge {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .05em;
  color: var(--accent);
  background: rgba(255,107,53,.13);
  border: 1px solid rgba(255,107,53,.3);
  padding: 6px 11px;
  border-radius: 999px;
}

.panel__client {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 10px;
}
.avatar {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 11px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .78rem;
  color: #fff;
}
.avatar--a { background: linear-gradient(135deg, #FF6B35, #FF3D71); }
.avatar--b { background: linear-gradient(135deg, #6366F1, #8B5CF6); }
.avatar--c { background: linear-gradient(135deg, #10B981, #06B6D4); }
.panel__client-info { flex: 1; min-width: 0; }
.panel__client-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
}
.panel__client-meta { font-size: .72rem; color: var(--muted); }

.bar {
  width: 64px;
  height: 6px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}
.bar__fill {
  display: block;
  height: 100%;
  background: var(--grad);
  border-radius: 999px;
}

.panel__foot {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.panel__metric {
  flex: 1;
  text-align: center;
}
.panel__metric-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.panel__metric-lbl { font-size: .68rem; color: var(--muted); }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats {
  padding: 70px 0;
  background:
    radial-gradient(ellipse 70% 100% at 50% 50%, rgba(255,107,53,.08), transparent 70%),
    var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 8px;
}
.stat__lbl {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  color: var(--muted);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta { padding: 100px 0; }
.cta__box {
  position: relative;
  text-align: center;
  background: linear-gradient(160deg, #18181f, #121218);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 70px 40px;
  overflow: hidden;
}
.cta__glow {
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 560px; height: 360px;
  background: radial-gradient(ellipse at center, rgba(255,107,53,.3), transparent 65%);
  filter: blur(30px);
  pointer-events: none;
}
.cta__box > * { position: relative; z-index: 1; }
.cta__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.cta__lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 32px;
}
.cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.cta__note {
  font-size: .85rem;
  color: var(--muted-2);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding-top: 64px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__brand .logo { margin-bottom: 16px; }
.footer__tagline {
  font-size: .92rem;
  color: var(--muted);
  max-width: 320px;
  margin-bottom: 22px;
}
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.footer__social a:hover {
  color: var(--accent);
  border-color: rgba(255,107,53,.4);
  transform: translateY(-2px);
}

.footer__col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  font-size: .93rem;
  color: var(--muted);
  padding: 6px 0;
  transition: color .2s ease;
}
.footer__col a:hover { color: var(--accent); }

.footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  padding-bottom: 28px;
  border-top: 1px solid var(--border);
}
.footer__bar p { font-size: .85rem; color: var(--muted-2); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* staggered children inside grids */
.grid .reveal:nth-child(2) { transition-delay: .08s; }
.grid .reveal:nth-child(3) { transition-delay: .16s; }
.grid .reveal:nth-child(4) { transition-delay: .24s; }
.grid .reveal:nth-child(5) { transition-delay: .32s; }
.grid .reveal:nth-child(6) { transition-delay: .4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__toggle { display: flex; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__actions, .hero__trust { justify-content: center; }
  .pill { margin-left: auto; margin-right: auto; }

  .grid--features { grid-template-columns: repeat(2, 1fr); }
  .grid--steps    { grid-template-columns: 1fr; }
  .grid--stats    { grid-template-columns: repeat(2, 1fr); gap: 32px 18px; }

  .split {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .split__copy { text-align: center; }
  .checklist li { text-align: left; }
  .split__copy .btn { display: inline-flex; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .section { padding: 72px 0; }
  .cta { padding: 72px 0; }
  .container { padding: 0 20px; }

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

  .hero { padding-top: calc(var(--nav-h) + 44px); }
  .hero__actions .btn { flex: 1; justify-content: center; }

  .strip__inner { gap: 18px; }
  .strip__roles { gap: 12px; }

  .cta__box { padding: 52px 24px; }
  .cta__actions .btn { flex: 1; justify-content: center; }

  .footer__bar { flex-direction: column; align-items: flex-start; gap: 6px; }

  .phone { width: 270px; }

  /* disable staggered delay on single-column to avoid lag */
  .grid .reveal { transition-delay: 0s !important; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .phone { animation: none; }
  .screen__timer-pulse { animation: none; }
  * { transition-duration: .01ms !important; }
}
