/* ===================================================================
   Winted VPN - Public Landing (vpn.winted.click)
   Premium dark · marketing-oriented · mobile-first  ·  v2
   =================================================================== */

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-0: #0a0a0c;
  --bg-1: #131316;
  --bg-2: #1a1a1f;
  --bg-3: #25252b;

  --fg-1: #ffffff;
  --fg-2: rgba(255,255,255,0.66);
  --fg-3: rgba(255,255,255,0.36);
  --fg-disabled: rgba(255,255,255,0.16);

  --line: rgba(255,255,255,0.05);
  --line-strong: rgba(255,255,255,0.10);

  --accent: #5b9eff;
  --accent-strong: #4d8ef0;
  --accent-soft: rgba(91,158,255,0.10);
  --accent-border: rgba(91,158,255,0.22);

  --ok: #34d399;
  --ok-soft: rgba(52,211,153,0.10);
  --warn: #f0a3ff;
  --hot: #ff8c42;

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --t-fast: 0.15s cubic-bezier(0.4,0,0.2,1);
  --t-base: 0.28s cubic-bezier(0.22,1,0.36,1);
  --t-spring: 0.45s cubic-bezier(0.34,1.4,0.64,1);
}

html, body {
  background: var(--bg-0);
  color: var(--fg-1);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  position: relative;
  overflow-x: hidden;
}

/* Multi-layer ambient background - radial auras + subtle grid */
body::before,
body::after {
  content: '';
  position: fixed;
  pointer-events: none;
  z-index: -1;
  filter: blur(40px);
  opacity: 0.65;
}

body::before {
  top: -260px;
  right: -180px;
  width: 720px;
  height: 720px;
  background:
    radial-gradient(circle at 40% 40%, rgba(91,158,255,0.22) 0%, transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(124,184,255,0.10) 0%, transparent 60%);
}

body::after {
  bottom: -220px;
  left: -180px;
  width: 640px;
  height: 640px;
  background:
    radial-gradient(circle at 50% 50%, rgba(167,139,250,0.16) 0%, transparent 55%),
    radial-gradient(circle at 30% 70%, rgba(91,158,255,0.10) 0%, transparent 60%);
}

/* Faint grid overlay (top of fold only) */
.grid-overlay {
  position: fixed;
  inset: 0 0 auto 0;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 70%);
  opacity: 0.5;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── NAV ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 12, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: inline-block;
  object-fit: cover;
  box-shadow: 0 6px 20px -8px rgba(91,158,255,0.55);
}

.brand-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-2);
  border-radius: 8px;
  transition: color var(--t-fast), background var(--t-fast);
}

.nav-link:hover { color: var(--fg-1); background: var(--bg-1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--fg-1);
  color: var(--bg-0);
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  box-shadow: 0 6px 18px -6px rgba(255,255,255,0.25);
}

.nav-cta:hover { transform: translateY(-1px); background: #ededf0; box-shadow: 0 10px 24px -6px rgba(255,255,255,0.35); }
.nav-cta .icon { width: 14px; height: 14px; stroke-width: 2; }

@media (max-width: 640px) {
  .nav-link { display: none; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 10px; }
  .nav-cta .icon { width: 16px; height: 16px; }
}

/* ─── HERO ─── */
.hero {
  padding: 96px 0 72px;
  text-align: center;
  position: relative;
}

@media (max-width: 640px) {
  .hero { padding: 56px 0 44px; }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  background: var(--ok-soft);
  border: 1px solid rgba(52,211,153,0.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ok);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  margin-bottom: 30px;
  box-shadow: 0 0 0 6px rgba(52,211,153,0.04), 0 12px 36px -16px rgba(52,211,153,0.45);
}

.hero-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 8px var(--ok);
  animation: pulseDot 2.4s infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0.6), 0 0 8px var(--ok); }
  50%      { box-shadow: 0 0 0 6px rgba(52,211,153,0), 0 0 8px var(--ok); }
}

.hero-title {
  font-size: clamp(40px, 6.4vw, 72px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.66) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .glow {
  background: linear-gradient(90deg, #7cb8ff 0%, #c66cff 60%, #ff8c42 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--fg-2);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
  background: rgba(19,19,22,0.7);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-feature-settings: "tnum";
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.stat-value {
  font-size: 17px;
  font-weight: 800;
  color: var(--fg-1);
  letter-spacing: -0.01em;
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-sep {
  width: 1px;
  height: 24px;
  background: var(--line-strong);
}

@media (max-width: 480px) {
  .hero-stats { gap: 14px; padding: 12px 18px; }
}

/* hero trust row */
.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  font-size: 13px;
  color: var(--fg-3);
}
.hero-trust strong { color: var(--fg-1); font-weight: 700; }

.trust-avatars { display: inline-flex; }
.trust-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--bg-0);
  margin-left: -7px;
  display: inline-block;
  box-shadow: 0 4px 12px -4px rgba(0,0,0,0.6);
}
.trust-avatar:first-child { margin-left: 0; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:active { transform: scale(0.985); }

.btn-primary {
  background: var(--fg-1);
  color: var(--bg-0);
  box-shadow:
    0 8px 24px -6px rgba(255,255,255,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.6);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: #ededf0;
  box-shadow: 0 12px 32px -6px rgba(255,255,255,0.28), inset 0 0 0 1px rgba(255,255,255,0.7);
}

.btn-ghost {
  background: rgba(26,26,31,0.7);
  color: var(--fg-1);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover { background: var(--bg-2); border-color: rgba(255,255,255,0.18); }

.btn-lg { padding: 18px 30px; font-size: 16px; }

/* ─── SECTION HEADER ─── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  padding: 5px 11px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 999px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.028em;
  line-height: 1.1;
  margin-bottom: 12px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.78) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  font-size: 16px;
  color: var(--fg-2);
  max-width: 520px;
  margin: 0 auto;
}

/* ─── FEATURES ─── */
.features {
  padding: 88px 0;
}

@media (max-width: 640px) {
  .features { padding: 56px 0; }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 880px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
}

.feature {
  position: relative;
  padding: 28px 24px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base);
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, var(--feat-glow, rgba(91,158,255,0.10)) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--t-base);
  pointer-events: none;
}

.feature:hover {
  background: var(--bg-2);
  border-color: var(--line-strong);
  transform: translateY(-3px);
}
.feature:hover::before { opacity: 1; }

.feature > * { position: relative; z-index: 1; }

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--feat-bg, var(--accent-soft));
  border: 1px solid var(--feat-border, var(--accent-border));
  color: var(--feat-color, var(--accent));
  margin-bottom: 18px;
  box-shadow: 0 8px 24px -8px var(--feat-shadow, rgba(91,158,255,0.5));
  transition: transform var(--t-spring);
}

.feature:hover .feature-icon { transform: scale(1.06) rotate(-2deg); }

.feature-icon .icon { width: 22px; height: 22px; stroke-width: 2; }

/* per-card accent palettes */
.features-grid .feature:nth-child(1) { --feat-bg: rgba(91,158,255,0.10); --feat-border: rgba(91,158,255,0.30); --feat-color: #7cb8ff; --feat-shadow: rgba(91,158,255,0.50); --feat-glow: rgba(91,158,255,0.10); }
.features-grid .feature:nth-child(2) { --feat-bg: rgba(52,211,153,0.10); --feat-border: rgba(52,211,153,0.30); --feat-color: #34d399; --feat-shadow: rgba(52,211,153,0.50); --feat-glow: rgba(52,211,153,0.10); }
.features-grid .feature:nth-child(3) { --feat-bg: rgba(255,140,66,0.10); --feat-border: rgba(255,140,66,0.30); --feat-color: #ffb86c; --feat-shadow: rgba(255,140,66,0.50); --feat-glow: rgba(255,140,66,0.10); }
.features-grid .feature:nth-child(4) { --feat-bg: rgba(198,108,255,0.10); --feat-border: rgba(198,108,255,0.30); --feat-color: #c66cff; --feat-shadow: rgba(198,108,255,0.50); --feat-glow: rgba(198,108,255,0.10); }
.features-grid .feature:nth-child(5) { --feat-bg: rgba(91,158,255,0.10); --feat-border: rgba(91,158,255,0.30); --feat-color: #5b9eff; --feat-shadow: rgba(91,158,255,0.45); --feat-glow: rgba(91,158,255,0.08); }
.features-grid .feature:nth-child(6) { --feat-bg: rgba(52,211,153,0.10); --feat-border: rgba(52,211,153,0.30); --feat-color: #34d399; --feat-shadow: rgba(52,211,153,0.45); --feat-glow: rgba(52,211,153,0.08); }

.feature-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.feature-text {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.55;
}

/* ─── HOW IT WORKS ─── */
.how {
  padding: 88px 0;
  position: relative;
}

@media (max-width: 640px) {
  .how { padding: 56px 0; }
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
  margin-bottom: 48px;
  position: relative;
}

/* connecting line behind step numbers */
.steps::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 18%, var(--line-strong) 82%, transparent);
  z-index: 0;
}

@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
}

.step {
  position: relative;
  padding: 36px 24px 28px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  z-index: 1;
  transition: border-color var(--t-base), transform var(--t-base);
}

.step:hover { border-color: var(--line-strong); transform: translateY(-2px); }

.step::after {
  content: attr(data-bignum);
  position: absolute;
  top: -28px;
  right: -8px;
  font-size: 180px;
  font-weight: 900;
  line-height: 1;
  color: rgba(91,158,255,0.05);
  letter-spacing: -0.06em;
  font-family: 'Inter', sans-serif;
  pointer-events: none;
  z-index: 0;
}

.step > * { position: relative; z-index: 1; }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  margin-bottom: 18px;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.step-text {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.55;
}

.how-cta {
  display: flex;
  justify-content: center;
}

/* ─── PRICING ─── */
.pricing {
  padding: 88px 0;
  position: relative;
}

@media (max-width: 640px) {
  .pricing { padding: 56px 0; }
}

.plans-grid {
  display: grid;
  /* auto-fit: число карточек берётся из API (3/4/5) и сетка не ломается.
     minmax(210px,1fr) - карточки не уже 210px, переносятся при нехватке места. */
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  margin-bottom: 40px;
}

@media (max-width: 980px) {
  .plans-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
}

@media (max-width: 480px) {
  .plans-grid { grid-template-columns: 1fr; }
}

.plan {
  position: relative;
  padding: 26px 22px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base);
}

.plan:hover { background: var(--bg-2); border-color: var(--line-strong); transform: translateY(-2px); }

.plan--featured {
  background:
    linear-gradient(180deg, rgba(91,158,255,0.10), rgba(91,158,255,0.02)),
    var(--bg-1);
  border-color: transparent;
  box-shadow:
    0 0 0 1px rgba(91,158,255,0.30),
    0 24px 60px -24px rgba(91,158,255,0.40);
  transform: translateY(-4px);
}

.plan--featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--r-lg);
  padding: 1px;
  background: linear-gradient(180deg, rgba(91,158,255,0.55), rgba(91,158,255,0.05));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.plan--featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 0 1px rgba(91,158,255,0.45), 0 30px 70px -22px rgba(91,158,255,0.55);
}

.plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #0a0a0c;
  background: linear-gradient(135deg, #7cb8ff, #5b9eff);
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 18px -4px rgba(91,158,255,0.55);
}

.plan-period {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--fg-3);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.plan-price {
  font-size: 38px;
  font-weight: 800;
  color: var(--fg-1);
  font-feature-settings: "tnum";
  letter-spacing: -0.024em;
  line-height: 1;
  margin-bottom: 6px;
}

.plan-currency {
  font-size: 22px;
  font-weight: 600;
  color: var(--fg-3);
  margin-left: 2px;
}

.plan-meta {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-2);
  font-feature-settings: "tnum";
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.plan-save {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--ok);
  background: var(--ok-soft);
  border: 1px solid rgba(52,211,153,0.25);
  padding: 2px 7px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  font-feature-settings: "tnum";
}

.plan-perks {
  list-style: none;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.plan-perks li {
  font-size: 13.5px;
  color: var(--fg-2);
  display: flex;
  align-items: center;
  gap: 9px;
}

.plan-perks li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--ok) 0%, var(--ok) 28%, transparent 32%),
    var(--ok-soft);
  border: 1px solid rgba(52,211,153,0.30);
  flex-shrink: 0;
}

.pricing-cta {
  text-align: center;
}

.pricing-trial {
  margin-top: 14px;
  font-size: 13px;
  color: var(--fg-3);
}

.pricing-trial strong { color: var(--ok); font-weight: 700; }

/* ─── FAQ ─── */
.faq {
  padding: 88px 0;
}

@media (max-width: 640px) {
  .faq { padding: 56px 0; }
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: background var(--t-base), border-color var(--t-base);
}

.faq-item:hover { border-color: var(--line-strong); }
.faq-item[open] { background: var(--bg-2); border-color: var(--accent-border); box-shadow: 0 8px 30px -10px rgba(91,158,255,0.20); }

.faq-q {
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}

.faq-q::-webkit-details-marker { display: none; }

.faq-q::after {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 6px;
  position: relative;
  flex-shrink: 0;
  transition: transform var(--t-base), background var(--t-base);
}
.faq-q::before {
  content: '';
  width: 8px;
  height: 8px;
  position: absolute;
  right: 25px;
  background:
    linear-gradient(var(--accent), var(--accent)) center / 8px 2px no-repeat,
    linear-gradient(var(--accent), var(--accent)) center / 2px 8px no-repeat;
  transition: transform var(--t-base), opacity var(--t-base);
  pointer-events: none;
}
.faq-item[open] .faq-q::before {
  transform: rotate(45deg);
  background: linear-gradient(var(--accent), var(--accent)) center / 8px 2px no-repeat;
}
.faq-item[open] .faq-q::after { transform: rotate(180deg); background: rgba(91,158,255,0.15); }

.faq-a {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.6;
}

.faq-a a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ─── FINAL CTA ─── */
.final-cta {
  padding: 96px 0;
}

@media (max-width: 640px) {
  .final-cta { padding: 64px 0; }
}

.final-card {
  position: relative;
  text-align: center;
  padding: 64px 32px;
  border-radius: var(--r-xl);
  background:
    radial-gradient(ellipse at top, rgba(91,158,255,0.20), transparent 60%),
    linear-gradient(180deg, rgba(19,19,22,0.9), rgba(10,10,12,0.95));
  border: 1px solid transparent;
  overflow: hidden;
}

.final-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(91,158,255,0.45), rgba(91,158,255,0.05));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.final-eyebrow {
  display: inline-block;
  font-family: ui-monospace, monospace;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 5px 11px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  margin-bottom: 18px;
}

.final-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  letter-spacing: -0.028em;
  margin-bottom: 12px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.65) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.final-sub {
  font-size: 16px;
  color: var(--fg-2);
  margin-bottom: 32px;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 28px;
}

.pay-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--fg-2);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  letter-spacing: -0.005em;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.pay-chip:hover { background: rgba(255,255,255,0.07); color: var(--fg-1); transform: translateY(-1px); }

/* ─── FOOTER ─── */
.footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
  margin-top: 16px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand .brand-mark { width: 24px; height: 24px; border-radius: 7px; }
.footer-brand .brand-name { font-size: 14px; font-weight: 700; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}

.footer-links a {
  font-size: 13px;
  color: var(--fg-2);
  transition: color var(--t-fast);
}

.footer-links a:hover { color: var(--fg-1); }

.footer-copy {
  font-size: 12px;
  color: var(--fg-3);
  font-family: ui-monospace, "SF Mono", monospace;
}

@media (max-width: 640px) {
  .footer-inner { justify-content: center; text-align: center; flex-direction: column; }
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: var(--bg-2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--bg-3); }

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