:root {
  color-scheme: dark;
  --void: #03050b;
  --deep: #070b18;
  --panel: rgba(10, 16, 35, 0.72);
  --panel-solid: #0a1023;
  --ink: #f3f7ff;
  --muted: #94a4c6;
  --line: rgba(153, 187, 255, 0.16);
  --cyan: #73f7ff;
  --blue: #6894ff;
  --violet: #a77bff;
  --pink: #ff78d1;
  --green: #69f6ad;
  --danger: #ff849b;
  --radius: 28px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--void);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.intro-active { overflow: hidden; }
a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }

#space-canvas {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 16% 15%, rgba(77, 122, 255, 0.16), transparent 29%),
    radial-gradient(circle at 82% 24%, rgba(181, 91, 255, 0.11), transparent 25%),
    linear-gradient(180deg, #050816, #02040a 68%);
}
.aurora {
  position: fixed;
  z-index: -2;
  width: 48vw;
  height: 48vw;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.12;
  pointer-events: none;
}
.aurora.a { left: -22vw; top: 24vh; background: var(--cyan); }
.aurora.b { right: -20vw; top: 50vh; background: var(--violet); }
.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: radial-gradient(circle at 50% 45%, #101b3c 0, #050815 34%, #020309 78%);
  transition: opacity 700ms ease, visibility 700ms ease;
}
.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(115,247,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(115,247,255,.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle, #000 0, transparent 68%);
}
.intro.is-leaving { opacity: 0; visibility: hidden; }
.intro-inner { position: relative; width: min(760px, 100%); text-align: center; }
.intro-orbit {
  width: 104px;
  height: 104px;
  margin: 0 auto 34px;
  border: 1px solid rgba(115,247,255,.3);
  border-radius: 50%;
  animation: orbit-spin 5s linear infinite;
  box-shadow: inset 0 0 40px rgba(104,148,255,.08), 0 0 60px rgba(115,247,255,.07);
}
.intro-orbit::before, .intro-orbit::after { content: ""; position: absolute; border-radius: 50%; }
.intro-orbit::before { width: 12px; height: 12px; background: var(--cyan); box-shadow: 0 0 24px var(--cyan); top: 9px; left: 12px; }
.intro-orbit::after { width: 42px; height: 42px; background: radial-gradient(circle at 35% 28%, #fff, var(--blue) 22%, #301c68 70%); top: 30px; left: 30px; box-shadow: 0 0 45px rgba(104,148,255,.75); }
.intro-kicker, .eyebrow {
  color: var(--cyan);
  font: 700 11px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.intro-mark {
  margin: 16px 0 20px;
  font-size: clamp(42px, 10vw, 98px);
  line-height: .88;
  letter-spacing: -.065em;
  font-weight: 850;
}
.intro-typing {
  min-height: 3.2em;
  margin: 0 auto;
  color: #b8c9e9;
  font: 500 clamp(14px, 2vw, 18px)/1.6 ui-monospace, SFMono-Regular, Consolas, monospace;
}
.intro-typing::after { content: ""; display: inline-block; width: 8px; height: 1em; margin-left: 7px; vertical-align: -.12em; background: var(--cyan); animation: blink 750ms steps(1) infinite; }
.intro-progress { position: relative; height: 2px; margin: 30px auto 18px; max-width: 420px; background: rgba(255,255,255,.08); overflow: hidden; }
.intro-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--blue), var(--cyan), var(--pink)); box-shadow: 0 0 14px var(--cyan); transition: width 350ms ease; }
.intro-skip { border: 0; background: transparent; color: #7384a5; cursor: pointer; padding: 10px 14px; }
.intro-skip:hover { color: var(--ink); }
.particle { position: fixed; z-index: 110; width: 3px; height: 3px; border-radius: 50%; pointer-events: none; animation: particle-flight 950ms cubic-bezier(.18,.8,.25,1) forwards; }

.site-shell { position: relative; opacity: 0; transform: translateY(20px); transition: opacity 900ms ease, transform 900ms ease; }
body.site-ready .site-shell { opacity: 1; transform: none; }
.container { width: min(1180px, calc(100% - 36px)); margin-inline: auto; }
.nav-wrap { position: sticky; top: 0; z-index: 30; padding: 16px 0; background: linear-gradient(180deg, rgba(3,5,11,.9), transparent); backdrop-filter: blur(5px); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(6, 10, 22, 0.68);
  backdrop-filter: blur(18px);
}
.brand { display: flex; gap: 11px; align-items: center; text-decoration: none; font-weight: 820; letter-spacing: -.04em; }
.brand-logo { display: block; width: 180px; height: auto; }
.brand-orb { width: 26px; height: 26px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #fff, var(--cyan) 14%, var(--blue) 42%, #1d1646 72%); box-shadow: 0 0 22px rgba(115,247,255,.45); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; }
.nav-links a:hover { color: var(--ink); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid rgba(115,247,255,.25);
  border-radius: 14px;
  background: rgba(13, 22, 46, .75);
  color: var(--ink);
  text-decoration: none;
  font-weight: 730;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.button:hover { transform: translateY(-2px); border-color: rgba(115,247,255,.6); box-shadow: 0 12px 34px rgba(39,100,190,.2); }
.button.primary { color: #04101a; border: 0; background: linear-gradient(125deg, var(--cyan), #8ba9ff 55%, #c58bff); box-shadow: 0 16px 50px rgba(115,247,255,.19); }
.button.small { min-height: 40px; padding-inline: 16px; border-radius: 11px; font-size: 14px; }
.button.danger { border-color: rgba(255,132,155,.3); }

.hero { min-height: min(820px, calc(100vh - 80px)); display: grid; grid-template-columns: 1.16fr .84fr; gap: 62px; align-items: center; padding: 80px 0 110px; }
.hero h1, .page-hero h1 { margin: 18px 0 24px; max-width: 900px; font-size: clamp(52px, 7.4vw, 102px); line-height: .93; letter-spacing: -.07em; }
.hero h1 .gradient, .gradient { color: transparent; background: linear-gradient(100deg, #fff 6%, var(--cyan) 42%, #9caaff 68%, var(--pink)); background-clip: text; -webkit-background-clip: text; }
.hero-copy { max-width: 650px; color: #aebbd5; font-size: clamp(17px, 2vw, 21px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 34px; color: #7f90b0; font-size: 13px; }
.trust-row span::before { content: "✦"; margin-right: 8px; color: var(--green); }

.planet-stage { position: relative; min-height: 510px; display: grid; place-items: center; }
.planet { position: relative; width: min(360px, 70vw); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 31% 24%, #d8ffff 0, #70cbe6 4%, #4268cb 17%, #241f68 39%, #080d28 70%); box-shadow: inset -42px -30px 80px #02030b, inset 25px 15px 55px rgba(115,247,255,.2), 0 0 100px rgba(84,120,255,.22); animation: planet-float 7s ease-in-out infinite; }
.planet::before { content: ""; position: absolute; inset: 43% -30%; height: 13%; border: 16px solid rgba(125,187,255,.35); border-left-color: rgba(255,120,209,.2); border-right-color: rgba(115,247,255,.48); border-radius: 50%; transform: rotate(-13deg); filter: drop-shadow(0 0 14px rgba(115,247,255,.2)); }
.planet::after { content: ""; position: absolute; inset: 9%; border-radius: 50%; background: repeating-radial-gradient(ellipse at 32% 35%, transparent 0 20px, rgba(255,255,255,.035) 22px 24px); mix-blend-mode: screen; }
.orbit-label { position: absolute; display: flex; align-items: center; gap: 9px; padding: 11px 14px; border: 1px solid var(--line); border-radius: 13px; background: rgba(7,12,27,.74); backdrop-filter: blur(14px); font-size: 13px; box-shadow: var(--shadow); }
.orbit-label.one { top: 8%; right: 0; }
.orbit-label.two { bottom: 13%; left: 0; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 13px var(--green); }

.section { padding: 105px 0; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 42px; }
.section-heading h2 { margin: 10px 0 0; max-width: 720px; font-size: clamp(36px, 5vw, 68px); line-height: 1; letter-spacing: -.055em; }
.section-heading p { max-width: 440px; margin: 0; color: var(--muted); line-height: 1.65; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.panel { border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); backdrop-filter: blur(20px); box-shadow: var(--shadow); }
.step { min-height: 290px; padding: 28px; position: relative; overflow: hidden; }
.step::after { content: attr(data-step); position: absolute; right: 18px; bottom: -34px; color: rgba(255,255,255,.03); font-size: 160px; font-weight: 900; line-height: 1; }
.step-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; color: var(--cyan); background: rgba(115,247,255,.08); border: 1px solid rgba(115,247,255,.14); font-size: 20px; }
.step h3 { margin: 34px 0 12px; font-size: 24px; }
.step p { margin: 0; color: var(--muted); line-height: 1.65; }

.plan-wrap { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: 18px; align-items: stretch; }
.plan-story { padding: 38px; }
.plan-story h2 { margin: 12px 0 20px; font-size: clamp(38px, 5vw, 62px); letter-spacing: -.055em; line-height: 1; }
.plan-story p { color: var(--muted); line-height: 1.7; }
.plan-card { padding: 38px; background: linear-gradient(145deg, rgba(16,29,63,.9), rgba(18,13,42,.82)); border-color: rgba(115,247,255,.28); }
.plan-top { display: flex; align-items: start; justify-content: space-between; gap: 20px; }
.plan-name { font-size: 17px; font-weight: 800; letter-spacing: .16em; }
.price { margin-top: 12px; font-size: clamp(52px, 7vw, 82px); font-weight: 850; letter-spacing: -.07em; }
.price small { color: var(--muted); font-size: 16px; letter-spacing: 0; font-weight: 500; }
.badge { padding: 8px 11px; border: 1px solid rgba(105,246,173,.24); border-radius: 999px; color: var(--green); background: rgba(105,246,173,.07); font-size: 12px; }
.features { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; padding: 26px 0; margin: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature { color: #c4cfe5; font-size: 14px; }
.feature::before { content: "✓"; margin-right: 9px; color: var(--green); }
.plan-card .button { width: 100%; }
.fineprint { color: #6f7f9d; font-size: 12px; line-height: 1.6; margin: 14px 0 0; text-align: center; }

.protocol { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.protocol-copy, .signal-card { padding: 38px; }
.protocol-copy h2 { margin: 12px 0 18px; font-size: clamp(38px, 5vw, 64px); letter-spacing: -.055em; line-height: 1; }
.protocol-copy p { color: var(--muted); line-height: 1.7; }
.signal { display: flex; justify-content: space-between; gap: 15px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.signal:last-child { border-bottom: 0; }
.signal strong { font-size: 14px; }
.signal span { color: var(--muted); font: 12px ui-monospace, monospace; }

.faq { display: grid; gap: 10px; }
.faq details { padding: 20px 22px; border: 1px solid var(--line); border-radius: 17px; background: rgba(9,14,31,.58); }
.faq summary { cursor: pointer; font-weight: 720; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--cyan); font-size: 20px; }
.faq details[open] summary::after { content: "−"; }
.faq p { max-width: 850px; color: var(--muted); line-height: 1.65; }
.cta { padding: 64px 34px; text-align: center; background: radial-gradient(circle at 50% 100%, rgba(115,247,255,.15), transparent 46%), rgba(10,16,35,.8); }
.cta h2 { margin: 8px auto 20px; max-width: 760px; font-size: clamp(38px, 5vw, 68px); letter-spacing: -.055em; line-height: 1; }
.cta p { max-width: 600px; margin: 0 auto 28px; color: var(--muted); line-height: 1.65; }
.footer { display: flex; justify-content: space-between; gap: 20px; padding: 38px 0 44px; color: #64728d; font-size: 13px; }
.footer-links { display: flex; gap: 18px; }
.footer a { text-decoration: none; }

.page-hero { padding: 90px 0 54px; }
.page-hero h1 { font-size: clamp(48px, 7vw, 86px); }
.page-hero p { max-width: 720px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.form-layout { display: grid; grid-template-columns: 1fr .65fr; gap: 18px; align-items: start; padding-bottom: 100px; }
.form-card { padding: 32px; }
.form-card h2 { margin: 8px 0 10px; font-size: 30px; letter-spacing: -.04em; }
.form-card > p { color: var(--muted); line-height: 1.6; }
.field { display: grid; gap: 8px; margin-top: 18px; }
.field label { color: #bdc8dc; font-size: 13px; }
.field input { width: 100%; height: 54px; padding: 0 16px; border: 1px solid var(--line); border-radius: 14px; outline: 0; background: rgba(3,7,17,.72); color: var(--ink); }
.field input:focus { border-color: rgba(115,247,255,.6); box-shadow: 0 0 0 4px rgba(115,247,255,.06); }
.form-actions { display: flex; gap: 10px; margin-top: 18px; }
.form-actions .button { flex: 1; }
.status-box { display: flex; gap: 11px; align-items: center; min-height: 52px; margin-top: 18px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 14px; color: var(--muted); background: rgba(4,8,18,.5); }
.status-box.error { color: var(--danger); border-color: rgba(255,132,155,.25); }
.result { display: none; margin-top: 20px; }
.result.show { display: block; }
.result-code { max-height: 190px; overflow: auto; padding: 16px; border: 1px solid rgba(105,246,173,.2); border-radius: 14px; background: #040913; color: #93f4bc; font: 12px/1.6 ui-monospace, monospace; word-break: break-all; }
.meta { margin: 12px 0; color: var(--muted); font-size: 13px; }
.side-stack { display: grid; gap: 14px; }
.mini-card { padding: 24px; }
.mini-card h3 { margin: 10px 0; font-size: 21px; }
.mini-card p, .mini-card li { color: var(--muted); line-height: 1.6; }
.mini-card ul { padding-left: 18px; margin-bottom: 0; }

.device-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin: 30px 0; }
.device-tab { border: 1px solid var(--line); border-radius: 999px; padding: 11px 16px; background: rgba(8,13,29,.7); cursor: pointer; }
.device-tab.active { color: #06101a; border-color: transparent; background: var(--cyan); }
.device-panel { display: none; }
.device-panel.active { display: grid; }
.instruction-list { counter-reset: item; display: grid; gap: 12px; }
.instruction { position: relative; padding: 24px 24px 24px 78px; }
.instruction::before { counter-increment: item; content: counter(item); position: absolute; left: 24px; top: 22px; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; color: var(--cyan); background: rgba(115,247,255,.08); border: 1px solid rgba(115,247,255,.18); font-weight: 800; }
.instruction h3 { margin: 0 0 7px; }
.instruction p { margin: 0; color: var(--muted); line-height: 1.65; }
.callout { margin-top: 18px; padding: 20px 22px; border-left: 2px solid var(--cyan); border-radius: 4px 16px 16px 4px; background: rgba(115,247,255,.06); color: #becbe3; line-height: 1.65; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.visible { opacity: 1; transform: none; }

@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes blink { 50% { opacity: 0; } }
@keyframes planet-float { 50% { transform: translateY(-16px) rotate(2deg); } }
@keyframes particle-flight { to { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(.1); filter: blur(2px); } }

@media (max-width: 920px) {
  .hero, .plan-wrap, .protocol, .form-layout { grid-template-columns: 1fr; }
  .hero { padding-top: 50px; gap: 20px; }
  .planet-stage { min-height: 420px; }
  .grid-3 { grid-template-columns: 1fr; }
  .section-heading { align-items: start; flex-direction: column; }
  .plan-card, .plan-story, .protocol-copy, .signal-card { padding: 28px; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 24px, 1180px); }
  .nav-links a:not(.button) { display: none; }
  .nav { padding-left: 14px; }
  .brand-logo { width: 150px; }
  .button.small { padding-inline: 12px; }
  .hero { min-height: auto; padding: 52px 0 80px; }
  .hero h1 { font-size: clamp(48px, 16vw, 72px); }
  .planet-stage { min-height: 340px; }
  .planet { width: min(270px, 72vw); }
  .orbit-label.one { right: 2px; }
  .orbit-label.two { left: 2px; }
  .section { padding: 74px 0; }
  .features { grid-template-columns: 1fr; }
  .form-card { padding: 22px; }
  .form-actions { flex-direction: column; }
  .footer { flex-direction: column; }
  .intro-mark { letter-spacing: -.075em; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Novaro Space landing v2 — dense orbital dashboard */
.landing-v2 { max-width: 100%; overflow-x: clip; background: #020713; }
.landing-v2 #space-canvas { opacity: .55; }
.v2-container { width: min(1260px, calc(100% - 36px)); margin-inline: auto; }
.v2-header { position: relative; z-index: 40; border-bottom: 1px solid rgba(102,159,255,.14); background: rgba(2,7,19,.74); backdrop-filter: blur(18px); }
.v2-nav { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.v2-brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; text-decoration: none; font-size: 20px; letter-spacing: -.03em; white-space: nowrap; }
.v2-brand-logo { display: block; width: 180px; height: auto; }
.v2-logo { position: relative; width: 44px; height: 30px; display: inline-block; transform: rotate(-14deg); }
.v2-logo::before { content: ""; position: absolute; width: 24px; height: 24px; left: 10px; top: 3px; border-radius: 50%; border: 2px solid #dffcff; box-shadow: 0 0 12px #2c9dff, inset 0 0 8px #854dff; }
.v2-logo::after { content: ""; position: absolute; width: 42px; height: 14px; left: 1px; top: 8px; border: 2px solid #8e63ff; border-top-color: #57dfff; border-radius: 50%; }
.v2-logo i { position: absolute; width: 5px; height: 5px; left: 3px; top: 13px; z-index: 1; border-radius: 50%; background: #fff; box-shadow: 0 0 10px #5ee9ff; }
.v2-menu { display: flex; align-items: center; gap: clamp(20px, 3vw, 42px); }
.v2-menu a { color: #aeb9cf; text-decoration: none; font-size: 13px; transition: color 160ms ease; }
.v2-menu a:hover { color: #fff; }
.v2-menu a.active { color: #fff; }
.v2-menu a.active:not(.v2-login) { text-shadow: 0 0 18px rgba(85,204,255,.58); }
.v2-menu .v2-login { padding: 10px 18px; color: #edf8ff; border: 1px solid rgba(71,179,255,.55); border-radius: 8px; }
.v2-menu .v2-login.active { border-color: rgba(71,179,255,.72); background: rgba(23,78,150,.18); }
.v2-menu-button { display: none; width: 40px; height: 40px; padding: 8px; border: 0; background: transparent; }
.v2-menu-button span { display: block; height: 2px; margin: 5px 0; background: #fff; }

.v2-hero { position: relative; isolation: isolate; min-height: 525px; padding-top: 52px; overflow: hidden; }
.v2-portal { position: absolute; z-index: 0; width: min(690px, 60%); height: auto; right: 4%; top: 16px; object-fit: contain; opacity: .96; filter: drop-shadow(0 0 34px rgba(49,109,255,.28)); }
.v2-hero::after { content: ""; position: absolute; z-index: 1; inset: 0; pointer-events: none; background: linear-gradient(90deg, #020713 0 28%, rgba(2,7,19,.68) 43%, transparent 67%); }
.v2-hero-copy { position: relative; z-index: 2; width: min(600px, 52%); }
.v2-kicker { color: #62dfff; font: 700 11px/1 ui-monospace, monospace; letter-spacing: .22em; text-transform: uppercase; }
.v2-hero h1 { margin: 18px 0 16px; font-size: clamp(45px, 5.2vw, 72px); line-height: .98; letter-spacing: -.055em; }
.v2-hero h1 span { color: transparent; background: linear-gradient(95deg, #4ddfff, #759eff 60%, #c36cff); background-clip: text; -webkit-background-clip: text; }
.v2-hero-copy > p { max-width: 530px; margin: 0; color: #a5b1c9; font-size: 17px; line-height: 1.55; }
.v2-actions { display: flex; gap: 14px; margin-top: 26px; }
.v2-button { display: inline-flex; min-height: 48px; padding: 0 22px; align-items: center; justify-content: center; gap: 10px; border: 1px solid rgba(115,155,220,.35); border-radius: 9px; background: rgba(4,11,27,.78); color: #f5f9ff; font-weight: 760; text-decoration: none; cursor: pointer; transition: transform 160ms ease, box-shadow 160ms ease; }
.v2-button:hover { transform: translateY(-2px); }
.v2-button.primary { border: 0; color: #fff; background: linear-gradient(115deg, #0b9dff, #285bff 48%, #a83bff); box-shadow: 0 0 30px rgba(50,103,255,.38); }
.v2-button.ghost b { width: 20px; height: 20px; display: grid; place-items: center; border: 1px solid #fff; border-radius: 50%; font-size: 8px; }
.v2-button:disabled { opacity: .48; cursor: not-allowed; transform: none; }
.v2-micro { display: flex; gap: 26px; margin-top: 29px; color: #8795af; font-size: 12px; }
.v2-micro span::first-letter { color: #43d9ff; }
.v2-status-card { position: absolute; z-index: 4; right: 1%; top: 53px; width: 300px; padding: 19px 21px; border: 1px solid rgba(62,168,255,.55); border-radius: 13px; background: rgba(3,12,31,.86); box-shadow: 0 18px 60px rgba(0,0,0,.42), inset 0 0 34px rgba(26,73,159,.12); backdrop-filter: blur(16px); }
.v2-status-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 14px; border-bottom: 1px solid rgba(123,162,220,.2); font-size: 13px; }
.v2-status-top em { color: #32ec9c; font-style: normal; }
.v2-online { display: inline-block; width: 9px; height: 9px; margin-right: 7px; border-radius: 50%; background: #2cf09b; box-shadow: 0 0 12px #2cf09b; }
.v2-bars { color: #25e2d4; letter-spacing: -2px; }
.v2-status-grid { display: grid; grid-template-columns: 1fr; gap: 14px; padding-top: 14px; }
.v2-status-grid > div { display: grid; grid-template-columns: 45px 1fr; align-items: center; }
.v2-status-grid span { grid-row: span 2; width: 37px; height: 37px; display: grid; place-items: center; border: 1px solid #168eff; border-radius: 50%; color: #45d9ff; font-size: 25px; }
.v2-status-grid strong { font-size: 16px; }
.v2-status-grid small { margin-top: 3px; color: #8e9bb3; }

.v2-card { border: 1px solid rgba(100,145,217,.22); border-radius: 12px; background: linear-gradient(145deg, rgba(8,19,43,.92), rgba(3,10,25,.86)); box-shadow: inset 0 1px 0 rgba(255,255,255,.025); }
.v2-feature-grid { position: relative; z-index: 5; display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 0; }
.v2-feature { min-height: 105px; display: flex; align-items: center; gap: 14px; padding: 17px; }
.v2-feature h2 { margin: 0 0 5px; font-size: 16px; }
.v2-feature p { margin: 0; color: #8996af; font-size: 12px; line-height: 1.45; }
.v2-icon { flex: 0 0 52px; width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 28px; background: rgba(25,78,160,.16); box-shadow: inset 0 0 22px rgba(45,109,255,.14); }
.v2-icon.blue { color:#34aeff }.v2-icon.purple{color:#a35aff}.v2-icon.cyan{color:#38ddff}.v2-icon.violet{color:#8f55ff}

.v2-operations { display: grid; grid-template-columns: 1.45fr .85fr; gap: 34px; padding-top: 42px; }
.v2-section-title { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.v2-section-title > span { width: 26px; height: 26px; display: grid; place-items: center; border: 1px solid #864eff; border-radius: 50%; color: #b6c6e2; font: 11px ui-monospace, monospace; box-shadow: 0 0 15px rgba(130,70,255,.2); }
.v2-section-title h2 { margin: 0; font-size: 21px; letter-spacing: -.02em; }
.v2-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.v2-step { position: relative; min-height: 96px; display: flex; gap: 13px; align-items: center; padding: 14px; }
.v2-step > b { position: absolute; left: -8px; top: -9px; width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid #8457ff; border-radius: 50%; background: #071027; font-size: 11px; }
.v2-step-icon { flex: 0 0 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: #45d5ff; background: rgba(34,111,203,.17); border: 1px solid rgba(56,177,255,.24); font-size: 20px; }
.v2-step h3 { margin: 0 0 4px; font-size: 13px; }
.v2-step p { margin: 0; color: #8795ae; font-size: 10px; line-height: 1.45; }
.v2-devices { display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; }
.v2-device { --device-color: #51dfff; min-height: 96px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 8px; color: #cbd5e8; text-decoration: none; border: 1px solid rgba(98,144,218,.24); border-radius: 10px; background: rgba(7,17,38,.84); transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease; }
.v2-device.android { --device-color: #58dfba; }
.v2-device.ios { --device-color: #e8efff; }
.v2-device.windows { --device-color: #48b9ff; }
.v2-device.macos { --device-color: #a87cff; }
.v2-device.linux { --device-color: #64d7a4; }
.v2-device:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--device-color) 55%, transparent); background: rgba(11,27,57,.94); box-shadow: 0 10px 28px color-mix(in srgb, var(--device-color) 14%, transparent); }
.v2-device-logo { width: 34px; height: 34px; overflow: visible; color: var(--device-color); fill: none; stroke: currentColor; stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 8px color-mix(in srgb, var(--device-color) 35%, transparent)); }
.v2-device-logo.apple, .v2-device-logo.windows-mark { fill: currentColor; stroke: none; }
.v2-device-logo.finder rect { fill: rgba(134,87,255,.12); }
.v2-device span { font-size: 11px; font-weight: 650; letter-spacing: .01em; }

.v2-bottom-grid { display: grid; grid-template-columns: 1.45fr .8fr; gap: 34px; padding-top: 38px; }
.v2-plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.v2-plan { position: relative; min-height: 245px; padding: 22px; overflow: hidden; border: 1px solid #218fd0; border-radius: 12px; background: linear-gradient(145deg, rgba(5,22,49,.98), rgba(4,10,25,.96)); }
.v2-plan.plus { border-color: #8d48d9; background: radial-gradient(circle at 100% 100%, rgba(132,49,236,.26), transparent 38%), linear-gradient(145deg, #150c35, #070b20); }
.v2-plan h3 { margin: 0 0 10px; font-size: 20px; }
.v2-price { color: #52b8ff; font-size: 29px; font-weight: 820; }
.v2-plan.plus .v2-price { color: #a55cff; }
.v2-price small { color: #8d9ab3; font-size: 11px; font-weight: 500; }
.v2-plan ul { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 18px; padding: 16px 0 16px; margin: 0; list-style: none; color: #a9b4c9; font-size: 11px; }
.v2-plan li::before { content: "✓"; color: #37dded; margin-right: 7px; }
.v2-plan .v2-button { min-height: 38px; padding-inline: 15px; font-size: 12px; }
.v2-plan-orbit { position: absolute; right: 20px; top: 14px; color: rgba(52,153,255,.55); font-size: 58px; }
.v2-coming { position: absolute; right: 10px; top: 0; padding: 5px 10px; border-radius: 0 0 7px 7px; color: #fff; background: #6330c7; font-size: 9px; }
.v2-faq details { margin-bottom: 8px; border: 1px solid rgba(92,139,207,.22); border-radius: 8px; background: rgba(7,17,38,.85); }
.v2-faq summary { padding: 13px 14px; cursor: pointer; list-style: none; font-size: 12px; }
.v2-faq summary::after { content: "⌄"; float: right; color: #9fb0ce; }
.v2-faq details[open] summary::after { content: "⌃"; }
.v2-faq p { margin: 0; padding: 0 14px 13px; color: #8e9bb3; font-size: 11px; line-height: 1.55; }
.v2-faq-link { display: inline-block; margin-top: 5px; color: #2ccaff; text-decoration: none; font-size: 12px; }

.v2-cta { display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center; min-height: 104px; margin-top: 32px; padding: 18px 26px; overflow: hidden; border: 1px solid #7447e0; border-radius: 12px; background: radial-gradient(circle at 100% 100%, rgba(66,88,255,.3), transparent 38%), linear-gradient(90deg,#081633,#0c1235 65%,#25105e); }
.v2-rocket { width: 64px; height: 64px; display: grid; place-items: center; border: 1px solid #278fe5; border-radius: 50%; color: #fff; background: radial-gradient(circle,#1e6adb,#091634 68%); font-size: 28px; box-shadow: 0 0 30px rgba(39,143,229,.24); }
.v2-cta h2 { margin: 0 0 5px; font-size: 22px; }
.v2-cta p { margin: 0; color: #9aa8c1; font-size: 13px; }
.v2-cta .v2-button { min-width: 250px; }
.v2-footer { margin-top: 16px; border-top: 1px solid rgba(90,133,198,.17); }
.v2-footer > div { min-height: 94px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; }
.v2-footer nav { display: flex; gap: 25px; }
.v2-footer nav a { color: #8794ac; text-decoration: none; font-size: 11px; }
.v2-footer p { margin: 0; justify-self: end; color: #64728d; font-size: 10px; }

@media (max-width: 980px) {
  .v2-menu { gap: 18px; }
  .v2-hero-copy { width: 58%; }
  .v2-status-card { width: 265px; }
  .v2-feature-grid { grid-template-columns: repeat(2,1fr); }
  .v2-operations, .v2-bottom-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .v2-menu-button { display: block; cursor: pointer; }
  .v2-menu { position: absolute; left: 14px; right: 14px; top: 62px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px; border: 1px solid rgba(75,139,221,.3); border-radius: 10px; background: rgba(2,8,21,.97); box-shadow: 0 20px 50px rgba(0,0,0,.55); }
  .v2-menu.open { display: flex; }
  .v2-menu a { padding: 13px 12px; }
  .v2-menu .v2-login { margin-top: 5px; text-align: center; }
}

@media (max-width: 720px) {
  .v2-container { width: min(100% - 28px, 1260px); }
  .v2-nav { min-height: 63px; }
  .v2-brand { font-size: 20px; }
  .v2-brand-logo { width: 160px; }
  .v2-hero { min-height: auto; padding-top: 33px; padding-bottom: 0; overflow: hidden; }
  .v2-portal { width: min(88vw, 390px); height: auto; right: -8vw; top: 8px; opacity: .88; object-fit: contain; filter: drop-shadow(0 0 24px rgba(49,109,255,.24)); }
  .v2-hero::after { background: linear-gradient(90deg,rgba(2,7,19,.96),rgba(2,7,19,.48) 66%,transparent 88%); }
  .v2-hero-copy { width: 75%; min-height: 385px; }
  .v2-hero h1 { margin-top: 13px; font-size: clamp(39px, 11.5vw, 55px); line-height: 1.02; }
  .v2-hero-copy > p { font-size: 15px; line-height: 1.5; }
  .v2-actions { flex-direction: column; width: min(290px,100%); gap: 10px; }
  .v2-micro { display: none; }
  .v2-status-card { position: relative; right: auto; top: auto; width: 100%; margin: 10px 0 0; padding: 17px; }
  .v2-status-grid { grid-template-columns: 1fr 1fr; }
  .v2-status-grid > div { grid-template-columns: 40px 1fr; }
  .v2-status-grid > div + div { padding-left: 13px; border-left: 1px solid rgba(123,162,220,.2); }
  .v2-status-grid strong { font-size: 13px; }
  .v2-status-grid small { font-size: 10px; }
  .v2-feature-grid { grid-template-columns: repeat(2,1fr); gap: 10px; margin-top: 16px; }
  .v2-feature { min-height: 150px; flex-direction: column; justify-content: center; text-align: center; padding: 13px; }
  .v2-feature h2 { font-size: 14px; }
  .v2-feature p { font-size: 10px; }
  .v2-operations { padding-top: 32px; gap: 30px; }
  .v2-steps { grid-template-columns: 1fr; gap: 9px; }
  .v2-step { min-height: 74px; }
  .v2-devices { gap: 8px; }
  .v2-device { min-height: 88px; }
  .v2-plan-grid { grid-template-columns: 1fr; }
  .v2-plan { min-height: 230px; }
  .v2-plan ul { font-size: 12px; }
  .v2-cta { grid-template-columns: auto 1fr; padding: 17px; }
  .v2-cta .v2-button { grid-column: 1/-1; width: 100%; min-width: 0; }
  .v2-cta h2 { font-size: 18px; }
  .v2-footer > div { grid-template-columns: 1fr; justify-items: start; gap: 13px; padding: 24px 0; }
  .v2-footer p { justify-self: start; }
}

@media (max-width: 430px) {
  .v2-hero-copy { width: 82%; }
  .v2-hero h1 { font-size: 42px; }
  .v2-status-grid { grid-template-columns: 1fr; }
  .v2-status-grid > div + div { padding: 12px 0 0; border-left: 0; border-top: 1px solid rgba(123,162,220,.2); }
  .v2-devices { grid-template-columns: repeat(2,1fr); }
  .v2-plan ul { grid-template-columns: 1fr; }
}

/* Novaro Space Free VPN v2 — aligned with the orbital landing */
.vpn-v2 { max-width: 100%; overflow-x: clip; background: #020713; }
.vpn-v2 #space-canvas { opacity: .55; }
.vpn-v2-hero { position: relative; isolation: isolate; min-height: 410px; display: grid; grid-template-columns: 1.15fr .72fr; align-items: center; gap: 70px; padding-top: 45px; padding-bottom: 38px; overflow: hidden; }
.vpn-v2-hero::after { content: ""; position: absolute; z-index: 1; inset: 0; pointer-events: none; background: linear-gradient(90deg, #020713 0 32%, rgba(2,7,19,.78) 48%, transparent 78%); }
.vpn-v2-portal { position: absolute; z-index: 0; width: min(570px, 52%); height: auto; right: 4%; top: -44px; opacity: .48; filter: saturate(.9) drop-shadow(0 0 34px rgba(49,109,255,.22)); }
.vpn-v2-hero-copy { position: relative; z-index: 2; max-width: 680px; }
.vpn-v2-hero h1 { margin: 17px 0 17px; font-size: clamp(48px, 5.6vw, 74px); line-height: .96; letter-spacing: -.06em; }
.vpn-v2-hero h1 span { color: transparent; background: linear-gradient(95deg, #4ddfff, #759eff 58%, #c36cff); background-clip: text; -webkit-background-clip: text; }
.vpn-v2-hero-copy > p { max-width: 590px; margin: 0; color: #a5b1c9; font-size: 17px; line-height: 1.55; }
.vpn-v2-metrics { display: grid; grid-template-columns: repeat(3, minmax(0,140px)); gap: 9px; margin-top: 24px; }
.vpn-v2-metrics div { padding: 11px 13px; border: 1px solid rgba(72,151,231,.25); border-radius: 9px; background: rgba(5,16,38,.72); }
.vpn-v2-metrics strong, .vpn-v2-metrics span { display: block; }
.vpn-v2-metrics strong { color: #eaf5ff; font-size: 14px; }
.vpn-v2-metrics span { margin-top: 2px; color: #7f8da7; font-size: 10px; }
.vpn-v2-orbit-card { position: relative; z-index: 3; width: 100%; max-width: 340px; justify-self: end; padding: 18px; border: 1px solid rgba(62,168,255,.5); border-radius: 13px; background: rgba(3,12,31,.88); box-shadow: 0 18px 60px rgba(0,0,0,.42), inset 0 0 34px rgba(26,73,159,.12); backdrop-filter: blur(16px); }
.vpn-v2-orbit-head, .vpn-v2-orbit-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.vpn-v2-orbit-head { padding-bottom: 14px; border-bottom: 1px solid rgba(123,162,220,.2); color: #dbe8fa; font-size: 12px; font-weight: 750; }
.vpn-v2-orbit-head b { padding: 4px 8px; border-radius: 5px; color: #53e9bc; background: rgba(47,228,159,.1); font-size: 9px; letter-spacing: .15em; }
.vpn-v2-orbit-visual { position: relative; min-height: 145px; display: flex; flex-direction: column; justify-content: center; padding-left: 105px; }
.vpn-v2-orbit-visual::before, .vpn-v2-orbit-visual::after { content: ""; position: absolute; left: 5px; top: 24px; width: 78px; height: 78px; border: 1px solid #2da5ff; border-radius: 50%; box-shadow: inset 0 0 25px rgba(31,111,255,.22), 0 0 25px rgba(36,146,255,.18); }
.vpn-v2-orbit-visual::after { left: -3px; top: 52px; width: 92px; height: 26px; border-color: #8e58ff; transform: rotate(-13deg); box-shadow: 0 0 14px rgba(126,77,255,.22); }
.vpn-v2-orbit-visual span { color: #57dfff; font: 700 9px ui-monospace, monospace; letter-spacing: .2em; }
.vpn-v2-orbit-visual strong { margin-top: 5px; font-size: 37px; line-height: 1; }
.vpn-v2-orbit-visual small { margin-top: 5px; color: #8290aa; }
.vpn-v2-orbit-foot { padding-top: 13px; border-top: 1px solid rgba(123,162,220,.2); color: #8795af; font-size: 10px; }

.vpn-v2-workspace { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(290px,.65fr); gap: 18px; align-items: start; padding-bottom: 55px; }
.vpn-v2-console, .vpn-v2-info-card, .vpn-v2-setup-link { border: 1px solid rgba(100,145,217,.24); border-radius: 13px; background: linear-gradient(145deg, rgba(8,19,43,.94), rgba(3,10,25,.9)); box-shadow: inset 0 1px 0 rgba(255,255,255,.025); }
.vpn-v2-console { padding: 25px; }
.vpn-v2-console-lead { max-width: 660px; margin: -2px 0 20px; color: #8996af; font-size: 13px; line-height: 1.55; }
.vpn-v2-launch { display: grid; grid-template-columns: minmax(220px,360px) minmax(0,1fr); align-items: center; gap: 18px; }
.vpn-v2-launch p { margin: 0; color: #687791; font-size: 11px; line-height: 1.55; }
.vpn-v2 .field { gap: 8px; margin-top: 14px; }
.vpn-v2 .field label { color: #aebbd1; font-size: 12px; }
.vpn-v2 .field input { height: 56px; border-color: rgba(91,142,216,.28); border-radius: 9px; background: rgba(2,8,21,.72); }
.vpn-v2 .field input:focus { border-color: rgba(72,195,255,.7); box-shadow: 0 0 0 4px rgba(72,195,255,.07); }
.vpn-v2 .form-actions { margin-top: 13px; }
.vpn-v2 .vpn-v2-submit { width: 100%; min-height: 52px; }
.vpn-v2 .status-box { min-height: 48px; margin-top: 13px; border-color: rgba(91,142,216,.22); border-radius: 9px; background: rgba(2,8,21,.58); font-size: 12px; }
.vpn-v2 .result-code { border-radius: 9px; }
.vpn-v2 .result .v2-button { flex: 1; }
.vpn-v2-side { display: grid; gap: 12px; }
.vpn-v2-info-card { padding: 20px; }
.vpn-v2-info-card .v2-section-title { margin-bottom: 12px; }
.vpn-v2-info-card .v2-section-title h2 { font-size: 18px; }
.vpn-v2-info-card ul { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 0; margin: 0; list-style: none; }
.vpn-v2-info-card li { padding: 10px; border: 1px solid rgba(91,142,216,.17); border-radius: 8px; background: rgba(5,15,34,.65); }
.vpn-v2-info-card li b, .vpn-v2-info-card li span { display: block; }
.vpn-v2-info-card li b { color: #50dfff; font-size: 14px; }
.vpn-v2-info-card li span { margin-top: 3px; color: #7e8ba5; font-size: 9px; }
.vpn-v2-info-card.privacy { display: flex; align-items: flex-start; gap: 13px; }
.vpn-v2-info-icon { flex: 0 0 40px; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid #8b53ff; border-radius: 50%; color: #b17aff; background: rgba(116,55,223,.12); font-size: 20px; }
.vpn-v2-info-card h3 { margin: 1px 0 6px; font-size: 14px; }
.vpn-v2-info-card p { margin: 0; color: #8190aa; font-size: 10px; line-height: 1.55; }
.vpn-v2-setup-link { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 18px; color: #eaf4ff; text-decoration: none; transition: transform 160ms ease, border-color 160ms ease; }
.vpn-v2-setup-link:hover { transform: translateY(-2px); border-color: rgba(77,205,255,.55); }
.vpn-v2-setup-link small, .vpn-v2-setup-link strong { display: block; }
.vpn-v2-setup-link small { margin-bottom: 4px; color: #6f7f9b; font-size: 9px; text-transform: uppercase; letter-spacing: .15em; }
.vpn-v2-setup-link strong { font-size: 12px; }
.vpn-v2-setup-link > b { color: #4bdcff; font-size: 24px; }
.modal-open { overflow: hidden; }
.vpn-v2-modal[hidden] { display: none; }
.vpn-v2-modal { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 20px; }
.vpn-v2-modal-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: rgba(0,4,14,.78); backdrop-filter: blur(12px); cursor: default; }
.vpn-v2-modal-card { position: relative; z-index: 1; width: min(100%,520px); max-height: min(760px,calc(100vh - 40px)); overflow: auto; padding: 28px; border: 1px solid rgba(73,181,255,.48); border-radius: 16px; background: radial-gradient(circle at 90% 0,rgba(106,59,222,.18),transparent 38%),linear-gradient(145deg,#091733,#030918 72%); box-shadow: 0 32px 100px rgba(0,0,0,.68),inset 0 1px 0 rgba(255,255,255,.05); }
.vpn-v2-modal-card h2 { margin: 14px 42px 8px 0; font-size: clamp(27px,5vw,36px); line-height: 1.05; letter-spacing: -.045em; }
.vpn-v2-modal-lead { margin: 0 0 18px; color: #8f9db5; font-size: 13px; line-height: 1.55; }
.vpn-v2-modal-close { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; padding: 0; border: 1px solid rgba(108,150,216,.24); border-radius: 50%; background: rgba(3,10,24,.66); color: #c7d5e9; font-size: 25px; line-height: 1; cursor: pointer; }
.vpn-v2-modal-close:hover { color: #fff; border-color: rgba(75,220,255,.5); }
.vpn-v2-modal .result-code { max-height: 150px; }

/* setup v2 */
.setup-v2-hero { position: relative; min-height: 430px; display: grid; grid-template-columns: minmax(0,1fr) 300px; align-items: center; gap: 34px; overflow: hidden; padding-top: 54px; padding-bottom: 38px; }
.setup-v2-portal { position: absolute; z-index: -1; width: min(690px,58vw); height: auto; right: 170px; top: -115px; opacity: .64; filter: saturate(1.1); }
.setup-v2-hero-copy { max-width: 680px; }
.setup-v2-hero h1 { margin: 12px 0 18px; max-width: 690px; font-size: clamp(48px,6.5vw,86px); line-height: .92; letter-spacing: -.065em; }
.setup-v2-hero h1 span { background: linear-gradient(90deg,#4fcbff,#a778ff); -webkit-background-clip:text; color:transparent; }
.setup-v2-hero-copy > p { max-width: 590px; margin: 0; color: #9aa9c1; font-size: 17px; line-height: 1.65; }
.setup-v2-actions { display:flex; gap:10px; flex-wrap:wrap; margin-top:24px; }
.setup-v2-status { padding: 20px; border: 1px solid rgba(100,145,217,.27); border-radius: 14px; background: linear-gradient(145deg,rgba(8,19,43,.92),rgba(3,10,25,.88)); box-shadow: 0 24px 70px rgba(0,0,0,.3); }
.setup-v2-status > div { display:flex; align-items:center; gap:10px; padding-bottom:14px; border-bottom:1px solid rgba(100,145,217,.18); color:#cde6ff; font-size:12px; }
.setup-v2-status ul { list-style:none; margin:15px 0 0; padding:0; display:grid; gap:11px; color:#8d9bb2; font-size:12px; }
.setup-v2-status li::before { content:'◇'; margin-right:9px; color:#4bdcff; }
.setup-v2-workspace { display:grid; grid-template-columns:280px minmax(0,1fr); gap:16px; padding-bottom:52px; }
.setup-v2-device-nav,.setup-v2-content { border:1px solid rgba(100,145,217,.24); border-radius:14px; background:linear-gradient(145deg,rgba(8,19,43,.94),rgba(3,10,25,.9)); }
.setup-v2-device-nav { padding:18px; align-self:start; position:sticky; top:18px; }
.setup-v2-tabs { display:grid; gap:8px; margin:18px 0; }
.setup-v2-tab { width:100%; padding:13px 14px; text-align:left; border:1px solid rgba(100,145,217,.18); border-radius:11px; background:rgba(4,12,29,.72); color:#dbeaff; cursor:pointer; transition:border-color 160ms ease,background 160ms ease,transform 160ms ease; }
.setup-v2-tab:hover { transform:translateX(2px); border-color:rgba(75,220,255,.42); }
.setup-v2-tab.active { border-color:rgba(75,220,255,.55); background:linear-gradient(100deg,rgba(37,118,198,.28),rgba(111,67,191,.18)); box-shadow:inset 3px 0 #4bdcff; }
.setup-v2-tab b,.setup-v2-tab span { display:block; }
.setup-v2-tab b { font-size:11px; letter-spacing:.09em; }
.setup-v2-tab span { margin-top:4px; color:#71819c; font-size:10px; }
.setup-v2-content { min-width:0; padding:22px; }
.setup-v2-content-head { display:flex; align-items:center; justify-content:space-between; gap:14px; margin-bottom:18px; }
.setup-v2-platform { padding:7px 12px; border:1px solid rgba(75,220,255,.3); border-radius:999px; color:#69e4ff; font-size:10px; text-transform:uppercase; letter-spacing:.1em; }
.setup-v2-panel { display:none; grid-template-columns:1fr 1fr; gap:11px; }
.setup-v2-panel.active { display:grid; }
.setup-v2-panel article { min-height:150px; display:flex; gap:14px; padding:17px; border:1px solid rgba(100,145,217,.18); border-radius:12px; background:rgba(4,12,29,.68); }
.setup-v2-panel article > span { flex:0 0 34px; width:34px; height:34px; display:grid; place-items:center; border:1px solid rgba(75,220,255,.36); border-radius:50%; color:#64e1ff; font-size:12px; box-shadow:0 0 20px rgba(75,220,255,.1); }
.setup-v2-panel h3 { margin:2px 0 8px; font-size:15px; }
.setup-v2-panel p { margin:0; color:#8190a8; font-size:12px; line-height:1.65; }
.setup-v2-panel code { color:#5de2ff; }
.setup-v2-warning { display:flex; gap:13px; margin-top:12px; padding:14px 16px; border:1px solid rgba(255,184,77,.28); border-radius:11px; background:rgba(255,184,77,.055); color:#a9b5c9; font-size:12px; line-height:1.55; }
.setup-v2-warning b { color:#ffc66f; }
@media(max-width:900px){.setup-v2-hero{grid-template-columns:1fr;padding-top:38px}.setup-v2-status{max-width:520px}.setup-v2-portal{right:-80px;top:-70px;width:720px;opacity:.4}.setup-v2-workspace{grid-template-columns:1fr}.setup-v2-device-nav{position:static}.setup-v2-tabs{grid-template-columns:1fr 1fr}}
@media(max-width:620px){.setup-v2-hero{min-height:auto;padding-bottom:28px}.setup-v2-hero h1{font-size:46px}.setup-v2-portal{width:600px;right:-250px;top:-60px;opacity:.32}.setup-v2-actions{display:grid}.setup-v2-panel.active{grid-template-columns:1fr}.setup-v2-tabs{grid-template-columns:1fr 1fr}.setup-v2-content{padding:15px}.setup-v2-content-head{align-items:flex-start}.setup-v2-warning{flex-direction:column}}

@media (max-width: 850px) {
  .vpn-v2-hero { grid-template-columns: 1fr; gap: 20px; }
  .vpn-v2-portal { width: min(560px, 78%); right: -7%; opacity: .4; }
  .vpn-v2-hero-copy { max-width: 70%; }
  .vpn-v2-orbit-card { max-width: none; justify-self: stretch; }
  .vpn-v2-workspace { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .vpn-v2-hero { min-height: auto; padding-top: 32px; padding-bottom: 24px; }
  .vpn-v2-hero::after { background: linear-gradient(90deg, rgba(2,7,19,.98), rgba(2,7,19,.54) 76%, transparent); }
  .vpn-v2-portal { width: 100%; right: -34%; top: -4px; opacity: .38; }
  .vpn-v2-hero-copy { max-width: 88%; }
  .vpn-v2-hero h1 { font-size: clamp(42px, 12.5vw, 58px); }
  .vpn-v2-hero-copy > p { font-size: 14px; }
  .vpn-v2-metrics { grid-template-columns: repeat(3,1fr); gap: 6px; }
  .vpn-v2-metrics div { padding: 9px 8px; }
  .vpn-v2-metrics strong { font-size: 12px; }
  .vpn-v2-orbit-visual { min-height: 122px; }
  .vpn-v2-console { padding: 20px; }
  .vpn-v2-launch { grid-template-columns: 1fr; gap: 10px; }
  .vpn-v2-info-card ul { grid-template-columns: 1fr 1fr; }
  .vpn-v2 .result .form-actions { flex-direction: column; }
  .vpn-v2-modal { padding: 12px; }
  .vpn-v2-modal-card { max-height: calc(100vh - 24px); padding: 22px 18px; border-radius: 14px; }
}

/* Novaro Space v3 — inverted light cosmos */
:is(.landing-v2,.vpn-v2,.setup-v2,.legal-v2) {
  color-scheme: light;
  --void: #f4f8f5;
  --deep: #eaf2ed;
  --panel: rgba(255,255,255,.82);
  --panel-solid: #fff;
  --ink: #101713;
  --muted: #68736d;
  --line: #dce6e0;
  --cyan: #18a874;
  --blue: #14865f;
  --violet: #396f5a;
  --pink: #68b895;
  --green: #18a874;
  --danger: #c84e5d;
  background: #f4f8f5;
  color: #101713;
}
:is(.landing-v2,.vpn-v2,.setup-v2,.legal-v2) #space-canvas {
  opacity: 1;
  background:
    radial-gradient(circle at 7% 14%,rgba(17,24,20,.34) 0 1px,transparent 1.5px),
    radial-gradient(circle at 18% 31%,rgba(17,24,20,.24) 0 1px,transparent 1.5px),
    radial-gradient(circle at 31% 9%,rgba(17,24,20,.28) 0 1px,transparent 1.5px),
    radial-gradient(circle at 43% 24%,rgba(17,137,91,.3) 0 1px,transparent 1.5px),
    radial-gradient(circle at 57% 7%,rgba(17,24,20,.24) 0 1px,transparent 1.5px),
    radial-gradient(circle at 68% 37%,rgba(17,24,20,.28) 0 1px,transparent 1.5px),
    radial-gradient(circle at 82% 18%,rgba(17,137,91,.28) 0 1px,transparent 1.5px),
    radial-gradient(circle at 93% 43%,rgba(17,24,20,.3) 0 1px,transparent 1.5px),
    radial-gradient(circle at 12% 76%,rgba(17,24,20,.22) 0 1px,transparent 1.5px),
    radial-gradient(circle at 49% 69%,rgba(17,24,20,.22) 0 1px,transparent 1.5px),
    radial-gradient(circle at 74% 84%,rgba(17,137,91,.24) 0 1px,transparent 1.5px),
    radial-gradient(circle at 91% 71%,rgba(17,24,20,.25) 0 1px,transparent 1.5px),
    radial-gradient(circle at 78% 12%, rgba(82,190,142,.17), transparent 30%),
    radial-gradient(circle at 14% 56%, rgba(183,225,204,.25), transparent 28%),
    linear-gradient(180deg,#fbfdfb 0,#f2f7f4 72%,#edf5f0 100%);
}
:is(.landing-v2,.vpn-v2,.setup-v2,.legal-v2) .noise { opacity: .018; mix-blend-mode: multiply; }
:is(.landing-v2,.vpn-v2,.setup-v2,.legal-v2) .site-shell { background: transparent; }

.v2-header { border-color: rgba(28,80,56,.12); background: rgba(250,253,251,.84); box-shadow: 0 1px 0 rgba(255,255,255,.8); }
.v2-brand { gap: 9px; color: #101713; font-size: 19px; font-weight: 790; }
.v2-brand-mark { display: block; width: 40px; height: 40px; object-fit: contain; filter: grayscale(1) sepia(1) saturate(2.4) hue-rotate(86deg) brightness(.76); }
.v2-menu a { color: #647169; }
.v2-menu a:hover,.v2-menu a.active { color: #0d6f4c; }
.v2-menu a.active:not(.v2-login) { text-shadow: none; }
.v2-menu .v2-login { color: #0d6f4c; border-color: rgba(19,143,95,.36); background: rgba(255,255,255,.56); }
.v2-menu .v2-login:hover,.v2-menu .v2-login.active { color: #fff; border-color: #14865f; background: #14865f; }
.v2-menu-button span { background: #18251e; }

.v2-kicker { color: #0d7b55; }
.v2-portal,.vpn-v2-portal,.setup-v2-portal { filter: grayscale(.8) sepia(.75) saturate(1.9) hue-rotate(86deg) brightness(1.08) contrast(.9) drop-shadow(0 24px 46px rgba(26,105,75,.16)); }
.v2-portal { opacity: .7; }
.v2-hero::after { background: linear-gradient(90deg,#f4f8f5 0 30%,rgba(244,248,245,.9) 45%,rgba(244,248,245,.18) 72%,transparent 88%); }
.v2-hero h1 span,.vpn-v2-hero h1 span,.setup-v2-hero h1 span { color: transparent; background: linear-gradient(95deg,#08764f,#20aa78 60%,#75b997); background-clip: text; -webkit-background-clip: text; }
.v2-hero-copy > p,.vpn-v2-hero-copy > p,.setup-v2-hero-copy > p { color: #5f6d65; }
.v2-button { color: #17241d; border-color: #cfddd5; background: rgba(255,255,255,.76); box-shadow: 0 8px 24px rgba(32,68,50,.045); }
.v2-button:hover { border-color: #8bbda4; box-shadow: 0 12px 28px rgba(28,96,66,.1); }
.v2-button.primary { color: #fff; background: linear-gradient(115deg,#0f865d,#1aaa77); box-shadow: 0 14px 34px rgba(20,134,95,.2); }
.v2-button.ghost b { border-color: #405047; }
.v2-micro { color: #69766f; }
.v2-micro span::first-letter { color: #14865f; }

.v2-status-card,.vpn-v2-orbit-card,.setup-v2-status {
  color: #f3faf6;
  border-color: rgba(79,198,143,.46);
  background: radial-gradient(circle at 100% 0,rgba(47,156,108,.24),transparent 42%),linear-gradient(145deg,#17251e,#0d1712 72%);
  box-shadow: 0 24px 60px rgba(19,48,34,.19),inset 0 1px 0 rgba(255,255,255,.07);
}
.v2-status-top,.vpn-v2-orbit-head,.vpn-v2-orbit-foot,.setup-v2-status > div { border-color: rgba(196,237,215,.15); }
.v2-status-top em,.v2-bars,.v2-status-grid span,.vpn-v2-orbit-head b,.vpn-v2-orbit-visual span { color: #6ee0ae; }
.v2-status-grid span,.vpn-v2-orbit-visual::before { border-color: #37b77d; }
.v2-status-grid small,.vpn-v2-orbit-foot,.vpn-v2-orbit-visual small,.setup-v2-status ul { color: #a4b9ad; }
.vpn-v2-orbit-visual::after { border-color: #80c6a5; box-shadow: 0 0 14px rgba(72,183,126,.2); }

.v2-card,.vpn-v2-console,.vpn-v2-info-card,.vpn-v2-setup-link,.setup-v2-device-nav,.setup-v2-content {
  border-color: #dce6e0;
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 40px rgba(31,64,47,.055),inset 0 1px 0 #fff;
}
.v2-feature p,.v2-step p,.vpn-v2-console-lead,.vpn-v2-launch p,.vpn-v2-info-card p,.setup-v2-panel p { color: #68756e; }
.v2-icon { color: #11855b !important; border-color: #a5d4bd; background: #e6f5ed; box-shadow: none; }
.v2-section-title > span { color: #0e7652; border-color: #9fcdb6; background: #edf8f2; box-shadow: none; }
.v2-step > b { color: #fff; border-color: #14865f; background: #14865f; }
.v2-step-icon { color: #0f8159; border-color: #b6dbc8; background: #eaf6f0; }

.v2-device { --device-color: #127b56; color: #27372f; border-color: #d7e4dd; background: rgba(255,255,255,.82); }
.v2-device.android,.v2-device.ios,.v2-device.windows,.v2-device.macos,.v2-device.linux { --device-color: #16875e; }
.v2-device-logo.finder rect { fill: rgba(22,135,94,.08); }
.v2-device:hover { border-color: #82bea1; background: #f2faf6; box-shadow: 0 10px 24px rgba(25,108,72,.1); }

.v2-plan { color: #142019; border-color: #9ecfb6; background: radial-gradient(circle at 100% 0,rgba(117,201,158,.16),transparent 38%),rgba(255,255,255,.9); box-shadow: 0 16px 44px rgba(31,64,47,.055); }
.v2-plan.plus { border-color: #cadbd2; background: linear-gradient(145deg,#f6faf7,#eaf3ee); }
.v2-price,.v2-plan.plus .v2-price { color: #0d7b55; }
.v2-price small,.v2-plan ul { color: #647169; }
.v2-plan li::before { color: #159266; }
.v2-plan-orbit { color: rgba(21,146,102,.32); }
.v2-coming { color: #fff; background: #526c5f; }
.v2-faq details { border-color: #dbe6df; background: rgba(255,255,255,.82); }
.v2-faq summary::after,.v2-faq p { color: #69766f; }
.v2-faq-link { color: #0d7b55; }
.v2-cta { border-color: #9dceb5; background: radial-gradient(circle at 100% 100%,rgba(98,196,145,.2),transparent 42%),linear-gradient(90deg,#fff,#edf8f2); box-shadow: 0 20px 50px rgba(34,84,57,.07); }
.v2-rocket { color: #fff; border-color: #14865f; background: #14865f; box-shadow: 0 12px 28px rgba(20,134,95,.18); }
.v2-cta p { color: #68756e; }
.v2-footer { border-color: #d9e4dd; background: rgba(249,252,250,.72); }
.v2-footer nav a { color: #68756e; }
.v2-footer p { color: #7b8780; }
.v2-footer > div { grid-template-columns: minmax(175px,.72fr) minmax(360px,1.55fr) minmax(220px,.9fr); }
.v2-footer nav { flex-wrap: wrap; justify-content: center; gap: 8px 20px; }
.v2-footer nav a:hover { color: #0d7b55; }
.v2-footer-meta { justify-self: end; text-align: right; }
.v2-footer-meta > a { color: #0d7b55; font-size: 11px; font-weight: 700; text-decoration: none; }
.v2-footer-meta p { margin-top: 6px; }

.vpn-v2-hero::after { background: linear-gradient(90deg,#f4f8f5 0 34%,rgba(244,248,245,.9) 50%,rgba(244,248,245,.12) 82%); }
.vpn-v2-portal { opacity: .58; }
.vpn-v2-metrics div { border-color: #d5e4dc; background: rgba(255,255,255,.75); }
.vpn-v2-metrics strong { color: #18251e; }
.vpn-v2-metrics span { color: #748078; }
.vpn-v2 .field label { color: #4e5d55; }
.vpn-v2 .field input { color: #142019; border-color: #cbdcd2; background: #fff; }
.vpn-v2 .field input:focus { border-color: #35a878; box-shadow: 0 0 0 4px rgba(53,168,120,.1); }
.vpn-v2 .status-box { color: #506159; border-color: #cfe3d8; background: #f0f8f4; }
.vpn-v2-info-card li { border-color: #dbe7e0; background: #f7faf8; }
.vpn-v2-info-card li b { color: #0d7b55; }
.vpn-v2-info-card li span,.vpn-v2-setup-link small { color: #748078; }
.vpn-v2-info-icon { color: #0f845b; border-color: #a6d5be; background: #e8f6ef; }
.vpn-v2-setup-link { color: #18251e; }
.vpn-v2-setup-link:hover { border-color: #84bfa1; }
.vpn-v2-setup-link > b { color: #0d7b55; }
.vpn-v2-modal-backdrop { background: rgba(31,43,36,.36); backdrop-filter: blur(10px); }
.vpn-v2-modal-card { color: #101713; border-color: #a5d2bb; background: radial-gradient(circle at 100% 0,rgba(92,190,139,.15),transparent 40%),#fbfdfb; box-shadow: 0 32px 90px rgba(25,51,37,.22),inset 0 1px 0 #fff; }
.vpn-v2-modal-lead { color: #68756e; }
.vpn-v2-modal-close { color: #425148; border-color: #cfddd5; background: #fff; }
.vpn-v2-modal-close:hover { color: #0d6f4c; border-color: #88bda2; }
.vpn-v2 .result-code { color: #0c704c; border-color: #b8dcca; background: #edf8f2; }
.vpn-v2 .meta { color: #66736c; }

.setup-v2-portal { opacity: .42; }
.setup-v2-status li::before { color: #65d7a5; }
.setup-v2-tab { color: #23332b; border-color: #d9e5de; background: #f7faf8; }
.setup-v2-tab:hover { border-color: #9fcdb6; }
.setup-v2-tab.active { color: #0c704d; border-color: #8cc4a7; background: #eaf6f0; box-shadow: inset 3px 0 #16875e; }
.setup-v2-tab span { color: #738078; }
.setup-v2-platform { color: #0c7651; border-color: #a4d1ba; background: #edf8f2; }
.setup-v2-panel article { border-color: #dce7e1; background: #f8fbf9; }
.setup-v2-panel article > span { color: #0d7b55; border-color: #abd5c0; background: #eaf6f0; box-shadow: none; }
.setup-v2-panel code { color: #0d7b55; }
.setup-v2-warning { color: #6b6556; border-color: #e4d5ad; background: #fff9e9; }
.setup-v2-warning b { color: #8c6a20; }

.setup-v2-panel-intro { grid-column: 1/-1; min-height: 82px; display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; padding: 15px 17px; border: 1px solid #b9ddcb; border-radius: 12px; background: linear-gradient(105deg,#edf8f2,#f8fbf9); }
.setup-v2-app-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; color: #fff; background: #14865f; font-size: 20px; font-weight: 850; box-shadow: 0 10px 24px rgba(20,134,95,.17); }
.setup-v2-panel-intro small,.setup-v2-panel-intro h3,.setup-v2-panel-intro p { display: block; margin: 0; }
.setup-v2-panel-intro small { color: #738078; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.setup-v2-panel-intro h3 { margin-top: 2px; color: #17241d; font-size: 16px; }
.setup-v2-panel-intro p { margin-top: 3px; color: #68756e; font-size: 11px; }
.setup-v2-panel-intro > a { color: #0d7b55; font-size: 12px; font-weight: 750; text-decoration: none; }

/* Detailed setup guides */
.guide-v2 { overflow-x: hidden; }
.guide-hero { padding-top: 46px; padding-bottom: 42px; }
.guide-breadcrumb { display: flex; gap: 9px; align-items: center; margin-bottom: 28px; color: #758179; font-size: 11px; }
.guide-breadcrumb a { color: #0d7b55; font-weight: 750; text-decoration: none; }
.guide-breadcrumb b { color: #24342c; }
.guide-hero-grid { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 54px; align-items: center; }
.guide-hero h1 { max-width: 800px; margin: 13px 0 18px; color: #111914; font-size: clamp(48px,6vw,78px); line-height: .96; letter-spacing: -.06em; }
.guide-hero h1 span { color: transparent; background: linear-gradient(95deg,#08764f,#20aa78 60%,#75b997); background-clip: text; -webkit-background-clip: text; }
.guide-hero-grid > div > p { max-width: 700px; margin: 0; color: #5f6d65; font-size: 17px; line-height: 1.65; }
.guide-hero code,.guide-content code { color: #0b7450; font-size: .92em; overflow-wrap: anywhere; }
.guide-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.guide-app-card { min-height: 190px; display: grid; grid-template-columns: auto 1fr; gap: 18px; align-content: center; position: relative; padding: 25px; overflow: hidden; border: 1px solid rgba(79,198,143,.44); border-radius: 16px; color: #f3faf6; background: radial-gradient(circle at 100% 0,rgba(47,156,108,.28),transparent 48%),linear-gradient(145deg,#17251e,#0d1712 72%); box-shadow: 0 24px 60px rgba(19,48,34,.17); }
.guide-app-card > b { position: absolute; right: 15px; top: 12px; color: rgba(110,224,174,.42); font-size: 12px; }
.guide-app-mark { width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid #43bb83; border-radius: 16px; color: #082116; background: #6ee0ae; font-size: 25px; font-weight: 900; box-shadow: 0 0 28px rgba(110,224,174,.2); }
.guide-app-card small,.guide-app-card strong,.guide-app-card p { display: block; }
.guide-app-card small { color: #8eaa9a; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.guide-app-card strong { margin-top: 5px; font-size: 24px; }
.guide-app-card p { margin: 4px 0 0; color: #a8bbb0; font-size: 11px; }
.guide-layout { display: grid; grid-template-columns: 220px minmax(0,840px); justify-content: center; gap: 54px; padding-top: 18px; padding-bottom: 72px; }
.guide-side { position: sticky; top: 86px; align-self: start; padding: 20px; border: 1px solid #d7e4dd; border-radius: 14px; background: rgba(255,255,255,.84); box-shadow: 0 12px 34px rgba(31,64,47,.04); }
.guide-side > strong { display: block; margin-bottom: 14px; color: #1b2a22; font-size: 11px; letter-spacing: .07em; text-transform: uppercase; }
.guide-side nav { display: grid; gap: 5px; }
.guide-side nav a { padding: 10px 11px; border-radius: 9px; color: #647169; font-size: 12px; text-decoration: none; }
.guide-side nav a:hover { background: #f0f7f3; }
.guide-side nav a.active { color: #fff; background: #14865f; font-weight: 750; }
.guide-side-note { margin-top: 16px; padding-top: 15px; color: #7a867f; border-top: 1px solid #e0e9e4; font-size: 10px; line-height: 1.55; }
.guide-content { min-width: 0; }
.guide-before { display: grid; grid-template-columns: auto 1fr; gap: 15px; align-items: start; margin-bottom: 38px; padding: 18px 20px; border: 1px solid #b8ddca; border-radius: 13px; background: #edf8f2; }
.guide-before > span { padding: 6px 9px; border-radius: 7px; color: #fff; background: #14865f; font-size: 9px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.guide-before p { margin: 1px 0 0; color: #536b5e; font-size: 13px; line-height: 1.65; }
.guide-before a,.guide-steps a { color: #0d7b55; font-weight: 750; text-underline-offset: 3px; }
.guide-steps { display: grid; gap: 12px; margin: 18px 0 38px; padding: 0; list-style: none; counter-reset: none; }
.guide-steps > li { display: grid; grid-template-columns: auto 1fr; gap: 17px; padding: 21px; border: 1px solid #d9e5de; border-radius: 14px; background: rgba(255,255,255,.86); box-shadow: 0 12px 32px rgba(31,64,47,.035); }
.guide-steps > li > span { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid #a7d5be; border-radius: 50%; color: #0d7b55; background: #eaf6f0; font-size: 12px; font-weight: 800; }
.guide-steps h3 { margin: 1px 0 8px; color: #17241d; font-size: 18px; }
.guide-steps p { margin: 0; color: #5f6d65; font-size: 14px; line-height: 1.72; }
.guide-steps a { display: inline-block; margin-top: 10px; font-size: 12px; }
.guide-check { display: flex; justify-content: space-between; gap: 24px; align-items: center; margin: 8px 0 42px; padding: 24px; border: 1px solid rgba(79,198,143,.44); border-radius: 15px; color: #f3faf6; background: radial-gradient(circle at 100% 0,rgba(47,156,108,.25),transparent 44%),linear-gradient(145deg,#17251e,#0d1712 72%); }
.guide-check > div { display: flex; gap: 15px; align-items: center; }
.guide-check > div > span { width: 43px; height: 43px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; color: #092117; background: #6ee0ae; font-weight: 900; }
.guide-check h2 { margin: 0 0 5px; font-size: 19px; }
.guide-check p { max-width: 520px; margin: 0; color: #a8bbb0; font-size: 12px; line-height: 1.6; }
.guide-check .v2-button { flex: 0 0 auto; min-height: 42px; color: #fff; border-color: rgba(110,224,174,.42); background: rgba(255,255,255,.05); font-size: 11px; }
.guide-troubles details { margin-bottom: 9px; border: 1px solid #dbe6df; border-radius: 11px; background: rgba(255,255,255,.82); }
.guide-troubles summary { padding: 15px 17px; color: #27372f; cursor: pointer; list-style: none; font-size: 13px; font-weight: 700; }
.guide-troubles summary::after { content: '+'; float: right; color: #0d7b55; }
.guide-troubles details[open] summary::after { content: '−'; }
.guide-troubles details p { margin: 0; padding: 0 17px 16px; color: #68756e; font-size: 12px; line-height: 1.65; }
.guide-security { display: grid; grid-template-columns: auto 1fr; gap: 14px; margin-top: 24px; padding: 17px 19px; border: 1px solid #e5d5ad; border-radius: 12px; background: #fff9e9; }
.guide-security b { color: #85631d; }
.guide-security p { margin: 0; color: #6e6651; font-size: 12px; line-height: 1.65; }

/* Legal center — readable documents in the inverted cosmos system */
.legal-v2 { max-width: 100%; overflow-x: hidden; }
.legal-v2 .site-shell { min-height: 100vh; }
.legal-hero { padding-top: 82px; padding-bottom: 42px; text-align: center; }
.legal-hero h1 { max-width: 900px; margin: 16px auto 22px; font-size: clamp(48px,6.6vw,84px); line-height: .96; letter-spacing: -.06em; }
.legal-hero h1 span { color: transparent; background: linear-gradient(95deg,#08764f,#20aa78 60%,#75b997); background-clip: text; -webkit-background-clip: text; }
.legal-hero > p { max-width: 780px; margin: 0 auto; color: #5f6d65; font-size: 18px; line-height: 1.7; }
.legal-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 28px; }
.legal-meta span { padding: 8px 12px; border: 1px solid #d8e5de; border-radius: 999px; color: #627169; background: rgba(255,255,255,.72); font-size: 11px; }
.legal-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; padding-top: 18px; padding-bottom: 32px; }
.legal-card { min-height: 220px; display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: start; padding: 27px; color: #17241d; border: 1px solid #d7e4dd; border-radius: 16px; background: rgba(255,255,255,.88); box-shadow: 0 16px 44px rgba(31,64,47,.055); text-decoration: none; transition: transform .2s ease,border-color .2s ease,box-shadow .2s ease; }
.legal-card:hover { transform: translateY(-3px); border-color: #8fc6aa; box-shadow: 0 22px 50px rgba(28,96,66,.1); }
.legal-card > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #14865f; font-size: 11px; font-weight: 800; }
.legal-card h2 { margin: 3px 0 12px; font-size: 23px; letter-spacing: -.03em; }
.legal-card p { margin: 0; color: #68756e; font-size: 14px; line-height: 1.65; }
.legal-card > b { color: #12815a; font-size: 24px; }
.legal-mission { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 10px; padding: 30px; border: 1px solid rgba(79,198,143,.42); border-radius: 16px; color: #f3faf6; background: radial-gradient(circle at 100% 0,rgba(47,156,108,.25),transparent 42%),linear-gradient(145deg,#17251e,#0d1712 72%); box-shadow: 0 24px 60px rgba(19,48,34,.16); }
.legal-mission > div { display: flex; gap: 20px; align-items: center; }
.legal-symbol { width: 58px; height: 58px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid #42b881; border-radius: 50%; color: #6ee0ae; font-size: 30px; }
.legal-mission h2 { margin: 0 0 7px; font-size: 22px; }
.legal-mission p { max-width: 720px; margin: 0; color: #a8bbb0; font-size: 13px; line-height: 1.6; }
.legal-compare { padding-top: 58px; padding-bottom: 20px; }
.legal-table-wrap { overflow-x: auto; border: 1px solid #d9e5de; border-radius: 14px; background: rgba(255,255,255,.86); box-shadow: 0 14px 40px rgba(31,64,47,.045); }
.legal-table { width: 100%; border-collapse: collapse; min-width: 670px; color: #27372f; font-size: 13px; }
.legal-table th,.legal-table td { padding: 16px 18px; border-bottom: 1px solid #e2ebe6; text-align: left; vertical-align: top; line-height: 1.55; }
.legal-table thead th { color: #fff; background: #16241d; font-size: 11px; letter-spacing: .04em; text-transform: uppercase; }
.legal-table tbody th { width: 23%; color: #142019; background: #f5f9f7; }
.legal-table tr:last-child th,.legal-table tr:last-child td { border-bottom: 0; }
.legal-live { color: #0b7a52; }
.legal-note { margin: 14px 0 0; color: #738078; font-size: 12px; line-height: 1.65; }
.legal-contact { margin-top: 40px; margin-bottom: 58px; padding: 30px; border: 1px solid #d8e5de; border-radius: 16px; background: rgba(255,255,255,.82); }
.legal-contact h2 { margin: 8px 0 10px; font-size: 31px; }
.legal-contact p { margin: 0; color: #68756e; line-height: 1.8; }
.legal-contact a,.legal-content a { color: #0d7b55; text-underline-offset: 3px; }

.legal-document { display: grid; grid-template-columns: 235px minmax(0,820px); justify-content: center; gap: 70px; padding-top: 58px; padding-bottom: 72px; }
.legal-toc { position: sticky; top: 94px; align-self: start; display: grid; gap: 24px; padding: 22px; border: 1px solid #d9e5de; border-radius: 14px; background: rgba(255,255,255,.8); box-shadow: 0 12px 34px rgba(31,64,47,.04); }
.legal-toc > a { color: #0d7b55; font-size: 12px; font-weight: 750; text-decoration: none; }
.legal-toc strong { color: #1a2921; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.legal-toc nav { display: grid; gap: 13px; }
.legal-toc nav a { color: #69766f; font-size: 12px; line-height: 1.35; text-decoration: none; }
.legal-toc nav a:hover { color: #0d7b55; }
.legal-content { min-width: 0; }
.legal-content > h1 { margin: 14px 0 20px; font-size: clamp(43px,5.8vw,68px); line-height: .98; letter-spacing: -.055em; overflow-wrap: anywhere; hyphens: auto; }
.legal-lead { margin: 0 0 38px; padding-bottom: 30px; color: #5f6d65; border-bottom: 1px solid #dbe6df; font-size: 17px; line-height: 1.7; }
.legal-content section { scroll-margin-top: 92px; margin-top: 44px; }
.legal-content section:first-of-type { margin-top: 0; }
.legal-content h2 { margin: 0 0 16px; color: #15231b; font-size: 27px; letter-spacing: -.035em; }
.legal-content h3 { margin: 27px 0 10px; color: #24352c; font-size: 18px; }
.legal-content p,.legal-content li { color: #536159; font-size: 15px; line-height: 1.78; }
.legal-content p { margin: 0 0 15px; }
.legal-content ul { margin: 12px 0 18px; padding-left: 23px; }
.legal-content li { margin: 7px 0; padding-left: 3px; }
.legal-content li::marker { color: #159266; }
.legal-callout { margin: 18px 0 22px; padding: 20px 22px; border: 1px solid #b9decb; border-radius: 13px; background: #edf8f2; }
.legal-callout b { display: block; margin-bottom: 7px; color: #0d704d; font-size: 16px; }
.legal-callout p { margin: 0; color: #536b5e; font-size: 14px; }
.legal-callout.warning { border-color: #e5d5ad; background: #fff9e9; }
.legal-callout.warning b { color: #85631d; }
.legal-callout.warning p { color: #6e6651; }
.data-table tbody th { width: 19%; }
.legal-rules { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.legal-rules article { padding: 18px; border: 1px solid #d7e5dd; border-radius: 12px; background: rgba(255,255,255,.78); }
.legal-rules b { color: #0d704d; }
.legal-rules p { margin: 7px 0 0; font-size: 13px; line-height: 1.6; }
.legal-prohibited { padding: 4px 0 0 !important; list-style: none; }
.legal-prohibited li { margin: 10px 0; padding: 14px 16px; border-left: 3px solid #d5a74b; border-radius: 0 10px 10px 0; background: rgba(255,250,238,.75); }
.legal-prohibited b { color: #3b3528; }
.legal-contact-inline { display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; margin-top: 28px; padding: 16px 18px; border: 1px solid #d7e5dd; border-radius: 12px; background: rgba(255,255,255,.76); }
.legal-contact-inline b { color: #17241d; }
.legal-contact-inline a { font-size: 13px; font-weight: 700; text-decoration: none; }

@media (max-width: 860px) {
  .v2-menu { border-color: #d3e1d9; background: rgba(252,254,252,.98); box-shadow: 0 22px 48px rgba(27,54,39,.14); }
  .v2-menu a { border-radius: 8px; }
  .v2-menu a:hover { background: #edf7f2; }
  .v2-footer > div { grid-template-columns: 1fr; justify-items: start; gap: 15px; padding: 26px 0; }
  .v2-footer nav { justify-content: flex-start; }
  .v2-footer-meta { justify-self: start; text-align: left; }
  .legal-grid { grid-template-columns: 1fr; }
  .legal-card { min-height: 0; }
  .legal-document { grid-template-columns: 1fr; gap: 28px; }
  .legal-toc { position: static; }
  .legal-toc nav { display: flex; flex-wrap: wrap; gap: 9px 16px; }
  .guide-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .guide-app-card { min-height: 145px; }
  .guide-layout { grid-template-columns: 1fr; gap: 24px; }
  .guide-side { position: static; }
  .guide-side nav { grid-template-columns: repeat(5,1fr); }
  .guide-side nav a { text-align: center; }
}
@media (max-width: 720px) {
  .v2-brand-mark { width: 36px; height: 36px; }
  .v2-portal { opacity: .48; filter: grayscale(.8) sepia(.75) saturate(1.8) hue-rotate(86deg) brightness(1.1) contrast(.86) drop-shadow(0 18px 34px rgba(26,105,75,.12)); }
  .v2-hero::after { background: linear-gradient(90deg,rgba(244,248,245,.98),rgba(244,248,245,.72) 67%,rgba(244,248,245,.08) 92%); }
  .legal-hero { padding-top: 48px; }
  .legal-hero h1 { font-size: 47px; }
  .legal-hero > p { font-size: 15px; }
  .legal-card { padding: 20px; }
  .legal-mission { align-items: stretch; flex-direction: column; padding: 22px; }
  .legal-mission > div { align-items: flex-start; }
  .legal-mission .v2-button { width: 100%; }
  .legal-document { padding-top: 32px; padding-bottom: 48px; }
  .legal-content > h1 { font-size: clamp(36px,10.4vw,43px); }
  .legal-content h2 { font-size: 24px; }
  .legal-content p,.legal-content li { font-size: 14px; }
  .legal-rules { grid-template-columns: 1fr; }
  .legal-table-wrap { width: 100%; max-width: calc(100vw - 28px); contain: inline-size; }
  .v2-devices { grid-template-columns: repeat(2,1fr); }
  .guide-hero { padding-top: 28px; padding-bottom: 30px; }
  .guide-hero h1 { font-size: clamp(40px,11.5vw,52px); overflow-wrap: anywhere; }
  .guide-hero-grid > div > p { font-size: 14px; }
  .guide-actions { display: grid; }
  .guide-app-card { min-height: 130px; padding: 20px; }
  .guide-side nav { grid-template-columns: 1fr 1fr; }
  .guide-before { grid-template-columns: 1fr; }
  .guide-steps > li { padding: 17px; }
  .guide-check { align-items: stretch; flex-direction: column; }
  .guide-check .v2-button { width: 100%; }
}
@media (max-width: 560px) {
  .vpn-v2-hero::after { background: linear-gradient(90deg,rgba(244,248,245,.98),rgba(244,248,245,.72) 76%,transparent); }
  .vpn-v2-portal { opacity: .32; }
  .legal-card { grid-template-columns: auto 1fr; }
  .legal-card > b { display: none; }
  .legal-symbol { width: 46px; height: 46px; }
  .legal-table th,.legal-table td { padding: 13px 14px; }
  .setup-v2-panel-intro { grid-template-columns: auto 1fr; }
  .setup-v2-panel-intro > a { grid-column: 1/-1; padding-top: 10px; border-top: 1px solid #d2e5da; }
  .guide-breadcrumb { margin-bottom: 20px; }
  .guide-app-card { grid-template-columns: auto 1fr; }
  .guide-steps > li { grid-template-columns: 34px 1fr; gap: 12px; }
  .guide-steps > li > span { width: 34px; height: 34px; }
  .guide-steps h3 { font-size: 16px; }
  .guide-steps p { font-size: 13px; }
  .guide-security { grid-template-columns: 1fr; }
}
