@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #11120f;
  --paper: #f1efe8;
  --accent: #d7ff3f;
  --muted: #77796f;
  --line: rgba(17, 18, 15, 0.16);
  --radius: 22px;
  --display: 'Archivo Black', Impact, sans-serif;
  --body: 'Inter', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: white;
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.topbar {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  color: white;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand b { color: var(--accent); }
.brand-name {
  display: grid;
  line-height: 1.05;
}
.brand-name strong,
.brand-name b {
  font: inherit;
}
.brand-name b {
  margin-top: 3px;
  font-size: 10px;
  letter-spacing: .08em;
}
.brand-logo {
  width: 58px;
  height: 46px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: contrast(1.08);
}
.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: -1px;
}
.topbar-link {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.language-toggle {
  min-width: 42px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  color: white;
  background: rgba(255,255,255,.08);
  font: 800 11px/1 var(--body);
  letter-spacing: .08em;
  cursor: pointer;
}
.language-toggle:hover { border-color: var(--accent); color: var(--accent); }
.language-toggle:focus-visible {
  outline: 3px solid #7b9cff;
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 126px 20px 54px;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035) 1px, transparent 1px) 0 0 / 100% 52px,
    linear-gradient(120deg, #10110f 0%, #1d2019 100%);
}
.hero::before {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  right: -220px;
  top: 82px;
  border: 80px solid rgba(215, 255, 63, 0.05);
  border-radius: 50%;
}
.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow span {
  width: 20px;
  height: 2px;
  background: currentColor;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  position: relative;
  z-index: 1;
  max-width: 750px;
  margin: 23px 0 24px;
  font-family: var(--display);
  font-size: clamp(48px, 14vw, 98px);
  line-height: .9;
  letter-spacing: -.06em;
  text-transform: uppercase;
}
h1 em { color: var(--accent); font-style: normal; }
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 540px;
  color: #c7c9bf;
  font-size: 17px;
}
.hero-actions {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  margin: 28px 0;
}
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: 700 14px/1 var(--body);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, input:focus-visible + span, .reset-button:focus-visible {
  outline: 3px solid #7b9cff;
  outline-offset: 3px;
}
.button-primary { color: var(--ink); background: var(--accent); }
.button-secondary { color: white; border-color: rgba(255,255,255,.25); background: transparent; }
.button-dark { width: 100%; color: white; background: var(--ink); }
.trust-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: #aaada3;
  font-size: 12px;
  list-style: none;
}
.trust-list span { color: var(--accent); }
.hero-art {
  position: absolute;
  right: -45px;
  bottom: 10px;
  width: 260px;
  height: 250px;
  opacity: .72;
}
.bag {
  position: absolute;
  z-index: 2;
  right: 70px;
  bottom: -45px;
  display: grid;
  width: 92px;
  height: 260px;
  place-items: center;
  border-radius: 46px 46px 16px 16px;
  color: var(--ink);
  background: var(--accent);
  font: 20px/.9 var(--display);
  text-align: center;
  transform: rotate(8deg);
  box-shadow: -18px 22px 45px rgba(0,0,0,.3);
}
.bag::before {
  content: '';
  position: absolute;
  top: -72px;
  left: 50%;
  width: 2px;
  height: 75px;
  background: #7b7d74;
}
.ring {
  position: absolute;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
}
.ring-one { inset: 20px; }
.ring-two { inset: 48px; }
.hero-stamp {
  position: absolute;
  right: 10px;
  top: 0;
  color: rgba(255,255,255,.24);
  font: 14px/1 var(--display);
  letter-spacing: -.04em;
}

.classes { padding: 74px 20px; }
.section-heading { margin-bottom: 32px; }
.section-heading h2,
.selector h2 {
  margin: 11px 0 16px;
  font-family: var(--display);
  font-size: clamp(32px, 9vw, 54px);
  line-height: .98;
  letter-spacing: -.05em;
  text-transform: uppercase;
}
.section-heading > p { max-width: 460px; color: var(--muted); }
.class-grid { display: grid; gap: 12px; }
.class-card {
  min-height: 235px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.class-card .number { color: var(--muted); font-size: 12px; font-weight: 700; }
.class-card h3 {
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 34px;
  letter-spacing: -.05em;
  text-transform: uppercase;
}
.class-card p { max-width: 300px; color: var(--muted); font-size: 14px; }
.card-kickbox { color: var(--ink); border-color: var(--accent); background: var(--accent); }
.card-kickbox p, .card-kickbox .number { color: #4f5b21; }
.card-personal { color: white; background: var(--ink); }
.card-personal p, .card-personal .number { color: #aeb0a8; }
.pill {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.schedule-card {
  margin-top: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}
.schedule-title { display: flex; align-items: center; gap: 12px; }
.schedule-title div { display: flex; flex-direction: column; }
.schedule-title small { color: var(--muted); font-size: 9px; letter-spacing: .13em; }
.live-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(215,255,63,.3); }
.schedule-card dl { margin: 22px 0 0; }
.schedule-card dl div {
  display: grid;
  grid-template-columns: 70px 1fr;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.schedule-card dt { font-family: var(--display); }
.schedule-card dd { margin: 0; font-weight: 700; }
.schedule-card dd span { display: block; color: var(--muted); font-size: 11px; font-weight: 400; }
.schedule-note { margin: 12px 0 0; color: var(--muted); font-size: 11px; }

.selector {
  padding: 74px 20px;
  color: var(--ink);
  background: var(--accent);
}
.selector-intro > p { max-width: 520px; color: #52601d; }
.kicker-dark { color: #465215; }
.quiz { display: grid; gap: 28px; margin-top: 36px; }
.quiz fieldset { margin: 0; padding: 0; border: 0; }
.quiz legend {
  width: 100%;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 800;
}
.quiz legend span {
  display: inline-grid;
  width: 25px;
  height: 25px;
  margin-right: 7px;
  place-items: center;
  border: 1px solid rgba(17,18,15,.5);
  border-radius: 50%;
  font-size: 10px;
}
.option-grid { display: grid; gap: 8px; }
.option-grid label { cursor: pointer; }
.option-grid input { position: absolute; opacity: 0; pointer-events: none; }
.option-grid span {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid rgba(17,18,15,.35);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  transition: background .15s ease, color .15s ease;
}
.option-grid input:checked + span { color: white; border-color: var(--ink); background: var(--ink); }
.result {
  margin-top: 34px;
  padding: 24px;
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 22px 50px rgba(39, 48, 6, .16);
}
.result-label { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.result h3 { margin: 8px 0; font: 30px/1 var(--display); letter-spacing: -.04em; text-transform: uppercase; }
.result p { color: var(--muted); font-size: 14px; }
.result-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 18px 0 22px; }
.result-tags span { padding: 6px 9px; border-radius: 999px; color: #40500d; background: #efffb6; font-size: 10px; font-weight: 700; }
.reset-button { display: block; margin: 18px auto 0; padding: 4px; border: 0; border-bottom: 1px solid; color: var(--muted); background: none; font: 600 11px var(--body); cursor: pointer; }

footer {
  display: grid;
  gap: 10px;
  padding: 38px 20px 100px;
  color: white;
  background: var(--ink);
}
footer p { margin: 0; color: #8f918a; font-size: 11px; }
footer p:last-child { color: var(--accent); font-weight: 700; text-transform: uppercase; }
.mobile-cta {
  position: fixed;
  z-index: 20;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 999px;
  color: var(--ink);
  background: var(--accent);
  box-shadow: 0 10px 35px rgba(0,0,0,.3);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

@media (min-width: 740px) {
  .topbar { padding: 24px 5vw; }
  .hero { min-height: 760px; padding: 170px 7vw 70px; }
  .hero-copy { font-size: 19px; }
  .hero-actions { grid-template-columns: max-content max-content; }
  .button { min-width: 210px; }
  .trust-list { grid-template-columns: repeat(3, max-content); gap: 24px; }
  .hero-art { right: 4vw; bottom: 10px; width: 390px; height: 380px; }
  .bag { right: 110px; width: 130px; height: 390px; border-radius: 65px 65px 24px 24px; font-size: 28px; }
  .classes, .selector { padding: 100px 7vw; }
  .section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
  .class-grid { grid-template-columns: repeat(3, 1fr); }
  .class-card { min-height: 330px; }
  .schedule-card { display: grid; grid-template-columns: .8fr 2fr; gap: 30px; align-items: center; padding: 28px; }
  .schedule-card dl { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; }
  .schedule-card dl div { display: block; padding: 0 22px; border-top: 0; border-left: 1px solid var(--line); }
  .schedule-card dt { margin-bottom: 4px; font-size: 20px; }
  .schedule-note { grid-column: 2; }
  .selector { display: grid; grid-template-columns: .75fr 1.25fr; gap: 7vw; }
  .quiz { margin: 0; }
  .option-grid { grid-template-columns: repeat(3, 1fr); }
  .result { grid-column: 2; }
  .result-content { display: grid; grid-template-columns: 1fr max-content; gap: 30px; align-items: end; }
  .result .button { width: auto; }
  footer { grid-template-columns: 1fr auto auto; align-items: center; padding: 45px 7vw; }
  .mobile-cta { display: none; }
}

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