:root {
  --ink: #111111;
  --muted: #686868;
  --line: #e8e8e8;
  --soft: #f6f6f6;
  --red: #e53935;
  --red-dark: #c92a27;
  --red-soft: #fff1f0;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { min-height: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", sans-serif;
}
button, a, input { font: inherit; }
a { color: inherit; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 18px clamp(24px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
}
.brand {
  color: var(--ink);
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 800;
}
.brand span { color: var(--red); }
.topbar-link {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid var(--ink);
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr);
  gap: clamp(50px, 7vw, 100px);
  align-items: center;
  min-height: calc(100vh - 78px);
}
.hero-copy { max-width: 760px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow span { width: 24px; height: 2px; background: var(--red); }
.personal-result {
  display: inline-flex;
  margin: 0 0 20px;
  padding: 8px 12px;
  border-radius: 5px;
  color: #9d211f;
  background: var(--red-soft);
  font-size: 14px;
  font-weight: 700;
}
h1, h2, h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0;
}
h1 {
  max-width: 760px;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 1.01;
  font-weight: 800;
}
.lead {
  max-width: 690px;
  margin: 26px 0 34px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
}
.event-strip {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  margin: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.event-strip div { display: grid; gap: 6px; padding: 20px 18px 20px 0; }
.event-strip div + div { padding-left: 20px; border-left: 1px solid var(--line); }
.event-strip b { color: var(--red); font-size: 11px; letter-spacing: .07em; text-transform: uppercase; }
.event-strip span { font-weight: 700; }
.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 58px;
  padding: 0 26px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: var(--red);
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.primary:disabled { opacity: .65; cursor: wait; transform: none; }
.hero-note { display: block; margin-top: 14px; color: #858585; }

.hero-card {
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
}
.card-label { color: var(--red); font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.hero-card h2 { margin: 16px 0 28px; font-size: clamp(27px, 3vw, 38px); line-height: 1.18; }
.hero-card ol { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; counter-reset: item; }
.hero-card li {
  position: relative;
  padding: 20px 0 20px 42px;
  border-top: 1px solid #dedede;
  color: var(--muted);
  line-height: 1.65;
  counter-increment: item;
}
.hero-card li::before { content: "0" counter(item); position: absolute; left: 0; top: 21px; color: var(--red); font-size: 12px; font-weight: 800; }
.hero-card strong { color: var(--ink); }

.proof-section { border-top: 1px solid var(--line); }
.section-heading { max-width: 820px; margin-bottom: 50px; }
.section-heading h2, .fit-copy h2, .registration h2, .final-cta h2 { font-size: clamp(34px, 5vw, 56px); line-height: 1.08; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.steps-grid article { padding: 30px; border: 1px solid var(--line); border-radius: 8px; }
.steps-grid b { color: var(--red); font-size: 12px; }
.steps-grid h3 { margin: 24px 0 12px; font-size: 22px; line-height: 1.25; }
.steps-grid p { margin: 0; color: var(--muted); line-height: 1.7; }

.fit-section {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: start;
  border-top: 1px solid var(--line);
}
.fit-list { display: grid; gap: 0; }
.fit-list p { display: grid; grid-template-columns: 26px 1fr; gap: 12px; margin: 0; padding: 20px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 17px; line-height: 1.6; }
.fit-list span { color: var(--red); font-weight: 800; }

.registration {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(50px, 8vw, 110px);
  padding: 80px clamp(24px, 5vw, 64px);
  border-radius: 12px;
  color: var(--white);
  background: var(--ink);
}
.registration-copy > p { margin: 24px 0 34px; color: #bdbdbd; font-size: 18px; line-height: 1.7; }
.micro-proof { display: grid; grid-template-columns: 38px 1fr; gap: 14px; align-items: start; padding: 18px 0; border-top: 1px solid #2e2e2e; }
.micro-proof > span { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; color: var(--white); background: var(--red); font-weight: 700; }
.micro-proof p { margin: 0; color: #aaa; line-height: 1.55; }
.micro-proof strong { color: var(--white); }

.form-card { padding: clamp(28px, 4vw, 42px); border-radius: 9px; color: var(--ink); background: var(--white); }
.form-card form { display: grid; gap: 18px; }
.form-card label { display: grid; gap: 8px; font-size: 13px; font-weight: 700; }
.form-card label > span { color: #8a8a8a; font-weight: 500; }
.form-card input:not([type="checkbox"]) {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.form-card input:focus { border-color: var(--red); box-shadow: 0 0 0 3px var(--red-soft); }
.form-card input::placeholder { color: #a0a0a0; }
.honey { position: absolute !important; left: -9999px !important; }
.consent { display: grid !important; grid-template-columns: 20px 1fr; gap: 10px !important; align-items: start; color: var(--muted); font-weight: 500 !important; line-height: 1.5; }
.consent input { width: 17px; height: 17px; margin: 2px 0 0; accent-color: var(--red); }
.submit-button { width: 100%; }
.form-card small { color: #858585; text-align: center; line-height: 1.5; }
.form-error { margin: 0; padding: 12px 14px; border-left: 3px solid var(--red); color: #a61f1c; background: var(--red-soft); font-size: 14px; }

.final-cta { max-width: 900px; text-align: center; }
.final-cta > span { display: block; margin-bottom: 18px; color: var(--red); font-size: 13px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.final-cta h2 { margin-bottom: 30px; }
footer { display: flex; justify-content: space-between; gap: 24px; padding: 30px clamp(24px, 5vw, 72px); border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
footer p { margin: 0; }

@media (max-width: 900px) {
  .hero, .fit-section, .registration { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 70px; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 680px; }
}

@media (max-width: 680px) {
  .topbar { min-height: 70px; padding: 16px 20px; }
  .topbar-link { font-size: 13px; }
  .section { width: min(100% - 40px, 1180px); padding: 70px 0; }
  .hero { gap: 42px; }
  h1 { font-size: 46px; }
  .event-strip { grid-template-columns: 1fr; }
  .event-strip div + div { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .registration { width: 100%; padding: 64px 20px; border-radius: 0; }
  footer { align-items: flex-start; flex-direction: column; }
}

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