/* ============================================
   CHILL VPN — Design tokens & base styles
   ============================================ */

:root {
  /* Palette */
  --bg: #f6f0ea;
  --bg-card: #ffffff;
  --bg-deep: #0e0f1c;
  --ink: #0e0f1c;
  --ink-2: #4a4f6a;
  --ink-3: #8a8fa8;
  --line: #ece3da;

  /* Brand gradient */
  --pink: #ff7bc2;
  --violet: #b48cff;
  --blue: #5b8def;
  --mint: #88efd1;
  --sun: #ffd166;
  --peach: #ffb088;

  --gradient: linear-gradient(135deg, #ff7bc2 0%, #b48cff 45%, #5b8def 100%);
  --gradient-soft: linear-gradient(135deg, #ffe3f3 0%, #ece1ff 50%, #dde8ff 100%);

  /* Radius */
  --r-xs: 8px;
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 32px;
  --r-xl: 44px;

  /* Spacing */
  --gap: 24px;
  --section-pad: 120px;

  /* Type */
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(14, 15, 28, 0.04);
  --shadow-md: 0 12px 32px -8px rgba(14, 15, 28, 0.08);
  --shadow-lg: 0 28px 60px -12px rgba(14, 15, 28, 0.12);
  --shadow-glow: 0 30px 80px -20px rgba(180, 140, 255, 0.45);
}

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

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(255, 123, 194, 0.18), transparent 60%),
    radial-gradient(900px 600px at -10% 30%, rgba(91, 141, 239, 0.14), transparent 60%),
    var(--bg);
  background-attachment: fixed;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--ink);
}

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

/* ============================================
   Layout
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.section-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
}

.section-title {
  font-size: clamp(36px, 5vw, 64px);
  margin: 22px 0 16px;
  max-width: 14ch;
  text-wrap: balance;
}

.section-sub {
  color: var(--ink-2);
  font-size: 18px;
  max-width: 56ch;
  text-wrap: pretty;
}

/* ============================================
   Top nav
   ============================================ */
.nav {
  position: sticky;
  top: 16px;
  z-index: 50;
  margin: 16px auto 0;
  max-width: 1280px;
  padding: 0 16px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 100px;
  padding: 10px 14px 10px 22px;
  box-shadow: var(--shadow-md);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: var(--gradient);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px -4px rgba(180, 140, 255, 0.6);
}
.brand-mark svg { width: 18px; height: 18px; }
.nav-links {
  display: flex;
  gap: 6px;
}
.nav-link {
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 15px;
  color: var(--ink-2);
  transition: background 0.2s, color 0.2s;
}
.nav-link:hover {
  background: rgba(14, 15, 28, 0.05);
  color: var(--ink);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--ink);
  color: white;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px rgba(14, 15, 28, 0.4);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: white;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -12px rgba(255, 123, 194, 0.5);
}
.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  background: var(--bg-card);
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn .arrow {
  display: inline-block;
  transition: transform 0.3s;
}
.btn:hover .arrow {
  transform: translateX(4px);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 6px 8px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-2);
}
.hero-eyebrow-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--mint);
  display: grid;
  place-items: center;
  position: relative;
}
.hero-eyebrow-dot::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: var(--mint);
  animation: pulse 2s ease-out infinite;
  opacity: 0.5;
}
@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(2); opacity: 0; }
}

.hero-title {
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 600;
  margin: 26px 0 24px;
  line-height: 0.94;
  letter-spacing: -0.035em;
}
.hero-title .grad {
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  animation: gradient-shift 8s ease-in-out infinite;
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero-title .squiggle {
  position: relative;
  display: inline-block;
}
.hero-title .squiggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 14' preserveAspectRatio='none'><path d='M0 7 Q 15 0 30 7 T 60 7 T 90 7 T 120 7' stroke='%23ff7bc2' stroke-width='3' fill='none' stroke-linecap='round'/></svg>") repeat-x;
  background-size: 60px 14px;
}

.hero-desc {
  font-size: 19px;
  color: var(--ink-2);
  max-width: 48ch;
  margin-bottom: 36px;
  text-wrap: pretty;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-trust-stars {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-trust-avatars {
  display: flex;
}
.hero-trust-avatars .av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -10px;
}
.hero-trust-avatars .av:first-child { margin-left: 0; }
.hero-trust-text {
  font-size: 14px;
  color: var(--ink-2);
}
.hero-trust-text strong { color: var(--ink); }

/* Hero visual / stage */
.hero-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 620px;
  margin-left: auto;
}

/* ============================================
   Mascot
   ============================================ */
.mascot-wrap {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.mascot-bg {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: var(--gradient);
  filter: blur(40px);
  opacity: 0.4;
  animation: blob-pulse 6s ease-in-out infinite;
}
@keyframes blob-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.08) rotate(8deg); }
}

.mascot {
  position: relative;
  width: 72%;
  aspect-ratio: 1;
  animation: float 6s ease-in-out infinite;
  transform-style: preserve-3d;
  will-change: transform;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-18px) rotate(2deg); }
}

/* Orbiting elements */
.orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.orbit-item {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  animation: orbit-float 7s ease-in-out infinite;
  will-change: transform;
}
.orbit-item .flag {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 16px;
  background: var(--gradient-soft);
}
.orbit-item .ping {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(136, 239, 209, 0.3);
}

@keyframes orbit-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(8px, -12px); }
}

/* ============================================
   Marquee
   ============================================ */
.marquee {
  background: var(--ink);
  color: var(--bg);
  padding: 22px 0;
  margin: 60px 0 0;
  overflow: hidden;
  position: relative;
  transform: rotate(-1.5deg);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -0.02em;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.marquee-track span::after {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gradient);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   Features
   ============================================ */
.features-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.feature {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
  cursor: default;
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: var(--gradient-soft);
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.feature-icon svg { width: 32px; height: 32px; }
.feature h3 {
  font-size: 26px;
  margin-bottom: 10px;
  line-height: 1.1;
}
.feature p {
  color: var(--ink-2);
  font-size: 15px;
  text-wrap: pretty;
}
.feature.span-6 { grid-column: span 6; }
.feature.span-4 { grid-column: span 4; }
.feature.span-8 { grid-column: span 8; }
.feature.span-12 { grid-column: span 12; }

.feature-big {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.feature-big .feature-art {
  flex: 1;
  margin-top: 24px;
  position: relative;
  display: grid;
  place-items: center;
}

/* Speed gauge */
.speed-gauge {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 2 / 1;
}
.speed-gauge .arc {
  width: 100%;
  height: 100%;
}
.speed-value {
  position: absolute;
  inset: auto 0 8% 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.speed-value small {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-3);
  margin-top: 2px;
  letter-spacing: 0.08em;
}

/* Shield art */
.shield-art {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.shield-art svg { width: 80%; max-width: 200px; }

/* ============================================
   Server map
   ============================================ */
.servers {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--r-xl);
  padding: 80px 60px;
  margin: 0 32px;
  overflow: hidden;
  position: relative;
}
.servers .section-tag {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
}
.servers .section-title {
  color: var(--bg);
}
.servers .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

.servers-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.map-canvas {
  position: relative;
  aspect-ratio: 5/3;
  background:
    radial-gradient(circle at 30% 40%, rgba(180, 140, 255, 0.15), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(255, 123, 194, 0.12), transparent 50%);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.map-canvas svg { width: 100%; height: 100%; }
.map-pin {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 4px rgba(136, 239, 209, 0.25);
}
.map-pin::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: var(--mint);
  opacity: 0.4;
  animation: ping 2.5s ease-out infinite;
}
@keyframes ping {
  0% { transform: scale(0.5); opacity: 0.6; }
  100% { transform: scale(3); opacity: 0; }
}

.server-list {
  display: grid;
  gap: 12px;
}
.server-stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  transition: background 0.2s;
}
.server-stat:hover {
  background: rgba(255, 255, 255, 0.08);
}
.server-stat-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.server-stat-label {
  text-align: right;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 18ch;
}
.server-stat-label strong {
  color: var(--bg);
  display: block;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 2px;
}

/* ============================================
   Platforms
   ============================================ */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 60px;
}
.platform {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
}
.platform:hover {
  transform: translateY(-4px) rotate(-1deg);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.platform-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
}
.platform-icon svg { width: 100%; height: 100%; }
.platform-name {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 2px;
}
.platform-size {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}

/* ============================================
   Pricing
   ============================================ */

/* Trial banner */
.trial-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  margin: 48px 0 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.trial-banner::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(136, 239, 209, 0.25), transparent 70%);
  pointer-events: none;
}
.trial-banner-art {
  flex-shrink: 0;
  display: grid;
  place-items: center;
}
.trial-banner-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trial-banner-text strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.trial-banner-text span {
  color: var(--ink-2);
  font-size: 14px;
}
.trial-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  z-index: 1;
}
.trial-banner-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px rgba(14, 15, 28, 0.4);
}
.trial-banner-cta .arrow { transition: transform 0.3s; }
.trial-banner-cta:hover .arrow { transform: translateX(4px); }

/* Duration toggle */
.duration-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin: 40px 0 28px;
}
.duration-toggle-lbl {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.duration-toggle-track {
  display: inline-flex;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 5px;
  gap: 2px;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}
.duration-pill {
  padding: 10px 18px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-2);
  transition: color 0.2s, background 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.duration-pill:hover { color: var(--ink); }
.duration-pill.active {
  background: var(--ink);
  color: var(--bg);
}
.duration-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 3px 7px;
  border-radius: 100px;
  background: var(--gradient);
  color: white;
}
.duration-pill.active .duration-badge {
  background: var(--bg);
  color: var(--ink);
}

/* Pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}

.price {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.price:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.price.featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.price.featured::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--r-lg);
  background: var(--gradient);
  z-index: -1;
}
.price.featured::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.3;
  filter: blur(40px);
  pointer-events: none;
}

.price-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
  flex-wrap: wrap;
}
.price-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  white-space: nowrap;
}
.price.featured .price-tag {
  color: var(--bg);
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
}
.price-save {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--mint);
  color: var(--ink);
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.price.featured .price-save {
  background: var(--bg);
  color: var(--ink);
}

.price-name {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.price-tease {
  color: var(--ink-2);
  font-size: 14px;
  margin-bottom: 28px;
}
.price.featured .price-tease { color: rgba(255, 255, 255, 0.7); }

.price-amount {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.price-amount .currency {
  font-size: 28px;
  margin-top: 12px;
  color: var(--ink-2);
}
.price.featured .price-amount .currency { color: rgba(255, 255, 255, 0.7); }
.price-per {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 8px;
  letter-spacing: 0.02em;
}
.price.featured .price-per { color: rgba(255, 255, 255, 0.6); }
.price-old {
  font-size: 13px;
  color: var(--ink-3);
  text-decoration: line-through;
  margin-top: 6px;
}
.price.featured .price-old { color: rgba(255, 255, 255, 0.4); }

.price ul {
  margin: 28px 0;
  display: grid;
  gap: 14px;
  flex: 1;
}
.price li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}
.price li .check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--mint);
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.price.featured li .check {
  background: var(--bg);
}
.price-cta {
  width: 100%;
  padding: 16px;
  border-radius: 100px;
  background: var(--bg);
  color: var(--ink);
  font-weight: 600;
  transition: transform 0.2s;
  position: relative;
  z-index: 1;
}
.price:not(.featured) .price-cta {
  background: var(--ink);
  color: var(--bg);
}
.price-cta:hover { transform: scale(1.02); }

/* Empty price state */
.price-empty {
  background: transparent;
  border: 2px dashed var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
}
.price-empty:hover { transform: none; box-shadow: none; }
.price-empty .price-tag { color: var(--ink-3); }
.price-empty .price-name { color: var(--ink-2); font-size: 28px; }
.price-empty-art {
  display: grid;
  place-items: center;
  margin-top: auto;
  opacity: 0.6;
}

/* Gifts row */
.gifts-row {
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}
.gifts-row-head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.gifts-row-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.gifts-row-sub {
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 2px;
}
.gifts-row-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.gift-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--ink-3);
  transition: transform 0.2s, border-color 0.2s;
  cursor: default;
}
.gift-chip:hover {
  transform: translateY(-2px);
  border-color: var(--violet);
}
.gift-chip strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 2px;
}
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  color: var(--ink);
  position: relative;
}
.btn-text .arrow { transition: transform 0.3s; }
.btn-text:hover .arrow { transform: translateX(4px); }
.btn-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 22px;
  bottom: -2px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.btn-text:hover::after { transform: scaleX(1); }

/* ============================================
   FAQ
   ============================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open {
  border-color: var(--violet);
  box-shadow: var(--shadow-md);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 24px 28px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--ink);
}
.faq-toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  display: grid;
  place-items: center;
  transition: background 0.3s, transform 0.3s;
}
.faq-item.open .faq-toggle {
  background: var(--gradient);
  color: white;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 28px 24px;
}

/* ============================================
   Final CTA
   ============================================ */
.final-cta {
  position: relative;
  text-align: center;
  padding: 120px 32px;
  border-radius: var(--r-xl);
  margin: 0 32px;
  background: var(--gradient);
  overflow: hidden;
  color: white;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.2), transparent 50%);
}
.final-cta h2 {
  position: relative;
  font-size: clamp(48px, 7vw, 96px);
  color: white;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
  text-wrap: balance;
}
.final-cta p {
  position: relative;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}
.final-cta .btn-primary {
  position: relative;
  background: white;
  color: var(--ink);
}
.final-cta .btn-primary::before { display: none; }
.final-cta .btn-primary:hover {
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.3);
}

/* Floating clouds in final cta */
.final-cloud {
  position: absolute;
  border-radius: 50%;
  background: white;
  opacity: 0.4;
  filter: blur(20px);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer-brand p {
  color: var(--ink-2);
  font-size: 15px;
  max-width: 36ch;
  margin: 16px 0 24px;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a {
  color: var(--ink-2);
  font-size: 15px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: 13px;
  color: var(--ink-3);
  font-family: var(--font-mono);
}

/* ============================================
   Misc
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* Stars in hero */
.spark {
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
  animation: twinkle 4s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stage { max-width: 480px; margin: 0 auto; }
  .features-head { grid-template-columns: 1fr; }
  .feature.span-6, .feature.span-4, .feature.span-8 { grid-column: span 12; }
  .servers-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .price.featured { transform: none; }
  .trial-banner { flex-direction: column; align-items: flex-start; }
  .duration-toggle { flex-direction: column; align-items: flex-start; }
  .gifts-row { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}

@media (max-width: 640px) {
  :root {
    --section-pad: 72px;
  }
  .container { padding: 0 18px; }

  /* Nav */
  .nav { top: 10px; margin-top: 10px; padding: 0 10px; }
  .nav-inner { padding: 8px 8px 8px 16px; }
  .brand { font-size: 17px; }
  .brand-mark { width: 26px; height: 26px; }
  .nav-cta { padding: 8px 14px; font-size: 13px; }
  .nav-cta svg { display: none; }

  /* Hero */
  .hero { padding: 32px 0 40px; }
  .hero-grid { gap: 36px; }
  .hero-title {
    font-size: clamp(40px, 11vw, 56px) !important;
    letter-spacing: -0.03em;
    margin: 18px 0 18px;
  }
  .hero-title .squiggle::after { height: 10px; }
  .hero-desc { font-size: 16px; margin-bottom: 24px; }
  .hero-eyebrow { font-size: 12px; padding: 5px 12px 5px 6px; }
  .hero-ctas { gap: 10px; }
  .btn { padding: 14px 22px; font-size: 15px; }
  .hero-trust { gap: 14px; margin-top: 28px; }
  .hero-trust-text { font-size: 13px; }
  .hero-stage { max-width: 320px; }

  /* Orbit chips — smaller and tucked tighter */
  .orbit-item {
    padding: 8px 10px;
    border-radius: 14px;
    font-size: 11px;
    gap: 8px;
  }
  .orbit-item .flag { width: 22px; height: 22px; font-size: 13px; border-radius: 6px; }
  .orbit-item div div { font-size: 11px !important; }

  /* Marquee */
  .marquee { margin-top: 40px; padding: 16px 0; }
  .marquee-track { font-size: 22px; gap: 36px; }
  .marquee-track span { gap: 36px; }
  .marquee-track span::after { width: 10px; height: 10px; }

  /* Section general */
  .section-title { font-size: clamp(30px, 8vw, 44px); margin: 16px 0 12px; }
  .section-sub { font-size: 16px; }

  /* Features */
  .features-head { gap: 24px; margin-bottom: 36px; }
  .feature { padding: 24px; border-radius: 24px; min-height: auto !important; }
  .feature h3 { font-size: 22px; }
  .feature-icon { width: 52px; height: 52px; border-radius: 16px; margin-bottom: 20px; }
  .feature-icon svg { width: 26px; height: 26px; }
  .feature-big { min-height: 320px; }
  .speed-value { font-size: 42px; }

  /* Servers */
  .servers { padding: 56px 24px; margin: 0 16px; border-radius: 28px; }
  .servers-grid { gap: 32px; margin-top: 36px; }
  .server-stat { padding: 16px 18px; border-radius: 16px; }
  .server-stat-num { font-size: 38px; }
  .server-stat-label strong { font-size: 14px; }
  .server-stat-label { font-size: 12px; }
  .map-canvas { border-radius: 20px; }

  /* Platforms */
  .platforms-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 36px; }
  .platform { padding: 20px 14px; border-radius: 16px; }
  .platform-icon { width: 36px; height: 36px; margin-bottom: 10px; }

  /* Pricing */
  .trial-banner { margin: 32px 0 20px; padding: 18px 20px; border-radius: 22px; }
  .trial-banner-text strong { font-size: 18px; }
  .trial-banner-text span { font-size: 13px; }
  .trial-banner-cta { padding: 12px 18px; font-size: 13px; width: 100%; justify-content: center; }
  .duration-toggle { margin: 28px 0 20px; gap: 12px; }
  .duration-toggle-track {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px;
  }
  .duration-toggle-track::-webkit-scrollbar { display: none; }
  .duration-pill { padding: 8px 14px; font-size: 13px; gap: 6px; }
  .duration-badge { font-size: 9px; padding: 2px 6px; }
  .pricing-grid { gap: 14px; }
  .price { padding: 26px 22px; border-radius: 22px; }
  .price-name { font-size: 28px; }
  .price-amount { font-size: 56px; }
  .price-amount .currency { font-size: 22px; margin-top: 10px; }
  .price ul { margin: 20px 0; gap: 10px; }
  .price li { font-size: 13px; }
  .price-cta { padding: 14px; font-size: 14px; }
  .gifts-row { padding: 22px; border-radius: 22px; gap: 16px; margin-top: 32px; }
  .gifts-row-title { font-size: 16px; }
  .gifts-row-sub { font-size: 12px; }
  .gifts-row-head { gap: 12px; }
  .gifts-row-chips { justify-content: flex-start; gap: 6px; }
  .gift-chip { padding: 6px 10px; border-radius: 10px; }
  .gift-chip strong { font-size: 12px; }

  /* FAQ */
  .faq-q { padding: 18px 20px; font-size: 15px; gap: 12px; }
  .faq-item.open .faq-a { padding: 0 20px 18px; }
  .faq-toggle { width: 26px; height: 26px; }

  /* Final CTA */
  .final-cta { padding: 72px 24px; margin: 0 16px; border-radius: 28px; }
  .final-cta h2 { font-size: clamp(36px, 9vw, 56px); }
  .final-cta p { font-size: 16px; }

  /* Footer */
  .footer { padding: 56px 0 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; gap: 10px; align-items: flex-start; font-size: 12px; }
}
