:root {
  --bg: #fff7ef;
  --bg-accent: #ffe1c2;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --text: #2c190c;
  --muted: #7a5b42;
  --primary: #f97316;
  --primary-dark: #d65e0b;
  --ring: rgba(249, 115, 22, 0.22);
  --shadow: 0 24px 80px rgba(134, 74, 10, 0.16);
  --radius-lg: 28px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, var(--bg-accent), transparent 30%),
    linear-gradient(180deg, #fffaf4 0%, var(--bg) 100%);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page {
  width: min(100%, 1120px);
  max-width: 100%;
  margin: 0 auto;
  padding: 12px 20px 32px;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: auto;
  gap: 18px;
  text-align: center;
}

.hero > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 auto 12px;
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1 {
  margin: 0 auto;
  max-width: 16ch;
  font-size: clamp(2rem, 7vw, 5rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.title-highlight {
  display: inline;
}

.title-highlight--yellow {
  color: #facc15;
}

.title-highlight--green {
  color: #22c55e;
}

.title-highlight--orange {
  color: #f97316;
}

.hero-proof {
  margin: 0;
  width: min(100%, 640px);
  max-width: 640px;
  margin-inline: auto;
  padding: 12px 18px;
  border: 1px solid rgba(249, 115, 22, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary-dark);
  font-size: clamp(0.98rem, 2vw, 1.1rem);
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(134, 74, 10, 0.12);
}

.hero-proof--secondary {
  max-width: 520px;
}

.hero-proof--primary {
  color: #000;
}

.hero-proof__highlight--green {
  color: #16a34a;
}

.hero-proof__highlight--red {
  color: #dc2626;
}

.money-highlight {
  color: #16a34a;
}

.hero-image {
  overflow: hidden;
  width: min(100%, 420px);
  max-width: 100%;
  margin: 0 auto;
  border: 8px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(134, 74, 10, 0.2);
}

.hero-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-video {
  display: block;
  overflow: hidden;
  width: min(100%, 420px);
  max-width: 100%;
  margin: 0 auto;
  border: 8px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(134, 74, 10, 0.2);
  object-fit: cover;
}

.card {
  width: min(100%, 720px);
  max-width: 100%;
  margin-inline: auto;
  padding: 22px;
  border: 1px solid rgba(249, 115, 22, 0.12);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.students-showcase {
  width: min(100%, 720px);
  max-width: 100%;
  display: grid;
  justify-items: center;
  margin-inline: auto;
  padding: 24px 20px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.8), transparent 55%),
    linear-gradient(135deg, #fff1df, #ffd7b0);
  box-shadow: 0 24px 60px rgba(134, 74, 10, 0.14);
  overflow: hidden;
}

.students-showcase__eyebrow {
  margin: 0 auto;
  color: var(--primary-dark);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.students-showcase__title {
  margin: 10px auto 18px;
  width: 100%;
  max-width: 100%;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: #8f3300;
  overflow-wrap: anywhere;
}

.students-showcase__gallery {
  display: grid;
  gap: 14px;
  width: 100%;
  justify-items: center;
}

.students-showcase__image {
  overflow: hidden;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  border: 8px solid rgba(255, 255, 255, 0.76);
  border-radius: 30px;
  box-shadow: 0 18px 44px rgba(134, 74, 10, 0.18);
}

.students-showcase__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: cover;
}

.progress {
  overflow: hidden;
  width: 100%;
  height: 10px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
}

.progress__bar {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #fb923c, var(--primary));
  transition: width 220ms ease;
}

.step {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.step__label {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  color: var(--primary-dark);
  font-size: 0.86rem;
  font-weight: 700;
}

.step h2 {
  margin: 0 auto;
  max-width: 22ch;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.05;
}

.step p {
  margin: 0 auto;
  max-width: 540px;
  color: var(--muted);
  font-size: 1rem;
}

.choices {
  display: grid;
  width: 100%;
  gap: 12px;
  margin-top: 8px;
}

.button {
  min-height: 56px;
  padding: 14px 18px;
  border: 0;
  border-radius: var(--radius-md);
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

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

.button:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #fb923c);
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.24);
}

.button--primary:hover {
  box-shadow: 0 16px 28px rgba(249, 115, 22, 0.28);
}

.button--option {
  width: 100%;
  color: var(--text);
  background: var(--surface-strong);
  border: 1px solid rgba(44, 25, 12, 0.08);
}

.button--option:hover {
  background: #fff4e8;
}

.result {
  display: grid;
  gap: 16px;
  justify-items: center;
  width: 100%;
}

.result strong {
  color: var(--primary-dark);
}

.result__video {
  display: block;
  width: min(100%, 380px);
  max-width: 100%;
  margin-inline: auto;
  height: auto;
  border-radius: 20px;
  background: #000;
  box-shadow: 0 20px 48px rgba(44, 25, 12, 0.18);
}

.result__cta {
  width: min(100%, 280px);
  margin-inline: auto;
}

.noscript {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 0 20px 24px;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .page {
    padding: 12px 14px 24px;
  }

  .hero {
    gap: 14px;
  }

  .hero > * {
    width: 100%;
  }

  h1 {
    width: 100%;
    max-width: none;
    font-size: clamp(1.9rem, 10vw, 2.8rem);
    line-height: 1.04;
  }

  .hero-proof {
    width: 100%;
    padding: 12px 14px;
    border-radius: 22px;
    font-size: 0.98rem;
    line-height: 1.35;
  }

  .hero-image {
    width: 100%;
    max-width: 360px;
    border-width: 6px;
    border-radius: 24px;
  }

  .hero-video {
    width: 100%;
    max-width: 360px;
    border-width: 6px;
    border-radius: 24px;
  }

  .card {
    padding: 18px 14px;
    border-radius: 22px;
  }

  .step h2 {
    font-size: 1.6rem;
    line-height: 1.1;
  }

  .step p {
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .button {
    width: 100%;
    max-width: 100%;
  }

  .result__video {
    width: 100%;
  }

  .students-showcase {
    padding: 20px 16px;
    border-radius: 22px;
  }

  .students-showcase__title {
    font-size: clamp(1.4rem, 7vw, 2rem);
    line-height: 1.1;
  }

  .students-showcase__image {
    max-width: 260px;
    border-width: 6px;
    border-radius: 24px;
  }

  .site-footer {
    padding: 8px 14px 24px;
  }
}
