:root {
  --black: #020608;
  --dark: #060d10;
  --dark-card: #081014;
  --yellow: #ffc400;
  --yellow-soft: rgba(255, 196, 0, 0.18);
  --white: #ffffff;
  --muted: #d9dde1;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% 5%, rgba(255, 196, 0, 0.16), transparent 28%),
    radial-gradient(circle at 10% 40%, rgba(255, 196, 0, 0.06), transparent 22%),
    linear-gradient(180deg, #000 0%, var(--black) 45%, #000 100%);
  color: var(--white);
  font-family: 'Poppins', Arial, sans-serif;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }

.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 52px;
}

.hero {
  text-align: center;
  padding: 8px 0 30px;
}
.logo {
  width: min(230px, 70vw);
  display: block;
  margin: 0 auto 16px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 11px;
  font-weight: 800;
}
h1, h2 { font-family: 'Montserrat', Arial, sans-serif; }
h1 {
  max-width: 860px;
  margin: 0 auto;
  font-size: clamp(34px, 5.4vw, 58px);
  line-height: 1.03;
  letter-spacing: -1.4px;
  font-weight: 900;
  text-transform: uppercase;
}
.subtitle {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.55;
}

.lessons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.lesson-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01));
  border: 1.5px solid var(--yellow);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 0 0 1px rgba(255, 196, 0, 0.04), 0 16px 50px rgba(0,0,0,0.25);
}
.lesson-header { text-align: center; }
.lesson-header span {
  display: inline-block;
  color: var(--yellow);
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 7px;
}
.lesson-header h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.4px;
}
.lesson-header p {
  min-height: 52px;
  margin: 10px 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  border: 1.5px solid var(--yellow);
  background: #000;
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.community-cta {
  margin: 44px auto 0;
  padding: 36px 24px;
  max-width: 840px;
  text-align: center;
  border: 1px solid var(--yellow);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,196,0,0.11), rgba(255,255,255,0.025));
}
.community-cta .small-title {
  margin: 0 0 8px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.community-cta h2 {
  margin: 0 auto 14px;
  max-width: 720px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
}
.community-cta p {
  max-width: 650px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: min(100%, 440px);
  min-height: 58px;
  padding: 16px 24px;
  border-radius: 999px;
  background: var(--yellow);
  color: #000;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 25px rgba(255, 196, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(255, 196, 0, 0.35);
}

@media (max-width: 980px) {
  .lessons { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; gap: 18px; }
  .lesson-header p { min-height: 0; }
}

@media (max-width: 560px) {
  .page { width: min(100% - 20px, 1120px); padding: 14px 0 32px; }
  .hero { padding: 0 0 18px; }
  .logo { width: 180px; margin-bottom: 12px; }
  .eyebrow { letter-spacing: 2.4px; font-size: 9px; line-height: 1.45; margin-bottom: 8px; }
  h1 { font-size: 30px; line-height: 1.07; letter-spacing: -0.8px; }
  .subtitle { font-size: 14px; line-height: 1.45; margin-top: 12px; }
  .lessons { gap: 14px; }
  .lesson-card { padding: 14px; border-radius: 16px; }
  .lesson-header span { font-size: 20px; margin-bottom: 5px; }
  .lesson-header h2 { font-size: 18px; }
  .lesson-header p { font-size: 13px; margin: 8px 0 12px; }
  .video-wrapper { border-radius: 12px; }
  .community-cta { margin-top: 28px; padding: 24px 14px; border-radius: 18px; }
  .community-cta .small-title { font-size: 11px; letter-spacing: 1.2px; }
  .community-cta h2 { font-size: 25px; line-height: 1.08; }
  .community-cta p { font-size: 14px; line-height: 1.45; }
  .button { font-size: 13px; min-height: 52px; padding: 14px 16px; }
}
