/* ── Tokens ─────────────────────────────────────────── */
:root {
  --bg: #111111;
  --bg-deeper: #0b0b0b;
  --surface: #181818;
  --surface-2: #1f1f1f;
  --stroke-a: #2f2f2f;
  --stroke-b: #212020;
  --text: #ffffff;
  --text-dim: #777777;
  --text-soft: #9a9a9a;
  --accent: #c2baf4;
  --accent-deep: #2e0181;
  --accent-soft: rgba(194, 186, 244, 0.14);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --maxw: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Roboto', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; padding: 0; }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }

/* ── Page bg ambience ───────────────────────────────── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(194,186,244,0.07), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(194,186,244,0.04), transparent 60%);
  z-index: 0;
}

main, nav, footer { position: relative; z-index: 1; }

.shell { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ── Type ───────────────────────────────────────────── */
h1, h2, h3, h4 { margin: 0; letter-spacing: -0.02em; font-weight: 500; }
h1 { font-size: clamp(40px, 5.4vw, 76px); line-height: 1.02; font-weight: 500; letter-spacing: -0.035em; }
h2 { font-size: clamp(32px, 3.6vw, 50px); line-height: 1.05; letter-spacing: -0.028em; }
h3 { font-size: 19px; line-height: 1.25; letter-spacing: -0.012em; font-weight: 500; }
p  { color: var(--text-dim); line-height: 1.55; margin: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.hero-grad {
  background: linear-gradient(135deg, #ffffff 0%, #c2baf4 60%, #8a7fe2 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section { padding: 110px 0; position: relative; }
.section-head { display: flex; flex-direction: column; gap: 16px; max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; align-items: center; text-align: center; }
.section-head p { font-size: 17px; color: var(--text-soft); }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-deep);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 -8px 18px rgba(46,1,129,0.18) inset,
    0 10px 28px rgba(194,186,244,0.22),
    0 1px 1px rgba(0,0,0,0.4);
  font-weight: 600;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, 0 -8px 18px rgba(46,1,129,0.22) inset, 0 14px 32px rgba(194,186,244,0.32); }
.btn-ghost {
  background: rgba(255,255,255,0.02);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.16); }
.btn-sm { height: 38px; padding: 0 16px; font-size: 13.5px; }

/* ── Card primitive (gradient stroke) ───────────────── */
.card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(150deg, var(--stroke-a), var(--stroke-b) 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.glow-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.glow-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(194,186,244,0.16), transparent 45%);
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 0;
}
.glow-card:hover::after { opacity: 1; }
.glow-card > * { position: relative; z-index: 1; }

/* ── Animations ─────────────────────────────────────── */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
@keyframes ring {
  0% { transform: scale(0.6); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes fadein-up {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes block-pop {
  0%, 100% { background: rgba(194,186,244,0.08); }
  50% { background: rgba(194,186,244,0.45); }
}

.dot-pulse {
  width: 7px; height: 7px;
  background: #7dd49a; border-radius: 50%;
  animation: pulse-dot 1.6s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(125,212,154,0.7);
  display: inline-block;
}
.dot-pulse.green { background: #7dd49a; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #0b0b0b; }
::-webkit-scrollbar-thumb { background: #1e1e1e; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #2a2a2a; }

/* ════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background .25s ease, backdrop-filter .25s ease, border-color .25s ease, padding .25s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(17,17,17,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(255,255,255,0.06);
  padding: 12px 0;
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.nav-logo img { height: 26px; width: auto; opacity: 0.95; }
.nav-links {
  display: flex;
  gap: 6px;
  justify-content: center;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 400;
  transition: color .2s ease, background .2s ease;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-links a.active { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-signin { font-size: 14px; color: var(--text-dim); padding: 0 8px; }
.nav-signin:hover { color: var(--text); }

/* ════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 60px 0 40px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(700px 500px at 70% 40%, rgba(194,186,244,0.18), transparent 65%),
    radial-gradient(500px 400px at 90% 80%, rgba(46,1,129,0.18), transparent 65%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, black 30%, transparent 80%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}
.hero-copy { align-self: center; }
.hero-copy { display: flex; flex-direction: column; gap: 24px; }
.hero-copy h1 { margin-top: 4px; }
.hero-sub { font-size: 18px; color: var(--text-soft); max-width: 540px; }
.hero-ctas { display: flex; gap: 12px; margin-top: 4px; flex-wrap: wrap; }
.hero-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-dim);
}
.hero-meta-item { display: flex; align-items: center; gap: 8px; }
.hero-meta-item b { color: var(--text); font-weight: 600; }
.hero-meta-stars { display: flex; gap: 1px; }
.hero-meta-divider { width: 1px; height: 12px; background: rgba(255,255,255,0.12); }

/* hero stage with phones */
.hero-stage {
  position: relative;
  width: 100%;
  perspective: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
}
.hero-stage-glow {
  position: absolute;
  width: 620px; height: 620px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(194,186,244,0.32), rgba(194,186,244,0.08) 45%, transparent 65%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}
.hero-stage-glow-2 {
  position: absolute;
  width: 380px; height: 380px;
  left: 58%; top: 48%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(138,127,226,0.45), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.hero-image {
  position: relative;
  width: 100%;
  max-width: 560px;
  height: auto;
  z-index: 2;
  transition: transform .25s ease-out;
  will-change: transform;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5)) drop-shadow(0 50px 100px rgba(46,1,129,0.25));
  animation: float-y 9s ease-in-out infinite;
}

/* phone wrappers */
.phone-wrap {
  position: absolute;
  transition: transform .2s ease-out;
  will-change: transform;
}
.phone-front { left: 50%; top: 50%; margin-left: -130px; margin-top: -270px; z-index: 3; }
.phone-mid   { left: 50%; top: 50%; margin-left:   30px; margin-top: -240px; z-index: 2; opacity: 0.96; }
.phone-back  { left: 50%; top: 50%; margin-left: -270px; margin-top: -250px; z-index: 1; opacity: 0.85; }

/* PHONE ===================================================*/
.phone-frame {
  position: relative;
  width: 260px;
  height: 540px;
  border-radius: 42px;
  background:
    linear-gradient(160deg, #2c2c30, #0e0e10);
  padding: 7px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 -1px 0 rgba(0,0,0,0.4) inset,
    0 30px 60px -20px rgba(0,0,0,0.6),
    0 50px 100px -10px rgba(46,1,129,0.18);
}
.phone-bezel {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  background: #0a0a0a;
  overflow: hidden;
}
.phone-notch {
  position: absolute;
  top: 9px; left: 50%; transform: translateX(-50%);
  width: 88px; height: 22px;
  background: #000;
  border-radius: 14px;
  z-index: 5;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #131317 0%, #0d0d0f 100%);
  color: #fff;
  position: relative;
}

.ph-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 22px 0;
  font-size: 12px;
  font-weight: 600;
}
.ph-time { letter-spacing: -0.01em; }
.ph-status-r { display: flex; gap: 5px; align-items: center; color: #fff; }

.ph-screen { padding: 14px 16px; height: 100%; display: flex; flex-direction: column; gap: 14px; padding-top: 38px; }
.ph-head { display: flex; justify-content: space-between; align-items: center; padding: 0 6px; }
.ph-h-eyebrow { font-size: 9.5px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; }
.ph-h-title { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; margin-top: 2px; }
.ph-h-title-c { font-size: 14px; font-weight: 600; }
.ph-h-back { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.06); display: grid; place-items: center; }
.ph-h-avatar { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, #c2baf4, #8a7fe2); color: #2e0181; font-size: 11px; font-weight: 700; display: grid; place-items: center; }

/* connect orb */
.ph-orb {
  margin-top: 8px;
  height: 240px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative;
}
.ph-orb-rings { position: absolute; inset: 0; display: grid; place-items: center; }
.ph-orb-rings span {
  position: absolute;
  width: 130px; height: 130px;
  border-radius: 50%;
  border: 1px solid rgba(194,186,244,0.4);
  animation: ring 2.4s ease-out infinite;
}
.ph-orb-rings span:nth-child(2) { animation-delay: 0.8s; }
.ph-orb-rings span:nth-child(3) { animation-delay: 1.6s; }
.ph-orb-core {
  width: 86px; height: 86px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ddd6ff, #c2baf4 50%, #6e63c8);
  color: #2e0181;
  display: grid; place-items: center;
  box-shadow: 0 0 50px rgba(194,186,244,0.55), 0 1px 0 rgba(255,255,255,0.5) inset;
  z-index: 2;
}
.ph-orb-meta { margin-top: 22px; text-align: center; z-index: 2; }
.ph-orb-time { font-family: 'Roboto Mono', monospace; font-size: 22px; font-weight: 500; letter-spacing: -0.01em; }
.ph-orb-sub { font-size: 11px; color: var(--text-dim); margin-top: 2px; }

.ph-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 0 4px; }
.ph-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 10px 12px;
}
.ph-stat-l { font-size: 10px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; }
.ph-stat-v { font-size: 18px; font-weight: 600; margin-top: 2px; letter-spacing: -0.01em; }
.ph-stat-v span { font-size: 10px; color: var(--text-dim); margin-left: 2px; font-weight: 400; }

.ph-server {
  display: flex; align-items: center; gap: 10px;
  padding: 12px;
  margin: 0 4px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
}
.ph-flag {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2e2e35, #1a1a1f);
  color: #fff;
  font-size: 9px; font-weight: 700;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.ph-flag[data-flag="us"] { background: linear-gradient(180deg, #b22, #36c 50%, #36c); }
.ph-flag[data-flag="jp"] { background: radial-gradient(circle, #d22 30%, #fff 30%); color: transparent; }
.ph-flag[data-flag="de"] { background: linear-gradient(180deg, #000 33%, #d22 33% 66%, #fc0 66%); color: transparent; }
.ph-flag[data-flag="gb"] { background: linear-gradient(135deg, #012, #c33 50%, #012); }
.ph-flag[data-flag="fr"] { background: linear-gradient(90deg, #04c 33%, #fff 33% 66%, #d22 66%); color: transparent; }
.ph-flag[data-flag="sg"] { background: linear-gradient(180deg, #d22 50%, #fff 50%); color: transparent; }
.ph-flag[data-flag="au"] { background: linear-gradient(180deg, #012 50%, #c33 50%); }
.ph-flag[data-flag="ca"] { background: linear-gradient(90deg, #c33 25%, #fff 25% 75%, #c33 75%); color: transparent; }
.ph-flag[data-flag="br"] { background: radial-gradient(circle, #048 25%, #fc0 25%, #fc0 60%, #093 60%); color: transparent; }
.ph-flag[data-flag="se"] { background: linear-gradient(90deg, #048, #048 30%, #fc0 30% 40%, #048 40%); color: transparent; }

.ph-server-meta { flex: 1; }
.ph-server-name { font-size: 12px; font-weight: 600; }
.ph-server-sub { font-size: 10px; color: var(--text-dim); margin-top: 2px; }
.ph-server-action { width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,0.06); display: grid; place-items: center; }

/* server list screen */
.ph-screen-2 .ph-search {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  font-size: 11px;
  color: var(--text-dim);
  margin: 0 4px;
}
.ph-tabs { display: flex; gap: 6px; padding: 0 4px; font-size: 10.5px; }
.ph-tabs span { padding: 5px 10px; border-radius: 999px; color: var(--text-dim); }
.ph-tabs span.active { background: rgba(194,186,244,0.16); color: #c2baf4; font-weight: 500; }
.ph-list { display: flex; flex-direction: column; gap: 4px; padding: 0 4px; overflow: hidden; }
.ph-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 8px;
  border-radius: 10px;
}
.ph-row.active { background: rgba(194,186,244,0.08); }
.ph-row-meta { flex: 1; }
.ph-row-name { font-size: 11.5px; font-weight: 500; }
.ph-row-bar { display: flex; align-items: center; gap: 6px; margin-top: 3px; }
.ph-bar { flex: 1; height: 3px; background: rgba(255,255,255,0.06); border-radius: 99px; overflow: hidden; }
.ph-bar i { display: block; height: 100%; background: linear-gradient(90deg, #7dd49a, #c2baf4); }
.ph-row-bar span { font-size: 9.5px; color: var(--text-dim); }
.ph-dot-active {
  width: 6px; height: 6px; border-radius: 50%;
  background: #7dd49a;
  box-shadow: 0 0 8px #7dd49a;
}

/* privacy screen */
.ph-screen-3 { padding-top: 40px; }
.ph-bigstat { padding: 20px 12px 14px; text-align: left; }
.ph-bigstat-v { font-size: 36px; font-weight: 600; letter-spacing: -0.025em; }
.ph-bigstat-l { font-size: 11px; color: var(--text-dim); margin-top: 2px; }
.ph-chart {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 6px; height: 90px;
  padding: 0 12px;
  align-items: end;
}
.ph-bar-v {
  height: 100%; display: flex; align-items: end;
}
.ph-bar-v i {
  display: block;
  width: 100%;
  background: linear-gradient(180deg, #c2baf4, rgba(194,186,244,0.2));
  border-radius: 4px;
}
.ph-rowlist { display: flex; flex-direction: column; gap: 6px; padding: 14px 4px 0; }
.ph-mini {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
}
.ph-mini-ico { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; }
.ph-mini-t { flex: 1; font-size: 11px; }
.ph-mini-v { font-size: 12px; font-weight: 600; font-family: 'Roboto Mono', monospace; }

/* floating chips around hero */
.float-chip {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px 10px 10px;
  border-radius: 14px;
  background: rgba(24,24,24,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 36px rgba(0,0,0,0.4);
  font-size: 12px;
  z-index: 4;
  transition: transform .25s ease-out;
}
.float-chip .chip-ico {
  width: 28px; height: 28px;
  border-radius: 9px;
  background: rgba(194,186,244,0.16);
  color: #c2baf4;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.chip-t { font-weight: 600; font-size: 12px; }
.chip-s { color: var(--text-dim); font-size: 10.5px; margin-top: 1px; }
.chip-1 { top: 6%; left: 0%; animation: float-y 7s ease-in-out infinite; }
.chip-2 { top: 24%; right: 2%; animation: float-y 8s ease-in-out infinite -2s; }
.chip-3 { bottom: 8%; left: 12%; animation: float-y 9s ease-in-out infinite -4s; }

/* hero marquee */
.hero-marquee {
  margin-top: 40px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 18px 0;
  position: relative;
}
.hero-marquee::before, .hero-marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.hero-marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.hero-marquee::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.marquee-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  width: max-content;
  font-size: 13px;
  color: var(--text-dim);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 36px; }
.marq-dot { width: 4px; height: 4px; background: var(--text-dim); border-radius: 50%; opacity: 0.5; }

/* ════════════════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════════════ */
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.feat {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px;
  min-height: 230px;
  position: relative;
  overflow: hidden;
}
.feat h3 { font-size: 21px; }
.feat p { font-size: 14.5px; max-width: 460px; }
.feat-ico {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(194,186,244,0.12);
  color: #c2baf4;
  display: grid; place-items: center;
  border: 1px solid rgba(194,186,244,0.18);
}
.feat-deco {
  position: absolute;
  right: 24px; bottom: 24px;
  opacity: 0.55;
  pointer-events: none;
}
.feat-speed { display: flex; flex-direction: column; gap: 5px; width: 110px; }
.feat-speed-bar {
  height: 5px; background: rgba(255,255,255,0.06); border-radius: 99px; overflow: hidden;
}
.feat-speed-bar i {
  display: block; height: 100%;
  background: linear-gradient(90deg, #c2baf4, transparent);
  background-size: 200% 100%;
  animation: shimmer-bar 2.5s linear infinite;
}
@keyframes shimmer-bar {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
.feat-rings { position: relative; width: 90px; height: 90px; }
.feat-rings span {
  position: absolute; inset: 0;
  border: 1px solid rgba(194,186,244,0.4);
  border-radius: 50%;
  animation: ring 2.6s ease-out infinite;
}
.feat-rings span:nth-child(2) { animation-delay: 0.85s; }
.feat-rings span:nth-child(3) { animation-delay: 1.7s; }
.feat-blocks { display: grid; grid-template-columns: repeat(3, 16px); gap: 4px; }
.feat-blocks span {
  width: 16px; height: 16px;
  background: rgba(194,186,244,0.08);
  border-radius: 4px;
  animation: block-pop 1.6s ease-in-out infinite;
}
.feat-globe { width: 110px; height: 110px; position: relative; }
.feat-globe-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(194,186,244,0.25);
}
.feat-globe-ring.r2 {
  inset: 18px;
  border-color: rgba(194,186,244,0.16);
}
.feat-globe-pin {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #c2baf4;
  box-shadow: 0 0 10px #c2baf4;
  animation: pulse-dot 2s ease-in-out infinite;
}
.feat-globe-pin.p1 { top: 20%; left: 20%; }
.feat-globe-pin.p2 { top: 60%; right: 25%; animation-delay: 0.6s; }
.feat-globe-pin.p3 { bottom: 18%; left: 40%; animation-delay: 1.2s; }
.feat-devices { display: flex; gap: 8px; align-items: end; }
.fd-phone { width: 22px; height: 36px; border-radius: 4px; border: 1px solid rgba(194,186,244,0.4); background: rgba(194,186,244,0.08); }
.fd-laptop { width: 50px; height: 32px; border-radius: 3px 3px 0 0; border: 1px solid rgba(194,186,244,0.4); background: rgba(194,186,244,0.08); }
.fd-watch { width: 18px; height: 22px; border-radius: 4px; border: 1px solid rgba(194,186,244,0.4); background: rgba(194,186,244,0.08); }
.feat-keys {
  display: flex; flex-direction: column; gap: 4px;
  font-family: 'Roboto Mono', monospace;
  font-size: 10px;
  color: rgba(194,186,244,0.7);
}
.feat-keys code { background: rgba(194,186,244,0.05); padding: 3px 8px; border-radius: 4px; }
.feat-keys i { color: rgba(194,186,244,0.3); margin: 0 2px; font-style: normal; }

/* ════════════════════════════════════════════════════════
   SERVERS
═══════════════════════════════════════════════════════ */
.srv-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.srv-list { padding: 22px; display: flex; flex-direction: column; gap: 14px; height: 100%; }
.srv-list-head { display: flex; justify-content: space-between; align-items: center; }
.srv-list-title { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--text); }
.srv-list-title svg { color: var(--accent); }
.srv-list-counter { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--text-dim); }
.srv-list-counter b { color: var(--text); font-weight: 600; }
.srv-tabs { display: flex; gap: 6px; }
.srv-tabs span {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--text-dim);
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
}
.srv-tabs span.active { background: rgba(194,186,244,0.12); color: var(--accent); border-color: rgba(194,186,244,0.2); }
.srv-rows { display: flex; flex-direction: column; gap: 4px; flex: 1; min-height: 0; overflow-y: auto; padding-right: 4px; }
.srv-row {
  display: grid;
  grid-template-columns: 30px 1fr 24px;
  align-items: center;
  gap: 14px;
  padding: 14px 12px;
  border-radius: 12px;
  text-align: left;
  transition: background .15s ease;
  font-family: inherit;
  width: 100%;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: inherit;
}
.srv-row:hover { background: rgba(255,255,255,0.03); }
.srv-row.active { background: rgba(194,186,244,0.08); }
.srv-row-chev {
  color: var(--text-dim);
  display: grid; place-items: center;
  transition: transform .25s ease, color .15s;
}
.srv-row.active .srv-row-chev { transform: rotate(180deg); color: var(--accent); }
.srv-row-wrap.expanded { background: rgba(255,255,255,0.02); border-radius: 12px; }
.srv-cities {
  display: flex; flex-direction: column;
  padding: 4px 10px 12px 52px;
  gap: 2px;
  animation: srv-cities-in .22s ease;
}
@keyframes srv-cities-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: none; }
}
.srv-city {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-soft);
  transition: background .15s, color .15s;
  cursor: pointer;
}
.srv-city:hover { background: rgba(194,186,244,0.06); color: var(--text); }
.srv-city-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(194,186,244,0.5);
  flex-shrink: 0;
}
.srv-city-name { flex: 1; }
.srv-city-conn {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0;
  transition: opacity .15s;
}
.srv-city:hover .srv-city-conn { opacity: 1; color: var(--accent); }
.srv-row .srv-flag {
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 9px; font-weight: 700;
  color: #fff;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
  background: #222;
}
/* Re-use phone flag colors */
.srv-flag[data-flag="us"] { background: linear-gradient(180deg, #b22, #36c 50%, #36c); }
.srv-flag[data-flag="jp"] { background: radial-gradient(circle, #d22 30%, #fff 30%); color: transparent; }
.srv-flag[data-flag="de"] { background: linear-gradient(180deg, #000 33%, #d22 33% 66%, #fc0 66%); color: transparent; }
.srv-flag[data-flag="gb"] { background: linear-gradient(135deg, #012, #c33 50%, #012); }
.srv-flag[data-flag="fr"] { background: linear-gradient(90deg, #04c 33%, #fff 33% 66%, #d22 66%); color: transparent; }
.srv-flag[data-flag="sg"] { background: linear-gradient(180deg, #d22 50%, #fff 50%); color: transparent; }
.srv-flag[data-flag="au"] { background: linear-gradient(180deg, #012 50%, #c33 50%); }
.srv-flag[data-flag="ca"] { background: linear-gradient(90deg, #c33 25%, #fff 25% 75%, #c33 75%); color: transparent; }
.srv-flag[data-flag="br"] { background: radial-gradient(circle, #048 25%, #fc0 25%, #fc0 60%, #093 60%); color: transparent; }
.srv-flag[data-flag="se"] { background: linear-gradient(90deg, #048, #048 30%, #fc0 30% 40%, #048 40%); color: transparent; }

.srv-row-meta .srv-row-name { font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 8px; }
.srv-row-meta .srv-row-country { font-size: 12px; color: var(--text-dim); margin-top: 2px; }
.srv-tag {
  font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 2px 6px; border-radius: 4px;
  background: rgba(194,186,244,0.14); color: var(--accent);
  font-weight: 500;
}
.srv-row-bar { display: flex; align-items: center; gap: 8px; }
.srv-bar { flex: 1; height: 4px; background: rgba(255,255,255,0.06); border-radius: 99px; overflow: hidden; }
.srv-bar i { display: block; height: 100%; background: linear-gradient(90deg, #7dd49a, #c2baf4); }
.srv-load { font-size: 11px; color: var(--text-dim); width: 30px; text-align: right; font-family: 'Roboto Mono', monospace; }
.srv-row-ping { font-family: 'Roboto Mono', monospace; font-size: 14px; font-weight: 500; color: var(--text); text-align: right; }
.srv-row-ping i { font-size: 10px; color: var(--text-dim); margin-left: 1px; font-style: normal; font-family: inherit; }
.srv-row-action { text-align: right; }
.srv-connect {
  font-size: 12px; color: var(--text-dim);
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  display: inline-block;
}
.srv-row:hover .srv-connect { color: var(--text); border-color: rgba(255,255,255,0.18); }
.srv-connected {
  font-size: 12px; color: #7dd49a;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(125,212,154,0.1);
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 500;
}

.srv-aside { display: flex; flex-direction: column; gap: 16px; }
.srv-map-card {
  position: relative;
  flex: 1;
  min-height: 320px;
  background: #181818;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 0;
}
.srv-globe-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.srv-map { position: absolute; inset: 0; width: 100%; height: 100%; }
.srv-arcs { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.srv-pin {
  position: absolute;
  width: 12px; height: 12px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.srv-pin-core {
  position: absolute; inset: 0;
  margin: auto;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.srv-pin-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0;
}
.srv-pin.active .srv-pin-core {
  background: #fff;
  box-shadow: 0 0 14px #c2baf4, 0 0 28px rgba(194,186,244,0.5);
  width: 8px; height: 8px;
}
.srv-pin.active .srv-pin-ring {
  animation: ring 1.8s ease-out infinite;
}

.srv-feats { display: grid; grid-template-columns: 1fr; gap: 10px; }
.srv-feat { display: flex; align-items: center; gap: 14px; padding: 18px 20px; }
.srv-feat-ico {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(194,186,244,0.1);
  color: var(--accent);
  display: grid; place-items: center;
  border: 1px solid rgba(194,186,244,0.16);
}
.srv-feat-t { font-size: 14px; font-weight: 500; }
.srv-feat-s { font-size: 12px; color: var(--text-dim); margin-top: 1px; }

/* ════════════════════════════════════════════════════════
   AUDIENCE
═══════════════════════════════════════════════════════ */
.aud-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.aud-card { padding: 32px; min-height: 520px; display: flex; flex-direction: column; gap: 18px; position: relative; overflow: hidden; }
.aud-img {
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 310px;
  height: auto;
  pointer-events: none;
  user-select: none;
}
.aud-tag { display: flex; align-items: center; gap: 12px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-dim); font-weight: 500; }
.aud-ico { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); display: grid; place-items: center; }
.aud-title { font-size: 26px; line-height: 1.15; letter-spacing: -0.02em; font-weight: 500; max-width: 280px; }
.aud-card p { font-size: 14.5px; flex-grow: 1; }
.aud-stats { display: flex; gap: 0; margin-top: 8px; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 18px; }
.aud-stat { flex: 1; }
.aud-stat:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.06); }
.aud-stat-v { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.aud-stat-l { font-size: 11px; color: var(--text-dim); margin-top: 2px; }

/* ════════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════ */
.pri-feats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
  margin-top: 22px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.pri-feats-row li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-soft);
  padding: 6px 14px 6px 6px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
}
.pri-check-circle {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(194,186,244,0.18);
  color: var(--accent);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.pri-cards {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 20px;
  align-items: stretch;
  margin-top: 56px;
}
.pri-plan {
  position: relative;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pri-plan-active {
  background: linear-gradient(180deg, rgba(194,186,244,0.10), rgba(194,186,244,0.02));
  border-color: rgba(154,140,240,0.4);
  box-shadow: 0 0 0 1px rgba(154,140,240,0.4) inset, 0 18px 60px -30px rgba(154,140,240,0.6);
}
.pri-plan-active::before {
  background: linear-gradient(150deg, rgba(194,186,244,0.6), rgba(194,186,244,0.2) 70%);
}
.pri-plan-save {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent);
  color: var(--accent-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 24px -10px rgba(154,140,240,0.7);
}
.pri-plan-dur {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
}
.pri-plan-dev {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-dim);
}
.pri-plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 8px;
}
.pri-plan-price {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--text);
  line-height: 1;
}
.pri-plan-orig {
  font-size: 16px;
  color: var(--text-dim);
  text-decoration: line-through;
}
.pri-plan-cta {
  width: 100%;
  height: 44px;
  margin-top: auto;
}

/* ════════════════════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════════════════ */
.rev-stage {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px;
}
.rev-quote-mark {
  font-family: 'Roboto', serif;
  font-size: 220px;
  line-height: 0.6;
  color: rgba(194,186,244,0.18);
  letter-spacing: -0.02em;
  height: 60px;
  margin-bottom: 0;
}
.rev-quote {
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--text);
  margin: 24px auto 36px;
  max-width: 800px;
  text-wrap: balance;
  animation: fadein-up .5s ease;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rev-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  animation: fadein-up .5s ease;
}
.rev-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-deep);
  border: 1px solid rgba(255,255,255,0.1);
}
.rev-author-meta { text-align: left; }
.rev-author-name { font-size: 15px; font-weight: 500; }
.rev-author-title { font-size: 12.5px; color: var(--text-dim); margin-top: 2px; }

.rev-controls {
  display: flex; justify-content: center; align-items: center; gap: 18px;
  margin-top: 50px;
}
.rev-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-dim);
  display: grid; place-items: center;
  transition: color .15s, border-color .15s, background .15s;
}
.rev-arrow:hover { color: var(--text); border-color: rgba(255,255,255,0.2); background: var(--surface-2); }
.rev-dots { display: flex; gap: 8px; }
.rev-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transition: background .2s, width .25s;
}
.rev-dot.active { background: var(--accent); width: 24px; border-radius: 99px; }

.rev-logos {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.rev-logos > span {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-dim);
}
.rev-logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px 48px;
  opacity: 0.55;
}
.rev-logo {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-soft);
  font-family: 'Roboto', serif;
  font-style: italic;
}
.rev-logo:nth-child(2) { font-style: normal; font-weight: 700; letter-spacing: -0.03em; }
.rev-logo:nth-child(3) { font-style: normal; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; font-size: 16px; }
.rev-logo:nth-child(4) { font-style: normal; font-weight: 300; letter-spacing: -0.02em; }
.rev-logo:nth-child(5) { font-style: normal; font-weight: 700; }
.rev-logo:nth-child(6) { font-style: italic; font-weight: 700; }

/* ════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════ */
.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.faq-side { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 100px; }
.faq-side h2 { margin-top: 6px; }
.faq-side p { font-size: 16px; max-width: 380px; margin-top: 4px; }
.faq-side-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.faq-list { padding: 8px 24px; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  letter-spacing: -0.01em;
}
.faq-plus {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  display: grid; place-items: center;
  color: var(--text-dim);
  transition: transform .25s ease, background .2s ease, color .2s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-plus {
  background: var(--accent);
  color: var(--accent-deep);
  transform: rotate(180deg);
}
.faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a { overflow: hidden; }
.faq-a p {
  padding: 0 0 22px;
  font-size: 14.5px;
  color: var(--text-soft);
  max-width: 580px;
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════
   OFFERS
═══════════════════════════════════════════════════════ */
.offers-card {
  position: relative;
  border-radius: var(--radius-xl);
  background: var(--surface);
  padding: 60px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(194,186,244,0.16);
}
.offers-card.offers-card-center {
  display: block;
  padding: 80px 60px;
  text-align: center;
}
.offers-card-center .offers-glow {
  right: auto; left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.offers-card-center .offers-grid {
  mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, black, transparent 70%);
}
.offers-copy-center {
  align-items: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.offers-copy-center .offers-counter { margin-left: auto; margin-right: auto; }
.offers-copy-center .offers-ctas { justify-content: center; }
.offers-copy-center .offers-fineprint { justify-content: center; }
.offers-copy-center p { margin-left: auto; margin-right: auto; }
.offers-bg { position: absolute; inset: 0; pointer-events: none; }
.offers-glow {
  position: absolute;
  width: 700px; height: 700px;
  right: -200px; top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(194,186,244,0.18), transparent 60%);
  filter: blur(20px);
}
.offers-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(194,186,244,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(194,186,244,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 60% 60% at 30% 50%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 30% 50%, black, transparent 70%);
}
.offers-copy { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 18px; }
.offers-copy h2 { font-size: clamp(36px, 4vw, 56px); }
.offers-copy p { font-size: 16px; max-width: 480px; }
.offers-counter {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 380px;
  gap: 10px;
  margin-top: 8px;
}
.offers-cell {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px 6px;
  text-align: center;
}
.offers-cell-v {
  font-family: 'Roboto Mono', monospace;
  font-size: 28px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.offers-cell-l {
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.offers-ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.offers-fineprint {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--text-dim);
  margin-top: 8px;
}
.offers-fineprint svg { color: #7dd49a; }

.offers-stage {
  position: relative;
  height: 540px;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.offers-phone-wrap {
  transition: transform .2s ease-out;
  filter: drop-shadow(0 30px 60px rgba(46,1,129,0.4));
}
.offers-chip {
  position: absolute;
  bottom: 70px; left: 0px;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px 10px 10px;
  border-radius: 14px;
  background: rgba(24,24,24,0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(194,186,244,0.25);
  box-shadow: 0 18px 36px rgba(0,0,0,0.4);
  font-size: 12px;
  z-index: 4;
}
.offers-chip .chip-ico { color: var(--accent); }

/* ════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 70px 0 40px;
  background: var(--bg-deeper);
  margin-top: 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.15fr 2fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand { display: flex; flex-direction: column; gap: 18px; }
.footer-logo { height: 28px; width: auto; max-width: 200px; opacity: 0.95; align-self: flex-start; }
.footer-blurb { font-size: 14px; color: var(--text-dim); max-width: 360px; }
.footer-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-dim);
  margin-top: 6px;
}
.footer-cols { display: grid; grid-template-columns: repeat(3, auto); gap: 56px; justify-content: end; justify-items: end; text-align: right; }
.footer-cols > div { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.footer-h {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 6px;
}
.footer-cols a {
  font-size: 13.5px;
  color: var(--text-dim);
  transition: color .15s ease;
  display: inline-flex; align-items: center; gap: 6px;
}
.footer-cols a:hover { color: var(--text); }
.footer-tag {
  font-size: 10px;
  background: rgba(194,186,244,0.16);
  color: var(--accent);
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 600;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-meta { font-size: 12.5px; color: var(--text-dim); display: flex; gap: 8px; align-items: center; }
.footer-sep { opacity: 0.5; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: grid; place-items: center;
  color: var(--text-dim);
  transition: color .15s, background .15s, border-color .15s;
}
.footer-social a:hover { color: var(--text); background: rgba(194,186,244,0.1); border-color: rgba(194,186,244,0.2); }
.footer-region {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--text-dim);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

/* ════════════════════════════════════════════════════════
   HIGHLIGHTS
═══════════════════════════════════════════════════════ */
.highlights { padding: 40px 0 80px; }
.hl-layout {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.hl-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.hl-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 28px;
  border-radius: 24px;
  min-height: 420px;
}
.hl-ico {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(194,186,244,0.12);
  color: var(--accent);
  display: grid; place-items: center;
  border: 1px solid rgba(194,186,244,0.18);
}
.hl-ico svg { display: block; }
.hl-text {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  text-wrap: balance;
}
.hl-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(194,186,244,0.08), rgba(24,24,24,0.6));
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 420px;
}
.hl-image-glow {
  position: absolute;
  width: 80%; height: 60%;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center bottom, rgba(194,186,244,0.32), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}
.hl-image {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 90%;
  max-height: 95%;
  object-fit: contain;
}
@media (max-width: 1100px) {
  .hl-layout { grid-template-columns: 1fr; }
  .hl-image-wrap { min-height: 360px; }
}
@media (max-width: 700px) {
  .hl-cards { grid-template-columns: 1fr; }
  .hl-card { min-height: 220px; }
}
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stage { height: 560px; margin: 0 auto; width: 100%; max-width: 600px; }
  .feat-grid { grid-template-columns: 1fr; }
  .aud-grid { grid-template-columns: 1fr; }
  .pri-layout { grid-template-columns: 1fr; gap: 40px; }
  .pri-cards { grid-template-columns: 1fr; }
  .srv-layout { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-side { position: static; }
  .offers-card { grid-template-columns: 1fr; padding: 40px; }
  .offers-stage { height: 460px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-signin { display: none; }
  .pri-grid { grid-template-columns: 1fr; }
  .pri-row { grid-template-columns: 1fr auto; }
  .pri-row-save { grid-column: 1 / -1; justify-self: start; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; justify-content: start; justify-items: start; text-align: left; }
  .footer-cols > div { align-items: flex-start; }
  .section { padding: 80px 0; }
  .hero { padding: 40px 0; }
  .srv-row { grid-template-columns: 28px 1fr 20px; }
}


/* ════════════════════════════════════════════════════════
   PRICING PAGE HERO
═══════════════════════════════════════════════════════ */
.pricing-hero {
  padding: 180px 0 60px;
  position: relative;
  overflow: hidden;
}
.pricing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(194, 186, 244, 0.18), transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(46, 1, 129, 0.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.pricing-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  position: relative;
  z-index: 1;
}
.pricing-hero h1 {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0;
}
.pricing-hero-accent {
  background: linear-gradient(120deg, var(--accent), #e9e5ff 60%, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pricing-hero-sub {
  max-width: 620px;
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.6;
  text-wrap: pretty;
}
.pricing-hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
}
.pricing-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 500;
}
.pricing-hero-badge svg {
  color: var(--accent);
}

/* On Pricing.html the Pricing section comes right after the hero —
   tighten its top padding. */
.pricing-hero + .section.pricing { padding-top: 40px; }

/* When Pricing is the first section on a page, give it room below the fixed nav */
main > .section.pricing:first-child { padding-top: 160px; }

@media (max-width: 720px) {
  .pricing-hero { padding: 130px 0 40px; }
}


/* ════════════════════════════════════════════════════════
   DOWNLOAD PAGE
   ════════════════════════════════════════════════════════ */
.dl-hero { padding: 160px 0 80px; }
.dl-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.dl-hero-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}
.dl-hero-stage-glow {
  position: absolute;
  inset: 8% 8% 14% 8%;
  background: radial-gradient(closest-side, rgba(194,186,244,0.35), rgba(194,186,244,0.06) 55%, transparent 75%);
  filter: blur(20px);
  z-index: 0;
}
.dl-hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 540px;
  height: auto;
  filter: drop-shadow(0 30px 80px rgba(0,0,0,0.5));
}
.dl-hero-copy { display: flex; flex-direction: column; gap: 22px; }
.dl-hero-copy h1 { font-size: clamp(40px, 5.4vw, 64px); line-height: 1.02; letter-spacing: -0.02em; }
.dl-hero-sub { font-size: 17px; color: var(--text-soft); max-width: 480px; }

.dl-hero-bullets {
  list-style: none;
  margin: 4px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dl-hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.dl-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }
.dl-store-btn {
  height: 56px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 14px;
  font-size: 15px;
}
.dl-store-btn svg { flex-shrink: 0; }
.dl-store-btn span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  text-align: left;
}
.dl-store-btn span i {
  font-style: normal;
  font-size: 10.5px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.78;
}
.dl-store-btn span b { font-weight: 600; font-size: 15px; }

.dl-hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-dim);
  margin-top: 6px;
}
.dl-hero-meta svg { color: var(--accent); }

/* Intro */
.dl-intro { padding: 60px 0 30px; }

/* Steps */
.dl-steps { padding-top: 40px; }
.dl-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dl-step-card {
  padding: 30px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
}
.dl-step-num {
  font-family: 'Roboto Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.08em;
}
.dl-step-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(194,186,244,0.12);
  border: 1px solid rgba(194,186,244,0.2);
  color: var(--accent);
  display: grid; place-items: center;
}
.dl-step-title {
  font-size: 19px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}
.dl-step-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft);
}
.dl-steps-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .dl-hero { padding: 130px 0 40px; }
  .dl-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .dl-hero-stage { max-width: 380px; margin: 0 auto; }
  .dl-steps-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════
   SUPPORT PAGE
   ════════════════════════════════════════════════════════ */
.sup-hero { padding: 160px 0 60px; }
.sup-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}
.sup-hero-inner h1 { font-size: clamp(40px, 5vw, 60px); line-height: 1.04; letter-spacing: -0.02em; }
.sup-hero-sub { font-size: 17px; color: var(--text-soft); max-width: 580px; }
.sup-hero-stats {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.sup-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 26px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  min-width: 130px;
}
.sup-hero-stat b {
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}
.sup-hero-stat span {
  font-size: 11.5px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* Tickets */
.sup-tickets { padding-top: 60px; }
.ticket-shell {
  display: grid;
  grid-template-columns: 380px 1fr;
  padding: 0;
  overflow: hidden;
  min-height: 640px;
}

/* Left list pane */
.ticket-list-pane {
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.ticket-list-head {
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ticket-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.03);
  padding: 4px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
}
.ticket-tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: 0;
  border-radius: 7px;
  padding: 7px 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-soft);
  cursor: pointer;
  font-family: inherit;
  transition: background .15s, color .15s;
}
.ticket-tab:hover { color: var(--text); }
.ticket-tab.active {
  background: rgba(194,186,244,0.14);
  color: var(--accent);
}
.ticket-tab-count {
  font-size: 10.5px;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--text-dim);
}
.ticket-tab.active .ticket-tab-count { background: rgba(194,186,244,0.22); color: var(--accent); }

.ticket-new { align-self: stretch; justify-content: center; }

.ticket-list {
  flex: 1;
  overflow-y: auto;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ticket-row {
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 14px 14px 12px;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background .15s, border-color .15s;
}
.ticket-row:hover { background: rgba(255,255,255,0.025); }
.ticket-row.active {
  background: rgba(194,186,244,0.06);
  border-color: rgba(194,186,244,0.18);
}
.ticket-row-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.ticket-row-id {
  font-family: 'Roboto Mono', monospace;
  font-size: 10.5px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

.ticket-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid;
}
.ticket-status-dot { width: 5px; height: 5px; border-radius: 50%; }
.ticket-status-open {
  background: rgba(194,186,244,0.12);
  color: var(--accent);
  border-color: rgba(194,186,244,0.22);
}
.ticket-status-open .ticket-status-dot { background: var(--accent); box-shadow: 0 0 6px var(--accent); }
.ticket-status-pending {
  background: rgba(240,184,133,0.12);
  color: #f0b885;
  border-color: rgba(240,184,133,0.22);
}
.ticket-status-pending .ticket-status-dot { background: #f0b885; }
.ticket-status-resolved {
  background: rgba(125,212,154,0.12);
  color: #7dd49a;
  border-color: rgba(125,212,154,0.22);
}
.ticket-status-resolved .ticket-status-dot { background: #7dd49a; }

.ticket-row-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ticket-row-snippet {
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ticket-row-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-size: 11.5px;
  color: var(--text-dim);
}
.ticket-row-agent { color: var(--text-soft); font-weight: 500; }
.ticket-row-sep { opacity: 0.5; }
.ticket-empty {
  padding: 60px 20px;
  text-align: center;
  color: var(--text-dim);
  font-size: 13px;
}

/* Avatar */
.ticket-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 9.5px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.ticket-avatar.sm { width: 26px; height: 26px; font-size: 10px; }

/* Detail pane */
.ticket-detail-pane {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.ticket-detail-head {
  padding: 22px 26px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.ticket-detail-id {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.ticket-detail-num {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.ticket-detail-title {
  font-size: 19px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.3;
  max-width: 540px;
}
.ticket-icon-btn {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--text-soft);
  display: grid; place-items: center;
  cursor: pointer;
}
.ticket-icon-btn:hover { background: rgba(255,255,255,0.08); color: var(--text); }

.ticket-thread {
  flex: 1;
  overflow-y: auto;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.ticket-msg { display: flex; flex-direction: column; gap: 8px; }
.ticket-msg-head { display: flex; align-items: center; gap: 10px; }
.ticket-msg-who {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.ticket-msg-time {
  font-size: 11.5px;
  color: var(--text-dim);
}
.ticket-msg-body {
  margin-left: 36px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.6;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  color: var(--text-soft);
}
.ticket-msg-you .ticket-msg-body {
  background: rgba(194,186,244,0.08);
  border-color: rgba(194,186,244,0.16);
  color: var(--text);
}

/* Reply */
.ticket-reply {
  padding: 16px 22px 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.ticket-reply-input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  transition: border-color .15s;
}
.ticket-reply-input:focus-within { border-color: rgba(194,186,244,0.3); }
.ticket-reply-input svg { color: var(--text-dim); flex-shrink: 0; }
.ticket-reply-input input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  padding: 8px 0;
}
.ticket-reply-input input::placeholder { color: var(--text-dim); }

.ticket-empty-detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px;
  color: var(--text-dim);
  text-align: center;
}
.ticket-empty-detail svg { color: var(--text-dim); margin-bottom: 4px; }
.ticket-empty-t { font-size: 16px; font-weight: 500; color: var(--text); }
.ticket-empty-s { font-size: 13.5px; max-width: 320px; line-height: 1.5; }
.ticket-empty-detail .btn { margin-top: 12px; }

.sup-cta-row {
  margin-top: 24px;
  padding: 18px 22px;
  border-radius: 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-soft);
}

@media (max-width: 900px) {
  .ticket-shell { grid-template-columns: 1fr; min-height: auto; }
  .ticket-list-pane { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.06); max-height: 420px; }
  .ticket-thread { padding: 18px; }
  .ticket-detail-head { padding: 18px; }
  .sup-hero { padding: 130px 0 40px; }
}


/* Download store image buttons */
.dl-store-img-btn {
  display: inline-block;
  border-radius: 12px;
  overflow: hidden;
  transition: transform .15s ease, opacity .15s;
  line-height: 0;
}
.dl-store-img-btn img {
  display: block;
  height: 56px;
  width: auto;
}
.dl-store-img-btn:hover { transform: translateY(-2px); opacity: 0.92; }
@media (max-width: 720px) {
  .dl-store-img-btn img { height: 48px; }
}


/* ════════════════════════════════════════════════════════
   SUPPORT (simple)
   ════════════════════════════════════════════════════════ */
.sup-hero-simple { padding: 160px 0 60px; }
.sup-hero-simple-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}
.sup-hero-simple-inner h1 { font-size: clamp(40px, 5vw, 60px); line-height: 1.04; letter-spacing: -0.02em; }
.sup-hero-cta { margin-top: 8px; }

/* ════════════════════════════════════════════════════════
   LEGAL PAGES
   ════════════════════════════════════════════════════════ */
.legal-hero { padding: 160px 0 30px; }
.legal-hero-inner {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.legal-hero-inner h1 {
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.legal-content { padding: 30px 0 100px; }
.legal-content-inner {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.legal-section { display: flex; flex-direction: column; gap: 12px; }
.legal-section h2 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
}
.legal-section p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
}

/* ════════════════════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════════════════════ */
.about-hero { padding: 160px 0 60px; }
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-hero-copy { display: flex; flex-direction: column; gap: 22px; }
.about-hero-copy h1 {
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.about-hero-sub {
  font-size: 17px;
  color: var(--text-soft);
  max-width: 520px;
}
.about-hero-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}
.about-hero-glow {
  position: absolute;
  inset: 8% 8% 14% 8%;
  background: radial-gradient(closest-side, rgba(194,186,244,0.32), rgba(194,186,244,0.06) 55%, transparent 75%);
  filter: blur(18px);
  z-index: 0;
}
.about-hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 30px 80px rgba(0,0,0,0.5));
}

.about-sections { padding: 60px 0 120px; }
.about-sections-inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.about-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.about-row:first-child { border-top: 0; padding-top: 0; }
.about-row-eyebrow { padding-top: 6px; }
.about-row-body { display: flex; flex-direction: column; gap: 18px; }
.about-row-body h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text);
}
.about-row-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 720px;
}

@media (max-width: 900px) {
  .about-hero { padding: 130px 0 30px; }
  .about-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-hero-stage { max-width: 380px; margin: 0 auto; }
  .about-row { grid-template-columns: 1fr; gap: 18px; }
  .legal-hero { padding: 130px 0 20px; }
}

.dl-apk-row { margin-top: 4px; }
.dl-apk-btn { border-radius: 999px; height: 48px; font-size: 14px; }
