/* ============================================================
   NightShield VPN — Design System & Styles
   Deep near-black · aurora gradients · glassmorphism · HUD
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Color */
  --bg: #06080f;
  --bg-raise: #0a0e1a;
  --bg-alt: #080b15;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --border-lume: rgba(56, 225, 255, 0.22);

  --text: #eef2fa;
  --text-dim: #9aa5bd;
  --text-faint: #6b768f;

  --cyan: #38e1ff;
  --blue: #3d7bff;
  --violet: #7a5cff;
  --green: #3ddc97;
  --amber: #ffc24b;

  --grad-accent: linear-gradient(100deg, var(--cyan), var(--blue) 55%, var(--violet));
  --grad-btn: linear-gradient(135deg, #23c8ea, #3d7bff 60%, #6a55f2);

  /* Type */
  --font-display: "Space Grotesk", "Inter", -apple-system, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", ui-monospace, Menlo, monospace;

  /* Shape & elevation */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow-cyan: 0 0 24px rgba(56, 225, 255, 0.35);
  --glass-blur: saturate(140%) blur(14px);

  /* Spacing scale */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 0.5s;
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  position: relative;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Soft background grid — HUD motif */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(120, 160, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 160, 255, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 25%, transparent 78%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 25%, transparent 78%);
}

img,
svg,
canvas {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

::selection {
  background: rgba(56, 225, 255, 0.28);
  color: #fff;
}

/* Focus states — visible & branded */
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: var(--s-4);
  z-index: 200;
  padding: var(--s-2) var(--s-4);
  background: var(--bg-raise);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: var(--s-4);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Grain + scanline overlay — filmic finish */
.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 3px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

/* Aurora — iridescent glowing light sources */
.aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.aurora span {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
  animation: aurora-drift 26s ease-in-out infinite alternate;
}

.aurora span:nth-child(1) {
  top: -18%;
  right: -10%;
  width: 46vw;
  height: 46vw;
  background: radial-gradient(circle, rgba(56, 225, 255, 0.12), transparent 65%);
}

.aurora span:nth-child(2) {
  top: 20%;
  left: -14%;
  width: 42vw;
  height: 42vw;
  background: radial-gradient(circle, rgba(122, 92, 255, 0.11), transparent 65%);
  animation-delay: -9s;
}

.aurora span:nth-child(3) {
  bottom: -24%;
  left: 30%;
  width: 44vw;
  height: 44vw;
  background: radial-gradient(circle, rgba(61, 123, 255, 0.10), transparent 65%);
  animation-delay: -18s;
}

@keyframes aurora-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(4vw, 3vh, 0) scale(1.12); }
}

/* ---------- Layout ---------- */
.container {
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
}

.container--narrow {
  width: min(820px, 100% - 2.5rem);
}

.section {
  position: relative;
  z-index: 2;
  padding-block: clamp(4rem, 9vw, 7rem);
}

.section--alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 30%),
    var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section__head {
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}

.section__eyebrow {
  display: inline-block;
  margin-bottom: var(--s-3);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.4vw, 2.9rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.section__lead {
  margin-top: var(--s-4);
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  color: var(--text-dim);
}

.section__more {
  margin-top: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.text-gradient {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-gradient--sheen {
  background: linear-gradient(100deg, var(--cyan), var(--blue) 35%, var(--violet) 55%, var(--cyan) 80%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sheen 7s linear infinite;
}

@keyframes sheen {
  to { background-position: -220% 0; }
}

/* Monospace HUD label */
.mono {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ---------- Cards (glassmorphism + cursor glow) ---------- */
.card {
  position: relative;
  --mx: 50%;
  --my: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    var(--shadow-card);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: radial-gradient(260px circle at var(--mx) var(--my), rgba(56, 225, 255, 0.075), transparent 62%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}

.card:hover::after {
  opacity: 1;
}

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

/* HUD corner brackets */
.corners::before,
.corners::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
  opacity: 0.55;
  transition: opacity 0.3s var(--ease);
}

.corners::before {
  top: 8px;
  left: 8px;
  border-top: 1px solid var(--border-lume);
  border-left: 1px solid var(--border-lume);
}

.corners::after {
  bottom: 8px;
  right: 8px;
  border-bottom: 1px solid var(--border-lume);
  border-right: 1px solid var(--border-lume);
}

.corners:hover::before,
.corners:hover::after {
  opacity: 1;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 0.72rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  white-space: nowrap;
  will-change: transform;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn__icon {
  width: 1em;
  height: 1em;
}

.btn--primary {
  color: #fff;
  background: var(--grad-btn);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 18px rgba(61, 123, 255, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(61, 123, 255, 0.5), 0 0 22px rgba(56, 225, 255, 0.3);
}

.btn--glow {
  box-shadow: 0 4px 18px rgba(61, 123, 255, 0.4), 0 0 26px rgba(56, 225, 255, 0.22);
}

.btn--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(56, 225, 255, 0.45);
  box-shadow: 0 0 18px rgba(56, 225, 255, 0.14);
}

.btn--sm { padding: 0.5rem 1.1rem; font-size: 0.875rem; }
.btn--lg { padding: 0.95rem 2rem; font-size: 1.05rem; }
.btn--xl { padding: 1.1rem 2.4rem; font-size: 1.1rem; }
.btn--block { width: 100%; }

/* ---------- Pulse dot ---------- */
.pulse-dot {
  display: inline-block;
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(56, 225, 255, 0.6);
  animation: pulse 2.2s infinite;
}

.pulse-dot--green {
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(61, 220, 151, 0.6);
  animation-name: pulse-green;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(56, 225, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(56, 225, 255, 0); }
}

@keyframes pulse-green {
  70% { box-shadow: 0 0 0 9px rgba(61, 220, 151, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 220, 151, 0); }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-block: 1rem;
  transition: padding 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.navbar.is-scrolled {
  padding-block: 0.6rem;
  background: rgba(6, 8, 15, 0.74);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom-color: var(--border);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
}

.navbar__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex: none;
}

.logo-mark {
  width: 30px;
  height: 30px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.logo-text--dim {
  font-weight: 500;
  color: var(--text-dim);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
}

.navbar__links > a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.2s var(--ease);
}

.navbar__links > a:hover {
  color: var(--text);
}

.navbar__links > a[aria-current="page"] {
  color: var(--cyan);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  flex: none;
}

.navbar__actions--mobile {
  display: none;
}

.navbar__login {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.2s var(--ease);
}

.navbar__login:hover {
  color: var(--text);
}

.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: var(--radius-sm);
}

.navbar__burger span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.navbar__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navbar__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  z-index: 2;
  padding-top: clamp(7rem, 14vw, 10.5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.hero__glow--cyan {
  top: -12%;
  right: -8%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(56, 225, 255, 0.14), transparent 65%);
}

.hero__glow--violet {
  bottom: -20%;
  left: -12%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(122, 92, 255, 0.13), transparent 65%);
}

/* Faint scanning line sweeping the hero */
.hero__scan {
  position: absolute;
  inset-inline: 0;
  top: 0;
  z-index: -1;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(56, 225, 255, 0.035), transparent);
  animation: scan-sweep 9s ease-in-out infinite;
}

@keyframes scan-sweep {
  0%, 100% { transform: translateY(-40%); opacity: 0; }
  15% { opacity: 1; }
  50% { transform: translateY(520%); opacity: 1; }
  65% { opacity: 0; }
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: var(--s-5);
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dim);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.4vw, 4.6rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

/* Kinetic headline reveal */
.hw {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
  filter: blur(10px);
  animation: hw-in 0.9s var(--ease) forwards;
}

.hw:nth-child(1) { animation-delay: 0.05s; }
.hw:nth-child(2) { animation-delay: 0.16s; }
.hw:nth-child(3) { animation-delay: 0.3s; }
.hw:nth-child(4) { animation-delay: 0.44s; }

@keyframes hw-in {
  to { opacity: 1; transform: none; filter: blur(0); }
}

.hero__subtitle {
  max-width: 34rem;
  margin-top: var(--s-5);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-dim);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  margin-top: var(--s-6);
}

/* HUD-style trust labels */
.hero__hud {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-3);
  margin-top: var(--s-6);
}

.hud-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.44rem 0.95rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: rgba(56, 225, 255, 0.035);
  border: 1px solid var(--border);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.hud-chip::before,
.hud-chip::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  transition: border-color 0.25s var(--ease);
}

.hud-chip::before {
  top: -1px;
  left: -1px;
  border-top: 1px solid var(--border-lume);
  border-left: 1px solid var(--border-lume);
}

.hud-chip::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 1px solid var(--border-lume);
  border-right: 1px solid var(--border-lume);
}

.hud-chip svg {
  width: 13px;
  height: 13px;
  color: var(--cyan);
}

a.hud-chip:hover {
  color: var(--text);
  border-color: rgba(56, 225, 255, 0.4);
  background: rgba(56, 225, 255, 0.07);
  box-shadow: 0 0 16px rgba(56, 225, 255, 0.12);
}

a.hud-chip:hover::before,
a.hud-chip:hover::after {
  border-color: rgba(56, 225, 255, 0.7);
}

.hud-chip--static {
  background: transparent;
}

.hud-chip--static::before,
.hud-chip--static::after {
  display: none;
}

/* Hero globe visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.globe-wrap {
  position: relative;
  width: min(480px, 100%);
  aspect-ratio: 1;
  will-change: transform;
}

.globe-canvas {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 45px rgba(56, 225, 255, 0.12));
}

.globe-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(56, 225, 255, 0.08);
  pointer-events: none;
}

.globe-ring--1 {
  inset: -4%;
  animation: spin 60s linear infinite;
  border-style: dashed;
}

.globe-ring--2 {
  inset: 4%;
  border-color: rgba(122, 92, 255, 0.1);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.globe-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: rgba(10, 14, 26, 0.82);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-card);
  animation: float 6s ease-in-out infinite;
}

.globe-chip svg {
  width: 14px;
  height: 14px;
  color: var(--cyan);
}

.globe-chip--1 { top: 12%; right: 2%; animation-delay: 0s; }
.globe-chip--2 { bottom: 18%; left: -2%; animation-delay: -2s; }
.globe-chip--3 { top: 46%; right: -4%; animation-delay: -4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Hero stats */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  max-width: 760px;
  margin: clamp(2.5rem, 6vw, 4rem) auto 0;
  padding: var(--s-5) var(--s-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.hero__stat dd {
  order: 1;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__stat dt {
  order: 2;
  margin-top: 0.15rem;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ============================================================
   PAGE HERO (sub-pages)
   ============================================================ */
.page-hero {
  position: relative;
  z-index: 2;
  padding-top: clamp(7.5rem, 13vw, 10rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
  text-align: center;
}

.page-hero__glow {
  position: absolute;
  top: -260px;
  left: 50%;
  z-index: -1;
  width: 700px;
  height: 460px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 123, 255, 0.14), transparent 65%);
  filter: blur(80px);
  pointer-events: none;
}

.page-hero__eyebrow {
  display: inline-block;
  margin-bottom: var(--s-4);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.page-hero__lead {
  max-width: 40rem;
  margin: var(--s-4) auto 0;
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  color: var(--text-dim);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trustbar {
  position: relative;
  z-index: 2;
  padding-block: var(--s-6);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.014);
}

.trustbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s-4) var(--s-6);
}

.trustbar__rating {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.trustbar__rating p {
  font-size: 0.88rem;
  color: var(--text-dim);
}

.trustbar__rating strong {
  color: var(--text);
}

.stars {
  display: flex;
  gap: 3px;
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: var(--amber);
}

.stars--sm svg {
  width: 14px;
  height: 14px;
}

.star--half {
  color: var(--amber);
}

.trustbar__divider {
  width: 1px;
  height: 26px;
  background: var(--border-strong);
}

.trustbar__label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.trustbar__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-3) var(--s-6);
}

.trustbar__logos li {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-faint);
  transition: color 0.25s var(--ease);
}

.trustbar__logos li:hover {
  color: var(--text-dim);
}

.trustbar__audit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}

a.trustbar__audit:hover {
  color: var(--text);
  border-color: rgba(61, 220, 151, 0.4);
}

.trustbar__audit svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}

/* ============================================================
   FEATURE-STYLE CARD GRID (reused: transparency pillars, help, apps)
   ============================================================ */
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}

.features__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  padding: var(--s-6) var(--s-5);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 225, 255, 0.3);
  background: var(--surface-hover);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 14px 44px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(56, 225, 255, 0.08);
}

.feature-card__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: var(--s-4);
  border-radius: 12px;
  color: var(--cyan);
  background: linear-gradient(135deg, rgba(56, 225, 255, 0.12), rgba(122, 92, 255, 0.12));
  border: 1px solid rgba(56, 225, 255, 0.2);
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: var(--s-2);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
}

/* ============================================================
   SECURITY / TUNNEL (Transparency page)
   ============================================================ */
.security__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.security__copy .section__title,
.security__copy .section__lead {
  text-align: left;
}

.security__list {
  display: grid;
  gap: var(--s-5);
  margin-top: var(--s-6);
}

.security__list li {
  display: flex;
  gap: var(--s-4);
}

.security__list-icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--cyan);
  background: linear-gradient(135deg, rgba(56, 225, 255, 0.1), rgba(122, 92, 255, 0.1));
  border: 1px solid rgba(56, 225, 255, 0.18);
}

.security__list-icon svg {
  width: 22px;
  height: 22px;
}

.security__list h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.security__list p {
  margin-top: 0.2rem;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.security__audit-note {
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
  margin-top: var(--s-6);
  padding: var(--s-4) var(--s-5);
  font-size: 0.88rem;
  color: var(--text-dim);
  background: rgba(61, 220, 151, 0.05);
  border: 1px solid rgba(61, 220, 151, 0.22);
  border-radius: var(--radius);
}

.security__audit-note svg {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--green);
}

.security__audit-note strong {
  color: var(--text);
}

/* Tunnel visualization */
.security__visual {
  display: grid;
  gap: var(--s-4);
}

.tunnel {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-6) var(--s-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-card);
}

.tunnel__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
}

.tunnel__node svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  color: var(--text-dim);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.tunnel__node--shield svg {
  color: var(--cyan);
  border-color: rgba(56, 225, 255, 0.4);
  box-shadow: 0 0 18px rgba(56, 225, 255, 0.18);
}

.tunnel__node--shield {
  color: var(--text);
}

.tunnel__pipe {
  position: relative;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(56, 225, 255, 0.1), rgba(122, 92, 255, 0.12));
  border: 1px solid rgba(56, 225, 255, 0.25);
  overflow: hidden;
}

.tunnel__pipe--open {
  background: rgba(255, 255, 255, 0.025);
  border-color: var(--border);
}

.tunnel__packets {
  position: absolute;
  inset: 0;
}

.packet {
  position: absolute;
  top: 50%;
  left: -12px;
  width: 10px;
  height: 6px;
  border-radius: 3px;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(56, 225, 255, 0.8);
  transform: translateY(-50%);
  animation: packet-flow 2.8s linear infinite;
}

.packet:nth-child(2) { animation-delay: 0.7s; }
.packet:nth-child(3) { animation-delay: 1.4s; }
.packet:nth-child(4) { animation-delay: 2.1s; }

.packet--open {
  background: var(--text-faint);
  box-shadow: none;
  animation-duration: 3.2s;
}

@keyframes packet-flow {
  to { left: calc(100% + 12px); }
}

.tunnel__label {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--cyan);
}

.tunnel__label svg {
  width: 11px;
  height: 11px;
}

.tunnel__label--dim {
  color: var(--text-faint);
}

.tunnel__blocked {
  display: flex;
  justify-content: center;
}

.tunnel__eye {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-5);
  font-size: 0.82rem;
  color: var(--text-dim);
  background: rgba(255, 90, 90, 0.05);
  border: 1px solid rgba(255, 100, 100, 0.2);
  border-radius: var(--radius);
}

.tunnel__eye svg {
  flex: none;
  width: 22px;
  height: 22px;
  color: #ff7b7b;
}

.tunnel__eye code {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--cyan);
  letter-spacing: 0.06em;
}

/* ============================================================
   SERVERS
   ============================================================ */
.servers__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: var(--s-4);
}

.servers__map {
  position: relative;
  min-height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.map-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.servers__map-stats {
  position: absolute;
  left: var(--s-4);
  bottom: var(--s-4);
  display: flex;
  gap: var(--s-3);
  z-index: 2;
}

.servers__map-stats > div {
  display: flex;
  flex-direction: column;
  padding: var(--s-2) var(--s-4);
  background: rgba(8, 11, 21, 0.82);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.servers__map-stats strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--cyan);
}

.servers__map-stats span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.servers__list {
  display: flex;
  flex-direction: column;
  padding: var(--s-4);
  border-radius: var(--radius-lg);
}

.servers__search,
.searchbar {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: 0.55rem 0.9rem;
  margin-bottom: var(--s-3);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.servers__search:focus-within,
.searchbar:focus-within {
  border-color: rgba(56, 225, 255, 0.5);
  box-shadow: 0 0 14px rgba(56, 225, 255, 0.1);
}

.servers__search svg,
.searchbar svg {
  flex: none;
  width: 16px;
  height: 16px;
  color: var(--text-faint);
}

.servers__search input,
.searchbar input {
  width: 100%;
  font: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: none;
  border: none;
  outline: none;
}

.servers__search input::placeholder,
.searchbar input::placeholder {
  color: var(--text-faint);
}

.servers__locations {
  flex: 1;
  max-height: 300px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

.servers__locations li {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: 0.55rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s var(--ease);
}

.servers__locations li:hover {
  background: rgba(255, 255, 255, 0.045);
}

.loc-flag {
  flex: none;
  font-size: 1.1rem;
}

.loc-name {
  flex: 1;
  font-size: 0.88rem;
  font-weight: 500;
}

.loc-name em {
  margin-left: 0.4rem;
  font-style: normal;
  font-size: 0.78rem;
  color: var(--text-faint);
}

.loc-ping {
  flex: none;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  padding: 0.16rem 0.55rem;
  border-radius: 999px;
}

.loc-ping--fast {
  color: var(--green);
  background: rgba(61, 220, 151, 0.1);
}

.loc-ping--med {
  color: var(--amber);
  background: rgba(255, 194, 75, 0.1);
}

.servers__empty {
  padding: var(--s-4);
  font-size: 0.88rem;
  color: var(--text-dim);
  text-align: center;
}

.servers__note {
  margin-top: var(--s-3);
  padding-top: var(--s-3);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-align: center;
  border-top: 1px solid var(--border);
}

.servers__regions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-4);
}

.servers__regions li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: var(--s-4) var(--s-5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.servers__regions strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.servers__regions span {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}

.step {
  position: relative;
  padding: var(--s-6) var(--s-5);
  overflow: hidden;
}

.step:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 225, 255, 0.3);
}

.step__num {
  position: absolute;
  top: var(--s-3);
  right: var(--s-4);
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
}

.step__icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: var(--s-4);
  border-radius: 14px;
  color: var(--cyan);
  background: linear-gradient(135deg, rgba(56, 225, 255, 0.12), rgba(122, 92, 255, 0.12));
  border: 1px solid rgba(56, 225, 255, 0.2);
}

.step__icon svg {
  width: 26px;
  height: 26px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--s-2);
}

.step p {
  font-size: 0.92rem;
  color: var(--text-dim);
}

/* ============================================================
   USE CASES (tabs)
   ============================================================ */
.tabs {
  max-width: 860px;
  margin-inline: auto;
}

.tabs__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-2);
  margin-bottom: var(--s-5);
}

.tabs__tab {
  padding: 0.55rem 1.2rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.tabs__tab:hover {
  color: var(--text);
  border-color: var(--border-strong);
}

.tabs__tab.is-active {
  color: #fff;
  background: linear-gradient(135deg, rgba(56, 225, 255, 0.16), rgba(122, 92, 255, 0.18));
  border-color: rgba(56, 225, 255, 0.45);
  box-shadow: 0 0 16px rgba(56, 225, 255, 0.12);
}

.tabs__panels {
  padding: clamp(2rem, 5vw, 3.25rem);
  text-align: center;
  border-radius: var(--radius-lg);
}

.tabs__panel {
  display: none;
  animation: panel-in 0.45s var(--ease);
}

.tabs__panel.is-active {
  display: block;
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.tabs__panel-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin: 0 auto var(--s-4);
  border-radius: 16px;
  color: var(--cyan);
  background: linear-gradient(135deg, rgba(56, 225, 255, 0.12), rgba(122, 92, 255, 0.12));
  border: 1px solid rgba(56, 225, 255, 0.22);
}

.tabs__panel-icon svg {
  width: 30px;
  height: 30px;
}

.tabs__panel h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.tabs__panel p {
  max-width: 34rem;
  margin: var(--s-3) auto 0;
  color: var(--text-dim);
}

/* ============================================================
   SPEED
   ============================================================ */
.speed__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.speed__copy .section__title,
.speed__copy .section__lead {
  text-align: left;
}

.speed__copy .section__lead strong {
  color: var(--text);
}

.speed__facts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5) var(--s-7);
  margin-top: var(--s-6);
}

.speed__facts li {
  display: flex;
  flex-direction: column;
}

.speed__facts strong {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.speed__facts span {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.speed__chart {
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  border-radius: var(--radius-lg);
}

.speed__chart-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--s-5);
}

.speed__bars {
  display: grid;
  gap: var(--s-4);
}

.speed__row {
  display: grid;
  grid-template-columns: 90px 1fr 82px;
  align-items: center;
  gap: var(--s-3);
}

.speed__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dim);
}

.speed__track {
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  overflow: hidden;
}

.speed__bar {
  height: 100%;
  width: 0;
  border-radius: 999px;
  transition: width 1.4s var(--ease);
}

.speed__bar--base {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.16));
}

.speed__bar--ns {
  background: var(--grad-btn);
  box-shadow: 0 0 14px rgba(56, 225, 255, 0.4);
}

.speed__bar--other {
  background: rgba(255, 255, 255, 0.12);
}

.speed__value {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: right;
}

.speed__footnote {
  margin-top: var(--s-5);
  font-size: 0.74rem;
  color: var(--text-faint);
}

/* ============================================================
   APPS & DEVICES
   ============================================================ */
.devices {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(1rem, 4vw, 3rem);
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.device__screen {
  background: linear-gradient(160deg, #0d1322, #080b15);
  border: 1px solid var(--border-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.device--laptop .device__screen {
  width: clamp(260px, 34vw, 420px);
  aspect-ratio: 16 / 10;
  border-radius: 14px 14px 4px 4px;
  border-bottom: none;
}

.device--laptop .device__base {
  height: 12px;
  margin-inline: -6%;
  background: linear-gradient(180deg, #171e31, #0a0e1a);
  border: 1px solid var(--border-strong);
  border-radius: 0 0 14px 14px;
}

.device--phone .device__screen {
  width: clamp(96px, 12vw, 140px);
  aspect-ratio: 9 / 19;
  border-radius: 20px;
  border-width: 3px;
}

.device--tablet .device__screen {
  width: clamp(150px, 19vw, 220px);
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  border-width: 3px;
}

.mini-ui {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8%;
  height: 100%;
  padding: 10%;
}

.mini-ui__status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: clamp(0.44rem, 0.9vw, 0.62rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  white-space: nowrap;
}

.mini-ui__ring {
  display: grid;
  place-items: center;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--cyan);
  background: radial-gradient(circle, rgba(56, 225, 255, 0.12), transparent 70%);
  border: 1px solid rgba(56, 225, 255, 0.35);
  box-shadow: 0 0 22px rgba(56, 225, 255, 0.2);
}

.mini-ui__ring svg {
  width: 55%;
  height: 55%;
}

.mini-ui__stats {
  display: flex;
  gap: 0.8rem;
  font-family: var(--font-mono);
  font-size: clamp(0.42rem, 0.85vw, 0.6rem);
  font-weight: 600;
  color: var(--text-faint);
}

.mini-ui__btn {
  padding: 0.25rem 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(0.44rem, 0.85vw, 0.6rem);
  font-weight: 600;
  color: var(--text-dim);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-3);
}

.platform {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.35rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.platform:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 225, 255, 0.4);
  background: var(--surface-hover);
  box-shadow: 0 0 16px rgba(56, 225, 255, 0.12);
}

.platform svg {
  width: 18px;
  height: 18px;
  fill: var(--text-dim);
  color: var(--text-dim);
}

/* ---- Apps page: per-platform download sections ---- */
.dl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}

.dl-card {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius-lg);
  scroll-margin-top: 100px;
}

.dl-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 225, 255, 0.3);
}

.dl-card__head {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin-bottom: var(--s-4);
}

.dl-card__icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  color: var(--cyan);
  background: linear-gradient(135deg, rgba(56, 225, 255, 0.12), rgba(122, 92, 255, 0.12));
  border: 1px solid rgba(56, 225, 255, 0.2);
}

.dl-card__icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.dl-card__head h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
}

.dl-card__req {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.dl-card > p {
  font-size: 0.92rem;
  color: var(--text-dim);
}

.setup-steps {
  margin-top: var(--s-4);
  display: grid;
  gap: 0.55rem;
  counter-reset: setup;
}

.setup-steps li {
  position: relative;
  padding-left: 2.1rem;
  font-size: 0.88rem;
  color: var(--text-dim);
  counter-increment: setup;
}

.setup-steps li::before {
  content: counter(setup, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.15em;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--cyan);
}

.dl-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-5);
}

/* ============================================================
   PRICING
   ============================================================ */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-4);
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.billing-toggle__opt {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-faint);
  transition: color 0.25s var(--ease);
}

.billing-toggle__opt.is-active {
  color: var(--text);
}

.billing-toggle__save {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.12rem 0.55rem;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--green);
  background: rgba(61, 220, 151, 0.1);
  border: 1px solid rgba(61, 220, 151, 0.25);
  border-radius: 999px;
}

.switch {
  position: relative;
  flex: none;
  width: 52px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-strong);
  transition: background 0.25s var(--ease);
}

.switch[aria-checked="true"] {
  background: linear-gradient(135deg, rgba(56, 225, 255, 0.35), rgba(122, 92, 255, 0.4));
}

.switch__thumb {
  position: absolute;
  top: 50%;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
  transition: left 0.25s var(--ease);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.switch[aria-checked="true"] .switch__thumb {
  left: calc(100% - 23px);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  align-items: stretch;
}

.plan {
  display: flex;
  flex-direction: column;
  padding: var(--s-6) var(--s-5);
  border-radius: var(--radius-lg);
}

.plan:hover {
  transform: translateY(-5px);
}

.plan--best {
  border-color: rgba(56, 225, 255, 0.4);
  background: linear-gradient(180deg, rgba(56, 225, 255, 0.05), rgba(122, 92, 255, 0.05));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 60px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(56, 225, 255, 0.1);
}

.plan__flag {
  align-self: flex-start;
  margin-bottom: var(--s-3);
  padding: 0.28rem 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #04121c;
  background: var(--grad-accent);
  border-radius: 999px;
}

.plan__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.plan__desc {
  margin-top: 0.2rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin-top: var(--s-5);
  font-family: var(--font-display);
}

.plan__currency {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dim);
}

.plan__amount {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.plan__per {
  font-size: 0.95rem;
  color: var(--text-dim);
}

.plan__bill-note {
  margin: 0.4rem 0 var(--s-5);
  font-size: 0.78rem;
  color: var(--text-faint);
}

.plan__features {
  display: grid;
  gap: 0.65rem;
  margin-top: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--border);
}

.plan__features li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.88rem;
  color: var(--text-dim);
}

.plan__features li strong {
  color: var(--text);
}

.plan__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 10.5l3 3 6-6.5' fill='none' stroke='%2338E1FF' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 11px no-repeat,
    rgba(56, 225, 255, 0.1);
}

.guarantee {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  max-width: 640px;
  margin: clamp(2rem, 5vw, 3rem) auto 0;
  padding: var(--s-5) var(--s-6);
  background: rgba(61, 220, 151, 0.045);
  border: 1px solid rgba(61, 220, 151, 0.22);
  border-radius: var(--radius);
}

.guarantee__badge {
  display: grid;
  place-items: center;
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--green);
  background: rgba(61, 220, 151, 0.1);
  border: 1px solid rgba(61, 220, 151, 0.3);
}

.guarantee__badge svg {
  width: 26px;
  height: 26px;
}

.guarantee h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
}

.guarantee p {
  margin-top: 0.15rem;
  font-size: 0.88rem;
  color: var(--text-dim);
}

/* ---- Home: pricing summary strip ---- */
.pricing-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  max-width: 960px;
  margin-inline: auto;
}

.pricing-mini__card {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: var(--s-5) var(--s-5);
  text-align: center;
  border-radius: var(--radius-lg);
}

.pricing-mini__card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 225, 255, 0.35);
}

.pricing-mini__card--best {
  border-color: rgba(56, 225, 255, 0.4);
  background: linear-gradient(180deg, rgba(56, 225, 255, 0.05), rgba(122, 92, 255, 0.05));
}

.pricing-mini__name {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.pricing-mini__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pricing-mini__price small {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dim);
}

.pricing-mini__note {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.pricing-mini__save {
  align-self: center;
  margin-bottom: 0.3rem;
  padding: 0.14rem 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #04121c;
  background: var(--grad-accent);
  border-radius: 999px;
}

/* ============================================================
   COMPARISON
   ============================================================ */
.compare {
  max-width: 840px;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  overflow-x: auto;
}

.compare__table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
}

.compare__table th,
.compare__table td {
  padding: 1rem 1.4rem;
  font-size: 0.9rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare__table thead th {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
}

.compare__table tbody tr:last-child th,
.compare__table tbody tr:last-child td {
  border-bottom: none;
}

.compare__table tbody th {
  font-weight: 500;
  color: var(--text-dim);
}

.compare__table td {
  color: var(--text-dim);
}

.compare__ns {
  color: var(--text) !important;
  background: linear-gradient(180deg, rgba(56, 225, 255, 0.05), rgba(122, 92, 255, 0.04));
  border-inline: 1px solid rgba(56, 225, 255, 0.16);
}

thead .compare__ns {
  color: var(--cyan) !important;
}

.compare__logo {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 4px;
  vertical-align: -3px;
}

.tick {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-right: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(61, 220, 151, 0.12);
  border-radius: 50%;
}

.cross {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-right: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #ff8585;
  background: rgba(255, 100, 100, 0.1);
  border-radius: 50%;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}

.review {
  display: flex;
  flex-direction: column;
  padding: var(--s-6) var(--s-5);
}

.review:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
}

.review__quote {
  flex: 1;
  margin-top: var(--s-4);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dim);
}

.review__author {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-top: var(--s-5);
}

.review__avatar {
  display: grid;
  place-items: center;
  flex: none;
  width: 42px;
  height: 42px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: #04121c;
  background: var(--grad-accent);
  border-radius: 50%;
}

.review__author strong {
  display: block;
  font-size: 0.9rem;
}

.review__author span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-faint);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  display: grid;
  gap: var(--s-3);
}

.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: border-color 0.3s var(--ease);
  overflow: hidden;
}

.faq__item[open] {
  border-color: rgba(56, 225, 255, 0.28);
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: 1.1rem 1.4rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: color 0.25s var(--ease);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary:hover {
  color: var(--cyan);
}

.faq__chev {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--text-faint);
  transition: transform 0.35s var(--ease), color 0.35s var(--ease);
}

.faq__item[open] .faq__chev {
  transform: rotate(180deg);
  color: var(--cyan);
}

.faq__body {
  padding: 0 1.4rem;
  overflow: hidden;
}

.faq__body p {
  padding-bottom: 1.2rem;
  font-size: 0.92rem;
  color: var(--text-dim);
}

.faq__body a {
  color: var(--cyan);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  z-index: 2;
  padding-block: clamp(4.5rem, 10vw, 7.5rem);
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse 70% 90% at 50% 120%, rgba(61, 123, 255, 0.16), transparent 65%),
    radial-gradient(ellipse 45% 60% at 25% 110%, rgba(122, 92, 255, 0.14), transparent 60%),
    radial-gradient(ellipse 45% 60% at 75% 110%, rgba(56, 225, 255, 0.1), transparent 60%);
}

.cta-band__glow {
  position: absolute;
  left: 50%;
  bottom: -240px;
  width: 640px;
  height: 420px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 225, 255, 0.13), transparent 65%);
  filter: blur(70px);
  pointer-events: none;
}

.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.2vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.cta-band__sub {
  max-width: 34rem;
  margin: var(--s-4) auto var(--s-6);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-dim);
}

.cta-band__note {
  margin-top: var(--s-4);
  font-size: 0.82rem;
  color: var(--text-faint);
}

/* ============================================================
   SUPPORT / HELP CENTER
   ============================================================ */
.help-search {
  max-width: 560px;
  margin: 0 auto clamp(2rem, 5vw, 3rem);
}

.help-search .searchbar {
  margin-bottom: 0;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}

.help-card {
  display: block;
  padding: var(--s-6) var(--s-5);
}

.help-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 225, 255, 0.3);
}

.help-card__count {
  display: inline-block;
  margin-top: var(--s-3);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.help-empty {
  padding: var(--s-6);
  text-align: center;
  color: var(--text-dim);
}

.guides {
  display: grid;
  gap: var(--s-3);
  max-width: 820px;
  margin-inline: auto;
}

.guide {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-4) var(--s-5);
  border-radius: var(--radius);
}

.guide:hover {
  transform: translateX(4px);
  border-color: rgba(56, 225, 255, 0.3);
}

.guide__icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: var(--cyan);
  background: linear-gradient(135deg, rgba(56, 225, 255, 0.1), rgba(122, 92, 255, 0.1));
  border: 1px solid rgba(56, 225, 255, 0.18);
}

.guide__icon svg {
  width: 20px;
  height: 20px;
}

.guide__body {
  flex: 1;
}

.guide__body h3 {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
}

.guide__body p {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.guide__meta {
  flex: none;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  max-width: 960px;
  margin-inline: auto;
}

.contact-card {
  padding: var(--s-6) var(--s-5);
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 225, 255, 0.3);
}

.contact-card .feature-card__icon {
  margin-inline: auto;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: var(--s-2);
}

.contact-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-bottom: var(--s-4);
}

.status-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  max-width: 640px;
  margin: 0 auto;
  padding: var(--s-4) var(--s-5);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(61, 220, 151, 0.05);
  border: 1px solid rgba(61, 220, 151, 0.25);
  border-radius: 999px;
}

.status-strip span {
  color: var(--text-dim);
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal {
  padding-bottom: clamp(4rem, 9vw, 7rem);
}

.legal__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  justify-content: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.legal__body {
  display: grid;
  gap: var(--s-6);
}

.legal__body section {
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.legal__body h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--s-3);
}

.legal__body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin: var(--s-4) 0 var(--s-2);
}

.legal__body p {
  font-size: 0.92rem;
  color: var(--text-dim);
}

.legal__body p + p {
  margin-top: var(--s-3);
}

.legal__body ul {
  display: grid;
  gap: 0.5rem;
  margin-top: var(--s-3);
}

.legal__body ul li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.legal__body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--grad-accent);
}

.legal__body a {
  color: var(--cyan);
}

.legal__body strong {
  color: var(--text);
}

/* Audit report table (Transparency) */
.audit-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--s-4);
}

.audit-table th,
.audit-table td {
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.audit-table thead th {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.audit-table tbody th {
  font-weight: 500;
  color: var(--text);
}

.audit-table td {
  color: var(--text-dim);
}

.audit-table tbody tr:last-child th,
.audit-table tbody tr:last-child td {
  border-bottom: none;
}

.badge-pass {
  display: inline-block;
  padding: 0.14rem 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(61, 220, 151, 0.1);
  border: 1px solid rgba(61, 220, 151, 0.25);
  border-radius: 999px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}

.timeline {
  display: grid;
  gap: 0;
  max-width: 720px;
  margin-inline: auto;
}

.timeline li {
  position: relative;
  padding: 0 0 var(--s-6) 2.2rem;
  border-left: 1px solid var(--border-strong);
  margin-left: 0.5rem;
}

.timeline li:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--cyan);
  box-shadow: 0 0 12px rgba(56, 225, 255, 0.4);
}

.timeline__year {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--cyan);
}

.timeline h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0.2rem 0;
}

.timeline p {
  font-size: 0.9rem;
  color: var(--text-dim);
}

.roles {
  display: grid;
  gap: var(--s-3);
  max-width: 720px;
  margin-inline: auto;
}

.role {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-4) var(--s-5);
  border-radius: var(--radius);
}

.role:hover {
  transform: translateX(4px);
  border-color: rgba(56, 225, 255, 0.3);
}

.role h3 {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
}

.role p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.role__tag {
  flex: none;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}

.post {
  display: flex;
  flex-direction: column;
  padding: var(--s-6) var(--s-5);
}

.post:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 225, 255, 0.3);
}

.post time {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.post h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin: var(--s-2) 0;
}

.post p {
  flex: 1;
  font-size: 0.88rem;
  color: var(--text-dim);
}

/* ============================================================
   LOGIN / AUTH
   ============================================================ */
.auth {
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: clamp(7rem, 14vw, 9rem) 1.25rem clamp(4rem, 8vw, 6rem);
}

.auth-card {
  width: min(420px, 100%);
  padding: clamp(2rem, 4vw, 2.75rem);
  border-radius: var(--radius-lg);
}

.auth-card__head {
  text-align: center;
  margin-bottom: var(--s-6);
}

.auth-card__head h1 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.auth-card__head p {
  margin-top: var(--s-2);
  font-size: 0.88rem;
  color: var(--text-dim);
}

.auth-form {
  display: grid;
  gap: var(--s-4);
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.field input {
  width: 100%;
  padding: 0.75rem 1rem;
  font: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.field input::placeholder {
  color: var(--text-faint);
}

.field input:focus {
  outline: none;
  border-color: rgba(56, 225, 255, 0.55);
  box-shadow: 0 0 14px rgba(56, 225, 255, 0.12);
}

.auth-form__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  font-size: 0.82rem;
  color: var(--text-dim);
}

.auth-form__row a {
  color: var(--cyan);
}

.auth-note {
  display: none;
  padding: var(--s-3) var(--s-4);
  font-size: 0.85rem;
  color: var(--text-dim);
  text-align: center;
  background: rgba(56, 225, 255, 0.05);
  border: 1px solid rgba(56, 225, 255, 0.25);
  border-radius: var(--radius-sm);
}

.auth-note.is-visible {
  display: block;
}

.auth-card__foot {
  margin-top: var(--s-5);
  padding-top: var(--s-5);
  font-size: 0.85rem;
  color: var(--text-dim);
  text-align: center;
  border-top: 1px solid var(--border);
}

.auth-card__foot a {
  color: var(--cyan);
}

/* ============================================================
   404
   ============================================================ */
.notfound {
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: clamp(7rem, 14vw, 9rem) 1.25rem clamp(4rem, 8vw, 6rem);
  text-align: center;
}

.notfound__code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 11rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 40px rgba(56, 225, 255, 0.2));
}

.notfound__label {
  margin-top: var(--s-3);
}

.notfound h1 {
  margin-top: var(--s-4);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.notfound p {
  max-width: 30rem;
  margin: var(--s-3) auto 0;
  color: var(--text-dim);
}

.notfound__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-4);
  margin-top: var(--s-6);
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie {
  position: fixed;
  left: var(--s-4);
  right: var(--s-4);
  bottom: var(--s-4);
  z-index: 160;
  max-width: 620px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-3) var(--s-4);
  padding: var(--s-4) var(--s-5);
  background: rgba(10, 14, 26, 0.92);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  animation: cookie-in 0.6s var(--ease);
}

@keyframes cookie-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

.cookie__text {
  flex: 1 1 280px;
  font-size: 0.84rem;
  color: var(--text-dim);
}

.cookie__text a {
  color: var(--cyan);
}

.cookie__actions {
  display: flex;
  gap: var(--s-2);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  z-index: 2;
  padding-block: clamp(3rem, 7vw, 5rem) var(--s-6);
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 2.4fr;
  gap: clamp(2rem, 6vw, 5rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--border);
}

.footer__tag {
  margin-top: var(--s-3);
  font-size: 0.88rem;
  color: var(--text-dim);
}

.footer__stores {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-5);
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.store-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 225, 255, 0.4);
}

.store-badge svg {
  width: 20px;
  height: 20px;
  fill: var(--text);
}

.store-badge span {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.15;
}

.store-badge small {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--text-faint);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}

.footer__col h3 {
  margin-bottom: var(--s-4);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.footer__col ul {
  display: grid;
  gap: 0.6rem;
}

.footer__col a {
  font-size: 0.88rem;
  color: var(--text-dim);
  transition: color 0.2s var(--ease);
}

.footer__col a:hover {
  color: var(--cyan);
}

.footer__bottom {
  padding-top: var(--s-5);
}

.footer__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
}

.lang-select {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
}

.lang-select svg {
  width: 16px;
  height: 16px;
  color: var(--text-dim);
}

.lang-select select {
  font: inherit;
  font-size: 0.85rem;
  color: var(--text);
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.lang-select select option {
  color: #111;
}

.footer__social {
  display: flex;
  gap: var(--s-2);
}

.footer__social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.footer__social a:hover {
  border-color: rgba(56, 225, 255, 0.4);
  background: rgba(56, 225, 255, 0.06);
}

.footer__social svg {
  width: 16px;
  height: 16px;
  fill: var(--text-dim);
}

.footer__copy {
  margin-top: var(--s-5);
  font-size: 0.74rem;
  line-height: 1.7;
  color: var(--text-faint);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .servers__regions {
    grid-template-columns: repeat(2, 1fr);
  }

  .help-grid,
  .posts,
  .values-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__subtitle {
    margin-inline: auto;
  }

  .hero__ctas,
  .hero__hud {
    justify-content: center;
  }

  .globe-wrap {
    width: min(400px, 88vw);
  }

  .security__inner,
  .speed__inner {
    grid-template-columns: 1fr;
  }

  .servers__grid {
    grid-template-columns: 1fr;
  }

  .servers__map {
    min-height: 300px;
  }

  .steps,
  .reviews__grid,
  .pricing__grid,
  .pricing-mini,
  .dl-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

  .plan--best {
    order: -1;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .footer__cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  /* Mobile nav.
     NOTE: no backdrop-filter on the navbar itself here — it would create
     a containing block that clips the fixed-position drawer. */
  .navbar,
  .navbar.is-scrolled {
    padding-block: 0.7rem;
    background: rgba(6, 8, 15, 0.94);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: var(--border);
  }

  .navbar__actions {
    display: none;
  }

  .navbar__burger {
    display: flex;
  }

  .navbar__links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: var(--s-2);
    width: min(320px, 82vw);
    padding: 6rem var(--s-6) var(--s-6);
    background: rgba(8, 11, 20, 0.97);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
  }

  .navbar__links.is-open {
    transform: translateX(0);
  }

  .navbar__links > a {
    width: 100%;
    padding: 0.8rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border);
  }

  .navbar__actions--mobile {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--s-4);
    width: 100%;
    margin-top: var(--s-5);
  }

  .navbar__actions--mobile .navbar__login {
    text-align: center;
  }

  .navbar__actions--mobile .btn {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 72px;
  }

  .features__grid,
  .help-grid,
  .posts,
  .values-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .servers__regions {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    gap: var(--s-5);
    padding: var(--s-5);
  }

  .trustbar__divider {
    display: none;
  }

  .globe-chip--3 {
    display: none;
  }

  .speed__row {
    grid-template-columns: 72px 1fr 70px;
  }

  .speed__facts {
    gap: var(--s-4) var(--s-6);
  }

  .devices {
    flex-wrap: wrap;
    align-items: center;
  }

  .device--tablet {
    display: none;
  }

  .tunnel {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    row-gap: var(--s-6);
  }

  .tunnel__pipe--open,
  .tunnel__node--web {
    display: none;
  }

  .guarantee {
    flex-direction: column;
    text-align: center;
  }

  .guide {
    flex-wrap: wrap;
  }

  .footer__cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--s-5) var(--s-4);
  }

  .footer__meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .billing-toggle {
    flex-wrap: wrap;
  }

  .cookie {
    left: var(--s-3);
    right: var(--s-3);
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .hw {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .aurora span,
  .hero__scan {
    animation: none;
  }

  .speed__bar {
    transition: none;
  }
}