/* ============================================================
   VERO MARKETING SITE — layout styles
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--vero-bg);
  color: var(--vero-fg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container.narrow { max-width: 1080px; }
.container.wide { max-width: 1440px; }

/* ==========================================================
   NAV
   ========================================================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: linear-gradient(180deg, rgba(14, 20, 43, 0.95) 0%, rgba(14, 20, 43, 0.88) 100%);
  border-bottom: 1px solid rgba(107, 138, 228, 0.15);
  box-shadow: 0 1px 0 rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo svg { width: 28px; height: 28px; }
.nav-logo .wm { font-family: var(--font-heading); font-weight: 700; font-size: 19px; letter-spacing: 3px; color: var(--vero-fg); }
.nav-links { display: flex; gap: 8px; }
.nav-links a {
  font-size: 14px; color: var(--vero-fg-2); font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all .15s;
}
.nav-links a:hover { color: var(--vero-fg); background: rgba(255,255,255,0.04); }
.nav-links a.active {
  color: var(--vero-fg);
  background: rgba(107,138,228,0.12);
  font-weight: 600;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 9999px;
  background: var(--vero-accent); color: #fff;
  font-size: 13px; font-weight: 600;
  transition: background .15s;
}
.nav-cta:hover { background: var(--vero-accent-dim); }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  padding: 96px 0 120px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(107,138,228,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 85% 30%, rgba(107,138,228,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(107,138,228,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107,138,228,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 8px;
  border-radius: 9999px;
  background: rgba(107,138,228,0.08);
  border: 1px solid rgba(107,138,228,0.2);
  font-family: var(--font-body);
  font-size: 12px; font-weight: 500;
  color: var(--vero-accent-100);
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 18px; height: 18px; border-radius: 9px;
  background: var(--vero-accent);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 10px; font-weight: 700;
}
.hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -2px;
  margin: 0 0 24px;
  color: var(--vero-fg);
}
.hero h1 .accent {
  background: linear-gradient(90deg, #AAC0FF 0%, #6B8AE4 50%, #4A6BC4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--vero-fg-2);
  max-width: 520px;
  margin: 0 0 40px;
}
.hero-cta-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: var(--vero-accent);
  color: #fff;
  border-radius: 9999px;
  font-weight: 600; font-size: 15px;
  transition: all .2s;
  box-shadow: 0 8px 24px rgba(107,138,228,0.3);
}
.btn-primary:hover { background: var(--vero-accent-dim); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--vero-fg);
  font-weight: 500; font-size: 15px;
  transition: all .15s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); }
.hero-stats {
  display: flex; gap: 40px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hero-stats .stat .n {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: var(--vero-fg);
  letter-spacing: -0.5px;
}
.hero-stats .stat .l {
  font-size: 12px;
  color: var(--vero-fg-3);
  margin-top: 2px;
  letter-spacing: 0.2px;
}

.hero-visual {
  position: relative;
  aspect-ratio: 0.92;
  display: flex; align-items: center; justify-content: center;
}

/* ==========================================================
   EXPLORE GRID (links to other pages)
   ========================================================== */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.explore-card {
  display: block;
  background: var(--vero-bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 28px;
  transition: all .2s;
  position: relative;
  overflow: hidden;
}
.explore-card::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 0%, rgba(107,138,228,0.06), transparent 70%);
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
}
.explore-card:hover {
  transform: translateY(-3px);
  border-color: rgba(107,138,228,0.3);
}
.explore-card:hover::after { opacity: 1; }
.explore-ic {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.explore-ic svg { width: 26px; height: 26px; }
.explore-tag {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 2.5px;
  color: var(--vero-fg-3);
  font-weight: 600;
  margin-bottom: 8px;
}
.explore-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin: 0 0 12px;
  color: var(--vero-fg);
}
.explore-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--vero-fg-2);
  margin: 0 0 20px;
}
.explore-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--vero-accent-100);
  transition: gap .15s;
}
.explore-card:hover .explore-link { gap: 10px; }
@media (max-width: 980px) {
  .explore-grid { grid-template-columns: 1fr; }
}

/* ==========================================================
   PAGE HERO (secondary pages)
   ========================================================== */
.page-hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(107,138,228,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -1.8px;
  margin: 18px 0 22px;
  color: var(--vero-fg);
  max-width: 860px;
}
.page-title .accent {
  background: linear-gradient(90deg, #AAC0FF 0%, #6B8AE4 50%, #4A6BC4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--vero-fg-2);
  max-width: 640px;
  margin: 0;
}

/* ==========================================================
   ABOUT PAGE — story + stat card
   ========================================================== */
.section-head-h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0 0 20px;
  color: var(--vero-fg);
}
.body-p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--vero-fg-2);
  margin: 0 0 16px;
}
.body-p em { color: var(--vero-fg); font-style: italic; }
.stat-card {
  background: var(--vero-bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 32px;
}
.stat-card-label {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--vero-accent-100);
  font-weight: 600;
  margin-bottom: 20px;
}
.stat-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.stat-big {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -1.5px;
  color: var(--vero-fg);
  line-height: 1;
}
.stat-sub {
  font-size: 13px;
  color: var(--vero-fg-3);
  margin-top: 6px;
  line-height: 1.4;
}

/* values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.value {
  background: var(--vero-bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 28px 24px;
}
.value .vnum {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--vero-accent-100);
  font-weight: 600;
  margin-bottom: 14px;
}
.value h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--vero-fg);
  margin: 0 0 10px;
  letter-spacing: -0.3px;
}
.value p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--vero-fg-2);
  margin: 0;
}

/* ==========================================================
   CTA-MINI (learn → demo)
   ========================================================== */
.cta-mini {
  background: var(--vero-bg-card);
  border: 1px solid rgba(107,138,228,0.2);
  border-radius: 20px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-mini h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.4px;
  margin: 0 0 6px;
  color: var(--vero-fg);
}
.cta-mini p {
  font-size: 14.5px;
  color: var(--vero-fg-2);
  margin: 0;
}
.cta-mini em { color: var(--vero-accent-100); font-style: normal; font-weight: 600; }

/* ==========================================================
   FAQ PAGE — TOC layout
   ========================================================== */
.faq-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  margin-top: 20px;
}
.faq-toc {
  position: sticky; top: 96px;
  height: fit-content;
}
.faq-toc h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--vero-fg-3);
  margin: 0 0 14px;
}
.faq-toc-link {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--vero-fg-2);
  margin-bottom: 4px;
  font-weight: 500;
  transition: all .12s;
}
.faq-toc-link:hover { background: rgba(255,255,255,0.03); color: var(--vero-fg); }
.faq-toc-link.active {
  background: rgba(107,138,228,0.1);
  color: var(--vero-accent-100);
}
.faq-main { max-width: 820px; }
.faq-cat { margin-bottom: 48px; scroll-margin-top: 96px; }
.faq-cat h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.3px;
  color: var(--vero-fg);
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 980px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
  .stat-card-grid { grid-template-columns: 1fr 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-toc { position: static; }
  .cta-mini { flex-direction: column; text-align: center; padding: 28px; }
}

/* ==========================================================
   Section basics
   ========================================================== */
section.pad { padding: 80px 0; position: relative; }
section.pad.tight { padding: 56px 0; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--vero-accent-100);
  margin-bottom: 16px;
}
.section-eyebrow .bar { width: 24px; height: 1px; background: var(--vero-accent); }
.section-head h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.05;
  letter-spacing: -1.2px;
  margin: 0 0 18px;
  color: var(--vero-fg);
  max-width: 720px;
}
.section-head p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--vero-fg-2);
  max-width: 620px;
  margin: 0;
}
.section-head.center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.section-head.center h2, .section-head.center p { max-width: none; }
.section-head.center p { max-width: 640px; }

/* ==========================================================
   HOW IT WORKS
   ========================================================== */
.how { background: linear-gradient(180deg, transparent, rgba(107,138,228,0.02)); }
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.step-card {
  position: relative;
  background: var(--vero-bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 18px;
  padding: 32px 28px;
  overflow: hidden;
  min-height: 340px;
  display: flex; flex-direction: column;
}
.step-card .num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--vero-accent-100);
}
.step-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  margin: 10px 0 10px;
  color: var(--vero-fg);
  letter-spacing: -0.3px;
}
.step-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--vero-fg-2);
  margin: 0;
}
.step-card .viz {
  margin-top: auto;
  height: 140px;
  border-radius: 12px;
  background: var(--vero-bg);
  border: 1px solid rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}

/* ==========================================================
   LIVE DEMO
   ========================================================== */
.demo-wrap {
  margin-top: 56px;
  background: linear-gradient(180deg, #0F1020, #0A0B14);
  border: 1px solid rgba(107,138,228,0.15);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.demo-wrap::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top, rgba(107,138,228,0.08), transparent 60%);
  pointer-events: none;
}

/* ==========================================================
   LEARNING CENTER (full)
   ========================================================== */
.learn-intro-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.learn-groups {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.learn-group-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--vero-fg-3);
  margin: 0 0 14px 4px;
}
.learn-group-row {
  display: grid;
  gap: 12px;
}
.learn-group-row[data-cols="1"] { grid-template-columns: 1fr; }
.learn-group-row[data-cols="2"] { grid-template-columns: 1fr 1fr; }
@media (max-width: 980px) {
  .learn-groups { grid-template-columns: 1fr; gap: 18px; }
}
.learn-cat {
  background: var(--vero-bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 24px 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  overflow: hidden;
}
.learn-cat.active {
  border-color: var(--vero-accent);
  background: rgba(107,138,228,0.06);
}
.learn-cat:hover:not(.active) {
  border-color: rgba(255,255,255,0.12);
  background: var(--vero-bg-elevated);
}
.learn-cat .ic {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.learn-cat .ic svg { width: 22px; height: 22px; }
.learn-cat .name {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 15px;
  color: var(--vero-fg);
  margin-bottom: 3px;
}
.learn-cat .ct {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--vero-fg-3);
}

.learn-body {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  margin-top: 28px;
  min-height: 620px;
}
.learn-toc {
  background: var(--vero-bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 20px 18px;
  height: fit-content;
  max-height: 720px;
  overflow-y: auto;
}
.learn-toc h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--vero-fg-3);
  margin: 0 0 14px;
}
.learn-toc-item {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 11px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .12s;
  margin-bottom: 2px;
}
.learn-toc-item:hover { background: rgba(255,255,255,0.03); }
.learn-toc-item.active {
  background: rgba(107,138,228,0.1);
}
.learn-toc-item.active .lt { color: var(--vero-fg); }
.learn-toc-item .lt {
  font-size: 13.5px; font-weight: 500; color: var(--vero-fg-2);
  line-height: 1.3;
}
.learn-toc-item .rt {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--vero-fg-dim);
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255,255,255,0.03);
  white-space: nowrap;
}
.learn-toc-item.done .rt { color: var(--vero-bull); background: var(--vero-bull-muted); }

.learn-article {
  background: var(--vero-bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 40px 44px 48px;
  position: relative;
}
.learn-article .meta {
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
  font-size: 12px;
  color: var(--vero-fg-3);
  margin-bottom: 16px;
}
.learn-article .meta .chip {
  background: rgba(107,138,228,0.1);
  color: var(--vero-accent-100);
  padding: 3px 10px;
  border-radius: 9999px;
  font-weight: 600;
}
.learn-article h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -0.8px;
  margin: 0 0 12px;
  color: var(--vero-fg);
}
.learn-article .sub {
  font-size: 17px;
  color: var(--vero-fg-2);
  line-height: 1.5;
  margin: 0 0 32px;
}
.learn-article h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--vero-fg);
  margin: 36px 0 12px;
  letter-spacing: -0.2px;
}
.learn-article p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--vero-fg-2);
  margin: 0 0 14px;
}
.learn-article p strong { color: var(--vero-fg); font-weight: 600; }
.learn-article .callout {
  margin: 24px 0;
  padding: 18px 22px;
  background: rgba(107,138,228,0.06);
  border-left: 3px solid var(--vero-accent);
  border-radius: 8px;
  font-size: 14.5px;
  color: var(--vero-fg-2);
  line-height: 1.6;
}
.learn-article .callout strong { color: var(--vero-accent-100); }
.learn-article .example-chart {
  margin: 24px 0;
  background: var(--vero-bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 18px;
}
.learn-article .example-chart .cap {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--vero-fg-3);
  margin-bottom: 8px;
  letter-spacing: .3px;
}
.learn-article .ex-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin: 18px 0;
}
.learn-article .ex-item {
  background: var(--vero-bg);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 16px;
}
.learn-article .ex-item .lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.learn-article .ex-item.bull .lbl { color: var(--vero-bull); }
.learn-article .ex-item.bear .lbl { color: var(--vero-bear); }
.learn-article .ex-item .desc {
  font-size: 13px;
  color: var(--vero-fg-2);
  line-height: 1.5;
}
.learn-article .nav-row {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.learn-article .nav-row .nb {
  flex: 1;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all .15s;
  cursor: pointer;
}
.learn-article .nav-row .nb:hover { border-color: var(--vero-accent); }
.learn-article .nav-row .nb.r { text-align: right; }
.learn-article .nav-row .dir {
  font-size: 10px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--vero-fg-3);
  margin-bottom: 4px;
}
.learn-article .nav-row .ttl {
  font-family: var(--font-heading);
  font-weight: 600; font-size: 14px;
  color: var(--vero-fg);
}

/* ==========================================================
   GAME MODES
   ========================================================== */
.modes {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 18px;
  margin-top: 56px;
}
.mode-card {
  border-radius: 20px;
  padding: 32px;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.mode-card.primary {
  background: linear-gradient(145deg, #1A1F52 0%, #111338 50%, #0C0E1A 100%);
  border: 1px solid rgba(107,138,228,0.25);
}
.mode-card.secondary {
  background: var(--vero-bg-card);
  border: 1px solid rgba(255,255,255,0.05);
}
.mode-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.5px;
  margin: 20px 0 10px;
  color: var(--vero-fg);
}
.mode-card.secondary h3 { font-size: 22px; }
.mode-card .mtag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 9999px;
  background: rgba(107,138,228,0.15);
  color: var(--vero-accent-100);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  align-self: flex-start;
}
.mode-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--vero-fg-2);
  margin: 0 0 20px;
}
.mode-card .feats {
  list-style: none; padding: 0; margin: auto 0 0;
  display: flex; flex-direction: column; gap: 10px;
}
.mode-card .feats li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px;
  color: var(--vero-fg-2);
}
.mode-card .feats li svg { width: 14px; height: 14px; color: var(--vero-accent-100); flex-shrink: 0; }

/* ==========================================================
   ABOUT / TRAINERS
   ========================================================== */
.about {
  background: linear-gradient(180deg, rgba(107,138,228,0.02), transparent);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.trainers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.trainer-card {
  background: var(--vero-bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 18px;
  padding: 24px;
  transition: all .2s;
  position: relative;
  overflow: hidden;
}
.trainer-card:hover {
  transform: translateY(-2px);
  border-color: rgba(107,138,228,0.25);
}
.trainer-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--vero-accent-700), var(--vero-accent-100));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  letter-spacing: -1px;
}
.trainer-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 4px;
  color: var(--vero-fg);
}
.trainer-card .role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--vero-accent-100);
  margin-bottom: 14px;
}
.trainer-card .bio {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--vero-fg-2);
  margin: 0 0 16px;
}
.trainer-card .spec {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.trainer-card .spec span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--vero-fg-3);
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
}

/* ==========================================================
   PRICING
   ========================================================== */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 56px auto 0;
}
.price-card {
  border-radius: 24px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.price-card.free {
  background: var(--vero-bg-card);
  border: 1px solid rgba(255,255,255,0.06);
}
.price-card.pro {
  background: linear-gradient(145deg, #1A1F52 0%, #0C0E1A 100%);
  border: 1px solid rgba(107,138,228,0.35);
}
.price-card .pname {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.price-card.free .pname { color: var(--vero-fg-3); }
.price-card.pro .pname { color: var(--vero-accent-100); }
.price-card .pro-badge {
  position: absolute; top: 24px; right: 24px;
  padding: 4px 10px;
  border-radius: 9999px;
  background: var(--vero-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}
.price-card .amount {
  display: flex; align-items: baseline; gap: 4px;
  margin: 16px 0 24px;
}
.price-card .amount .d {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 56px;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--vero-fg);
}
.price-card .amount .per {
  font-size: 15px;
  color: var(--vero-fg-3);
}
.price-card .desc {
  font-size: 14.5px;
  color: var(--vero-fg-2);
  line-height: 1.55;
  margin: 0 0 28px;
  min-height: 44px;
}
.price-card ul {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.price-card ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px;
  color: var(--vero-fg-2);
  line-height: 1.5;
}
.price-card ul li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--vero-accent); }
.price-card .pbtn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 15px;
  transition: all .15s;
}
.price-card.free .pbtn {
  background: rgba(255,255,255,0.06);
  color: var(--vero-fg);
}
.price-card.free .pbtn:hover { background: rgba(255,255,255,0.1); }
.price-card.pro .pbtn {
  background: var(--vero-accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(107,138,228,0.3);
}
.price-card.pro .pbtn:hover { background: var(--vero-accent-dim); }

/* ==========================================================
   FAQ
   ========================================================== */
.faq-list {
  max-width: 820px;
  margin: 56px auto 0;
  display: flex; flex-direction: column; gap: 10px;
}
.faq-item {
  background: var(--vero-bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .15s;
}
.faq-item:hover { border-color: rgba(255,255,255,0.1); }
.faq-item[data-open="true"] { border-color: rgba(107,138,228,0.25); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
  user-select: none;
}
.faq-q .qt {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16.5px;
  color: var(--vero-fg);
  letter-spacing: -0.2px;
}
.faq-q .ic {
  width: 28px; height: 28px; border-radius: 14px;
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-item[data-open="true"] .faq-q .ic {
  background: rgba(107,138,228,0.15);
  transform: rotate(45deg);
}
.faq-item[data-open="true"] .faq-q .ic svg { color: var(--vero-accent-100); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .28s ease;
}
.faq-item[data-open="true"] .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 26px 24px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--vero-fg-2);
}

/* ==========================================================
   APP STORE CTA
   ========================================================== */
.cta-big {
  margin: 120px 0;
  background: linear-gradient(135deg, #0C0E1A 0%, #181D50 100%);
  border-radius: 32px;
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(107,138,228,0.2);
}
.cta-big::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(107,138,228,0.15), transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(170,192,255,0.08), transparent 40%);
  pointer-events: none;
}
.cta-big > * { position: relative; z-index: 2; }
.cta-big h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -1.5px;
  line-height: 1;
  margin: 0 0 20px;
  color: var(--vero-fg);
}
.cta-big p {
  font-size: 18px;
  color: var(--vero-fg-2);
  max-width: 520px;
  margin: 0 auto 36px;
}
.store-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; align-items: center; }
.store-badge {
  display: inline-block;
  transition: opacity .15s;
  line-height: 0;
}
.store-badge:hover { opacity: 0.85; }
.store-badge svg { height: 48px; width: auto; display: block; }

/* ==========================================================
   FOOTER
   ========================================================== */
footer.site-footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 64px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer-brand .wm {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 3px;
  color: var(--vero-fg);
}
.footer-brand p {
  font-size: 13.5px;
  color: var(--vero-fg-3);
  line-height: 1.6;
  max-width: 280px;
  margin: 14px 0 18px;
}
.footer-col h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--vero-fg-3);
  margin: 0 0 18px;
}
.footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 11px;
}
.footer-col a {
  font-size: 13.5px;
  color: var(--vero-fg-2);
  transition: color .12s;
}
.footer-col a:hover { color: var(--vero-fg); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 12px;
  color: var(--vero-fg-3);
}
.footer-bottom .disclaimer {
  max-width: 560px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 980px) {
  section.pad { padding: 56px 0; }
  section.pad.tight { padding: 40px 0; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 1.2; max-width: 520px; margin: 0 auto; width: 100%; }
  .steps { grid-template-columns: 1fr; }
  .learn-intro-grid { grid-template-columns: repeat(2, 1fr); }
  .learn-body { grid-template-columns: 1fr; }
  .modes { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .trainers-grid { grid-template-columns: 1fr 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links a { padding: 6px 10px; font-size: 13px; }
  .nav-logo .wm { display: none; }
}
@media (max-width: 560px) {
  .nav-links { display: none; }
}
