:root {
  --teal: #19d3b4;
  --teal-2: #11b89a;
  --teal-3: #00a98f;
  --teal-4: #028c72;
  --ink: #0b0d10;
  --ink-2: #12161b;
  --card: #171c22;
  --card-hover: #1e252d;
  --border: #2a313a;
  --text: #ffffff;
  --muted: #aab3be;
  --soft: #f1f1f1;
  --shadow: rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(25, 211, 180, 0.12), transparent 31rem),
    radial-gradient(circle at 88% 28%, rgba(0, 169, 143, 0.1), transparent 26rem),
    var(--ink);
  color: var(--text);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 72%);
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 830px;
  margin-bottom: 1.35rem;
  font-size: clamp(3rem, 8vw, 6.9rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.text-accent {
  color: var(--teal);
  text-shadow: 0 0 34px rgba(25, 211, 180, 0.22);
}

.text-glow {
  display: inline-block;
  color: var(--soft);
  background: linear-gradient(135deg, var(--teal), var(--soft) 42%, var(--teal-3));
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 48px rgba(25, 211, 180, 0.3);
  -webkit-text-fill-color: transparent;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 1rem;
  font-size: 1.12rem;
  line-height: 1.25;
}

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

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

.section {
  position: relative;
  scroll-margin-top: 110px;
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 10px;
  border: 1px solid rgba(42, 49, 58, 0.9);
  border-radius: 18px;
  background: rgba(18, 22, 27, 0.76);
  box-shadow: 0 18px 60px var(--shadow);
  backdrop-filter: blur(22px);
}

.brand,
.nav,
.hero-actions,
.hero-proof,
.footer-inner {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  padding-left: 4px;
  font-weight: 800;
}

.brand-mark {
  display: block;
  width: 104px;
  height: 44px;
  overflow: hidden;
  border: 1px solid rgba(25, 211, 180, 0.38);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(25, 211, 180, 0.24), rgba(2, 140, 114, 0.06));
  box-shadow: 0 0 34px rgba(25, 211, 180, 0.2);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 57%;
  filter: saturate(0.82) contrast(1.08) brightness(1.05);
}

.nav {
  gap: 26px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--text);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.header-cta {
  padding: 0 18px;
  background: rgba(25, 211, 180, 0.1);
  color: var(--teal);
}

.button {
  min-height: 56px;
  padding: 0 26px;
  border: 1px solid transparent;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-3));
  color: #06211d;
  box-shadow: 0 18px 48px rgba(25, 211, 180, 0.28);
}

.button-secondary {
  border-color: rgba(170, 179, 190, 0.2);
  background: rgba(23, 28, 34, 0.72);
  color: var(--soft);
}

.hero {
  min-height: calc(100vh - 76px);
  padding-top: 104px;
  overflow: hidden;
}

.hero::after,
.final-cta::before,
.live-box::before {
  position: absolute;
  content: "";
  pointer-events: none;
  filter: blur(52px);
}

.hero::after {
  right: 4%;
  bottom: 10%;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  background: rgba(25, 211, 180, 0.18);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.78;
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(11, 13, 16, 0.98) 0%, rgba(11, 13, 16, 0.74) 42%, rgba(11, 13, 16, 0.28) 72%, rgba(11, 13, 16, 0.72) 100%),
    linear-gradient(0deg, var(--ink) 0%, transparent 38%, rgba(11, 13, 16, 0.9) 100%);
}

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.58fr);
  gap: 48px;
  align-items: center;
}

.hero-copy {
  padding-top: 28px;
}

.eyebrow {
  margin-bottom: 0.9rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 670px;
  margin-bottom: 2rem;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-proof {
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span {
  padding: 9px 13px;
  border: 1px solid rgba(42, 49, 58, 0.86);
  border-radius: 999px;
  background: rgba(18, 22, 27, 0.72);
  color: var(--muted);
  font-size: 0.86rem;
}

.partner-strip {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(42, 49, 58, 0.76);
  border-radius: 999px;
  background: rgba(18, 22, 27, 0.62);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.partner-strip img {
  width: 92px;
  height: 24px;
  object-fit: cover;
  object-position: center 57%;
  filter: saturate(0.78) contrast(1.16) brightness(1.14);
}

.hero-panel,
.card,
.method-card,
.benefit-card,
.week-row,
.live-box,
.lead-form {
  border: 1px solid rgba(42, 49, 58, 0.86);
  background: linear-gradient(180deg, rgba(23, 28, 34, 0.9), rgba(18, 22, 27, 0.78));
  box-shadow: 0 24px 80px var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel {
  position: relative;
  padding: 24px;
  border-radius: 24px;
}

.hero-panel::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  content: "";
  background: linear-gradient(135deg, rgba(25, 211, 180, 0.42), transparent 38%, rgba(255, 255, 255, 0.05));
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: var(--muted);
}

.panel-top strong {
  color: var(--teal);
}

.pipeline {
  display: grid;
  gap: 12px;
}

.pipeline div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid rgba(42, 49, 58, 0.72);
  border-radius: 16px;
  background: rgba(11, 13, 16, 0.44);
}

.pipeline span {
  color: var(--muted);
}

.pipeline strong {
  font-size: 1.5rem;
}

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

.section-heading p:not(.eyebrow) {
  font-size: 1.08rem;
}

.comparison-grid,
.method-grid,
.benefits-grid,
.audience-grid,
.guarantee-grid,
.final-grid,
.form-grid {
  display: grid;
  gap: 20px;
}

.comparison-grid,
.audience-grid,
.guarantee-grid,
.final-grid,
.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.method-card,
.benefit-card {
  border-radius: 22px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.card {
  padding: 28px;
}

.card:hover,
.method-card:hover,
.benefit-card:hover,
.week-row:hover {
  border-color: rgba(25, 211, 180, 0.36);
  background: linear-gradient(180deg, rgba(30, 37, 45, 0.96), rgba(18, 22, 27, 0.84));
  transform: translateY(-3px);
}

.danger-card {
  background: linear-gradient(180deg, rgba(23, 28, 34, 0.94), rgba(21, 27, 31, 0.88));
}

.check-list,
.method-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.method-card li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  line-height: 1.5;
}

.check-list li::before,
.method-card li::before {
  position: absolute;
  left: 0;
  top: 0.54em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 18px rgba(25, 211, 180, 0.54);
  content: "";
}

.muted li::before {
  background: rgba(170, 179, 190, 0.46);
  box-shadow: none;
}

.statement {
  max-width: 920px;
  margin: 28px auto 0;
  padding: 28px;
  border: 1px solid rgba(25, 211, 180, 0.24);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(25, 211, 180, 0.1), rgba(23, 28, 34, 0.7));
  color: var(--soft);
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.35;
  text-align: center;
}

.method,
.deliverables,
.form-section {
  background: linear-gradient(180deg, rgba(18, 22, 27, 0.44), rgba(11, 13, 16, 0));
}

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

.method-card {
  padding: 24px;
}

.letter,
.icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(25, 211, 180, 0.22), rgba(2, 140, 114, 0.06));
  color: var(--teal);
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(25, 211, 180, 0.22), 0 0 34px rgba(25, 211, 180, 0.1);
}

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

.benefit-card {
  min-height: 176px;
  padding: 24px;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--soft);
  font-weight: 700;
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-size: 0.82rem;
}

.timeline {
  display: grid;
  gap: 14px;
}

.week-row {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) 230px;
  gap: 22px;
  align-items: center;
  padding: 20px;
  border-radius: 20px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.week-label {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(25, 211, 180, 0.1);
  color: var(--teal);
  font-weight: 800;
}

.week-row h3,
.week-row p {
  margin-bottom: 0.25rem;
}

.week-row strong {
  color: var(--soft);
}

.no-card {
  opacity: 0.82;
}

.live-box {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px auto;
  gap: 28px;
  align-items: center;
  overflow: hidden;
  padding: 42px;
  border-radius: 28px;
  box-shadow: 0 0 0 1px rgba(25, 211, 180, 0.16), 0 28px 90px rgba(0, 0, 0, 0.48);
}

.live-box::before {
  right: 10%;
  bottom: -120px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(25, 211, 180, 0.22);
}

.mentor-card {
  position: relative;
  overflow: hidden;
  min-height: 315px;
  margin: 0;
  border: 1px solid rgba(25, 211, 180, 0.2);
  border-radius: 24px;
  background: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.mentor-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 32%, rgba(11, 13, 16, 0.72) 72%, rgba(11, 13, 16, 0.96)),
    linear-gradient(90deg, rgba(25, 211, 180, 0.16), transparent 48%);
}

.mentor-card img {
  width: 100%;
  height: 315px;
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(0.82) contrast(1.04) brightness(0.82);
}

.mentor-card figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 1;
}

.mentor-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mentor-card strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.35;
}

.guarantee-grid,
.final-grid,
.form-grid {
  align-items: center;
}

.guarantee {
  background:
    radial-gradient(circle at 80% 24%, rgba(25, 211, 180, 0.16), transparent 28rem),
    linear-gradient(180deg, rgba(18, 22, 27, 0.36), rgba(11, 13, 16, 0));
}

.guarantee-card {
  padding: 28px;
  border: 1px solid rgba(25, 211, 180, 0.26);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(25, 211, 180, 0.11), rgba(23, 28, 34, 0.88) 44%, rgba(18, 22, 27, 0.94));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.guarantee-card p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.guarantee-card p:last-child {
  margin-bottom: 0;
}

.guarantee-card strong {
  color: var(--teal);
}

.final-cta {
  overflow: hidden;
  background: linear-gradient(135deg, rgba(25, 211, 180, 0.08), rgba(18, 22, 27, 0.12));
}

.final-cta::before {
  left: 12%;
  top: 18%;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(25, 211, 180, 0.16);
}

.final-grid .button {
  justify-self: end;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: 0.92rem;
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(42, 49, 58, 0.94);
  border-radius: 14px;
  outline: none;
  background: rgba(11, 13, 16, 0.72);
  color: var(--text);
  font: inherit;
}

input:focus,
select:focus {
  border-color: rgba(25, 211, 180, 0.72);
  box-shadow: 0 0 0 4px rgba(25, 211, 180, 0.1);
}

.form-note {
  min-height: 24px;
  margin-bottom: 0;
  color: var(--teal);
  font-weight: 700;
}

.form-note a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  border-top: 1px solid rgba(42, 49, 58, 0.74);
  padding: 26px 0;
}

.footer-inner {
  justify-content: space-between;
  color: var(--muted);
}

.footer-inner img {
  width: 118px;
  height: 30px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center 57%;
  filter: saturate(0.72) contrast(1.12) brightness(1.08);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero-grid,
  .comparison-grid,
  .audience-grid,
  .guarantee-grid,
  .final-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 78px;
  }

  .hero-panel {
    max-width: 520px;
  }

  .hero-grid {
    gap: 30px;
  }

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

  .week-row {
    grid-template-columns: 1fr;
  }

  .final-grid .button {
    justify-self: start;
  }

  .live-box {
    grid-template-columns: 1fr;
  }

  .mentor-card {
    order: 2;
  }

  .live-box .button {
    order: 3;
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 68px 0;
  }

  .site-header {
    top: 10px;
    width: min(100% - 20px, 1160px);
  }

  .brand span:last-child {
    display: none;
  }

  .brand-mark {
    width: 92px;
    height: 42px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.86rem;
  }

  .hero-actions,
  .button,
  .live-box {
    width: 100%;
  }

  .button {
    padding: 0 18px;
    text-align: center;
  }

  .method-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .method-card,
  .benefit-card,
  .lead-form {
    border-radius: 18px;
    padding: 22px;
  }

  .live-box {
    align-items: flex-start;
    padding: 28px;
  }

  .mentor-card,
  .mentor-card img {
    min-height: 340px;
    height: 340px;
  }

  .mentor-card img {
    object-position: 52% center;
  }

  .partner-strip {
    width: 100%;
    justify-content: space-between;
    border-radius: 16px;
  }
}
