/* ==========================================================================
   SUPREME VPN — "Obsidian Signal" design system
   Void black · hairline glass · supreme lime · post-quantum energy
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Surfaces */
  --void: #04060a;
  --ink: #070a10;
  --surface: #0b1017;
  --surface-2: #10161f;
  --surface-3: #161d29;

  /* Lines */
  --line: rgba(255, 255, 255, 0.075);
  --line-2: rgba(255, 255, 255, 0.14);
  --line-3: rgba(255, 255, 255, 0.24);

  /* Type */
  --text: #eaf0f7;
  --muted: #8b98ab;
  --dim: #5a6578;

  /* Signature */
  --lime: #c9ff3b;
  --lime-2: #9ef01a;
  --lime-deep: #6fae00;
  --violet: #7b5cff;
  --cyan: #3be8ff;
  --danger: #ff4d5e;
  --amber: #ffb020;

  /* Glow */
  --glow-lime: 0 0 0 1px rgba(201, 255, 59, 0.35), 0 8px 30px -8px rgba(201, 255, 59, 0.55);
  --glow-soft: 0 24px 60px -24px rgba(0, 0, 0, 0.9);

  /* Geometry */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --maxw: 1220px;
  --nav-h: 72px;

  /* Fonts */
  --f-display: "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
  --f-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
}

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 24px);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--void);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv02";
}

img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
::selection { background: var(--lime); color: #08120a; }

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb {
  background: #1c2430;
  border-radius: 20px;
  border: 3px solid var(--void);
}
::-webkit-scrollbar-thumb:hover { background: #2a3644; }

/* --------------------------------------------------------------------------
   3. Atmosphere — grain, grid, aurora
   -------------------------------------------------------------------------- */
body::before {
  /* film grain */
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='220' height='220' filter='url(%23n)'/></svg>");
}

body::after {
  /* vignette */
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 40%, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}

.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bg-grid {
  position: absolute;
  inset: -2px;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(ellipse 110% 80% at 50% 0%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 110% 80% at 50% 0%, #000 20%, transparent 75%);
}

.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.5;
  will-change: transform;
}
.aurora--1 {
  width: 620px; height: 620px;
  top: -220px; left: -140px;
  background: radial-gradient(circle, rgba(201, 255, 59, 0.3), transparent 68%);
  animation: drift1 26s var(--ease-io) infinite alternate;
}
.aurora--2 {
  width: 720px; height: 720px;
  top: -160px; right: -220px;
  background: radial-gradient(circle, rgba(123, 92, 255, 0.34), transparent 68%);
  animation: drift2 32s var(--ease-io) infinite alternate;
}
.aurora--3 {
  width: 560px; height: 560px;
  top: 46%; left: 42%;
  background: radial-gradient(circle, rgba(59, 232, 255, 0.16), transparent 70%);
  animation: drift3 38s var(--ease-io) infinite alternate;
}

@keyframes drift1 { to { transform: translate3d(160px, 120px, 0) scale(1.2); } }
@keyframes drift2 { to { transform: translate3d(-180px, 90px, 0) scale(1.15); } }
@keyframes drift3 { to { transform: translate3d(-140px, -160px, 0) scale(0.85); } }

/* --------------------------------------------------------------------------
   4. Layout primitives
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding: clamp(72px, 9vw, 132px) 0; position: relative; }
.section--tight { padding: clamp(56px, 6vw, 84px) 0; }

.rule {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--line-2) 20%, var(--line-2) 80%, transparent);
}

/* Section heading block */
.sec-head { max-width: 720px; margin-bottom: 56px; }
.sec-head--center { max-width: 820px; margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lime));
}
.sec-head--center .eyebrow::after {
  content: "";
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, var(--lime), transparent);
}

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
  overflow-wrap: break-word;
}

.h-xl { font-size: clamp(2.9rem, 7.2vw, 5.4rem); }
.h-lg { font-size: clamp(1.85rem, 4.6vw, 3.5rem); }
.h-md { font-size: clamp(1.5rem, 2.6vw, 2.1rem); letter-spacing: -0.03em; }
.h-sm { font-size: 1.16rem; letter-spacing: -0.02em; line-height: 1.3; }

.lede {
  font-size: clamp(1.02rem, 1.35vw, 1.17rem);
  color: var(--muted);
  line-height: 1.72;
  max-width: 60ch;
}
.sec-head--center .lede { margin-inline: auto; }

.grad-text {
  background: linear-gradient(96deg, var(--lime) 0%, var(--cyan) 48%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lime-text { color: var(--lime); }

.mono-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 100px;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  max-width: 100%;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.btn svg { width: 17px; height: 17px; flex: none; }

.btn--primary {
  background: linear-gradient(180deg, var(--lime) 0%, var(--lime-2) 100%);
  color: #0a1200;
  box-shadow: 0 10px 34px -12px rgba(201, 255, 59, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px -14px rgba(201, 255, 59, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn--primary::after {
  /* shine sweep */
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  transform: skewX(-22deg);
  transition: left 0.75s var(--ease);
}
.btn--primary:hover::after { left: 160%; }

.btn--ghost {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line-2);
  color: var(--text);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.075);
  border-color: var(--line-3);
  transform: translateY(-2px);
}

.btn--lg { padding: 18px 36px; font-size: 16.5px; }
.btn--sm { padding: 10px 20px; font-size: 13.5px; }
.btn--block { width: 100%; }

.btn--outline-lime {
  border: 1px solid rgba(201, 255, 59, 0.42);
  color: var(--lime);
  background: rgba(201, 255, 59, 0.05);
}
.btn--outline-lime:hover {
  background: rgba(201, 255, 59, 0.12);
  border-color: var(--lime);
  transform: translateY(-2px);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--lime);
  transition: gap 0.3s var(--ease);
}
.link-arrow:hover { gap: 13px; }

/* --------------------------------------------------------------------------
   6. Navigation
   -------------------------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  z-index: 1000;
  background: linear-gradient(90deg, var(--lime), var(--cyan), var(--violet));
  box-shadow: 0 0 12px rgba(201, 255, 59, 0.7);
  transition: width 0.1s linear;
}

.topbar {
  background: linear-gradient(90deg, rgba(123, 92, 255, 0.14), rgba(201, 255, 59, 0.1), rgba(59, 232, 255, 0.12));
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  position: relative;
  z-index: 60;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 9px 24px;
  text-align: center;
  flex-wrap: wrap;
}
.topbar strong { color: var(--lime); font-weight: 600; }
.topbar__pill {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(201, 255, 59, 0.14);
  border: 1px solid rgba(201, 255, 59, 0.3);
  color: var(--lime);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s;
}
.nav.is-stuck {
  background: rgba(6, 9, 14, 0.72);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom-color: var(--line);
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: none;
}
.brand__mark {
  width: 34px;
  height: 34px;
  flex: none;
  filter: drop-shadow(0 0 12px rgba(201, 255, 59, 0.5));
  transition: transform 0.5s var(--ease);
}
.brand:hover .brand__mark { transform: rotate(-8deg) scale(1.06); }
.brand__text {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 17.5px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.brand__text span { color: var(--lime); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav__links a {
  position: relative;
  padding: 9px 15px;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.25s, background 0.25s;
}
.nav__links a:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }
.nav__links a.is-active { color: var(--text); }
.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 15px; right: 15px; bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--lime);
}

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

.nav__burger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.04);
}
.nav__burger span {
  display: block;
  width: 17px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.2s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 890;
  background: rgba(4, 6, 10, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: calc(var(--nav-h) + 36px) 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu a {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.03em;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu a span { color: var(--dim); font-family: var(--f-mono); font-size: 12px; }
.mobile-menu .btn { margin-top: 22px; }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0 clamp(64px, 8vw, 104px);
  overflow: hidden;
}

#tunnel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.85;
  mask-image: radial-gradient(ellipse 78% 68% at 50% 45%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 78% 68% at 50% 45%, #000 25%, transparent 78%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 8px 7px 7px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 26px;
}
.hero__badge b {
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #0a1200;
  background: var(--lime);
  padding: 4px 9px;
  border-radius: 100px;
}

h1.hero__title {
  font-size: clamp(3rem, 6.6vw, 5.2rem);
  margin-bottom: 24px;
}
h1.hero__title em {
  font-style: normal;
  position: relative;
  display: inline-block;
}
h1.hero__title em::after {
  /* soft glow behind the word rather than a strike-through underline */
  content: "";
  position: absolute;
  inset: 8% -6% 14%;
  background: radial-gradient(ellipse at center, rgba(201, 255, 59, 0.28), transparent 68%);
  filter: blur(26px);
  z-index: -1;
}

.hero__lede { font-size: clamp(1.03rem, 1.4vw, 1.19rem); color: var(--muted); max-width: 54ch; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin: 34px 0 22px;
}

.hero__assure {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 13.5px;
  color: var(--dim);
}
.hero__assure li { display: flex; align-items: center; gap: 7px; }
.hero__assure svg { width: 15px; height: 15px; color: var(--lime); flex: none; }

.hero__proof {
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.stars { display: flex; gap: 2px; color: var(--lime); }
.stars svg { width: 15px; height: 15px; }
.hero__proof p { font-size: 13.5px; color: var(--muted); }
.hero__proof strong { color: var(--text); }

/* -- The app widget ------------------------------------------------------- */
.appcard {
  position: relative;
  border-radius: var(--r-xl);
  padding: 1px;
  background: linear-gradient(160deg, rgba(201, 255, 59, 0.45), rgba(123, 92, 255, 0.3) 42%, rgba(255, 255, 255, 0.05) 72%);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.95), 0 0 90px -40px rgba(201, 255, 59, 0.4);
  animation: floaty 7s ease-in-out infinite;
  will-change: transform;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-13px); }
}

.appcard__body {
  background: linear-gradient(170deg, #0d131c 0%, #080c12 100%);
  border-radius: calc(var(--r-xl) - 1px);
  padding: 22px;
}

.appcard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.appcard__title {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--f-display); font-weight: 600; font-size: 14.5px;
}
.appcard__title svg { width: 20px; height: 20px; color: var(--lime); }
.appcard__dots { display: flex; gap: 5px; }
.appcard__dots i { width: 7px; height: 7px; border-radius: 50%; background: #222c39; display: block; }

.power {
  display: grid;
  place-items: center;
  padding: 30px 0 22px;
}
.power__btn {
  position: relative;
  width: 138px; height: 138px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 35%, #18202c, #0a0e15);
  border: 1px solid var(--line-2);
  transition: transform 0.4s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s;
}
.power__btn:hover { transform: scale(1.04); }
.power__btn:active { transform: scale(0.98); }
.power__btn svg { width: 46px; height: 46px; color: var(--dim); transition: color 0.4s, filter 0.4s; z-index: 2; }

.power__ring {
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  border: 1px solid var(--line);
  transition: border-color 0.5s, box-shadow 0.5s;
}
.power__ring::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, var(--lime) 60deg, transparent 120deg);
  opacity: 0;
  transition: opacity 0.5s;
  animation: spin 2.6s linear infinite;
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
}
@keyframes spin { to { transform: rotate(360deg); } }

.appcard.is-on .power__btn {
  border-color: rgba(201, 255, 59, 0.5);
  box-shadow: 0 0 60px -8px rgba(201, 255, 59, 0.55), inset 0 0 40px -12px rgba(201, 255, 59, 0.4);
}
.appcard.is-on .power__btn svg { color: var(--lime); filter: drop-shadow(0 0 14px rgba(201, 255, 59, 0.85)); }
.appcard.is-on .power__ring::before { opacity: 1; }

.power__status {
  margin-top: 20px;
  text-align: center;
}
.power__state {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--dim);
  transition: color 0.4s;
}
.appcard.is-on .power__state { color: var(--lime); }
.power__hint {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 5px;
}

.appcard__rows { display: grid; gap: 8px; }
.arow {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid var(--line);
  font-size: 13.5px;
}
.arow__flag { font-size: 19px; line-height: 1; }
.arow__main { flex: 1; min-width: 0; }
.arow__main b { display: block; font-weight: 600; font-size: 13.5px; }
.arow__main span { font-size: 11.5px; color: var(--dim); font-family: var(--f-mono); }
.arow__val {
  font-family: var(--f-mono);
  font-size: 12.5px;
  color: var(--lime);
  white-space: nowrap;
}
.arow__val.is-off { color: var(--danger); }

.appcard__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}
.metric {
  padding: 11px 12px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid var(--line);
}
.metric b {
  display: block;
  font-family: var(--f-mono);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
}
.metric span {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--dim);
}

.toggle-pill {
  width: 34px; height: 19px;
  border-radius: 20px;
  background: #222c39;
  position: relative;
  flex: none;
  transition: background 0.35s var(--ease);
}
.toggle-pill::after {
  content: "";
  position: absolute;
  top: 2.5px; left: 2.5px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #6a7688;
  transition: transform 0.35s var(--ease), background 0.35s;
}
.appcard.is-on .toggle-pill { background: rgba(201, 255, 59, 0.28); }
.appcard.is-on .toggle-pill::after { transform: translateX(15px); background: var(--lime); }

/* --------------------------------------------------------------------------
   8. Logo marquee
   -------------------------------------------------------------------------- */
.marquee {
  border-block: 1px solid var(--line);
  padding: 26px 0;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.012);
}
.marquee__label {
  text-align: center;
  margin-bottom: 20px;
}
.marquee__track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: slide 38s linear infinite;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.marquee__item {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #4c5769;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}
.marquee__item:hover { color: var(--text); }
.marquee__item i {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
  display: block;
  opacity: 0.6;
}

/* --------------------------------------------------------------------------
   9. Stat strip
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.stat {
  padding: 28px 22px;
  border-right: 1px solid var(--line);
  text-align: center;
  transition: background 0.35s;
}
.stat:last-child { border-right: 0; }
.stat:hover { background: rgba(201, 255, 59, 0.045); }
.stat b {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat span {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dim);
}

/* --------------------------------------------------------------------------
   10. Steps — how the tunnel works
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 46px; left: 12%; right: 12%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line-2) 0 7px, transparent 7px 15px);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; padding: 0 8px; }
.step__num {
  width: 62px; height: 62px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(170deg, var(--surface-2), var(--ink));
  border: 1px solid var(--line-2);
  font-family: var(--f-mono);
  font-size: 15px;
  color: var(--lime);
  position: relative;
  transition: transform 0.45s var(--ease), border-color 0.4s, box-shadow 0.45s;
}
.step:hover .step__num {
  transform: translateY(-5px);
  border-color: rgba(201, 255, 59, 0.5);
  box-shadow: 0 0 40px -10px rgba(201, 255, 59, 0.7);
}
.step__num::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(201, 255, 59, 0.16);
  opacity: 0;
  transition: opacity 0.4s;
}
.step:hover .step__num::after { opacity: 1; }
.step h3 { font-size: 1.22rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 14.6px; max-width: 34ch; margin-inline: auto; }

/* --------------------------------------------------------------------------
   11. Bento feature grid
   -------------------------------------------------------------------------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}
.card {
  position: relative;
  padding: 28px;
  border-radius: var(--r-lg);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.4s, background 0.4s;
}
.card::before {
  /* cursor-tracked spotlight */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 0%), rgba(201, 255, 59, 0.11), transparent 70%);
  opacity: 0;
  transition: opacity 0.45s;
  pointer-events: none;
}
.card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.card:hover::before { opacity: 1; }

.card__icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(201, 255, 59, 0.09);
  border: 1px solid rgba(201, 255, 59, 0.22);
  color: var(--lime);
  margin-bottom: 20px;
  transition: transform 0.45s var(--ease), background 0.4s;
}
.card:hover .card__icon { transform: scale(1.08) rotate(-4deg); background: rgba(201, 255, 59, 0.15); }
.card__icon svg { width: 22px; height: 22px; }
.card__icon--violet { background: rgba(123, 92, 255, 0.12); border-color: rgba(123, 92, 255, 0.28); color: var(--violet); }
.card__icon--cyan { background: rgba(59, 232, 255, 0.1); border-color: rgba(59, 232, 255, 0.26); color: var(--cyan); }

.card h3 { font-size: 1.16rem; margin-bottom: 9px; }
.card p { color: var(--muted); font-size: 14.6px; }
.card__tag {
  position: absolute;
  top: 22px; right: 22px;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-2);
  color: var(--muted);
}

.card--wide { grid-column: span 3; }
.card--third { grid-column: span 2; }
.card--half { grid-column: span 3; }
.card--full { grid-column: span 6; }

/* Feature card with a visual */
.card--hero-feat {
  grid-column: span 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 340px);
  gap: 26px;
  align-items: center;
  padding: 32px;
}
.card--hero-feat .card__icon { margin-bottom: 18px; }

.speedviz { display: grid; gap: 11px; min-width: 0; }
.sbar { display: grid; grid-template-columns: 72px minmax(0, 1fr) auto; align-items: center; gap: 12px; font-size: 12.5px; }
.sbar__name { color: var(--muted); font-size: 12.5px; white-space: nowrap; }
.sbar__track {
  height: 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  overflow: hidden;
}
.sbar__fill {
  height: 100%;
  width: 0;
  border-radius: 20px;
  background: linear-gradient(90deg, #2b3543, #46566d);
  transition: width 1.5s var(--ease);
}
.sbar--us .sbar__name { color: var(--text); font-weight: 600; }
.sbar--us .sbar__fill { background: linear-gradient(90deg, var(--lime-deep), var(--lime)); box-shadow: 0 0 18px rgba(201, 255, 59, 0.55); }
.sbar__num { font-family: var(--f-mono); font-size: 11.5px; color: var(--dim); min-width: 58px; text-align: right; white-space: nowrap; }
.sbar--us .sbar__num { color: var(--lime); }

/* --------------------------------------------------------------------------
   12. Globe / network
   -------------------------------------------------------------------------- */
.network {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
}
.globe-wrap {
  position: relative;
  aspect-ratio: 1;
  max-width: 620px;
  width: 100%;
  margin-inline: auto;
}
#globe { width: 100%; height: 100%; cursor: grab; }
#globe:active { cursor: grabbing; }
.globe-wrap::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 232, 255, 0.1), transparent 65%);
  filter: blur(40px);
  z-index: -1;
}

.ticker {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
}
.ticker__head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}
.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(201, 255, 59, 0.7);
  animation: pulse 2s infinite;
  flex: none;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(201, 255, 59, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 255, 59, 0); }
}
.ticker__list { height: 148px; overflow: hidden; position: relative; }
.ticker__row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  animation: rowin 0.5s var(--ease);
}
@keyframes rowin { from { opacity: 0; transform: translateY(-8px); } }
.ticker__row span:nth-child(2) { color: var(--text); }
.ticker__row span:nth-child(3) { font-family: var(--f-mono); font-size: 11.5px; color: var(--dim); }
.ticker__row span:nth-child(4) { font-family: var(--f-mono); font-size: 11.5px; color: var(--lime); }

.netstats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 26px; }
.netstat {
  padding: 18px 20px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.022);
}
.netstat b {
  display: block;
  font-family: var(--f-display);
  font-size: 1.65rem;
  letter-spacing: -0.045em;
  line-height: 1;
  margin-bottom: 6px;
}
.netstat span { font-size: 12.5px; color: var(--muted); }

/* --------------------------------------------------------------------------
   13. Trust / audit
   -------------------------------------------------------------------------- */
.trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.trust-card {
  padding: 30px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.008));
  transition: border-color 0.4s, transform 0.45s var(--ease);
}
.trust-card:hover { border-color: rgba(201, 255, 59, 0.3); transform: translateY(-4px); }
.trust-card__seal {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(201, 255, 59, 0.4);
  color: var(--lime);
  margin-bottom: 20px;
}
.trust-card__seal svg { width: 24px; height: 24px; }
.trust-card h3 { font-size: 1.1rem; margin-bottom: 9px; }
.trust-card p { color: var(--muted); font-size: 14.4px; margin-bottom: 16px; }
.trust-card__meta {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.canary {
  margin-top: 20px;
  padding: 22px 26px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(201, 255, 59, 0.22);
  background: linear-gradient(100deg, rgba(201, 255, 59, 0.07), rgba(123, 92, 255, 0.05));
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.canary__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(201, 255, 59, 0.13);
  display: grid;
  place-items: center;
  color: var(--lime);
  flex: none;
}
.canary__icon svg { width: 22px; height: 22px; }
.canary p { flex: 1; min-width: 260px; font-size: 14.4px; color: var(--muted); }
.canary p b { color: var(--text); font-weight: 600; }
.canary code {
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--lime);
  background: rgba(0, 0, 0, 0.4);
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid var(--line);
  word-break: break-all;
}

/* --------------------------------------------------------------------------
   14. Downloads
   -------------------------------------------------------------------------- */
.platforms {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.plat {
  padding: 26px 16px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
  transition: transform 0.4s var(--ease), border-color 0.35s, background 0.35s;
  display: block;
}
.plat:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 255, 59, 0.4);
  background: rgba(201, 255, 59, 0.055);
}
.plat svg { width: 30px; height: 30px; margin: 0 auto 14px; color: var(--muted); transition: color 0.35s; }
.plat:hover svg { color: var(--lime); }
.plat b { display: block; font-size: 14px; font-weight: 600; font-family: var(--f-display); }
.plat span { font-family: var(--f-mono); font-size: 10px; color: var(--dim); letter-spacing: 0.08em; }

/* --------------------------------------------------------------------------
   15. Pricing
   -------------------------------------------------------------------------- */
.billing-toggle {
  display: inline-flex;
  padding: 5px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  margin: 0 auto 44px;
  position: relative;
}
.billing-toggle button {
  position: relative;
  z-index: 2;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 13.8px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.35s;
  white-space: nowrap;
}
.billing-toggle button.is-active { color: #0a1200; }
.billing-toggle__pill {
  position: absolute;
  top: 5px; left: 5px;
  height: calc(100% - 10px);
  border-radius: 100px;
  background: linear-gradient(180deg, var(--lime), var(--lime-2));
  transition: transform 0.45s var(--ease), width 0.45s var(--ease);
  z-index: 1;
}
.billing-toggle .save {
  display: inline-block;
  margin-left: 7px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 2px 7px;
  border-radius: 20px;
  background: rgba(123, 92, 255, 0.28);
  color: #cfc4ff;
  border: 1px solid rgba(123, 92, 255, 0.4);
}
.billing-toggle button.is-active .save { background: rgba(10, 18, 0, 0.22); color: #0a1200; border-color: rgba(10, 18, 0, 0.25); }

.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.plan {
  position: relative;
  padding: 32px;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.008));
  transition: transform 0.45s var(--ease), border-color 0.4s;
}
.plan:hover { transform: translateY(-5px); border-color: var(--line-2); }
.plan--featured {
  border-color: rgba(201, 255, 59, 0.42);
  background: linear-gradient(170deg, rgba(201, 255, 59, 0.08), rgba(123, 92, 255, 0.05) 60%, rgba(255, 255, 255, 0.01));
  box-shadow: 0 30px 80px -34px rgba(201, 255, 59, 0.45);
}
.plan--featured::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--r-xl);
  padding: 1px;
  background: linear-gradient(160deg, rgba(201, 255, 59, 0.6), transparent 55%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.plan__ribbon {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, var(--lime), var(--lime-2));
  color: #0a1200;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 6px 20px -6px rgba(201, 255, 59, 0.8);
}
.plan__name { font-family: var(--f-display); font-size: 1.02rem; font-weight: 600; letter-spacing: 0.01em; }
.plan__blurb { font-size: 13.2px; color: var(--dim); margin-top: 4px; min-height: 38px; }
.plan__price { display: flex; align-items: baseline; gap: 5px; margin: 20px 0 4px; }
.plan__cur { font-size: 1.3rem; font-weight: 600; color: var(--muted); font-family: var(--f-display); }
.plan__amt {
  font-family: var(--f-display);
  font-size: 3.1rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}
.plan__per { font-size: 13.5px; color: var(--dim); }
.plan__note { font-size: 12.5px; color: var(--dim); min-height: 34px; }
.plan__note s { color: #47505f; }
.plan__note b { color: var(--lime); font-weight: 600; }
.plan .btn { margin: 20px 0 24px; }
.plan__feats { display: grid; gap: 11px; padding-top: 22px; border-top: 1px solid var(--line); }
.plan__feats li { display: flex; gap: 10px; font-size: 13.8px; color: var(--muted); align-items: flex-start; }
.plan__feats svg { width: 16px; height: 16px; color: var(--lime); flex: none; margin-top: 3px; }
.plan__feats li.is-muted { color: #4d5666; }
.plan__feats li.is-muted svg { color: #3a424f; }
.plan__feats b { color: var(--text); font-weight: 600; }

.guarantee {
  margin-top: 30px;
  text-align: center;
  font-size: 13.5px;
  color: var(--dim);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.guarantee svg { width: 17px; height: 17px; color: var(--lime); }

/* --------------------------------------------------------------------------
   16. Comparison table
   -------------------------------------------------------------------------- */
.compare-scroll { overflow-x: auto; border-radius: var(--r-lg); border: 1px solid var(--line); }
.compare {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14.2px;
}
.compare th, .compare td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.compare thead th {
  font-family: var(--f-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.028);
  position: sticky;
  top: 0;
}
.compare tbody tr:last-child td { border-bottom: 0; }
.compare tbody tr:hover { background: rgba(255, 255, 255, 0.022); }
.compare td:first-child, .compare th:first-child {
  text-align: left;
  color: var(--text);
  font-weight: 500;
  min-width: 210px;
}
.compare .col-us {
  background: rgba(201, 255, 59, 0.055);
  border-inline: 1px solid rgba(201, 255, 59, 0.18);
  color: var(--text);
  font-weight: 600;
}
.compare thead .col-us {
  color: var(--lime);
  background: rgba(201, 255, 59, 0.1);
  font-size: 14.5px;
}
.compare .yes { color: var(--lime); }
.compare .no { color: #4a5361; }
.compare svg { width: 18px; height: 18px; display: inline-block; vertical-align: middle; }

/* --------------------------------------------------------------------------
   17. Testimonials
   -------------------------------------------------------------------------- */
.quotes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.quote {
  padding: 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.008));
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.45s var(--ease), border-color 0.4s;
}
.quote:hover { transform: translateY(-4px); border-color: var(--line-2); }
.quote p { font-size: 15px; color: #cdd6e2; line-height: 1.68; flex: 1; }
.quote__by { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  color: #0a1200;
  flex: none;
  background: linear-gradient(150deg, var(--lime), var(--cyan));
}
.avatar--v { background: linear-gradient(150deg, var(--violet), var(--cyan)); color: #fff; }
.avatar--c { background: linear-gradient(150deg, var(--cyan), var(--lime)); }
.quote__by b { display: block; font-size: 14px; font-weight: 600; }
.quote__by span { font-size: 12.2px; color: var(--dim); }

/* --------------------------------------------------------------------------
   18. FAQ
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: 10px; max-width: 860px; margin-inline: auto; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.022);
  overflow: hidden;
  transition: border-color 0.35s, background 0.35s;
}
.faq__item.is-open { border-color: rgba(201, 255, 59, 0.3); background: rgba(201, 255, 59, 0.03); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.faq__icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  flex: none;
  position: relative;
  transition: border-color 0.35s, transform 0.4s var(--ease);
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: var(--muted);
  border-radius: 2px;
  transition: transform 0.4s var(--ease), background 0.35s;
}
.faq__icon::before { width: 11px; height: 1.5px; }
.faq__icon::after { width: 1.5px; height: 11px; }
.faq__item.is-open .faq__icon { border-color: var(--lime); transform: rotate(180deg); }
.faq__item.is-open .faq__icon::before { background: var(--lime); }
.faq__item.is-open .faq__icon::after { transform: scaleY(0); }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 14.8px;
  max-width: 78ch;
}
.faq__a a { color: var(--lime); text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------------------------------------------------------
   19. Final CTA
   -------------------------------------------------------------------------- */
.finale {
  position: relative;
  padding: clamp(56px, 7vw, 88px) clamp(26px, 5vw, 72px);
  border-radius: var(--r-xl);
  border: 1px solid rgba(201, 255, 59, 0.24);
  background:
    radial-gradient(ellipse 70% 120% at 50% 0%, rgba(201, 255, 59, 0.14), transparent 62%),
    radial-gradient(ellipse 60% 100% at 85% 100%, rgba(123, 92, 255, 0.16), transparent 62%),
    linear-gradient(170deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008));
  text-align: center;
  overflow: hidden;
}
.finale::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000, transparent 72%);
  pointer-events: none;
}
.finale > * { position: relative; z-index: 1; }
.finale h2 { margin-bottom: 18px; }
.finale .lede { margin: 0 auto 32px; }
.finale__cta { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   20. Footer
   -------------------------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--line);
  margin-top: clamp(60px, 8vw, 110px);
  padding: 64px 0 32px;
  background: linear-gradient(180deg, transparent, rgba(201, 255, 59, 0.022));
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, minmax(0, 1fr));
  gap: 40px 28px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer__brand p {
  color: var(--muted);
  font-size: 14px;
  margin: 18px 0 22px;
  max-width: 34ch;
}
.footer__col h4 {
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 18px;
}
.footer__col li { margin-bottom: 11px; }
.footer__col a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.25s, padding-left 0.3s var(--ease);
}
.footer__col a:hover { color: var(--lime); padding-left: 4px; }

.socials { display: flex; gap: 9px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 11px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  transition: all 0.3s var(--ease);
}
.socials a:hover {
  color: var(--lime);
  border-color: rgba(201, 255, 59, 0.4);
  transform: translateY(-3px);
  background: rgba(201, 255, 59, 0.07);
}
.socials svg { width: 17px; height: 17px; }

.footer__bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--dim);
}
.footer__bottom nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__bottom a:hover { color: var(--lime); }
.footer__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(201, 255, 59, 0.24);
  background: rgba(201, 255, 59, 0.05);
  color: var(--lime);
}
.disclaimer {
  margin-top: 22px;
  font-size: 11.6px;
  color: #3f4855;
  line-height: 1.6;
  max-width: 90ch;
}

/* --------------------------------------------------------------------------
   21. Reveal animation
   -------------------------------------------------------------------------- */
/* Scoped to .js so content is never hidden when scripting is unavailable */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }
.reveal[data-d="5"] { transition-delay: 0.4s; }

/* --------------------------------------------------------------------------
   22. Sub-page header
   -------------------------------------------------------------------------- */
.page-head {
  padding: clamp(56px, 7vw, 92px) 0 clamp(30px, 4vw, 48px);
  text-align: center;
  position: relative;
}
.page-head .lede { margin-inline: auto; }
.crumbs {
  display: flex;
  justify-content: center;
  gap: 9px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 22px;
}
.crumbs a:hover { color: var(--lime); }

/* --------------------------------------------------------------------------
   23. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr); }
  .appcard { max-width: 420px; margin-inline: auto; }
  .network { grid-template-columns: minmax(0, 1fr); }
  .footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer__brand { grid-column: span 3; }
  .card--hero-feat { grid-column: span 6; }
  .card--wide, .card--half { grid-column: span 3; }
  .card--third { grid-column: span 3; }
  .stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .stat:nth-child(3) { border-right: 0; }
  .stat:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .platforms { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  :root { --nav-h: 64px; }
  .nav__links { display: none; }
  .nav__actions .btn--ghost { display: none; }
  .nav__burger { display: flex; }
  .plans { grid-template-columns: minmax(0, 1fr); max-width: 440px; margin-inline: auto; }
  .plan--featured { order: -1; }
  .trust { grid-template-columns: minmax(0, 1fr); }
  .quotes { grid-template-columns: minmax(0, 1fr); }
  .steps { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .steps::before { display: none; }
  .card--hero-feat { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 620px) {
  .wrap { padding-inline: 18px; }
  /* Brand + burger only — the CTA lives inside the mobile menu */
  .nav__inner { gap: 14px; }
  .nav__actions .btn--primary { display: none; }
  .brand__text { font-size: 16px; }
  .card--wide, .card--half, .card--third, .card--full, .card--hero-feat { grid-column: span 6; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 20px 12px; }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:last-child { grid-column: span 2; border-bottom: 0; }
  .platforms { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .netstats { grid-template-columns: minmax(0, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__brand { grid-column: span 2; }
  .appcard__body { padding: 18px; }
  .power__btn { width: 118px; height: 118px; }
  .billing-toggle button { padding: 9px 14px; font-size: 12.6px; }
  .hero__cta .btn { width: 100%; }
  .topbar__inner { font-size: 12px; }
}

/* --------------------------------------------------------------------------
   24. Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}

/* --------------------------------------------------------------------------
   25. Sub-page components (pricing / download)
   -------------------------------------------------------------------------- */
.codeblock {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(0, 0, 0, 0.42);
  overflow: hidden;
}
.codeblock__bar {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--dim);
}
.codeblock__bar i {
  width: 8px; height: 8px; border-radius: 50%; display: block;
  background: #222c39;
}
.codeblock pre {
  padding: 18px 20px;
  overflow-x: auto;
  font-family: var(--f-mono);
  font-size: 12.8px;
  line-height: 1.85;
  color: #b9c4d3;
}
.codeblock .c-dim { color: #4f5a6b; }
.codeblock .c-lime { color: var(--lime); }
.codeblock .c-cyan { color: var(--cyan); }

.paymethods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}
.paymethod {
  padding: 9px 16px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.028);
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.09em;
  color: var(--muted);
  transition: border-color 0.3s, color 0.3s;
}
.paymethod:hover { border-color: rgba(201, 255, 59, 0.4); color: var(--lime); }

/* Big platform download cards */
.dlgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.dlcard {
  padding: 30px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.008));
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.45s var(--ease), border-color 0.4s;
}
.dlcard:hover { transform: translateY(-5px); border-color: rgba(201, 255, 59, 0.34); }
.dlcard--primary {
  border-color: rgba(201, 255, 59, 0.4);
  background: linear-gradient(168deg, rgba(201, 255, 59, 0.09), rgba(123, 92, 255, 0.05) 60%, rgba(255, 255, 255, 0.01));
  box-shadow: 0 30px 80px -36px rgba(201, 255, 59, 0.4);
}
.dlcard__ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-2);
  color: var(--text);
}
.dlcard--primary .dlcard__ico { background: rgba(201, 255, 59, 0.12); border-color: rgba(201, 255, 59, 0.3); color: var(--lime); }
.dlcard__ico svg { width: 26px; height: 26px; }
.dlcard h3 { font-size: 1.24rem; }
.dlcard p { color: var(--muted); font-size: 14.2px; flex: 1; }
.dlcard__meta {
  display: flex; gap: 14px; flex-wrap: wrap;
  font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--dim);
  padding-top: 14px; border-top: 1px solid var(--line);
}

.mini-list { display: grid; gap: 12px; }
.mini-list li { display: flex; gap: 11px; font-size: 14.4px; color: var(--muted); align-items: flex-start; }
.mini-list svg { width: 17px; height: 17px; color: var(--lime); flex: none; margin-top: 3px; }

.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 4vw, 56px); align-items: center; }

.notfound {
  min-height: 68vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 0;
}
.notfound__code {
  font-family: var(--f-display);
  font-size: clamp(5rem, 18vw, 11rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.9;
  margin-bottom: 12px;
}

@media (max-width: 860px) {
  .dlgrid { grid-template-columns: minmax(0, 1fr); }
  .split { grid-template-columns: minmax(0, 1fr); }
}

/* --------------------------------------------------------------------------
   26. Narrow-viewport refinements
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  /* Billing toggle has to fit three nowrap labels on a 320px screen */
  .billing-toggle { max-width: 100%; }
  .billing-toggle button { padding: 9px 11px; font-size: 12px; }
  .billing-toggle .save { font-size: 9px; padding: 2px 5px; margin-left: 4px; letter-spacing: 0.04em; }

  .plat { padding: 20px 10px; }
  .plat b { font-size: 13px; }
  .plat span { font-size: 9px; letter-spacing: 0.04em; }
  .sbar { grid-template-columns: minmax(0, 1fr) auto; }
  .sbar__track { grid-column: 1 / -1; }
  .ticker__row { grid-template-columns: 20px minmax(0, 1fr) auto; gap: 8px; }
  .ticker__row span:nth-child(3) { display: none; }
  .arow__main b, .arow__val { font-size: 12.5px; }
}

@media (max-width: 380px) {
  /* Last resort: the discount is still stated on every plan card */
  .billing-toggle .save { display: none; }
}

@media (max-width: 520px) {
  /* Long CTA labels must wrap rather than push the page wider */
  .btn { white-space: normal; text-align: center; line-height: 1.35; }
  .btn--lg { padding: 16px 24px; font-size: 15.5px; }
}
