:root {
  --bg: #050505;
  --bg-soft: #0d0d0f;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --text: #f3f3f1;
  --muted: #a8a8ae;
  --line: rgba(255, 255, 255, 0.12);
  --red: #ff2d2d;
  --red-soft: rgba(255, 45, 45, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100vw - 32px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 45, 45, 0.18), transparent 28%),
    radial-gradient(circle at 85% 14%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(180deg, #030303 0%, #080808 100%);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

.page-shell {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
  opacity: 0.22;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 8px -12px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.36);
  opacity: 0;
  transition: opacity 220ms ease, border-color 220ms ease;
  z-index: -1;
}

.site-header.is-condensed::before {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand img {
  width: 32px;
  height: 32px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.92rem;
  color: var(--muted);
}

.site-nav a {
  transition: color 180ms ease, opacity 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
}

.nav-cta {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--text);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: clip;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.3) 0%, rgba(5, 5, 5, 0.72) 80%),
    radial-gradient(circle at 68% 18%, rgba(255, 45, 45, 0.4), transparent 16%),
    radial-gradient(circle at 15% 85%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(135deg, #020202 0%, #0a0a0d 44%, #170606 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(transparent 0 95%, rgba(255, 255, 255, 0.06) 95% 100%),
    linear-gradient(90deg, transparent 0 95%, rgba(255, 255, 255, 0.06) 95% 100%);
  background-size: 140px 140px;
  opacity: 0.24;
  transform: perspective(1000px) rotateX(72deg) translateY(22%);
  transform-origin: center top;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
}

.hero-orb-left {
  width: 340px;
  height: 340px;
  left: -120px;
  top: 12%;
  background: rgba(255, 45, 45, 0.12);
}

.hero-orb-right {
  width: 460px;
  height: 460px;
  right: -120px;
  top: 8%;
  background: rgba(255, 255, 255, 0.06);
}

.hero-cityline {
  position: absolute;
  inset: auto 0 6%;
  display: flex;
  gap: 18px;
  width: max-content;
  padding-left: 24px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 6vw, 6rem);
  letter-spacing: 0.08em;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.07);
  animation: drift 22s linear infinite;
}

@keyframes drift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-35%);
  }
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 420px);
  gap: 32px;
  align-items: end;
}

.hero-copy,
.hero-card {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #f18a8a;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.94;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.6rem, 8vw, 7rem);
  font-weight: 800;
  text-transform: uppercase;
}

h2 {
  max-width: 13ch;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  font-weight: 800;
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.04;
}

.hero-text,
.section-text,
.panel p,
.feature-card p,
.program-card li,
.quote-card p,
.stats-panel span,
.price-note,
.excluded-box p,
.faq-item p,
.form-note,
.site-footer p,
.hero-card p {
  color: var(--muted);
  line-height: 1.6;
}

.hero-text {
  max-width: 34rem;
  margin: 26px 0 0;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #ff3f3f 0%, #d00d0d 100%);
  border-color: transparent;
  box-shadow: 0 18px 40px rgba(255, 45, 45, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.03);
}

.button-block {
  width: 100%;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li,
.spots-badge {
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card,
.panel,
.feature-card,
.program-card,
.quote-card,
.stats-panel,
.price-card,
.spots-card,
.faq-item,
.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card {
  padding: 28px;
}

.mini-label,
.panel-kicker,
.price-label {
  display: inline-flex;
  margin-bottom: 18px;
  color: #ff9d9d;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.spotline {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
}

.spotline-count,
.price-card-top strong,
.stat-row strong {
  font-family: "Bebas Neue", sans-serif;
  line-height: 1;
}

.spotline-count {
  font-size: clamp(3rem, 7vw, 5rem);
}

.spotline-text {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
}

.hero-card-grid {
  display: grid;
  gap: 18px;
  margin: 26px 0;
}

.hero-card-grid div {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-card-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-card-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--text);
}

.inline-link::after {
  content: "↗";
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.split-section {
  display: grid;
  gap: 32px;
}

.problem-grid,
.feeling-layout,
.pricing-layout,
.spots-layout,
.final-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.panel,
.feature-card,
.program-card,
.quote-card,
.price-card,
.spots-card,
.form-card {
  padding: 28px;
}

.panel h3,
.feature-card h3 {
  margin-bottom: 12px;
}

.panel-accent {
  background:
    linear-gradient(180deg, rgba(255, 45, 45, 0.16), rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card span,
.program-day {
  display: inline-block;
  margin-bottom: 18px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.1em;
  color: #ff8a8a;
}

.program-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.program-head {
  margin-bottom: 22px;
}

.program-card ul,
.included-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-card li,
.included-list li {
  position: relative;
  padding-left: 20px;
}

.program-card li + li,
.included-list li + li {
  margin-top: 14px;
}

.program-card li::before,
.included-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.quote-stack {
  display: grid;
  gap: 18px;
}

.quote-card p {
  margin: 0;
  font-size: 1.12rem;
  color: var(--text);
}

.stats-panel {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.stat-row {
  display: grid;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.stat-row strong {
  font-size: 3rem;
}

.price-card-top {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.price-card-top strong {
  font-size: clamp(4rem, 8vw, 6rem);
}

.excluded-box {
  margin: 24px 0;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
}

.excluded-box span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffb0b0;
}

.spots-card p {
  margin: 18px 0 22px;
  max-width: 22rem;
  font-size: 1.2rem;
  color: var(--text);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.12rem;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 16px 0 0;
}

.lead-form {
  display: grid;
  gap: 22px;
}

.lead-form label {
  display: grid;
  gap: 10px;
}

.lead-form span,
.choice-grid legend,
.scale-group legend {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #dedee1;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 16px 18px;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(255, 45, 45, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.form-section {
  display: grid;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.form-section:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.form-section-head {
  display: grid;
  gap: 8px;
}

.form-section-head h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.08;
}

.form-section-eyebrow {
  margin: 0;
  color: #ff8e8e;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid-full {
  grid-column: 1 / -1;
}

.choice-group,
.choice-grid,
.scale-group {
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-group,
.choice-grid {
  display: grid;
  gap: 12px;
}

.choice-group {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.choice-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice-card,
.choice-pill,
.scale-pill {
  position: relative;
  display: block;
  cursor: pointer;
}

.choice-card input,
.choice-pill input,
.scale-pill input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}

.choice-card span,
.choice-pill span,
.scale-pill span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  text-align: center;
  line-height: 1.35;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.choice-pill span {
  min-height: 54px;
  border-radius: 999px;
}

.scale-group {
  display: grid;
  gap: 12px;
}

.scale-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.scale-pill span {
  min-height: 56px;
  border-radius: 16px;
}

.choice-card input:checked + span,
.choice-pill input:checked + span,
.scale-pill input:checked + span {
  border-color: rgba(255, 45, 45, 0.6);
  background: linear-gradient(180deg, rgba(255, 45, 45, 0.18), rgba(255, 255, 255, 0.04));
  box-shadow: 0 12px 30px rgba(255, 45, 45, 0.12);
  transform: translateY(-1px);
}

.choice-card:hover span,
.choice-pill:hover span,
.scale-pill:hover span {
  border-color: rgba(255, 255, 255, 0.18);
}

.form-submit-row {
  display: grid;
  gap: 14px;
  padding-top: 8px;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-status.is-success {
  color: #8fe3b3;
}

.form-status.is-error {
  color: #ff8f8f;
}

.site-footer {
  padding: 0 0 48px;
}

.footer-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-footer {
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff4040 0%, #b80b0b 100%);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 16px 48px rgba(255, 45, 45, 0.25);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal-delay-1 {
  transition-delay: 90ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero-layout,
  .problem-grid,
  .feeling-layout,
  .pricing-layout,
  .spots-layout,
  .final-layout,
  .features-grid,
  .program-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 40px;
  }

  .hero-card {
    max-width: 560px;
  }
}

@media (max-width: 820px) {
  .site-header {
    width: calc(100vw - 24px);
    padding: 14px 0;
  }

  .site-header::before {
    inset: 6px -4px;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: grid;
    gap: 10px;
    min-width: 220px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: rgba(8, 8, 8, 0.92);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .section {
    padding: 92px 0;
  }

  h1 {
    max-width: 8ch;
    font-size: clamp(3rem, 16vw, 5rem);
  }

  h2 {
    max-width: 100%;
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .hero-actions,
  .hero-points {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .hero-points li {
    width: 100%;
  }

  .form-grid-2,
  .choice-grid,
  .choice-grid-3 {
    grid-template-columns: 1fr;
  }

  .scale-options {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .lead-form {
    gap: 18px;
  }

  .form-section {
    gap: 14px;
    padding-top: 18px;
  }

  .form-section-head {
    gap: 6px;
  }

  .form-section-head h3 {
    font-size: 1.12rem;
  }

  .form-grid {
    gap: 12px;
  }

  .choice-group,
  .choice-grid,
  .scale-group {
    gap: 10px;
  }

  .choice-card span,
  .choice-pill span,
  .scale-pill span {
    min-height: 54px;
    padding: 13px 14px;
    border-radius: 16px;
    font-size: 0.84rem;
    line-height: 1.28;
  }

  .choice-pill span {
    min-height: 48px;
    border-radius: 999px;
  }

  .scale-pill span {
    min-height: 48px;
  }

  .lead-form input,
  .lead-form select,
  .lead-form textarea {
    padding: 14px 15px;
  }
}

@media (max-width: 560px) {
  .container,
  .site-header {
    width: calc(100vw - 20px);
  }

  .brand span {
    font-size: 0.75rem;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 12vw, 3.2rem);
    line-height: 1;
  }

  .hero-text {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .hero-card,
  .panel,
  .feature-card,
  .program-card,
  .quote-card,
  .stats-panel,
  .price-card,
  .spots-card,
  .faq-item,
  .form-card {
    padding: 18px;
    border-radius: 22px;
  }

  .floating-cta {
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
  }

  .site-footer {
    padding: 0 0 calc(116px + env(safe-area-inset-bottom));
  }

  .lead-form {
    gap: 16px;
  }

  .lead-form label {
    gap: 8px;
  }

  .lead-form span,
  .choice-grid legend,
  .scale-group legend {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
  }

  .form-section {
    gap: 12px;
    padding-top: 16px;
  }

  .form-section-head h3 {
    font-size: 1.02rem;
  }

  .form-section-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .form-grid {
    gap: 10px;
  }

  .choice-card span,
  .choice-pill span,
  .scale-pill span {
    min-height: 50px;
    padding: 11px 12px;
    border-radius: 14px;
    font-size: 0.81rem;
  }

  .scale-options {
    gap: 6px;
  }

  .choice-group,
  .choice-grid,
  .scale-group {
    gap: 8px;
  }

  .lead-form input,
  .lead-form select,
  .lead-form textarea {
    padding: 12px 13px;
    border-radius: 14px;
    font-size: 0.95rem;
  }

  .form-submit-row {
    gap: 12px;
  }
}
