/* ════════════════════════════════════════════════════════════
   REAL SELF DEFENSE — Landing page
   Built on the RSD design system v1.0
   ════════════════════════════════════════════════════════════ */

:root {
  --red:      #C8201F;
  --red-dim:  #A81818;
  --bone:     #F1ECE3;
  --bone-2:   #E4DCC9;
  --carbon:   #0A0A0A;
  --carbon-2: #141414;
  --carbon-3: #1c1c1c;
  --muted:    rgba(241,236,227,.55);
  --muted-2:  rgba(241,236,227,.35);
  --hair:     rgba(241,236,227,.10);
  --hair-2:   rgba(241,236,227,.18);

  --display: 'Anton', 'Bebas Neue', Impact, sans-serif;
  --body:    'Inter', -apple-system, system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --maxw: 1240px;
  --pad:  clamp(20px, 5vw, 72px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--carbon);
  color: var(--bone);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 0.9;
}
a { color: inherit; text-decoration: none; }
img { display: block; }
.grayscale { filter: grayscale(1) contrast(1.06) brightness(0.98); }

/* ───── Shared atoms ───── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2.4px;
  color: var(--red);
  text-transform: uppercase;
}
.eyebrow.muted { color: var(--muted); }

.pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 10px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 1.8px;
  text-transform: uppercase;
}
.pill.red    { background: var(--red); color: var(--bone); }
.pill.outline{ border: 1px solid var(--hair-2); color: var(--bone); }
.pill.ghost  { background: rgba(241,236,227,.06); color: var(--bone); }
.pill .dot   { width: 6px; height: 6px; background: var(--red); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 16px;
  height: 58px; padding: 0 26px;
  border: none; cursor: pointer;
  font-family: var(--display); font-size: 19px; letter-spacing: 1.8px;
  text-transform: uppercase;
  transition: background .15s, transform .08s, color .15s, border-color .15s;
}
.btn:active { transform: scale(.985); }
.btn-red    { background: var(--red); color: var(--bone); }
.btn-red:hover { background: var(--red-dim); }
.btn-ghost  { background: transparent; color: var(--bone); border: 1px solid var(--hair-2); }
.btn-ghost:hover { border-color: var(--bone); }
.btn svg { flex-shrink: 0; }

/* App-store style download buttons */
.stores { display: flex; flex-wrap: wrap; gap: 12px; }
.store {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 18px 10px 16px;
  background: var(--bone); color: var(--carbon);
  transition: background .15s, transform .08s;
}
.store:hover { background: var(--bone-2); }
.store:active { transform: scale(.985); }
.store svg { width: 22px; height: 22px; flex-shrink: 0; }
.store .st { display: flex; flex-direction: column; line-height: 1.05; }
.store .st .s { font-family: var(--mono); font-size: 8.5px; letter-spacing: 1.4px; text-transform: uppercase; opacity: .7; }
.store .st .b { font-family: var(--display); font-size: 18px; letter-spacing: .5px; text-transform: uppercase; }

/* Section scaffolding */
section { position: relative; }
.sec-pad { padding-block: clamp(72px, 11vw, 150px); }
.sec-head { max-width: 760px; }
.sec-head .eyebrow { margin-bottom: 18px; }
.sec-title {
  font-size: clamp(40px, 6.4vw, 88px);
  line-height: 0.88;
  letter-spacing: 0.5px;
}
.sec-title .r { color: var(--red); }
.sec-lede {
  margin-top: 22px;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.6;
  color: rgba(241,236,227,.74);
  max-width: 620px;
}
.hair-top { border-top: 1px solid var(--hair); }

/* ════════════ NAV ════════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hair);
}
.nav .inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { font-family: var(--display); font-size: 26px; letter-spacing: 1.5px; }
.brand .s { color: var(--red); }
.nav .brand .s { color: var(--bone); }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-family: var(--mono); font-size: 11px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--muted); transition: color .15s; }
.nav-links a:hover { color: var(--bone); }
.nav-cta {
  font-family: var(--display); font-size: 14px; letter-spacing: 1.6px; text-transform: uppercase;
  background: var(--red); color: var(--bone); padding: 11px 18px;
  transition: background .15s;
}
.nav-cta:hover { background: var(--red-dim); }
@media (max-width: 880px) { .nav-links { display: none; } }

/* ════════════ HERO ════════════ */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--hair); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 22%; opacity: .34; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--carbon) 18%, rgba(10,10,10,.55) 52%, rgba(10,10,10,.2) 100%),
    linear-gradient(0deg, var(--carbon) 4%, rgba(10,10,10,0) 40%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center;
  padding-top: clamp(56px, 8vw, 104px); padding-bottom: clamp(56px, 8vw, 104px);
  min-height: 86vh;
}
.hero-copy { max-width: 640px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.hero h1 {
  font-size: clamp(58px, 10.5vw, 150px);
  line-height: 0.94;
  letter-spacing: 1px;
}
.hero h1 .r { color: var(--red); }
.hero-sub {
  margin-top: 26px;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.5;
  color: rgba(241,236,227,.82);
  max-width: 480px;
}
.hero-sub b { color: var(--bone); font-weight: 600; }
.hero-cta { margin-top: 34px; display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.hero-meta { margin-top: 26px; display: flex; gap: 26px; flex-wrap: wrap; }
.hero-meta .m .v { font-family: var(--display); font-size: 30px; line-height: 1; }
.hero-meta .m .v .u { color: var(--red); }
.hero-meta .m .l { font-family: var(--mono); font-size: 9.5px; letter-spacing: 1.6px; color: var(--muted); margin-top: 5px; }

.hero-phone { display: flex; justify-content: center; align-items: center; }

@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; min-height: 0; }
  .hero-phone { order: -1; }
  .hero-copy { max-width: 100%; }
}

/* ════════════ DEVICE — PHONE ════════════ */
.phone {
  position: relative;
  width: 300px;
  aspect-ratio: 390 / 844;
  background: #000;
  border-radius: 46px;
  padding: 11px;
  border: 1px solid rgba(241,236,227,.14);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.9), 0 0 0 2px rgba(0,0,0,.6);
  flex-shrink: 0;
}
.phone.lg { width: 330px; }
.phone-screen {
  position: relative;
  width: 100%; height: 100%;
  background: var(--carbon);
  border-radius: 36px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.phone-notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 34%; height: 22px; background: #000; border-radius: 12px; z-index: 30;
}
.statusbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 22px 4px; font-family: var(--mono); font-size: 11px; letter-spacing: .5px;
  color: var(--bone); z-index: 20;
}
.statusbar .ico { display: flex; gap: 5px; align-items: center; }
.statusbar .bars { display: flex; gap: 2px; align-items: flex-end; height: 10px; }
.statusbar .bars i { width: 3px; background: var(--bone); display: block; }
.homebar { height: 5px; width: 36%; background: rgba(241,236,227,.5); border-radius: 3px; margin: 6px auto 9px; }

/* App screen internals (shared) */
.scr-hero { position: relative; }
.scr-hero img { width: 100%; height: 100%; object-fit: cover; }
.scr-grad {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.45) 0%, rgba(10,10,10,0) 35%, rgba(10,10,10,.95) 100%);
}
.mono-lbl { font-family: var(--mono); letter-spacing: 1.8px; text-transform: uppercase; }
.anton { font-family: var(--display); text-transform: uppercase; }

/* ════════════ MARQUEE STRIP ════════════ */
.marquee {
  border-block: 1px solid var(--hair);
  background: var(--carbon);
  overflow: hidden; padding-block: 18px;
}
.marquee-track { display: flex; gap: 56px; width: max-content; animation: scroll-x 34s linear infinite; }
.marquee-item { display: flex; align-items: center; gap: 56px; font-family: var(--display); font-size: 26px; letter-spacing: 1.5px; color: var(--bone); text-transform: uppercase; white-space: nowrap; }
.marquee-item .x { color: var(--red); font-size: 16px; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ════════════ FEATURE SHOWCASE (phones + copy) ════════════ */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.showcase.flip .showcase-media { order: 2; }
.showcase + .showcase { margin-top: clamp(80px, 10vw, 150px); }
.showcase-media { display: flex; justify-content: center; position: relative; }
.showcase-copy .num { font-family: var(--display); font-size: 16px; letter-spacing: 2px; color: var(--red); margin-bottom: 14px; }
.showcase-copy h3 { font-size: clamp(34px, 4.4vw, 56px); line-height: 0.92; }
.showcase-copy h3 .r { color: var(--red); }
.showcase-copy p { margin-top: 18px; font-size: 16.5px; line-height: 1.6; color: rgba(241,236,227,.74); max-width: 460px; }
.feat-list { margin-top: 26px; display: flex; flex-direction: column; }
.feat-list .f { display: flex; gap: 14px; align-items: baseline; padding: 14px 0; border-top: 1px solid var(--hair); }
.feat-list .f .k { font-family: var(--mono); font-size: 10px; letter-spacing: 1.4px; color: var(--red); flex-shrink: 0; width: 26px; }
.feat-list .f .t { font-family: var(--display); font-size: 17px; letter-spacing: 1px; text-transform: uppercase; }
.feat-list .f .d { color: var(--muted); font-size: 13.5px; margin-top: 2px; }
@media (max-width: 860px) {
  .showcase { grid-template-columns: 1fr; gap: 48px; }
  .showcase.flip .showcase-media { order: 0; }
  .showcase-copy p, .showcase-copy { max-width: 100%; }
}

/* ════════════ PROGRAM STEPS ════════════ */
.steps-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--hair); border: 1px solid var(--hair); }
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps-grid { grid-template-columns: 1fr; } }

/* ════════════ 6-WEEK CURRICULUM ════════════ */
.weeks { margin-top: 48px; display: grid; gap: 1px; background: var(--hair); border: 1px solid var(--hair); }
.week {
  background: var(--carbon);
  display: grid; grid-template-columns: 124px 1fr auto;
  gap: clamp(14px, 3vw, 40px); align-items: center;
  padding: clamp(20px, 2.6vw, 30px) clamp(20px, 3vw, 36px);
  position: relative; transition: background .18s;
}
.week:hover { background: var(--carbon-2); }
.week::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: var(--red); transition: width .22s; }
.week:hover::before { width: 3px; }
.wk-no { font-family: var(--display); font-size: clamp(46px, 5.6vw, 74px); line-height: .78; color: var(--red); }
.wk-name { font-family: var(--display); font-size: clamp(23px, 2.5vw, 33px); letter-spacing: .5px; text-transform: uppercase; line-height: .96; }
.wk-desc { margin-top: 9px; font-size: 14.5px; line-height: 1.55; color: rgba(241,236,227,.66); max-width: 660px; }
.wk-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 1.8px; color: var(--muted); text-transform: uppercase; white-space: nowrap; justify-self: end; }
@media (max-width: 720px) {
  .week { grid-template-columns: 58px 1fr; gap: 16px; }
  .wk-no { font-size: 38px; }
  .wk-tag { display: none; }
}

/* ════════════ DRILL CATEGORIES ════════════ */
.drill-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--hair); border: 1px solid var(--hair); }
.drill {
  background: var(--carbon); padding: 26px 22px 22px; min-height: 200px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: background .18s; cursor: default; position: relative; overflow: hidden;
}
.drill:hover { background: var(--carbon-2); }
.drill .idx { font-family: var(--mono); font-size: 10px; letter-spacing: 1.6px; color: var(--muted-2); }
.drill .nm { font-family: var(--display); font-size: 24px; line-height: 0.95; letter-spacing: .5px; text-transform: uppercase; margin-top: 40px; }
.drill .dur { font-family: var(--mono); font-size: 9.5px; letter-spacing: 1.6px; color: var(--red); margin-top: 10px; }
.drill::before { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--red); transition: width .25s; }
.drill:hover::before { width: 100%; }
@media (max-width: 900px) { .drill-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .drill-grid { grid-template-columns: 1fr; } }

/* ════════════ TV SECTION ════════════ */
.tv-sec { background: #060606; border-block: 1px solid var(--hair); }
.tv-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 84px); align-items: center; }
.tv-stage-wrap { perspective: 1600px; }
.tv-device { position: relative; }
.tv-screen {
  position: relative; width: 100%; aspect-ratio: 16 / 9; background: var(--carbon);
  border: 10px solid #161616; border-radius: 12px; overflow: hidden;
  box-shadow: 0 50px 100px -40px rgba(0,0,0,.9), inset 0 0 0 1px rgba(241,236,227,.06);
}
.tv-stand { width: 26%; height: 14px; margin: 0 auto; background: linear-gradient(180deg, #1c1c1c, #0c0c0c); border-radius: 0 0 8px 8px; }
.tv-foot { width: 42%; height: 8px; margin: 0 auto; background: #141414; border-radius: 6px; }
@media (max-width: 860px) { .tv-layout { grid-template-columns: 1fr; gap: 44px; } }

/* TV screen internals */
.tvh { position: absolute; inset: 0; display: flex; }
.tvh-photo { position: absolute; top: 0; right: 0; bottom: 0; width: 58%; }
.tvh-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 26%; }
.tvh-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--carbon) 0%, rgba(10,10,10,.6) 26%, rgba(10,10,10,0) 70%); }
.tvh-nav { position: absolute; top: 0; left: 0; right: 0; display: flex; align-items: center; justify-content: space-between; padding: 4% 5%; z-index: 5; }
.tvh-nav .tabs { display: flex; gap: 4%; font-family: var(--mono); font-size: 1.4cqw; letter-spacing: 1.6px; color: var(--muted); text-transform: uppercase; }
.tvh-nav .tabs .on { color: var(--bone); }
.tvh-body { position: absolute; left: 5%; bottom: 8%; z-index: 6; }

/* ════════════ COACH ════════════ */
.coach { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.coach-photo { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border: 1px solid var(--hair); }
.coach-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }
.coach-photo .stamp { position: absolute; left: 16px; bottom: 14px; font-family: var(--mono); font-size: 10px; letter-spacing: 1.8px; background: rgba(0,0,0,.55); padding: 5px 10px; color: var(--bone); }
.coach-quote { font-family: var(--display); font-size: clamp(26px, 3.4vw, 44px); line-height: 1.0; letter-spacing: .5px; text-transform: uppercase; }
.coach-quote .r { color: var(--red); }
.coach-body { margin-top: 22px; font-size: 16px; line-height: 1.65; color: rgba(241,236,227,.74); max-width: 520px; }
.coach-sig { margin-top: 22px; font-family: var(--mono); font-size: 11px; letter-spacing: 1.8px; color: var(--muted); }
@media (max-width: 820px) { .coach { grid-template-columns: 1fr; gap: 36px; } }

/* ════════════ PACT / COMMITMENT ════════════ */
.levels { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hair); border: 1px solid var(--hair); }
.level { background: var(--carbon); padding: 32px 28px; display: flex; flex-direction: column; gap: 14px; transition: background .18s; }
.level.feature { background: var(--carbon-2); }
.level:hover { background: var(--carbon-2); }
.level .lv-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 1.8px; color: var(--red); }
.level .lv-name { font-family: var(--display); font-size: 34px; letter-spacing: .5px; }
.level .lv-freq { font-family: var(--mono); font-size: 12px; letter-spacing: 1.4px; color: var(--muted); }
.level .lv-desc { font-size: 14px; color: rgba(241,236,227,.7); line-height: 1.55; margin-top: 4px; }
.level .lv-bars { display: flex; gap: 4px; margin-top: 8px; }
.level .lv-bars i { height: 6px; flex: 1; background: var(--hair-2); }
.level .lv-bars i.on { background: var(--red); }
@media (max-width: 760px) { .levels { grid-template-columns: 1fr; } }

/* ════════════ FINAL CTA ════════════ */
.final { position: relative; overflow: hidden; border-top: 1px solid var(--hair); }
.final-bg { position: absolute; inset: 0; z-index: 0; }
.final-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; opacity: .22; }
.final-bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 90% at 50% 0%, rgba(10,10,10,.4), var(--carbon) 72%); }
.final-inner { position: relative; z-index: 2; text-align: center; display: flex; flex-direction: column; align-items: center; }
.final h2 { font-size: clamp(44px, 8.5vw, 130px); line-height: 0.84; letter-spacing: 1px; }
.final h2 .r { color: var(--red); }
.final .sub { margin-top: 24px; font-size: clamp(15px, 1.6vw, 19px); color: rgba(241,236,227,.78); max-width: 540px; }
.final .stores { margin-top: 38px; justify-content: center; }
.final .pact { margin-top: 30px; font-family: var(--mono); font-size: 11px; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; }

/* ════════════ FOOTER ════════════ */
.footer { border-top: 1px solid var(--hair); padding-block: 48px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.footer .brand { font-size: 30px; }
.footer .f-tag { font-family: var(--mono); font-size: 9.5px; letter-spacing: 1.8px; color: var(--muted); margin-top: 8px; max-width: 260px; line-height: 1.6; }
.footer .f-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer .f-col h5 { font-family: var(--mono); font-size: 9.5px; letter-spacing: 1.8px; color: var(--muted-2); margin: 0 0 14px; text-transform: uppercase; }
.footer .f-col a { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 1.2px; color: var(--muted); padding: 4px 0; text-transform: uppercase; transition: color .15s; }
.footer .f-col a:hover { color: var(--bone); }
.footer-base { border-top: 1px solid var(--hair); margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-family: var(--mono); font-size: 9.5px; letter-spacing: 1.4px; color: var(--muted-2); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ════════════════════════════════════════════════════════════
   SIGN-UP / ACCOUNT CREATION MODAL
   ════════════════════════════════════════════════════════════ */
.su-overlay {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(6,6,6,.8);
  backdrop-filter: blur(10px);
}
.su-overlay.open { display: flex; }
body.su-lock { overflow: hidden; }

.su-panel {
  position: relative;
  width: 100%; max-width: 480px;
  max-height: 92vh; overflow-y: auto;
  background: var(--carbon-2);
  border: 1px solid var(--hair-2);
  box-shadow: 0 50px 120px -30px rgba(0,0,0,.95);
  animation: su-in .32s cubic-bezier(.2,.7,.2,1);
}
@keyframes su-in { from { opacity: 0; transform: translateY(20px) scale(.985); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .su-panel { animation: none; } }

.su-bar { height: 3px; background: var(--red); }
.su-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; border-bottom: 1px solid var(--hair);
}
.su-head .brand { font-size: 22px; letter-spacing: 1.5px; }
.su-head .brand .s { color: var(--red); }
.su-progress { display: flex; align-items: center; gap: 12px; }
.su-progress .segs { display: flex; gap: 3px; }
.su-progress .segs i { width: 22px; height: 3px; background: var(--hair-2); }
.su-progress .segs i.on { background: var(--red); }
.su-progress .lbl { font-family: var(--mono); font-size: 9px; letter-spacing: 1.6px; color: var(--muted); }
.su-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(241,236,227,.06); border: 1px solid var(--hair-2);
  display: none; align-items: center; justify-content: center; cursor: pointer; color: var(--bone);
  z-index: 5; transition: background .15s;
}
.su-close:hover { background: rgba(241,236,227,.12); }

.su-body { padding: 30px 30px 32px; }
.su-step { display: none; }
.su-step.active { display: block; animation: su-fade .3s ease; }
@keyframes su-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.su-eyebrow { font-family: var(--mono); font-size: 10px; letter-spacing: 2.2px; color: var(--red); text-transform: uppercase; margin-bottom: 12px; }
.su-title { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: 38px; line-height: 0.9; letter-spacing: .5px; }
.su-title .r { color: var(--red); }
.su-sub { margin-top: 12px; font-size: 14px; line-height: 1.55; color: rgba(241,236,227,.7); }

/* Apple / social */
.su-social { margin-top: 22px; }
.su-apple {
  width: 100%; height: 52px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: var(--bone); color: var(--carbon); border: none; cursor: pointer;
  font-family: var(--display); font-size: 16px; letter-spacing: 1px; text-transform: uppercase;
  transition: background .15s;
}
.su-apple:hover { background: var(--bone-2); }
.su-apple svg { width: 18px; height: 18px; }
.su-divider { display: flex; align-items: center; gap: 14px; margin: 22px 0; }
.su-divider span { height: 1px; flex: 1; background: var(--hair); }
.su-divider b { font-family: var(--mono); font-weight: 400; font-size: 9px; letter-spacing: 2px; color: var(--muted-2); }

/* Fields */
.su-fields { display: flex; flex-direction: column; gap: 16px; }
.su-field { display: flex; flex-direction: column; gap: 7px; }
.su-field label { font-family: var(--mono); font-size: 9px; letter-spacing: 1.6px; color: var(--muted); text-transform: uppercase; }
.su-field input {
  height: 50px; padding: 0 14px;
  background: var(--carbon); border: 1px solid var(--hair); color: var(--bone);
  font-family: var(--body); font-size: 15px; border-radius: 0;
  transition: border-color .15s;
}
.su-field input::placeholder { color: var(--muted-2); }
.su-field input:focus { outline: none; border-color: var(--red); }
.su-field.err input { border-color: var(--red); }
.su-field .hint { font-family: var(--mono); font-size: 9px; letter-spacing: 1px; color: var(--red); display: none; }
.su-field.err .hint { display: block; }

/* Level tiles */
.su-levels { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.su-level {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 16px; border: 1px solid var(--hair); cursor: pointer;
  transition: border-color .15s, background .15s;
}
.su-level:hover { border-color: var(--hair-2); }
.su-level .radio { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid var(--muted-2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.su-level .radio i { width: 7px; height: 7px; border-radius: 50%; background: var(--red); display: none; }
.su-level .lv-main { flex: 1; }
.su-level .lv-nm { font-family: var(--display); font-size: 19px; letter-spacing: .8px; text-transform: uppercase; }
.su-level .lv-fr { font-family: var(--mono); font-size: 9.5px; letter-spacing: 1.4px; color: var(--muted); margin-top: 3px; }
.su-level .lv-bars { display: flex; gap: 3px; width: 56px; flex-shrink: 0; }
.su-level .lv-bars i { height: 5px; flex: 1; background: var(--hair-2); }
.su-level .lv-bars i.on { background: var(--muted); }
.su-level.sel { background: var(--red); border-color: var(--red); }
.su-level.sel .radio { border-color: var(--bone); }
.su-level.sel .radio i { display: block; background: var(--bone); }
.su-level.sel .lv-fr { color: rgba(241,236,227,.8); }
.su-level.sel .lv-bars i { background: rgba(241,236,227,.35); }
.su-level.sel .lv-bars i.on { background: var(--bone); }

/* Coach note in modal */
.su-coach { margin-top: 20px; display: flex; gap: 12px; align-items: flex-start; border-left: 3px solid var(--red); background: rgba(200,32,31,.06); padding: 11px 13px; }
.su-coach .av { width: 34px; height: 34px; overflow: hidden; flex-shrink: 0; }
.su-coach .av img { width: 100%; height: 100%; object-fit: cover; object-position: 38% 12%; }
.su-coach .lbl { font-family: var(--mono); font-size: 8px; letter-spacing: 1.6px; color: var(--red); margin-bottom: 3px; }
.su-coach .q { font-size: 12px; line-height: 1.4; color: var(--bone); font-style: italic; }

/* Actions */
.su-actions { display: flex; gap: 10px; margin-top: 26px; }
.su-btn {
  flex: 1; height: 54px; border: none; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  font-family: var(--display); font-size: 18px; letter-spacing: 1.6px; text-transform: uppercase;
  transition: background .15s, border-color .15s, transform .08s;
}
.su-btn:active { transform: scale(.985); }
.su-btn-red { background: var(--red); color: var(--bone); }
.su-btn-red:hover { background: var(--red-dim); }
.su-btn-ghost { flex: 0 0 auto; width: 54px; background: transparent; border: 1px solid var(--hair-2); color: var(--bone); }
.su-btn-ghost:hover { border-color: var(--bone); }
.su-fine { margin-top: 16px; font-family: var(--mono); font-size: 9px; letter-spacing: .8px; line-height: 1.6; color: var(--muted-2); text-transform: uppercase; }
.su-fine a { color: var(--muted); text-decoration: underline; }
.su-foot-note { margin-top: 18px; text-align: center; font-family: var(--mono); font-size: 10px; letter-spacing: 1px; color: var(--muted); }
.su-foot-note a { color: var(--bone); }

/* Success step */
.su-success { text-align: center; }
.su-check { width: 76px; height: 76px; margin: 4px auto 22px; background: var(--red); display: flex; align-items: center; justify-content: center; }
.su-success .su-stores { margin-top: 26px; display: flex; flex-direction: column; gap: 10px; }
.su-success .store { justify-content: center; }
.su-recap { margin-top: 22px; display: flex; border: 1px solid var(--hair); }
.su-recap .rc { flex: 1; padding: 12px 8px; text-align: center; border-right: 1px solid var(--hair); }
.su-recap .rc:last-child { border-right: none; }
.su-recap .rc .l { font-family: var(--mono); font-size: 8px; letter-spacing: 1.4px; color: var(--muted); }
.su-recap .rc .v { font-family: var(--display); font-size: 18px; letter-spacing: .5px; text-transform: uppercase; margin-top: 4px; }
.su-recap .rc .v.r { color: var(--red); }

@media (max-width: 520px) {
  .su-body { padding: 26px 22px 28px; }
  .su-title { font-size: 32px; }
  .su-close { display: flex; }
}
