/* ============================================================
   TouchlineAlpha — V2 Design System
   Loaded AFTER style.css. Overrides navigation, hero, features,
   cinematic break, methodology teaser, and footer. Leaves all
   functional components (tabs, charts, tables) untouched.
   ============================================================ */

/* ── Variables ────────────────────────────────────────────── */
:root {
  /* Dark backgrounds — unified tone, no seams between dark sections */
  --v2-bg-deepest:  #0E1520;
  --v2-bg-dark:     #111824;
  --v2-bg-mid:      #111824;
  --v2-bg-surface:  #1A2335;
  --v2-border-dark: rgba(255, 255, 255, 0.07);

  /* Light section */
  --v2-bg-light:    #F8FAFC;
  --v2-bg-card:     #FFFFFF;
  --v2-border-light: #E2E8F0;

  /* Brand greens — anchored to logo #064f12 */
  --v2-green-base:  #064f12;
  --v2-green-mid:   #1A8C3A;
  --v2-green-hi:    #22C55E;
  --v2-green-dim:   rgba(26, 140, 58, 0.12);

  /* Text */
  --v2-text-primary:   #F1F5F9;
  --v2-text-secondary: #94A3B8;
  --v2-text-muted:     #64748B;
  --v2-text-dark:      #0F172A;
}

/* ── Global overrides when v2 is active ──────────────────── */
body {
  background: var(--v2-bg-deepest);
}

.alpha-green {
  color: var(--v2-green-hi) !important;
}


/* ══════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════ */

.v2-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: linear-gradient(180deg, #131d2b 0%, var(--v2-bg-deepest) 100%);
  border-bottom: 1px solid rgba(34, 197, 94, 0.12);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
}

.v2-nav-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

/* Inline SVG logo — color overrides */
.v2-logo {
  height: 52px;
  width: auto;
  display: block;
  fill: #FFFFFF; /* un-classed paths (TOUCHLINE letters) inherit white on dark bg */
}
.v2-logo .cls-1 { fill: #22C55E !important; }
.v2-logo .cls-2 { fill: #FFFFFF !important; }

.v2-footer-logo .cls-1 { fill: #22C55E !important; }
.v2-footer-logo .cls-2 { fill: #FFFFFF !important; }

.v2-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.v2-nav-link {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--v2-text-secondary);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.15s ease;
  position: relative;
  padding-bottom: 2px;
}
.v2-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--v2-green-hi);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.v2-nav-link:hover        { color: var(--v2-text-primary); }
.v2-nav-link:hover::after { transform: scaleX(1); }
.v2-nav-link--active      { color: var(--v2-text-primary); }
.v2-nav-link--active::after { transform: scaleX(1); }

.v2-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: var(--v2-green-mid);
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.v2-nav-cta:hover { background: #167830; }
.v2-nav-cta svg   { flex-shrink: 0; }


/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */

.v2-hero {
  position: relative;
  min-height: 100vh;
  padding-top: 64px; /* fixed nav height */
  background-image: url(../assets/images/hero-slot.jpg);
  background-size: cover;
  background-position: center 30%;
  display: flex;
  align-items: center;
}

.v2-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 16, 26, 0.93) 0%,
    rgba(11, 16, 26, 0.76) 55%,
    rgba(11, 16, 26, 0.48) 100%
  );
  z-index: 1;
}

.v2-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 48px 52px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

/* Hero centrepiece logo */
.v2-hero-brand-logo {
  display: block;
  height: 120px;
  width: auto;
  margin: 0 auto 40px;
  fill: #FFFFFF;
}
.v2-hero-brand-logo .cls-1 { fill: #22C55E !important; }
.v2-hero-brand-logo .cls-2 { fill: #FFFFFF !important; }

.v2-hero-label {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v2-green-hi);
  margin-bottom: 32px;
  line-height: 1;
}

.v2-hero h1 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--v2-text-primary);
  margin: 0 auto 28px;
  max-width: 780px;
}

.v2-hero h1 .v2-accent { color: var(--v2-green-hi); }

.v2-hero-sub {
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--v2-text-secondary);
  max-width: 600px;
  margin: 0 auto 44px;
}

.v2-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  background: var(--v2-green-mid);
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.15s ease;
}
.v2-hero-cta:hover {
  background: #167830;
  transform: translateY(-1px);
}
.v2-hero-cta svg { flex-shrink: 0; }

.v2-hero-stats {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.v2-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.v2-stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--v2-text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.v2-stat-label {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--v2-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}


/* ══════════════════════════════════════════════════════════
   FEATURES SECTION
══════════════════════════════════════════════════════════ */

.v2-features {
  background: var(--v2-bg-mid);
  padding: 96px 0;
}

.v2-features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.v2-section-label {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v2-green-hi);
  margin-bottom: 16px;
}

.v2-features h2 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--v2-text-primary);
  margin: 0 0 16px;
}

.v2-features .v2-section-lead {
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--v2-text-secondary);
  max-width: 860px;
  margin: 0 0 72px;
}

/* Feature group structure */
.v2-features .lp-feature-groups > div {
  margin-bottom: 56px;
}
.v2-features .lp-feature-groups > div:last-child {
  margin-bottom: 0;
}

.v2-features .lp-feature-group-label {
  font-family: Inter, sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--v2-text-muted) !important;
  margin-bottom: 20px !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid var(--v2-border-dark) !important;
  background: none !important;
}

/* Feature cards — dark treatment */
.v2-features .lp-feature-card {
  background: var(--v2-bg-surface) !important;
  border: 1px solid var(--v2-border-dark) !important;
  border-top: 1px solid var(--v2-border-dark) !important;
  border-radius: 12px !important;
  padding: 28px 24px 24px !important;
  box-shadow: none !important;
  transition: border-color 0.2s ease, transform 0.2s ease !important;
  cursor: default;
}
.v2-features .lp-feature-card:hover {
  border-color: rgba(26, 140, 58, 0.4) !important;
  transform: translateY(-2px) !important;
}

.v2-features .lp-feature-title {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--v2-text-primary) !important;
  margin-bottom: 12px !important;
}

.v2-features .lp-feature-desc {
  font-size: 14px !important;
  color: var(--v2-text-secondary) !important;
  line-height: 1.7 !important;
  margin-bottom: 20px !important;
}

.v2-features .lp-feature-link {
  color: var(--v2-green-hi) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.15s ease, gap 0.15s ease !important;
}
.v2-features .lp-feature-link:hover {
  color: #fff !important;
  gap: 8px;
}
.v2-features .lp-feature-link svg {
  flex-shrink: 0;
}


/* ══════════════════════════════════════════════════════════
   CINEMATIC BREAK
══════════════════════════════════════════════════════════ */

.v2-cine-break {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  background-image: url(../assets/images/cinematic-break.jpg);
  background-size: cover;
  background-position: 62% 40%;
}

.v2-cine-break::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(6,10,20,0.65) 0%, rgba(6,10,20,0.35) 50%, rgba(6,10,20,0.0) 100%);
  z-index: 1;
}

.v2-cine-callout {
  position: absolute;
  inset: 0;
  padding: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.v2-cine-callout-inner {
  max-width: 680px;
  text-align: left;
  padding-right: 48px;
  margin-right: 48px;
  margin-bottom: 140px;
}

.v2-cine-callout-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #ffffff;
  margin: 0 0 28px;
  white-space: nowrap;
  text-shadow: 0 2px 32px rgba(0,0,0,0.6);
}


.v2-cine-callout-text {
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}

.v2-cine-callout-text strong {
  color: var(--v2-green-hi);
  font-weight: 700;
}

.v2-cine-callout-accent {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--v2-green-hi);
  margin-bottom: 18px;
}



/* ══════════════════════════════════════════════════════════
   FEATURE TABS (Our Philosophy section)
══════════════════════════════════════════════════════════ */

.v2-feat-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.v2-feat-tab {
  padding: 12px 24px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--v2-text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease;
  margin-bottom: -1px;
}

.v2-feat-tab:hover {
  color: var(--v2-text-secondary);
}

.v2-feat-tab.active {
  color: var(--v2-green-hi);
  border-bottom-color: var(--v2-green-hi);
}

.v2-feat-panel {
  display: none;
}

.v2-feat-panel.active {
  display: block;
  min-height: 360px;
}

.v2-feat-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}

/* Tactical board photo as full-height right background */
.v2-features {
  position: relative;
  overflow: hidden;
}

.v2-features::after {
  content: '';
  position: absolute;
  inset: 0 0 0 50%;
  background-image: linear-gradient(rgba(11,16,26,0.65), rgba(11,16,26,0.65)), url(../assets/images/tactical-board.jpg);
  background-size: cover;
  background-position: center top;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 25%, rgba(0,0,0,0.85) 50%, black 70%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 25%, rgba(0,0,0,0.85) 50%, black 70%);
  z-index: 0;
  pointer-events: none;
}

.v2-features-inner {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .v2-features::after {
    display: none;
  }
}


/* ══════════════════════════════════════════════════════════
   LIVE PREVIEW SECTION (light background override)
══════════════════════════════════════════════════════════ */

.v2-preview-wrap {
  background: var(--v2-bg-light) !important;
}

.v2-preview-wrap .lp-section-label {
  color: var(--v2-green-mid);
}

.v2-preview-wrap h2 {
  color: var(--v2-text-dark) !important;
}

.v2-preview-wrap .lp-section-sub {
  color: #475569 !important;
}

.v2-preview-wrap .lp-preview-card-badge {
  color: var(--v2-green-mid) !important;
}

/* Tab bar refinements on light bg */
.v2-preview-wrap .lp-tab-btn.active {
  border-bottom-color: var(--v2-green-mid) !important;
  color: var(--v2-green-mid) !important;
}


/* ══════════════════════════════════════════════════════════
   METHODOLOGY TEASER (dark section on index)
══════════════════════════════════════════════════════════ */

.v2-model {
  position: relative;
  padding: 160px 0;
  min-height: 740px;
  display: flex;
  align-items: center;
  background-image: url(../assets/images/clubs-banner.jpg);
  background-size: cover;
  background-position: center 35%;
  overflow: hidden;
}

.v2-model::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 16, 26, 0.45);
  z-index: 0;
}


.v2-model-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.v2-model .v2-section-label {
  color: var(--v2-green-hi);
  margin-bottom: 16px;
}

.v2-model h2 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--v2-text-primary);
  margin: 0 0 36px;
}

.v2-model-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

.v2-model-two-col p {
  font-family: Inter, sans-serif;
  font-size: 16px;
  color: var(--v2-text-secondary);
  line-height: 1.8;
  margin: 0;
}

.v2-model-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--v2-green-hi);
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: gap 0.15s ease, color 0.15s ease;
}
.v2-model-link:hover {
  gap: 12px;
  color: #fff;
}
.v2-model-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}


/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */

.v2-footer {
  background: linear-gradient(180deg, var(--v2-bg-deepest) 0%, #131d2b 100%);
  border-top: 1px solid rgba(34, 197, 94, 0.12);
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.45);
  padding-top: 36px;
}

.v2-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
}

.v2-footer-logo {
  height: 80px;
  width: auto;
  display: block;
  fill: #FFFFFF;
  margin-bottom: 18px;
}

.v2-footer-tagline {
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.6;
  max-width: 280px;
}

.v2-footer-col-title {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  margin-bottom: 18px;
}

.v2-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.v2-footer-links a {
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.15s ease;
}
.v2-footer-links a:hover { color: rgba(255, 255, 255, 0.75); }

.v2-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 22px 48px;
  max-width: 100%;
}

.v2-footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.v2-footer-bottom span {
  font-family: Inter, sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.18);
}


/* ══════════════════════════════════════════════════════════
   METHODOLOGY PAGE — PHOTO HERO
══════════════════════════════════════════════════════════ */

.v2-meth-hero {
  position: relative;
  min-height: 100vh;
  padding-top: 64px; /* fixed nav height */
  background-image: url(../assets/images/hero-bg.jpg);
  background-size: cover;
  background-position: center 55%;
  background-attachment: fixed;
  display: flex;
  align-items: center;
}

.v2-meth-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 16, 26, 0.68) 0%,
    rgba(11, 16, 26, 0.68) 60%,
    rgba(11, 16, 26, 0.0) 100%
  );
  z-index: 1;
}

.v2-meth-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 48px 64px;
  width: 100%;
  box-sizing: border-box;
}

.v2-meth-breadcrumb {
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 28px;
}
.v2-meth-breadcrumb a {
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  transition: color 0.15s ease;
}
.v2-meth-breadcrumb a:hover { color: var(--v2-green-hi); }

.v2-meth-section-label {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v2-green-hi);
  margin-bottom: 16px;
}

.v2-meth-hero h1 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--v2-text-primary);
  margin: 0 0 20px;
}
.v2-meth-hero h1 span { color: var(--v2-green-hi); }

.v2-meth-hero-sub {
  font-family: Inter, sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 900px;
  margin: 0;
}

/* Methodology content — continues photo then drifts to white */
.v2-meth-content-wrap {
  position: relative;
  background-image: url(../assets/images/hero-bg.jpg);
  background-size: cover;
  background-position: center 55%;
  background-attachment: fixed;
}

.v2-meth-content-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.58);
  z-index: 0;
  pointer-events: none;
}

.v2-meth-main {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 72px 48px 96px;
}

/* Override meth section styles inside v2-meth-main */
.v2-meth-main .meth-section-label {
  color: var(--v2-green-mid);
}

.v2-meth-main .meth-section h2 {
  color: var(--v2-text-dark);
}

.v2-meth-main .meth-callout {
  background: var(--v2-green-dim);
  border-left-color: var(--v2-green-mid);
}
.v2-meth-main .meth-callout strong {
  color: var(--v2-green-base);
}

/* ELO scale rows — centred */
.v2-meth-main .meth-elo-scale {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--v2-border-light);
}

/* Stat numbers */
.v2-meth-main .meth-stat-num {
  color: var(--v2-green-mid);
}

/* Dividers */
.v2-meth-main .meth-divider {
  border-top-color: #e2e8f0;
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .v2-nav          { padding: 0 28px; }
  .v2-hero-inner   { padding: 80px 28px 72px; }
  .v2-features-inner,
  .v2-model-inner  { padding: 0 28px; }
  .v2-footer-inner { padding: 0 28px 48px; grid-template-columns: 1fr 1fr; }
  .v2-footer-bottom { padding: 22px 28px; }
}

@media (max-width: 768px) {
  .v2-nav          { padding: 0 20px; gap: 12px; }
  .v2-nav-links    { display: none; }

  .v2-meth-hero         { background-attachment: scroll; }
  .v2-meth-content-wrap { background-attachment: scroll; }

  .v2-hero-inner   { padding: 64px 20px 56px; }
  .v2-hero h1      { font-size: clamp(36px, 9vw, 52px); }
  .v2-hero-sub     { font-size: 16px; }
  .v2-hero-stats   { gap: 28px; margin-top: 56px; }
  .v2-stat-num     { font-size: 22px; }

  .v2-features     { padding: 72px 0; }
  .v2-features-inner { padding: 0 20px; }
  .v2-features .v2-section-lead { font-size: 16px; margin-bottom: 48px; }

  .v2-cine-break   { height: 180px; }

  .v2-model        { padding: 72px 0; }
  .v2-model-inner  { padding: 0 20px; }
  .v2-model-two-col { grid-template-columns: 1fr; gap: 20px; }

  .v2-footer-inner {
    grid-template-columns: 1fr;
    padding: 0 20px 40px;
    gap: 36px;
  }
  .v2-footer-bottom { padding: 20px; }

  .v2-meth-hero    { min-height: 100svh; }
  .v2-meth-hero-inner { padding: 40px 20px 48px; }
  .v2-meth-main    { padding: 20px 20px 72px; }
}

@media (max-width: 480px) {
  .v2-nav-cta      { display: none; }
  .v2-hero-stats   { gap: 20px; }
}
