:root {
  --bg: #080808;
  --surface: rgba(20, 20, 20, 0.76);
  --surface-strong: rgba(15, 15, 15, 0.96);
  --card-border: rgba(255, 255, 255, 0.1);
  --text: #f5f2ea;
  --muted: #b9b0a0;
  --accent: #f5b25d;
  --accent-soft: #ffdfb0;
  --accent-2: #9ee37d;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255, 185, 96, 0.15), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(158, 227, 125, 0.12), transparent 24%),
    linear-gradient(180deg, #0a0a0a 0%, #090909 48%, #060606 100%);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

main,
.topbar,
.footer-cta {
  position: relative;
  z-index: 2;
}

.bg-glow {
  position: fixed;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
}

.glow-1 {
  top: -10rem;
  left: -12rem;
  background: rgba(245, 178, 93, 0.48);
}

.glow-2 {
  right: -12rem;
  top: 20rem;
  background: rgba(120, 206, 95, 0.36);
}

.topbar {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(16px);
  text-align: center;
}

.topbar p {
  margin: 0;
  color: var(--accent-soft);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero,
.content-grid,
.steps-section,
.modules-section,
.mentor-section,
.audience-section,
.offer-section,
.faq-section {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  padding: 5.25rem 0 4rem;
  align-items: center;
}

.hero-copy,
.hero-visual,
.info-card,
.step-card,
.module-card,
.audience-card,
.offer-box,
.mentor-copy,
.faq-item,
.stat-card {
  animation: float-up 0.8s ease both;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.eyebrow {
  margin: 0;
  color: var(--accent-2);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.footer-title {
  font-family: "Sora", sans-serif;
  line-height: 1.02;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  max-width: 11ch;
}

.lead,
.section-heading p,
.mentor-copy p,
.offer-copy p,
.faq-item p,
.info-card p,
.module-card p,
.step-card p,
.audience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #ffe08b 100%);
  color: #16120e;
  box-shadow: 0 16px 40px rgba(245, 178, 93, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 20px 44px rgba(245, 178, 93, 0.34);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.stat-card {
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  backdrop-filter: blur(14px);
}

.stat-card span {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  color: var(--accent-soft);
  margin-bottom: 0.45rem;
}

.stat-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-visual {
  position: relative;
  min-height: 42rem;
}

.hero-image-frame {
  position: absolute;
  inset: 0 2rem 4rem 1rem;
  border-radius: 2.25rem;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    #101010;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

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

.floating-card {
  position: absolute;
  background: rgba(12, 12, 12, 0.8);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.mentor-card {
  left: 0;
  bottom: 4.5rem;
  width: min(22rem, calc(100% - 6rem));
  padding: 1.4rem;
}

.price-card {
  right: 0;
  top: 2.2rem;
  padding: 1.25rem 1.35rem;
  text-align: left;
}

.card-label,
.mini-label {
  margin: 0 0 0.5rem;
  color: var(--accent-2);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mentor-card h2 {
  font-size: 1.45rem;
  margin-bottom: 0.55rem;
}

.mentor-card p,
.price-card p {
  margin: 0;
  color: var(--muted);
}

.price-card strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 2.15rem;
  color: var(--accent-soft);
  margin-bottom: 0.35rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  padding: 1rem 0 4rem;
}

.trust-strip p {
  margin: 0;
  padding: 1rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  text-align: center;
}

.content-grid,
.steps-section,
.modules-section,
.audience-section,
.offer-section,
.faq-section {
  padding: 2rem 0 5rem;
}

.section-heading {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.section-heading.narrow {
  max-width: 42rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 12ch;
}

.grid {
  display: grid;
  gap: 1.2rem;
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.step-card,
.module-card,
.audience-card,
.offer-panel,
.mentor-copy,
.faq-item {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    var(--surface);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.info-card,
.module-card,
.audience-card {
  padding: 1.6rem;
}

.info-card h3,
.step-card h3,
.module-card h3,
.audience-card h3 {
  font-size: 1.32rem;
  margin: 0 0 0.8rem;
}

.card-index {
  display: inline-flex;
  width: 2.65rem;
  height: 2.65rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1rem;
  background: rgba(158, 227, 125, 0.14);
  border: 1px solid rgba(158, 227, 125, 0.3);
  color: var(--accent-2);
  font-weight: 700;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.step-card {
  padding: 1.8rem;
}

.step-number {
  display: inline-block;
  padding: 0.38rem 0.75rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(245, 178, 93, 0.12);
  color: var(--accent-soft);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mentor-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 1.7rem;
  padding: 2rem 0 5rem;
  align-items: center;
}

.mentor-image {
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.mentor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentor-copy {
  padding: 2rem;
}

.mentor-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1rem;
  max-width: 14ch;
}

.bullet-list {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.95rem;
}

.bullet-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--muted);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}

.offer-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  padding: 2rem;
}

.offer-copy {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.offer-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 12ch;
}

.offer-points {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}

.offer-points p {
  margin: 0;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.offer-box {
  padding: 1.8rem;
  background:
    radial-gradient(circle at top right, rgba(245, 178, 93, 0.15), transparent 40%),
    var(--surface-strong);
}

.price-line {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  margin-bottom: 0.6rem;
}

.price-line strong {
  font-family: "Sora", sans-serif;
  font-size: 4rem;
  line-height: 0.9;
}

.price-line span {
  font-size: 1rem;
  color: var(--muted);
  padding-bottom: 0.55rem;
}

.offer-note,
.offer-box small {
  display: block;
  color: var(--muted);
}

.wide {
  width: 100%;
  margin: 1rem 0;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.3rem 1.4rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 0.9rem;
}

.footer-cta {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto 1.5rem;
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 8, 0.86);
  backdrop-filter: blur(18px);
  position: sticky;
  bottom: 1rem;
  box-shadow: var(--shadow);
}

.footer-title {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.footer-cta p {
  margin: 0;
  color: var(--muted);
}

@keyframes float-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero,
  .mentor-section,
  .offer-panel {
    grid-template-columns: 1fr;
  }

  .cards-4,
  .cards-3,
  .cards-2,
  .steps,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: 38rem;
  }

  .hero-image-frame {
    inset: 0 1rem 4rem 1rem;
  }

  .price-card {
    right: 1rem;
  }
}

@media (max-width: 720px) {
  .topbar p {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .hero {
    padding-top: 3.4rem;
  }

  .hero-stats,
  .cards-4,
  .cards-3,
  .cards-2,
  .steps,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .footer-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 34rem;
  }

  .hero-image-frame {
    inset: 0 0 5.8rem;
  }

  .mentor-card {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 4rem;
    width: auto;
  }

  .price-card {
    top: auto;
    right: 0.8rem;
    bottom: 0.8rem;
  }

  .offer-panel,
  .mentor-copy,
  .offer-box,
  .step-card,
  .info-card,
  .module-card,
  .audience-card,
  .faq-item {
    padding: 1.35rem;
  }

  .price-line strong {
    font-size: 3.2rem;
  }
}
