/* ============================================================
   TOP1% — Landing Page
   Pure CSS, no dependencies. Dark / premium / glassmorphism.
   ============================================================ */

:root {
  --bg:        #08080a;
  --bg-2:      #0d0d11;
  --card:      rgba(255,255,255,0.025);
  --card-hover:rgba(255,255,255,0.05);
  --border:    rgba(255,255,255,0.07);
  --border-2:  rgba(255,255,255,0.12);
  --text:      #f4f5f7;
  --muted:     #8b8c95;
  --muted-2:   #5e5f68;
  --accent:    #4a9eff;
  --accent-2:  #2d7cff;
  --accent-glow: rgba(74,158,255,0.35);
  --radius:    18px;
  --maxw:      1180px;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --font:      -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
strong { color: var(--text); font-weight: 600; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; }
.center { text-align: center; }

/* ===================== AMBIENT BACKGROUND ===================== */
.bg-layer { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }

.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 40%, transparent 100%);
}

.bg-glow { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.5; }
.bg-glow--top { top: -240px; left: 50%; transform: translateX(-50%); width: 900px; height: 600px;
  background: radial-gradient(circle, rgba(45,124,255,0.20), transparent 70%); }
.bg-glow--mid { top: 1400px; left: -200px; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(74,158,255,0.10), transparent 70%); }

.bg-watermark {
  position: absolute; inset: 0;
  font-weight: 800; font-size: 120px; line-height: 1.4; letter-spacing: 8px;
  color: rgba(255,255,255,0.012);
  word-break: break-word; overflow: hidden;
  transform: rotate(-8deg) scale(1.4); transform-origin: center;
  user-select: none;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px; letter-spacing: 0.2px;
  padding: 13px 26px; border-radius: 12px; border: 1px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--lg { padding: 16px 34px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--primary {
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 8px 30px -8px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -8px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.3); }

.btn--ghost { background: rgba(255,255,255,0.04); color: var(--text); border-color: var(--border-2); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }

/* ---- Metallic chrome CTA ---- */
.btn--join {
  position: relative;
  overflow: hidden;
  color: #0b0c10;
  font-weight: 700;
  letter-spacing: 0.3px;
  border: 1px solid rgba(255,255,255,0.55);
  background: linear-gradient(135deg,
    #f6f8fb 0%, #cdd3da 16%, #ffffff 34%,
    #9aa2ac 52%, #eef1f4 68%, #b4bcc6 84%, #dfe4e9 100%);
  background-size: 220% 220%;
  background-position: 0% 0%;
  box-shadow:
    0 10px 34px -10px rgba(0,0,0,0.65),
    inset 0 1px 0 rgba(255,255,255,0.95),
    inset 0 -3px 8px rgba(0,0,0,0.28);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background-position .6s var(--ease);
}
/* moving sheen that sweeps across on hover */
.btn--join::before {
  content: "";
  position: absolute; top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.9) 50%, transparent 100%);
  transform: skewX(-22deg);
  transition: left .7s var(--ease);
  pointer-events: none;
}
.btn--join:hover {
  transform: translateY(-2px);
  background-position: 100% 100%;
  box-shadow:
    0 18px 46px -10px rgba(0,0,0,0.75),
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -3px 10px rgba(0,0,0,0.32);
  animation: chromeShift 2.6s linear infinite;
}
.btn--join:hover::before { left: 130%; }
.btn--join:active { transform: translateY(0); }

@keyframes chromeShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ===================== NAV ===================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0; transition: padding .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 10px 0;
  background: rgba(8,8,10,0.72); backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav__brand { font-weight: 800; font-size: 21px; letter-spacing: 0.5px; }
.nav__pct { color: var(--text); font-size: 14px; vertical-align: super; }
.nav__links { display: flex; gap: 30px; }
.nav__links a { color: var(--muted); font-size: 14.5px; font-weight: 500; transition: color .2s; }
.nav__links a:hover { color: var(--text); }

/* ===================== HERO ===================== */
.hero { padding: 92px 0 70px; position: relative; }
.hero__inner { display: flex; flex-direction: column; align-items: center; text-align: center; }

.eyebrow {
  display: inline-block;
  text-transform: uppercase; letter-spacing: 4px; font-weight: 800;
  font-size: clamp(17px, 2.7vw, 30px);
  margin-top: 110px; margin-bottom: 26px;
  background: linear-gradient(180deg, #e3efff 0%, #6fb2ff 34%, #2e7dff 52%, #1660d6 68%, #b8d6ff 100%);
  background-size: 100% 220%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 0 5px rgba(74,158,255,0.28));
  animation: eyebrowSheen 4.5s ease-in-out infinite alternate;
}
@keyframes eyebrowSheen {
  0% { background-position: 50% 0%; }
  100% { background-position: 50% 100%; }
}
.hero__logo { font-size: clamp(64px, 13vw, 150px); font-weight: 800; letter-spacing: -2px; line-height: 0.9; }
.hero__pct { color: var(--text); font-size: 0.45em; vertical-align: super; font-weight: 700; }
.hero__rule { width: 220px; max-width: 60%; height: 1px; background: linear-gradient(90deg, transparent, var(--border-2), transparent); margin: 28px 0 26px; }
.hero__sub { text-transform: uppercase; letter-spacing: 10px; font-size: clamp(15px, 3vw, 24px); font-weight: 500; color: var(--muted); }
.hero__tagline { max-width: 620px; margin-top: 24px; font-size: clamp(16px, 2.2vw, 19px); color: var(--muted); }
.hero__headline {
  font-size: clamp(18px, 5vw, 60px); font-weight: 800; line-height: 1.12;
  letter-spacing: -0.03em; color: var(--text); margin: 0 auto; white-space: nowrap;
}
.hero__headline-accent { color: var(--accent); }
.hero__subhead {
  max-width: 720px; margin: 26px auto 0; font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.65; color: var(--muted);
}
.hero__subhead strong { color: var(--text); font-weight: 600; }

.hero__cta { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; justify-content: center; }

/* ===================== VIDEO ===================== */
.video { width: 100%; max-width: 880px; margin: 30px auto 0; }
.video__facade, .video iframe {
  width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius); border: 1px solid var(--border);
  display: block;
}
.video__facade {
  position: relative; cursor: pointer; overflow: hidden;
  background:
    radial-gradient(120% 120% at 50% 0%, #1a1a20 0%, #0c0c10 60%, #08080a 100%);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.8);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.video__facade:hover { transform: translateY(-3px); box-shadow: 0 50px 100px -30px rgba(0,0,0,0.9); }
.video__head { position: absolute; top: 18px; left: 18px; display: flex; align-items: center; gap: 12px; z-index: 2; }
.video__avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg,#333,#555); flex-shrink: 0; }
.video__meta { display: flex; flex-direction: column; text-align: left; }
.video__title { font-weight: 600; font-size: 16px; }
.video__channel { font-size: 13px; color: var(--muted); }
.video__play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 1;
  transition: transform .3s var(--ease);
}
.video__facade:hover .video__play { transform: scale(1.08); }
.video__footer { position: absolute; right: 18px; bottom: 16px; font-size: 14px; color: var(--text); display: flex; gap: 6px; align-items: center; z-index: 2; }
.video__footer strong { color: #fff; }

/* ===================== STATS ===================== */
.stats { padding: 30px 0; }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 36px 16px; position: relative; }
.stat:not(:last-child)::after { content:""; position: absolute; right: 0; top: 22%; height: 56%; width: 1px; background: var(--border); }
.stat__num { font-size: clamp(28px, 4.5vw, 44px); font-weight: 700; letter-spacing: -1px; }
.stat__label { text-transform: uppercase; letter-spacing: 3px; font-size: 12px; color: var(--muted); }

/* ===================== SECTIONS ===================== */
.section { padding: 90px 0; position: relative; }
.section__label {
  text-transform: uppercase; letter-spacing: 7px; font-size: 14px; font-weight: 500;
  color: var(--muted); margin-bottom: 34px;
}
.section__intro { max-width: 760px; margin: 0 auto 56px; color: var(--muted); font-size: 18px; }

.prose p { font-size: clamp(17px, 2.3vw, 21px); color: var(--muted); margin-bottom: 26px; }
.prose p:last-child { margin-bottom: 0; }
.muted-lead { color: var(--muted-2) !important; }

/* ===================== CHANNEL CARDS ===================== */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card--wide { grid-column: 1 / -1; }
.card {
  display: flex; gap: 22px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-4px); background: var(--card-hover); border-color: var(--border-2); box-shadow: 0 20px 50px -25px rgba(0,0,0,0.8); }
.card__icon {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, rgba(74,158,255,0.18), rgba(74,158,255,0.04));
  border: 1px solid rgba(74,158,255,0.22); color: var(--accent);
}
.card__body h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; letter-spacing: 0.2px; }
.card__body p { color: var(--muted); font-size: 15px; }
.card__tag-inline { font-size: 11px; color: var(--muted-2); font-weight: 500; text-transform: lowercase; }

/* ===================== TESTIMONIAL STACK ===================== */
.tstack { max-width: 980px; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; }
.tcard {
  display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: center;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 44px 48px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.tcard:hover { transform: translateY(-3px); border-color: var(--border-2); background: var(--card-hover); }
.tcard--rev { grid-template-columns: 1fr 320px; }
.tcard--rev .tcard__shot { order: 2; }
.tcard__shot { display: flex; align-items: center; justify-content: center; }
.tcard__shot img {
  max-width: 300px; max-height: 520px; width: auto; height: auto;
  object-fit: contain; display: block;
  border-radius: 18px; border: 1px solid var(--border);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.85);
}
.tcard__quote { font-size: clamp(20px, 2.6vw, 26px); line-height: 1.5; color: var(--muted); text-align: left; }
.tcard__quote strong { color: var(--text); }

/* ===================== RECENT PLAYS ===================== */
.plays-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 1080px; margin: 0 auto; }
.play {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; display: flex; flex-direction: column; gap: 18px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.play:hover { transform: translateY(-3px); border-color: var(--border-2); background: var(--card-hover); }
.play__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.play__ticker { font-size: clamp(24px, 3vw, 32px); font-weight: 800; letter-spacing: -0.5px; line-height: 1.1; }
.play__x {
  background: #fff; color: #0a0a0c; font-weight: 800; font-size: clamp(18px, 2.2vw, 24px);
  padding: 12px 18px; border-radius: 14px; line-height: 1; white-space: nowrap;
  box-shadow: 0 8px 24px -10px rgba(0,0,0,0.7);
}
.play__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: -6px; }
.tag {
  text-transform: uppercase; letter-spacing: 1px; font-size: 11px; font-weight: 600;
  color: var(--muted); background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  padding: 6px 12px; border-radius: 8px;
}
.play__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pstat {
  background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 12px;
  padding: 14px 16px; display: flex; flex-direction: column; gap: 6px;
}
.pstat__k { text-transform: uppercase; letter-spacing: 1px; font-size: 11px; color: var(--muted-2); }
.pstat__v { font-size: 17px; font-weight: 700; color: var(--text); }
.play__note {
  background: rgba(255,255,255,0.015); border-left: 2px solid var(--accent);
  border-radius: 0 12px 12px 0; padding: 16px 18px;
}
.play__note-label { text-transform: uppercase; letter-spacing: 1px; font-size: 11px; color: var(--muted-2); display: block; margin-bottom: 8px; }
.play__note p { color: var(--muted); line-height: 1.6; font-size: 15px; }
/* ---- What is TOP1% ---- */
.about__lead { max-width: 780px; margin: 0 auto; font-size: clamp(20px, 2.6vw, 30px); line-height: 1.45; color: var(--muted); font-weight: 500; }
.about__lead strong { color: var(--text); font-weight: 700; }
.about__why { text-align: center; text-transform: uppercase; letter-spacing: 3px; font-size: 13px; color: var(--muted-2); margin: 60px 0 26px; }
.about__reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 920px; margin: 0 auto; }
.reason { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 30px 26px; text-align: left; display: flex; flex-direction: column; gap: 16px; }
.reason__no { font-size: 13px; font-weight: 700; color: var(--accent); letter-spacing: 1px; }
.reason p { font-size: 19px; color: var(--muted); line-height: 1.4; }
.reason strong { color: var(--text); }
.about__callout { max-width: 780px; margin: 60px auto 0; background: linear-gradient(180deg, rgba(74,158,255,0.07), rgba(255,255,255,0.012)); border: 1px solid var(--border-2); border-radius: var(--radius); padding: 38px 42px; }
.about__callout p { font-size: clamp(17px, 2vw, 21px); line-height: 1.55; color: var(--muted); }
.about__callout strong { color: var(--text); font-weight: 700; }

/* ---- Transition statement line ---- */
.statement { padding: 30px 0 10px; }
.statement__line { font-size: clamp(20px, 3vw, 30px); font-weight: 700; color: var(--text); letter-spacing: -0.5px; }

/* ---- Win galleries ---- */
.wins-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1120px; margin: 0 auto; }
.win-tile {
  position: relative; aspect-ratio: 9 / 18; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border); background: #101014;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.win-tile:hover { transform: translateY(-3px); border-color: var(--border-2); }
.win-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.win-tile__ph { display: none; color: var(--muted-2); font-size: 12px; letter-spacing: 1px; }
.win-tile--empty { border-style: dashed; background: #0e0e12; }
.win-tile--empty img { display: none; }
.win-tile--empty .win-tile__ph { display: block; }

/* ===================== STEPS ===================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 28px; }
.step {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.step:hover { transform: translateY(-4px); border-color: var(--border-2); }
.step__num { font-size: 14px; font-weight: 700; color: var(--accent); letter-spacing: 2px; }
.step h3 { font-size: 20px; margin: 14px 0 10px; font-weight: 600; }
.step p { color: var(--muted); font-size: 15px; }

/* ===================== OFFER ===================== */
.offer {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 0;
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-2);
  background: linear-gradient(135deg, rgba(74,158,255,0.06), rgba(255,255,255,0.02));
}
.offer__list { padding: 40px; }
.offer__title { font-size: 17px; font-weight: 600; margin-bottom: 18px; }
.offer__list ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.offer__list li { position: relative; padding-left: 30px; color: var(--muted); font-size: 16px; }
.offer__list li::before {
  content: "✓"; position: absolute; left: 0; top: 1px; color: var(--accent); font-weight: 700;
  width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(74,158,255,0.12); border-radius: 50%; font-size: 12px;
}
.offer__cta {
  padding: 40px; display: flex; flex-direction: column; justify-content: center; gap: 16px;
  background: rgba(0,0,0,0.25); border-left: 1px solid var(--border);
}
.offer__scarcity { font-size: 14px; font-weight: 600; color: var(--accent); text-align: center; }
.offer__note { font-size: 13px; color: var(--muted-2); text-align: center; }

/* ===================== FAQ ===================== */
.faq { display: flex; flex-direction: column; gap: 12px; margin-top: 34px; }
.faq__item {
  background: var(--card); border: 1px solid var(--border); border-radius: 14px;
  padding: 4px 24px; transition: border-color .25s, background .25s;
}
.faq__item[open] { border-color: var(--border-2); background: var(--card-hover); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 20px 0; font-size: 17px; font-weight: 500;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 24px; color: var(--accent); font-weight: 300; transition: transform .3s var(--ease); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--muted); padding: 0 0 22px; font-size: 15.5px; max-width: 90%; }

/* ===================== FINAL CTA ===================== */
.finalcta { padding: 120px 0; position: relative; }
.finalcta::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(45,124,255,0.12), transparent 70%);
}
.finalcta__title { font-size: clamp(34px, 6vw, 60px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.05; margin-bottom: 20px; }
.grad { background: linear-gradient(120deg, var(--accent), #9ec9ff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.finalcta__sub { color: var(--muted); font-size: 18px; max-width: 520px; margin: 0 auto 36px; }

/* ===================== FOOTER ===================== */
.footer { border-top: 1px solid var(--border); padding: 56px 0 40px; }
.footer__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 22px; }
.footer__links { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; }
.footer__links a { color: var(--muted); font-size: 14.5px; transition: color .2s; }
.footer__links a:hover { color: var(--text); }
.footer__disclaimer { max-width: 760px; font-size: 12.5px; line-height: 1.7; color: var(--muted-2); }
.footer__copy { font-size: 13px; color: var(--muted-2); }
.footer__copy a { color: var(--muted); }
.footer__copy a:hover { color: var(--text); }

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

/* ===================== RESPONSIVE ===================== */
@media (max-width: 860px) {
  .nav__links { display: none; }
  .cards { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2)::after { display: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--border); }
  .steps { grid-template-columns: 1fr; }
  .offer { grid-template-columns: 1fr; }
  .offer__cta { border-left: none; border-top: 1px solid var(--border); }
  .tcard, .tcard--rev { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px; text-align: center; }
  .tcard--rev .tcard__shot { order: 0; }
  .tcard__quote { text-align: center; }
  .plays-grid { grid-template-columns: 1fr; }
  .wins-grid { grid-template-columns: repeat(2, 1fr); }
  .about__reasons { grid-template-columns: 1fr; }
  .about__callout { padding: 28px 24px; }
  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .stats__grid { grid-template-columns: 1fr; }
  .stat::after { display: none !important; }
  .stat { border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .hero { padding: 84px 0 50px; }
  .video__title { font-size: 14px; }
  .btn--lg { padding: 14px 26px; font-size: 15px; }
  .hero__cta { flex-direction: column; width: 100%; }
  .hero__cta .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
