/* ══════════════════════════════════════════════════════
   LANDING PAGE — Premium Redesign (unchanged from original)
   ══════════════════════════════════════════════════════ */
#landing-screen { max-width: 100%; padding: 0; }
#landing-screen.active { display: block; }

/* ── Shared tokens ──────────────────────────────────── */
:root {
  --lp-canvas: #F4F5F7;
  --lp-white: #FFFFFF;
  --lp-text: #111827;
  --lp-text-muted: #6B7280;
  --lp-text-faint: #9CA3AF;
  --lp-accent: #4361ee;
  --lp-accent-hover: #3a56d4;
  --lp-border: #E5E7EB;
  --lp-max-w: 960px;
  --lp-section-py: 96px;
}

/* ── Nav ────────────────────────────────────────────── */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244,245,247,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lp-border);
}
.lp-nav-inner {
  max-width: var(--lp-max-w);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-nav-logo {
  font-size: 15px;
  font-weight: 700;
  color: var(--lp-text);
  letter-spacing: -0.3px;
}
.lp-nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lp-nav-link {
  background: none;
  border: 1px solid var(--lp-border);
  color: var(--lp-text);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.lp-nav-link:hover { background: var(--lp-white); border-color: #ccc; }

/* Override lang-toggle inside landing nav */
#landing-screen .lp-nav .lang-toggle { margin-bottom: 0; }

/* ── Hero ───────────────────────────────────────────── */
.lp-hero {
  background: var(--lp-canvas);
  padding: 80px 32px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.lp-hero-content { max-width: 520px; }
.lp-hero-h1 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--lp-text);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.lp-hero-tagline {
  font-size: 17px;
  font-weight: 500;
  color: var(--lp-text-muted);
  margin-bottom: 20px;
  display: none; /* deprecated — replaced by value section */
}
.lp-hero-sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--lp-text-muted);
  margin-bottom: 20px;
  max-width: 460px;
}

/* Value section */
.lp-hero-value {
  margin-bottom: 20px;
  max-width: 460px;
}
.lp-hero-value p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--lp-text);
  margin: 0 0 4px;
  font-weight: 500;
}

/* Competitive contrast */
.lp-hero-contrast {
  margin-bottom: 24px;
  max-width: 460px;
}
.lp-hero-contrast p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--lp-text-faint);
  margin: 0 0 2px;
}

/* CTA subtext */
.lp-cta-subtext {
  margin-top: 10px;
  font-size: 13px;
  color: var(--lp-text-faint);
}

/* Mockup label */
.lp-mockup-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--lp-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  text-align: center;
}

/* Typewriter */
.lp-hero-typewriter {
  font-size: 15px;
  font-weight: 500;
  color: var(--lp-accent);
  height: 24px;
  margin-bottom: 28px;
}
.lp-tw-cursor {
  display: inline-block;
  animation: lp-blink 0.75s step-end infinite;
  color: var(--lp-accent);
  margin-left: 1px;
}
@keyframes lp-blink { 50% { opacity: 0; } }

/* CTA button */
.lp-cta-btn {
  display: inline-block;
  padding: 13px 32px;
  background: var(--lp-accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 1px 3px rgba(67,97,238,0.2);
}
.lp-cta-btn:hover { background: var(--lp-accent-hover); box-shadow: 0 4px 12px rgba(67,97,238,0.25); }
.lp-cta-btn:active { transform: scale(0.98); }

.lp-cta-btn--outline {
  background: var(--lp-white);
  color: var(--lp-text);
  border: 1.5px solid var(--lp-border);
  box-shadow: none;
}
.lp-cta-btn--outline:hover { background: #f9fafb; border-color: #ccc; box-shadow: none; }

.lp-hero-proof {
  margin-top: 20px;
  font-size: 13px;
  color: var(--lp-text-faint);
  line-height: 1.5;
  max-width: 400px;
}

/* ── Social proof line ──────────────────────────────── */
.lp-social-proof {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 450;
  color: #6B7280;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.lp-social-proof.lp-sp-visible {
  opacity: 1;
  transform: translateY(0);
}
.lp-social-proof::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  margin-right: 6px;
  vertical-align: 1px;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4);
  animation: lp-sp-pulse 2.5s ease-in-out infinite;
}
@keyframes lp-sp-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4); }
  50% { box-shadow: 0 0 0 4px rgba(52, 211, 153, 0); }
}
.lp-social-proof strong {
  font-weight: 600;
  color: #374151;
}

/* Hero mockup */
.lp-hero-mockup { position: relative; }
.lp-mockup-window {
  background: var(--lp-white);
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  overflow: hidden;
  border: 1px solid var(--lp-border);
}
.lp-mockup-bar {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  background: #f9fafb;
  border-bottom: 1px solid var(--lp-border);
}
.lp-mockup-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
}
.lp-mockup-body { padding: 16px 20px 20px; }
.lp-mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.lp-mockup-title { font-size: 12px; font-weight: 600; color: var(--lp-text); }
.lp-mockup-timer {
  font-size: 12px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  padding: 3px 10px;
  border-radius: 6px;
  background: #16213e;
  color: #fff;
}
.lp-mockup-progress {
  height: 3px;
  background: #f0f0f0;
  border-radius: 2px;
  margin-bottom: 14px;
}
.lp-mockup-fill {
  width: 32%;
  height: 100%;
  background: var(--lp-accent);
  border-radius: 2px;
}
.lp-mockup-q { margin-bottom: 12px; }
.lp-mockup-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 2px 8px;
  border-radius: 10px;
  background: #dbeafe;
  color: #1d4ed8;
  margin-bottom: 6px;
}
.lp-mockup-stem {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--lp-text);
  line-height: 1.5;
}
.lp-mockup-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.lp-mockup-opt {
  font-size: 12px;
  padding: 8px 12px;
  border: 1.5px solid #eee;
  border-radius: 7px;
  color: var(--lp-text-muted);
  background: #fafafa;
}
.lp-mockup-sel {
  border-color: var(--lp-accent);
  background: #eef2ff;
  color: var(--lp-text);
  font-weight: 600;
}

/* ── Hero Widget (Live Mini-Test) ───────────────────── */

/* Hero focus animation: text slides left, mockup slides to center */
.lp-hero-content {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.lp-hero-mockup {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
}
.lp-hero--focused .lp-hero-content {
  transform: translateX(max(-250px, calc(530px - 50vw)));
}
.lp-hero--focused .lp-hero-mockup {
  transform: translateX(max(-290px, calc(492px - 50vw)));
}

/* Mockup pulse/glow on CTA click */
@keyframes hwMockupPulse {
  0%   { box-shadow: 0 8px 40px rgba(0,0,0,0.06), 0 0 0 0 rgba(67,97,238,0.5); }
  70%  { box-shadow: 0 8px 40px rgba(0,0,0,0.06), 0 0 0 14px rgba(67,97,238,0); }
  100% { box-shadow: 0 8px 40px rgba(0,0,0,0.06), 0 0 0 0 rgba(67,97,238,0); }
}
.lp-mockup-window.hw-pulse {
  animation: hwMockupPulse 0.8s ease-out;
}

/* Smooth progress fill */
.lp-mockup-fill {
  transition: width 0.3s ease;
}

#hw-stage {
  min-height: 180px;
  position: relative;
  overflow: hidden;
}

/* Loading spinner */
.hw-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}
.hw-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid #e0e0e0;
  border-top-color: var(--lp-accent);
  border-radius: 50%;
  animation: hw-spin 0.7s linear infinite;
}
@keyframes hw-spin { to { transform: rotate(360deg); } }

/* Question */
.hw-question { padding: 4px 0; }
.hw-stem {
  font-size: 13px;
  line-height: 1.5;
  color: var(--lp-text);
  margin: 8px 0 10px;
  white-space: pre-line;
}
.hw-stem-figural { white-space: normal; }

/* Figural scaling inside widget */
#hw-stage .figure-sequence { gap: 6px; padding: 8px 0; }
#hw-stage .figure-cell { width: 70px; height: 70px; }
#hw-stage .figure-reference-area { padding: 4px 0; margin-bottom: 8px; }
#hw-stage .figure-reference-area .figure-cell { width: 100px; height: 100px; }
#hw-stage .figure-analogy-stem { gap: 4px; padding: 8px 0; }
#hw-stage .figure-analogy-sep { font-size: 12px; }
#hw-stage .figure-instruction { font-size: 12px; margin-top: 4px; }

/* Options */
.hw-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.hw-opt {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1.5px solid var(--lp-border);
  border-radius: 6px;
  background: #fafafa;
  cursor: pointer;
  font-size: 12px;
  transition: border-color 0.15s, background 0.15s;
}
.hw-opt:hover {
  border-color: #b0c4ee;
  background: #f0f4ff;
}
.hw-opt-selected {
  border-color: var(--lp-accent) !important;
  background: #eef2ff !important;
}
.hw-opt-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e8e8e8;
  font-weight: 700;
  font-size: 10px;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}
.hw-opt-selected .hw-opt-label {
  background: var(--lp-accent);
  color: #fff;
}
.hw-opt-text {
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Figural options */
.hw-opts-figural {
  grid-template-columns: repeat(4, 1fr);
}
.hw-opts-figural .hw-opt {
  flex-direction: column;
  align-items: center;
  padding: 8px 4px;
}
.hw-opts-figural .hw-opt-label { margin-bottom: 4px; }
.hw-opt-figural { white-space: normal; display: flex; justify-content: center; }
.hw-opt-figural svg { width: 60px; height: 60px; }
.hw-opts-odd .hw-opt-figural svg { width: 70px; height: 70px; }

/* Value comparison options */
.hw-opts-vc .hw-opt { justify-content: center; }
.hw-opts-vc .hw-opt-text { white-space: normal; text-align: center; }

/* Slide transitions */
.hw-slide-out-left  { animation: hwSlideOutLeft  200ms ease-in forwards; }
.hw-slide-in-right  { animation: hwSlideInRight  250ms ease-out forwards; }
.hw-slide-out-right { animation: hwSlideOutRight 200ms ease-in forwards; }
.hw-slide-in-left   { animation: hwSlideInLeft   250ms ease-out forwards; }

@keyframes hwSlideOutLeft  { to   { opacity: 0; transform: translateX(-30px); } }
@keyframes hwSlideInRight  { from { opacity: 0; transform: translateX(30px); }  to { opacity: 1; transform: translateX(0); } }
@keyframes hwSlideOutRight { to   { opacity: 0; transform: translateX(30px); } }
@keyframes hwSlideInLeft   { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }

/* Nav — sits outside the mockup window, blends with page background */
.hw-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 0 0;
}
.hw-nav-arrow {
  background: none;
  border: none;
  font-size: 15px;
  color: var(--lp-text-faint);
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.hw-nav-arrow:hover:not(.disabled) {
  color: var(--lp-accent);
  background: rgba(67, 97, 238, 0.08);
}
.hw-nav-arrow.disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}
.hw-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.hw-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ccc;
  transition: background 0.2s;
}
.hw-dot-active { background: var(--lp-accent); }
.hw-dot-answered:not(.hw-dot-active) { background: #a3b8f0; }

/* Completion card */
.hw-complete {
  text-align: center;
  padding: 20px 10px;
}
.hw-complete-score {
  font-size: 36px;
  font-weight: 700;
  color: var(--lp-text);
}
.hw-complete-label {
  font-size: 13px;
  color: var(--lp-text-muted);
  margin-bottom: 12px;
}
.hw-complete-upsell {
  font-size: 12px;
  color: var(--lp-text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}
.hw-complete-cta {
  padding: 10px 24px;
  font-size: 13px;
}

/* Error state */
.hw-error {
  text-align: center;
  padding: 40px 10px;
  color: var(--lp-text-muted);
  font-size: 13px;
}

/* ── Section system ─────────────────────────────────── */
.lp-section {
  padding: var(--lp-section-py) 32px;
}
.lp-section--white { background: var(--lp-white); }
.lp-section--neutral { background: var(--lp-canvas); }
.lp-container {
  max-width: var(--lp-max-w);
  margin: 0 auto;
}
.lp-section-h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--lp-text);
  text-align: center;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}
.lp-section-sub {
  font-size: 16px;
  color: var(--lp-text-muted);
  line-height: 1.65;
  text-align: center;
  max-width: 580px;
  margin: 0 auto 48px;
}

/* ── Scroll reveal ──────────────────────────────────── */
.lp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.lp-reveal.lp-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Comparison ─────────────────────────────────────── */
.lp-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
  max-width: 720px;
  margin: 0 auto;
}
.lp-compare-divider {
  width: 1px;
  background: var(--lp-border);
  align-self: stretch;
}
.lp-compare-heading {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.lp-compare-them .lp-compare-heading { color: var(--lp-text-faint); }
.lp-compare-us .lp-compare-heading { color: var(--lp-text); }
.lp-compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-compare-them .lp-compare-list li {
  font-size: 14px;
  color: var(--lp-text-faint);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.lp-compare-them .lp-compare-list li::before {
  content: '\2013';
  position: absolute;
  left: 0;
  color: #d1d5db;
}
.lp-compare-us .lp-compare-list li {
  font-size: 14px;
  color: var(--lp-text);
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
  font-weight: 500;
}
.lp-compare-us .lp-compare-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
}

/* ── Stats ──────────────────────────────────────────── */
.lp-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
  margin-bottom: 40px;
}
.lp-stat-number {
  font-size: 40px;
  font-weight: 700;
  color: var(--lp-text);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.lp-stat-caption {
  font-size: 13px;
  color: var(--lp-text-muted);
  line-height: 1.45;
}
.lp-competition-cta {
  text-align: center;
  margin: 40px 0 36px;
}
.lp-competition-line {
  font-size: 20px;
  color: var(--lp-text-secondary);
  margin: 0;
  line-height: 1.5;
}
.lp-competition-line--bold {
  font-size: 24px;
  font-weight: 700;
  color: var(--lp-text-primary);
}
.lp-stat-sources {
  max-width: 640px;
  margin: 0 auto;
}
.lp-thin-divider {
  height: 1px;
  background: var(--lp-border);
  margin-bottom: 16px;
}
.lp-stat-sources p {
  font-size: 11px;
  color: var(--lp-text-faint);
  line-height: 1.5;
  text-align: center;
}

/* ── Demo chart ────────────────────────────────────── */
.lp-demo-chart-wrap {
  max-width: 700px;
  margin: 32px auto 0;
}
@media (max-width: 767px) {
  .lp-demo-chart-wrap { max-width: 100%; }
}

/* ── Demo chart scroll-linked animation ───────────── */
.lp-demo-chart-wrap--animating .chart-dot {
  opacity: 0;
  transition: opacity 0.25s ease;
}
.lp-demo-chart-wrap--animating .chart-dot.lp-dot-visible {
  opacity: 1;
}
.lp-demo-chart-wrap--animating svg line,
.lp-demo-chart-wrap--animating svg text,
.lp-demo-chart-wrap--animating svg rect:not(:first-of-type),
.lp-demo-chart-wrap--animating .avg-bubble {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.lp-demo-chart-wrap--animating.lp-chart-bg-visible svg line,
.lp-demo-chart-wrap--animating.lp-chart-bg-visible svg text,
.lp-demo-chart-wrap--animating.lp-chart-bg-visible svg rect:not(:first-of-type),
.lp-demo-chart-wrap--animating.lp-chart-bg-visible .avg-bubble {
  opacity: 1;
}
.lp-demo-chart-wrap--animating .band-legend-row {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.lp-demo-chart-wrap--animating.lp-chart-bg-visible .band-legend-row {
  opacity: 1;
}

/* ── Features grid ──────────────────────────────────── */
.lp-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 48px;
  max-width: 720px;
  margin: 0 auto;
}
.lp-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.lp-feature:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.lp-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #EEF2FF;
  color: var(--lp-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-feature h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--lp-text);
  margin-bottom: 4px;
}
.lp-feature p {
  font-size: 13px;
  color: var(--lp-text-muted);
  line-height: 1.55;
}

/* ── Domains row ────────────────────────────────────── */
.lp-domains-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.lp-domain {
  padding: 24px 16px;
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.lp-domain:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.7);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.lp-domain:hover .lp-domain-icon {
  transform: scale(1.1);
}
.lp-domain h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--lp-text);
  margin-bottom: 4px;
}
.lp-domain p {
  font-size: 13px;
  color: var(--lp-text-muted);
  line-height: 1.5;
}
.lp-domain-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  margin: 0 auto 12px;
  letter-spacing: -0.5px;
  transition: transform 0.25s ease;
}
.lp-domain-numerical { background: #dbeafe; color: #1d4ed8; }
.lp-domain-verbal { background: #fce7f3; color: #be185d; }
.lp-domain-figural { background: #d1fae5; color: #065f46; }

/* ── Pricing ────────────────────────────────────────── */
.lp-pricing-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 560px;
  margin: 0 auto 24px;
}
.lp-pricing-card {
  border: 1.5px solid var(--lp-border);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  background: var(--lp-white);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.25s,
              box-shadow 0.3s,
              background 0.25s;
}
.lp-pricing-card:hover {
  transform: scale(1.035);
  border-color: rgba(67, 97, 238, 0.35);
  box-shadow: 0 12px 36px rgba(67, 97, 238, 0.12), 0 2px 8px rgba(0,0,0,0.06);
  background: linear-gradient(165deg, #fff 60%, #f0f3ff 100%);
}
.lp-pricing-card--recommended {
  border-color: var(--lp-accent);
  box-shadow: 0 4px 20px rgba(67,97,238,0.1);
}
.lp-pricing-card--recommended:hover {
  border-color: var(--lp-accent);
  box-shadow: 0 14px 40px rgba(67, 97, 238, 0.18), 0 2px 8px rgba(0,0,0,0.06);
  background: linear-gradient(165deg, #fff 50%, #edf0ff 100%);
}
.lp-pricing-tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lp-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.lp-pricing-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--lp-text);
  margin-bottom: 8px;
}
.lp-pricing-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 4px;
}
.lp-pricing-detail {
  font-size: 13px;
  color: var(--lp-text-muted);
  margin-bottom: 24px;
}
.lp-pricing-card .lp-cta-btn {
  width: 100%;
  padding: 11px;
  font-size: 14px;
}
.lp-guarantee {
  text-align: center;
  font-size: 13px;
  color: var(--lp-text-faint);
  margin-top: 8px;
}

/* ── FAQ ────────────────────────────────────────────── */
.lp-faq {
  max-width: 640px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--lp-border);
  padding: 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--lp-text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--lp-accent); }
.faq-chevron {
  font-size: 12px;
  color: var(--lp-text-faint);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  font-size: 14px;
  color: var(--lp-text-muted);
  line-height: 1.65;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.35s ease;
}
.faq-item.open .faq-a {
  max-height: 300px;
  opacity: 1;
  padding: 0 0 20px;
}

/* ── Footer ─────────────────────────────────────────── */
.lp-footer {
  padding: 32px 32px;
  text-align: center;
  font-size: 12px;
  color: var(--lp-text-faint);
  background: var(--lp-canvas);
  border-top: 1px solid var(--lp-border);
}

/* ── Language hint callout ──────────────────────────── */
.lang-hint {
  position: fixed;
  top: 58px;
  z-index: 55;
  pointer-events: none;
}

.lang-hint-arrow {
  width: 70px;
  height: 35px;
  display: block;
  transform: scaleX(-1);
}

/* Draw-on animation for the curve */
.lang-hint-curve {
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
}
.lang-hint.visible .lang-hint-curve {
  animation: langHintDraw 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Draw-on animation for the arrowhead barbs */
.lang-hint-barb {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
}
.lang-hint.visible .lang-hint-barb {
  animation: langHintDraw 0.25s ease forwards 0.9s;
}

@keyframes langHintDraw { to { stroke-dashoffset: 0; } }

.lang-hint-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  margin-left: -135px;
}
.lang-hint.visible .lang-hint-text {
  animation: langHintFadeIn 0.5s ease forwards 0.5s;
}
@keyframes langHintFadeIn { to { opacity: 1; } }
.lang-hint-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-text);
}
.lang-hint-sub {
  font-size: 12px;
  color: var(--lp-text-muted);
  line-height: 1.5;
}

/* Language picker pulse */
@keyframes langPickerPulse {
  0%   { box-shadow: 0 0 0 0 rgba(67,97,238,0.4); }
  70%  { box-shadow: 0 0 0 6px rgba(67,97,238,0); }
  100% { box-shadow: 0 0 0 0 rgba(67,97,238,0); }
}
.lang-toggle.lang-hint-pulse {
  animation: langPickerPulse 0.8s ease-out 3;
  border-radius: 8px;
}

/* ── Landing responsive ─────────────────────────────── */
@media (max-width: 768px) {
  :root { --lp-section-py: 64px; }
  .lp-hero {
    grid-template-columns: 1fr;
    padding: 48px 24px 40px;
    text-align: center;
  }
  .lp-hero-content { max-width: 100%; }
  .lp-hero-sub, .lp-hero-proof, .lp-hero-value, .lp-hero-contrast { max-width: 100%; margin-left: auto; margin-right: auto; }
  .lp-hero-h1 { font-size: 30px; }
  .lp-hero-mockup { display: none; }
  .lp-mockup-label { display: none; }
  .lang-hint { display: none; }
  .lp-hero--focused .lp-hero-content { transform: none; }
  .lp-hero--focused .lp-hero-mockup { transform: none; }
  .lp-section { padding: var(--lp-section-py) 24px; }
  .lp-compare {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .lp-compare-divider { width: 100%; height: 1px; }
  .lp-stats-row { grid-template-columns: 1fr; gap: 24px; }
  .lp-stat-number { font-size: 32px; }
  .lp-features-grid { grid-template-columns: 1fr; gap: 28px; }
  .lp-domains-row { grid-template-columns: 1fr; gap: 24px; }
  .lp-pricing-row { grid-template-columns: 1fr; max-width: 320px; }
  .lp-section-h2 { font-size: 24px; }
}
@media (max-width: 600px) {
  .lp-nav-inner { padding: 12px 16px; }
  .lp-hero { padding: 36px 16px 32px; }
  .lp-hero-h1 { font-size: 26px; }
  .lp-section { padding: 48px 16px; }
}
