:root {
  --bg: #0c1222;
  --bg-elevated: #111a2d;
  --card: rgba(30, 41, 59, 0.8);
  --card-border: rgba(255, 255, 255, 0.075);
  --text: #f1f5f9;
  --muted: #94a3b8;
  --faint: #64748b;
  --accent: #0ea5e9;
  --accent-bright: #38bdf8;
  --green: #22c55e;
  --shell: min(1160px, calc(100vw - 48px));
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; overflow-x: clip; }
section[id] { scroll-margin-top: 104px; }
body {
  margin: 0;
  min-width: 320px;
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}
.noscript { padding: 12px 18px; position: fixed; z-index: 100; right: 16px; bottom: 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; color: #d8dae0; background: #12151b; font-size: 12px; }
.skip-link { position: fixed; left: 18px; top: 18px; z-index: 1000; padding: 11px 15px; border-radius: 10px; color: #06111c; background: #e9f6ff; font-size: 13px; font-weight: 700; transform: translateY(-160%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); outline: 3px solid rgba(125,211,252,.5); outline-offset: 3px; }
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; font: inherit; }
button:not(:disabled) { cursor: pointer; }
svg { display: block; }
::selection { color: #fff; background: rgba(14, 165, 233, .55); }
:focus-visible { outline: 2px solid var(--accent-bright); outline-offset: 4px; }

.section-shell { width: var(--shell); margin-inline: auto; }
.page-glow { position: fixed; z-index: -2; border-radius: 50%; filter: blur(120px); pointer-events: none; }
.page-glow--one { width: 540px; height: 540px; background: rgba(14, 165, 233, .14); top: 90px; right: -240px; }
.page-glow--two { width: 420px; height: 420px; background: rgba(56, 189, 248, .08); top: 650px; left: -260px; }

.site-header {
  width: min(1184px, calc(100vw - 32px));
  height: 68px;
  padding: 0 14px 0 18px;
  margin: 14px auto 0;
  position: sticky;
  top: 12px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background: rgba(12, 18, 34, .72);
  box-shadow: 0 12px 42px rgba(0,0,0,.22);
  backdrop-filter: blur(24px) saturate(140%);
  transition: background .3s ease, border-color .3s ease;
}
.site-header.is-scrolled { background: rgba(12,18,34,.92); border-color: rgba(255,255,255,.12); box-shadow: 0 18px 55px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.035); }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: .28em;
  font-size: 14px;
  line-height: 1;
  font-weight: 720;
  letter-spacing: -.028em;
  font-kerning: normal;
  font-optical-sizing: auto;
  font-feature-settings: "kern" 1, "liga" 1;
}
.brand-mark { width: 36px; height: 36px; display: inline-grid; place-items: center; background: transparent; }
.brand-mark img { width: 100%; height: 100%; display: block; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 34px; margin-left: 68px; }
.desktop-nav a, .login-link { color: #a4a8b1; font-size: 13px; transition: color .2s ease; }
.desktop-nav a:hover, .login-link:hover { color: #fff; }
.header-actions { display: flex; align-items: center; gap: 20px; }
.menu-button, .mobile-menu { display: none; }

.button { min-height: 50px; padding: 0 22px; border-radius: 13px; display: inline-flex; align-items: center; justify-content: center; gap: 11px; font-size: 14px; font-weight: 650; letter-spacing: -.01em; transition: transform .2s var(--ease), box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s ease; }
.button:hover svg { transform: translateX(2px); }
.button--small { min-height: 40px; padding: 0 17px; border-radius: 10px; font-size: 13px; }
.button--light { color: #111217; background: #f4f4f6; box-shadow: inset 0 1px 0 #fff, 0 7px 20px rgba(255,255,255,.09); }
.button--light:hover { background: #fff; box-shadow: inset 0 1px 0 #fff, 0 9px 24px rgba(255,255,255,.14); }
.button--primary { color: #fff; background: linear-gradient(180deg, #38bdf8, #0ea5e9); border: 1px solid rgba(255,255,255,.15); box-shadow: inset 0 1px 0 rgba(255,255,255,.24), 0 13px 34px rgba(14,165,233,.27); }
.button--primary:hover { box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 16px 42px rgba(14,165,233,.38); }
.button--full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: #b3b7c1; font-size: 14px; font-weight: 550; }
.text-link span { color: #e2e3e8; transition: transform .2s ease; }
.text-link:hover span { transform: translateY(2px); }

.hero { min-height: 720px; padding: 92px 0 80px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 48px; }
.eyebrow { width: fit-content; display: flex; align-items: center; gap: 9px; color: #bbbfc8; font-size: 12px; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 16px var(--green); }
.service-status { width: fit-content; min-height: 44px; padding: 6px 11px 6px 8px; position: relative; overflow: hidden; display: inline-flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,.1); border-radius: 999px; color: #e7edf4; background: linear-gradient(180deg, rgba(30,41,59,.8), rgba(17,26,45,.74)); box-shadow: inset 0 1px 0 rgba(255,255,255,.055), 0 12px 30px rgba(0,0,0,.18); backdrop-filter: blur(18px); transition: border-color .35s ease, background .35s ease; }
.service-status::after { content: ""; width: 80px; height: 120%; position: absolute; top: -10%; left: -100px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent); transform: skewX(-18deg); animation: statusSweep 6s ease-in-out infinite; pointer-events: none; }
.service-status__signal { width: 30px; height: 30px; position: relative; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: rgba(148,163,184,.08); }
.service-status__signal::before, .service-status__signal::after { content: ""; position: absolute; border-radius: 50%; }
.service-status__signal::before { inset: 6px; border: 1px solid rgba(148,163,184,.3); }
.service-status__signal::after { inset: 11px; background: #94a3b8; box-shadow: 0 0 12px rgba(148,163,184,.5); }
.service-status__signal i { position: absolute; inset: 3px; border: 1px solid rgba(148,163,184,.16); border-radius: inherit; animation: statusPulse 2.2s ease-out infinite; }
.service-status__copy { min-width: 132px; display: flex; flex-direction: column; gap: 1px; line-height: 1.2; }
.service-status__copy strong { font-size: 12px; font-weight: 650; letter-spacing: .01em; }
.service-status__copy small { color: #8290a5; font-size: 10px; letter-spacing: .02em; }
.service-status > svg { width: 17px; height: 17px; margin-left: 1px; fill: none; stroke: #657287; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; opacity: 0; transform: scale(.75); transition: opacity .3s ease, transform .3s var(--ease); }
.service-status.is-available { border-color: rgba(34,197,94,.24); background: linear-gradient(180deg, rgba(23,48,51,.83), rgba(15,34,43,.76)); }
.service-status.is-available .service-status__signal { background: rgba(34,197,94,.09); }
.service-status.is-available .service-status__signal::before { border-color: rgba(34,197,94,.35); }
.service-status.is-available .service-status__signal::after { background: var(--green); box-shadow: 0 0 14px rgba(34,197,94,.72); }
.service-status.is-available .service-status__signal i { border-color: rgba(34,197,94,.24); }
.service-status.is-available > svg { stroke: #55d982; opacity: 1; transform: scale(1); }
.service-status.is-unavailable { border-color: rgba(148,163,184,.18); }
.service-status.is-unavailable .service-status__signal i { animation: none; }
.hero h1 { margin: 22px 0 24px; font-size: clamp(52px, 5vw, 68px); line-height: .98; letter-spacing: -.061em; font-weight: 650; }
.hero h1 span { color: #8d929d; }
.hero-lead { max-width: 480px; margin: 0; color: #a3a7b0; font-size: 18px; line-height: 1.65; letter-spacing: -.018em; }
.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 25px; }
.hero-note { margin-top: 30px; display: flex; align-items: center; gap: 13px; color: #7e8490; font-size: 14px; }
.hero-note strong { color: #9da1aa; font-weight: 600; }
.avatar-stack { display: flex; padding-left: 7px; }
.avatar-stack i { width: 25px; height: 25px; margin-left: -7px; display: grid; place-items: center; border: 2px solid var(--bg); border-radius: 50%; color: #fff; font-size: 9px; font-style: normal; font-weight: 700; background: linear-gradient(135deg, #5c6072, #282a35); }
.avatar-stack i:nth-child(2) { background: linear-gradient(135deg, #7068a4, #343049); }
.avatar-stack i:nth-child(3) { background: linear-gradient(135deg, #81725d, #3b342b); }

.hero-visual { min-height: 560px; position: relative; display: grid; place-items: center; isolation: isolate; }
.orbital-scene { position: absolute; width: 590px; aspect-ratio: 1; border-radius: 50%; }
.scene-glow { position: absolute; inset: 20%; border-radius: 50%; background: radial-gradient(circle, rgba(14,165,233,.32), rgba(14,165,233,.05) 44%, transparent 70%); filter: blur(22px); animation: breathe 5s ease-in-out infinite; }
.orbital-ring { position: absolute; inset: 14%; border: 1px solid rgba(125,211,252,.14); border-radius: 50%; transform: rotateX(67deg) rotateZ(-8deg); }
.orbital-ring--two { inset: 5%; border-color: rgba(255,255,255,.055); transform: rotateX(63deg) rotateZ(52deg); }
.orbital-ring--three { inset: 0; border-style: dashed; border-color: rgba(255,255,255,.04); transform: none; animation: spin 60s linear infinite; }
.orbit-dot { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: #7dd3fc; box-shadow: 0 0 16px #0ea5e9; }
.orbit-dot--one { top: 28%; right: 10%; }
.orbit-dot--two { left: 13%; bottom: 29%; opacity: .5; }
.access-card { width: 315px; min-height: 438px; z-index: 2; padding: 20px; position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 30px; background: linear-gradient(155deg, rgba(30,41,59,.98), rgba(12,18,34,.96)); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 42px 80px rgba(0,0,0,.55), 0 0 80px rgba(14,165,233,.14); transform: perspective(1100px) rotateY(-3deg) rotateX(1deg); }
.access-card::before { content: ""; height: 1px; position: absolute; top: 0; left: 22%; right: 22%; background: linear-gradient(90deg, transparent, rgba(125,211,252,.7), transparent); box-shadow: 0 0 22px rgba(14,165,233,.4); }
.access-card::after { content: ""; width: 220px; height: 220px; position: absolute; z-index: -1; top: -135px; right: -90px; border-radius: 50%; background: rgba(56,189,248,.12); filter: blur(50px); }
.access-card__top { display: flex; align-items: center; justify-content: space-between; }
.mini-brand { display: flex; align-items: center; gap: 7px; color: #b6bac4; font-size: 10px; font-weight: 720; letter-spacing: -.018em; font-kerning: normal; font-feature-settings: "kern" 1, "liga" 1; }
.mini-brand i { width: 20px; height: 20px; position: relative; background: transparent url("luma-logo.png?v=20260803-glossy-tile") center / contain no-repeat; }
.mini-brand i::after { content: none; }
.more-button { border: 0; background: none; color: #626773; font-size: 13px; letter-spacing: 2px; cursor: pointer; }
.connection { padding: 40px 0 31px; display: flex; flex-direction: column; align-items: center; }
.power-button { width: 112px; height: 112px; position: relative; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; color: #fff; background: linear-gradient(145deg, #1e293b, #0c1222); box-shadow: inset 0 0 0 9px rgba(255,255,255,.025), 0 18px 36px rgba(0,0,0,.36); cursor: pointer; transition: transform .3s var(--ease), border-color .3s ease; }
.power-button:hover { transform: scale(1.035); }
.power-button svg { width: 34px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; filter: drop-shadow(0 0 10px rgba(255,255,255,.35)); }
.power-button.is-connected { border-color: rgba(14,165,233,.5); }
.power-glow { position: absolute; inset: -14px; z-index: -1; border-radius: 50%; background: radial-gradient(circle, rgba(14,165,233,.42), transparent 67%); filter: blur(10px); transition: opacity .3s ease; }
.power-button:not(.is-connected) .power-glow { opacity: 0; }
.connection-status { margin-top: 24px; display: flex; align-items: center; gap: 8px; color: #dfe0e5; font-size: 13px; font-weight: 600; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.timer { margin-top: 8px; color: #626772; font-variant-numeric: tabular-nums; font-size: 11px; letter-spacing: .07em; }
.location-card { height: 68px; padding: 0 14px; position: relative; display: flex; align-items: center; border: 1px solid rgba(255,255,255,.08); border-radius: 16px; background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.025)); box-shadow: inset 0 1px 0 rgba(255,255,255,.025); }
.flag { width: 38px; height: 38px; margin-right: 11px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.1); border-radius: 11px; background: rgba(255,255,255,.045); box-shadow: inset 0 1px 0 rgba(255,255,255,.045), 0 7px 16px rgba(0,0,0,.2); }
.flag__image { width: 27px; height: 18px; overflow: hidden; border-radius: 3px; box-shadow: 0 0 0 1px rgba(0,0,0,.18), 0 3px 8px rgba(0,0,0,.2); }
.location-card > span:nth-child(2) { display: flex; flex-direction: column; gap: 3px; }
.location-card small { color: #5f6470; font-size: 9px; }
.location-card strong { font-size: 12px; font-weight: 600; }
.signal { height: 20px; margin-left: auto; display: flex; align-items: end; gap: 2px; }
.signal i { width: 2px; height: 6px; border-radius: 2px; background: var(--green); }
.signal i:nth-child(2) { height: 10px; }
.signal i:nth-child(3) { height: 14px; }
.floating-pill { min-width: 160px; height: 61px; padding: 0 14px; position: absolute; z-index: 3; display: flex; align-items: center; gap: 11px; border: 1px solid rgba(255,255,255,.1); border-radius: 17px; background: rgba(30,41,59,.85); box-shadow: 0 18px 44px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.04); backdrop-filter: blur(18px); }
.floating-pill--speed { left: 0; top: 28%; animation: float 6s ease-in-out infinite; }
.floating-pill--shield { right: -5px; bottom: 24%; animation: float 7s ease-in-out -2s infinite; }
.pill-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: #7dd3fc; background: rgba(14,165,233,.13); }
.pill-icon--green { color: #22c55e; background: rgba(34,197,94,.1); }
.pill-icon svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.floating-pill > span:last-child { display: flex; flex-direction: column; gap: 4px; }
.floating-pill small { color: #636874; font-size: 9px; }
.floating-pill strong { font-size: 11px; font-weight: 600; }

.trust-strip { min-height: 114px; padding: 0 28px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; border-block: 1px solid rgba(255,255,255,.07); }
.trust-strip > div { display: flex; flex-direction: column; align-items: center; gap: 7px; }
.trust-strip > div + div { border-left: 1px solid rgba(255,255,255,.07); }
.trust-strip strong { font-size: 24px; letter-spacing: -.04em; font-weight: 600; }
.trust-strip span { color: #737986; font-size: 12px; text-transform: uppercase; letter-spacing: .07em; }

.section { padding-top: 160px; }
.section-heading { max-width: 630px; }
.eyebrow--muted { color: #747985; }
.section-heading h2 { margin: 18px 0 22px; font-size: clamp(40px, 5vw, 62px); line-height: 1.05; font-weight: 580; letter-spacing: -.055em; }
.section-heading p, .pricing-intro > p { max-width: 580px; margin: 0; color: #9196a1; font-size: 18px; line-height: 1.68; }
.section-heading--center { max-width: none; text-align: center; }
.section-heading--center .eyebrow { margin-inline: auto; }
.feature-intro { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 68px; }
.feature-showcase { min-height: 330px; position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.075); border-radius: 24px; background: #0e182a; isolation: isolate; }
.feature-showcase::before { content: ""; width: 260px; height: 260px; position: absolute; right: 12%; top: 13%; border-radius: 50%; background: rgba(14,165,233,.12); filter: blur(52px); }
.feature-showcase::after { content: "✦"; position: absolute; right: 24px; top: 19px; color: rgba(125,211,252,.42); font-size: 17px; animation: sparklePulse 4s ease-in-out infinite; }
.feature-showcase__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 42px 42px; mask-image: radial-gradient(circle at 58% 52%, black, transparent 74%); }
.feature-globe { width: 168px; aspect-ratio: 1; position: absolute; left: 52%; top: 50%; display: grid; place-items: center; border: 1px solid rgba(125,211,252,.22); border-radius: 50%; background: radial-gradient(circle at 38% 32%, rgba(56,189,248,.2), rgba(14,165,233,.055) 48%, rgba(12,22,39,.9) 72%); box-shadow: inset 0 0 45px rgba(14,165,233,.08), 0 24px 60px rgba(0,0,0,.26); transform: translate(-50%,-50%); }
.feature-globe::before, .feature-globe::after { content: ""; position: absolute; border: 1px solid rgba(125,211,252,.16); border-radius: 50%; }
.feature-globe::before { inset: 18px 52px; }
.feature-globe::after { inset: 52px 18px; }
.feature-globe strong { width: 48px; height: 48px; z-index: 2; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 15px; color: #fff; background: #16243a; box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 12px 30px rgba(0,0,0,.28); font-size: 21px; font-weight: 650; }
.globe-line { position: absolute; border: 1px solid rgba(125,211,252,.12); border-radius: 50%; }
.globe-line--one { inset: -18px 56px; animation: globeTurn 8s linear infinite; }
.globe-line--two { inset: 56px -18px; animation: globeTurn 10s linear reverse infinite; }
.globe-line--three { inset: -9px; border-style: dashed; animation: globeTurn 20s linear infinite; }
.feature-chip { min-height: 58px; padding: 9px 12px; position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,.09); border-radius: 15px; background: rgba(20,32,51,.9); box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 15px 34px rgba(0,0,0,.24); backdrop-filter: blur(16px); }
.feature-chip > span:last-child { display: flex; flex-direction: column; gap: 3px; }
.feature-chip small { color: #697689; font-size: 8px; }
.feature-chip strong { color: #d4dee8; font-size: 10px; font-weight: 600; }
.feature-chip__dot { width: 9px; height: 9px; margin-inline: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 13px rgba(34,197,94,.7); animation: serverPulse 2.5s ease-in-out infinite; }
.feature-chip__icon { width: 34px; height: 34px; display: grid !important; place-items: center; border-radius: 10px; color: #7dd3fc; background: rgba(14,165,233,.1); }
.feature-chip__icon svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.feature-chip--servers { left: 20px; top: 24px; animation: visualFloat 6s ease-in-out infinite; }
.feature-chip--network { right: 18px; bottom: 25px; animation: visualFloat 7s ease-in-out -2s infinite; }
.feature-chip--route { left: 24px; bottom: 35px; animation: visualFloat 6.5s ease-in-out -3.5s infinite; }

.bento-grid { margin-top: 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.bento-card { min-height: 480px; padding: 36px; position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.07); border-radius: 22px; background: rgba(17,26,45,.88); box-shadow: inset 0 1px 0 rgba(255,255,255,.025); }
.bento-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; background: radial-gradient(circle at 76% 106%, rgba(14,165,233,.045), transparent 45%); }
.bento-card--privacy { background: rgba(18,28,47,.92); }
.bento-card--control { background: rgba(15,24,41,.94); }
.bento-card--devices { background: rgba(17,26,43,.95); }
.bento-card--wide { min-height: 405px; grid-column: 1 / -1; display: grid; grid-template-columns: .68fr 1.32fr; }
.card-copy { position: relative; z-index: 3; }
.card-number { display: block; margin-bottom: 36px; color: #525762; font-size: 11px; font-variant-numeric: tabular-nums; letter-spacing: .1em; }
.card-copy h3 { max-width: 420px; margin: 0 0 13px; font-size: 25px; line-height: 1.2; font-weight: 600; letter-spacing: -.028em; }
.card-copy p { max-width: 420px; margin: 0; color: #9099a8; font-size: 16px; font-weight: 400; line-height: 1.65; }
.speed-viz { min-height: 300px; position: absolute; inset: auto 0 0 36%; }
.speed-viz::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(90deg, transparent, black 30%); }
.speed-viz svg { width: 100%; height: 72%; position: absolute; bottom: 0; overflow: visible; }
.chart-area { fill: url(#area-gradient); }
.chart-line { fill: none; stroke: url(#line-gradient); stroke-width: 2; vector-effect: non-scaling-stroke; filter: drop-shadow(0 0 7px rgba(14,165,233,.5)); stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 1.7s var(--ease); }
.is-visible .chart-line { stroke-dashoffset: 0; }
.speed-label { position: absolute; top: 26px; right: 36px; z-index: 2; display: flex; flex-direction: column; align-items: end; }
.speed-label span { color: #656a75; font-size: 10px; }
.speed-label strong { margin-top: 3px; font-size: 21px; font-weight: 550; }
.speed-label small { color: #6c717c; font-size: 10px; }
.chart-speed { position: absolute; right: 10%; bottom: 31%; color: #dedde7; font-size: 12px; }
.chart-speed small { color: #737783; font-size: 9px; }
.privacy-viz { height: 225px; position: absolute; left: 28px; right: 28px; bottom: 24px; overflow: hidden; display: grid; place-items: center; border-radius: 18px; background: #0f182a; isolation: isolate; }
.privacy-viz::before { content: ""; width: 145px; aspect-ratio: 1; position: absolute; border-radius: 50%; background: rgba(14,165,233,.13); filter: blur(42px); }
.privacy-viz::after { content: "ENCRYPTED"; position: absolute; left: 16px; bottom: 13px; color: rgba(148,163,184,.3); font-family: ui-monospace, "SFMono-Regular", Consolas, monospace; font-size: 8px; letter-spacing: .12em; }
.privacy-ring { position: absolute; border: 1px solid rgba(125,211,252,.15); border-radius: 50%; }
.ring-a { width: 145px; aspect-ratio: 1; animation: privacyWave 4.2s ease-in-out infinite; }
.ring-b { width: 215px; aspect-ratio: 1; animation: privacyWave 4.2s ease-in-out -2.1s infinite; }
.privacy-lock { width: 84px; height: 84px; z-index: 2; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.1); border-radius: 24px; background: #162238; box-shadow: rgba(0,0,0,.22) 3px 5px 30px; transform: rotate(-3deg); animation: lockFloat 5s ease-in-out infinite; }
.privacy-lock svg { width: 35px; fill: none; stroke: #7dd3fc; stroke-width: 1.4; stroke-linecap: round; }
.control-viz { height: 225px; position: absolute; left: 28px; right: 28px; bottom: 24px; overflow: hidden; display: grid; place-items: center; border-radius: 18px; background: #0c1627; }
.subscription-panel { width: calc(100% - 32px); padding: 18px; border: 1px solid rgba(255,255,255,.075); border-radius: 15px; background: #131f33; box-shadow: rgba(0,0,0,.22) 3px 5px 30px; }
.subscription-head, .subscription-usage { display: flex; align-items: center; justify-content: space-between; }
.subscription-head { padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,.06); }
.subscription-head > span { display: flex; align-items: center; gap: 8px; color: #dce6f1; font-size: 11px; font-weight: 600; }
.subscription-head > span i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px rgba(34,197,94,.65); animation: subscriptionStatus 2.4s ease-in-out infinite; }
.subscription-head strong { color: #7dd3fc; font-size: 11px; font-weight: 600; }
.subscription-usage { margin-top: 14px; color: #818c9d; font-size: 10px; }
.subscription-usage strong { color: #c7d2df; font-weight: 600; }
.subscription-progress { height: 5px; margin-top: 9px; overflow: hidden; border-radius: 999px; background: rgba(148,163,184,.1); }
.subscription-progress i { width: 29%; height: 100%; display: block; border-radius: inherit; background: var(--accent); box-shadow: 0 0 12px rgba(14,165,233,.42); animation: subscriptionProgress 4.8s ease-in-out infinite; }
.subscription-stats { margin-top: 15px; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.subscription-stats > span { padding: 10px 11px; display: flex; flex-direction: column; gap: 3px; border-radius: 10px; background: rgba(255,255,255,.035); }
.subscription-stats small { color: #687588; font-size: 8px; }
.subscription-stats strong { color: #bac5d2; font-size: 10px; font-weight: 600; }
.bento-card--devices { min-height: 420px; }
.platforms { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 8px; }
.platforms span { padding: 7px 10px; color: #777c87; border: 1px solid rgba(255,255,255,.06); border-radius: 8px; font-size: 10px; }
.device-panel { width: 48%; position: absolute; top: 28px; right: 28px; bottom: 28px; padding: 18px; display: flex; flex-direction: column; justify-content: center; border-radius: 18px; background: #0f182a; }
.device-panel__head { padding: 0 3px 14px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.06); }
.device-panel__head span { color: #dce5ef; font-size: 11px; font-weight: 600; }
.device-panel__head small { color: #687588; font-size: 8px; }
.device-list { margin-top: 9px; display: grid; gap: 6px; }
.device-row { min-height: 66px; padding: 9px 10px; position: relative; overflow: hidden; isolation: isolate; display: grid; grid-template-columns: 38px 1fr 24px; align-items: center; gap: 10px; border: 1px solid transparent; border-radius: 12px; opacity: .7; animation: deviceRowActive 6s ease-in-out infinite; }
.device-row::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(14,165,233,.055); opacity: 0; animation: deviceRowSurface 6s ease-in-out infinite; }
.device-row--computer, .device-row--computer::before { animation-delay: -4s; }
.device-row--tv, .device-row--tv::before { animation-delay: -2s; }
.device-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; color: #7dd3fc; background: rgba(14,165,233,.09); }
.device-icon svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.device-row > span:nth-child(2) { display: flex; flex-direction: column; gap: 3px; }
.device-row strong { color: #c7d2df; font-size: 10px; font-weight: 600; }
.device-row small { color: #657286; font-size: 8px; }
.device-check { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; color: #55d982; background: rgba(34,197,94,.1); animation: deviceCheck 6s ease-in-out infinite; }
.device-row--computer .device-check { animation-delay: -4s; }
.device-row--tv .device-check { animation-delay: -2s; }
.device-check svg { width: 13px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.steps-section { padding-bottom: 30px; }
.steps-grid { margin-top: 70px; display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.step { min-height: 270px; padding: 28px; border: 1px solid rgba(255,255,255,.07); border-radius: 22px; background: rgba(30,41,59,.48); }
.step-icon { height: 125px; position: relative; display: grid; place-items: center; }
.step-icon::before { content: ""; width: 80px; aspect-ratio: 1; position: absolute; border-radius: 27px; background: linear-gradient(145deg, rgba(14,165,233,.16), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.07); transform: rotate(8deg); }
.step-icon span { position: absolute; top: 0; left: 0; color: #555a65; font-size: 10px; letter-spacing: .08em; }
.step-icon svg { width: 31px; z-index: 1; fill: none; stroke: #7dd3fc; stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; }
.step h3 { margin: 24px 0 10px; font-size: 20px; font-weight: 580; letter-spacing: -.02em; }
.step p { margin: 0; color: #828894; font-size: 15px; line-height: 1.6; }

.pricing-section { min-height: 720px; scroll-margin-top: 88px; }
.pricing-section--first { padding-top: 88px; }
.pricing-intro { max-width: 700px; margin-inline: auto; text-align: center; }
.pricing-intro .eyebrow { margin-inline: auto; }
.pricing-intro h2 { margin: 15px 0 16px; font-size: clamp(40px, 4.5vw, 56px); line-height: 1.04; font-weight: 590; letter-spacing: -.05em; }
.pricing-intro > p { max-width: 620px; margin-inline: auto; font-size: 17px; line-height: 1.58; }
.test-plan-card[hidden] { display: none; }
.test-plan-card { margin: 0 0 16px; padding: 22px 24px; position: relative; overflow: hidden; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 24px; border: 1px solid rgba(56,189,248,.3); border-radius: 22px; background: linear-gradient(125deg, rgba(15,48,72,.96), rgba(12,18,34,.98) 62%); box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 20px 55px rgba(0,0,0,.22); }
.test-plan-card::after { content: ""; width: 230px; aspect-ratio: 1; position: absolute; top: -160px; right: 120px; border-radius: 50%; background: rgba(14,165,233,.27); filter: blur(55px); pointer-events: none; }
.test-plan-card__copy, .test-plan-card__action { min-width: 0; position: relative; z-index: 1; }
.test-plan-card__copy { display: flex; align-items: center; gap: 21px; }
.test-plan-card__badge { flex: 0 0 auto; padding: 8px 11px; display: inline-flex; align-items: center; gap: 7px; color: #9de5ff; border: 1px solid rgba(56,189,248,.25); border-radius: 999px; background: rgba(14,165,233,.1); font-size: 10px; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }
.test-plan-card__badge i { width: 6px; height: 6px; border-radius: 50%; background: #55d797; box-shadow: 0 0 10px rgba(85,215,151,.75); }
.test-plan-card h3 { margin: 0 0 5px; color: #f1f7fb; font-size: 20px; font-weight: 620; letter-spacing: -.025em; }
.test-plan-card p { margin: 0; color: #8d9aaa; font-size: 13px; line-height: 1.5; }
.test-plan-card__action { display: flex; align-items: center; gap: 18px; }
.test-plan-card__price { display: flex; flex-direction: column; align-items: flex-end; white-space: nowrap; }
.test-plan-card__price strong { color: #fff; font-size: 24px; font-weight: 620; letter-spacing: -.04em; }
.test-plan-card__price small { color: #7f8b9a; font-size: 10px; }
.test-plan-card .button { min-height: 46px; padding-inline: 20px; white-space: nowrap; }
.pricing-grid { margin-top: 54px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; gap: 16px; scroll-margin-top: 92px; }
.price-card { min-height: 520px; padding: 30px; position: relative; overflow: hidden; display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,.09); border-radius: 26px; background: linear-gradient(145deg, rgba(30,41,59,.92), rgba(12,18,34,.98)); box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 25px 65px rgba(0,0,0,.22); }
.price-card--featured { border-color: rgba(14,165,233,.48); background: linear-gradient(145deg, rgba(20,58,78,.98), rgba(12,18,34,.99)); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 30px 75px rgba(0,0,0,.3), 0 0 0 1px rgba(14,165,233,.1); transform: translateY(-10px); }
.price-card__shine { width: 300px; height: 300px; position: absolute; top: -190px; right: -80px; border-radius: 50%; background: rgba(14,165,233,.32); filter: blur(70px); }
.price-card__header { position: relative; display: flex; justify-content: space-between; align-items: center; color: #d5d6db; font-size: 14px; font-weight: 650; letter-spacing: .06em; }
.popular-tag { padding: 7px 10px; color: #7dd3fc; border: 1px solid rgba(14,165,233,.24); border-radius: 20px; background: rgba(14,165,233,.11); font-size: 9px; letter-spacing: .03em; }
.plan-caption { color: #676c77; font-size: 9px; letter-spacing: .03em; }
.price { margin-top: 54px; display: flex; align-items: flex-start; white-space: nowrap; }
.price > span { margin-top: 9px; color: #858995; font-size: 17px; }
.price strong { margin-left: 6px; font-size: clamp(58px, 5vw, 70px); line-height: .9; font-weight: 560; letter-spacing: -.075em; }
.price small { margin: 38px 0 0 9px; color: #737884; font-size: 10px; }
.price-card .annual-price { margin: 20px 0 0; color: #7d8390; font-size: 13px; }
.annual-price strong { color: #9b9faa; font-weight: 560; }
.plan-features { margin: 30px 0 32px; padding: 24px 0 0; display: grid; gap: 14px; border-top: 1px solid rgba(255,255,255,.065); list-style: none; color: #8d939f; font-size: 14px; }
.plan-features li { position: relative; padding-left: 17px; }
.plan-features li::before { content: ""; width: 5px; height: 5px; position: absolute; top: .48em; left: 0; border-radius: 50%; background: #0ea5e9; box-shadow: 0 0 10px rgba(14,165,233,.55); }
.plan-features strong { color: #c7c9d0; font-weight: 570; }
.price-card .button { min-height: 49px; margin-top: auto; }
.button--secondary { color: #d5d7dd; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.045); box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.button--secondary:hover { color: #fff; border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.075); transform: translateY(-1px); }
.checkout { margin-top: 34px; overflow-anchor: none; scroll-margin-top: 92px; }
.checkout__steps { width: min(760px,100%); margin: 0 auto 24px; display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; gap: 12px; }
.checkout__steps span { display: inline-flex; align-items: center; gap: 8px; color: #7d8796; font-size: 12px; font-weight: 650; }
.checkout__steps span i { width: 25px; height: 25px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; color: #747d8b; background: rgba(255,255,255,.035); font-style: normal; font-size: 10px; }
.checkout__steps b { height: 1px; background: rgba(255,255,255,.08); }
.checkout__steps span.is-done, .checkout__steps span.is-active { color: #dce8f2; }
.checkout__steps span.is-done i { color: #7ee5ad; border-color: rgba(34,197,94,.24); background: rgba(34,197,94,.1); }
.checkout__steps span.is-active i { color: #fff; border-color: rgba(56,189,248,.45); background: rgba(14,165,233,.22); box-shadow: 0 0 18px rgba(14,165,233,.16); }
.checkout__viewport { width: 100%; min-height: 560px; overflow: hidden; overflow: clip; border-radius: 28px; transition: height .46s var(--ease); }
.checkout__track { width: 100%; display: flex; align-items: flex-start; transform: translateX(0); transition: transform .52s cubic-bezier(.22,.8,.24,1); will-change: transform; }
.checkout[data-checkout-step="2"] .checkout__track { transform: translateX(-100%); }
.checkout[data-checkout-step="3"] .checkout__track { transform: translateX(-200%); }
.checkout__slide { min-width: 0; flex: 0 0 100%; }
.checkout__slide--plans { padding: 2px 0 8px; }
.checkout__slide--plans .pricing-grid { margin-top: 0; }
.checkout__slide--form { padding: 42px max(28px, calc((100% - 680px)/2)); border: 1px solid rgba(255,255,255,.11); border-radius: 28px; background: linear-gradient(145deg, rgba(25,37,59,.97), rgba(9,15,28,.985)); box-shadow: 0 28px 75px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.055); }
.checkout__eyebrow { margin: 0 0 10px; color: #55c7f5; font-size: 12px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.checkout__slide--form h2 { margin: 0; font-size: clamp(30px, 5vw, 43px); line-height: 1.08; font-weight: 590; letter-spacing: -.045em; }
.checkout__lead { margin: 13px 0 25px; color: #929baa; font-size: 16px; line-height: 1.6; }
.checkout__periods { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.checkout-option { min-height: 86px; padding: 15px 16px; position: relative; display: flex; align-items: center; justify-content: space-between; gap: 12px; border: 1px solid rgba(255,255,255,.085); border-radius: 16px; background: rgba(255,255,255,.035); transition: border-color .2s ease, background .2s ease, transform .2s var(--ease); }
.checkout-option:hover { transform: translateY(-1px); border-color: rgba(125,211,252,.22); }
.checkout-option:has(input:checked) { border-color: rgba(56,189,248,.55); background: rgba(14,165,233,.1); box-shadow: inset 0 0 0 1px rgba(56,189,248,.08), 0 12px 30px rgba(0,0,0,.13); }
.checkout-option input { position: absolute; opacity: 0; pointer-events: none; }
.checkout-option__copy { display: flex; flex-direction: column; gap: 5px; }
.checkout-option__copy strong { color: #e7edf3; font-size: 15px; font-weight: 650; }
.checkout-option__copy small { color: #828d9d; font-size: 11px; }
.checkout-option__price { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; white-space: nowrap; }
.checkout-option__price strong { font-size: 16px; font-weight: 650; }
.checkout-option__price small { color: #69d2fa; font-size: 10px; }
.checkout__summary { margin-top: 20px; padding: 16px 18px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; border: 1px solid rgba(255,255,255,.07); border-radius: 16px; background: rgba(7,13,25,.46); }
.checkout__summary--compact { grid-template-columns: 1fr 1fr; }
.checkout__summary span { min-width: 0; display: flex; flex-direction: column; gap: 5px; }
.checkout__summary small { color: #788493; font-size: 11px; }
.checkout__summary strong { overflow: hidden; color: #dbe5ed; font-size: 14px; font-weight: 650; text-overflow: ellipsis; white-space: nowrap; }
.checkout__actions { margin-top: 20px; display: grid; grid-template-columns: .72fr 1.28fr; gap: 10px; }
.checkout__actions .button { border-radius: 14px; }
.checkout__field { display: grid; gap: 9px; }
.checkout__field > span, .checkout__methods legend { color: #b1bac6; font-size: 13px; font-weight: 650; }
.checkout__field input { width: 100%; height: 56px; padding: 0 16px; border: 1px solid rgba(255,255,255,.095); border-radius: 14px; color: #f2f6f9; background: rgba(5,11,22,.5); font: inherit; font-size: 15px; outline: 0; transition: border-color .2s ease, box-shadow .2s ease; }
.checkout__field input:focus { border-color: rgba(56,189,248,.55); box-shadow: 0 0 0 4px rgba(14,165,233,.09); }
.checkout__field input::placeholder { color: #596474; }
.checkout__methods { margin: 20px 0 0; padding: 0; border: 0; }
.checkout__methods legend { margin-bottom: 10px; }
.checkout__methods > div { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.payment-option { min-height: 68px; padding: 11px 12px; position: relative; display: grid; grid-template-columns: 38px 1fr 18px; align-items: center; gap: 11px; border: 1px solid rgba(255,255,255,.08); border-radius: 15px; background: rgba(255,255,255,.03); transition: border-color .2s ease, background .2s ease; }
.payment-option:has(input:checked) { border-color: rgba(56,189,248,.5); background: rgba(14,165,233,.09); }
.payment-option input { position: absolute; opacity: 0; }
.payment-option__logo { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; color: #fff; background: linear-gradient(145deg,#38bdf8,#2563eb); font-size: 12px; font-weight: 800; letter-spacing: -.04em; }
.payment-option[data-method^="cryptobot"] .payment-option__logo { background: linear-gradient(145deg,#54a8ff,#1c6de8); }
.payment-option[data-method^="heleket"] .payment-option__logo { background: linear-gradient(145deg,#8b5cf6,#4f46e5); }
.payment-option[data-method^="2328"] .payment-option__logo { color: #10131a; background: linear-gradient(145deg,#fff,#cbd5e1); }
.payment-option__copy { min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.payment-option__copy strong { overflow: hidden; color: #dce5ed; font-size: 13px; font-weight: 650; text-overflow: ellipsis; white-space: nowrap; }
.payment-option__copy small { overflow: hidden; color: #788598; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.payment-option__radio { width: 17px; height: 17px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; box-shadow: inset 0 0 0 4px transparent; }
.payment-option:has(input:checked) .payment-option__radio { border-color: #38bdf8; background: #38bdf8; box-shadow: inset 0 0 0 4px #142238; }
.checkout__error { margin: 14px 0 0; padding: 11px 13px; border: 1px solid rgba(248,113,113,.22); border-radius: 12px; color: #fca5a5; background: rgba(127,29,29,.16); font-size: 11px; line-height: 1.45; }
.checkout [disabled] { cursor: wait; opacity: .66; }


.faq-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 110px; }
.faq-grid .section-heading h2 { font-size: 46px; }
.faq-grid .text-link { margin-top: 28px; }
.accordion details { overflow: clip; border-bottom: 1px solid rgba(255,255,255,.08); }
.accordion summary { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 20px; list-style: none; cursor: pointer; font-size: 17px; font-weight: 550; transition: color .25s ease; }
.accordion summary:hover { color: #7dd3fc; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { width: 18px; height: 18px; position: relative; flex: 0 0 18px; }
.accordion summary span::before, .accordion summary span::after { content: ""; width: 11px; height: 1px; position: absolute; top: 8px; left: 3px; background: #727783; transition: transform .25s ease; }
.accordion summary span::after { transform: rotate(90deg); }
.accordion details[open] summary span::after { transform: rotate(0); }
.faq-answer { overflow: hidden; }
.accordion details:not([open]) .faq-answer { display: none; }
.faq-answer__inner { min-height: 0; overflow: hidden; }
.accordion details p { max-width: 650px; margin: -5px 35px 25px 0; color: #858b97; font-size: 15px; line-height: 1.7; }

.final-cta { min-height: 450px; margin-top: 160px; position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.09); border-radius: 32px; text-align: center; background: linear-gradient(145deg, rgba(30,41,59,.96), rgba(12,18,34,.97)); }
.final-cta::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.12) .7px, transparent .7px); background-size: 18px 18px; mask-image: radial-gradient(circle, black, transparent 69%); opacity: .3; }
.cta-glow { width: 380px; aspect-ratio: 1; position: absolute; top: -270px; border-radius: 50%; background: rgba(14,165,233,.36); filter: blur(80px); }
.brand-mark--large { width: 54px; height: 54px; position: relative; }
.final-cta h2 { margin: 27px 0 10px; position: relative; font-size: clamp(40px,5vw,58px); line-height: 1; letter-spacing: -.055em; font-weight: 580; }
.final-cta p { margin: 0 0 30px; position: relative; color: #9297a2; font-size: 17px; }
.final-cta .button { position: relative; }

.site-footer { padding: 72px 0 35px; }
.footer-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 47px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-top p { margin: 0; color: #717783; font-size: 13px; }
.footer-links { padding: 44px 0 55px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 45px; }
.footer-links div { display: flex; flex-direction: column; gap: 13px; }
.footer-links strong { margin-bottom: 4px; color: #969ca7; font-size: 12px; font-weight: 600; }
.footer-links a { width: fit-content; color: #727884; font-size: 12px; transition: color .2s ease; }
.footer-links a:hover { color: #fff; }
.footer-bottom { padding-top: 25px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.07); color: #5d636e; font-size: 11px; }
.system-status { display: flex; align-items: center; gap: 8px; }
.system-status i { width: 6px; height: 6px; border-radius: 50%; background: #55d797; box-shadow: 0 0 9px rgba(85,215,151,.5); }

.resources-section .section-heading { max-width: 760px; }
.resource-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.resource-card { min-height: 270px; padding: 26px; position: relative; overflow: hidden; display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,.08); border-radius: 24px; color: #eef5fa; background: linear-gradient(145deg, rgba(25,39,61,.78), rgba(8,15,28,.92)); transition: transform .3s var(--ease), border-color .3s ease, background .3s ease; }
.resource-card::after { content: ""; width: 150px; height: 150px; position: absolute; right: -70px; bottom: -85px; border-radius: 50%; background: rgba(56,189,248,.13); filter: blur(22px); transition: transform .35s ease, opacity .35s ease; }
.resource-card:hover { transform: translateY(-4px); border-color: rgba(125,211,252,.3); background: linear-gradient(145deg, rgba(28,47,75,.88), rgba(8,15,28,.96)); }
.resource-card:hover::after { transform: scale(1.3); opacity: .9; }
.resource-card__tag { width: fit-content; padding: 7px 10px; border: 1px solid rgba(125,211,252,.15); border-radius: 999px; color: #7dd3fc; background: rgba(14,165,233,.07); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.resource-card h3 { margin: auto 0 10px; font-size: 24px; line-height: 1.05; letter-spacing: -.035em; }
.resource-card p { margin: 0 0 22px; color: #8793a4; font-size: 13px; line-height: 1.6; }
.resource-card > span:last-child { position: relative; z-index: 1; color: #b8e7fa; font-size: 12px; font-weight: 650; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-9px) } }
@keyframes breathe { 0%,100% { transform: scale(.92); opacity: .7 } 50% { transform: scale(1.05); opacity: 1 } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes ripple { 0%,100% { transform: scale(.92); opacity: .45 } 50% { transform: scale(1.08); opacity: .9 } }
@keyframes statusPulse { 0% { transform: scale(.75); opacity: .8 } 70%,100% { transform: scale(1.16); opacity: 0 } }
@keyframes statusSweep { 0%,68% { transform: translateX(0) skewX(-18deg); opacity: 0 } 76% { opacity: 1 } 92%,100% { transform: translateX(330px) skewX(-18deg); opacity: 0 } }
@keyframes privacyWave { 0%,100% { transform: scale(.88); opacity: .25 } 52% { transform: scale(1.04); opacity: .72 } }
@keyframes lockFloat { 0%,100% { transform: translateY(3px) rotate(-3deg) } 50% { transform: translateY(-5px) rotate(-1deg) } }
@keyframes subscriptionStatus { 0%,100% { transform: scale(.88); opacity: .72 } 50% { transform: scale(1.12); opacity: 1 } }
@keyframes subscriptionProgress { 0%,100% { width: 27% } 50% { width: 31% } }
@keyframes deviceRowActive { 0%,30%,100% { opacity: .68; border-color: transparent } 8%,22% { opacity: 1; border-color: rgba(14,165,233,.14) } }
@keyframes deviceRowSurface { 0%,30%,100% { opacity: 0 } 8%,22% { opacity: 1 } }
@keyframes deviceCheck { 0%,30%,100% { transform: scale(.88); opacity: .62 } 8%,22% { transform: scale(1); opacity: 1 } }
@keyframes globeTurn { to { transform: rotate(360deg) } }
@keyframes visualFloat { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-5px) } }
@keyframes serverPulse { 0%,100% { transform: scale(.88); opacity: .72 } 50% { transform: scale(1.1); opacity: 1 } }
@keyframes sparklePulse { 0%,100% { transform: scale(.88) rotate(0); opacity: .35 } 50% { transform: scale(1.12) rotate(18deg); opacity: .8 } }

@media (max-width: 980px) {
  :root { --shell: min(100% - 36px, 760px); }
  .desktop-nav, .login-link { display: none; }
  .hero { min-height: auto; padding-top: 80px; grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-visual { width: 650px; max-width: 100%; margin-inline: auto; }
  .pricing-grid { width: min(620px, 100%); margin-inline: auto; grid-template-columns: 1fr; gap: 14px; }
  .price-card { width: 100%; min-width: 0; }
  .price-card--featured { transform: none; }
  .faq-grid { grid-template-columns: 1fr; gap: 50px; }
  .resource-grid { grid-template-columns: 1fr 1fr; }
  .feature-intro { grid-template-columns: 1fr; gap: 42px; }
  .feature-showcase { width: min(620px,100%); margin-inline: auto; }
  .device-panel { width: 49%; }
}

@media (max-width: 700px) {
  :root { --shell: calc(100vw - 28px); }
  .site-header { height: 60px; top: 8px; margin-top: 8px; }
  .header-actions { display: none; }
  .menu-button { width: 38px; height: 38px; padding: 0; display: grid; place-content: center; gap: 5px; border: 0; border-radius: 10px; background: rgba(255,255,255,.05); cursor: pointer; }
  .menu-button span { width: 16px; height: 1px; display: block; background: #d8dae0; transition: transform .25s ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .mobile-menu { padding: 14px; position: absolute; top: 66px; left: 0; right: 0; display: flex; flex-direction: column; gap: 4px; border: 1px solid rgba(255,255,255,.08); border-radius: 16px; background: rgba(12,18,34,.97); box-shadow: 0 20px 50px rgba(0,0,0,.42); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .25s ease; }
  .mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-menu a { padding: 12px; color: #b4b8c1; border-radius: 10px; font-size: 13px; }
  .mobile-menu a:last-child { margin-top: 5px; color: #111217; background: #fff; text-align: center; font-weight: 650; }
  .hero { padding-top: 72px; gap: 22px; }
  .service-status { min-height: 42px; }
  .hero h1 { font-size: clamp(44px, 12vw, 58px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { flex-direction: column; gap: 20px; }
  .hero-actions .button { width: min(100%, 300px); }
  .hero-visual { min-height: 510px; transform: scale(.86); margin-block: -35px; }
  .orbital-scene { width: 560px; }
  .floating-pill--speed { left: -5%; }
  .floating-pill--shield { right: -5%; }
  .trust-strip { padding: 25px 0; grid-template-columns: 1fr 1fr; gap: 28px 0; }
  .trust-strip > div:nth-child(3) { border-left: 0; }
  .section { padding-top: 110px; }
  .section-heading h2 { font-size: 42px; }
  .feature-intro { gap: 32px; }
  .feature-showcase { min-height: 310px; }
  .bento-grid { margin-top: 42px; grid-template-columns: 1fr; }
  .bento-card, .bento-card--wide { min-height: 460px; grid-column: auto; display: block; padding: 25px; }
  .card-number { margin-bottom: 25px; }
  .speed-viz { inset: 45% 0 0 0; }
  .speed-viz::before { mask-image: linear-gradient(90deg, transparent, black 15%); }
  .bento-card--devices { min-height: 550px; }
  .privacy-viz, .control-viz { left: 18px; right: 18px; bottom: 18px; }
  .device-panel { width: auto; height: 275px; top: auto; left: 18px; right: 18px; bottom: 18px; padding: 15px; }
  .device-row { min-height: 58px; }
  .steps-grid { margin-top: 45px; grid-template-columns: 1fr; }
  .step { min-height: 235px; }
  .pricing-section { padding-top: 100px; scroll-margin-top: 78px; }
  .pricing-section--first { padding-top: 68px; }
  .pricing-intro h2 { margin-top: 13px; font-size: 38px; line-height: 1.06; }
  .pricing-intro > p { max-width: 350px; font-size: 15px; line-height: 1.58; }
  .pricing-grid { margin-top: 46px; }
  .test-plan-card { padding: 20px; grid-template-columns: 1fr; gap: 18px; }
  .test-plan-card::after { right: -80px; }
  .test-plan-card__copy { align-items: flex-start; flex-direction: column; gap: 14px; }
  .test-plan-card__action { justify-content: space-between; }
  .test-plan-card__price { align-items: flex-start; }
  .price-card { width: 100%; min-width: 0; padding: 26px; min-height: 490px; }
  .price { margin-top: 48px; }
  .price strong { font-size: 68px; }
  .price small { margin-top: 36px; }
  .checkout { margin-top: 30px; }
  .checkout__viewport { min-height: 530px; border-radius: 22px; }
  .checkout__slide--form { padding: 28px 18px 22px; border-radius: 22px; }
  .checkout__steps { margin: 0 0 23px; gap: 7px; }
  .checkout__steps span { gap: 6px; font-size: 10px; }
  .checkout__steps span i { width: 22px; height: 22px; }
  .checkout__slide--form h2 { font-size: 36px; }
  .checkout__lead { margin: 10px 0 20px; font-size: 14px; line-height: 1.55; }
  .checkout__periods, .checkout__methods > div { grid-template-columns: 1fr; }
  .checkout-option { min-height: 75px; }
  .checkout__summary { grid-template-columns: 1fr 1fr; }
  .checkout__summary span:last-child:nth-child(3) { grid-column: 1 / -1; }
  .checkout__actions { grid-template-columns: .8fr 1.2fr; }
  .final-cta { min-height: 430px; margin-top: 110px; padding-inline: 25px; }
  .resource-grid { margin-top: 36px; grid-template-columns: 1fr; }
  .resource-card { min-height: 230px; }
  .footer-top { align-items: flex-start; flex-direction: column; gap: 22px; }
  .footer-links { grid-template-columns: 1fr 1fr; row-gap: 38px; }
  .footer-bottom { flex-direction: column; gap: 15px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(40px, 11.5vw, 48px); }
  .feature-showcase { min-height: 320px; border-radius: 20px; }
  .pricing-intro h2 { font-size: 35px; }
  .checkout__steps { gap: 5px; }
  .checkout__steps span { gap: 5px; font-size: 9px; }
  .feature-globe { width: 142px; left: 58%; top: 47%; }
  .feature-chip { min-height: 52px; padding: 7px 9px; border-radius: 13px; }
  .feature-chip--servers { left: 12px; top: 14px; }
  .feature-chip--route { left: 12px; bottom: 18px; }
  .feature-chip--network { right: 12px; bottom: 76px; }
  .feature-chip strong { font-size: 9px; }
  .feature-chip__icon { width: 30px; height: 30px; }
  .hero-visual { width: 590px; left: 50%; max-width: none; margin: -30px 0 -75px -295px; transform: scale(.7); }
  .floating-pill { display: none; }
  .trust-strip { margin-top: 20px; }
  .platforms span:last-child { display: none; }
  .price { flex-wrap: wrap; }
}

.error-page { min-height: 100svh; display: grid; place-items: center; padding: 24px; }
.error-card { width: min(560px, 100%); padding: 54px 34px; border: 1px solid rgba(255,255,255,.09); border-radius: 28px; background: linear-gradient(145deg, rgba(30,41,59,.96), rgba(12,18,34,.97)); text-align: center; box-shadow: 0 35px 80px rgba(0,0,0,.35); }
.error-card .brand-mark { margin-inline: auto; }
.error-code { margin: 26px 0 8px; color: #777c87; font-size: 12px; font-weight: 650; letter-spacing: .16em; }
.error-card h1 { margin: 0; font-size: clamp(38px, 8vw, 58px); line-height: 1; letter-spacing: -.055em; }
.error-card p { margin: 18px auto 28px; color: #838894; line-height: 1.65; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
