:root {
  --bg: #06080f;
  --surface: #101522;
  --surface-2: #151c2c;
  --text: #eef4ff;
  --muted: #a4b1c7;
  --cyan: #42d9ff;
  --green: #63ffb0;
  --purple: #9a6bff;
  --hot: #ff6bd6;
  --border: rgba(255,255,255,0.12);
  --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; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(800px 380px at 10% -5%, rgba(66,217,255,0.14), transparent 60%),
    radial-gradient(720px 360px at 92% 14%, rgba(154,107,255,0.16), 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: rgba(66,217,255,0.34);
  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: rgba(255,107,214,0.2);
  animation: floatGlow 10s ease-in-out infinite reverse;
  transform: translateY(calc(var(--scroll-progress) * 26px));
}

.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-size: 30px 30px;
  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: rgba(7,11,20,0.74);
  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; gap: 16px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
  font-size: 1.8rem;
  text-shadow: 0 0 14px rgba(66,217,255,0.3);
}

.brand-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  object-position: center;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.35));
}

.site-nav { margin-left: auto; display: flex; gap: 8px; }
.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  border-color: rgba(99,255,176,0.5);
  background: rgba(99,255,176,0.09);
}

.nav-cta {
  text-decoration: none;
  color: #071417;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  font-weight: 800;
  font-size: 0.85rem;
  padding: 11px 16px;
  border-radius: 12px;
  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;
}

.hero { padding: 86px 0 44px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 26px; align-items: center; }
.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;
}

.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: 110px 0 82px;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(0,230,118,0.02), transparent);
}

.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: 14px;
  margin-bottom: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: .95;
}

.about .accent {
  color: #00e883;
}

.about .identity-text {
  max-width: 720px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.pillar {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 20px 26px;
  background: rgba(255,255,255,.03);
  transition: transform .22s ease, border-color .22s ease;
}

.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(0,230,118,0.34);
}

.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: #00e883; }
.mission-icon.mind { color: #ffd000; }
.mission-icon.spirit { color: #ff7a00; }
.mission-icon.execution { color: #ff3939; }

.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;
}

.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;
}

.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: 20px; display: grid; gap: 12px; grid-template-columns: repeat(3,minmax(0,1fr)); }
.card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  box-shadow: var(--shadow);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(66,217,255,0.45);
  box-shadow: 0 20px 42px rgba(0,0,0,0.42), 0 0 0 1px rgba(66,217,255,0.2) inset;
}
.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: 84px 0;
}

.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: 24px;
}

.showcase-row {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  align-items: center;
  gap: 46px;
  position: relative;
}

.showcase-row + .showcase-row {
  margin-top: -138px;
}

.showcase-row:nth-child(2) {
  margin-top: -168px;
  z-index: 2;
}

.showcase-row:nth-child(3) {
  margin-top: -176px;
  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-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;
  animation: appPhoneFloat 7s ease-in-out infinite;
}

.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);
}

.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;
}

.showcase-copy p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.98rem;
  max-width: 58ch;
}

.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));
}

.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-top: 24px;
}

.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-card {
  display: block;
  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);
}

.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 .accent-word {
  color: #00e78d;
}

.pricing-hero p {
  margin: 0 auto;
  color: #b8c7dc;
  line-height: 1.45;
  font-size: clamp(1.02rem, 1.8vw, 1.12rem);
  max-width: 820px;
}

.pricing-shell { display: grid; grid-template-columns: 1fr 380px; gap: 20px; align-items: start; }
.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 1fr;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,.02);
  max-width: 860px;
}

.fit-col {
  padding: 12px 14px;
}

.fit-good {
  border-right: 1px solid var(--border);
}

.fit-title {
  margin-top: 0;
  margin-bottom: 6px;
  font-weight: 700;
  color: #e9f5ff;
  letter-spacing: .02em;
}

.fit-list {
  list-style: none;
  margin-top: 0;
  display: grid;
  gap: 6px;
}

.fit-list li {
  font-size: .88rem;
  color: #d7e3f5;
  line-height: 1.35;
  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;
  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: line-through;
  text-decoration-color: #ff6a66;
  text-decoration-thickness: 2px;
  text-decoration-skip-ink: none;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1;
  flex-shrink: 0;
}

.break-item .old-price {
  color: #ff6a66 !important;
  text-decoration-line: line-through !important;
  text-decoration-color: #ff6a66 !important;
}

.breakdown-summary {
  margin-top: 16px;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}

.summary-box {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(0,0,0,.2);
}

.summary-box p {
  margin-top: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
}

.summary-box strong {
  display: inline-block;
  margin-top: 4px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: .9;
}

.summary-pay {
  border-color: rgba(99,255,176,0.52);
  background: linear-gradient(180deg, rgba(99,255,176,.12), rgba(99,255,176,.04));
}

.summary-pay strong {
  color: var(--green);
}

.summary-pay span {
  font-family: 'Inter', sans-serif;
  font-size: .35em;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-left: 4px;
  position: relative;
  top: -0.58em;
}

.value-unlocked {
  margin-top: 12px;
  text-align: center;
  color: #d6e3f7;
}

.value-unlocked strong {
  color: var(--green);
}

.transformation {
  padding: 86px 0 30px;
  position: relative;
}

.transformation h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  line-height: .94;
}

.transform-intro {
  margin-top: 10px;
  color: #d3def0;
  max-width: 76ch;
}

.transform-shell {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
}

.transform-col {
  position: relative;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
  overflow: hidden;
}

.transform-col::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .6;
}

.transform-col.before {
  border-color: rgba(255,107,214,0.36);
}

.transform-col.before::before {
  background: radial-gradient(240px 130px at 12% 0%, rgba(255,107,214,0.2), transparent 70%);
}

.transform-col.after {
  border-color: rgba(99,255,176,0.38);
}

.transform-col.after::before {
  background: radial-gradient(240px 130px at 88% 0%, rgba(99,255,176,0.2), transparent 70%);
}

.transform-col h3 {
  margin-top: 4px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  line-height: .95;
  letter-spacing: .02em;
}

.transform-col.before h3 {
  color: #ff7f9d;
}

.transform-col.after h3 {
  color: #8dffcb;
}

.state-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
}

.transform-list {
  margin-top: 12px;
  list-style: none;
  display: grid;
  gap: 9px;
}

.transform-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  color: #dbe6f9;
  line-height: 1.42;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 8px 10px;
}

.state-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  line-height: 1;
  font-size: .82rem;
  margin-top: 1px;
}

.before .state-icon {
  color: var(--hot);
  background: rgba(255,107,214,0.12);
}

.after .state-icon {
  color: var(--green);
  background: rgba(99,255,176,0.14);
}

.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: 20px 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-block;
  width: 100%;
  text-align: center;
  border-radius: 12px;
  padding: 13px 16px;
  background: #ffd900;
  color: #0b0d14;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: transform .18s ease, filter .18s ease;
}

.edge-fit-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.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 { margin-top: 18px; display: grid; gap: 10px; }
.faq-list details {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,.03);
  padding: 12px 14px;
  transition: border-color .2s ease, background .2s ease;
}
.faq-list details:hover,
.faq-list details[open] {
  border-color: rgba(66,217,255,0.4);
  background: rgba(66,217,255,0.08);
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}
.faq-list p { margin-top: 10px; color: var(--muted); }

.final-cta {
  text-align: center;
  padding-top: 56px;
  padding-bottom: 92px;
}
.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; }
.footer-links {
  text-align: right;
  line-height: 1.6;
}

.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) {
  .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,
  .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));
  }

  .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;
  }

  .transform-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .break-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .old-price {
    font-size: 1.4rem;
  }

  .app-showcase-grid {
    gap: 52px;
  }

  .showcase-row + .showcase-row {
    margin-top: 0;
  }

  .showcase-row,
  .showcase-row.is-reverse {
    text-align: left;
    gap: 24px;
  }

  .showcase-phone,
  .showcase-row.is-reverse .showcase-phone {
    order: 1;
  }

  .showcase-copy,
  .showcase-row.is-reverse .showcase-copy {
    order: 2;
  }

  .phone-frame {
    width: min(100%, 320px);
  }

  .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;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    text-align: left;
  }

  .metrics-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .hero-media .media-placeholder { min-height: 280px; }
}

@media (max-width: 560px) {
  .metrics-grid { grid-template-columns: 1fr; }
  .price-card .amount { font-size: 4.2rem; }

  .pillars {
    grid-template-columns: 1fr;
  }
}
