:root {
  color-scheme: dark;
  --bg: #06070d;
  --bg-soft: #0e1320;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #f8fbff;
  --muted: #aab5c5;
  --line: rgba(255, 255, 255, 0.11);
  --cyan: #28d7f5;
  --coral: #ff4f7b;
  --violet: #b374ff;
  --lime: #c8ff66;
  --shadow: 0 20px 56px rgba(0, 0, 0, 0.24);
  --radius: 8px;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 4%, rgba(40, 215, 245, 0.1), transparent 30rem),
    radial-gradient(circle at 82% 16%, rgba(255, 79, 123, 0.08), transparent 26rem),
    linear-gradient(180deg, #05060b 0%, #090d14 48%, #06070d 100%);
  color: var(--text);
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 52px);
  background: rgba(6, 7, 13, 0.5);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(6, 7, 13, 0.86);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(40, 215, 245, 0.25);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.site-nav .nav-cta {
  color: #061018;
  background: var(--text);
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  padding: 116px clamp(18px, 5vw, 64px) 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 42%, rgba(40, 215, 245, 0.15), transparent 28rem),
    radial-gradient(circle at 84% 20%, rgba(255, 79, 123, 0.12), transparent 22rem),
    linear-gradient(135deg, #05060b 0%, #0b1018 54%, #070911 100%);
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.hero-bg::before {
  width: 460px;
  height: 460px;
  top: 12%;
  right: 6%;
  background: transparent;
}

.hero-bg::after {
  width: 270px;
  height: 270px;
  right: 28%;
  bottom: 8%;
  background: transparent;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  gap: 58px;
  align-items: center;
  width: min(var(--max), 100%);
  min-height: calc(88svh - 180px);
  margin: 0 auto;
}

.hero-content {
  position: relative;
  width: min(780px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--coral));
  border-radius: 999px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: 5.5rem;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 3.15rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.2rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  font-size: 1.12rem;
  color: #d6deea;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  color: #05060b;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  box-shadow: 0 18px 46px rgba(40, 215, 245, 0.22);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.13);
}

.hero-visual {
  position: relative;
  min-height: 510px;
}

.live-phone {
  position: absolute;
  top: 0;
  right: 0;
  width: min(330px, 82%);
  aspect-ratio: 0.58;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 38%, rgba(40, 215, 245, 0.32), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    #0a0f19;
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.34), inset 0 0 0 8px rgba(255, 255, 255, 0.026);
}

.phone-top {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 88px;
  height: 18px;
  border-radius: 999px;
  background: #05060b;
  transform: translateX(-50%);
}

.live-badge {
  position: absolute;
  top: 58px;
  left: 26px;
  padding: 8px 11px;
  border-radius: 8px;
  background: var(--coral);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
}

.creator-pulse {
  position: absolute;
  top: 32%;
  left: 50%;
  width: 118px;
  height: 118px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 42%, #ffffff 0 14%, transparent 15%),
    radial-gradient(circle at 50% 76%, #ffffff 0 24%, transparent 25%),
    linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow: 0 0 0 18px rgba(40, 215, 245, 0.08), 0 0 0 42px rgba(255, 79, 123, 0.08);
  transform: translate(-50%, -50%);
  animation: pulse 3.4s ease-in-out infinite;
}

.chat-line {
  position: absolute;
  left: 28px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.line-one {
  right: 72px;
  bottom: 142px;
}

.line-two {
  right: 112px;
  bottom: 112px;
}

.line-three {
  right: 54px;
  bottom: 82px;
}

.gift-row {
  position: absolute;
  right: 28px;
  bottom: 24px;
  display: flex;
  gap: 10px;
}

.gift-row span {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 43%, rgba(255, 255, 255, 0.5) 43% 57%, transparent 57%),
    linear-gradient(0deg, transparent 43%, rgba(255, 255, 255, 0.45) 43% 57%, transparent 57%),
    linear-gradient(135deg, var(--cyan), var(--coral));
}

.progress-panel {
  position: absolute;
  left: 0;
  bottom: 24px;
  width: min(330px, 78%);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel-label {
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.progress-bars {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.progress-bars span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--coral));
}

.progress-bars span:nth-child(1) {
  width: 48%;
}

.progress-bars span:nth-child(2) {
  width: 72%;
}

.progress-bars span:nth-child(3) {
  width: 92%;
}

.progress-panel p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.04);
  }
}

.value-card,
.why-panel,
.why-item,
.step,
.tier-card,
.coaching-metrics,
.faq-item,
.apply-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.section {
  padding: 96px clamp(18px, 5vw, 64px);
}

.section-heading {
  width: min(var(--max), 100%);
  margin: 0 auto 34px;
}

.section-heading h2 {
  max-width: 860px;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
}

.value-grid,
.signal-grid,
.feature-grid,
.why-layout,
.timeline,
.tiers,
.faq-list {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.value-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.signal {
  min-height: 140px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.045);
}

.signal strong {
  display: block;
  color: var(--text);
  font-size: 1.24rem;
}

.signal span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.58fr);
  gap: 24px;
  align-items: end;
  width: min(var(--max), 100%);
  margin: 0 auto 34px;
}

.split-heading .eyebrow {
  grid-column: 1 / -1;
}

.split-heading p:not(.eyebrow) {
  margin: 0;
  max-width: 430px;
}

.value-card {
  min-height: 210px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.052);
  transition: transform 180ms ease, border-color 180ms ease;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(40, 215, 245, 0.4);
}

.card-kicker,
.tier-label {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.why-section {
  background: rgba(255, 255, 255, 0.018);
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.why-panel {
  padding: clamp(26px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(40, 215, 245, 0.16), rgba(255, 79, 123, 0.08)),
    var(--panel);
}

.why-panel p {
  margin: 0;
  font-size: 1.04rem;
}

.why-panel p + p {
  margin-top: 18px;
}

.why-list {
  display: grid;
  gap: 14px;
}

.why-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.why-item span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  color: #05060b;
  background: var(--cyan);
  font-weight: 900;
}

.why-item p,
.step p,
.tier-card p {
  margin: 12px 0 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.step {
  position: relative;
  min-height: 220px;
  padding: 24px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.047);
}

.step::after {
  content: "";
  position: absolute;
  inset: auto -30px -55px auto;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.step-number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--lime);
  font-weight: 900;
}

.tiers-section {
  background:
    linear-gradient(180deg, rgba(40, 215, 245, 0.035), transparent 52%),
    rgba(255, 255, 255, 0.018);
}

.tiers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tier-card {
  min-height: 310px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.052);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.tier-card:hover,
.tier-card:focus-visible {
  transform: translateY(-7px);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.tier-featured {
  background:
    linear-gradient(180deg, rgba(40, 215, 245, 0.2), rgba(255, 79, 123, 0.11)),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(40, 215, 245, 0.35);
}

.tier-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.tier-card li {
  position: relative;
  padding-left: 22px;
  color: #dce6f4;
  line-height: 1.5;
}

.tier-card li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
}

.coaching-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 44px;
  align-items: center;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding-inline: 0;
}

.coaching-copy h2 {
  max-width: 760px;
}

.coaching-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.046);
}

.coaching-metrics div {
  min-height: 120px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(5, 6, 11, 0.42);
}

.coaching-metrics strong {
  display: block;
  font-size: 1.2rem;
}

.coaching-metrics span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.faq-section {
  background: rgba(255, 255, 255, 0.018);
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(900px, 100%);
  margin: 0 auto;
}

.faq-item {
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.065);
}

.faq-item summary {
  cursor: pointer;
  padding: 22px 0;
  color: var(--text);
  font-weight: 850;
}

.faq-item summary::marker {
  color: var(--cyan);
}

.faq-item p {
  margin: 0;
  padding: 0 0 22px;
}

.apply-section {
  padding: 96px clamp(18px, 5vw, 64px);
}

.apply-card {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(255, 79, 123, 0.1), rgba(40, 215, 245, 0.09)),
    rgba(255, 255, 255, 0.06);
}

.apply-form {
  display: grid;
  gap: 14px;
}

.apply-form label {
  display: grid;
  gap: 8px;
  color: #eef5ff;
  font-size: 0.92rem;
  font-weight: 800;
}

.apply-form input,
.apply-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(5, 6, 11, 0.64);
  color: var(--text);
  padding: 14px 15px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.apply-form input:focus,
.apply-form select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(40, 215, 245, 0.12);
}

.form-note {
  min-height: 24px;
  margin: 0;
  font-size: 0.88rem;
}

.form-note.is-success {
  color: var(--lime);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding: 36px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: #05060b;
}

.site-footer p {
  max-width: 620px;
  margin: 12px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-links a {
  color: var(--muted);
}

.legal {
  grid-column: 1 / -1;
  font-size: 0.84rem;
}

.error-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 70% 20%, rgba(40, 215, 245, 0.14), transparent 26rem),
    radial-gradient(circle at 24% 80%, rgba(255, 79, 123, 0.1), transparent 24rem),
    #06070d;
}

.error-shell {
  width: min(680px, 100%);
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.error-shell .brand {
  margin-bottom: 42px;
}

.error-shell h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 8vw, 5.5rem);
}

.error-shell .btn {
  margin-top: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  h1 {
    max-width: 13ch;
    font-size: 4.25rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
  }

  .hero-content {
    width: min(760px, 100%);
  }

  .hero-visual {
    width: min(620px, 100%);
    min-height: 450px;
    margin: 0 auto;
  }

  .value-grid,
  .feature-grid,
  .timeline,
  .tiers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signal-grid,
  .why-layout,
  .split-heading,
  .coaching-section,
  .apply-card {
    grid-template-columns: 1fr;
  }

  .split-heading p:not(.eyebrow) {
    max-width: 620px;
  }

  .apply-card {
    gap: 28px;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  h1 {
    max-width: 100%;
    font-size: 3rem;
    line-height: 1;
  }

  h2 {
    font-size: 2.15rem;
    line-height: 1.08;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    top: 65px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(6, 7, 13, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px;
  }

  .hero {
    padding-top: 104px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .live-phone {
    right: 50%;
    width: min(280px, 84%);
    transform: translateX(50%);
  }

  .progress-panel {
    left: 50%;
    width: min(310px, 92%);
    transform: translateX(-50%);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .value-grid,
  .signal-grid,
  .feature-grid,
  .timeline,
  .tiers,
  .coaching-metrics {
    grid-template-columns: 1fr;
  }

  .why-item {
    grid-template-columns: 52px 1fr;
    padding: 18px;
  }

  .tier-card,
  .step,
  .value-card,
  .signal {
    min-height: auto;
  }

  .apply-card {
    grid-template-columns: minmax(0, 1fr);
    padding: 22px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.82rem;
  }

  h3 {
    font-size: 1.08rem;
  }

  .eyebrow {
    font-size: 0.7rem;
  }

  .section {
    padding-block: 58px;
  }

  .value-card,
  .tier-card,
  .signal {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
