:root {
  --bg: #0a0a0a;
  --bg-soft: #0a0a0a;
  --bg-card: rgba(16, 16, 16, 0.94);
  --bg-card-strong: #111111;
  --text: #f5f5f5;
  --muted: rgba(229, 231, 235, 0.72);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(37, 211, 102, 0.32);
  --accent: #25d366;
  --accent-dark: #1fa855;
  --accent-soft: rgba(37, 211, 102, 0.12);
  --danger: #ef4444;
  --danger-soft: rgba(239, 68, 68, 0.1);
  --shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  --container: 1120px;
  --title-size: clamp(2.8rem, 7vw, 5.4rem);
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Barlow", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg-soft);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
}

::selection {
  background: var(--accent);
  color: #0f1422;
}

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

p,
h1,
h2,
h3,
blockquote {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

strong {
  color: #ffffff;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
}

.page-shell::before {
  top: -24vw;
  left: -42vw;
  width: 120vw;
  height: 120vw;
  border-radius: 50%;
  background:
    repeating-radial-gradient(
      ellipse at 34% 34%,
      transparent 0 1.05rem,
      rgba(37, 211, 102, 0.46) 1.05rem 1.16rem,
      transparent 1.16rem 2.5rem
    );
  opacity: 0.11;
  -webkit-mask-image: linear-gradient(
    142deg,
    rgba(0, 0, 0, 0.98) 8%,
    rgba(0, 0, 0, 0.82) 44%,
    rgba(0, 0, 0, 0.28) 74%,
    transparent 92%
  );
  mask-image: linear-gradient(
    142deg,
    rgba(0, 0, 0, 0.98) 8%,
    rgba(0, 0, 0, 0.82) 44%,
    rgba(0, 0, 0, 0.28) 74%,
    transparent 92%
  );
}

.page-shell::after {
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(37, 211, 102, 0.4) 1.4px, transparent 1.9px),
    radial-gradient(circle, rgba(37, 211, 102, 0.28) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(37, 211, 102, 0.2) 0.9px, transparent 1.4px);
  background-size: 180px 180px, 240px 240px, 320px 320px;
  background-position: 2% 6%, 12% 18%, 8% 28%;
  opacity: 0.06;
  -webkit-mask-image: linear-gradient(
    145deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.28) 56%,
    transparent 84%
  );
  mask-image: linear-gradient(
    145deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.28) 56%,
    transparent 84%
  );
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.urgency-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line-strong);
  background: rgba(15, 20, 34, 0.92);
  backdrop-filter: blur(14px);
}

.urgency-bar__text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  padding: 0.85rem 0;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
}

.urgency-bar__timer {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(248, 113, 113, 0.35);
  border-radius: 999px;
  background: linear-gradient(180deg, #b91c1c 0%, #7f1d1d 100%);
  padding: 0.35rem 0.7rem;
  color: #fff5f5;
  box-shadow: 0 10px 24px rgba(127, 29, 29, 0.28);
}

.urgency-bar__timer strong {
  color: #ffffff;
}

main {
  display: block;
}

section {
  padding: 5.5rem 0;
}

.hero-vsl {
  padding-top: 4.5rem;
  padding-bottom: 2.25rem;
}

.hero-vsl__layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-inline: clamp(0.5rem, 2vw, 1.5rem);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  border: 1px solid rgba(37, 211, 102, 0.26);
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.08);
  padding: 0.55rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7df0a6;
}

.hero-vsl__title,
.section-intro h2,
.transition-panel h2,
.guarantee-box h2,
.final-cta-box h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-vsl__title {
  max-width: 28ch;
  margin-top: 1.5rem;
  font-size: var(--title-size);
}

.hero-vsl__title span {
  display: block;
  color: var(--accent);
}

.hero-vsl__subheadline {
  max-width: 50rem;
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: var(--muted);
}

.video-shell {
  width: 100%;
  max-width: 56rem;
  margin-top: 2.75rem;
  padding: 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 1.6rem;
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.video-shell__placeholder {
  display: flex;
  aspect-ratio: 16 / 9;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  border: 1px dashed rgba(37, 211, 102, 0.35);
  border-radius: 1.15rem;
  background:
    linear-gradient(135deg, rgba(37, 211, 102, 0.08), rgba(37, 211, 102, 0.02)),
    rgba(16, 16, 16, 0.96);
  text-align: center;
  color: var(--muted);
}

.video-shell__label {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--text);
}

.video-shell__placeholder p {
  max-width: 22rem;
  font-size: 0.98rem;
}

.video-instruction {
  max-width: 38rem;
  margin-top: 1rem;
  font-size: 0.97rem;
  color: var(--muted);
}

.section-intro,
.positioning-statement {
  max-width: 50rem;
}

.section-intro {
  margin: 0 auto 2.4rem;
  text-align: center;
}

.section-intro h2,
.transition-panel h2,
.guarantee-box h2,
.final-cta-box h2 {
  margin-top: 1rem;
  font-size: var(--title-size);
}

.transition-panel,
.guarantee-box,
.final-cta-box {
  border: 1px solid var(--line-strong);
  border-radius: 1.6rem;
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.pain-section,
.deliverables-section,
.guarantee-section {
  background: transparent;
}

.pain-section {
  padding-top: 2rem;
}

.pain-list,
.process-list,
.commitment-grid,
.deliverables-grid,
.differences-grid,
.outcome-list {
  display: grid;
  gap: 1.2rem;
}

.pain-list,
.deliverables-grid,
.differences-grid,
.outcome-list {
  list-style: none;
}

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

.pain-card,
.process-card,
.commitment-card,
.difference-card,
.deliverables-grid li,
.outcome-list li {
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: var(--bg-card);
  backdrop-filter: blur(8px);
}

.pain-card {
  position: relative;
  padding: 1.45rem;
  min-height: 11rem;
  color: var(--text);
  padding-left: 3.35rem;
  border-left: 4px solid var(--danger);
  text-align: left;
}

.pain-card::before {
  content: "\2715";
  position: absolute;
  top: 1.35rem;
  left: 1.2rem;
  color: var(--danger);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.pain-card p {
  font-size: 1rem;
}

.transition-panel {
  max-width: 56rem;
  margin: 0 auto;
  padding: 2.2rem;
  text-align: left;
}

.transition-panel p + p {
  margin-top: 1rem;
}

.transition-panel p:last-child,
.positioning-statement p,
.difference-card p,
.guarantee-box p,
.final-cta-box p {
  color: var(--muted);
}

.positioning-section {
  padding-top: 2rem;
}

.problem-close,
.tools-note,
.final-cta-subtitle {
  max-width: 44rem;
  margin: 1.5rem auto 0;
  text-align: center;
  color: var(--muted);
}

.position-quote {
  margin-top: 1.4rem;
  border-left: 4px solid var(--accent);
  background: rgba(37, 211, 102, 0.06);
  padding: 1.2rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.7;
  color: #ffffff;
}

.position-quote + p {
  margin-top: 1rem;
}

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

.profile-card {
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: var(--bg-card);
  padding: 1.55rem;
}

.profile-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  line-height: 1.3;
  color: #ffffff;
}

.profile-card__list {
  display: grid;
  gap: 0.8rem;
  list-style: none;
}

.profile-card__list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
}

.profile-card__list li::before {
  content: "\2022";
  position: absolute;
  top: 0.05rem;
  left: 0;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 800;
}

.positioning-statement {
  margin: 0 auto;
  text-align: center;
}

.positioning-statement blockquote {
  margin-top: 1.35rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--accent);
}

.positioning-statement p:last-child {
  max-width: 42rem;
  margin: 1rem auto 0;
}

.process-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.process-card {
  padding: 1.55rem;
}

.process-card__week {
  display: inline-flex;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(37, 211, 102, 0.26);
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.08);
  padding: 0.45rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #86efac;
}

.process-card h3,
.difference-card h3 {
  margin-bottom: 0.85rem;
  font-size: 1.15rem;
  line-height: 1.35;
}

.process-card h3 {
  color: #ffffff;
}

.process-card p {
  color: var(--muted);
}

.process-card__deliverable {
  margin-top: 0.95rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--line);
}

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

.commitment-card {
  padding: 1.8rem 1.4rem;
  text-align: center;
}

.commitment-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 400;
  line-height: 0.9;
  color: var(--accent);
}

.commitment-card span {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text);
}

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

.deliverables-grid li,
.outcome-list li {
  position: relative;
  padding: 1.1rem 1.25rem 1.1rem 3rem;
  font-weight: 600;
  color: var(--text);
}

.deliverables-grid li::before,
.outcome-list li::before {
  content: "\2713";
  position: absolute;
  top: 50%;
  left: 1.2rem;
  width: 1.15rem;
  height: 1.15rem;
  transform: translateY(-50%);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
}

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

.difference-card {
  position: relative;
  padding: 1.55rem;
}

.difference-card h3 {
  color: #ffffff;
}

.difference-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 0.95rem;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.1);
  color: var(--accent);
  font-size: 1rem;
  font-weight: 900;
}

.guarantee-box,
.final-cta-box {
  max-width: 56rem;
  margin: 0 auto;
  padding: 2.4rem;
  text-align: center;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.08);
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--accent);
}

.guarantee-box p:last-child,
.final-cta-box p:last-child {
  max-width: 42rem;
  margin: 1rem auto 0;
}

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

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

.outcome-list--cards li {
  padding: 1.25rem;
  min-height: 8.5rem;
}

.outcome-list--cards li::before {
  display: none;
}

.tools-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  list-style: none;
}

.tool-badge {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--bg-card);
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.ecosystem-flow {
  display: grid;
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto;
}

.ecosystem-card {
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: var(--bg-card);
  padding: 1.4rem;
  text-align: center;
}

.ecosystem-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.2rem;
  color: #ffffff;
}

.ecosystem-card p {
  color: var(--muted);
}

.ecosystem-card--active {
  border-color: var(--line-strong);
  background: rgba(37, 211, 102, 0.08);
}

.ecosystem-card__flag {
  display: inline-flex;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  background: var(--accent);
  padding: 0.4rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #04110a;
}

.ecosystem-arrow {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
}

.final-urgency-strip {
  max-width: 56rem;
  margin: 0 auto 1.1rem;
  border-left: 4px solid var(--danger);
  border-radius: 1rem;
  background: rgba(239, 68, 68, 0.08);
  padding: 1rem 1.1rem;
  text-align: left;
  color: #fca5a5;
}

.cta-button {
  display: inline-flex;
  position: relative;
  isolation: isolate;
  align-items: center;
  justify-content: center;
  min-height: 4rem;
  margin-top: 1.6rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #32d96f 0%, var(--accent-dark) 100%);
  overflow: hidden;
  padding: 0.95rem 2rem;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  color: #04110a;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.2);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -35%;
  width: 30%;
  height: 140%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 248, 220, 0.18) 35%,
    rgba(255, 248, 220, 0.5) 50%,
    rgba(255, 248, 220, 0.18) 65%,
    transparent 100%
  );
  transform: skewX(-24deg) translateX(-220%);
  animation: cta-sheen 4.8s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.cta-button span {
  position: relative;
  z-index: 1;
}

.cta-button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.28);
  opacity: 0.35;
  animation: cta-pulse 3.4s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(37, 211, 102, 0.28);
  filter: brightness(1.02);
}

.cta-safety-line {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--muted);
}

.page-footer {
  padding: 2rem 0 2.5rem;
  text-align: center;
}

.page-footer p {
  font-size: 0.85rem;
  color: var(--muted);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

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

@keyframes cta-pulse {
  0%,
  100% {
    opacity: 0.28;
    transform: scale(1);
  }
  50% {
    opacity: 0.58;
    transform: scale(1.02);
  }
}

@keyframes cta-sheen {
  0%,
  100% {
    transform: skewX(-24deg) translateX(-220%);
  }
  45% {
    transform: skewX(-24deg) translateX(-220%);
  }
  65% {
    transform: skewX(-24deg) translateX(420%);
  }
}

@media (max-width: 959px) {
  .pain-list,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 767px) {
  .page-shell::before {
    top: -30vw;
    left: -62vw;
    width: 150vw;
    height: 150vw;
    opacity: 0.09;
  }

  .page-shell::after {
    opacity: 0.05;
    background-size: 130px 130px, 180px 180px, 240px 240px;
  }

  section {
    padding: 4.2rem 0;
  }

  .hero-vsl {
    padding-top: 3.5rem;
    padding-bottom: 1.5rem;
  }

  .pain-section {
    padding-top: 1.25rem;
  }

  .hero-vsl__layout {
    padding-inline: 0.35rem;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .urgency-bar__text {
    font-size: 0.78rem;
  }

  .video-shell {
    margin-top: 2rem;
    padding: 0.8rem;
  }

  .pain-list,
  .process-list,
  .profiles-grid,
  .commitment-grid,
  .deliverables-grid,
  .differences-grid,
  .outcome-list,
  .outcome-list--cards {
    grid-template-columns: 1fr;
  }

  .pain-card {
    min-height: auto;
  }

  .transition-panel,
  .guarantee-box,
  .final-cta-box {
    padding: 1.5rem;
  }

  .deliverables-grid li,
  .outcome-list li {
    padding-right: 1rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
