:root {
  --bg: #090605;
  --surface: #18110f;
  --surface-2: #231916;
  --text: #f0e7de;
  --muted: #b8a79b;
  --cyan: #b0875d;
  --display-text: #f8efe8;
  --warm-accent: #8f6548;
  --green: #d2b48c;
  --purple: #6a4a3b;
  --hot: #c9855b;
  --border: rgba(214,188,164,0.15);
  --button-ink: #fbf3eb;
  --bg-glow-1: rgba(143,101,72,0.16);
  --bg-glow-2: rgba(72,46,33,0.18);
  --orb-1: rgba(143,101,72,0.25);
  --orb-2: rgba(210,180,140,0.16);
  --header-bg: rgba(12,8,7,0.82);
  --shadow: 0 16px 40px rgba(0,0,0,0.45);
  --scroll-progress: 0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Offset in-page anchor targets so the sticky header doesn't cover them */
#program,
#app-showcase,
#discord,
#faq,
#pricing { scroll-margin-top: 96px; }
#top { scroll-margin-top: 0; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(800px 380px at 10% -5%, var(--bg-glow-1), transparent 60%),
    radial-gradient(720px 360px at 92% 14%, var(--bg-glow-2), transparent 62%),
    var(--bg);
  line-height: 1.45;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: auto;
  border-radius: 999px;
  filter: blur(50px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.55;
}

body::before {
  width: 220px;
  height: 220px;
  right: 6%;
  top: 18%;
  background: var(--orb-1);
  animation: floatGlow 8s ease-in-out infinite;
  transform: translateY(calc(var(--scroll-progress) * -34px));
}

body::after {
  width: 180px;
  height: 180px;
  left: 8%;
  top: 58%;
  background: var(--orb-2);
  animation: floatGlow 10s ease-in-out infinite reverse;
  transform: translateY(calc(var(--scroll-progress) * 26px));
}

/* ── Partial section breaks (decorative dividers between sections) ── */
.section-break {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: min(760px, 82%);
  margin: 6px auto;
  padding: 26px 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.section-break.visible {
  opacity: 1;
  transform: translateY(0);
}

.edge-levelup-divider {
  width: min(560px, 72%);
  margin: 34px auto 0;
  padding-top: 24px;
  padding-bottom: 12px;
}

/* Style 1 — chevron: angled arrows pointing down the page */
.sb-chevron .sb-line {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(201, 133, 91, 0.55), transparent);
}
.sb-chevron .sb-chevs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 0 0 auto;
}
.sb-chevron .sb-chevs i {
  display: block;
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(201, 133, 91, 0.7);
  border-bottom: 2px solid rgba(201, 133, 91, 0.7);
  transform: rotate(45deg);
  animation: sbChev 2.2s ease-in-out infinite;
}
.sb-chevron .sb-chevs i:nth-child(2) { opacity: 0.6; animation-delay: 0.2s; }
.sb-chevron .sb-chevs i:nth-child(3) { opacity: 0.3; animation-delay: 0.4s; }

/* Style 2 — pulse: audio-style equalizer bars */
.sb-pulse .sb-line {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(210, 180, 140, 0.5), transparent);
}
.sb-pulse .sb-bars {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 26px;
  flex: 0 0 auto;
}
.sb-pulse .sb-bars i {
  display: block;
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(180deg, #f0d9b5, #a56a3d);
  box-shadow: 0 0 8px rgba(201, 133, 91, 0.4);
  animation: sbEq 1.4s ease-in-out infinite;
}
.sb-pulse .sb-bars i:nth-child(1) { animation-delay: 0s; }
.sb-pulse .sb-bars i:nth-child(2) { animation-delay: 0.18s; }
.sb-pulse .sb-bars i:nth-child(3) { animation-delay: 0.36s; }
.sb-pulse .sb-bars i:nth-child(4) { animation-delay: 0.24s; }
.sb-pulse .sb-bars i:nth-child(5) { animation-delay: 0.1s; }

/* Style 3 — dots: three beads between long rules */
.sb-dots .sb-rule {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(210, 180, 140, 0.4));
}
.sb-dots .sb-rule:last-child {
  background: linear-gradient(90deg, rgba(210, 180, 140, 0.4), transparent);
}
.sb-dots .sb-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #c9855b;
  box-shadow: 0 0 10px rgba(201, 133, 91, 0.5);
  animation: sbBlink 2.4s ease-in-out infinite;
}
.sb-dots .sb-dot:nth-child(3) { animation-delay: 0.3s; }
.sb-dots .sb-dot:nth-child(4) { animation-delay: 0.6s; }

/* Style 4 — slash: kinetic angled bars */
.sb-slash .sb-line {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(201, 133, 91, 0.5), transparent);
}
.sb-slash .sb-slashes {
  display: flex;
  gap: 7px;
  flex: 0 0 auto;
}
.sb-slash .sb-slashes i {
  display: block;
  width: 3px;
  height: 20px;
  border-radius: 2px;
  background: linear-gradient(180deg, #f0d9b5, #a56a3d);
  transform: skewX(-22deg);
  animation: sbSlide 2.8s ease-in-out infinite;
}
.sb-slash .sb-slashes i:nth-child(2) { animation-delay: 0.18s; opacity: 0.75; }
.sb-slash .sb-slashes i:nth-child(3) { animation-delay: 0.36s; opacity: 0.5; }

@keyframes sbChev {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: inherit; }
  50% { transform: rotate(45deg) translate(2px, 2px); }
}
@keyframes sbEq {
  0%, 100% { height: 8px; opacity: 0.6; }
  50% { height: 24px; opacity: 1; }
}
@keyframes sbBlink {
  0%, 100% { opacity: 0.4; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.15); }
}
@keyframes sbSlide {
  0%, 100% { transform: skewX(-22deg) translateX(0); }
  50% { transform: skewX(-22deg) translateX(4px); }
}

@media (prefers-reduced-motion: reduce) {
  .sb-chevron .sb-chevs i,
  .sb-pulse .sb-bars i,
  .sb-dots .sb-dot,
  .sb-slash .sb-slashes i {
    animation: none;
  }
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.17;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-position: 0 calc(var(--scroll-progress) * 30px);
  z-index: -1;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.08);
  z-index: 90;
}

.scroll-progress span {
  display: block;
  width: calc(var(--scroll-progress) * 100%);
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--green), var(--hot));
  box-shadow: 0 0 16px rgba(66,217,255,0.5);
  transition: width .12s linear;
}

main section {
  position: relative;
  isolation: isolate;
  transition: transform .35s ease;
}

main section.in-view {
  filter: none;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.3);
}

.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: center; gap: 16px; }

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  letter-spacing: 0.08em;
  font-size: 1.8rem;
  margin: 0 auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  display: inline-block;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.site-nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.site-nav a.active {
  color: var(--text);
  background: rgba(99,255,176,0.09);
}

.nav-cta {
  text-decoration: none;
  color: var(--button-ink);
  background: linear-gradient(90deg, var(--cyan), var(--green));
  font-size: 0.85rem;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 8px 26px rgba(66,217,255,0.32);
  transition: transform .2s ease, box-shadow .2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(66,217,255,0.46), 0 0 0 1px rgba(255,255,255,0.24) inset;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  padding: 8px 12px;
}

.edge-mode-switch {
  padding: 24px 0 14px;
}

.edge-mode-switch .container {
  display: flex;
  justify-content: center;
}

.edge-mode-toggle {
  display: inline-flex;
  gap: 12px;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}

.edge-mode-btn {
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  padding: 14px clamp(18px, 3vw, 30px);
  border-radius: 12px;
  cursor: pointer;
}

.edge-mode-btn.is-active {
  color: var(--text);
  border-color: rgba(99,255,176,0.5);
  background: rgba(99,255,176,0.09);
}

.edge-mode-panel[hidden] {
  display: none !important;
}

.edge-fitness-hero {
  position: relative;
  isolation: isolate;
  padding: 76px 0 34px;
}

.edge-fitness-hero::before {
  content: none;
}

.edge-fitness-hero .hero-grid {
  display: block;
}

.edge-fitness-flow {
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.edge-fitness-headline {
  text-align: center;
  max-width: 1320px;
  margin: 0 auto;
}

.edge-fitness-headline .hero-pretitle {
  width: auto;
  margin: 0 auto 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #d8bc97;
  font-size: clamp(0.95rem, 1.2vw, 1.28rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.edge-fitness-headline .hero-sub {
  display: none;
}

.edge-fitness-hero .edge-fitness-headline h1 {
  margin: 0;
  font-size: clamp(3.43rem, 6.53vw, 5.46rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
  color: #f5f4f1;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: currentColor;
  text-shadow: none;
}

.edge-fitness-headline .hero-line {
  display: block;
  white-space: nowrap;
  color: #f5f4f1;
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: none !important;
}

.edge-fitness-headline .hero-word-accent {
  color: #f5f4f1;
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: none !important;
}

.edge-fitness-headline .hero-line.is-accent {
  color: #d8bc97;
}

.edge-fitness-headline .hero-pretitle,
.edge-fitness-support .hero-sub,
.edge-fitness-hero .hero-media .media-placeholder span {
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: none !important;
}

.edge-fitness-headline h1::after {
  display: none;
}

.edge-page .hero-copy h1::after {
  display: none;
}

.edge-fitness-hero .hero-media {
  max-width: 1120px;
  margin: 8px auto 0;
}

.edge-fitness-hero .hero-media .media-placeholder {
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.edge-fitness-hero .hero-media .media-placeholder span {
  color: rgba(216, 188, 151, 0.5);
  font-size: 1.85rem;
  letter-spacing: 0.12em;
}

.edge-fitness-hero .hero-media .media-placeholder::after {
  display: none;
}

.hero-banner-video {
  padding: 48px 0 22px;
}

.hero-banner-video .container {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
}

.logo-marquee-shell {
  position: relative;
  overflow: hidden;
  padding: 7px 0 9px;
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(216,188,151,0.34);
  border-bottom: 1px solid rgba(216,188,151,0.34);
  box-shadow: 0 0 0 1px rgba(216,188,151,0.08) inset, 0 0 16px rgba(216,188,151,0.06);
}

.logo-marquee-shell::before,
.logo-marquee-shell::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(10vw, 112px);
  pointer-events: none;
  z-index: 2;
}

.logo-marquee-shell::before {
  left: 0;
  background: linear-gradient(90deg, rgba(7,11,17,0.96), rgba(7,11,17,0));
}

.logo-marquee-shell::after {
  right: 0;
  background: linear-gradient(270deg, rgba(7,11,17,0.96), rgba(7,11,17,0));
}

.logo-marquee {
  overflow: hidden;
}

.logo-marquee-track {
  display: flex;
  width: max-content;
  animation: logoMarquee 30s linear infinite;
  will-change: transform;
}

.logo-marquee-list {
  display: flex;
  align-items: center;
  gap: clamp(6px, 0.8vw, 12px);
  width: max-content;
  list-style: none;
  padding: 0;
  margin: 0;
}

.logo-marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: auto;
  min-height: 54px;
  padding: 7px 2px;
}

.logo-mark {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 38px;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.logo-mark-business-insider,
.logo-mark-chicago-tribune {
  width: 150px;
}

.logo-mark-los-angeles-times {
  width: 188px;
}

.logo-mark-muscle-fitness {
  width: 122px;
  max-height: 42px;
}

.logo-mark-cbs,
.logo-mark-nbc {
  width: 88px;
}

.logo-mark-oxygen {
  width: 97px;
}

.logo-mark-abc {
  width: 132px;
  max-height: 57px;
}

.logo-marquee-item-heart-radio {
  margin-left: 0;
  margin-right: 0;
}

.logo-mark-heart-radio {
  width: 156px;
  max-height: 56px;
}

.logo-mark-livestrong {
  width: 312px;
  max-height: 60px;
}

.logo-marquee-item-livestrong {
  margin-right: 22px;
}

.logo-marquee-item-los-angeles-times {
  margin-left: 14px;
  margin-right: 14px;
}

.logo-marquee-item-muscle-fitness {
  margin-left: 22px;
}

.logo-marquee-item-business-insider {
  margin-right: 22px;
}

.logo-marquee-item-cbs {
  margin-left: 14px;
  margin-right: 14px;
}

.logo-marquee-item-chicago-tribune {
  margin-left: 22px;
}

.logo-marquee:hover .logo-marquee-track {
  animation-play-state: paused;
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333333%);
  }
}

.edge-fitness-support {
  text-align: center;
  max-width: 1180px;
  margin: 0 auto 10px;
}

.edge-fitness-support .hero-sub {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.5;
  color: #bdb1a4;
}

.edge-fitness-support .hero-actions,
.edge-fitness-support .hero-badges {
  justify-content: center;
}

.edge-fitness-support .hero-actions {
  margin-top: 30px;
}

.edge-hero-metrics .metric {
  background: rgba(8, 14, 24, 0.6);
  border-color: rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
}

.hero { padding: 86px 0 44px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 26px; align-items: center; }
.hub-hero .container {
  display: grid;
  gap: 26px;
}

.hub-hero-head {
  text-align: center;
  max-width: 940px;
  margin: 0 auto;
}

.hub-hero-head .hero-sub {
  margin-left: auto;
  margin-right: auto;
}

.hub-hero-head .hero-actions {
  justify-content: center;
}

.hub-command-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hub-command-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
}

.hub-label {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .66rem;
  font-weight: 700;
}

.hub-command-card h3 {
  margin-top: 8px;
  font-size: 1.06rem;
}

.hub-command-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: .9rem;
}

.hub-paths {
  padding: 8px 0 48px;
}

.hub-paths h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: .95;
}
.eyebrow {
  color: var(--cyan);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  margin-bottom: 12px;
}

.hero-copy h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.35rem, 3.5vw, 2.9rem);
  line-height: 0.95;
  letter-spacing: 0.015em;
  white-space: nowrap;
  background: linear-gradient(90deg, #ffffff 0%, #caf8ff 30%, #b9e9ff 60%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 26px rgba(66,217,255,0.16);
  position: relative;
}

.edge-trading-hero {
  padding-top: 72px;
}

.edge-trading-copy {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.edge-trading-copy h1 {
  white-space: normal;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: .94;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}

.edge-trading-copy .hero-sub,
.edge-trading-copy .hero-actions,
.edge-trading-copy .hero-badges {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.edge-trading-fit {
  margin-top: 24px;
}

.edge-trading-fit .single-line-item {
  white-space: nowrap;
}

.hero-copy h1::after {
  content: '';
  display: block;
  width: 150px;
  height: 4px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--green), var(--hot));
  box-shadow: 0 0 18px rgba(66,217,255,0.45);
}

.hero-sub {
  margin-top: 16px;
  color: #d5e1f2;
  max-width: 60ch;
}

.hero-actions { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  text-decoration: none;
  font-weight: 700;
  border-radius: 12px;
  padding: 13px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn-primary {
  color: #071417;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  box-shadow: 0 10px 24px rgba(66,217,255,0.35);
}
.btn-ghost {
  color: var(--text);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary:hover {
  box-shadow: 0 14px 30px rgba(99,255,176,0.35), 0 0 0 1px rgba(255,255,255,0.3) inset;
}

.btn-ghost:hover {
  border-color: rgba(66,217,255,0.55);
  box-shadow: 0 10px 24px rgba(66,217,255,0.15);
}

.hero-badges { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.hero-badges span {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  padding: 7px 10px;
  color: #c4d4ec;
  font-size: 0.76rem;
}

.hero-media .media-placeholder {
  min-height: 360px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background:
    linear-gradient(145deg, rgba(66,217,255,0.14), rgba(154,107,255,0.1)),
    linear-gradient(180deg, var(--surface), var(--surface-2));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.hero-media .media-placeholder::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(66,217,255,.6), rgba(154,107,255,.35), rgba(99,255,176,.55));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.hero-media span {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #c0d0ea;
}

.metrics { padding: 10px 0 46px; }
.metrics-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; }
.metric {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  text-align: center;
  padding: 16px 10px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.metric:hover {
  transform: translateY(-3px);
  border-color: rgba(66,217,255,0.55);
  box-shadow: 0 18px 36px rgba(0,0,0,0.4), 0 0 28px rgba(66,217,255,0.16);
}
.metric-icon {
  width: fit-content;
  height: fit-content;
  margin: 0 auto 8px;
  display: grid;
  place-items: center;
}

.metric-icon svg {
  width: 24px;
  height: 24px;
  color: #d8f5ff;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(66,217,255,0.35));
}

.metric .value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  line-height: .9;
}
.metric .label {
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-top: 6px;
}

.about,
.founders,
.program,
.testimonials,
.discord-zone,
.pricing,
.faq,
.final-cta { padding: 72px 0; }

.results-proof + .how-it-works {
  padding-top: 96px;
}

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 22px; }
.split h2,
.program h2,
.testimonials h2,
.pricing h2,
.faq h2,
.final-cta h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: .95;
}
.split p { color: #d1deef; margin-top: 12px; }

.about {
  padding: 72px 0 28px;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(0,230,118,0.02), transparent);
}

.program {
  padding: 20px 0 36px;
}

.about .eyebrow {
  color: #d4b896;
  font-size: clamp(1.1rem, 1.55vw, 1.45rem);
  letter-spacing: 0.09em;
  margin-bottom: 18px;
}

.about .container {
  max-width: 1240px;
}

.about .section-label {
  color: #00e883;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.about h2 {
  margin-top: 0;
  margin-bottom: 26px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7.6vw, 6.4rem);
  line-height: 0.92;
  color: #f7f6f2;
}

.about .identity-shift-line {
  color: #d4b896;
}

.about .accent {
  color: #00e883;
}

.about .identity-text {
  max-width: 1220px;
  margin: 0 auto 28px;
  color: #d9dde5;
  font-size: clamp(0.96rem, 1.35vw, 1.22rem);
  line-height: 1.42;
}

.about .identity-text-emphasis {
  color: #ffffff;
  font-weight: 600;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.pillar {
  border: 1px solid rgba(216,188,151,0.34);
  border-radius: 16px;
  padding: 20px 20px 26px;
  background: rgba(255,255,255,.03);
  box-shadow: 0 0 0 1px rgba(216,188,151,0.08) inset, 0 0 16px rgba(216,188,151,0.06);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(240,209,154,0.68);
  box-shadow: 0 0 0 1px rgba(240,209,154,0.24) inset, 0 0 24px rgba(240,209,154,0.12);
}

.mission-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.mission-icon svg {
  width: 56px;
  height: 56px;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.mission-icon.body { color: #ff3939; }
.mission-icon.mind { color: #ffd000; }
.mission-icon.spirit { color: #ff7a00; }
.mission-icon.execution { color: #00e883; }

.pillar h3 {
  font-size: 2rem;
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1;
}

.pillar p {
  margin-top: 8px;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.65;
}

.identity-quote-block {
  margin: 34px auto 0;
  max-width: 980px;
  padding: 0;
  border: 0;
  background: transparent;
}

.identity-quote {
  max-width: 780px;
  margin: 0 auto;
  font-size: clamp(1.05rem, 2.2vw, 1.34rem);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: .01em;
}

.identity-feature-image {
  display: block;
  width: min(100%, 820px);
  margin: 52px auto 0;
  height: auto;
}

.identity-benefits-heading {
  margin: 42px auto 0;
  text-align: center;
}

.identity-benefits-kicker {
  color: #d4b896;
  font-size: clamp(0.95rem, 1.4vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.identity-benefits-heading h2 {
  margin-top: 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.7rem, 6.8vw, 6rem);
  line-height: 0.92;
  color: #f7f6f2;
  white-space: nowrap;
}

.identity-benefits-heading h2 span {
  color: #d4b896;
}

.identity-outcomes-block {
  display: none;
}

.identity-outcomes-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.identity-outcomes-mobile {
  display: none;
}

.identity-outcomes-block h3 {
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1;
  white-space: nowrap;
  color: #f7f6f2;
}

.identity-outcomes-block h3 span {
  color: #c6a037;
}

.identity-outcomes-list {
  list-style: none;
  margin: 34px auto 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.identity-outcomes-list li {
  position: relative;
  padding-left: 36px;
  color: #f0f2f5;
  font-size: clamp(1rem, 1.5vw, 1.34rem);
  line-height: 1.35;
}

.identity-outcomes-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.08em;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #f3d067, #bc8f19);
  color: #fff8e2;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(198,160,55,0.22);
}

.identity-outcomes-list li.is-highlighted {
  color: #c6a037;
}

.identity-timeline-statements {
  margin-top: 36px;
  display: grid;
  gap: 8px;
  text-align: center;
}

.identity-timeline-statements p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  line-height: 1;
  color: #f7f6f2;
}

.identity-timeline-statements p span {
  color: #c6a037;
}

.founders-intro {
  margin-top: 12px;
  color: #d1deef;
  max-width: 70ch;
}

.founders-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.founder-card {
  display: grid;
  grid-template-columns: 1.15fr minmax(240px, 0.85fr);
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  box-shadow: var(--shadow);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.founder-card:hover {
  transform: translateY(-4px);
  border-color: rgba(66,217,255,0.45);
  box-shadow: 0 22px 44px rgba(0,0,0,0.42), 0 0 0 1px rgba(66,217,255,0.22) inset;
}

.founder-photo {
  order: 2;
  min-height: 320px;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 14px;
  color: #c8d9f0;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  background:
    radial-gradient(240px 130px at 18% 16%, rgba(66,217,255,.18), transparent 72%),
    radial-gradient(220px 120px at 84% 82%, rgba(255,107,214,.12), transparent 75%),
    linear-gradient(180deg, #152033, #121727);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  border-left: 1px solid rgba(255,255,255,0.12);
}

.founder-content {
  order: 1;
  padding: 18px;
}

.founders-grid .founder-card:nth-child(even) .founder-photo {
  order: 1;
  border-left: 0;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.founders-grid .founder-card:nth-child(even) {
  grid-template-columns: minmax(240px, 0.85fr) 1.15fr;
}

.founders-grid .founder-card:nth-child(even) .founder-content {
  order: 2;
}

.founder-role {
  display: inline-block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--cyan);
  border: 1px solid rgba(66,217,255,0.4);
  border-radius: 999px;
  padding: 5px 9px;
}

.founder-content h3 {
  margin-top: 10px;
  font-size: 1.4rem;
}

.founder-content p {
  margin-top: 8px;
  color: var(--muted);
}

.founder-points {
  margin-top: 12px;
  list-style: none;
  display: grid;
  gap: 7px;
}

.founder-points li {
  color: #dbe6f9;
  font-size: .9rem;
}

.founder-points li::before {
  content: '✦ ';
  color: var(--green);
}

.program-grid { margin-top: 0; display: grid; gap: 12px; grid-template-columns: repeat(3,minmax(0,1fr)); }

.program-intro {
  max-width: 74ch;
  margin-top: 12px;
  color: #d1deef;
}

.program-group-label {
  margin-top: 26px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.program-group-label.trading {
  color: var(--cyan);
}

.program-group-label.fitness {
  color: var(--green);
}

.program-group-divider {
  margin-top: 22px;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, rgba(66,217,255,0.18), rgba(255,255,255,0.08), rgba(99,255,176,0.18));
}

.card {
  border: 1px solid rgba(216,188,151,0.38);
  border-radius: 14px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  box-shadow: var(--shadow), 0 0 0 1px rgba(216,188,151,0.08) inset, 0 0 18px rgba(216,188,151,0.08);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(240,209,154,0.72);
  box-shadow: 0 20px 42px rgba(0,0,0,0.42), 0 0 0 1px rgba(240,209,154,0.28) inset, 0 0 24px rgba(240,209,154,0.18), 0 0 40px rgba(240,209,154,0.08);
}
.card-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-icon {
  width: fit-content;
  height: fit-content;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}

.card-icon svg {
  width: 20px;
  height: 20px;
  color: #dcfff0;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(99,255,176,0.32));
}

.card h3 { font-size: 1.02rem; }
.card p { color: var(--muted); margin-top: 8px; font-size: .92rem; }

.app-showcase {
  padding: 42px 0 84px;
  position: relative;
  z-index: 0;
  overflow-x: clip;
  overflow-y: visible;
  background-image:
    linear-gradient(180deg, rgba(8, 8, 10, 0.66) 0%, rgba(8, 8, 10, 0.84) 45%, rgba(8, 8, 10, 0.95) 100%),
    url("newbg123.webp");
  background-size: cover, cover;
  background-position: center, center 90px;
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed, fixed;
}

/* Keep the fixed background working: a transform (from .reveal) would break
   background-attachment: fixed, so this section must never carry a transform. */
.app-showcase.reveal,
.app-showcase.reveal.visible {
  transform: none;
}

/* Subtle diagonal texture across the whole showcase section */
.app-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.018) 0px,
    rgba(255, 255, 255, 0.018) 1px,
    transparent 1px,
    transparent 11px
  );
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.edge-feature-photo {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
  pointer-events: none;
}

.edge-feature-photo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  object-position: center center;
  opacity: 0.95;
  -webkit-mask-image: radial-gradient(70% 74% at 50% 44%, #000 0%, rgba(0, 0, 0, 0.35) 30%, transparent 56%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: radial-gradient(70% 74% at 50% 44%, #000 0%, rgba(0, 0, 0, 0.35) 30%, transparent 56%);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
}

.app-showcase.is-overlap {
  position: relative;
  z-index: 1;
  margin-top: -110px;
  padding-top: 0;
}

/* Establish a BFC so the header's negative margin repositions the header
   itself instead of collapsing into the section and moving the whole block. */
.app-showcase.is-overlap > .container {
  display: flow-root;
}

.app-showcase.is-overlap .app-showcase-header {
  position: relative;
  z-index: 2;
  padding-top: 0;
  margin-top: -25px;
  margin-bottom: 120px;
}

.app-showcase-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.app-showcase-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: 0.01em;
}

.app-showcase-grid {
  display: grid;
  gap: 120px;
}

.showcase-row {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  align-items: center;
  gap: 60px;
  position: relative;
}

/* Thin vertical gold accent bar on the phone side, alternating with row direction */
.showcase-phone {
  position: relative;
}

.showcase-phone::before {
  content: "";
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: -22px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, transparent 0%, rgba(216, 188, 151, 0.75) 20%, rgba(216, 188, 151, 0.75) 80%, transparent 100%);
  pointer-events: none;
}

.showcase-row.is-reverse .showcase-phone::before {
  left: auto;
  right: -22px;
}

/* Swoop-in: phone and copy slide in from opposite sides on scroll */
.showcase-row .showcase-phone,
.showcase-row .showcase-copy {
  opacity: 0;
  transition: opacity 1.1s ease, transform 1.7s cubic-bezier(0.16, 0.84, 0.24, 1);
  will-change: opacity, transform;
}

.showcase-row .showcase-phone {
  transform: translate(-420px, 90px) rotate(-10deg);
}

.showcase-row .showcase-copy {
  transform: translate(420px, 90px) rotate(6deg);
  transition-delay: 0.1s;
}

.showcase-row.is-reverse .showcase-phone {
  transform: translate(420px, 90px) rotate(10deg);
}

.showcase-row.is-reverse .showcase-copy {
  transform: translate(-420px, 90px) rotate(-6deg);
}

.showcase-row.is-swooped .showcase-phone,
.showcase-row.is-swooped .showcase-copy {
  opacity: 1;
  transform: translate(0, 0) rotate(0deg);
}

@media (prefers-reduced-motion: reduce) {
  .showcase-row .showcase-phone,
  .showcase-row .showcase-copy {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.showcase-row + .showcase-row {
  margin-top: 0;
}

.showcase-row:nth-child(2) {
  margin-top: 0;
  z-index: 2;
}

.showcase-row:nth-child(3) {
  margin-top: 0;
  z-index: 3;
}

.showcase-row.is-reverse .showcase-phone {
  order: 2;
}

.showcase-row.is-reverse .showcase-copy {
  order: 1;
}

.showcase-phone {
  display: flex;
  justify-content: center;
}

.phone-shot {
  width: min(100%, 330px);
  height: auto;
  display: block;
  cursor: zoom-in;
  transition: transform 0.25s ease;
}

.phone-shot:hover {
  transform: scale(1.03);
}

.phone-shot-cropped {
  width: min(96%, 318px);
}

.phone-frame {
  width: min(100%, 330px);
  padding: 10px;
  border-radius: 34px;
  background: linear-gradient(155deg, #2a2a2a 0%, #131313 46%, #1f1f1f 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  position: relative;
  overflow: hidden;
}

.showcase-row:nth-child(2) .phone-frame {
  animation-delay: 0.45s;
}

.showcase-row:nth-child(3) .phone-frame {
  animation-delay: 0.9s;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: -45%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  pointer-events: none;
  transform: skewX(-18deg);
}

.live-streams h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: .95;
}

.stream-carousel {
  margin-top: 20px;
}

.stream-viewport {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(220px 120px at 16% 14%, rgba(66,217,255,.16), transparent 70%),
    radial-gradient(220px 120px at 84% 84%, rgba(154,107,255,.14), transparent 74%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  box-shadow: var(--shadow);
}

.stream-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  transition: transform .35s ease;
}

.stream-slide {
  aspect-ratio: 16 / 9;
}

.stream-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #02040a;
}

.stream-audio-toggle {
  position: absolute;
  right: 14px;
  bottom: 64px;
  min-width: 118px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.24);
  background:
    linear-gradient(180deg, rgba(8,14,26,0.78), rgba(4,9,18,0.86));
  color: #eef8ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.16),
    0 8px 18px rgba(0,0,0,0.42);
}

.stream-audio-toggle__icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: rgba(238,248,255,0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.stream-audio-toggle__label {
  pointer-events: none;
}

.stream-audio-icon {
  width: 16px;
  height: 16px;
  display: block;
}

.stream-audio-icon--mute {
  display: none;
}

.stream-audio-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(66,217,255,0.5);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    0 10px 20px rgba(5,18,36,0.52),
    0 0 0 1px rgba(66,217,255,0.16);
}

.stream-audio-toggle:focus-visible {
  outline: none;
  border-color: rgba(66,217,255,0.62);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    0 0 0 3px rgba(66,217,255,0.24),
    0 10px 20px rgba(5,18,36,0.52);
}

.stream-audio-toggle.is-on {
  border-color: rgba(109,241,210,0.7);
  background:
    linear-gradient(180deg, rgba(14,49,59,0.78), rgba(8,24,32,0.9));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 0 0 1px rgba(109,241,210,0.28),
    0 10px 22px rgba(2,28,32,0.52);
}

.stream-audio-toggle:not(.is-on) .stream-audio-toggle__icon {
  filter: saturate(.75);
}

.stream-audio-toggle:not(.is-on) .stream-audio-icon--unmute {
  display: none;
}

.stream-audio-toggle:not(.is-on) .stream-audio-icon--mute {
  display: block;
}

.stream-audio-toggle:not(.is-on) {
  border-color: rgba(255, 103, 120, 0.52);
  background:
    linear-gradient(180deg, rgba(58, 16, 24, 0.84), rgba(36, 10, 16, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 185, 194, 0.15),
    0 8px 18px rgba(24, 6, 10, 0.5),
    0 0 0 1px rgba(255, 103, 120, 0.16);
}

.stream-audio-toggle:not(.is-on):hover {
  border-color: rgba(255, 123, 138, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 205, 212, 0.2),
    0 10px 20px rgba(28, 7, 12, 0.56),
    0 0 0 1px rgba(255, 123, 138, 0.2);
}

.stream-audio-toggle:not(.is-on):focus-visible {
  border-color: rgba(255, 132, 146, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 205, 212, 0.2),
    0 0 0 3px rgba(255, 103, 120, 0.25),
    0 10px 20px rgba(28, 7, 12, 0.56);
}

.stream-controls {
  margin-top: 14px;
  display: grid;
  grid-template-columns: auto minmax(160px, 1fr) auto;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 360px;
  margin-inline: auto;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 10px 24px rgba(2,8,20,0.35);
}

.stream-arrow {
  width: 40px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  position: relative;
  transition:
    transform .18s ease,
    border-color .18s ease,
    background .18s ease,
    box-shadow .18s ease;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 4px 12px rgba(0,0,0,0.3);
}

.stream-arrow[data-stream-prev]::before {
  content: '';
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(230,245,255,0.95);
  border-bottom: 2px solid rgba(230,245,255,0.95);
  transform: rotate(135deg);
  margin-left: 2px;
}

.stream-arrow[data-stream-next]::before {
  content: '';
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(230,245,255,0.95);
  border-bottom: 2px solid rgba(230,245,255,0.95);
  transform: rotate(-45deg);
  margin-right: 2px;
}

.stream-arrow:hover {
  transform: translateY(-1px);
  border-color: rgba(66,217,255,0.5);
  background:
    linear-gradient(180deg, rgba(66,217,255,0.2), rgba(255,255,255,0.05));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 8px 18px rgba(4,17,34,0.45),
    0 0 0 1px rgba(66,217,255,0.18);
}

.stream-arrow:active {
  transform: translateY(0);
}

.stream-arrow:focus-visible {
  outline: none;
  border-color: rgba(66,217,255,0.62);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.16),
    0 0 0 3px rgba(66,217,255,0.24),
    0 8px 18px rgba(4,17,34,0.45);
}

.stream-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 34px;
}

.stream-dot {
  width: 18px;
  height: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: linear-gradient(180deg, rgba(255,255,255,0.26), rgba(255,255,255,0.12));
  cursor: pointer;
  appearance: none;
  padding: 0;
  transition: width .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.stream-dot:hover {
  border-color: rgba(66,217,255,0.45);
  transform: translateY(-1px);
}

.stream-dot:focus-visible {
  outline: none;
  border-color: rgba(66,217,255,0.62);
  box-shadow: 0 0 0 3px rgba(66,217,255,0.22);
}

.stream-dot.is-active {
  width: 34px;
  background: linear-gradient(90deg, rgba(66,217,255,0.92), rgba(109,241,210,0.92));
  border-color: rgba(109,241,210,0.95);
  box-shadow:
    0 0 0 1px rgba(66,217,255,0.28),
    0 6px 14px rgba(16,108,120,0.32);
}

@media (max-width: 560px) {
  .stream-audio-toggle {
    right: 10px;
    bottom: 56px;
    min-width: 104px;
    height: 33px;
    font-size: .72rem;
    padding: 0 12px;
    letter-spacing: .07em;
  }

  .stream-controls {
    max-width: 300px;
    gap: 10px;
    padding: 6px 8px;
  }

  .stream-arrow {
    width: 36px;
    height: 32px;
  }

  .stream-dot {
    width: 15px;
  }

  .stream-dot.is-active {
    width: 28px;
  }
}

.phone-screen {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  border-radius: 26px;
  background: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
}

.phone-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(0, 230, 118, 0.09), rgba(0, 0, 0, 0.25)),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.05) 9px, rgba(255,255,255,0.02) 9px, rgba(255,255,255,0.02) 18px);
  color: rgba(234, 234, 234, 0.9);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.showcase-copy h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.04;
  margin-bottom: 14px;
}

.discord-community-copy h3 {
  color: #f5f4f1;
}

.discord-community-copy h3 span {
  color: #d8bc97;
}

.program-details-copy h3 span {
  color: #d8bc97;
}

.life-library-copy h3 {
  color: #f5f4f1;
}

.life-library-copy h3 span {
  color: #d8bc97;
}

.life-library-copy .showcase-list {
  font-size: 0.88rem;
}

.life-library-copy .showcase-list li {
  white-space: nowrap;
}

.showcase-copy .showcase-list {
  margin: 18px 0 0 18px;
  color: var(--display-text);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.55;
}

.showcase-copy .showcase-list li::marker {
  color: #d8bc97;
}

.discord-community-copy .showcase-list {
  color: #f5f4f1;
  font-size: 0.88rem;
}

.discord-community-copy .showcase-list li::marker {
  color: #d8bc97;
}

.discord-community-copy .showcase-list li {
  white-space: nowrap;
}

.showcase-copy .showcase-list li + li {
  margin-top: 2px;
}

.showcase-copy p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.98rem;
  max-width: 58ch;
}

.showcase-copy .showcase-callout {
  margin-top: 18px;
  margin-bottom: 26px;
  color: #f4efe8;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}

.discord-community-copy p {
  color: var(--muted);
}

.discord-community-copy .showcase-inline-emphasis {
  color: #d8bc97;
  font-weight: 800;
}

.showcase-bullets {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--text);
  display: grid;
  gap: 8px;
}

.showcase-bullets li {
  line-height: 1.58;
  font-size: 0.92rem;
}

.showcase-copy .btn {
  margin-top: 24px;
}

.testimonial-carousel {
  margin-top: 20px;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 12px;
  transition: transform .5s ease;
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 calc((100% - 24px) / 3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  background: rgba(255,255,255,.03);
  color: #dce8fa;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.testimonial-slide:hover {
  transform: translateY(-3px);
  border-color: rgba(255,107,214,0.38);
  background: rgba(255,255,255,.045);
}

.testimonial-slide cite {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-style: normal;
  font-size: .82rem;
}

.testimonial-controls {
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: 40px auto 40px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: max-content;
}

.testimonial-arrow {
  border: 0;
  background: transparent;
  width: 40px;
  height: 40px;
  position: relative;
  color: transparent;
  padding: 0;
  cursor: pointer;
  opacity: .82;
  transition: opacity .18s ease, transform .18s ease, filter .18s ease;
}

.testimonial-arrow::before,
.testimonial-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(236,245,255,.95);
  border-right: 2px solid rgba(236,245,255,.95);
  transform-origin: center;
}

.testimonial-arrow::after {
  display: none;
}

.testimonial-arrow[data-testimonial-prev]::before {
  transform: translate(-40%, -50%) rotate(-135deg);
}

.testimonial-arrow[data-testimonial-next]::before {
  transform: translate(-60%, -50%) rotate(45deg);
}

.testimonial-arrow:hover {
  opacity: 1;
  transform: translateY(-1px) scale(1.04);
  filter: drop-shadow(0 0 6px rgba(236,245,255,.16));
}

.testimonial-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 10px;
}

.testimonial-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 0;
  background: rgba(236,245,255,.48);
  padding: 0;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}

.testimonial-dot:hover {
  transform: scale(1.1);
}

.testimonial-dot.is-active {
  background: #ffffff;
  transform: scale(1.15);
}

.results-proof .proof-grid {
  margin-top: 20px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3,minmax(0,1fr));
}

.proof-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}

.proof-media {
  min-height: 180px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(180px 90px at 18% 15%, rgba(66,217,255,.16), transparent 72%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}

.proof-media span {
  color: #c7d7ee;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .67rem;
}

.proof-metric {
  margin-top: 12px;
  font-weight: 700;
  color: #eaf4ff;
}

.proof-note {
  margin-top: 6px;
  color: var(--muted);
  font-size: .9rem;
}

.results-proof .outcome-track {
  display: flex;
  gap: 12px;
  transition: transform .5s ease;
  will-change: transform;
}

.results-proof .outcome-track .proof-card {
  flex: 0 0 calc((100% - 24px) / 3);
}

.how-it-works .steps-grid {
  margin-top: 20px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3,minmax(0,1fr));
}

.how-it-works h2 {
  text-align: center;
}

.free-value .steps-grid {
  gap: 14px;
}

.free-value-card {
  position: relative;
  border-color: rgba(66,217,255,0.2);
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  box-shadow: 0 16px 34px rgba(0,0,0,0.34);
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.free-value-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cyan), var(--green));
  opacity: .9;
}

.free-value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(66,217,255,0.45);
  box-shadow: 0 22px 42px rgba(0,0,0,0.42), 0 0 0 1px rgba(66,217,255,0.16) inset;
}

.free-value-card .step-num {
  color: #9ad9ff;
}

.free-value-card h3 {
  font-size: 1.28rem;
}

.free-value-card p {
  font-size: 1rem;
  line-height: 1.62;
}

.step-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255,255,255,.03);
}

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--cyan);
  letter-spacing: .04em;
}

.step-card h3 {
  margin-top: 8px;
  font-size: 1.05rem;
}

.step-card p {
  margin-top: 7px;
  color: var(--muted);
  font-size: .92rem;
}

.discord-zone {
  padding: 24px 0 36px;
}

.discord-shell {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 20px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  background:
    radial-gradient(400px 180px at 80% 12%, rgba(88,101,242,0.25), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  box-shadow: var(--shadow);
}

.discord-copy h2 {
  margin-top: 4px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: .95;
}

.discord-copy p {
  color: #d3def0;
  margin-top: 10px;
}

.discord-points {
  list-style: none;
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.discord-points li {
  color: #dbe6f9;
  display: flex;
  align-items: center;
  gap: 10px;
}

.discord-points .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  box-shadow: 0 0 12px rgba(66,217,255,0.55);
  flex-shrink: 0;
}

.discord-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-weight: 700;
  color: #c3e8ff;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #63ffb0;
  box-shadow: 0 0 0 0 rgba(99,255,176,0.6);
  animation: livePulse 1.8s ease infinite;
}

.discord-cta-wrap {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.discord-card {
  display: block;
  width: 100%;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 40px rgba(0,0,0,0.42);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.discord-card img {
  display: block;
  width: 100%;
  height: auto;
}

.discord-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(88,101,242,0.65);
  box-shadow: 0 24px 44px rgba(0,0,0,0.48), 0 0 30px rgba(88,101,242,0.25);
}

.discord-cta-hint {
  margin: 0;
  text-align: center;
  font-weight: 700;
  color: #cfe5ff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.discord-cta-hint .arrow {
  color: #63ffb0;
  font-size: 1.06rem;
  line-height: 1;
}

.pricing-hero {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 34px;
}

.pricing-center-axis {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 0 24px;
}

.pricing-hero-kicker {
  margin: 0;
  color: #00e78d;
  font-size: .84rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
}

.pricing-hero h2 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 6.4vw, 5.2rem);
  line-height: .9;
  letter-spacing: .01em;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: block;
}

.pricing-hero .pricing-line {
  display: block;
  white-space: nowrap;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.pricing-hero .pricing-line-accent {
  color: #d8bc97;
}

.pricing-hero p {
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.45;
  font-size: clamp(1.02rem, 1.8vw, 1.12rem);
  max-width: 820px;
}

.pricing-hero .pricing-highlight {
  color: #d8bc97;
  font-weight: 800;
}

.pricing-hero p em {
  font-style: italic;
  color: #f1ece4;
}

.pricing-shell { display: grid; grid-template-columns: 1fr 380px; gap: 20px; align-items: start; }
.pricing-shell[hidden],
.offer-fit[hidden] {
  display: none !important;
}

.join-edge-banner[hidden],
.edge-experience-image[hidden],
.discipline-quote[hidden] {
  display: none !important;
}
.pricing-copy p { margin-top: 12px; color: #d1deef; }
.pricing-copy ul { margin-top: 14px; list-style: none; display: grid; gap: 8px; }
.pricing-copy li { color: #d1deef; }
.pricing-copy li::before { content: '✓ '; color: var(--green); }

.offer-fit {
  margin: 22px auto 0;
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,.02);
  max-width: 860px;
}

.fit-col {
  padding: 10px 12px;
}

.fit-good {
  border-bottom: 1px solid var(--border);
}

.fit-title {
  margin-top: 0;
  margin-bottom: 4px;
  padding: 0;
  overflow: hidden;
  color: #e9f5ff;
  letter-spacing: .02em;
}

.fit-list {
  list-style: none;
  margin-top: 0;
  display: grid;
  gap: 4px;
}

.fit-list li {
  font-size: .84rem;
  color: #d7e3f5;
  line-height: 1.25;
  position: relative;
  padding-left: 14px;
}

.fit-good .fit-list li::before,
.fit-bad .fit-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}

.fit-good .fit-list li::before {
  content: '+';
  color: var(--green);
}

.fit-bad .fit-list li::before {
  content: '−';
  color: var(--hot);
}

.investment-breakdown {
  margin: 26px auto 0;
  max-width: 920px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  background:
    radial-gradient(420px 180px at 14% 2%, rgba(99,255,176,0.14), transparent 68%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
}

.investment-breakdown h3 {
  margin-top: 4px;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: .95;
}

.breakdown-list {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.break-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,.02);
}

.break-item h4 {
  font-size: 1.05rem;
}

.break-item p {
  margin-top: 4px;
  color: var(--muted);
  font-size: .9rem;
}

.old-price {
  margin-top: 0;
  color: #ff6a66;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1;
  flex-shrink: 0;
}

.break-item .old-price {
  color: #ff6a66 !important;
  text-decoration: none !important;
}

.break-item-priceless h4,
.break-item-priceless p,
.break-item-priceless .old-price {
  color: #c6a037 !important;
}

.break-item-bonus {
  border-color: rgba(0, 232, 131, 0.4);
  background: rgba(0, 232, 131, 0.05);
}

.break-item-bonus .old-price {
  color: #00e883 !important;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bonus-thumb {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(0, 232, 131, 0.35);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  cursor: zoom-in;
  flex-shrink: 0;
  transition: transform .25s ease;
}

.bonus-thumb:hover {
  transform: scale(1.05);
}

@media (max-width: 720px) {
  .bonus-thumb {
    width: 72px;
    height: 72px;
  }
}

.breakdown-summary {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.summary-line {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.pricing-shell-offer {
  margin: 16px auto 0;
  max-width: 980px;
}

.pricing-banner-cta {
  display: grid;
  justify-items: center;
  gap: 8px;
  width: 100%;
  padding: 18px 28px 20px;
  border-radius: 22px;
  border: 1px solid rgba(216,188,151,0.88);
  background: linear-gradient(180deg, #efe2d1 0%, #d8bc97 54%, #b0875d 100%);
  color: #140f0c;
  text-align: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.42),
    inset 0 -2px 0 rgba(90, 62, 42, 0.24),
    0 0 0 1px rgba(216,188,151,0.18),
    0 18px 42px rgba(0,0,0,0.28),
    0 0 18px rgba(216,188,151,0.1);
}

.pricing-banner-cta::before {
  content: '';
  position: absolute;
  inset: -120% auto auto -52%;
  width: 48%;
  height: 280%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.42), transparent);
  animation: sheen 5s linear infinite;
}

.pricing-banner-cta strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.75rem, 4.2vw, 3rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  font-weight: 400;
  white-space: nowrap;
  justify-self: center;
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.pricing-banner-cta span {
  font-size: clamp(1rem, 1.75vw, 1.15rem);
  font-weight: 700;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}

.pricing-banner-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.46),
    inset 0 -2px 0 rgba(90, 62, 42, 0.28),
    0 0 0 1px rgba(216,188,151,0.24),
    0 22px 48px rgba(0,0,0,0.32),
    0 0 28px rgba(216,188,151,0.28),
    0 0 52px rgba(216,188,151,0.18),
    0 0 76px rgba(176,135,93,0.12);
}

.summary-line-value p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5.4vw, 4.6rem);
  line-height: 0.95;
  color: #f7f6f2;
}

.summary-line-value strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5.6vw, 4.8rem);
  line-height: 0.92;
  color: #ff7a5a;
}

.summary-line-value strong span {
  font-family: 'Inter', sans-serif;
  font-size: 0.32em;
  letter-spacing: 0.04em;
  margin-left: 4px;
  text-transform: uppercase;
  position: relative;
  top: -0.46em;
}

.summary-cta {
  width: min(100%, 360px);
  justify-self: center;
  margin-top: 4px;
}

.summary-lead {
  text-align: center;
  color: #f7f6f2;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(0.85rem, 1.85vw, 1.7rem);
  line-height: 0.98;
  white-space: nowrap;
}

.summary-subnote {
  text-align: center;
  color: #63ffb0;
  font-size: clamp(0.8rem, 1.4vw, 0.95rem);
  font-weight: 600;
  margin-top: 6px;
}

.summary-line-pay {
  gap: 20px;
}

.summary-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  margin: 6px auto 0;
}

.plan-box {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 30px 26px 28px;
  border-radius: 22px;
  border: 1px solid rgba(150, 195, 230, 0.22);
  background:
    radial-gradient(130% 90% at 12% -8%, rgba(150, 200, 240, 0.28) 0%, rgba(70, 110, 150, 0.10) 22%, transparent 46%),
    radial-gradient(120% 80% at 92% 8%, rgba(120, 170, 215, 0.18) 0%, transparent 44%),
    radial-gradient(90% 120% at 60% 120%, rgba(40, 70, 100, 0.22) 0%, transparent 55%),
    linear-gradient(158deg, #1a2028 0%, #0d1219 44%, #05070a 100%);
  box-shadow:
    inset 0 1px 0 rgba(205, 232, 252, 0.28),
    inset 0 0 26px rgba(120, 165, 205, 0.10),
    inset 0 -26px 46px rgba(0, 0, 0, 0.55),
    0 18px 44px rgba(0, 0, 0, 0.55);
  text-align: center;
}

.plan-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(118deg, transparent 8%, rgba(210, 235, 255, 0.16) 20%, rgba(210, 235, 255, 0.02) 26%, transparent 30%),
    linear-gradient(150deg, transparent 62%, rgba(160, 200, 235, 0.10) 72%, transparent 80%),
    repeating-linear-gradient(58deg, transparent 0 15px, rgba(180, 215, 245, 0.035) 15px 16px),
    repeating-linear-gradient(-38deg, transparent 0 22px, rgba(150, 190, 225, 0.03) 22px 23px);
  pointer-events: none;
}

.plan-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(60% 40% at 30% 6%, rgba(225, 244, 255, 0.22) 0%, transparent 60%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.plan-box > * {
  position: relative;
  z-index: 1;
}

.plan-box-featured {
  border-color: rgba(216,188,151,0.75);
  box-shadow:
    inset 0 1px 0 rgba(216, 188, 151, 0.3),
    inset 0 0 26px rgba(120, 165, 205, 0.08),
    inset 0 -26px 46px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(216,188,151,0.28),
    0 18px 46px rgba(0,0,0,0.5);
  animation: planFeaturedGlow 3.6s ease-in-out infinite;
  transform: translateY(-2px);
}

.plan-box-featured::after {
  background:
    radial-gradient(60% 40% at 30% 6%, rgba(225, 244, 255, 0.22) 0%, transparent 60%),
    linear-gradient(115deg, transparent 38%, rgba(255, 240, 210, 0.28) 48%, rgba(255, 240, 210, 0.05) 54%, transparent 62%);
  background-size: 100% 100%, 250% 100%;
  background-repeat: no-repeat;
  background-position: 0 0, -60% 0;
  animation: planFeaturedSheen 3.6s ease-in-out infinite;
}

@keyframes planFeaturedGlow {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(216, 188, 151, 0.3),
      inset 0 0 26px rgba(120, 165, 205, 0.08),
      inset 0 -26px 46px rgba(0, 0, 0, 0.55),
      0 0 0 1px rgba(216,188,151,0.28),
      0 0 18px rgba(216,188,151,0.18),
      0 18px 46px rgba(0,0,0,0.5);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(228, 202, 168, 0.45),
      inset 0 0 26px rgba(120, 165, 205, 0.08),
      inset 0 -26px 46px rgba(0, 0, 0, 0.55),
      0 0 0 1px rgba(228,202,168,0.55),
      0 0 30px rgba(228,195,150,0.45),
      0 18px 46px rgba(0,0,0,0.5);
  }
}

@keyframes planFeaturedSheen {
  0%, 100% {
    background-position: 0 0, -60% 0;
  }
  50% {
    background-position: 0 0, 160% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .plan-box-featured,
  .plan-box-featured::after {
    animation: none;
  }
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #efe2d1 0%, #d8bc97 55%, #b0875d 100%);
  color: #140f0c;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-value {
  color: var(--muted);
  font-size: 0.92rem;
}

.plan-value-old {
  position: relative;
  color: #ff615c;
  font-weight: 700;
}

.plan-value-old::after {
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  top: 52%;
  height: 2px;
  border-radius: 999px;
  background: #ff615c;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: #f7f6f2;
}

.plan-price strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4rem);
  line-height: 0.9;
  color: #63ffb0;
}

.plan-price span {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.plan-price .plan-price-was {
  position: relative;
  align-self: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  color: #ff615c;
  opacity: 0.85;
}

.plan-price .plan-price-was::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 52%;
  height: 2px;
  background: #ff615c;
  transform: rotate(-8deg);
}

.launch-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin: 16px auto 4px;
  padding: 12px 26px;
  max-width: 560px;
  border-radius: 14px;
  border: 1px solid rgba(255, 97, 92, 0.55);
  background:
    radial-gradient(120% 140% at 50% -20%, rgba(255, 120, 90, 0.22) 0%, transparent 60%),
    linear-gradient(160deg, rgba(40, 16, 14, 0.9) 0%, rgba(20, 10, 9, 0.92) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 180, 150, 0.25),
    0 0 26px rgba(255, 90, 70, 0.22),
    0 12px 30px rgba(0, 0, 0, 0.45);
  text-align: center;
  animation: launchPulse 3s ease-in-out infinite;
}

.launch-banner-flare {
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 230, 210, 0.28) 50%, transparent 100%);
  animation: launchSweep 3.6s ease-in-out infinite;
  pointer-events: none;
}

.launch-banner-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffd7ce;
}

.launch-banner-icon {
  position: absolute;
  top: 2px;
  left: -8px;
  width: 36px;
  height: 36px;
  stroke: #ff9d52;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  filter: drop-shadow(0 0 8px rgba(255, 120, 80, 0.75));
  transform: scaleX(-1) rotate(-38deg);
  transform-origin: 50% 80%;
  animation: launchBlast 3.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes launchBlast {
  0%, 100% { transform: scaleX(-1) rotate(-38deg) translateY(0); }
  25% { transform: scaleX(-1) rotate(-34deg) translateY(-3px); }
  50% { transform: scaleX(-1) rotate(-42deg) translateY(-5px); }
  75% { transform: scaleX(-1) rotate(-36deg) translateY(-2px); }
}

.launch-banner-main {
  position: relative;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 4.5vw, 2.6rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  background: linear-gradient(180deg, #ffb36b 0%, #ff5436 48%, #ff2038 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #ff3a3a;
}

.launch-banner-sub {
  position: relative;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.78rem, 1.6vw, 0.95rem);
  font-weight: 600;
  font-style: italic;
  color: #f4d9d2;
}

.launch-banner-scarcity {
  position: relative;
  margin-top: 8px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.74rem, 1.5vw, 0.9rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff2ec;
}

.scarcity-accent {
  color: #ff7a4d;
  font-weight: 800;
}

@keyframes launchPulse {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 180, 150, 0.25),
      0 0 22px rgba(255, 90, 70, 0.18),
      0 12px 30px rgba(0, 0, 0, 0.45);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 180, 150, 0.35),
      0 0 34px rgba(255, 90, 70, 0.4),
      0 12px 30px rgba(0, 0, 0, 0.45);
  }
}

@keyframes launchSweep {
  0% { left: -60%; }
  55%, 100% { left: 130%; }
}

@media (prefers-reduced-motion: reduce) {
  .launch-banner { animation: none; }
  .launch-banner-flare { display: none; }
  .launch-banner-icon { animation: none; }
}

.plan-access {
  color: #f7f6f2;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.plan-cta {
  margin-top: 6px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 14px;
  border: 1px solid rgba(216,188,151,0.88);
  background: linear-gradient(180deg, #efe2d1 0%, #d8bc97 54%, #b0875d 100%);
  color: #140f0c;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.summary-old-price {
  position: relative;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.9;
  color: #ff615c;
}

.summary-old-price::after {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  top: 52%;
  height: 5px;
  border-radius: 999px;
  background: #ff615c;
}

.summary-line-pay strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6.2vw, 5.2rem);
  line-height: 0.9;
  color: #63ffb0;
}

.summary-line-pay strong span {
  font-family: 'Inter', sans-serif;
  font-size: 0.32em;
  letter-spacing: 0.08em;
  margin-right: 10px;
  text-transform: uppercase;
  position: relative;
  top: -0.48em;
}

.value-unlocked {
  margin-top: 10px;
  margin-bottom: 18px;
  text-align: center;
  width: fit-content;
  padding: 8px 14px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(198,160,55,0.28);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(198,160,55,0.14), rgba(198,160,55,0.05));
  color: #f4d37a;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.value-unlocked strong {
  color: var(--green);
}

.word-from-jd {
  padding: 34px 0 18px;
}

.word-from-jd .container {
  max-width: 1232px;
}

.word-from-jd-image {
  display: block;
  width: 100%;
  margin: 0 auto;
  height: auto;
}

.edge-levelup-photo {
  padding: 72px 0 8px;
}

.edge-levelup-photo .container {
  max-width: 1232px;
}

.edge-levelup-header {
  text-align: center;
  max-width: 900px;
  margin: 26px auto 0;
}

.edge-levelup-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: 0.01em;
}

.edge-levelup-header h2 span {
  color: #d8bc97;
}

.edge-levelup-header p {
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.6vw, 1.06rem);
  line-height: 1.6;
}

.edge-levelup-image {
  display: block;
  width: 100%;
  margin: 0 auto;
  height: auto;
}

.join-edge-banner {
  padding: 8px 0 26px;
  text-align: center;
}

.join-edge-banner-copy {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

.join-edge-banner-copy h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8.6vw, 7rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: #f7f6f2;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.55),
    0 10px 24px rgba(0, 0, 0, 0.28);
}

.join-edge-banner-copy h2 span {
  color: #d4b896;
}

.join-edge-banner-copy p {
  margin-top: 4px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.45rem, 3.8vw, 2.7rem);
  line-height: 0.95;
  color: #f7f6f2;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.55),
    0 8px 20px rgba(0, 0, 0, 0.24);
}

.edge-experience-image {
  padding: 0 0 28px;
}

.edge-experience-image .container {
  max-width: 1340px;
}

.edge-experience-graphic {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.transformation {
  padding: 42px 0 2px;
  position: relative;
}

.transformation h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  line-height: .94;
  text-align: center;
}

.transformation h2 span {
  color: #d8bc97;
}

.transform-intro {
  margin-top: 10px;
  color: #d3def0;
  max-width: 76ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.transform-shell {
  margin-top: 24px;
  margin-bottom: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.decision-panel {
  position: relative;
  border-radius: 20px;
  padding: 26px 26px 22px;
  background:
    radial-gradient(240px 140px at 50% 0%, rgba(255,255,255,0.05), transparent 72%),
    linear-gradient(180deg, rgba(22,28,39,0.96), rgba(10,12,18,0.98));
  box-shadow: 0 18px 40px rgba(0,0,0,0.42);
  overflow: hidden;
}

.decision-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  border: 0;
  opacity: 1;
}

.decision-panel-stuck {
  border: 2px dashed rgba(255,93,114,0.82);
}

.decision-panel-stuck::before {
  background: radial-gradient(240px 140px at 10% 100%, rgba(255,93,114,0.08), transparent 72%);
}

.decision-panel-edge {
  border: 4px solid rgba(190,255,76,0.95);
  box-shadow: 0 18px 40px rgba(0,0,0,0.42), 0 0 24px rgba(190,255,76,0.16);
}

.decision-panel-edge::before {
  background: radial-gradient(240px 140px at 90% 0%, rgba(190,255,76,0.08), transparent 72%);
}

.decision-panel h3 {
  margin: 0 0 22px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-align: center;
}

.decision-panel-stuck h3 {
  color: #f5f4f1;
}

.decision-panel-edge h3 {
  color: #f5f4f1;
}

.decision-list {
  margin: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.decision-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  color: #f3efe9;
  line-height: 1.62;
  font-size: 1.01rem;
}

.decision-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  line-height: 1;
  font-size: .82rem;
  margin-top: 5px;
}

.decision-panel-stuck .decision-icon {
  color: #0b0d12;
  background: #ff5d72;
  box-shadow: 0 0 14px rgba(255,93,114,0.34);
}

.decision-panel-edge .decision-icon {
  color: #122108;
  background: #befe4c;
  box-shadow: 0 0 14px rgba(190,255,76,0.34);
}

.decision-cta {
  margin-top: 24px;
  border-radius: 18px;
  padding: 14px 18px 12px;
  text-align: center;
  min-height: 106px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.decision-cta strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 0.94;
}

.decision-cta span {
  display: block;
  margin-top: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.decision-cta-stuck {
  background: linear-gradient(180deg, #ff5d72, #ff4a57);
  color: #101218;
}

.decision-cta-edge {
  background: linear-gradient(180deg, #befe4c, #aff73f);
  color: #11150b;
}

.decision-cta-edge span {
  font-size: 0.8rem;
  white-space: nowrap;
}

.transform-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-width: 42px;
  color: #e7f8ff;
  font-size: 1.7rem;
  line-height: 1;
}

.discipline-quote {
  padding: 34px 0 16px;
}

.discipline-center-axis {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.discipline-quote blockquote {
  margin: 0 auto;
  max-width: 980px;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5.2vw, 4rem);
  line-height: .95;
  letter-spacing: .02em;
  color: #e9f3ff;
  text-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transform: none;
  transition: none;
}

.discipline-quote .quote-line {
  display: block;
  white-space: nowrap;
  text-align: center;
  width: 100%;
}

.discipline-quote .bridge-word {
  color: var(--green);
}

.edge-fit {
  padding: 72px 0 12px;
}

.edge-fit-card {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 34px 30px;
  background:
    radial-gradient(520px 180px at 0% 0%, rgba(255,214,51,.09), transparent 70%),
    rgba(12,16,25,.9);
  box-shadow: 0 20px 46px rgba(0,0,0,0.42);
}

.edge-fit-card h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: .92;
}

.edge-fit-list {
  list-style: none;
  margin-top: 0;
  display: grid;
  gap: 10px;
}

.edge-fit-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 10px;
  font-size: clamp(1rem, 1.85vw, 1.22rem);
  font-weight: 600;
  line-height: 1.3;
}

.fit-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1ee05f;
  color: #05140b;
  font-weight: 800;
  box-shadow: 0 0 0 2px rgba(5,20,11,.45);
}

.edge-fit-cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  border-radius: 18px;
  border: 1px solid rgba(216,188,151,0.88);
  padding: 13px 16px;
  background: linear-gradient(180deg, #efe2d1 0%, #d8bc97 54%, #b0875d 100%);
  color: #140f0c;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .01em;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.42),
    inset 0 -2px 0 rgba(90, 62, 42, 0.24),
    0 0 0 1px rgba(216,188,151,0.18),
    0 18px 42px rgba(0,0,0,0.28),
    0 0 18px rgba(216,188,151,0.1);
  transition: transform .18s ease, box-shadow .18s ease;
}

.edge-fit-cta::before {
  content: '';
  position: absolute;
  inset: -120% auto auto -52%;
  width: 48%;
  height: 280%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.42), transparent);
  animation: sheen 5s linear infinite;
}

.edge-fit-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.46),
    inset 0 -2px 0 rgba(90, 62, 42, 0.28),
    0 0 0 1px rgba(216,188,151,0.24),
    0 22px 48px rgba(0,0,0,0.32),
    0 0 28px rgba(216,188,151,0.28),
    0 0 52px rgba(216,188,151,0.18),
    0 0 76px rgba(176,135,93,0.12);
}

.price-card {
  border: 1px solid rgba(99,255,176,0.5);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  background:
    radial-gradient(280px 140px at 50% 0%, rgba(66,217,255,0.22), transparent 75%),
    rgba(14,20,30,.92);
  box-shadow: 0 20px 48px rgba(0,0,0,0.45);
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  inset: -120% auto auto -35%;
  width: 75%;
  height: 280%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.24), transparent);
  animation: sheen 5s linear infinite;
}
.price-card .kicker {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  color: var(--cyan);
}
.price-card .amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  line-height: .9;
}
.price-card .amount span { font-size: .46em; vertical-align: top; }
.price-card .small { color: var(--muted); margin-top: 6px; }
.price-card .small s {
  color: #ff6a66;
  text-decoration-color: #ff6a66;
}
.price-card .full { width: 100%; margin-top: 16px; }
.price-card .guarantee {
  margin-top: 12px;
  color: #cde9ff;
  font-size: .83rem;
  line-height: 1.4;
}
.price-card .trust { margin-top: 10px; color: var(--muted); font-size: .82rem; }

.faq-list {
  max-width: 980px;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.faq-col {
  display: grid;
  gap: 10px;
  align-content: start;
}

.faq-list details {
  padding: 0;
  border: 1px solid rgba(216,188,151,0.16);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
  overflow: hidden;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  line-height: 1.3;
  padding: 16px 18px;
  list-style-position: inside;
  background: transparent;
  transition: color .2s ease;
}

.faq-list details:hover summary,
.faq-list details[open] summary {
  color: #f7efe6;
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: rgba(216,188,151,0.28);
  background: rgba(255,255,255,.04);
  box-shadow: 0 0 0 1px rgba(216,188,151,0.06) inset, 0 0 18px rgba(216,188,151,0.08);
}

.faq-list details > p,
.faq-answer p {
  margin: 0;
  max-width: 72ch;
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.62;
}

.final-cta {
  text-align: center;
  padding-top: 24px;
  padding-bottom: 40px;
}
.final-cta .single-line-headline {
  white-space: nowrap;
  font-size: clamp(0.62rem, 2.8vw, 3.6rem);
}
.final-cta p { color: #d1deef; margin: 12px 0 16px; }

footer {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  background: rgba(255,255,255,.02);
}
.footer-wrap { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.footer-wrap p { color: var(--muted); font-size: .86rem; }
.footer-wrap a { color: var(--cyan); text-decoration: none; font-size: .86rem; }

.reveal { opacity: 0; transform: translateY(20px); }
.reveal.visible { opacity: 1; transform: translateY(0); transition: .5s ease; }

.reveal-stagger {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: opacity .56s ease, transform .56s ease;
  transition-delay: var(--stagger-delay, 0ms);
}

.reveal-stagger.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes floatGlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes sheen {
  from { transform: translateX(-220%) rotate(18deg); }
  to { transform: translateX(300%) rotate(18deg); }
}

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(99,255,176,0.55); }
  70% { box-shadow: 0 0 0 12px rgba(99,255,176,0); }
  100% { box-shadow: 0 0 0 0 rgba(99,255,176,0); }
}

@keyframes appPhoneFloat {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@media (max-width: 980px) {
  .edge-fitness-headline.is-mobile-delayed {
    opacity: 0;
    transform: translateY(0);
    pointer-events: none;
  }

  .edge-fitness-headline.is-mobile-delayed.is-visible {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.08s linear;
  }

  .container { padding: 0 20px; }

  .edge-fitness-hero {
    padding: 74px 0 30px;
    overflow: hidden;
  }

  .edge-fitness-hero::before {
    left: 50%;
    width: 100vw;
    height: min(96vw, 620px);
    aspect-ratio: auto;
    transform: translateX(-50%);
    background-image:
      linear-gradient(180deg, rgba(7, 10, 16, 0.16) 0%, rgba(7, 10, 16, 0.7) 72%, rgba(7, 10, 16, 0.96) 100%),
      linear-gradient(90deg, rgba(7, 10, 16, 0.82) 0%, rgba(7, 10, 16, 0.32) 45%, rgba(7, 10, 16, 0.82) 100%),
      url("jd1.png");
    background-position: center top, center top, center 0%;
    background-size: auto, auto, contain;
    background-repeat: no-repeat;
  }

  .menu-toggle { display: inline-flex; }
  .site-nav,
  .nav-cta { display: none; }
  .site-nav.open {
    display: flex;
    position: absolute;
    top: 70px;
    left: 24px;
    right: 24px;
    flex-direction: column;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(11,16,28,0.96);
  }

  .hero-grid,
  .split,
  .hub-command-grid,
  .founders-grid,
  .program-grid,
  .showcase-row,
  .proof-grid,
  .steps-grid,
  .discord-shell,
  .pricing-shell,
  .offer-fit,
  .breakdown-summary { grid-template-columns: 1fr; }

  .pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .edge-fitness-flow {
    gap: 20px;
  }

  .edge-fitness-headline {
    max-width: 680px;
  }

  .edge-fitness-headline .hero-pretitle {
    margin-bottom: 10px;
    padding: 0;
    font-size: 0.88rem;
    line-height: 1.2;
    letter-spacing: 0.06em;
    max-width: 28ch;
  }

  .edge-fitness-hero .edge-fitness-headline h1 {
    font-size: clamp(2rem, 8.5vw, 3.2rem);
    line-height: 0.96;
    white-space: normal;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .edge-fitness-headline .hero-line {
    white-space: normal;
  }

  .edge-fitness-support .hero-sub {
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .edge-fitness-hero .hero-media {
    max-width: 100%;
    margin-top: 0;
  }

  .edge-fitness-hero .hero-media .media-placeholder {
    min-height: clamp(190px, 42vw, 280px);
  }

  .edge-fitness-hero .hero-media .media-placeholder span {
    font-size: clamp(1rem, 2.3vw, 1.4rem);
    letter-spacing: 0.08em;
    padding: 0 12px;
  }

  .edge-fitness-support .hero-actions {
    max-width: 420px;
    margin-top: 22px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .edge-fitness-support .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-banner-video {
    padding: 30px 0 10px;
  }

  .logo-marquee-shell {
    padding: 7px 0 8px;
  }

  .logo-marquee-track {
    animation-duration: 26s;
  }

  .logo-marquee-list {
    gap: 4px;
    padding: 0 8px;
  }

  .logo-marquee-list {
    gap: 5px;
    padding: 0;
  }

  .logo-marquee-item {
    flex-basis: auto;
    width: auto;
    min-height: 48px;
    padding: 7px 2px;
  }

  .logo-mark {
    width: auto;
    max-height: 34px;
  }

  .logo-mark-business-insider,
  .logo-mark-chicago-tribune {
    width: 132px;
  }

  .logo-mark-los-angeles-times {
    width: 165px;
  }

  .logo-mark-cbs,
  .logo-mark-nbc {
    width: 78px;
  }

  .logo-mark-oxygen {
    width: 86px;
  }

  .logo-mark-abc {
    width: 117px;
    max-height: 51px;
  }

  .logo-marquee-item-heart-radio {
    margin-left: 0;
    margin-right: 0;
  }

  .logo-mark-heart-radio {
    width: 138px;
    max-height: 48px;
  }

  .logo-mark-muscle-fitness {
    width: 108px;
    max-height: 38px;
  }

  .logo-marquee-item-business-insider {
    margin-right: 18px;
  }

  .logo-marquee-item-cbs {
    margin-left: 12px;
    margin-right: 12px;
  }

  .logo-marquee-item-chicago-tribune {
    margin-left: 18px;
  }

  .logo-mark-livestrong {
    width: 272px;
    max-height: 52px;
  }

  .logo-marquee-item-livestrong {
    margin-right: 18px;
  }

  .logo-marquee-item-los-angeles-times {
    margin-left: 12px;
    margin-right: 12px;
  }

  .logo-marquee-item-muscle-fitness {
    margin-left: 18px;
  }

  .about {
    padding: 88px 0 64px;
  }

  .about .identity-text {
    font-size: 1rem;
  }

  .edge-fit-card {
    padding: 20px 16px 18px;
    border-radius: 16px;
  }

  .edge-fit-list li {
    grid-template-columns: 24px 1fr;
    gap: 8px;
  }

  .fit-check {
    width: 24px;
    height: 24px;
    font-size: .86rem;
  }

  .testimonial-slide {
    flex-basis: calc((100% - 24px) / 3);
  }

  .transform-shell {
    grid-template-columns: 1fr;
  }

  .how-it-works .steps-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .how-it-works .step-card {
    max-width: 100%;
  }

  .transform-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .break-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-hero .pricing-line,
  .discipline-quote .quote-line {
    white-space: normal;
  }

  .pricing-hero p br {
    display: none;
  }

  .summary-line {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .summary-line-pay {
    gap: 10px;
  }

  .summary-plans {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .word-from-jd {
    padding: 22px 0 12px;
  }

  .join-edge-banner {
    padding: 0 0 18px;
  }

  .join-edge-banner-copy {
    width: 100%;
  }

  .join-edge-banner-copy h2 {
    font-size: clamp(2.6rem, 11vw, 4.3rem);
    white-space: normal;
    line-height: 0.92;
  }

  .join-edge-banner-copy p {
    font-size: clamp(1.15rem, 5vw, 1.75rem);
  }

  .edge-experience-image {
    padding: 0 0 18px;
  }

  .identity-feature-image {
    max-width: 100%;
    height: auto;
  }

  .identity-outcomes-block {
    margin-top: 60px;
  }

  .identity-outcomes-image {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .identity-outcomes-mobile {
    display: none;
  }

  .old-price {
    font-size: 1.4rem;
  }

  .app-showcase-grid {
    gap: 40px;
  }

  .showcase-row + .showcase-row {
    margin-top: 0;
  }

  .showcase-row,
  .showcase-row.is-reverse {
    text-align: left;
    gap: 20px;
  }

  .showcase-phone,
  .showcase-row.is-reverse .showcase-phone {
    order: 1;
  }

  .showcase-copy,
  .showcase-row.is-reverse .showcase-copy {
    order: 2;
  }

  .discord-community-copy {
    margin-top: 0;
  }

  .phone-frame {
    width: min(100%, 272px);
    padding: 8px;
    border-radius: 28px;
  }

  .phone-screen {
    border-radius: 22px;
  }

  .phone-placeholder {
    padding: 14px;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .showcase-copy h3 {
    font-size: clamp(1.4rem, 4.6vw, 1.95rem);
    margin-bottom: 10px;
  }

  .showcase-copy p {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .showcase-copy .showcase-list,
  .life-library-copy .showcase-list,
  .discord-community-copy .showcase-list {
    margin-top: 14px;
    margin-left: 16px;
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .life-library-copy .showcase-list li,
  .discord-community-copy .showcase-list li {
    white-space: normal;
  }

  .founder-card {
    grid-template-columns: 1fr;
  }

  .founder-photo {
    order: 1;
    min-height: 240px;
    border-left: 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .founder-content {
    order: 2;
  }

  .metrics-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .hero-media .media-placeholder { min-height: 408px; }

  .footer-wrap {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .container { padding: 0 16px; }

  .pricing-shell-offer {
    margin-top: 14px;
  }

  .pricing-banner-cta {
    padding: 16px 16px 18px;
    border-radius: 18px;
  }

  .pricing-banner-cta strong {
    white-space: normal;
    font-size: clamp(1.3rem, 6.8vw, 1.9rem);
    line-height: 0.98;
    text-wrap: balance;
  }

  .pricing-banner-cta span {
    font-size: 0.92rem;
    line-height: 1.3;
  }

  .app-showcase {
    padding: 30px 0 56px;
  }

  .edge-feature-photo img {
    max-height: 360px;
    opacity: 0.95;
  }

  .app-showcase.is-overlap {
    margin-top: -40px;
  }

  .app-showcase.is-overlap .app-showcase-header {
    margin-bottom: 44px;
  }

  .app-showcase-header {
    margin-bottom: 28px;
  }

  .app-showcase-header h2 {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
    line-height: 1;
  }

  .app-showcase-grid {
    gap: 30px;
  }

  .showcase-row,
  .showcase-row.is-reverse {
    gap: 16px;
  }

  .phone-frame {
    width: min(100%, 228px);
    padding: 7px;
    border-radius: 24px;
  }

  .phone-screen {
    border-radius: 18px;
  }

  .phone-placeholder {
    padding: 12px;
    font-size: 0.64rem;
    letter-spacing: 0.05em;
  }

  .showcase-copy h3 {
    font-size: clamp(1.22rem, 7.2vw, 1.72rem);
    margin-bottom: 8px;
  }

  .showcase-copy p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .showcase-copy .showcase-list,
  .life-library-copy .showcase-list,
  .discord-community-copy .showcase-list {
    margin-top: 12px;
    margin-left: 14px;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .showcase-copy .showcase-list li + li {
    margin-top: 4px;
  }

  .edge-fitness-hero {
    padding: 72px 0 24px;
  }

  .edge-fitness-hero::before {
    height: min(110vw, 470px);
    background-position: center top, center top, center 0%;
  }

  .nav-wrap {
    min-height: 64px;
    gap: 10px;
  }

  .brand {
    gap: 8px;
    font-size: 1.5rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .site-nav.open {
    top: 62px;
    left: 16px;
    right: 16px;
  }

  .metrics-grid { grid-template-columns: 1fr; }
  .price-card .amount { font-size: 4.2rem; }

  .edge-fitness-hero .edge-fitness-headline h1 {
    font-size: clamp(1.62rem, 8.2vw, 2.28rem);
    line-height: 0.98;
    width: 100%;
    white-space: normal;
    margin-left: auto;
    margin-right: auto;
  }

  .edge-fitness-headline .hero-line {
    white-space: normal;
  }

  .edge-fitness-headline .hero-pretitle {
    font-size: 0.75rem;
    padding: 0;
    letter-spacing: 0.05em;
    line-height: 1.25;
    max-width: 24ch;
    white-space: normal;
  }

  .edge-fitness-flow {
    gap: 16px;
  }

  .edge-fitness-support .hero-sub {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .edge-fitness-hero .hero-media .media-placeholder {
    min-height: clamp(176px, 52vw, 228px);
    border-radius: 14px;
  }

  .edge-fitness-hero .hero-media .media-placeholder span {
    font-size: 0.88rem;
    letter-spacing: 0.06em;
  }

  .hero-banner-video {
    padding-top: 22px;
  }

  .logo-marquee-shell::before,
  .logo-marquee-shell::after {
    width: 44px;
  }

  .logo-marquee-shell {
    padding: 6px 0 7px;
  }

  .logo-marquee-list {
    gap: 4px;
    padding: 0;
  }

  .logo-marquee-item {
    flex-basis: auto;
    width: auto;
    min-height: 44px;
    padding: 5px 1px;
  }

  .logo-mark {
    width: auto;
    max-height: 28px;
  }

  .logo-mark-business-insider,
  .logo-mark-chicago-tribune {
    width: 112px;
  }

  .logo-mark-los-angeles-times {
    width: 140px;
  }

  .logo-mark-cbs,
  .logo-mark-nbc {
    width: 68px;
  }

  .logo-mark-oxygen {
    width: 75px;
  }

  .logo-mark-abc {
    width: 102px;
    max-height: 42px;
  }

  .logo-marquee-item-heart-radio {
    margin-left: 0;
    margin-right: 0;
  }

  .logo-mark-heart-radio {
    width: 118px;
    max-height: 42px;
  }

  .logo-mark-muscle-fitness {
    width: 90px;
    max-height: 30px;
  }

  .logo-mark-livestrong {
    width: 236px;
    max-height: 48px;
  }

  .logo-marquee-item-business-insider {
    margin-right: 12px;
  }

  .logo-marquee-item-cbs {
    margin-left: 8px;
    margin-right: 8px;
  }

  .logo-marquee-item-chicago-tribune {
    margin-left: 12px;
  }

  .logo-marquee-item-livestrong {
    margin-right: 12px;
  }

  .logo-marquee-item-los-angeles-times {
    margin-left: 8px;
    margin-right: 8px;
  }

  .logo-marquee-item-muscle-fitness {
    margin-left: 12px;
  }

  .about {
    padding: 64px 0 18px;
  }

  .about h2 {
    font-size: clamp(2.25rem, 13vw, 3.2rem);
  }

  .about .identity-text {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .pillar {
    padding: 18px 16px 20px;
  }

  .identity-quote-block {
    margin-top: 24px;
  }

  .identity-benefits-heading {
    margin-top: 30px;
  }

  .identity-benefits-kicker {
    font-size: clamp(0.82rem, 3.8vw, 1rem);
    line-height: 1.25;
    letter-spacing: 0.04em;
  }

  .identity-benefits-heading h2 {
    margin-top: 12px;
    font-size: clamp(1.42rem, 6.15vw, 1.9rem);
    line-height: 0.98;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .identity-outcomes-block {
    margin-top: 42px;
  }

  .identity-outcomes-mobile h3 {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
    white-space: normal;
  }

  .identity-outcomes-list {
    margin-top: 24px;
    gap: 14px;
  }

  .identity-outcomes-list li {
    padding-left: 32px;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .identity-outcomes-list li::before {
    width: 20px;
    height: 20px;
    font-size: 0.82rem;
  }

  .identity-timeline-statements {
    margin-top: 24px;
    gap: 12px;
  }

  .identity-timeline-statements p {
    font-size: clamp(1.15rem, 6.3vw, 1.7rem);
    line-height: 1.05;
  }

  .summary-line-value p {
    font-size: clamp(1.8rem, 10vw, 2.7rem);
  }

  .summary-line-value strong {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .summary-lead {
    font-size: clamp(1.25rem, 8vw, 1.8rem);
    white-space: normal;
  }

  .summary-old-price {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .summary-line-pay strong {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .discipline-quote blockquote {
    font-size: clamp(1.7rem, 10vw, 2.4rem);
  }

  .edge-fit-card h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .final-cta {
    padding-top: 34px;
    padding-bottom: 64px;
  }

  .final-cta .single-line-headline {
    white-space: normal;
    font-size: clamp(1.65rem, 6.6vw, 2.6rem);
    line-height: 0.98;
    text-wrap: balance;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

}

/* Phone screenshot lightbox */
.phone-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
  background: rgba(6, 8, 10, 0.88);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  cursor: zoom-out;
}

.phone-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.phone-lightbox img {
  max-width: min(94vw, 1200px);
  max-height: 92vh;
  width: auto;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.94);
  transition: transform 0.25s ease;
}

.phone-lightbox.is-open img {
  transform: scale(1);
}

.phone-lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.phone-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.24);
}

/* Exit-intent popup */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vh 5vw;
  background: rgba(6, 8, 10, 0.9);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.exit-popup.is-open {
  opacity: 1;
  visibility: visible;
}

.exit-popup-card {
  position: relative;
  width: min(92vw, 520px);
  background: linear-gradient(165deg, #15171b 0%, #0c0d10 100%);
  border: 1px solid rgba(212, 175, 105, 0.35);
  border-radius: 20px;
  padding: 40px 34px 34px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.3s ease;
}

.exit-popup.is-open .exit-popup-card {
  transform: translateY(0) scale(1);
}

.exit-popup-kicker {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  color: #d4af69;
  margin: 0 0 8px;
}

.exit-popup-card h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  line-height: 1.02;
  color: #f5f4f1;
  margin: 0 0 14px;
}

.exit-popup-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 24px;
}

.exit-popup-cta {
  display: inline-block;
  width: 100%;
  padding: 15px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e4c37e 0%, #c69a4d 100%);
  color: #0b0c0e;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.exit-popup-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 105, 0.3);
}

.exit-popup-dismiss {
  display: inline-block;
  margin-top: 16px;
  background: none;
  border: none;
  color: rgba(240, 236, 230, 0.5);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: color 0.2s ease;
}

.exit-popup-dismiss:hover {
  color: rgba(240, 236, 230, 0.8);
}

.exit-popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.exit-popup-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
