:root {
  --purple-900: #2c1e46;
  --purple-800: #49306f;
  --purple-700: #6a52a3;
  --blue-700: #6f86b8;
  --blue-600: #6c8ea0;
  --ink: #111214;
  --ink-2: #1b1d22;
  --ink-3: #242730;
  --text: #1f2937;
  --muted: #6b7280;
  --bg: #f6f7fb;
  --card: #ffffff;
  --line: #e5e7eb;
  --soft-blue: #eef2fb;
  --soft-purple: #f3effa;
  --soft-cream: #f6f5f8;
  --dark: #0f1115;
  --shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  --radius: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: rgba(15, 17, 21, 0.78);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 12px 0;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: 0.2s ease;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

@media (max-width: 900px) {
  .nav {
    position: relative;
    min-height: 76px;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 1001;
    background: rgba(15, 17, 21, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-links,
  .nav-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .nav-links a,
  .nav-actions a {
    width: 100%;
  }

  .nav-actions .btn {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .nav {
    justify-content: space-between;
  }

  .nav-links,
  .nav-actions {
    justify-content: flex-start;
  }
}

.brand {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.brand span {
  color: #9b8cff;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a,
.nav-actions a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
}

.nav-links a:hover,
.nav-actions a:hover {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.btn-primary:hover {
  background: #000;
  border-color: #000;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(17, 18, 20, 0.16);
}

.btn-outline:hover {
  background: #f8f9fb;
}

.promo-bar {
  background: linear-gradient(90deg, var(--purple-800), var(--blue-600));
  color: #fff;
  padding: 10px 0;
}

.promo-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.hero {
  position: relative;
  color: #fff;
  padding: 68px 0 30px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10, 11, 15, 0.78), rgba(44, 30, 70, 0.62)),
    url("/images/pod-coach-slide-background.png") center center / cover no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.12);
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero h1 .accent {
  color: #a99bff;
}

.hero p.lead {
  margin: 0 0 24px;
  font-size: 19px;
  color: rgba(255,255,255,0.92);
  max-width: 690px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-actions-center {
  justify-content: center;
}

.hero-note {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
}

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
  backdrop-filter: blur(8px);
}

.dashboard-shot-wrap {
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  overflow: hidden;
}

.dashboard-shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
}

.proof-bar {
  background: linear-gradient(90deg, var(--purple-800), var(--blue-600));
  color: #fff;
  padding: 14px 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  text-align: center;
}

.proof-item {
  font-size: 15px;
  font-weight: 700;
}

.proof-item strong {
  display: block;
  color: #d6d0ff;
  font-size: 24px;
  margin-bottom: 2px;
}

.section {
  padding: 78px 0;
}

.section.soft {
  background: var(--bg);
}

.section.blue-soft {
  background: var(--soft-blue);
}

.section.orange-soft {
  background: var(--soft-purple);
}

.section.cream {
  background: var(--soft-cream);
}

.section-title {
  max-width: 900px;
  margin: 0 auto 18px;
  text-align: center;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-subtitle {
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center;
  color: var(--muted);
  font-size: 18px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  height: 100%;
}

.card h3,
.card h4 {
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.2;
}

.icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ede8fb;
  color: var(--purple-800);
  font-size: 28px;
  margin-bottom: 16px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: #374151;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--purple-800);
  font-weight: 800;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  text-align: center;
}

.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-800), var(--blue-700));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 14px;
}

.soft-cta {
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}

.soft-cta p {
  font-size: 19px;
  color: var(--muted);
}

.bottom-cta {
  background: linear-gradient(135deg, #121318, var(--purple-900));
  color: #fff;
  padding: 80px 0;
}

.bottom-cta-box {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.bottom-cta h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.bottom-cta p {
  max-width: 760px;
  margin: 0 auto 26px;
  color: rgba(255,255,255,0.9);
  font-size: 19px;
}

.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.86);
  padding: 48px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer h4 {
  margin-top: 0;
  margin-bottom: 14px;
  color: #fff;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer li {
  margin-bottom: 10px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}

.footer-brand {
  font-size: 32px;
  margin-bottom: 12px;
}

.seasonal-events-section .section-header.center {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.seasonal-events-section .event-group + .event-group {
  margin-top: 44px;
}

.seasonal-events-section .event-group h3 {
  margin: 0 0 18px;
  font-size: 1.5rem;
  line-height: 1.2;
}

.seasonal-events-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.seasonal-event-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.seasonal-event-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.seasonal-event-top h4 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.2;
}

.seasonal-event-card p {
  margin: 0 0 16px;
  color: #475569;
}

.event-pill {
  display: inline-block;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.10);
  color: #4338ca;
}

.countdown-box {
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 14px;
  border-radius: 12px;
  background: #0f172a;
  color: #ffffff;
}

.evergreen-box {
  background: rgba(15, 23, 42, 0.06);
  color: #0f172a;
}

.mt-20 {
  margin-top: 20px;
}

.mt-24 {
  margin-top: 24px;
}

.join-title {
  margin-bottom: 16px;
}

@media (max-width: 1024px) {
  .hero-grid,
  .proof-grid,
  .grid-3,
  .split,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .seasonal-events-grid {
    grid-template-columns: 1fr;
  }

  .seasonal-event-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .nav {
    justify-content: center;
  }

  .nav-links,
  .nav-actions {
    justify-content: center;
  }

  .hero {
    padding-top: 44px;
  }

  .section {
    padding: 58px 0;
  }

  .card,
  .step,
  .hero-card {
    padding: 22px;
  }
}