/* ===== DESIGN TOKENS ===== */
:root {
  /* Backgrounds */
  --bg-dark: #070018;
  --bg-dark-alt: #070119;
  --bg-badge: rgb(29, 6, 79);
  --bg-card: rgb(18, 18, 18);
  --bg-faq-open: rgb(20, 15, 33);
  --bg-step: rgb(244, 243, 251);
  --bg-checkout: rgb(249, 249, 252);
  --bg-overlay: rgba(8, 0, 26, 0.9);
  --bg-overlay-heavy: rgba(8, 0, 26, 0.95);

  /* Brand colors */
  --color-primary: #3e3af2;
  --color-primary-hover: #322ed4;
  --color-primary-light: #7c3aed;
  --color-primary-light-hover: #6d2ed6;
  --color-primary-bg: rgba(62, 58, 242, 0.08);
  --color-primary-border: rgba(62, 58, 242, 0.2);
  --color-green: #3fd28a;
  --color-green-bg: rgba(10, 138, 79, 0.16);
  --color-green-border: rgba(63, 210, 138, 0.3);

  /* Text */
  --text-heading: #f3f0f5;
  --text-body: #978aa1;
  --text-muted: #9a91a1;
  --text-dark: #140f21;
  --text-dark-muted: #6b5e75;
  --text-purple: #ddd6fe;
  --text-dark-heading: #1d054f;

  /* Borders */
  --border-default: #dad5de;
  --border-subtle: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-primary: 'Be Vietnam Pro', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --font-display: 'Inter Tight', sans-serif;

  /* Shadows */
  --shadow-xs: rgba(16, 24, 40, 0.05) 0px 1px 2px 0px;
  --shadow-btn: var(--shadow-xs), rgba(0, 0, 0, 0.25) 0px -2px 0px 0px inset, rgba(255, 255, 255, 0.13) 0px 1px 0px 0px inset;
  --shadow-card: 0 4px 4px rgba(107, 107, 107, 0.05);

  /* Layout */
  --max-width: 1280px;
  --max-width-narrow: 840px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--text-body);
  background: var(--bg-dark);
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--text-heading);
  line-height: 1;
}
p { line-height: 1.4; }

/* ===== CONTAINER ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 80px; }
.container--narrow { max-width: var(--max-width-narrow); }
.container--above { position: relative; z-index: 2; }

/* ===== BADGE ===== */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg-badge); border-radius: 6px; padding: 4px 8px;
  width: auto;
}
.badge__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--text-purple); flex-shrink: 0; }
.badge__text {
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; line-height: 20px; color: var(--text-purple); text-transform: uppercase;
  white-space: pre;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 16px 12px 18px; border-radius: 10px; font-family: var(--font-primary);
  font-size: 15px; font-weight: 500; letter-spacing: -0.01em; line-height: 140%;
  text-decoration: none; cursor: pointer; transition: all 0.2s; white-space: nowrap;
  box-shadow: var(--shadow-xs);
}
.btn--primary {
  background: var(--color-primary); color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover { background: var(--color-primary-hover); }
.btn--secondary {
  background: transparent; color: #fff;
  border: 1px solid rgb(81, 71, 89);
  box-shadow: var(--shadow-xs);
}
.btn--secondary:hover { background: rgba(255, 255, 255, 0.06); }
.btn--light-secondary {
  background: transparent; color: var(--color-primary-light);
  border: 1px solid var(--border-default);
  box-shadow: var(--shadow-xs);
}
.btn__arrow { width: 24px; height: 24px; flex-shrink: 0; display: inline-block; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; left: 0; right: 0; z-index: 10;
  background: rgba(8, 0, 26, 0.9);
  backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px);
  padding: 0 80px;
}
.navbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-width); width: 100%; margin: 0 auto; padding: 16px 0;
}
.navbar__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-primary); font-size: 20px; font-weight: 500;
  letter-spacing: -0.03em; line-height: 110%; color: #fff;
  text-decoration: none;
}
.navbar__logo-img { width: 52px; height: 51px; object-fit: cover; }
.navbar__nav { display: flex; gap: 32px; align-items: center; }
.navbar__link {
  font-family: var(--font-primary); font-size: 16px; font-weight: 400;
  letter-spacing: -0.02em; line-height: 140%;
  color: var(--text-muted); transition: color 0.3s cubic-bezier(0.44, 0, 0.56, 1);
  text-decoration: none;
}
.navbar__link:hover { color: #e1dde4; }
.navbar__actions { display: flex; gap: 12px; align-items: flex-start; }
.navbar__actions .btn--secondary { padding: 8px 12px 8px 14px; border: 1px solid #514759; gap: 10px; }
.navbar__divider {
  height: 1px; width: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 49.099%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.2;
}
.navbar__mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.navbar__mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--text-heading); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.navbar__mobile-toggle--active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__mobile-toggle--active span:nth-child(2) { opacity: 0; }
.navbar__mobile-toggle--active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 44px 80px 120px;
  gap: 40px;
  scroll-margin-top: 96px;
  overflow: hidden;
}
.hero__glow {
  position: absolute; top: -227px; left: 0;
  width: 878px; height: 952px; z-index: 1; pointer-events: none;
  overflow: hidden;
}
.hero__glow svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__content {
  position: relative; z-index: 2;
  max-width: var(--max-width); width: 100%;
  display: flex; flex-direction: column; align-items: center;
}
.hero__text-content {
  display: flex; flex-direction: column; align-items: center;
  gap: 32px; width: 100%;
}
.hero__heading-area {
  display: flex; flex-direction: column; align-items: center;
  gap: 24px;
  max-width: 100%; width: 100%;
}
.hero__badge + .hero__h1-wrap { margin-top: 0; }
.hero__h1-wrap {
  display: flex; justify-content: center;
  padding: 2px 0;
}
.hero__h1 {
  font-family: var(--font-primary);
  font-size: clamp(30px, 5.5vw, 84px); font-weight: 500; letter-spacing: -0.04em;
  color: var(--text-heading); line-height: 105%; margin: 0; text-align: center;
  max-width: 100%;
  text-wrap: balance;
}
.hero__video {
  width: 768px; height: 432px; margin: 0;
  border-radius: 30px; overflow: hidden; flex-shrink: 0;
}
.hero__video .plyr { width: 100%; height: 100%; max-width: none; }
.hero__video .plyr__video-wrapper { width: 100%; height: 100%; }
.hero__video video { width: 100%; height: 100%; display: block; object-fit: cover; }
.hero__descr-wrap {
  display: flex; justify-content: center;
  max-width: 60%; width: 100%; overflow: hidden;
}
.hero__sub {
  font-size: 18px; color: var(--text-muted); margin: 0;
  letter-spacing: -0.02em; line-height: 140%;
  width: 83%; text-align: center;
  white-space: pre-wrap; word-break: break-word;
}
.hero__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 0; }

/* ===== SOCIAL PROOF (inside hero) ===== */
.social-proof {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  gap: 42px;
  max-width: var(--max-width); width: 100%;
  padding: 0 32px; overflow: hidden;
}
.social-proof__text {
  font-family: var(--font-primary);
  font-size: 18px; font-weight: 500; letter-spacing: -0.02em; line-height: 140%;
  color: var(--text-heading); text-align: center;
}
.social-proof__carousel {
  position: relative; width: 100%; overflow: hidden;
}
.social-proof__fade {
  position: absolute; top: 0; bottom: 0; width: 15%; z-index: 2; pointer-events: none;
}
.social-proof__fade--left { left: 0; background: linear-gradient(to right, var(--bg-dark), transparent); }
.social-proof__fade--right { right: 0; background: linear-gradient(to left, var(--bg-dark), transparent); }
.social-proof__ribbon {
  display: flex; gap: 80px;
  width: max-content;
  animation: ribbon-scroll 30s linear infinite;
}
.social-proof__track {
  display: flex; gap: 80px; align-items: center; flex-shrink: 0;
}
.social-proof__item {
  display: flex; align-items: center; flex-shrink: 0; height: 60px;
}
.social-proof__item img { width: 182px; height: auto; object-fit: cover; object-position: center; }
.social-proof__track .social-proof__item:nth-child(5) img { width: 216px; }
.social-proof__track .social-proof__item:nth-child(6) img { width: 218px; }
@keyframes ribbon-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTION SHARED ===== */
.section { padding: 96px 80px; position: relative; overflow: hidden; }
.section--light { background: linear-gradient(#fff 0%, #f5f3fb 100%); }
.section--dark { background: var(--bg-dark); }
.section--dark-alt { background: var(--bg-dark-alt); }
.section__heading-area {
  display: flex; flex-direction: column; align-items: center;
  gap: 16px;
  max-width: 100%;
  margin: 0 auto 40px; width: 100%;
}
.section__badge { margin-bottom: 0; text-align: center; display: flex; justify-content: center; width: auto; }
.section__heading {
  font-family: var(--font-primary);
  font-size: 62px; font-weight: 500; letter-spacing: -0.04em; line-height: 105%;
  color: var(--text-heading); text-align: center; margin: 0; width: 100%;
  text-wrap: balance;
}
.section__heading--light { color: var(--text-dark); }
.section__sub {
  font-size: 18px; color: var(--text-body); text-align: center;
  max-width: var(--max-width-narrow);
  margin: 0 auto 48px; letter-spacing: -0.02em; line-height: 140%;
  white-space: pre-wrap; word-break: break-word;
}
.section__sub--flush { margin-bottom: 0; }
.section--light .section__heading { color: var(--text-dark); }
.section--light .section__sub { color: var(--text-dark-muted); }
.section--light .badge { background: rgb(244, 243, 251); }
.section--light .badge__dot { background: var(--color-primary-light); }
.section--light .badge__text { color: var(--color-primary-light); }

/* Section glow positioning */
.section__glow {
  position: absolute; z-index: 1; pointer-events: none;
  width: 878px; height: 952px; overflow: hidden;
}
.section__glow svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.section__glow--right { top: -280px; left: 0; }

/* Section CTA wrappers */
.section__cta { text-align: center; }
.section__cta--mt { margin-top: 40px; }
.section__cta--mb { margin-bottom: 40px; }

/* ===== THE TRUTH / DECISION PROBLEM SECTION ===== */
.truth {
  position: relative;
  padding: 120px 80px 100px;
}
.truth__glow {
  position: absolute; z-index: 1; pointer-events: none;
  width: 878px; height: 952px; overflow: hidden;
}
.truth__glow svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.truth__glow--left { top: -200px; left: -200px; }
.truth__glow--right { bottom: -300px; right: -200px; }

.truth__header {
  display: flex; flex-direction: column; align-items: center;
  gap: 24px; margin-bottom: 64px;
  max-width: var(--max-width); margin-left: auto; margin-right: auto; text-align: center;
}
.truth__heading {
  font-family: var(--font-primary);
  font-size: 58px; font-weight: 500; letter-spacing: -0.04em;
  line-height: 108%; color: var(--text-heading);
  text-align: center; margin: 0;
  text-wrap: balance;
}
.truth__sub {
  font-size: 18px; color: var(--text-body);
  letter-spacing: -0.015em; line-height: 160%;
  text-align: center; margin: 0; max-width: 640px;
}

/* ===== COMPARISON TABLE ===== */
.compare {
  max-width: 1060px; width: 100%; margin: 0 auto 56px;
  border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  position: relative;
}
.compare::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}
.compare__header {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.compare__col-label {
  padding: 24px 32px;
  font-family: var(--font-display);
  font-size: 16px; font-weight: 600;
  letter-spacing: -0.02em; line-height: 120%;
}
.compare__col-label--without { color: #ff9b9b; }
.compare__col-label--with { color: #4dffd4; border-left: 1px solid rgba(255, 255, 255, 0.06); }
.compare__row {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.compare__row:last-child { border-bottom: none; }
.compare__cell {
  padding: 20px 32px;
  font-size: 15px; font-weight: 500;
  letter-spacing: -0.01em; line-height: 150%;
}
.compare__cell p { margin: 0; }
.compare__cell--without {
  color: rgba(255, 155, 155, 0.7);
  background: rgba(255, 60, 60, 0.02);
}
.compare__cell--with {
  color: rgba(77, 255, 212, 0.65);
  background: rgba(63, 210, 138, 0.02);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

/* Trust badges */
.truth__trust {
  display: flex; justify-content: center; gap: 16px;
  margin-bottom: 56px; flex-wrap: wrap;
  max-width: 1060px; width: 100%;
}
.truth__trust-item {
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 16px 24px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.truth__trust-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}
.truth__trust-item:hover {
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}
.truth__trust-icon { font-size: 20px; flex-shrink: 0; }
.truth__trust-text {
  font-size: 14px; font-weight: 500;
  letter-spacing: -0.01em; line-height: 130%;
  color: var(--text-muted);
}
.truth__trust-text strong {
  color: var(--text-heading);
  font-weight: 600;
}

/* CTA */
.truth__cta {
  display: flex; flex-direction: column; align-items: center;
  gap: 16px;
}
.btn--lg {
  padding: 16px 28px 16px 30px;
  font-size: 17px; font-weight: 600;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(62, 58, 242, 0.3), var(--shadow-btn);
}
.btn--lg:hover {
  box-shadow: 0 4px 32px rgba(62, 58, 242, 0.45), var(--shadow-btn);
}
.truth__cta-note {
  font-size: 14px; font-weight: 500;
  color: var(--text-muted); letter-spacing: -0.01em;
  margin: 0;
}

/* ===== EDITORIAL SECTIONS (Discipline & Secret Strategy) ===== */
.editorial {
  position: relative;
  padding: 120px 80px;
}
.editorial__glow {
  position: absolute; z-index: 1; pointer-events: none;
  width: 878px; height: 952px; overflow: hidden;
}
.editorial__glow svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.editorial__glow--center { top: -300px; left: 50%; transform: translateX(-50%); }
.editorial__glow--right { top: -200px; right: -200px; }

.editorial__inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 28px;
  position: relative; z-index: 2;
}
.editorial__kicker {
  font-family: var(--font-mono);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.08em; line-height: 140%;
  text-transform: uppercase;
  color: var(--text-purple);
  margin: 0;
}
.editorial__heading {
  font-family: var(--font-primary);
  font-size: 58px; font-weight: 500;
  letter-spacing: -0.04em; line-height: 108%;
  color: var(--text-heading);
  margin: 0;
  text-wrap: balance;
}
.editorial__divider {
  width: 64px; height: 2px; border-radius: 1px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
}
.editorial__body {
  max-width: 640px;
  display: flex; flex-direction: column;
  gap: 20px;
}
.editorial__body p {
  font-size: 18px; font-weight: 500;
  color: var(--text-body);
  letter-spacing: -0.015em; line-height: 160%;
  margin: 0; text-align: center;
}
.editorial__body p strong {
  color: var(--text-heading);
  font-weight: 600;
}
.editorial--alt .editorial__heading {
  /* Slight variation for second editorial */
}

/* ===== SELF-OPTIMIZING SETTINGS SECTION ===== */
.self-optimize {
  position: relative;
  padding: 120px 80px;
}
.self-optimize__glow {
  position: absolute; z-index: 1; pointer-events: none;
  width: 878px; height: 952px; overflow: hidden;
}
.self-optimize__glow svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.self-optimize__glow--left { top: -200px; left: -200px; }

.self-optimize__inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 32px;
  position: relative; z-index: 2;
}
.self-optimize__heading {
  font-family: var(--font-primary);
  font-size: 52px; font-weight: 500;
  letter-spacing: -0.04em; line-height: 110%;
  color: var(--text-heading);
  margin: 0;
  text-wrap: balance;
}
.self-optimize__accent-line {
  width: 48px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, #4DFFD4, #854DFF);
}
.self-optimize__body {
  max-width: 660px;
  display: flex; flex-direction: column;
  gap: 20px;
}
.self-optimize__body p {
  font-size: 18px; font-weight: 500;
  color: var(--text-body);
  letter-spacing: -0.015em; line-height: 160%;
  margin: 0; text-align: center;
}

/* Self-Optimize Steps (horizontal) */
.self-optimize__steps {
  display: flex; gap: 24px; width: 100%;
  margin-top: 16px;
}
.self-optimize__step {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
  padding: 32px 24px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  position: relative; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.self-optimize__step::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}
.self-optimize__step:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.14);
}
.self-optimize__step-num {
  font-family: var(--font-display);
  font-size: 48px; font-weight: 600;
  letter-spacing: -0.04em; line-height: 100%;
  background: linear-gradient(135deg, #4DFFD4 0%, #854DFF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.self-optimize__step-content {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px; text-align: center;
}
.self-optimize__step-content h4 {
  font-family: var(--font-primary);
  font-size: 16px; font-weight: 600;
  letter-spacing: -0.02em; line-height: 120%;
  color: var(--text-heading); margin: 0;
}
.self-optimize__step-content p {
  font-size: 14px; font-weight: 500;
  color: var(--text-muted);
  letter-spacing: -0.01em; line-height: 140%;
  margin: 0;
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(0, 1fr);
  gap: 24px;
  max-width: 1200px; margin: 0 auto; padding: 0;
}
.feature-card {
  border-radius: 48px; overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px; gap: 32px;
  position: relative;
  aspect-ratio: 1.32995;
  cursor: pointer;
}
.feature-card__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  mask-image: linear-gradient(rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 90%);
  -webkit-mask-image: linear-gradient(rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 90%);
}
.feature-card__body { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 8px; }
.feature-card__title {
  font-family: var(--font-display); font-size: 24px; font-weight: 500;
  letter-spacing: -0.04em; line-height: 0.9em; color: rgb(245, 245, 248); margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.feature-card__desc {
  font-family: var(--font-display); font-size: 15px; font-weight: 500;
  letter-spacing: -0.02em; line-height: 1.5em; color: rgb(171, 171, 171);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

/* ===== TUTORIAL ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.step {
  background: var(--bg-step);
  border-radius: 24px; padding: 32px;
  display: flex; flex-direction: column;
  justify-content: space-between; align-items: flex-start;
  gap: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.step__num {
  font-family: var(--font-display); font-size: 80px; font-weight: 600;
  letter-spacing: -0.04em; line-height: 100%;
  background: linear-gradient(90deg, #864eff 0%, #3f3bf2 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.step__img { width: 100%; aspect-ratio: 1; border-radius: 30px; overflow: hidden; border: 1px solid rgba(0, 0, 0, 0.06); }
.step__img img { width: 100%; height: auto; display: block; }
.step__text {
  font-family: var(--font-primary);
  font-size: 18px; font-weight: 500; letter-spacing: -0.02em; line-height: 125%; color: var(--text-dark-muted);
}
.tutorial-carousel { position: relative; }
.tutorial-controls {
  display: none;
  justify-content: space-between; align-items: center;
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none; padding: 0 4px; z-index: 2;
}
.tutorial-nav {
  width: 55px; height: 55px; border-radius: 50%;
  background: rgba(0, 0, 0, 0.65); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  pointer-events: auto;
  transition: opacity 0.3s;
}
.tutorial-nav:hover { background: rgba(0, 0, 0, 0.8); }
.tutorial-nav svg { width: 22px; height: 22px; color: #fff; }
.tutorial-nav[disabled] { opacity: 0; pointer-events: none; }

/* ===== BEFORE/AFTER SLIDER ===== */
.slider { position: relative; max-width: 1040px; margin: 0 auto; border-radius: 20px; overflow: hidden; cursor: col-resize; }
.slider__before, .slider__after { display: block; width: 100%; height: auto; }
.slider__after-wrap {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  clip-path: inset(0 0 0 50%);
}
.slider__handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 1px; background: rgba(255, 255, 255, 0.4); transform: translateX(-50%);
  z-index: 3; cursor: col-resize;
}
.slider__handle-icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 72px; height: 72px; border-radius: 1000px;
  background: rgba(0, 0, 0, 0.8);
  display: flex; align-items: center; justify-content: center;
}
.slider__handle-icon::before, .slider__handle-icon::after {
  content: ''; position: absolute; top: 50%;
  width: 0; height: 0; border-style: solid;
}
.slider__handle-icon::before {
  left: 16px; transform: translateY(-50%);
  border-width: 8px 10px 8px 0;
  border-color: transparent #fff transparent transparent;
}
.slider__handle-icon::after {
  right: 16px; transform: translateY(-50%);
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent #fff;
}
.slider__label {
  position: absolute; top: 16px; z-index: 2;
  background: #000; color: #fff; font-size: 14px; font-weight: 500;
  padding: 0; width: 72px; height: 34px; border-radius: 32px;
  display: flex; align-items: center; justify-content: center;
}
.slider__label--before { left: 24px; }
.slider__label--after { right: 24px; }

/* ===== LIVE MARKETS ===== */
.market-carousel-container {
  width: 788px; height: 460px;
  max-width: 100%; margin: 0 auto;
  position: relative; z-index: 2; flex: none;
}
.market-carousel {
  display: flex; overflow: hidden;
  width: 100%; height: 100%;
  position: relative; padding: 10px;
}
.market-carousel__track {
  display: flex;
  flex: 1 1 100%; width: 100%; height: 100%;
  gap: 10px; align-items: center; flex-direction: row;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.market-carousel__track::-webkit-scrollbar { display: none; }
.market-carousel__controls {
  display: flex;
  justify-content: space-between; align-items: center;
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none; padding: 40px;
  margin: 0; flex-direction: row; border: 0;
}
.market-carousel__nav {
  width: 40px; height: 40px; border-radius: 40px;
  background: rgba(98, 0, 255, 0.74); border: none;
  display: block;
  place-content: center; place-items: center;
  overflow: hidden; padding: 0; margin: 0;
  cursor: pointer; opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s;
  flex: none;
}
.market-carousel__nav[disabled] {
  opacity: 0; pointer-events: none; cursor: default;
}
.market-carousel__nav:hover { background: rgba(98, 0, 255, 0.9); }
.market-carousel__nav svg { width: 40px; height: 40px; display: block; }
.market-card {
  flex: 0 0 768px; height: 432px;
  border-radius: 30px; overflow: clip;
  position: relative;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  flex-shrink: 0;
}
.market-card__video {
  width: 100%; height: 100%;
  border-radius: 30px; overflow: hidden;
  position: absolute; top: 0; bottom: 0; left: 0;
}
.market-card__video .plyr { width: 100%; height: 100%; max-width: none; position: absolute; inset: 0; }
.market-card__video .plyr__video-wrapper { width: 100%; height: 100%; position: relative; }
.market-card__video video { width: 100%; height: 100%; display: block; object-fit: cover; }

/* ===== ALL FEATURES ===== */
.all-features {
  max-width: var(--max-width); margin: 60px auto 0;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 80px; padding: 0 0 40px;
}
.all-features__heading {
  font-family: var(--font-primary);
  font-size: 48px; font-weight: 500; letter-spacing: -0.04em; line-height: 100%;
  color: var(--text-heading); margin: 0;
}
.all-features__grid {
  display: flex; gap: 32px; width: 100%;
}
.all-features__item {
  flex: 1 0 0;
  display: flex; flex-direction: column; gap: 24px;
  padding-right: 40px;
}
.all-features__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.all-features__icon svg { width: 100%; height: 100%; display: block; }
.all-features__item h4 {
  font-family: var(--font-primary); font-size: 20px; font-weight: 500;
  letter-spacing: -0.04em; line-height: 100%; color: var(--text-heading); margin: 0;
}
.all-features__item p {
  font-size: 16px; font-weight: 500; letter-spacing: -0.01em; line-height: 130%;
  color: var(--text-body); margin: 0;
}

/* ===== PRICING (NEW SINGLE CARD) ===== */
.pricing-new .section__heading-area {
  max-width: 780px;
}

.pricing-card-single {
  max-width: 720px; margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(107, 107, 107, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  position: relative;
}
.pricing-card-single__glow {
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 200px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.08), transparent 70%);
  pointer-events: none; z-index: 0;
}
.pricing-card-single__header {
  padding: 40px 48px 0;
  position: relative; z-index: 1;
}
.pricing-card-single__intl {
  font-size: 16px; font-weight: 500;
  color: var(--text-dark-muted);
  letter-spacing: -0.01em; line-height: 150%;
  text-align: center; margin: 0;
}
.pricing-card-single__intl strong {
  color: var(--text-dark-heading);
  font-weight: 600;
}
.pricing-card-single__divider {
  height: 1px; margin: 24px 48px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
}
.pricing-card-single__includes {
  padding: 0 48px;
  position: relative; z-index: 1;
}
.pricing-card-single__includes-title {
  font-family: var(--font-primary);
  font-size: 20px; font-weight: 600;
  letter-spacing: -0.03em; line-height: 100%;
  color: var(--text-dark-heading);
  margin: 0 0 20px; text-align: center;
}
.pricing-card-single__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.pricing-card-single__item {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 500;
  letter-spacing: -0.01em; line-height: 130%;
  color: var(--text-dark-muted);
  padding: 6px 0;
}
.pricing-check {
  width: 20px; height: 20px; flex-shrink: 0;
  color: var(--color-primary);
  display: inline-block;
}
.pricing-card-single__price-block {
  text-align: center;
  padding: 28px 48px;
  background: linear-gradient(135deg, rgba(62, 58, 242, 0.06), rgba(124, 58, 237, 0.04));
  position: relative; z-index: 1;
}
.pricing-card-single__anchor {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500;
  color: var(--text-dark-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 100, 100, 0.5);
  margin: 0 0 8px;
}
.pricing-card-single__actual {
  font-family: var(--font-display);
  font-size: 52px; font-weight: 600;
  letter-spacing: -0.02em; line-height: 100%;
  color: var(--text-dark-heading);
  margin: 0;
}
.pricing-card-single__actual span {
  font-size: 22px; font-weight: 500;
  color: var(--text-dark-muted);
}
.pricing-card-single__intro {
  font-size: 14px; font-weight: 500;
  color: var(--text-dark-muted);
  letter-spacing: -0.01em; line-height: 150%;
  text-align: center; margin: 0;
  padding: 20px 48px 0;
  position: relative; z-index: 1;
}
.pricing-card-single__cta-wrap {
  padding: 28px 48px 40px;
  display: flex; justify-content: center;
  position: relative; z-index: 1;
}
.pricing-card-single__cta-wrap .btn--lg {
  min-width: 300px;
}

/* ===== CHECKOUT ===== */
.checkout { background: linear-gradient(#fff 0%, #f5f3fb 100%); overflow: visible; }
.checkout__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: var(--max-width); margin: 0 auto;
}
.checkout__card {
  background: var(--bg-checkout); border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px; padding: 28px;
  align-self: start;
  overflow: hidden;
  min-width: 0;
}
.checkout__card--whop { overflow: visible; }
.checkout__card h3 { font-family: var(--font-primary); font-size: 20px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.checkout__card p { font-size: 14px; color: var(--text-dark-muted); margin-bottom: 16px; line-height: 1.5; }
.checkout__whop {
  height: fit-content;
  border-radius: 12px;
  overflow-x: clip;
  overflow-y: visible;
}
/* The Whop loader reports a height (~695px) that's too short for the
   full checkout form. overflow:clip on the iframe clips the bottom
   of the content. min-height forces the iframe tall enough to show
   everything. The card is already 822px so this fills existing space
   rather than creating new blank space. */
.checkout__whop iframe { min-height: 820px !important; }

/* Payment ribbons (bank + wallet icons) */
.checkout__ribbons {
  display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px;
}
.checkout__ribbon-wrap {
  position: relative; width: 100%; overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, rgba(244, 243, 251, 0.6) 100%);
  border: 1px solid rgba(62, 58, 242, 0.1);
  box-shadow: 0 2px 8px rgba(62, 58, 242, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  padding: 18px 0;
}
.checkout__ribbon-wrap::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; z-index: 3;
  background: linear-gradient(90deg, transparent 5%, rgba(255, 255, 255, 0.9) 50%, transparent 95%);
}
.checkout__ribbon-fade {
  position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none;
}
.checkout__ribbon-fade--left { left: 0; background: linear-gradient(to right, #fff, transparent); }
.checkout__ribbon-fade--right { right: 0; background: linear-gradient(to left, rgba(244, 243, 251, 0.6), transparent); }
.checkout__ribbon {
  display: flex; gap: 18px;
  width: max-content;
  will-change: transform;
  animation: checkout-ribbon-scroll 50s linear infinite;
}
.checkout__ribbon--reverse {
  animation-name: checkout-ribbon-scroll-reverse;
  animation-duration: 32s;
}
.checkout__ribbon-track {
  display: flex; gap: 18px; align-items: center; flex-shrink: 0;
}
.checkout__ribbon-item {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 100px; height: 72px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  padding: 6px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.checkout__ribbon-item img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain;
}
.checkout__ribbon-wrap:hover .checkout__ribbon { animation-play-state: paused; }
.checkout__ribbon-wrap:hover .checkout__ribbon-item {
  box-shadow: 0 2px 8px rgba(62, 58, 242, 0.1);
  border-color: rgba(62, 58, 242, 0.15);
}
@keyframes checkout-ribbon-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes checkout-ribbon-scroll-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.checkout__wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; background: linear-gradient(135deg, #01411C, #0a8a4f); color: #fff;
  font-size: 15px; font-weight: 600; text-decoration: none;
  border-radius: 12px; padding: 16px 20px; border: 1px solid rgba(255, 255, 255, 0.15);
  transition: 0.2s;
}
.checkout__wa-btn:hover { filter: brightness(1.1); }
.checkout__wa-flag {
  font-size: 24px; line-height: 1; flex-shrink: 0;
  display: inline-flex; align-items: center;
}
.checkout__wa-btn-text { font-size: inherit; }
.checkout__wa-note { font-size: 12px; color: var(--text-dark-muted); text-align: center; margin-top: 8px; font-style: italic; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 4px; max-width: var(--max-width-narrow); margin: 0 auto; }
.faq-item {
  border-radius: 0;
  transition: border-radius 0.3s, background 0.3s;
}
.faq-item--open {
  background: var(--bg-faq-open);
  border-radius: 24px;
}
.faq-item__question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 24px; cursor: pointer; gap: 16px;
  font-family: var(--font-primary); font-size: 18px; font-weight: 500;
  letter-spacing: -0.01em; line-height: 110%;
  color: var(--text-muted); transition: color 0.3s cubic-bezier(0.44, 0, 0.56, 1);
  user-select: none; width: 100%; text-align: left;
}
.faq-item--open .faq-item__question { color: var(--text-heading); }
.faq-item__question:hover { color: var(--text-heading); }
.faq-item__question span { width: 90%; text-align: left; }
.faq-item__plus {
  position: relative; width: 16px; height: 16px; flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item__plus span {
  position: absolute; background: #7a7a7a; border-radius: 10px;
  transition: 0.3s;
}
.faq-item__plus span:first-child { top: calc(50% - 1px); left: calc(50% - 8px); width: 16px; height: 2px; }
.faq-item__plus span:last-child { left: calc(50% - 1px); top: calc(50% - 8px); width: 2px; height: 16px; }
.faq-item--open .faq-item__plus { transform: rotate(45deg); }
.faq-item--open .faq-item__plus span { background: #cccccc; }
.faq-item__answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}
.faq-item--open .faq-item__answer { max-height: 500px; padding: 0 24px 28px; }
.faq-item__answer p {
  font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 500;
  letter-spacing: -0.01em; line-height: 140%; color: var(--text-muted);
  padding-right: 20px; text-align: left;
}

/* ===== FAQ HELP ===== */
.faq-help {
  text-align: center;
  margin-top: 80px;
  max-width: var(--max-width-narrow);
  margin-left: auto; margin-right: auto;
  display: flex; flex-direction: column; align-items: center;
  gap: 24px;
}
.faq-help__row {
  display: flex; flex-direction: row; align-items: center;
  gap: 10px;
}
.faq-help__text {
  font-family: var(--font-primary);
  font-size: 18px; font-weight: 500; letter-spacing: -0.02em; line-height: 140%;
  color: var(--text-heading); margin: 0; white-space: pre;
}
.faq-help__btn { display: inline-flex; }
.faq-help__divider {
  height: 1px; width: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 49.099%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.2;
}

/* ===== CLOSING CTA ===== */
.closing-cta {
  position: relative;
  padding: 140px 80px;
}
.closing-cta__glow {
  position: absolute; z-index: 1; pointer-events: none;
  width: 878px; height: 952px; overflow: hidden;
}
.closing-cta__glow svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.closing-cta__glow--center { top: -350px; left: 50%; transform: translateX(-50%); }

.closing-cta__inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 32px;
  position: relative; z-index: 2;
}
.closing-cta__heading {
  font-family: var(--font-primary);
  font-size: 62px; font-weight: 500;
  letter-spacing: -0.04em; line-height: 108%;
  color: var(--text-heading); margin: 0;
  text-wrap: balance;
}
.closing-cta__body {
  max-width: 620px;
  font-size: 18px; font-weight: 500;
  color: var(--text-body);
  letter-spacing: -0.015em; line-height: 160%;
  margin: 0;
}
.closing-cta__btn {
  margin-top: 8px;
}
.closing-cta__note {
  font-size: 14px; font-weight: 500;
  color: var(--text-muted);
  letter-spacing: -0.01em; margin: 0;
}

/* ===== SETUP PAGE ===== */
.setup-page {
  padding: 44px 80px 50px;
}
.setup-page__inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  gap: 35px;
}
.setup-page__heading-area {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px;
  width: 100%;
}
.setup-page__heading {
  font-family: var(--font-primary);
  font-size: 45px; font-weight: 600;
  letter-spacing: -0.04em; line-height: 120%;
  color: var(--text-heading);
  margin: 0;
  text-align: center;
  text-wrap: balance;
}
.setup-page__sub {
  font-size: 20px; font-weight: 500;
  letter-spacing: -0.01em; line-height: 140%;
  color: var(--text-body);
  margin: 0;
  text-align: center;
}
.setup-page__video {
  width: 100%; max-width: 1024px;
  border-radius: 20px; overflow: hidden;
}
.setup-page__video .plyr {
  border-radius: 20px;
  --plyr-color-main: var(--color-primary-light);
  --plyr-video-background: transparent;
}
.setup-page__video .plyr__video-wrapper {
  border-radius: 20px;
  overflow: hidden;
}
.setup-page__video video {
  width: 100%;
  display: block;
}
/* Setup guide: controls auto-hide like normal player (handled by Plyr + base overrides) */
/* Reset border-radius in fullscreen so it doesn't clip the video */
.setup-page__video .plyr--fullscreen,
.setup-page__video .plyr:fullscreen,
.setup-page__video .plyr--fullscreen .plyr__video-wrapper,
.setup-page__video .plyr:fullscreen .plyr__video-wrapper {
  border-radius: 0 !important;
}
.setup-page__actions {
  display: flex; flex-direction: column; align-items: center;
  gap: 20px;
  width: 100%; max-width: 416px;
}
.setup-page__btn {
  width: 100%;
  justify-content: center;
}
.setup-page__btn--main {
  font-size: 17px;
}
.setup-page__support {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 416px;
  margin-top: 48px;
  padding: 20px 0;
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 100%, rgba(62, 58, 242, 0.3) 0%, rgba(62, 58, 242, 0.12) 40%, transparent 70%);
  border: 1px solid rgba(62, 58, 242, 0.2);
}
.setup-page__support-text {
  position: relative; z-index: 1;
  font-size: 16px; font-weight: 500;
  color: var(--text-heading);
  margin: 0;
}
.setup-page__support .btn {
  position: relative; z-index: 1;
}

/* ===== ACCESS PAGE (post-purchase) ===== */
.access-page {
  position: relative;
  padding: 44px 80px 60px;
  overflow: hidden;
}
.access-page__glow {
  position: absolute; z-index: 0; pointer-events: none;
  width: 878px; height: 952px; overflow: hidden;
}
.access-page__glow svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.access-page__glow--center { top: -300px; left: 50%; transform: translateX(-50%); }
.access-page__inner {
  max-width: 640px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  gap: 32px;
  position: relative; z-index: 1;
}

/* Green badge variant */
.badge--green {
  background: var(--color-green-bg);
  border: 1px solid var(--color-green-border);
}
.badge--green .badge__dot { background: var(--color-green); }
.badge--green .badge__text { color: var(--color-green); }

/* Checkmark animation */
.access-page__checkmark {
  width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
}
.access-page__checkmark-svg { width: 80px; height: 80px; }
.access-page__checkmark-circle {
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  animation: checkmark-circle-draw 0.6s ease-out 0.2s forwards;
  filter: drop-shadow(0 0 8px rgba(63, 210, 138, 0.3));
}
.access-page__checkmark-tick {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: checkmark-tick-draw 0.35s ease-out 0.7s forwards;
}
@keyframes checkmark-circle-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes checkmark-tick-draw {
  to { stroke-dashoffset: 0; }
}

/* Heading */
.access-page__heading-area {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; text-align: center;
}
.access-page__heading {
  font-family: var(--font-primary);
  font-size: 42px; font-weight: 600;
  letter-spacing: -0.04em; line-height: 115%;
  color: var(--text-heading); margin: 0;
  text-wrap: balance;
}
.access-page__sub {
  font-size: 18px; font-weight: 500;
  letter-spacing: -0.015em; line-height: 150%;
  color: var(--text-body); margin: 0;
  text-align: center; max-width: 480px;
}

/* Download card */
.access-page__download-card {
  width: 100%;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 28px;
  position: relative; overflow: hidden;
}
.access-page__download-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(63, 210, 138, 0.2), transparent);
}
.access-page__download-card-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.access-page__file-info {
  display: flex; align-items: center; gap: 14px;
}
.access-page__file-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(63, 210, 138, 0.08);
  border: 1px solid rgba(63, 210, 138, 0.15);
  border-radius: 12px;
}
.access-page__file-details {
  display: flex; flex-direction: column; gap: 2px;
}
.access-page__file-name {
  font-family: var(--font-mono);
  font-size: 15px; font-weight: 600;
  color: var(--text-heading);
  letter-spacing: -0.01em;
}
.access-page__file-desc {
  font-size: 13px; font-weight: 500;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}
.access-page__download-btn {
  flex-shrink: 0;
  background: var(--color-green) !important;
  color: #070018 !important;
  box-shadow: 0 4px 24px rgba(63, 210, 138, 0.25), var(--shadow-btn) !important;
}
.access-page__download-btn:hover {
  background: #32c07d !important;
  box-shadow: 0 4px 32px rgba(63, 210, 138, 0.4), var(--shadow-btn) !important;
}
.access-page__download-icon {
  width: 24px; height: 24px; flex-shrink: 0;
}
.access-page__download-note {
  font-size: 13px; font-weight: 500;
  color: var(--text-muted);
  letter-spacing: -0.01em; line-height: 150%;
  text-align: center; margin: 16px 0 0;
}
.access-page__download-note a {
  color: var(--text-purple);
  text-decoration: underline;
  text-decoration-color: rgba(221, 214, 254, 0.3);
  transition: text-decoration-color 0.3s, color 0.3s;
}
.access-page__download-note a:hover {
  color: #fff;
  text-decoration-color: rgba(221, 214, 254, 0.6);
}

/* Journey stepper */
.access-page__journey {
  display: flex; align-items: center; gap: 0;
  width: 100%; max-width: 480px;
}
.access-page__step {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; flex: 0 0 auto;
}
.access-page__step-icon {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  transition: all 0.3s;
}
.access-page__step--done .access-page__step-icon {
  background: rgba(63, 210, 138, 0.1);
  border-color: rgba(63, 210, 138, 0.3);
  color: var(--color-green);
}
.access-page__step--active .access-page__step-icon {
  background: rgba(62, 58, 242, 0.12);
  border-color: rgba(62, 58, 242, 0.3);
  color: var(--color-primary);
  box-shadow: 0 0 16px rgba(62, 58, 242, 0.2);
  animation: step-pulse 2s ease-in-out infinite;
}
@keyframes step-pulse {
  0%, 100% { box-shadow: 0 0 12px rgba(62, 58, 242, 0.15); }
  50% { box-shadow: 0 0 24px rgba(62, 58, 242, 0.3); }
}
.access-page__step-label {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.04em; line-height: 130%;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
}
.access-page__step--done .access-page__step-label { color: var(--color-green); }
.access-page__step--active .access-page__step-label { color: var(--text-purple); }
.access-page__step-line {
  flex: 1; height: 1px; min-width: 32px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 12px;
  align-self: flex-start; margin-top: 20px;
}
.access-page__step-line--active {
  background: linear-gradient(90deg, var(--color-green), var(--color-primary));
}

/* CTA group */
.access-page__cta-group {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; width: 100%; max-width: 380px;
}
.access-page__cta-main {
  width: 100%; justify-content: center;
}
.access-page__cta-note {
  font-size: 14px; font-weight: 500;
  color: var(--text-muted);
  letter-spacing: -0.01em; line-height: 140%;
  text-align: center; margin: 0;
}

/* Support box (same pattern as setup page) */
.access-page__support {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  gap: 10px;
  width: 100%; max-width: 416px;
  padding: 20px 0;
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 100%, rgba(62, 58, 242, 0.3) 0%, rgba(62, 58, 242, 0.12) 40%, transparent 70%);
  border: 1px solid rgba(62, 58, 242, 0.2);
}
.access-page__support-text {
  position: relative; z-index: 1;
  font-size: 16px; font-weight: 500;
  color: var(--text-heading);
  margin: 0;
}
.access-page__support-btn {
  position: relative; z-index: 1;
}

/* Download button "done" state */
.access-page__download-btn--done {
  background: rgba(63, 210, 138, 0.15) !important;
  color: var(--color-green) !important;
  box-shadow: none !important;
}

/* Static (non-clickable) logo */
.navbar__logo--static {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-primary); font-size: 20px; font-weight: 500;
  letter-spacing: -0.03em; line-height: 110%; color: #fff;
  cursor: default; user-select: none;
}
.footer__logo--static {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-primary); font-size: 20px; font-weight: 500;
  letter-spacing: -0.03em; line-height: 110%; color: #fff;
  cursor: default; user-select: none;
}

/* ===== DOWNLOAD CONFIRMATION MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8, 0, 26, 0.85);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  padding: 20px;
}
.modal-overlay--visible {
  opacity: 1; visibility: visible;
}
.modal {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px 36px;
  max-width: 440px; width: 100%;
  display: flex; flex-direction: column; align-items: center;
  gap: 20px; text-align: center;
  position: relative; overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-overlay--visible .modal {
  transform: translateY(0);
}
.modal::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}
.modal__icon { flex-shrink: 0; }
.modal__title {
  font-family: var(--font-primary);
  font-size: 24px; font-weight: 600;
  letter-spacing: -0.03em; line-height: 120%;
  color: var(--text-heading); margin: 0;
}
.modal__text {
  font-size: 15px; font-weight: 500;
  color: var(--text-body);
  letter-spacing: -0.01em; line-height: 150%;
  margin: 0;
}
.modal__text strong { color: var(--text-heading); font-weight: 600; }
.modal__actions {
  display: flex; flex-direction: column;
  gap: 10px; width: 100%; margin-top: 4px;
}
.modal__btn { width: 100%; justify-content: center; }
.modal__btn--confirm {
  background: var(--color-green) !important;
  color: #070018 !important;
  box-shadow: 0 4px 24px rgba(63, 210, 138, 0.25), var(--shadow-btn) !important;
}
.modal__btn--confirm:hover {
  background: #32c07d !important;
  box-shadow: 0 4px 32px rgba(63, 210, 138, 0.4), var(--shadow-btn) !important;
}
.modal__btn--confirm-primary {
  box-shadow: 0 4px 24px rgba(62, 58, 242, 0.3), var(--shadow-btn) !important;
}
.modal__btn--confirm-primary:hover {
  box-shadow: 0 4px 32px rgba(62, 58, 242, 0.45), var(--shadow-btn) !important;
}

/* ===== GUIDES LAYOUT ===== */
.guides-layout {
  display: flex;
  min-height: calc(100vh - 85px);
  background: var(--bg-dark);
  padding-left: 80px;
}
.guides-sidebar {
  position: sticky; top: 85px;
  width: 280px; flex-shrink: 0;
  height: calc(100vh - 85px);
  overflow-y: auto;
  border-right: 1px solid rgba(255,255,255,0.06);
  background: var(--bg-dark-alt);
  padding: 24px 20px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.guides-sidebar__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 8px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 16px;
}
.guides-sidebar__title {
  font-family: var(--font-primary);
  font-size: 15px; font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-heading);
}
.guides-sidebar__close {
  display: none;
  background: none; border: none; color: var(--text-muted);
  font-size: 24px; cursor: pointer; padding: 4px;
}
.guides-sidebar__nav { padding: 0 4px; }
.guides-nav-group { margin-bottom: 8px; }
.guides-nav-group__toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 8px 12px;
  font-family: var(--font-primary);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.02em; line-height: 140%;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none; border: none; cursor: pointer;
  border-radius: 8px;
  transition: color 0.2s;
}
.guides-nav-group__toggle:hover { color: var(--text-heading); }
.guides-nav-group__toggle::after {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.guides-nav-group__toggle[aria-expanded="false"]::after {
  transform: rotate(-90deg);
}
.guides-nav-group__list {
  list-style: none; padding: 0; margin: 4px 0 0;
}
.guides-nav-link {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px;
  font-family: var(--font-primary);
  font-size: 14px; font-weight: 500;
  letter-spacing: -0.01em; line-height: 140%;
  color: var(--text-body);
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.guides-nav-link:hover {
  color: var(--text-heading);
  background: rgba(255,255,255,0.04);
}
.guides-nav-link--active {
  color: var(--text-heading);
  background: rgba(62, 58, 242, 0.12);
  font-weight: 600;
}
.guides-nav-link__icon { font-size: 16px; flex-shrink: 0; width: 20px; text-align: center; }

/* Main content */
.guides-content {
  flex: 1; min-width: 0;
  padding: 48px 56px 96px;
  max-width: 860px;
}
.guide-article h1 {
  font-family: var(--font-primary);
  font-size: 36px; font-weight: 600;
  letter-spacing: -0.03em; line-height: 115%;
  color: var(--text-heading);
  margin: 0 0 32px;
}
.guide-article h3 {
  font-family: var(--font-primary);
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.02em; line-height: 130%;
  color: var(--text-heading);
  margin: 0 0 16px;
}
.guide-article h4 {
  font-family: var(--font-primary);
  font-size: 18px; font-weight: 600;
  letter-spacing: -0.02em; line-height: 130%;
  color: var(--text-heading);
  margin: 28px 0 12px;
}
.guide-article p {
  font-size: 16px; font-weight: 500;
  letter-spacing: -0.01em; line-height: 165%;
  color: var(--text-body);
  margin: 0 0 16px;
}
.guide-article strong { color: var(--text-heading); font-weight: 600; }
.guide-article a {
  color: var(--text-purple);
  text-decoration: underline;
  text-decoration-color: rgba(221, 214, 254, 0.3);
  transition: text-decoration-color 0.3s, color 0.3s;
}
.guide-article a:hover { color: #fff; text-decoration-color: rgba(221, 214, 254, 0.6); }
.guide-article ul, .guide-article ol {
  padding-left: 24px;
  margin: 0 0 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.guide-article li {
  font-size: 16px; font-weight: 500;
  letter-spacing: -0.01em; line-height: 165%;
  color: var(--text-body);
}
.guide-article li ul, .guide-article li ol {
  margin-top: 8px; margin-bottom: 0;
}
.guide-article blockquote {
  margin: 0 0 16px;
  padding: 16px 20px;
  border-left: 3px solid var(--color-primary);
  background: rgba(62, 58, 242, 0.06);
  border-radius: 0 12px 12px 0;
}
.guide-article blockquote p {
  margin: 0;
  font-size: 15px;
  color: var(--text-body);
}
.guide-article hr {
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 28px 0;
}

/* Guide table */
.guide-table-wrap {
  overflow-x: auto;
  margin: 0 0 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.07);
}
.guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.guide-table th {
  text-align: left;
  padding: 14px 20px;
  font-family: var(--font-primary);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-purple);
  background: rgba(62, 58, 242, 0.08);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.guide-table td {
  padding: 12px 20px;
  font-weight: 500;
  color: var(--text-body);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.guide-table tr:last-child td { border-bottom: none; }
.guide-table td strong { color: var(--text-heading); }

/* Bottom navigation */
.guide-nav-bottom {
  display: flex; gap: 16px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.guide-nav-bottom__link {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  flex: 1;
}
.guide-nav-bottom__link:hover {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
}
.guide-nav-bottom__link--next { justify-content: flex-end; text-align: right; }
.guide-nav-bottom__arrow {
  width: 20px; height: 20px; flex-shrink: 0;
  color: var(--text-muted);
}
.guide-nav-bottom__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; line-height: 140%;
  text-transform: uppercase;
  color: var(--text-purple);
}
.guide-nav-bottom__title {
  display: block;
  font-size: 15px; font-weight: 600;
  letter-spacing: -0.01em; line-height: 140%;
  color: var(--text-heading);
}

/* Mobile sidebar toggle */
.guides-sidebar-toggle {
  display: none;
  position: fixed; bottom: 24px; left: 24px; z-index: 50;
  align-items: center; gap: 8px;
  padding: 12px 20px;
  background: var(--color-primary);
  color: #fff;
  border: none; border-radius: 14px;
  font-family: var(--font-primary);
  font-size: 14px; font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(62, 58, 242, 0.4);
}
.guides-sidebar-toggle svg { width: 18px; height: 18px; }
.guides-sidebar-overlay {
  display: none; position: fixed; inset: 0; z-index: 89;
  background: rgba(0,0,0,0.6);
}
.guides-sidebar-overlay--visible { display: block; }

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 60px 80px 96px;
  background: var(--bg-dark);
  min-height: 80vh;
}
.legal-page__header {
  display: flex; flex-direction: column; align-items: center;
  gap: 16px;
  max-width: var(--max-width); margin: 0 auto 56px; width: 100%;
  text-align: center;
}
.legal-page__title {
  font-family: var(--font-primary);
  font-size: 52px; font-weight: 500;
  letter-spacing: -0.04em; line-height: 105%;
  color: var(--text-heading); margin: 0;
  text-wrap: balance;
}
.legal-page__updated {
  font-size: 16px; font-weight: 500;
  color: var(--text-muted);
  letter-spacing: -0.01em; margin: 0;
}
.legal-page__content {
  max-width: 840px; margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 40px;
}
.legal-section {
  display: flex; flex-direction: column;
  gap: 16px;
}
.legal-section h2 {
  font-family: var(--font-primary);
  font-size: 24px; font-weight: 600;
  letter-spacing: -0.03em; line-height: 120%;
  color: var(--text-heading); margin: 0;
}
.legal-section h3 {
  font-family: var(--font-primary);
  font-size: 18px; font-weight: 600;
  letter-spacing: -0.02em; line-height: 130%;
  color: var(--text-heading); margin: 8px 0 0;
}
.legal-section p {
  font-size: 16px; font-weight: 500;
  letter-spacing: -0.01em; line-height: 160%;
  color: var(--text-body); margin: 0;
}
.legal-section p strong {
  color: var(--text-heading);
  font-weight: 600;
}
.legal-section ul {
  display: flex; flex-direction: column;
  gap: 8px; padding-left: 24px;
  list-style: disc;
}
.legal-section li {
  font-size: 16px; font-weight: 500;
  letter-spacing: -0.01em; line-height: 160%;
  color: var(--text-body);
}
.legal-section a {
  color: var(--text-purple);
  text-decoration: underline;
  text-decoration-color: rgba(221, 214, 254, 0.3);
  transition: text-decoration-color 0.3s, color 0.3s;
}
.legal-section a:hover {
  color: #fff;
  text-decoration-color: rgba(221, 214, 254, 0.6);
}

/* Imprint info grid */
.legal-info-grid {
  display: flex; flex-direction: column;
  gap: 16px;
}
.legal-info-item {
  display: flex; flex-direction: column;
  gap: 4px;
}
.legal-info-label {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; line-height: 20px;
  text-transform: uppercase;
  color: var(--text-purple);
}
.legal-info-value {
  font-size: 16px; font-weight: 500;
  letter-spacing: -0.01em; line-height: 160%;
  color: var(--text-heading);
}
.legal-info-value a {
  color: var(--text-purple);
  text-decoration: underline;
  text-decoration-color: rgba(221, 214, 254, 0.3);
  transition: text-decoration-color 0.3s, color 0.3s;
}
.legal-info-value a:hover {
  color: #fff;
  text-decoration-color: rgba(221, 214, 254, 0.6);
}

/* ===== DISCLAIMER ===== */
.disclaimer-section {
  padding: 0 60px 96px;
  position: relative; z-index: 2;
}
.disclaimer-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  gap: 80px;
}
.disclaimer-section__divider {
  height: 1px; width: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 49.099%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.2;
}
.disclaimer-section__content {
  width: 813px; max-width: 100%;
  display: flex; flex-direction: column; gap: 16px;
  text-align: center;
}
.disclaimer-section__links {
  font-family: var(--font-primary);
  font-size: 18px; font-weight: 500; letter-spacing: -0.02em; line-height: 140%;
  color: var(--text-dark-muted); text-align: center;
}
.disclaimer-section__links a {
  color: #ccc; text-decoration: none;
  transition: color 0.3s cubic-bezier(0.44, 0, 0.56, 1);
}
.disclaimer-section__links a:hover { color: #7a7a7a; text-decoration: underline; }
.disclaimer-section__content p {
  font-family: var(--font-primary);
  font-size: 18px; font-weight: 500; letter-spacing: -0.02em; line-height: 140%;
  color: var(--text-dark-muted); text-align: center;
}
.disclaimer-section__content p a {
  color: #ccc; text-decoration: none;
  transition: color 0.3s cubic-bezier(0.44, 0, 0.56, 1);
}
.disclaimer-section__content p a:hover { color: #7a7a7a; text-decoration: underline; }

/* ===== FOOTER ===== */
.footer {
  max-width: var(--max-width);
  margin: 0 auto; padding: 0 60px 32px;
}
.footer__divider {
  height: 1px; width: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 49.099%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.2; margin-bottom: 24px;
}
.footer__row {
  display: flex;
  justify-content: space-between; align-items: center;
  width: 100%;
}
.footer__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-primary); font-size: 20px; font-weight: 500;
  letter-spacing: -0.03em; line-height: 110%; color: #fff;
  text-decoration: none;
}
.footer__logo-img { width: 52px; height: 51px; object-fit: cover; }
.footer__copy {
  font-family: var(--font-primary); font-size: 16px; font-weight: 400;
  letter-spacing: -0.02em; line-height: 140%; color: var(--text-muted);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal--visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ===== PLYR VIDEO PLAYER OVERRIDES ===== */
.plyr { border-radius: inherit; height: 100%; }
.plyr video { border-radius: inherit; object-fit: cover; }
.plyr--video { background: #000; }
.plyr__control--overlaid {
  background: rgba(98, 0, 255, 0.85) !important;
  border: 0 !important;
  border-radius: 50% !important;
  width: 56px !important; height: 56px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.plyr__control--overlaid:hover { background: rgba(98, 0, 255, 1) !important; }
.plyr--video .plyr__controls {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  border-radius: 0 0 inherit inherit;
  padding: 10px 12px;
}
.plyr__control {
  border-radius: 4px;
  transition: background 0.2s;
}
.plyr__control:hover { background: rgba(255, 255, 255, 0.15); }
.plyr__progress input[type="range"] { color: var(--color-primary-light); }
.plyr__volume input[type="range"] { color: var(--color-primary-light); }
.plyr__time { font-size: 12px; opacity: 0.7; }
/* VSL: hide controls when paused, show when playing */
.plyr--video.plyr--paused .plyr__controls { opacity: 0; visibility: hidden; transition: opacity 0.3s 0.3s, visibility 0.3s 0.3s; }
.plyr--video.plyr--playing .plyr__controls { opacity: 1; visibility: visible; transition: opacity 0.2s, visibility 0s; }
/* Demo: no controls bar — only the big play overlay */
.plyr--demo-wrap .plyr__controls { display: none !important; }

/* Fullscreen: contain video so it fits the screen properly without cropping */
.plyr--fullscreen { max-width: none; width: 100%; height: 100%; }
.plyr--fullscreen video { object-fit: contain !important; width: 100%; height: 100%; }
.plyr--fullscreen .plyr__video-wrapper { width: 100%; height: 100%; }
.plyr:fullscreen { max-width: none; width: 100%; height: 100%; }
.plyr:fullscreen video { object-fit: contain !important; width: 100%; height: 100%; }
.plyr:fullscreen .plyr__video-wrapper { width: 100%; height: 100%; }

/* ===== GRADIENT TEXT & PULSE EFFECTS ===== */
.text-gradient {
  background: linear-gradient(135deg, #4DFFD4 0%, #854DFF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn--pulse {
  animation: btn-pulse 2s ease-in-out infinite;
}
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(62, 58, 242, 0.3), var(--shadow-btn); }
  50% { box-shadow: 0 4px 40px rgba(62, 58, 242, 0.5), var(--shadow-btn); }
}

/* ===== RESPONSIVE: TABLET (≤1199px) ===== */
@media (max-width: 1199px) {
  .container { padding: 0 40px; }
  .section { padding: 80px 40px; }
  .section__heading { font-size: 46px; }
  .navbar { padding: 0 24px; }
  .navbar__nav { gap: 24px; }
  .hero { padding: 44px 40px 120px; }
  .hero__sub { font-size: 16px; }
  .section__sub { font-size: 16px; }
  .step__num { font-size: 60px; }
  .step__text { font-size: 16px; }
  .market-carousel-container { width: 100%; height: auto; }
  .market-carousel { height: auto; }
  .market-card { flex: 0 0 90vw; height: auto; aspect-ratio: 16/9; }
  .market-card__video { position: relative; aspect-ratio: 16/9; }
  .market-card__video .plyr { position: absolute; inset: 0; width: 100%; height: 100%; }
  .market-card__video video { object-fit: cover; }
  .all-features__grid { flex-wrap: wrap; }
  .all-features__item { flex: 1 1 calc(50% - 16px); }
  .faq-help__text { font-size: 16px; }
  .disclaimer-section__content p,
  .disclaimer-section__links { font-size: 16px; }

  /* Truth section tablet */
  .truth { padding: 100px 40px 80px; }
  .truth__heading { font-size: 42px; }
  .truth__sub { font-size: 17px; }
  .truth__trust { gap: 12px; }
  .truth__trust-item { padding: 14px 20px; }

  /* Editorial tablet */
  .editorial { padding: 100px 40px; }
  .editorial__heading { font-size: 42px; }
  .editorial__body p { font-size: 17px; }

  /* Self-optimize tablet */
  .self-optimize { padding: 100px 40px; }
  .self-optimize__heading { font-size: 38px; }

  /* Closing CTA tablet */
  .closing-cta { padding: 120px 40px; }
  .closing-cta__heading { font-size: 42px; }

  /* Pricing tablet */
  .pricing-card-single__header { padding: 32px 36px 0; }
  .pricing-card-single__divider { margin: 20px 36px; }
  .pricing-card-single__includes { padding: 0 36px; }
  .pricing-card-single__intro { padding: 16px 36px 0; }
  .pricing-card-single__cta-wrap { padding: 24px 36px 36px; }
  .pricing-card-single__actual { font-size: 44px; }

  /* Access page tablet */
  .access-page { padding: 44px 40px 60px; }
  .access-page__heading { font-size: 36px; }
  .access-page__sub { font-size: 17px; }
  .access-page__download-card { padding: 24px; }
  .modal { padding: 32px 28px; border-radius: 20px; }

  /* Setup page tablet */
  .setup-page { padding: 44px 40px 50px; }
  .setup-page__heading { font-size: 36px; }
  .setup-page__sub { font-size: 18px; }

  /* Guides tablet */
  .guides-layout { padding-left: 40px; }
  .guides-sidebar { width: 260px; padding: 24px 16px; }
  .guides-content { padding: 36px 36px 80px; }

  /* Legal pages tablet */
  .legal-page { padding: 48px 40px 80px; }
  .legal-page__title { font-size: 40px; }
  .legal-page__content { gap: 32px; }
  .legal-section h2 { font-size: 22px; }
  .legal-section p, .legal-section li, .legal-info-value { font-size: 15px; }

  /* Checkout ribbon tablet */
  .checkout__ribbon-item { width: 90px; height: 64px; padding: 5px; }
  .checkout__ribbon { gap: 14px; }
  .checkout__ribbon-track { gap: 14px; }
}

/* ===== RESPONSIVE: MOBILE (≤809px) ===== */
@media (max-width: 809px) {
  .container { padding: 0; }

  /* Navbar — fixed position on mobile */
  .navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0 20px; }
  .navbar__inner { padding: 16px 0; }
  .navbar__nav { display: none; }
  .navbar__mobile-toggle { display: flex; }
  .navbar__nav--open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-overlay-heavy); backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    padding: 16px 0; gap: 8px; z-index: 20;
  }
  .navbar__nav--open .navbar__link {
    padding: 6px 20px; font-size: 16px; width: 100%; display: block;
  }
  .navbar__actions { display: none; }

  /* Hero */
  .hero { padding: 97px 20px 25px; gap: 60px; }
  .hero__text-content { gap: 32px; }
  .hero__heading-area { gap: 21px; }
  .hero__h1 { font-size: 30px; line-height: 110%; }
  .hero__h1-wrap { padding: 0; }
  .hero__video { width: 352px; height: 198px; border-radius: 20px; max-width: 100%; }
  .hero__video .plyr { width: 100%; height: 100%; max-width: none; }
  .hero__video video { width: 100%; height: 100%; object-fit: cover; }
  .hero__descr-wrap { max-width: unset; }
  .hero__sub { width: 99%; font-size: 16px; }
  .hero__btns { flex-direction: column; gap: 16px; width: 100%; }
  .hero__btns .btn { width: 100%; }

  /* Social Proof */
  .social-proof { gap: 12px; padding: 0 32px; }
  .social-proof__item { height: 80px; }

  /* Sections */
  .section { padding: 40px 20px; scroll-margin-top: 80px; }
  .section__heading { font-size: 28px; line-height: 110%; }
  .section__heading-area { margin-bottom: 24px; }
  .section__sub { font-size: 16px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-radius: 24px; aspect-ratio: 1.1; }

  /* Steps — horizontal scroll on mobile */
  .tutorial-carousel { overflow: hidden; }
  .tutorial-controls { display: flex; }
  .steps {
    display: flex; flex-direction: row;
    overflow-x: auto; overflow-y: hidden;
    gap: 24px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; padding: 0;
  }
  .steps::-webkit-scrollbar { display: none; }
  .step {
    flex: 0 0 80vw;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    min-height: auto; padding: 32px; gap: 32px;
  }
  .step__num { font-size: 80px; }
  .step__text { font-size: 18px; }

  /* Market carousel */
  .market-carousel-container { width: 100%; height: auto; }
  .market-carousel { height: auto; }
  .market-card { flex: 0 0 85vw; height: auto; aspect-ratio: 16/9; }
  .market-card__video { position: relative; aspect-ratio: 16/9; }
  .market-card__video .plyr { position: absolute; inset: 0; width: 100%; height: 100%; }
  .market-card__video video { object-fit: cover; }
  .market-carousel__controls { padding: 16px; }
  .market-carousel__nav { width: 36px; height: 36px; }
  .market-carousel__nav svg { width: 36px; height: 36px; }

  /* Checkout */
  .checkout__grid { grid-template-columns: 1fr; }
  .checkout__card { padding: 20px; }
  .checkout__wa-btn { padding: 14px 16px; font-size: 14px; }
  .checkout__wa-flag { font-size: 22px; }
  .checkout__ribbon-wrap { padding: 14px 0; }
  .checkout__ribbon-fade { width: 36px; }
  .checkout__ribbon-item { width: 80px; height: 58px; padding: 5px; border-radius: 12px; }
  .checkout__ribbon { gap: 12px; animation-duration: 35s !important; }
  .checkout__ribbon--reverse { animation-duration: 24s !important; }
  .checkout__ribbon-track { gap: 12px; }
  .checkout__ribbons { gap: 12px; margin-bottom: 16px; }

  /* Slider */
  .slider { width: calc(100% + 24px); margin: 0 -12px; height: 340px; border-radius: 15px; max-width: none; background: #0f0f0f; }
  .slider__before, .slider__after { height: 100%; width: 100%; object-fit: fill; }
  .slider__label { font-size: 12px; width: 60px; height: 28px; }
  .slider__handle-icon { width: 56px; height: 56px; }

  /* FAQ */
  #faq { overflow: hidden; }
  .faq-help__text { font-size: 16px; white-space: normal; }

  /* Access page mobile */
  .access-page { padding: 97px 20px 40px; }
  .access-page__inner { gap: 26px; }
  .access-page__heading { font-size: 26px; line-height: 120%; }
  .access-page__sub { font-size: 16px; }
  .access-page__checkmark { width: 64px; height: 64px; }
  .access-page__checkmark-svg { width: 64px; height: 64px; }
  .access-page__download-card { padding: 20px; border-radius: 16px; }
  .access-page__download-card-inner { flex-direction: column; align-items: stretch; text-align: center; }
  .access-page__file-info { justify-content: center; }
  .access-page__download-btn { width: 100%; justify-content: center; }
  .access-page__step-label { font-size: 10px; }
  .access-page__step-icon { width: 36px; height: 36px; }
  .access-page__step-icon svg { width: 16px; height: 16px; }
  .access-page__step-line { margin-top: 18px; }
  .access-page__cta-group { max-width: 100%; }
  .modal { padding: 28px 20px; border-radius: 18px; }
  .modal__title { font-size: 20px; }
  .modal__text { font-size: 14px; }

  /* Setup page mobile */
  .setup-page { padding: 97px 20px 40px; }
  .setup-page__inner { gap: 28px; }
  .setup-page__heading { font-size: 24px; line-height: 125%; }
  .setup-page__sub { font-size: 16px; }
  .setup-page__video { border-radius: 14px; }
  .setup-page__video .plyr { border-radius: 14px; }
  .setup-page__video .plyr__video-wrapper { border-radius: 14px; }
  .setup-page__actions { max-width: 100%; gap: 16px; }
  .setup-page__btn { font-size: 14px; padding: 10px 14px; }
  .setup-page__btn--main { font-size: 16px; }
  .setup-page__support { margin-top: 32px; padding: 16px 0; max-width: 100%; }
  .setup-page__support-text { font-size: 14px; }

  /* Guides mobile */
  .guides-layout { flex-direction: column; padding-left: 0; }
  .guides-sidebar {
    position: fixed; top: 0; left: 0; bottom: 0;
    z-index: 90; width: 280px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding-top: 80px;
  }
  .guides-sidebar--open { transform: translateX(0); }
  .guides-sidebar__close { display: block; }
  .guides-sidebar-toggle { display: flex; }
  .guides-content {
    padding: 97px 20px 100px;
    max-width: 100%;
  }
  .guide-article h1 { font-size: 26px; margin-bottom: 24px; }
  .guide-article h3 { font-size: 19px; }
  .guide-article h4 { font-size: 16px; margin-top: 22px; }
  .guide-article p, .guide-article li { font-size: 15px; }
  .guide-article blockquote { padding: 14px 16px; }
  .guide-table th { font-size: 11px; padding: 10px 14px; }
  .guide-table td { font-size: 13px; padding: 10px 14px; }
  .guide-nav-bottom { flex-direction: column; gap: 12px; margin-top: 40px; padding-top: 24px; }
  .guide-nav-bottom__link { padding: 14px 16px; }
  .guide-nav-bottom__link--next { text-align: left; }

  /* Legal pages mobile */
  .legal-page { padding: 97px 20px 40px; }
  .legal-page__title { font-size: 28px; line-height: 110%; }
  .legal-page__updated { font-size: 14px; }
  .legal-page__header { gap: 12px; margin-bottom: 36px; }
  .legal-page__content { gap: 28px; }
  .legal-section { gap: 12px; }
  .legal-section h2 { font-size: 20px; }
  .legal-section h3 { font-size: 16px; }
  .legal-section p, .legal-section li { font-size: 15px; line-height: 155%; }
  .legal-section ul { padding-left: 20px; }
  .legal-info-label { font-size: 11px; }

  /* Footer */
  .footer { padding: 0 20px 32px; }
  .footer__row { flex-direction: column; gap: 32px; }

  /* Disclaimer */
  .disclaimer-section { padding: 0 20px 40px; }
  .disclaimer-section__inner { gap: 40px; }
  .disclaimer-section__content { width: 100%; }
  .disclaimer-section__content p,
  .disclaimer-section__links { font-size: 16px; }

  /* All Features */
  .all-features__grid { flex-direction: column; }
  .all-features__item { padding-right: 0; }
  .all-features__heading { font-size: 32px; }

  /* Truth section mobile */
  .truth { padding: 72px 20px 56px; }
  .truth__header { gap: 18px; margin-bottom: 44px; }
  .truth__heading { font-size: 26px; line-height: 112%; }
  .truth__sub { font-size: 16px; line-height: 155%; }
  .truth__trust {
    flex-direction: column; gap: 10px;
    margin-bottom: 40px;
  }
  .truth__trust-item {
    padding: 14px 18px; border-radius: 12px;
    justify-content: center;
  }
  .truth__trust-text { font-size: 13px; }
  .btn--lg {
    width: 100%; padding: 14px 20px;
    font-size: 16px;
  }
  .truth__cta-note { font-size: 13px; }

  /* Comparison table mobile */
  .compare { border-radius: 18px; margin-bottom: 36px; }
  .compare__header { display: none; }
  .compare__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .compare__cell { padding: 16px 20px; }
  .compare__cell--with {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
  }
  .compare__cell--without::before {
    content: 'Without Vix Algo';
    display: block;
    font-family: var(--font-mono);
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ff9b9b;
    margin-bottom: 8px;
  }
  .compare__cell--with::before {
    content: 'With Vix Algo';
    display: block;
    font-family: var(--font-mono);
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #4dffd4;
    margin-bottom: 8px;
  }

  /* Editorial mobile */
  .editorial { padding: 72px 20px; }
  .editorial__inner { gap: 22px; }
  .editorial__kicker { font-size: 12px; }
  .editorial__heading { font-size: 26px; line-height: 112%; }
  .editorial__body { gap: 16px; }
  .editorial__body p { font-size: 16px; line-height: 155%; }

  /* Self-optimize mobile */
  .self-optimize { padding: 72px 20px; }
  .self-optimize__heading { font-size: 24px; line-height: 115%; }
  .self-optimize__steps {
    flex-direction: column; gap: 16px;
  }
  .self-optimize__step {
    flex-direction: row; align-items: center;
    padding: 20px 24px; gap: 16px;
    text-align: left;
  }
  .self-optimize__step-num { font-size: 36px; }
  .self-optimize__step-content {
    align-items: flex-start; text-align: left;
  }

  /* Pricing mobile */
  .pricing-card-single { border-radius: 18px; margin: 0 -4px; }
  .pricing-card-single__header { padding: 28px 24px 0; }
  .pricing-card-single__divider { margin: 16px 24px; }
  .pricing-card-single__includes { padding: 0 24px; }
  .pricing-card-single__includes-title { font-size: 18px; margin-bottom: 16px; }
  .pricing-card-single__grid { grid-template-columns: 1fr; gap: 6px; }
  .pricing-card-single__item { font-size: 14px; }
  .pricing-card-single__price-block { padding: 24px 24px; }
  .pricing-card-single__actual { font-size: 36px; }
  .pricing-card-single__actual span { font-size: 18px; }
  .pricing-card-single__anchor { font-size: 18px; }
  .pricing-card-single__intro { padding: 16px 24px 0; font-size: 13px; }
  .pricing-card-single__cta-wrap { padding: 20px 24px 32px; }
  .pricing-card-single__cta-wrap .btn--lg { min-width: unset; }

  /* Closing CTA mobile */
  .closing-cta { padding: 80px 20px; }
  .closing-cta__heading { font-size: 24px; line-height: 115%; }
  .closing-cta__body { font-size: 16px; line-height: 155%; }
  .closing-cta__note { font-size: 13px; }
}

/* ===== ACCESSIBILITY: Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .social-proof__ribbon { animation: none; }
  .checkout__ribbon { animation: none; }
  .faq-item__answer { transition: none; }
  .faq-item__plus span { transition: none; }
  .navbar__mobile-toggle span { transition: none; }
  .btn { transition: none; }
  .faq-item { transition: none; }
  .market-carousel__nav { transition: none; }
}
