:root {
  --black: #030303;
  --dark: #0b0b0b;
  --card: #101010;
  --yellow: #ffc400;
  --yellow-2: #f2b900;
  --white: #ffffff;
  --muted: #cfcfcf;
  --line: rgba(255, 196, 0, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: 'Poppins', Arial, sans-serif;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px 18px;
  position: relative;
  overflow: hidden;
}

.glow {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255,196,0,.18), transparent 65%);
  filter: blur(18px);
  pointer-events: none;
}
.glow-1 { top: -120px; right: -90px; }
.glow-2 { bottom: -140px; left: -120px; }

.hero-card {
  width: min(820px, 100%);
  text-align: center;
  padding: 44px 36px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  box-shadow: 0 0 80px rgba(255,196,0,.06);
  position: relative;
  z-index: 1;
}

.logo {
  display: block;
  width: min(250px, 70%);
  margin: 0 auto 28px;
}

.eyebrow,
.section-kicker {
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 700;
  font-size: 12px;
  margin: 0 0 12px;
}

h1, h2, h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
}

h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.04;
  font-weight: 900;
  max-width: 760px;
  margin: 0 auto 18px;
}

h1 span { color: var(--yellow); }

.subheadline {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 28px;
  font-size: 17px;
  line-height: 1.6;
}

.capture-form {
  width: min(650px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.capture-form input {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  background: #fff;
  color: #111;
  border-radius: 10px;
  padding: 17px 18px;
  font-size: 16px;
  outline: none;
  font-family: 'Poppins', Arial, sans-serif;
}

.capture-form input:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255,196,0,.14);
}

.capture-form button {
  border: none;
  background: var(--yellow);
  color: #050505;
  border-radius: 999px;
  padding: 17px 22px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: .02em;
  transition: transform .2s ease, filter .2s ease;
}

.capture-form button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.safe {
  color: #f3f3f3;
  font-size: 14px;
  margin: 18px 0 0;
}

.price-box {
  margin-top: 28px;
}
.price-box p {
  color: var(--white);
  margin: 0 0 8px;
  font-weight: 600;
}
.prices {
  display: flex;
  justify-content: center;
  gap: 34px;
  align-items: center;
  flex-wrap: wrap;
}
.old-price {
  color: #fff;
  font-weight: 800;
  font-size: 24px;
  text-decoration: line-through;
  opacity: .85;
}
.new-price {
  color: var(--yellow);
  font-weight: 900;
  font-size: 30px;
}

.teacher {
  background: #f4f4f4;
  color: #101010;
  padding: 76px 18px;
}
.teacher-wrap {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.photo-frame {
  position: relative;
}
.photo-frame:before {
  content: '';
  position: absolute;
  width: 110px;
  height: 78px;
  top: -24px;
  left: -24px;
  background-image: radial-gradient(#111 2px, transparent 2px);
  background-size: 12px 12px;
  opacity: .35;
}
.photo-frame img {
  width: 100%;
  display: block;
  border-radius: 4px;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  object-position: center top;
  position: relative;
  z-index: 1;
}
.teacher-content h2 {
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 6px;
}
.role {
  color: #303a4a;
  font-style: italic;
  font-size: 18px;
  margin: 0 0 28px;
}
.teacher-content p:not(.role):not(.section-kicker) {
  color: #202020;
  font-size: 17px;
  line-height: 1.65;
}
.teacher-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.teacher-tags span {
  background: #111;
  color: var(--yellow);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.what-you-get {
  padding: 76px 18px;
  background: var(--black);
}
.what-wrap {
  width: min(1100px, 100%);
  margin: 0 auto;
  text-align: center;
}
.what-wrap h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 30px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cards article {
  text-align: left;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}
.cards strong {
  color: var(--yellow);
  font-size: 34px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cards h3 {
  margin: 10px 0;
  font-size: 24px;
}
.cards p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

footer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 28px 18px;
  text-align: center;
  background: #070707;
}
footer img {
  width: 170px;
  display: block;
  margin: 0 auto 8px;
}
footer p {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}

@media (max-width: 820px) {
  .hero { padding: 28px 14px; }
  .hero-card { padding: 32px 18px; border-radius: 14px; }
  .subheadline { font-size: 15px; }
  .teacher-wrap { grid-template-columns: 1fr; gap: 32px; }
  .photo-frame { max-width: 420px; margin: 0 auto; }
  .cards { grid-template-columns: 1fr; }
}
