
:root {
  --bg-top: #ccecff;
  --bg-mid: #eef9ff;
  --bg-soft: #f7fcf7;
  --bg-bottom: #f4faf4;
  --text: #0f172a;
  --muted: #475569;
  --card: rgba(255, 255, 255, 0.9);
  --white-border: rgba(255, 255, 255, 0.7);
  --green: #059669;
  --green-hover: #10b981;
  --green-soft: #ecfdf5;
  --blue-soft: #eff6ff;
  --pink-soft: #fdf2f8;
  --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.06);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 22%, var(--bg-soft) 58%, var(--bg-bottom) 100%);
}

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

a {
  text-decoration: none;
}

.top-strip {
  height: 8px;
  width: 100%;
  background: linear-gradient(90deg, #4ade80 0%, #22c55e 50%, #4ade80 100%);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.06) 100%);
}

.hero {
  padding: 48px 0 40px;
}

.hero-grid {
  display: grid;
  gap: 32px;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
}

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

.card {
  border: 1px solid var(--white-border);
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.glass {
  backdrop-filter: blur(10px);
}

.hero-copy {
  padding: 24px;
}

.logo-wrap {
  margin-bottom: 24px;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid #d1fae5;
  background: linear-gradient(180deg, #f0fdf4 0%, #ecfeff 100%);
}

.logo {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #fde68a;
}

.eyebrow-green {
  color: #166534;
  background: var(--green-soft);
  border-color: #bbf7d0;
}

.hero h1,
.section-heading h2,
.cta-copy h2 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.45rem, 5vw, 4.6rem);
}

.lead,
.section-heading p,
.big-card p,
.faq-card p,
.play-option p,
.step-card p,
.feature-card p,
.cta-copy p {
  color: var(--muted);
  line-height: 1.85;
}

.lead {
  margin: 16px 0 0;
  max-width: 42rem;
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.cta-row-end {
  align-items: center;
  justify-content: flex-start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

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

.button-primary {
  color: white;
  background: var(--green);
}

.button-primary:hover {
  background: var(--green-hover);
}

.button-secondary {
  color: #be185d;
  background: var(--pink-soft);
  border: 1px solid #fbcfe8;
}

.button-secondary:hover {
  background: #fce7f3;
}

.info-grid,
.feature-grid,
.play-grid,
.steps-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

.info-grid {
  margin-top: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-box,
.play-option {
  border-radius: var(--radius-md);
  padding: 18px;
}

.info-box h3,
.play-option h3,
.feature-card h3,
.big-card h3,
.step-card h3,
.faq-card h3 {
  margin: 0;
}

.info-box p,
.play-option p,
.feature-card p,
.big-card p,
.step-card p,
.faq-card p {
  margin: 8px 0 0;
}

.info-box-warm {
  background: #fffbeb;
  border: 1px solid #fde68a;
}

.info-box-warm h3 {
  color: #92400e;
}

.info-box-warm p {
  color: #a16207;
}

.info-box-cool {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
}

.info-box-cool h3 {
  color: #0c4a6e;
}

.info-box-cool p {
  color: #0369a1;
}

.video-card,
.play-card,
.big-card,
.faq-card {
  padding: 24px;
}

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
}

.card-title {
  font-weight: 700;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #15803d;
  background: var(--green-soft);
}

.pill-blue {
  color: #0369a1;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
}

.video-frame {
  margin-top: 0;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.play-card h2 {
  margin: 0 0 18px;
  font-size: 1.2rem;
}

.play-option + .play-option {
  margin-top: 14px;
}

.play-option-green {
  background: rgba(236, 253, 245, 0.7);
  border: 1px solid #bbf7d0;
}

.play-option-blue {
  background: rgba(239, 246, 255, 0.75);
  border: 1px solid #bfdbfe;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.section-heading p {
  margin-top: 12px;
  font-size: 1.02rem;
}

.feature-grid {
  margin-top: 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  padding: 22px;
  box-shadow: var(--shadow-md);
}

.feature-icon,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 20px;
  margin-bottom: 16px;
}

.play-grid {
  margin-top: 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.big-card .button {
  margin-top: 24px;
}

.steps-grid {
  margin-top: 32px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card {
  padding: 22px;
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  margin-bottom: 16px;
}

.faq-grid {
  margin-top: 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cta-section {
  padding-top: 24px;
  padding-bottom: 64px;
}

.cta-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid #d1fae5;
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
  box-shadow: var(--shadow-lg);
}

.cta-copy {
  max-width: 680px;
}

.cta-copy h2 {
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.cta-copy p {
  margin-top: 12px;
  font-size: 1.02rem;
}

@media (max-width: 1024px) {
  .hero-grid,
  .feature-grid,
  .play-grid,
  .steps-grid,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid {
    align-items: start;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .hero,
  .section {
    padding: 40px 0;
  }

  .hero-grid,
  .feature-grid,
  .play-grid,
  .steps-grid,
  .faq-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .video-card,
  .play-card,
  .big-card,
  .faq-card,
  .cta-panel {
    padding: 20px;
  }

  .card-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .button {
    width: 100%;
  }

  .cta-row {
    width: 100%;
  }
}
