:root {
  --bg: #050807;
  --bg-soft: #09100d;
  --panel: rgba(13, 22, 18, 0.72);
  --panel-solid: #0d1612;
  --line: rgba(218, 255, 232, 0.12);
  --line-strong: rgba(218, 255, 232, 0.22);
  --text: #eef7f1;
  --muted: #8e9d94;
  --green: #41f59b;
  --green-strong: #16d983;
  --green-soft: #a4ffd1;
  --cyan: #7be8dd;
  --max: 1200px;
  --radius-lg: 32px;
  --radius-md: 22px;
  --font-display: "Unbounded", "Arial Black", sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(37, 138, 88, 0.12), transparent 27rem),
    var(--bg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
::selection { color: #041008; background: var(--green); }

.noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .035;
  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='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  left: 0;
  top: 0;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(57, 246, 151, .07);
  filter: blur(65px);
  transform: translate3d(-50%, -50%, 0);
  opacity: 0;
  transition: opacity .4s ease;
}
body:hover .cursor-glow { opacity: 1; }

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: flex;
  align-items: center;
  width: min(calc(100% - 32px), var(--max));
  height: 68px;
  padding: 0 12px 0 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(5, 9, 7, .66);
  box-shadow: 0 16px 60px rgba(0, 0, 0, .22);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
  transition: top .35s ease, background .35s ease, border-color .35s ease;
}
.site-header.is-scrolled { top: 10px; background: rgba(5, 9, 7, .88); border-color: var(--line-strong); }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand__mark {
  display: grid;
  width: 38px;
  height: 38px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(65, 245, 155, .25);
  border-radius: 13px;
  background: rgba(65, 245, 155, .07);
  box-shadow: inset 0 0 18px rgba(65, 245, 155, .06);
}
.brand__mark img { width: 100%; height: 100%; object-fit: cover; }
.brand__copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand__copy strong { font-size: 14px; letter-spacing: -.02em; }
.brand__copy small { margin-top: 5px; color: #708078; font-size: 8px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 3px; margin: auto; padding: 5px; border: 1px solid rgba(255,255,255,.035); border-radius: 15px; background: rgba(255,255,255,.025); }
.main-nav a { padding: 8px 15px; border-radius: 11px; color: #9aa7a0; font-size: 13px; font-weight: 600; transition: color .2s, background .2s; }
.main-nav a:hover { color: var(--text); background: rgba(255,255,255,.05); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.login-link { padding: 8px; color: #a7b4ac; font-size: 13px; font-weight: 600; }
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  overflow: hidden;
  border: 1px solid rgba(127, 255, 187, .55);
  border-radius: 16px;
  color: #06110a;
  background: linear-gradient(135deg, #71ffb3 0%, #2de78f 70%, #81f6d8 150%);
  box-shadow: 0 12px 40px rgba(32, 228, 134, .17), inset 0 1px rgba(255,255,255,.5);
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease;
}
.button::before { position: absolute; inset: 0; content: ""; background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,.55), transparent 70%); transform: translateX(-120%); transition: transform .7s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 18px 50px rgba(32, 228, 134, .28), inset 0 1px rgba(255,255,255,.5); }
.button:hover::before { transform: translateX(120%); }
.button--compact { min-width: 138px; padding: 11px 16px; font-size: 13px; }
.button--large { min-height: 60px; padding: 0 24px; border-radius: 18px; font-size: 15px; }
.button__icon { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; background: rgba(4, 24, 13, .11); }
.menu-button { display: none; width: 42px; height: 42px; padding: 0; border: 0; border-radius: 12px; background: rgba(255,255,255,.04); }
.menu-button span { display: block; width: 18px; height: 1px; margin: 5px auto; background: var(--text); transition: transform .25s; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr);
  align-items: center;
  min-height: 100svh;
  padding: 140px max(24px, calc((100vw - var(--max)) / 2)) 90px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before { position: absolute; inset: 0; z-index: -3; content: ""; background-image: linear-gradient(rgba(130,255,186,.032) 1px, transparent 1px), linear-gradient(90deg, rgba(130,255,186,.032) 1px, transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(to bottom, black, transparent 86%); }
.hero::after { position: absolute; inset: auto 0 0; height: 180px; z-index: 1; content: ""; background: linear-gradient(transparent, var(--bg)); pointer-events: none; }
.network-canvas, .cta-canvas { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; opacity: .78; object-fit: cover; contain: strict; }
.hero__orb { position: absolute; z-index: -2; border-radius: 50%; filter: blur(2px); opacity: .6; }
.hero__orb--one { width: 44vw; height: 44vw; right: -15vw; top: 8%; background: radial-gradient(circle, rgba(32, 220, 132, .14), transparent 68%); }
.hero__orb--two { width: 26vw; height: 26vw; left: 20%; bottom: -12%; background: radial-gradient(circle, rgba(42, 184, 170, .08), transparent 68%); }
.hero__content { position: relative; z-index: 2; max-width: 720px; }
.eyebrow, .kicker { display: inline-flex; align-items: center; gap: 9px; color: #9eb0a6; font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(8, 17, 13, .65); }
.live-dot, .console__status i, .server-panel__head span i, .footer-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(65,245,155,.09), 0 0 16px var(--green); animation: breathe 2s ease-in-out infinite; }
.hero__title { margin: 28px 0 24px; font: 600 clamp(54px, 6.3vw, 96px)/.98 var(--font-display); letter-spacing: -.065em; }
.title-line { display: block; overflow: hidden; padding: .06em 0; }
.title-line > span { display: block; animation: title-in 1.05s cubic-bezier(.16,1,.3,1) both; }
.title-line:nth-child(2) > span { animation-delay: .11s; }
.hero__title em { position: relative; color: var(--green); font-style: normal; text-shadow: 0 0 40px rgba(65,245,155,.17); }
.hero__lead { max-width: 560px; margin: 0; color: #a8b6ad; font-size: clamp(16px, 1.4vw, 19px); line-height: 1.65; }
.hero__actions { display: flex; align-items: center; gap: 30px; margin-top: 36px; }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: #bdc9c1; font-size: 14px; font-weight: 700; }
.text-link span { color: var(--green); transition: transform .2s; }
.text-link:hover span { transform: translateY(4px); }
.hero__trust { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 32px; color: #75857b; font-size: 11px; font-weight: 600; }
.hero__trust i { color: var(--green); font-style: normal; }

.hero-console {
  position: relative;
  z-index: 2;
  width: min(100%, 440px);
  min-height: 530px;
  justify-self: end;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(192,255,221,.16);
  border-radius: 40px;
  background: linear-gradient(145deg, rgba(17, 30, 24, .88), rgba(6, 12, 9, .78));
  box-shadow: 0 50px 100px rgba(0,0,0,.38), inset 0 1px rgba(255,255,255,.05), 0 0 80px rgba(35,229,139,.06);
  backdrop-filter: blur(18px);
  transform-style: preserve-3d;
}
.hero-console::before { position: absolute; inset: 0; content: ""; opacity: .35; background: radial-gradient(circle at var(--mx, 50%) var(--my, 30%), rgba(82,255,166,.15), transparent 38%); pointer-events: none; }
.console__topline { display: flex; justify-content: space-between; color: #7e8e84; font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.console__status { display: flex; align-items: center; gap: 8px; color: var(--green); }
.console__status i { display: inline-block; width: 6px; height: 6px; }
.console__core { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 330px; }
.shield-pulse { position: relative; display: grid; width: 180px; height: 180px; place-items: center; }
.shield-pulse__ring { position: absolute; inset: 0; border: 1px solid rgba(65,245,155,.12); border-radius: 50%; animation: shield-ring 3.4s ease-out infinite; }
.shield-pulse__ring:nth-child(2) { animation-delay: 1.1s; }
.shield-pulse__ring:nth-child(3) { animation-delay: 2.2s; }
.shield-pulse img { position: relative; z-index: 2; width: 94px; height: 94px; border-radius: 28px; object-fit: cover; filter: drop-shadow(0 0 22px rgba(65,245,155,.3)); }
.console__core > strong { margin-top: 8px; font-size: 19px; }
.console__core > span { color: var(--muted); font-size: 11px; }
.console__route { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.025); }
.flag, .server-flag { display: grid; width: 42px; height: 34px; place-items: center; border: 1px solid rgba(65,245,155,.16); border-radius: 10px; color: var(--green-soft); background: rgba(65,245,155,.07); font-size: 11px; font-weight: 800; }
.console__route div { display: flex; flex-direction: column; line-height: 1.4; }
.console__route small { color: #67776d; font-size: 9px; text-transform: uppercase; }
.console__route strong { font-size: 12px; }
.ping { color: #8da097; font-size: 11px; }.ping b { color: var(--green); font-size: 18px; }
.console__signal { display: flex; align-items: end; gap: 4px; height: 30px; margin-top: 16px; padding: 0 10px; opacity: .55; }
.console__signal span { flex: 1; height: 30%; border-radius: 3px; background: linear-gradient(to top, rgba(65,245,155,.15), var(--green)); animation: signal 1.8s ease-in-out infinite alternate; }
.console__signal span:nth-child(2) { height: 68%; animation-delay: -.7s; }.console__signal span:nth-child(3) { height: 38%; animation-delay: -1.3s; }.console__signal span:nth-child(4) { height: 87%; animation-delay: -.3s; }.console__signal span:nth-child(5) { height: 52%; animation-delay: -1s; }.console__signal span:nth-child(6) { height: 30%; animation-delay: -.5s; }.console__signal span:nth-child(7) { height: 73%; animation-delay: -1.5s; }
.scroll-cue { position: absolute; bottom: 30px; left: 50%; z-index: 3; display: flex; align-items: center; gap: 12px; color: #59665e; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; transform: translateX(-50%); }
.scroll-cue i { position: relative; width: 1px; height: 34px; overflow: hidden; background: rgba(255,255,255,.12); }.scroll-cue i::after { position: absolute; top: -50%; left: 0; width: 1px; height: 50%; content: ""; background: var(--green); animation: scroll-line 1.8s ease-in-out infinite; }

.trust-strip { overflow: hidden; border-block: 1px solid var(--line); background: rgba(255,255,255,.015); }
.trust-strip__track { display: flex; align-items: center; width: max-content; animation: ticker 28s linear infinite; will-change: transform; }
.ticker-group { display: flex; align-items: center; justify-content: space-around; flex: 0 0 auto; min-width: 100vw; }
.trust-strip span { display: flex; align-items: baseline; gap: 8px; padding: 20px 34px; color: #77867d; font-size: 11px; text-transform: uppercase; }.trust-strip b { color: #c7d3cc; font-size: 12px; }.trust-strip i { width: 4px; height: 4px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }

.section { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; padding-block: 140px; }
.section-heading { display: grid; grid-template-columns: 1.2fr .65fr; align-items: end; gap: 80px; margin-bottom: 60px; }
.section-heading h2, .network__copy h2, .pricing__intro h2, .faq__title h2, .final-cta h2 { margin: 22px 0 0; font: 600 clamp(38px, 5vw, 68px)/1.08 var(--font-display); letter-spacing: -.055em; }
.section-heading h2 span, .network__copy h2 span, .pricing__intro h2 span, .faq__title h2 span, .final-cta h2 span { color: var(--green); }
.section-heading p, .network__copy > p, .pricing__intro > p { max-width: 440px; margin: 0; color: var(--muted); }
.kicker { color: var(--green); }

.bento-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.bento-card { position: relative; min-height: 440px; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(15,26,21,.86), rgba(8,13,11,.9)); box-shadow: inset 0 1px rgba(255,255,255,.025); transform-style: preserve-3d; transition: border-color .35s, box-shadow .35s; }
.bento-card:hover { border-color: rgba(89,255,169,.24); box-shadow: inset 0 1px rgba(255,255,255,.04), 0 24px 80px rgba(0,0,0,.18); }
.bento-card--wide { grid-column: span 2; }
.card-label { display: flex; align-items: center; gap: 9px; color: #77877d; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }.card-label span { color: var(--green); }
.bento-card h3 { position: relative; z-index: 2; margin: 22px 0 12px; font: 600 clamp(26px, 3vw, 40px)/1.15 var(--font-display); letter-spacing: -.04em; }
.bento-card p { position: relative; z-index: 2; max-width: 430px; margin: 0; color: var(--muted); font-size: 14px; }
.route-visual { position: absolute; right: 28px; bottom: 24px; left: 28px; height: 160px; border: 1px solid rgba(255,255,255,.045); border-radius: 23px; background: radial-gradient(circle at 50% 50%, rgba(65,245,155,.06), transparent 60%); }
.route-visual svg { position: absolute; inset: 10px; width: calc(100% - 20px); height: calc(100% - 20px); overflow: visible; }
.route-base, .route-live { fill: none; stroke-width: 1.5; }.route-base { stroke: rgba(201,255,225,.1); }.route-live { stroke: var(--green); stroke-dasharray: 12 18; filter: drop-shadow(0 0 5px var(--green)); animation: route-flow 2.4s linear infinite; }
.route-node { position: absolute; z-index: 2; display: grid; width: 45px; height: 45px; place-items: center; border: 1px solid rgba(65,245,155,.25); border-radius: 50%; color: #bffff0; background: #0c1812; box-shadow: 0 0 24px rgba(65,245,155,.08); font-size: 9px; font-weight: 800; }.route-node--start { left: 2%; bottom: 15px; }.route-node--mid { left: 48%; top: 7px; }.route-node--end { right: 2%; top: 15px; }
.privacy-orbit { position: relative; display: grid; width: 180px; height: 180px; margin: 32px auto 18px; place-items: center; }
.privacy-orbit__ring { position: absolute; inset: 12px; border: 1px solid rgba(65,245,155,.17); border-radius: 50%; animation: orbit-spin 12s linear infinite; }.privacy-orbit__ring:nth-child(2) { inset: 34px; border-style: dashed; animation-direction: reverse; animation-duration: 8s; }
.privacy-orbit__lock { display: grid; width: 68px; height: 68px; place-items: center; border: 1px solid rgba(65,245,155,.3); border-radius: 24px; color: var(--green); background: rgba(65,245,155,.07); box-shadow: 0 0 50px rgba(65,245,155,.13); font-size: 32px; transform: rotate(-15deg); }
.privacy-orbit i { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }.privacy-orbit i:nth-of-type(1) { top: 23px; left: 35px; }.privacy-orbit i:nth-of-type(2) { right: 9px; bottom: 63px; }.privacy-orbit i:nth-of-type(3) { left: 38px; bottom: 14px; }
.device-stack { position: relative; height: 215px; margin-top: 22px; perspective: 900px; }
.device { position: absolute; bottom: 20px; display: block; border: 1px solid rgba(160,255,205,.22); background: linear-gradient(145deg, #15231c, #080e0b); box-shadow: 0 25px 45px rgba(0,0,0,.4), inset 0 1px rgba(255,255,255,.08); transform: rotateY(-16deg) rotateX(7deg); }.device i { position: absolute; inset: 8px; display: block; border-radius: inherit; background: radial-gradient(circle at 70% 30%, rgba(65,245,155,.22), transparent 40%), linear-gradient(145deg, rgba(65,245,155,.04), rgba(0,0,0,.1)); }
.device--laptop { left: 14%; width: 76%; height: 125px; border-radius: 13px; }.device--laptop::after { position: absolute; right: -8%; bottom: -10px; left: -8%; height: 9px; content: ""; border: 1px solid var(--line); border-radius: 2px 2px 8px 8px; background: #111c17; }
.device--phone { right: 6%; z-index: 3; width: 54px; height: 112px; border-radius: 14px; transform: rotateY(-10deg) rotateZ(4deg); }.device--tablet { left: 2%; z-index: 2; width: 80px; height: 110px; border-radius: 12px; transform: rotateY(12deg) rotateZ(-4deg); }
.platforms { color: #76877c; font-size: 10px; letter-spacing: .09em; text-align: center; text-transform: uppercase; }
.support-card { container-type: inline-size; display: grid; grid-template-columns: minmax(0,.9fr) minmax(360px,1.1fr); grid-template-rows: auto 1fr; grid-template-areas: "label chat" "copy chat"; gap: 24px 46px; min-height: 540px; padding: 38px; }
.support-card > .card-label { grid-area: label; }
.support-copy { grid-area: copy; display: flex; flex-direction: column; align-items: start; min-width: 0; padding: 18px 0 4px; }
.support-copy h3 { width: 100%; max-width: 100%; font-size: clamp(28px,3.6cqw,42px); overflow-wrap: normal; }
.support-copy p { max-width: 500px; font-size: 15px; line-height: 1.75; }
.support-copy a { margin-top: auto; padding: 14px 0 5px; border-bottom: 1px solid rgba(65,245,155,.28); color: var(--green-soft); font-size: 14px; font-weight: 700; }.support-copy a span { margin-left: 12px; color: var(--green); }
.chat-stack { grid-area: chat; display: flex; flex-direction: column; justify-content: center; gap: 16px; min-height: 100%; padding: 32px; border: 1px solid rgba(255,255,255,.06); border-radius: 28px; background: radial-gradient(circle at 25% 85%, rgba(65,245,155,.08), transparent 46%), rgba(0,0,0,.16); box-shadow: inset 0 1px rgba(255,255,255,.025); }
.chat-bubble { max-width: 88%; padding: 17px 19px; border-radius: 18px; color: #b8c5bd; background: #14221b; font-size: 14px; line-height: 1.55; }.chat-bubble--user { align-self: end; border-bottom-right-radius: 6px; }.chat-bubble--answer { border-bottom-left-radius: 6px; background: rgba(65,245,155,.11); }.chat-bubble i { display: inline-block; width: 6px; height: 6px; margin-right: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px rgba(65,245,155,.6); }
.agent-row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; margin-top: auto; padding-top: 12px; color: #819087; font-size: 11px; }.agent-row > span { display: grid; width: 44px; height: 44px; overflow: hidden; place-items: center; border: 1px solid rgba(65,245,155,.18); border-radius: 14px; background: rgba(65,245,155,.08); }.agent-row img { width: 100%; height: 100%; object-fit: cover; }.agent-row b { color: #c5d1ca; }.agent-row small { color: var(--green); }

.network { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 90px; }
.network__copy > p { margin-top: 28px; }.network__facts { display: flex; gap: 34px; margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--line); }.network__facts div { display: flex; flex-direction: column; }.network__facts strong { font: 600 24px/1.1 var(--font-display); }.network__facts span { margin-top: 6px; color: #718078; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.server-panel { padding: 16px; border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(145deg, rgba(16,28,22,.92), rgba(7,12,10,.92)); box-shadow: 0 50px 100px rgba(0,0,0,.27); }
.server-panel__head, .server-panel__foot { display: flex; align-items: center; justify-content: space-between; padding: 14px 12px 20px; }.server-panel__head > div { display: flex; flex-direction: column; }.server-panel__head small { color: #6f7e75; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }.server-panel__head strong { font-size: 15px; }.server-panel__head > span { display: flex; align-items: center; gap: 9px; color: #7f9186; font-size: 10px; }.server-panel__head span i { width: 6px; height: 6px; }
.server-list { display: flex; flex-direction: column; gap: 7px; }
.server-row { display: grid; grid-template-columns: auto 1fr 90px 58px 18px; align-items: center; gap: 14px; width: 100%; padding: 13px; border: 1px solid transparent; border-radius: 17px; background: rgba(255,255,255,.023); cursor: pointer; text-align: left; transition: background .2s, border-color .2s, transform .2s; }.server-row:hover { background: rgba(255,255,255,.045); transform: translateX(3px); }.server-row.is-active { border-color: rgba(65,245,155,.2); background: rgba(65,245,155,.065); }
.server-name { display: flex; flex-direction: column; line-height: 1.4; }.server-name strong { font-size: 12px; }.server-name small { color: #718078; font-size: 9px; }.server-load { height: 3px; overflow: hidden; border-radius: 2px; background: rgba(255,255,255,.07); }.server-load i { display: block; width: var(--load); height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--green), var(--cyan)); }.server-ping { color: #91a097; font-size: 10px; }.server-radio { width: 14px; height: 14px; border: 1px solid #48554d; border-radius: 50%; }.server-row.is-active .server-radio { border: 4px solid var(--green); box-shadow: 0 0 10px rgba(65,245,155,.35); }
.server-panel__foot { justify-content: flex-start; gap: 12px; padding-top: 20px; padding-bottom: 8px; color: #a4b2a9; font-size: 10px; }.server-panel__foot small { margin-left: auto; color: #637168; }.switch { width: 36px; height: 20px; padding: 3px; border-radius: 99px; background: rgba(255,255,255,.1); }.switch i { display: block; width: 14px; height: 14px; border-radius: 50%; background: white; transition: transform .2s; }.switch.is-on { background: var(--green-strong); }.switch.is-on i { transform: translateX(16px); }

.apps .section-heading { margin-bottom: 42px; }
.app-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.app-card { position: relative; display: flex; flex-direction: column; min-height: 430px; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(145deg, rgba(16,28,22,.88), rgba(7,12,10,.94)); box-shadow: inset 0 1px rgba(255,255,255,.035); }
.app-card::after { position: absolute; width: 250px; height: 250px; top: -145px; right: -110px; border-radius: 50%; content: ""; background: rgba(65,245,155,.1); filter: blur(55px); pointer-events: none; }
.app-card--soon { border-color: rgba(218,255,232,.075); background: linear-gradient(145deg, rgba(13,21,17,.72), rgba(6,10,8,.88)); }
.app-card--soon::after { opacity: .3; }
.app-card__head { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px; }
.app-card__icon { display: grid; width: 54px; height: 54px; place-items: center; border: 1px solid rgba(65,245,155,.22); border-radius: 17px; color: var(--green); background: rgba(65,245,155,.07); box-shadow: inset 0 0 25px rgba(65,245,155,.05); }
.app-card__icon svg { width: 25px; height: 25px; fill: currentColor; }
.app-card__icon--apple { font: 600 20px/1 var(--font-display); }
.app-card__status { display: inline-flex; align-items: center; gap: 8px; padding: 7px 10px; border: 1px solid var(--line); border-radius: 99px; color: #7f9086; font-size: 8px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.app-card__status i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.app-card > div:nth-child(2) { position: relative; z-index: 1; }
.app-card > div:nth-child(2) > small { color: var(--green); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.app-card h3 { margin: 8px 0 12px; font: 600 clamp(28px, 3.5vw, 42px)/1.1 var(--font-display); letter-spacing: -.045em; }
.app-card p { max-width: 480px; margin: 0; color: var(--muted); font-size: 13px; }
.app-card__action { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: stretch; gap: 9px; margin-top: auto; padding-top: 32px; }
.app-download { min-height: 54px; padding: 0 18px; border-radius: 16px; font-size: 13px; }
.app-download > span:first-child { flex: 1; text-align: left; }
.app-card__action > small { color: #647269; font-size: 9px; letter-spacing: .05em; text-align: center; }
.app-download--disabled { width: 100%; border: 1px solid var(--line); color: #68766d; background: rgba(255,255,255,.025); cursor: not-allowed; }

.pricing { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.pricing__intro { position: sticky; top: 130px; }.pricing__intro > p { margin-top: 28px; }.pricing__body { min-width: 0; }
.period-tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; margin-bottom: 14px; padding: 5px; border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.02); }.period-tabs button { padding: 12px 8px; border: 0; border-radius: 12px; color: #77867d; background: transparent; cursor: pointer; font-size: 11px; font-weight: 700; }.period-tabs button[aria-selected="true"] { color: #06110a; background: var(--green); }.period-tabs button span { margin-left: 5px; color: var(--green); font-size: 8px; }.period-tabs button[aria-selected="true"] span { color: #0b643e; }
.price-card { position: relative; padding: 34px; overflow: hidden; border: 1px solid rgba(98,255,174,.21); border-radius: 32px; background: linear-gradient(145deg, rgba(19,35,27,.95), rgba(8,14,11,.96)); box-shadow: 0 40px 90px rgba(0,0,0,.25), inset 0 1px rgba(255,255,255,.04); }.price-card__shine { position: absolute; width: 360px; height: 360px; right: -140px; top: -180px; border-radius: 50%; background: rgba(65,245,155,.13); filter: blur(70px); }.price-card__top { position: relative; display: flex; align-items: center; justify-content: space-between; }.price-card__top > div { display: flex; flex-direction: column; }.price-card__top small { color: var(--green); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }.price-card__top strong { margin-top: 6px; font-size: 14px; }.price-card__top > span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 99px; color: #9aaba0; font-size: 9px; text-transform: uppercase; }
.price-card__price { display: flex; align-items: start; margin-top: 34px; line-height: 1; }.price-card__price > span { font: 600 clamp(62px, 7vw, 90px)/.9 var(--font-display); letter-spacing: -.07em; transition: opacity .16s, transform .16s; }.price-card__price b { margin: 3px 0 0 10px; color: var(--green); font: 600 24px var(--font-display); }.price-card__price small { align-self: end; margin: 0 0 5px 12px; color: #75857b; font-size: 10px; }.price-card > p { margin: 16px 0 28px; color: #77867e; font-size: 11px; }.price-card ul { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 0 0 30px; padding: 24px 0 0; border-top: 1px solid var(--line); list-style: none; }.price-card li { color: #a8b6ad; font-size: 12px; }.price-card li span { margin-right: 8px; color: var(--green); }.price-card__button { width: 100%; }.price-card__note { margin-top: 12px; color: #627168; font-size: 9px; text-align: center; }

.faq { display: grid; grid-template-columns: .7fr 1.3fr; gap: 110px; align-items: start; }
.faq__title { position: sticky; top: 130px; }.faq__title a { display: inline-block; margin-top: 36px; padding-bottom: 3px; border-bottom: 1px solid rgba(65,245,155,.25); color: #9bb0a3; font-size: 12px; }
.accordion { border-top: 1px solid var(--line); }.faq-item { border-bottom: 1px solid var(--line); }.faq-item button { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 26px 0; border: 0; background: transparent; cursor: pointer; text-align: left; }.faq-item button span { padding-right: 30px; font: 500 clamp(16px, 2vw, 21px)/1.4 var(--font-display); letter-spacing: -.035em; }.faq-item button i { position: relative; flex: 0 0 30px; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; }.faq-item button i::before, .faq-item button i::after { position: absolute; top: 50%; left: 50%; width: 10px; height: 1px; content: ""; background: var(--green); transform: translate(-50%,-50%); }.faq-item button i::after { transform: translate(-50%,-50%) rotate(90deg); transition: transform .25s; }.faq-item.is-open button i::after { transform: translate(-50%,-50%) rotate(0); }.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .38s cubic-bezier(.22,1,.36,1); }.faq-answer p { max-width: 620px; min-height: 0; margin: 0; overflow: hidden; color: var(--muted); font-size: 14px; }.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }.faq-item.is-open .faq-answer p { padding-bottom: 26px; }

.final-cta { position: relative; min-height: 570px; margin-bottom: 70px; padding: 90px 40px; overflow: hidden; border: 1px solid rgba(92,255,171,.19); border-radius: 42px; background: linear-gradient(145deg, #101f18, #07100c); text-align: center; isolation: isolate; }.final-cta::after { position: absolute; inset: 0; z-index: -1; content: ""; background: radial-gradient(circle at 50% 110%, rgba(65,245,155,.2), transparent 55%); }.final-cta__content { display: flex; flex-direction: column; align-items: center; }.final-cta h2 { margin-bottom: 40px; }.final-cta .button { min-width: 300px; }

.site-footer { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 40px 0 28px; border-top: 1px solid var(--line); }.site-footer__top { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: start; gap: 30px; }.site-footer__top > p { margin: 0; color: #74837a; font-size: 12px; }.footer-status { display: flex; align-items: center; justify-self: end; gap: 10px; padding: 9px 13px; border: 1px solid var(--line); border-radius: 99px; color: #8b9c91; font-size: 9px; text-transform: uppercase; }.footer-status i { width: 6px; height: 6px; }.site-footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin: 70px 0; padding-left: 33%; }.site-footer__links div { display: flex; flex-direction: column; gap: 9px; }.site-footer__links small { margin-bottom: 5px; color: #58655d; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }.site-footer__links a { color: #9aa89f; font-size: 12px; transition: color .2s; }.site-footer__links a:hover { color: var(--green); }.site-footer__bottom { display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--line); color: #4f5b54; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .85s var(--delay, 0s) cubic-bezier(.22,1,.36,1), transform .85s var(--delay, 0s) cubic-bezier(.22,1,.36,1); }.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes title-in { from { opacity: 0; transform: translateY(110%); } to { opacity: 1; transform: translateY(0); } }
@keyframes breathe { 50% { opacity: .5; box-shadow: 0 0 0 8px rgba(65,245,155,0), 0 0 20px var(--green); } }
@keyframes shield-ring { 0% { opacity: 0; transform: scale(.44); } 25% { opacity: .7; } 100% { opacity: 0; transform: scale(1.15); } }
@keyframes signal { to { height: 94%; opacity: .45; } }
@keyframes scroll-line { to { top: 110%; } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes route-flow { to { stroke-dashoffset: -60; } }
@keyframes orbit-spin { to { transform: rotate(360deg); } }

@media (max-width: 980px) {
  .header-actions { margin-left: auto; }
  .login-link { display: none; }
  .main-nav { position: fixed; inset: 84px 16px auto; display: flex; flex-direction: column; align-items: stretch; padding: 18px; border: 1px solid var(--line); border-radius: 22px; background: rgba(6,12,9,.96); box-shadow: 0 30px 80px rgba(0,0,0,.5); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .25s, transform .25s; }
  .main-nav a { padding: 13px; text-align: center; }
  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .menu-button { display: block; margin-left: auto; }.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); }
  .hero { grid-template-columns: 1fr; gap: 70px; padding-top: 150px; text-align: center; }.hero__content { margin: auto; }.hero__lead { margin-inline: auto; }.hero__actions, .hero__trust { justify-content: center; }.hero-console { justify-self: center; width: min(100%, 520px); }.scroll-cue { display: none; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }.bento-grid { grid-template-columns: 1fr 1fr; }.bento-card--wide { grid-column: span 2; }
  .network, .pricing, .faq { grid-template-columns: 1fr; gap: 60px; }.pricing__intro, .faq__title { position: static; }.pricing__intro, .faq__title { max-width: 720px; }
}

@media (max-width: 680px) {
  .site-header { top: 10px; width: calc(100% - 20px); height: 62px; padding-left: 12px; }.brand__copy small { display: none; }.brand__mark { width: 35px; height: 35px; }.header-actions .button { display: none; }
  .hero { min-height: auto; padding: 126px 20px 80px; gap: 55px; }.hero__title { font-size: clamp(44px, 13vw, 64px); }.hero__lead { font-size: 15px; }.hero__actions { flex-direction: column; gap: 18px; }.hero__actions .button { width: 100%; }.hero__trust { gap: 9px 14px; }.hero-console { min-height: 445px; padding: 17px; border-radius: 30px; }.console__core { min-height: 268px; }.shield-pulse { width: 145px; height: 145px; }
  .trust-strip span { padding: 16px 22px; }
  .section { width: min(calc(100% - 24px), var(--max)); padding-block: 92px; }.section-heading { margin-bottom: 36px; }.section-heading h2, .network__copy h2, .pricing__intro h2, .faq__title h2, .final-cta h2 { font-size: clamp(34px, 10vw, 48px); }
  .bento-grid { grid-template-columns: 1fr; }.bento-card, .bento-card--wide { grid-column: auto; min-height: 410px; padding: 23px; border-radius: 26px; }.support-card { display: flex; flex-direction: column; min-height: 0; }.support-copy { padding-top: 0; }.support-copy h3 { font-size: clamp(30px,9vw,40px); }.support-copy a { margin-top: 24px; }.chat-stack { min-height: 280px; margin-top: 20px; padding: 22px; }.route-visual { right: 18px; left: 18px; }
  .network__facts { gap: 17px; justify-content: space-between; }.network__facts strong { font-size: 18px; }.server-panel { padding: 10px; }.server-row { grid-template-columns: auto 1fr auto 14px; gap: 9px; padding: 11px 9px; }.server-load { display: none; }.server-panel__foot small { display: none; }
  .app-grid { grid-template-columns: 1fr; }.app-card { min-height: 390px; padding: 23px; border-radius: 26px; }.app-card__head { margin-bottom: 38px; }.app-card h3 { font-size: 32px; }
  .period-tabs { grid-template-columns: 1fr; }.price-card { padding: 24px; }.price-card ul { grid-template-columns: 1fr; }.price-card__price > span { font-size: 64px; }
  .faq-item button span { font-size: 15px; }.final-cta { min-height: 470px; margin-bottom: 40px; padding: 70px 18px; border-radius: 28px; }.final-cta .button { min-width: 0; width: 100%; }
  .site-footer__top { grid-template-columns: 1fr; }.footer-status { justify-self: start; }.site-footer__links { grid-template-columns: 1fr 1fr; gap: 35px; margin: 50px 0; padding-left: 0; }.site-footer__bottom { gap: 20px; }
}

/* Visual polish v2 */
.scroll-progress { position: fixed; inset: 0 0 auto; z-index: 120; height: 2px; pointer-events: none; }
.scroll-progress i { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--green), var(--cyan)); box-shadow: 0 0 14px rgba(65,245,155,.7); transform: scaleX(0); transform-origin: left center; will-change: transform; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 4px; }
.site-header::after { position: absolute; right: 13%; bottom: -1px; left: 13%; height: 1px; content: ""; background: linear-gradient(90deg, transparent, rgba(88,255,170,.32), transparent); transform: scaleX(.45); transition: transform .5s ease; }
.site-header.is-scrolled::after { transform: scaleX(1); }
.main-nav a { position: relative; transition: color .25s, background .25s; }
.main-nav a.is-active { color: var(--text); background: rgba(255,255,255,.055); }
.main-nav a.is-active::after { position: absolute; right: 14px; bottom: 4px; left: 14px; height: 1px; content: ""; background: var(--green); box-shadow: 0 0 8px var(--green); }
.faq-item button:focus-visible { outline-width: 1px; outline-offset: -2px; border-radius: 12px; background: rgba(65,245,155,.025); }
.nav-mobile-cta, .nav-account-link, .menu-scrim, .mobile-cta { display: none; }
.menu-scrim { position: fixed; inset: 0; z-index: 49; border: 0; background: rgba(1,5,3,.64); opacity: 0; pointer-events: none; backdrop-filter: blur(5px); transition: opacity .25s; }
.menu-scrim.is-visible { opacity: 1; pointer-events: auto; }
.hero__title em::after { position: absolute; right: 0; bottom: -.03em; left: 0; height: .045em; content: ""; border-radius: 99px; background: linear-gradient(90deg, transparent, var(--green), transparent); box-shadow: 0 0 14px rgba(65,245,155,.55); transform-origin: left; animation: word-scan 1.2s .95s cubic-bezier(.22,1,.36,1) both; }
.hero-console::after { position: absolute; inset: 0; z-index: -1; padding: 1px; border-radius: inherit; content: ""; background: conic-gradient(from var(--border-angle, 0deg), transparent 0 35%, rgba(86,255,171,.42) 48%, transparent 61% 100%); opacity: .45; -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; animation: border-orbit 9s linear infinite; pointer-events: none; }
.console__metrics { display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr; align-items: center; gap: 13px; margin-top: 10px; padding: 10px 14px; color: #728078; }
.console__metrics > div { display: flex; flex-direction: column; gap: 1px; }
.console__metrics > div:nth-child(3) { align-items: center; }
.console__metrics > div:last-child { align-items: end; }
.console__metrics small { font-size: 7px; letter-spacing: .13em; text-transform: uppercase; }
.console__metrics strong { color: #a8b7ae; font-size: 9px; }
.console__metrics i { width: 1px; height: 20px; background: var(--line); }
.hero-chip { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 10px 13px; border: 1px solid rgba(188,255,220,.13); border-radius: 15px; background: rgba(8,17,13,.76); box-shadow: 0 18px 50px rgba(0,0,0,.28); backdrop-filter: blur(14px); translate: 0 var(--parallax-y, 0); will-change: translate; }
.hero-chip > span { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 9px; color: var(--green); background: rgba(65,245,155,.08); font-size: 12px; }
.hero-chip div { display: flex; flex-direction: column; line-height: 1.2; }
.hero-chip small { color: #637169; font-size: 7px; letter-spacing: .13em; text-transform: uppercase; }
.hero-chip strong { margin-top: 3px; font-size: 10px; }
.hero-chip--secure { right: max(25px, calc((100vw - var(--max)) / 2 + 365px)); top: 27%; animation: chip-float 5s ease-in-out infinite; }
.hero-chip--latency { right: max(12px, calc((100vw - var(--max)) / 2 - 12px)); bottom: 21%; animation: chip-float 5.8s -1.4s ease-in-out infinite; }
.section { position: relative; }
.section:not(.final-cta)::before { position: absolute; top: 0; left: 0; width: 86px; height: 1px; content: ""; background: linear-gradient(90deg, var(--green), transparent); opacity: .45; }
.bento-card { background: radial-gradient(circle at var(--mx, 80%) var(--my, 10%), rgba(65,245,155,.065), transparent 34%), linear-gradient(145deg, rgba(15,26,21,.86), rgba(8,13,11,.9)); transition: border-color .35s, box-shadow .35s, transform .28s ease; }
.bento-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(115deg, transparent 28%, rgba(255,255,255,.025) 48%, transparent 67%); transform: translateX(-100%); transition: transform .9s ease; pointer-events: none; }
.bento-card:hover::after { transform: translateX(100%); }
.server-row.is-changing { animation: route-select .36s ease; }
.price-card::before { position: absolute; inset: 0; content: ""; background-image: linear-gradient(rgba(112,255,180,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(112,255,180,.025) 1px, transparent 1px); background-size: 28px 28px; mask-image: linear-gradient(135deg, black, transparent 72%); pointer-events: none; }
.final-cta__content::before { width: 92px; height: 92px; margin-bottom: 22px; content: ""; border: 1px solid rgba(65,245,155,.24); border-radius: 30px; background: url("assets/noxira-logo.webp") center/cover no-repeat, rgba(65,245,155,.04); box-shadow: 0 0 70px rgba(65,245,155,.16); animation: cta-mark 5s ease-in-out infinite; }

body.checkout-open { overflow: hidden; }
.checkout-modal { position: fixed; inset: 0; z-index: 200; display: grid; padding: 24px; place-items: center; }
.checkout-modal[hidden] { display: none; }
.checkout-backdrop { position: absolute; inset: 0; border: 0; background: rgba(2,5,4,.78); backdrop-filter: blur(13px); animation: modal-fade .28s ease both; }
.checkout-dialog { position: relative; width: min(100%, 980px); max-height: min(900px, calc(100svh - 48px)); padding: 32px; overflow: auto; border: 1px solid rgba(118,255,184,.22); border-radius: 34px; background: radial-gradient(circle at 85% 5%, rgba(65,245,155,.1), transparent 30%), linear-gradient(145deg, #101c16, #070c09); box-shadow: 0 50px 140px rgba(0,0,0,.65), inset 0 1px rgba(255,255,255,.045); animation: modal-in .45s cubic-bezier(.16,1,.3,1) both; scrollbar-width: thin; scrollbar-color: rgba(65,245,155,.25) transparent; }
.checkout-dialog::before { position: absolute; inset: 0; content: ""; border-radius: inherit; background-image: linear-gradient(rgba(116,255,183,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(116,255,183,.025) 1px, transparent 1px); background-size: 34px 34px; mask-image: linear-gradient(145deg, black, transparent 70%); pointer-events: none; }
.checkout-close { position: sticky; top: 0; z-index: 4; float: right; display: grid; width: 42px; height: 42px; padding: 0; place-items: center; border: 1px solid var(--line); border-radius: 14px; color: #93a39a; background: rgba(5,10,7,.76); cursor: pointer; font-size: 25px; line-height: 1; backdrop-filter: blur(10px); transition: color .2s, border-color .2s, transform .2s; }
.checkout-close:hover { color: var(--green); border-color: rgba(65,245,155,.32); transform: rotate(4deg); }
.checkout-head { position: relative; max-width: 650px; padding-right: 60px; }
.checkout-head h2 { margin: 14px 0 9px; font: 600 clamp(28px,4vw,42px)/1.1 var(--font-display); letter-spacing: -.05em; }
.checkout-head p { margin: 0; color: var(--muted); font-size: 13px; }
.checkout-form { position: relative; display: grid; grid-template-columns: minmax(0,1.25fr) minmax(280px,.75fr); gap: 28px; margin-top: 28px; }
.checkout-main { min-width: 0; }
.checkout-fieldset { margin: 0 0 22px; padding: 0; border: 0; }
.checkout-fieldset legend, .checkout-fields label > span:first-child, .checkout-optional label > span:first-child { display: block; margin-bottom: 9px; color: #829188; font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.checkout-segmented { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; padding: 5px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.018); }
.checkout-segmented button { padding: 11px; border: 0; border-radius: 11px; color: #75837b; background: transparent; cursor: pointer; font-size: 11px; font-weight: 700; transition: color .2s, background .2s; }
.checkout-segmented button.is-selected { color: #07120c; background: var(--green); box-shadow: 0 8px 25px rgba(65,245,155,.14); }
.checkout-plans { display: grid; gap: 7px; }
.checkout-plan { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 16px; color: var(--text); background: rgba(255,255,255,.018); cursor: pointer; text-align: left; transition: border-color .22s, background .22s, transform .22s; }
.checkout-plan:hover { border-color: rgba(65,245,155,.22); transform: translateX(3px); }
.checkout-plan.is-selected { border-color: rgba(65,245,155,.4); background: linear-gradient(90deg, rgba(65,245,155,.1), rgba(65,245,155,.025)); box-shadow: inset 3px 0 var(--green); }
.checkout-plan > span { display: flex; flex-direction: column; }.checkout-plan strong { font-size: 12px; }.checkout-plan strong i { margin-left: 6px; color: var(--green); font-size: 8px; font-style: normal; }.checkout-plan small { margin-top: 3px; color: #69776f; font-size: 9px; }.checkout-plan b { font: 600 15px var(--font-display); }
.checkout-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.checkout-fields label, .checkout-optional label { min-width: 0; }
.input-shell { display: flex; align-items: center; height: 48px; padding: 0 13px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.022); transition: border-color .2s, box-shadow .2s, background .2s; }
.input-shell:focus-within { border-color: rgba(65,245,155,.46); background: rgba(65,245,155,.025); box-shadow: 0 0 0 4px rgba(65,245,155,.055); }
.input-shell i { margin-right: 9px; color: var(--green); font-size: 11px; font-style: normal; }
.input-shell input { width: 100%; min-width: 0; padding: 0; border: 0; outline: 0; color: var(--text); background: transparent; font: 500 12px var(--font-body); }
.input-shell input::placeholder { color: #4d5a52; }
.field-error { display: none; margin: 5px 0 0 4px; color: #ff8f8f; font-size: 9px; }
label.has-error .input-shell { border-color: rgba(255,105,105,.5); }
label.has-error .field-error { display: block; }
.checkout-optional { margin-top: 18px; border-top: 1px solid var(--line); }
.checkout-optional summary { display: flex; align-items: center; justify-content: space-between; padding: 16px 2px 0; color: #829188; cursor: pointer; font-size: 10px; list-style: none; }.checkout-optional summary::-webkit-details-marker { display: none; }.checkout-optional summary span { color: var(--green); font-size: 17px; transition: transform .2s; }.checkout-optional[open] summary span { transform: rotate(45deg); }
.checkout-optional > div { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding-top: 14px; animation: optional-in .25s ease both; }
.checkout-trial-note { margin: 18px 0 0; padding: 13px 15px; border: 1px solid rgba(65,245,155,.16); border-radius: 14px; color: #91a198; background: rgba(65,245,155,.035); font-size: 10px; line-height: 1.55; }
.checkout-summary { position: sticky; top: 0; align-self: start; padding: 24px; border: 1px solid rgba(65,245,155,.15); border-radius: 24px; background: rgba(4,10,7,.56); box-shadow: inset 0 1px rgba(255,255,255,.035); }
.checkout-summary__mark { display: grid; width: 58px; height: 58px; margin-bottom: 18px; overflow: hidden; place-items: center; border: 1px solid rgba(65,245,155,.22); border-radius: 18px; background: rgba(65,245,155,.06); }.checkout-summary__mark img { width: 100%; height: 100%; object-fit: cover; }
.checkout-secure { position: absolute; top: 24px; right: 24px; display: flex; align-items: center; gap: 7px; color: #728178; font-size: 7px; letter-spacing: .11em; text-transform: uppercase; }.checkout-secure i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 9px var(--green); }
.checkout-summary dl { margin: 0; }.checkout-summary dl div { display: flex; justify-content: space-between; gap: 20px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.055); font-size: 10px; }.checkout-summary dt { color: #6f7d74; }.checkout-summary dd { margin: 0; color: #c1cec6; font-weight: 700; text-align: right; }
.checkout-total { display: flex; align-items: end; justify-content: space-between; padding: 20px 0; }.checkout-total span { color: #89988e; font-size: 10px; }.checkout-total strong { color: var(--green); font: 600 25px/1 var(--font-display); letter-spacing: -.05em; }
.checkout-submit { width: 100%; min-height: 53px; border-radius: 15px; cursor: pointer; }
.checkout-consent { margin: 12px 0 0; color: #526058; font-size: 8px; line-height: 1.6; text-align: center; }.checkout-consent a { color: #7e9185; text-decoration: underline; text-decoration-color: rgba(65,245,155,.25); }
.checkout-message { display: none; margin-top: 12px; padding: 10px; border: 1px solid rgba(65,245,155,.18); border-radius: 11px; color: #a9e9c5; background: rgba(65,245,155,.055); font-size: 9px; text-align: center; }.checkout-message.is-visible { display: block; animation: optional-in .25s ease both; }

@property --border-angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@keyframes word-scan { from { opacity: 0; transform: scaleX(0); } to { opacity: 1; transform: scaleX(1); } }
@keyframes border-orbit { to { --border-angle: 360deg; } }
@keyframes chip-float { 50% { margin-top: -9px; } }
@keyframes route-select { 45% { transform: translateX(7px); } }
@keyframes cta-mark { 50% { transform: translateY(-7px) rotate(2deg); box-shadow: 0 12px 80px rgba(65,245,155,.25); } }
@keyframes modal-fade { from { opacity: 0; } }
@keyframes modal-in { from { opacity: 0; transform: translateY(30px) scale(.98); } }
@keyframes optional-in { from { opacity: 0; transform: translateY(-5px); } }

@media (max-width: 980px) {
  .main-nav { padding: 14px; border-radius: 24px; background: linear-gradient(145deg, rgba(13,24,18,.98), rgba(4,9,6,.98)); transform: translateY(-12px) scale(.98); transform-origin: top; }
  .main-nav a { padding: 14px; text-align: left; transform: translateY(-5px); opacity: 0; transition: opacity .2s, transform .3s, color .2s, background .2s; }
  .main-nav a::after { display: none; }
  .main-nav.is-open { transform: translateY(0) scale(1); }
  .main-nav.is-open a { opacity: 1; transform: translateY(0); }
  .main-nav.is-open a:nth-child(2) { transition-delay: .035s; }
  .main-nav.is-open a:nth-child(3) { transition-delay: .07s; }
  .main-nav.is-open a:nth-child(4) { transition-delay: .105s; }
  .main-nav.is-open a:nth-child(5) { transition-delay: .14s; }
  .nav-mobile-cta { display: flex !important; align-items: center; justify-content: space-between; margin-top: 7px; color: #06110a !important; background: var(--green) !important; }
  .nav-account-link { display: flex !important; align-items: center; justify-content: space-between; }
  .menu-scrim { display: block; }
  .hero-chip--secure { right: calc(50% + 165px); top: auto; bottom: 500px; }
  .hero-chip--latency { right: calc(50% - 245px); bottom: 185px; }
}

@media (max-width: 680px) {
  .hero { padding: 120px 16px 68px; gap: 48px; }
  .hero__title { margin-top: 24px; font-size: clamp(42px, 13vw, 61px); line-height: 1.02; }
  .hero__lead { max-width: 350px; font-size: 14px; line-height: 1.7; }
  .hero__actions { gap: 17px; margin-top: 30px; }
  .hero__trust { flex-wrap: nowrap; justify-content: flex-start; gap: 17px; max-width: 100%; margin-top: 27px; padding: 0 4px 7px; overflow-x: auto; scrollbar-width: none; mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent); }
  .hero__trust::-webkit-scrollbar { display: none; }
  .hero__trust span { flex: 0 0 auto; }
  .hero-console { min-height: 432px; padding: 16px; border-radius: 28px; }
  .console__core { min-height: 245px; }
  .shield-pulse { width: 140px; height: 140px; }
  .hero-chip { display: none; }
  .console__metrics { gap: 8px; padding-inline: 5px; }
  .console__metrics small { font-size: 6px; }
  .console__metrics strong { font-size: 8px; }
  .section { padding-block: 88px; }
  .section-heading { gap: 18px; margin-bottom: 34px; }
  .section-heading h2, .network__copy h2, .pricing__intro h2, .faq__title h2, .final-cta h2 { font-size: clamp(33px, 10vw, 47px); line-height: 1.12; }
  .section-heading p, .network__copy > p, .pricing__intro > p { font-size: 13px; }
  .kicker { font-size: 9px; }
  .network__facts { gap: 12px; margin-top: 36px; }
  .network__facts strong { font-size: 17px; }
  .network__facts span { font-size: 7px; }
  .server-panel { padding: 9px; border-radius: 23px; }
  .server-panel__head { padding: 12px 8px 16px; }
  .server-panel__head > span { font-size: 8px; }
  .server-row { gap: 8px; padding: 11px 8px; }
  .server-flag { width: 37px; height: 31px; }
  .period-tabs { display: flex; gap: 6px; padding: 4px; overflow-x: auto; scrollbar-width: none; }
  .period-tabs::-webkit-scrollbar { display: none; }
  .period-tabs button { flex: 1 0 auto; min-width: 112px; }
  .price-card { padding: 23px; border-radius: 25px; }
  .price-card__price > span { font-size: 62px; }
  .site-footer { padding-bottom: 105px; }
  .mobile-cta { position: fixed; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); left: 10px; z-index: 48; display: flex; align-items: center; justify-content: space-between; min-height: 64px; padding: 8px 9px 8px 16px; border: 1px solid rgba(148,255,199,.24); border-radius: 20px; background: rgba(8,17,13,.91); box-shadow: 0 20px 50px rgba(0,0,0,.5); backdrop-filter: blur(20px); transform: translateY(0); transition: opacity .3s, transform .3s; }
  .mobile-cta.is-hidden { opacity: 0; pointer-events: none; transform: translateY(120%); }
  .mobile-cta > span { display: flex; flex-direction: column; line-height: 1.25; }
  .mobile-cta small { color: #718078; font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
  .mobile-cta strong { margin-top: 3px; font-size: 12px; }
  .mobile-cta > b { display: flex; align-items: center; gap: 12px; padding: 12px 13px; border-radius: 13px; color: #06110a; background: var(--green); font-size: 11px; }
  .mobile-cta i { font-style: normal; }
  .checkout-modal { align-items: end; padding: 0; }
  .checkout-dialog { width: 100%; max-height: calc(100svh - 16px); padding: 22px 14px 24px; border-radius: 28px 28px 0 0; animation-name: modal-sheet; }
  .checkout-close { right: 1px; width: 38px; height: 38px; border-radius: 12px; }
  .checkout-head { padding-right: 45px; }.checkout-head h2 { font-size: 29px; }.checkout-head p { font-size: 11px; }
  .checkout-form { grid-template-columns: 1fr; gap: 18px; margin-top: 23px; }
  .checkout-fields, .checkout-optional > div { grid-template-columns: 1fr; }
  .checkout-summary { position: relative; top: auto; padding: 20px; border-radius: 20px; }
  .checkout-secure { top: 20px; right: 20px; }
  .checkout-plan { padding: 12px; }
}

@media (max-width: 390px) {
  .brand__copy strong { font-size: 12px; }
  .hero__title { font-size: 41px; }
  .hero-console { min-height: 415px; }
  .console__route { gap: 8px; padding: 11px 9px; }
  .console__route strong { font-size: 10px; }
  .ping b { font-size: 15px; }
  .bento-card { min-height: 390px; }
  .faq-item button { padding-block: 22px; }
  .mobile-cta > b { gap: 7px; padding-inline: 10px; }
}

@keyframes modal-sheet { from { opacity: 0; transform: translateY(100%); } }

@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; }
  .network-canvas, .cta-canvas { display: none; }
  .scroll-progress { display: none; }
}

/* Layout refinements v4 */
.login-link.is-authenticated { display: inline-flex; align-items: center; gap: 8px; max-width: 170px; overflow: hidden; color: var(--green-soft); text-overflow: ellipsis; white-space: nowrap; }
.login-link.is-authenticated::before { flex: 0 0 6px; width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px rgba(65,245,155,.7); content: ""; }
.nav-account-link.is-authenticated { color: var(--green-soft); }

.device-stack { width: min(100%, 360px); height: 205px; margin: 22px auto 0; }
.device--laptop { left: 50%; width: min(68%, 250px); height: auto; aspect-ratio: 2 / 1; transform: translateX(-50%) rotateY(-16deg) rotateX(7deg); }
.device--phone { right: 7%; }
.device--tablet { left: 7%; }

.site-footer { width: min(calc(100% - 40px), 1180px); margin: 0 auto 20px; padding: 34px 38px 24px; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(145deg,rgba(14,25,20,.76),rgba(6,11,9,.88)); }
.site-footer__top { grid-template-columns: 1.25fr .9fr auto; align-items: center; }
.site-footer__top>p { line-height: 1.55; }
.site-footer__links { grid-template-columns: repeat(3,minmax(130px,1fr)); gap: 48px; max-width: 650px; margin: 38px 0 30px auto; padding-left: 0; }
.site-footer__bottom { padding-top: 17px; }

@media(max-width:760px){
  .device-stack { width: min(100%, 330px); }
  .site-footer { width: calc(100% - 20px); margin-bottom: 10px; padding: 28px 22px 105px; border-radius: 24px; }
  .site-footer__top { grid-template-columns: 1fr; gap: 22px; }
  .site-footer__links { grid-template-columns: repeat(2,1fr); gap: 30px; max-width: none; margin: 38px 0 30px; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; gap: 9px; }
}

@media(max-width:430px){
  .site-footer__links { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
}
