:root {
  color-scheme: dark;
  --ink: #061811;
  --ink-soft: #0d281e;
  --green: #2bd176;
  --green-dark: #159453;
  --orange: #ff6b2c;
  --cream: #f5f1e9;
  --paper: #fffdf8;
  --muted: #abc0b6;
  --line: rgba(255, 255, 255, 0.14);
  --radius: 28px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--cream);
  background: var(--ink);
  text-rendering: optimizeLegibility;
}

body::selection { background: var(--orange); color: var(--ink); }

a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--green);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand img { width: 208px; }
.partner-lockup { text-align: center; line-height: 1.05; }
.partner-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.partner-name { font-size: 14px; font-weight: 900; letter-spacing: 0.08em; }
.header-inner > .button { justify-self: end; }

.button {
  min-height: 56px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--green);
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(43, 209, 118, 0.22); }
.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}
.button-small { min-height: 44px; padding-inline: 19px; font-size: 13px; }
.button-outline { color: var(--cream); border-color: var(--line); background: rgba(6, 24, 17, 0.54); }
.button-outline:hover { background: rgba(255, 255, 255, 0.1); box-shadow: none; }
.button-primary { background: var(--orange); }
.button-primary:hover { background: #ff8150; box-shadow: 0 16px 34px rgba(255, 107, 44, 0.22); }
.button-full { width: 100%; border: 0; }

.hero {
  position: relative;
  min-height: 840px;
  padding: 170px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 46%, rgba(43, 209, 118, 0.13), transparent 30%),
    linear-gradient(150deg, var(--ink) 0%, #04110c 58%, #10291f 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-glow {
  position: absolute;
  width: 560px;
  height: 560px;
  right: -230px;
  top: 150px;
  border: 1px solid rgba(43, 209, 118, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 0 110px rgba(43, 209, 118, 0.03), 0 0 0 220px rgba(43, 209, 118, 0.02);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.97fr);
  align-items: center;
  gap: 48px;
}

.eyebrow-row { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.eyebrow, .market {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow { color: var(--green); border: 1px solid rgba(43,209,118,.35); background: rgba(43,209,118,.08); }
.market { color: var(--cream); border: 1px solid var(--line); }

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(56px, 6.2vw, 92px);
  line-height: 0.93;
  letter-spacing: -0.055em;
}
h1 span { color: var(--green); }
.hero-intro {
  max-width: 675px;
  margin-bottom: 34px;
  color: #c8d6cf;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}
.launch-availability {
  max-width: 650px;
  margin: 0 0 30px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 107, 44, .45);
  border-radius: 18px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 18px;
  background: rgba(255, 107, 44, .08);
  box-shadow: inset 0 0 28px rgba(255, 107, 44, .04);
}
.launch-availability > div { display: flex; align-items: center; gap: 8px; }
.launch-availability strong { color: var(--orange); font-size: 25px; line-height: 1; }
.launch-availability span { max-width: 85px; color: #e6ede9; font-size: 11px; font-weight: 750; line-height: 1.25; }
.launch-availability p { margin: 0; padding-left: 18px; border-left: 1px solid rgba(255, 255, 255, .14); color: var(--muted); font-size: 11px; line-height: 1.4; }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.text-link { color: var(--cream); font-size: 14px; font-weight: 800; text-decoration: none; }
.text-link span { margin-left: 7px; color: var(--green); }

.hero-proof {
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hero-proof strong { display: block; margin-bottom: 6px; color: var(--cream); font-size: 22px; }
.hero-proof span { display: block; color: var(--muted); font-size: 12px; line-height: 1.35; }

.hero-visual { position: relative; min-height: 620px; }
.racket-stage {
  position: absolute;
  inset: 18px 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.racket {
  position: absolute;
  width: 260px;
  height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 160px 160px 24px 24px;
  background: white;
  box-shadow: var(--shadow);
}
.racket-main { z-index: 3; width: 300px; height: 590px; transform: rotate(-2deg); }
.racket-left { z-index: 1; left: 0; transform: translateY(38px) rotate(-13deg); filter: brightness(.74); }
.racket-right { z-index: 2; right: 0; transform: translateY(30px) rotate(12deg); filter: brightness(.84); }
.sponsor-seal {
  position: absolute;
  z-index: 5;
  top: 16px;
  right: 4px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--ink);
  background: var(--orange);
  transform: rotate(8deg);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}
.sponsor-seal span { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.sponsor-seal strong { font-size: 18px; }
.kombat-wordmark {
  position: absolute;
  z-index: 6;
  right: 50%;
  bottom: 0;
  width: 285px;
  padding: 13px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  transform: translateX(50%);
  box-shadow: 0 12px 32px rgba(0,0,0,.22);
}
.kombat-wordmark img { width: 100%; height: 44px; object-fit: contain; }
.risk-sticker {
  position: absolute;
  z-index: 7;
  left: -18px;
  bottom: 92px;
  width: 150px;
  min-height: 92px;
  padding: 18px 16px;
  border: 2px solid var(--ink);
  display: grid;
  place-content: center;
  color: var(--ink);
  background: var(--green);
  text-align: center;
  transform: rotate(-8deg);
  box-shadow: 8px 8px 0 var(--orange);
}
.risk-sticker strong { font-size: 19px; line-height: 1; }
.risk-sticker span { margin-top: 6px; font-size: 10px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.launch-ticker {
  position: absolute;
  z-index: 10;
  right: -2%;
  bottom: 4px;
  left: -2%;
  overflow: hidden;
  color: var(--ink);
  background: var(--orange);
  transform: rotate(-1.2deg);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .25);
}
.launch-ticker > div {
  width: max-content;
  min-width: 104%;
  min-height: 48px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.launch-ticker b { font-size: 17px; }

.statement { padding: 120px 0; color: var(--ink); background: var(--cream); }
.statement-grid {
  display: grid;
  grid-template-columns: .4fr 1.1fr .75fr;
  gap: 64px;
  align-items: start;
}
.section-kicker {
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
h2 { margin-bottom: 24px; font-size: clamp(40px, 5vw, 68px); line-height: 1.02; letter-spacing: -.045em; }
.statement h2 { margin: 0; }
.statement-grid > p:last-child { margin: 8px 0 0; color: #50625a; font-size: 19px; line-height: 1.65; }

.wizard-showcase {
  padding: 120px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 16%, rgba(43, 209, 118, .16), transparent 27%),
    #071a13;
}
.wizard-heading {
  margin-bottom: 62px;
  display: grid;
  grid-template-columns: 1.15fr .7fr;
  gap: 80px;
  align-items: end;
}
.wizard-heading h2 { max-width: 760px; margin-bottom: 0; }
.wizard-heading-copy > p { margin-bottom: 20px; color: #bfd0c7; font-size: 18px; line-height: 1.65; }
.wizard-heading-copy > span {
  display: inline-flex;
  padding: 10px 14px;
  border: 1px solid rgba(43, 209, 118, .32);
  border-radius: 999px;
  color: var(--green);
  background: rgba(43, 209, 118, .08);
  font-size: 12px;
  font-weight: 850;
}
.wizard-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.wizard-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 24px;
  background: #10261d;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .28);
}
.wizard-frame-wide { grid-column: 1 / -1; }
.browser-bar {
  min-height: 42px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: #0d2119;
}
.browser-bar i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, .22); }
.browser-bar i:first-child { background: var(--orange); }
.browser-bar span { margin-left: 7px; color: #789087; font-size: 10px; font-style: normal; letter-spacing: .04em; }
.wizard-frame img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: var(--cream); }
.wizard-frame figcaption { padding: 22px 24px 24px; display: grid; gap: 7px; }
.wizard-frame figcaption strong { font-size: 18px; }
.wizard-frame figcaption span { color: var(--muted); font-size: 14px; line-height: 1.5; }
.wizard-frame:nth-child(2) { transform: rotate(-.7deg); }
.wizard-frame:nth-child(3) { transform: translateY(8px) rotate(.7deg); }

.offer { padding: 120px 0; background: var(--ink); }
.section-heading { max-width: 900px; margin-bottom: 62px; }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.offer-card {
  min-height: 390px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255,255,255,.035);
}
.offer-card-featured { color: var(--ink); border: 0; background: var(--green); transform: translateY(-18px); }
.offer-card:first-child { box-shadow: -10px 10px 0 rgba(255, 107, 44, .22); }
.offer-card:last-child { transform: rotate(1.2deg); }
.card-number { font-size: 13px; font-weight: 900; letter-spacing: .12em; }
.card-label { margin-bottom: 12px; color: var(--orange); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.offer-card-featured .card-label { color: var(--ink); opacity: .62; }
.offer-card h3 { margin-bottom: 18px; font-size: 34px; line-height: 1.05; letter-spacing: -.035em; }
.offer-card p:last-child { margin-bottom: 0; color: var(--muted); font-size: 17px; line-height: 1.58; }
.offer-card-featured p:last-child { color: #0d3a29; }

.retail-flywheel {
  position: relative;
  padding: 128px 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--cream);
}
.retail-flywheel::before {
  content: "MATCH • SHARE • SELL";
  position: absolute;
  right: -60px;
  top: 42px;
  color: rgba(21, 148, 83, .065);
  font-size: clamp(72px, 10vw, 150px);
  font-weight: 950;
  letter-spacing: -.06em;
  white-space: nowrap;
  transform: rotate(4deg);
}
.flywheel-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 72px;
  display: grid;
  grid-template-columns: 1.1fr .7fr;
  gap: 88px;
  align-items: end;
}
.flywheel-heading h2 { margin-bottom: 0; }
.flywheel-heading > p { margin: 0 0 8px; color: #50625a; font-size: 19px; line-height: 1.65; }
.flywheel-stage {
  position: relative;
  z-index: 2;
  min-height: 640px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 118px 260px;
  align-items: center;
}
.flywheel-card {
  min-height: 220px;
  padding: 28px;
  border: 2px solid var(--ink);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--ink);
}
.flywheel-card-brand { transform: rotate(-2deg); }
.flywheel-card-people { transform: translateY(20px) rotate(2deg); background: #ffdfcf; }
.flywheel-card-guides { transform: translateY(-10px) rotate(1.5deg); background: #d9f5e5; }
.flywheel-card-retail { transform: rotate(-1.5deg); background: #fff; }
.flywheel-number { color: var(--orange); font-size: 12px; font-weight: 950; letter-spacing: .12em; }
.flywheel-card > p { margin: 28px 0 8px; color: var(--green-dark); font-size: 12px; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.flywheel-card h3 { margin-bottom: 14px; font-size: 27px; line-height: 1.04; letter-spacing: -.035em; }
.flywheel-card small { color: #5f6e67; font-size: 14px; line-height: 1.5; }
.flywheel-core {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: 250px;
  height: 250px;
  padding: 32px;
  border: 12px solid var(--cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  color: var(--cream);
  background: var(--ink);
  text-align: center;
  transform: translate(-50%, -50%) rotate(-3deg);
  box-shadow: 0 0 0 3px var(--green), 20px 22px 0 rgba(255, 107, 44, .25);
}
.flywheel-core img { width: 52px; margin-bottom: 10px; }
.flywheel-core span { color: var(--green); font-size: 12px; font-weight: 900; }
.flywheel-core strong { margin-top: 9px; font-size: 17px; line-height: 1.25; }
.risk-panel {
  position: relative;
  z-index: 2;
  margin-top: 92px;
  padding: 54px;
  border: 3px solid var(--ink);
  border-radius: 38px;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 64px;
  background: var(--orange);
  box-shadow: 16px 16px 0 var(--green);
  transform: rotate(-.5deg);
}
.risk-panel-title > span { font-size: 11px; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; }
.risk-panel-title h2 { margin: 13px 0 12px; font-size: clamp(42px, 5vw, 66px); }
.risk-panel-title p { margin: 0; font-size: 17px; font-weight: 750; }
.risk-outcomes { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.risk-outcomes article { padding: 26px; border: 2px solid var(--ink); border-radius: 22px; background: rgba(255, 253, 248, .92); }
.risk-outcomes span { color: var(--green-dark); font-size: 11px; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.risk-outcomes strong { display: block; margin: 17px 0 12px; font-size: 20px; line-height: 1.25; }
.risk-outcomes p { margin: 0; color: #53635b; font-size: 14px; line-height: 1.55; }

.how { padding: 120px 0; color: var(--ink); background: var(--paper); }
.how-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; }
.how-copy { position: sticky; top: 40px; align-self: start; }
.how-copy > p:last-child { color: #62736b; font-size: 18px; line-height: 1.62; }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li {
  padding: 30px 0;
  border-top: 1px solid #d9dfdb;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
}
.steps li > span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  color: var(--ink);
  background: var(--green);
  font-weight: 900;
}
.steps strong { display: block; margin: 5px 0 8px; font-size: 23px; }
.steps p { margin: 0; color: #62736b; font-size: 16px; line-height: 1.5; }

.sponsor { padding: 0 0 120px; color: var(--ink); background: var(--paper); }
.sponsor-panel {
  position: relative;
  padding: 70px;
  border-radius: 40px;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 60px;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
  background: var(--ink-soft);
}
.sponsor-panel::after {
  content: "K";
  position: absolute;
  right: -30px;
  bottom: -120px;
  color: rgba(43,209,118,.06);
  font-size: 400px;
  font-weight: 950;
  line-height: 1;
}
.sponsor-copy { position: relative; z-index: 2; }
.sponsor-copy h2 { font-size: clamp(38px, 4vw, 58px); }
.sponsor-copy > p:last-child { color: var(--muted); font-size: 18px; line-height: 1.6; }
.sponsor-logo { position: relative; z-index: 2; display: grid; justify-items: center; gap: 22px; }
.sponsor-logo img:first-child { width: 310px; padding: 18px 24px; border-radius: 999px; background: white; }
.sponsor-logo img:last-child { width: 240px; }
.sponsor-logo span { color: var(--orange); font-size: 22px; font-weight: 900; }

.signup { padding: 120px 0; background: var(--green); color: var(--ink); }
.signup-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.signup .section-kicker { color: #0b6137; }
.signup-intro { max-width: 520px; color: #164b35; font-size: 18px; line-height: 1.6; }
.contact-note { margin-top: 38px; display: grid; gap: 7px; }
.contact-note span { color: #1d6c49; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.contact-note a { width: fit-content; font-size: 18px; font-weight: 850; text-decoration: none; }
.signup-form { padding: 34px; border-radius: 30px; color: var(--cream); background: var(--ink); box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.signup-form label { display: grid; gap: 9px; margin-bottom: 16px; color: #c9d6d0; font-size: 12px; font-weight: 800; }
.signup-form input, .signup-form select {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--cream);
  background: rgba(255,255,255,.06);
}
.signup-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--green) 50%), linear-gradient(135deg, var(--green) 50%, transparent 50%); background-position: calc(100% - 18px) 22px, calc(100% - 13px) 22px; background-size: 5px 5px; background-repeat: no-repeat; }
.consent { grid-template-columns: 20px 1fr; align-items: start; gap: 10px !important; margin: 5px 0 22px !important; font-weight: 500 !important; line-height: 1.5; }
.consent input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--green); }
.form-status { min-height: 20px; margin: 14px 0 0; color: var(--green); font-size: 13px; text-align: center; }

footer { padding: 54px 0; border-top: 1px solid var(--line); background: #03100b; }
.footer-inner { display: grid; grid-template-columns: .65fr .8fr 1.3fr; gap: 60px; align-items: start; }
.footer-inner img { width: 205px; }
.footer-inner p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.footer-legal { text-align: right; }

@media (max-width: 1000px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .partner-lockup { display: none; }
  .hero { padding-top: 145px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 590px; max-width: 610px; width: 100%; margin: 0 auto; }
  .statement-grid { grid-template-columns: 1fr; gap: 22px; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card { min-height: 280px; }
  .offer-card-featured { transform: none; }
  .how-grid, .signup-grid, .wizard-heading, .flywheel-heading, .risk-panel { grid-template-columns: 1fr; gap: 58px; }
  .flywheel-stage { gap: 118px 80px; }
  .flywheel-core { width: 220px; height: 220px; }
  .how-copy { position: static; }
  .sponsor-panel { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .shell { width: min(100% - 30px, 1180px); }
  .site-header { position: absolute; }
  .header-inner { min-height: 76px; }
  .brand img { width: 168px; }
  .header-inner .button { display: none; }
  .hero { min-height: auto; padding: 125px 0 68px; }
  .hero-grid { gap: 32px; }
  .eyebrow-row { align-items: flex-start; flex-direction: column; gap: 7px; }
  h1 { font-size: clamp(48px, 16vw, 68px); }
  .hero-intro { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .launch-availability { grid-template-columns: 1fr 1fr; gap: 14px; }
  .launch-availability p { grid-column: 1 / -1; padding: 12px 0 0; border-top: 1px solid rgba(255, 255, 255, .14); border-left: 0; }
  .text-link { text-align: center; }
  .hero-proof { gap: 12px; }
  .hero-proof strong { font-size: 17px; }
  .hero-proof span { font-size: 10px; }
  .hero-visual { min-height: 450px; }
  .racket { width: 175px; height: 360px; border-radius: 100px 100px 18px 18px; }
  .racket-main { width: 205px; height: 420px; }
  .sponsor-seal { width: 86px; height: 86px; }
  .sponsor-seal strong { font-size: 14px; }
  .kombat-wordmark { width: 215px; }
  .kombat-wordmark img { height: 34px; }
  .statement, .wizard-showcase, .offer, .retail-flywheel, .how, .signup { padding: 82px 0; }
  .wizard-heading { margin-bottom: 40px; gap: 24px; }
  .wizard-gallery { grid-template-columns: 1fr; gap: 18px; }
  .wizard-frame-wide { grid-column: auto; }
  .wizard-frame { border-radius: 18px; }
  .wizard-frame figcaption { padding: 18px; }
  .wizard-frame:nth-child(2), .wizard-frame:nth-child(3), .offer-card:last-child { transform: none; }
  .risk-sticker { left: 4px; bottom: 64px; width: 126px; min-height: 78px; }
  .launch-ticker > div { min-height: 42px; gap: 15px; font-size: 9px; }
  .launch-ticker > div span:nth-of-type(3), .launch-ticker > div span:nth-of-type(4) { display: none; }
  .flywheel-stage { min-height: auto; grid-template-columns: 1fr; gap: 24px; }
  .flywheel-core { position: relative; top: auto; left: auto; width: 210px; height: 210px; margin: 18px auto; grid-row: 3; transform: rotate(-3deg); }
  .flywheel-card-brand, .flywheel-card-people, .flywheel-card-guides, .flywheel-card-retail { transform: none; }
  .risk-panel { margin-top: 64px; padding: 30px 22px; border-radius: 28px; transform: none; box-shadow: 8px 8px 0 var(--green); }
  .risk-outcomes { grid-template-columns: 1fr; }
  .sponsor { padding-bottom: 82px; }
  h2 { font-size: 42px; }
  .offer-card { min-height: 250px; }
  .sponsor-panel { padding: 38px 26px; border-radius: 28px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .signup-form { padding: 24px 18px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-legal { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
