:root {
  color-scheme: dark;
  --bg: #070a0f;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #f6f8f4;
  --muted: #9fa8a3;
  --line: rgba(255, 255, 255, 0.13);
  --green: #35f4a9;
  --cyan: #7de7ff;
  --gold: #ffd166;
  --red: #ff7a7a;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max: 1180px;
  font-family: "SF Pro Display", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 16% 10%, rgba(53, 244, 169, 0.14), transparent 28rem),
    radial-gradient(circle at 86% 12%, rgba(125, 231, 255, 0.12), transparent 26rem),
    var(--bg);
  background-size: 46px 46px, 46px 46px, auto, auto, auto;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: -4rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  background: var(--green);
  color: #06100d;
}

.skip-link:focus {
  top: 1rem;
}

.cursor-dot,
.cursor-ring {
  display: none;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 100;
  width: min(calc(100% - 24px), var(--max));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.72rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 10, 15, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.site-header.scrolled {
  background: rgba(7, 10, 15, 0.95);
  border-color: rgba(53, 244, 169, 0.3);
}

.brand,
.site-nav,
.header-actions,
.hero-actions,
.proof-row,
.sticky-cta,
.vip-card-head,
.console-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.01em;
}

.brand-photo {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 2px solid rgba(246, 248, 244, 0.86);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 0 0 3px rgba(53, 244, 169, 0.16);
}

.brand-mark {
  display: grid;
  place-items: center;
  min-width: 44px;
  height: 38px;
  padding: 0 0.55rem;
  border: 1px solid rgba(53, 244, 169, 0.4);
  border-radius: var(--radius);
  color: var(--green);
  background: rgba(53, 244, 169, 0.1);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.site-nav {
  gap: clamp(0.8rem, 2vw, 1.5rem);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--green);
}

.header-actions {
  gap: 0.6rem;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 0.9rem;
  border: 1px solid rgba(53, 244, 169, 0.32);
  border-radius: var(--radius);
  color: var(--green);
  background: rgba(53, 244, 169, 0.08);
  font-size: 0.9rem;
  font-weight: 850;
  white-space: nowrap;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.header-phone:hover {
  transform: translateY(-2px);
  border-color: rgba(53, 244, 169, 0.58);
  background: rgba(53, 244, 169, 0.13);
}

.header-cta,
.btn {
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.header-cta,
.btn.primary {
  color: #06100d;
  background: var(--green);
  box-shadow: 0 14px 34px rgba(53, 244, 169, 0.22);
}

.btn.ghost,
.btn.small:not(.primary) {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.btn.small {
  min-height: 40px;
  font-size: 0.92rem;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: 100svh;
  padding: 9rem max(1rem, calc((100vw - var(--max)) / 2)) 5rem;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  filter: saturate(0.7) contrast(1.1);
}

.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 10, 15, 0.98), rgba(7, 10, 15, 0.78), rgba(7, 10, 15, 0.96));
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 1rem;
  padding: 0 0.72rem;
  border: 1px solid rgba(53, 244, 169, 0.26);
  border-radius: 999px;
  background: rgba(53, 244, 169, 0.08);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 1.35rem;
  font-size: clamp(3.6rem, 8.2vw, 7.8rem);
  line-height: 0.9;
  letter-spacing: 0;
  white-space: normal;
  color: var(--text);
  background: linear-gradient(90deg, #ffffff 0%, var(--green) 48%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 18px 54px rgba(53, 244, 169, 0.24);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  line-height: 1.03;
  letter-spacing: 0;
  white-space: nowrap;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.12rem, 1.75vw, 1.55rem);
  line-height: 1.18;
  letter-spacing: 0.005em;
  white-space: nowrap;
}

.hero-text,
.section-heading p,
.process-card p,
.broker-panel p,
.course-card p,
.social-card p,
.collab-card p,
.site-footer p,
.faq-list p,
.vip-card span {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  max-width: 660px;
  color: rgba(246, 248, 244, 0.76);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  line-height: 1.58;
}

.section-heading p {
  max-width: 620px;
  font-size: 1.04rem;
}

.process-card p,
.broker-panel p,
.course-card p,
.social-card p,
.collab-card p,
.faq-list p,
.site-footer p {
  font-size: 0.97rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0;
}

.proof-row {
  flex-wrap: wrap;
  gap: 0.75rem;
}

.proof-row span {
  padding: 0.78rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.proof-row strong {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 900;
}

.vip-card,
.process-card,
.broker-panel,
.course-card,
.social-card,
.collab-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.vip-card {
  padding: 1rem;
  transform: translateY(calc(var(--parallax-depth, 0px) * 0.32));
}

.profile-card {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.vip-card-head {
  justify-content: space-between;
  padding: 0.35rem 0.25rem 1rem;
}

.vip-card-head strong {
  color: var(--green);
}

.vip-screen {
  position: relative;
  min-height: 300px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 0, rgba(53, 244, 169, 0.16), transparent 60%),
    rgba(0, 0, 0, 0.22);
  background-size: 34px 34px, 34px 34px, auto, auto;
  overflow: hidden;
}

.profile-screen {
  min-height: 480px;
  border: 0;
  background: transparent;
  isolation: isolate;
}

.profile-orbit {
  position: absolute;
  width: min(96%, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    conic-gradient(from 140deg, rgba(53, 244, 169, 0), rgba(53, 244, 169, 0.72), rgba(125, 231, 255, 0.5), rgba(53, 244, 169, 0));
  filter: blur(6px);
  opacity: 0.75;
  animation: profileSpin 12s linear infinite;
  z-index: -1;
}

.profile-photo {
  width: min(88%, 410px);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 4px solid rgba(246, 248, 244, 0.92);
  box-shadow:
    0 0 0 8px rgba(53, 244, 169, 0.12),
    0 22px 70px rgba(0, 0, 0, 0.48);
}

.signal-bars {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  display: flex;
  align-items: end;
  gap: 0.42rem;
  height: 74px;
}

.signal-bars span {
  width: 12px;
  border-radius: 999px;
  background: linear-gradient(var(--green), var(--cyan));
  animation: bars 1.8s ease-in-out infinite;
}

.signal-bars span:nth-child(1) {
  height: 34%;
}

.signal-bars span:nth-child(2) {
  height: 58%;
  animation-delay: 0.12s;
}

.signal-bars span:nth-child(3) {
  height: 82%;
  animation-delay: 0.24s;
}

.signal-bars span:nth-child(4) {
  height: 50%;
  animation-delay: 0.36s;
}

.signal-bars span:nth-child(5) {
  height: 70%;
  animation-delay: 0.48s;
}

.signal-wave {
  width: min(100%, 420px);
}

.grid-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.chart-line {
  fill: none;
  stroke: var(--green);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 760;
  stroke-dashoffset: 760;
  filter: drop-shadow(0 0 14px rgba(53, 244, 169, 0.42));
  animation: drawSignal 3.4s ease-in-out infinite;
}

.vip-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 1rem;
}

.vip-stats div {
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
}

.vip-stats strong {
  display: block;
  margin-top: 0.24rem;
  font-size: 0.94rem;
}

.marquee-section {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.marquee {
  display: flex;
  gap: 0.7rem;
  width: max-content;
  padding: 1rem 0;
  animation: marquee 36s linear infinite;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.88rem;
  font-weight: 650;
}

.section {
  padding: clamp(3.25rem, 5.5vw, 5.5rem) max(1rem, calc((100vw - var(--max)) / 2));
}

.section-heading {
  max-width: 780px;
  margin-bottom: 1.45rem;
}

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

.process-card {
  min-height: 280px;
  padding: 1.35rem;
  transform-style: preserve-3d;
}

.process-card h3,
.course-card h3 {
  color: rgba(246, 248, 244, 0.96);
}

.course-card h3 {
  text-transform: uppercase;
}

.digit-highlight {
  color: var(--green);
  text-shadow: 0 0 22px rgba(53, 244, 169, 0.32);
}

.process-card-wide {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(53, 244, 169, 0.13), rgba(125, 231, 255, 0.08)),
    rgba(255, 255, 255, 0.055);
}

.step-number,
.badge,
.icon {
  display: inline-grid;
  place-items: center;
  min-height: 36px;
  padding: 0 0.78rem;
  border: 1px solid rgba(53, 244, 169, 0.24);
  border-radius: var(--radius);
  background: rgba(53, 244, 169, 0.11);
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

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

.broker-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(1.3rem, 3vw, 2rem);
}

.broker-panel h3 {
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1;
}

.broker-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.profit-results-section {
  overflow: hidden;
}

.profit-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 1.15rem;
}

.profit-stats span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 0.9rem;
  border: 1px solid rgba(53, 244, 169, 0.2);
  border-radius: var(--radius);
  background: rgba(53, 244, 169, 0.07);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.profit-stats strong {
  margin-right: 0.35rem;
  color: var(--green);
  font-size: 1.08rem;
}

.profit-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(170px, 18vw, 210px);
  gap: 0.85rem;
  margin-inline: -0.35rem;
  padding: 0.35rem 0.35rem 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 0.35rem;
  scroll-snap-type: inline mandatory;
  scrollbar-color: rgba(53, 244, 169, 0.65) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.profit-gallery.is-auto-scrolling {
  scroll-snap-type: none;
}

.profit-gallery::-webkit-scrollbar {
  height: 10px;
}

.profit-gallery::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.profit-gallery::-webkit-scrollbar-thumb {
  border: 2px solid rgba(7, 10, 15, 0.9);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.profit-card {
  min-width: 0;
  margin: 0;
  padding: 0.55rem;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.04));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.profit-shot {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) - 2px);
  background:
    linear-gradient(135deg, rgba(53, 244, 169, 0.1), rgba(125, 231, 255, 0.06)),
    rgba(0, 0, 0, 0.34);
}

.profit-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.profit-risk {
  max-width: 760px;
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.testimonials-section {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.014);
}

.testimonial-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(280px, 31vw, 360px);
  grid-template-columns: none;
  gap: 1rem;
  margin-inline: -0.45rem;
  padding: 0.45rem 0.45rem 1.15rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 0.45rem;
  scroll-snap-type: inline mandatory;
  scrollbar-color: rgba(255, 209, 102, 0.72) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3.5rem, #000 calc(100% - 3.5rem), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 3.5rem, #000 calc(100% - 3.5rem), transparent);
}

.testimonial-grid.is-auto-scrolling {
  scroll-snap-type: none;
}

.testimonial-grid::-webkit-scrollbar {
  height: 10px;
}

.testimonial-grid::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.testimonial-grid::-webkit-scrollbar-thumb {
  border: 2px solid rgba(7, 10, 15, 0.9);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--green));
}

.testimonial-card {
  position: relative;
  min-height: 255px;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  padding: 1.05rem;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.04)),
    rgba(0, 0, 0, 0.18);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--gold), var(--green), var(--cyan));
  opacity: 0.86;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 209, 102, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05)),
    rgba(0, 0, 0, 0.18);
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-head img {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border: 2px solid rgba(53, 244, 169, 0.42);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background: rgba(255, 255, 255, 0.08);
}

.testimonial-head h3 {
  margin: 0 0 0.22rem;
  color: rgba(246, 248, 244, 0.96);
  font-size: 1rem;
}

.testimonial-head span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.rating {
  color: var(--gold);
  font-size: 0.94rem;
  letter-spacing: 0.08em;
  text-shadow: 0 0 16px rgba(255, 209, 102, 0.28);
}

.testimonial-card p {
  margin: 0;
  color: rgba(246, 248, 244, 0.82);
  font-size: 0.92rem;
  line-height: 1.65;
}

.testimonial-note {
  max-width: 760px;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.course-card,
.social-card {
  min-height: 220px;
  padding: 1.35rem;
}

.course-card {
  min-height: 180px;
}

.social-card,
.collab-card {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.collab-card {
  min-height: 132px;
  flex-direction: column;
  gap: 0.6rem;
}

.socials-section,
.collabs-section {
  background: rgba(255, 255, 255, 0.012);
}

.socials-section,
.collabs-section,
.faq-section {
  padding-top: clamp(2.8rem, 4.5vw, 4.5rem);
  padding-bottom: clamp(2.8rem, 4.5vw, 4.5rem);
}

.social-grid,
.collab-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

.collab-card {
  min-height: 150px;
  align-items: flex-start;
  padding: 1.5rem;
  text-align: left;
}

.social-card h3,
.collab-card h3 {
  margin-bottom: 0;
}

.collab-card h3 {
  color: rgba(246, 248, 244, 0.98);
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  line-height: 1;
  white-space: normal;
}

.collab-card p {
  max-width: 520px;
  color: rgba(246, 248, 244, 0.72);
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
}

.social-card:hover,
.collab-card:hover {
  transform: translateY(-3px);
  border-color: rgba(53, 244, 169, 0.34);
  background: linear-gradient(180deg, rgba(53, 244, 169, 0.12), rgba(255, 255, 255, 0.05));
}

.social-card p,
.collab-card p {
  margin-bottom: 0;
  overflow-wrap: anywhere;
  line-height: 1.55;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  padding: 1rem 1.2rem;
}

.faq-list summary {
  cursor: pointer;
  color: rgba(246, 248, 244, 0.95);
  font-weight: 800;
  line-height: 1.35;
  white-space: nowrap;
}

.sticky-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: flex;
  gap: 0.55rem;
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: #06100d;
  background: var(--green);
  font-weight: 850;
  font-size: 0.93rem;
  box-shadow: var(--shadow);
}

.sticky-cta a.secondary {
  border-color: var(--line);
  color: var(--text);
  background: rgba(7, 10, 15, 0.88);
  backdrop-filter: blur(16px);
}

.promo-popup[hidden] {
  display: none;
}

.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.promo-popup-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(53, 244, 169, 0.18), transparent 28rem),
    rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
}

.promo-popup-card {
  position: relative;
  width: min(100%, 430px);
  padding: clamp(1.35rem, 4vw, 2rem);
  border: 1px solid rgba(53, 244, 169, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(53, 244, 169, 0.14), rgba(125, 231, 255, 0.08)),
    rgba(7, 10, 15, 0.96);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.58);
  text-align: center;
  overflow: hidden;
  animation: promoIn 0.42s ease both;
}

.promo-popup-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
  pointer-events: none;
}

.promo-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 1;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.promo-photo-wrap {
  position: relative;
  width: 132px;
  aspect-ratio: 1;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: conic-gradient(from 150deg, var(--green), var(--cyan), var(--green));
  padding: 4px;
  box-shadow: 0 0 46px rgba(53, 244, 169, 0.28);
}

.promo-photo {
  width: 100%;
  height: 100%;
  border: 4px solid rgba(7, 10, 15, 0.95);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.promo-eyebrow {
  position: relative;
  margin: 0 0 0.5rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.promo-popup h2 {
  position: relative;
  margin: 0 0 0.8rem;
  color: var(--text);
  font-size: clamp(1.6rem, 6vw, 2.35rem);
  line-height: 1.03;
  white-space: normal;
}

.promo-text {
  position: relative;
  max-width: 330px;
  margin: 0 auto 1.25rem;
  color: rgba(246, 248, 244, 0.72);
  line-height: 1.62;
}

.promo-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  border-radius: var(--radius);
  background: var(--green);
  color: #06100d;
  font-weight: 950;
  box-shadow: 0 18px 44px rgba(53, 244, 169, 0.26);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.promo-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(53, 244, 169, 0.32);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 3rem max(1rem, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
}

.site-footer .brand {
  margin-bottom: 0.9rem;
}

.risk {
  grid-column: 1 / -1;
  max-width: 760px;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.hero-copy.reveal {
  opacity: 1;
  transform: none;
}

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

@keyframes drawSignal {
  0% {
    stroke-dashoffset: 760;
    opacity: 0.35;
  }
  45%,
  78% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -760;
    opacity: 0.35;
  }
}

@keyframes bars {
  0%,
  100% {
    transform: scaleY(0.62);
    opacity: 0.55;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes profileSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes promoIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (hover: hover) and (pointer: fine) {
  .cursor-dot,
  .cursor-ring {
    position: fixed;
    display: block;
    pointer-events: none;
    z-index: 10000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }

  .cursor-dot {
    width: 7px;
    height: 7px;
    background: var(--green);
  }

  .cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(53, 244, 169, 0.45);
    transition: width 0.2s ease, height 0.2s ease;
  }

  body.cursor-active .cursor-ring {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 1040px) {
  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonial-grid {
    grid-auto-columns: clamp(270px, 42vw, 340px);
  }
}

@media (max-width: 900px) {
  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header {
    gap: 0.65rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-header.nav-open .site-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    display: grid;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(7, 10, 15, 0.98);
  }

  .hero,
  .broker-panel {
    grid-template-columns: 1fr;
  }

  .vip-card {
    transform: none;
  }

  .course-grid,
  .social-grid,
  .collab-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-auto-columns: clamp(260px, 58vw, 330px);
  }

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

  .broker-panel .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .brand span {
    display: none;
  }

  .header-phone {
    min-height: 40px;
    padding: 0 0.65rem;
    font-size: 0.82rem;
  }

  .hero {
    min-height: auto;
    padding-top: 7.5rem;
  }

  h1 {
    font-size: clamp(1.95rem, 9.5vw, 4.2rem);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(1.5rem, 7.2vw, 2.45rem);
  }

  h3 {
    font-size: clamp(1rem, 5.5vw, 1.28rem);
  }

  .faq-list summary {
    font-size: 0.92rem;
  }

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

  .process-grid,
  .vip-stats,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-auto-columns: min(82vw, 320px);
    -webkit-mask-image: none;
    mask-image: none;
  }

  .process-card-wide {
    grid-column: auto;
  }

  .vip-screen {
    min-height: 220px;
  }

  .profile-screen {
    min-height: 360px;
  }

  .profile-photo {
    width: min(86%, 310px);
  }

  .promo-popup {
    align-items: end;
    padding: 0.75rem;
  }

  .promo-popup-card {
    width: 100%;
    max-height: calc(100svh - 1.5rem);
    overflow-y: auto;
  }

  .promo-photo-wrap {
    width: 108px;
  }

  .sticky-cta {
    left: 1rem;
    right: 1rem;
  }

  .sticky-cta a {
    flex: 1;
  }

}

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