:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --ink: #020306;
  --ink-raised: #06132d;
  --ink-soft: #0a2152;
  --surface: rgba(7, 19, 45, 0.68);
  --surface-strong: rgba(10, 26, 59, 0.88);
  --line: rgba(165, 207, 255, 0.15);
  --line-bright: rgba(0, 207, 255, 0.45);
  --text: #f7faff;
  --muted: #a6b7d3;
  --muted-strong: #c5d3e8;
  --blue: #087bff;
  --cyan: #00cfff;
  --violet: #9b5cff;
  --mint: #28e6b7;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  --radius: 28px;
  --radius-sm: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--ink); }

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 4%, rgba(8, 123, 255, 0.2), transparent 29rem),
    radial-gradient(circle at 0% 35%, rgba(155, 92, 255, 0.09), transparent 30rem),
    var(--ink);
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.58;
  background-image:
    linear-gradient(rgba(72, 138, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 138, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 74%);
}

body.menu-open { overflow: hidden; }

a { color: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

button { font: inherit; }

svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 14px;
  left: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--ink);
  background: var(--cyan);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.narrow { max-width: 800px; }

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid rgba(138, 184, 255, 0.1);
  background: rgba(2, 3, 6, 0.72);
  backdrop-filter: blur(18px) saturate(130%);
}

.header-shell {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--text);
  font-family: Manrope, Inter, sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.055em;
  text-decoration: none;
}

.brand img {
  width: 39px;
  height: 39px;
  border-radius: 13px;
  object-fit: cover;
  box-shadow: 0 0 28px rgba(0, 207, 255, 0.19);
}

.brand span span { color: var(--cyan); }

.site-nav { display: flex; align-items: center; gap: 4px; }

.site-nav > a:not(.nav-cta) {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 11px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav > a:not(.nav-cta):hover { color: var(--text); background: rgba(255, 255, 255, 0.055); }

.nav-cta {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 10px;
  padding: 0 15px;
  border: 1px solid rgba(0, 207, 255, 0.5);
  border-radius: 12px;
  color: var(--text);
  background: rgba(0, 207, 255, 0.08);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta svg { width: 15px; }
.nav-cta:hover { border-color: var(--cyan); background: rgba(0, 207, 255, 0.15); transform: translateY(-1px); }

.menu-button {
  width: 46px;
  height: 46px;
  display: none;
  place-content: center;
  gap: 6px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--text);
  background: rgba(6, 19, 45, 0.78);
  cursor: pointer;
}

.menu-button i { width: 19px; height: 2px; display: block; border-radius: 99px; background: currentColor; transition: transform 180ms ease; }

.hero-section { position: relative; min-height: calc(100svh - 80px); overflow: hidden; isolation: isolate; }

.hero-grid-lines {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.76;
  background:
    linear-gradient(90deg, transparent 0 6.7%, rgba(0, 207, 255, 0.09) 6.8% 6.85%, transparent 6.95% 100%),
    linear-gradient(rgba(7, 123, 255, 0.075) 1px, transparent 1px);
  background-size: 15% 100%, 100% 92px;
  mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
}

.hero-shell {
  min-height: calc(100svh - 80px);
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.94fr);
  gap: clamp(28px, 4vw, 68px);
  align-items: center;
  padding: clamp(44px, 5.2vw, 72px) 0 52px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: var(--cyan);
  font-family: Manrope, Inter, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.145em;
  text-transform: uppercase;
}

.eyebrow > i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 207, 255, 0.92);
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: Manrope, Inter, sans-serif; text-wrap: balance; }

h1 {
  max-width: 735px;
  margin: 22px 0 25px;
  font-size: clamp(52px, 5.4vw, 80px);
  font-weight: 800;
  line-height: 0.97;
  letter-spacing: -0.068em;
}

h1 em, h2 em { font-style: normal; color: var(--cyan); }

.hero-lead, .page-hero p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted-strong);
  font-size: clamp(17px, 1.45vw, 19px);
  line-height: 1.65;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }

.button {
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 15px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button svg { width: 18px; height: 18px; }
.button:hover { transform: translateY(-2px); }

.button-primary {
  color: #02101c;
  background: linear-gradient(125deg, #00e5ff, #32a9ff 52%, #a56bff);
  box-shadow: 0 14px 42px rgba(0, 207, 255, 0.2);
}

.button-primary:hover { box-shadow: 0 18px 54px rgba(0, 207, 255, 0.32); }

.button-secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(6, 19, 45, 0.64);
}

.button-secondary:hover { border-color: rgba(0, 207, 255, 0.7); background: rgba(7, 51, 102, 0.7); }

.button-quiet {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  border: 1px solid rgba(152, 193, 255, 0.2);
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
}

.button-quiet:hover { border-color: rgba(0, 207, 255, 0.65); background: rgba(0, 207, 255, 0.09); }

.hero-footnote { display: flex; flex-wrap: wrap; gap: 14px 22px; margin-top: 27px; color: var(--muted); font-size: 13px; font-weight: 600; }
.hero-footnote span { display: inline-flex; align-items: center; gap: 8px; }
.hero-footnote svg { width: 18px; height: 18px; color: var(--cyan); }

.hero-art {
  --pointer-x: 0;
  --pointer-y: 0;
  --scene-progress: 0;
  position: relative;
  min-height: min(51vw, 520px);
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-aura {
  position: absolute;
  z-index: -3;
  width: min(95%, 570px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 207, 255, 0.28) 0%, rgba(8, 123, 255, 0.14) 31%, rgba(155, 92, 255, 0.11) 52%, transparent 70%);
  filter: blur(9px);
  transform: translate(calc(var(--pointer-x) * 12px), calc(var(--pointer-y) * 10px));
  transition: transform 220ms ease-out;
}

.hero-ring { position: absolute; z-index: -2; border: 1px solid rgba(90, 171, 255, 0.2); border-radius: 50%; }
.ring-one { width: min(83%, 495px); aspect-ratio: 1; box-shadow: inset 0 0 45px rgba(0, 207, 255, 0.04); }
.ring-two { width: min(106%, 630px); aspect-ratio: 1; border-style: dashed; opacity: 0.6; transform: rotate(calc(var(--scene-progress) * 12deg)); }

.hero-image-frame {
  position: relative;
  z-index: 1;
  width: min(86%, 525px);
  overflow: hidden;
  border-radius: 42% 48% 44% 46% / 44% 44% 52% 51%;
  transform: perspective(800px) rotateX(calc(var(--pointer-y) * -2.4deg)) rotateY(calc(var(--pointer-x) * 3deg)) translateY(calc(var(--scene-progress) * -28px));
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.58), 0 0 65px rgba(0, 207, 255, 0.17);
  transition: transform 240ms ease-out;
}

.hero-image-frame::after { position: absolute; inset: 0; content: ""; pointer-events: none; background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 24%, transparent 70%, rgba(155, 92, 255, 0.08)); }
.hero-image-frame img { display: block; width: 100%; height: auto; }

.liquid-pour {
  position: absolute;
  z-index: 0;
  width: clamp(11px, 1.7vw, 18px);
  border-radius: 999px 999px 60% 60%;
  background: linear-gradient(90deg, #0865f2, #00e3ff 48%, #2e70ff 70%, #934fff);
  box-shadow: 0 0 18px rgba(0, 207, 255, 0.5);
  transform-origin: top;
  transform: scaleY(calc(0.28 + var(--scene-progress) * 0.9));
  transition: transform 110ms linear;
}

.pour-one { height: 138px; bottom: 2%; left: 24%; animation: drip-sway 4.4s ease-in-out infinite; }
.pour-two { height: 195px; right: 26%; bottom: -5%; animation: drip-sway 5.1s ease-in-out -1.1s infinite; }
.pour-three { width: 9px; height: 90px; right: 14%; bottom: 13%; animation: drip-sway 4s ease-in-out -2.2s infinite; }

.hero-route {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 7%;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 13px;
  border: 1px solid rgba(135, 209, 255, 0.23);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(2, 8, 23, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-route span { width: 8px; height: 8px; border: 1px solid currentColor; border-radius: 50%; background: var(--ink); }
.hero-route i { width: 25px; height: 1px; display: block; background: linear-gradient(90deg, currentColor, transparent); }
.hero-route span:nth-of-type(2) { background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }

.hero-art figcaption {
  position: absolute;
  z-index: 4;
  left: 0;
  bottom: 8%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(135, 209, 255, 0.19);
  border-radius: 14px;
  color: var(--muted-strong);
  background: rgba(2, 8, 23, 0.74);
  font-size: 11px;
  font-weight: 700;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-art figcaption svg { width: 16px; color: var(--cyan); }

.hero-scroll-hint { position: absolute; right: 0; bottom: 24px; left: 0; display: flex; align-items: center; justify-content: space-between; color: rgba(198, 219, 253, 0.56); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.hero-scroll-hint i { width: 1px; height: 42px; display: block; background: linear-gradient(var(--cyan), transparent); animation: scroll-pulse 1.8s ease-in-out infinite; }

.proof-band { border-block: 1px solid rgba(100, 170, 255, 0.13); background: rgba(4, 11, 26, 0.82); }
.proof-grid { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.proof-grid > p { max-width: 270px; margin: 0; color: var(--text); font-family: Manrope, Inter, sans-serif; font-size: 16px; font-weight: 700; letter-spacing: -0.03em; }
.proof-grid > div { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 11px; color: var(--muted); font-size: 12px; font-weight: 700; }
.proof-grid span { display: inline-flex; align-items: center; gap: 8px; }
.proof-grid svg { width: 17px; color: var(--cyan); }
.proof-grid i { width: 4px; height: 4px; border-radius: 50%; background: rgba(0, 207, 255, 0.68); }

.section { position: relative; padding: clamp(92px, 11vw, 152px) 0; }

.section-heading { max-width: 760px; margin-bottom: clamp(38px, 5vw, 62px); }
.section-heading h2, .route-copy h2, .devices-copy h2, .faq-copy h2 { margin: 19px 0 16px; font-size: clamp(38px, 4.7vw, 68px); font-weight: 800; line-height: 1.02; letter-spacing: -0.062em; }
.section-heading > p:last-child, .route-copy > p:not(.eyebrow), .devices-copy > p:not(.eyebrow), .faq-copy > p:not(.eyebrow) { max-width: 670px; margin-bottom: 0; color: var(--muted); font-size: 16px; line-height: 1.72; }

.section-why { background: linear-gradient(180deg, transparent, rgba(5, 16, 39, 0.65) 45%, transparent); }
.feature-bento { display: grid; grid-template-columns: 1.12fr 0.88fr 0.88fr; grid-template-rows: minmax(290px, 1fr) minmax(258px, 1fr); gap: 16px; }

.feature-card {
  position: relative;
  min-height: 265px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(13, 34, 76, 0.74), rgba(3, 8, 20, 0.9));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.feature-card:hover { border-color: rgba(0, 207, 255, 0.38); background: linear-gradient(145deg, rgba(12, 46, 100, 0.8), rgba(3, 8, 20, 0.94)); transform: translateY(-4px); }
.feature-card-account { grid-row: span 2; min-height: 560px; background: radial-gradient(circle at 74% 22%, rgba(0, 207, 255, 0.18), transparent 29%), linear-gradient(145deg, rgba(13, 47, 96, 0.88), rgba(3, 8, 20, 0.96)); }
.feature-card-support { grid-column: span 2; min-height: 258px; }

.feature-icon { width: 47px; height: 47px; display: grid; place-items: center; border: 1px solid rgba(0, 207, 255, 0.3); border-radius: 15px; color: var(--cyan); background: rgba(0, 207, 255, 0.07); }
.feature-icon svg { width: 24px; }
.feature-number { position: absolute; top: 31px; right: 30px; color: rgba(181, 207, 245, 0.45); font-family: Manrope, Inter, sans-serif; font-size: 12px; font-weight: 800; letter-spacing: 0.1em; }
.feature-card h3 { max-width: 340px; margin: 55px 0 10px; font-size: clamp(23px, 2vw, 29px); line-height: 1.08; letter-spacing: -0.05em; }
.feature-card p { max-width: 350px; margin-bottom: 0; color: var(--muted); font-size: 14px; line-height: 1.63; }

.account-pulse { position: absolute; right: 26px; bottom: 28px; left: 26px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; padding: 15px; border: 1px solid rgba(0, 207, 255, 0.22); border-radius: 17px; color: var(--muted-strong); background: rgba(2, 9, 24, 0.65); font-size: 12px; font-weight: 700; backdrop-filter: blur(10px); }
.account-pulse b { width: 10px; height: 10px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 17px var(--mint); }
.account-pulse i { color: var(--cyan); font-style: normal; }

.device-sketch { position: absolute; right: 28px; bottom: 26px; left: 28px; display: flex; align-items: end; gap: 10px; height: 72px; }
.device-sketch i { width: 17%; height: 65%; display: block; border: 1px solid rgba(128, 196, 255, 0.22); border-radius: 12px; background: linear-gradient(180deg, rgba(31, 105, 192, 0.26), rgba(4, 11, 25, 0.5)); }
.device-sketch i:nth-child(2) { height: 88%; }.device-sketch i:nth-child(3) { width: 26%; height: 52%; border-radius: 8px; }.device-sketch i:nth-child(4) { height: 75%; }

.route-sketch { position: absolute; right: 28px; bottom: 32px; left: 28px; display: flex; align-items: center; gap: 7px; }
.route-sketch b { width: 15px; height: 15px; display: block; border: 2px solid var(--cyan); border-radius: 50%; box-shadow: 0 0 16px rgba(0, 207, 255, 0.5); }
.route-sketch i { height: 1px; flex: 1; display: block; background: linear-gradient(90deg, var(--cyan), rgba(0, 207, 255, 0.04)); }

.text-action { display: inline-flex; align-items: center; gap: 9px; margin-top: 24px; color: var(--cyan); font-family: Manrope, Inter, sans-serif; font-size: 13px; font-weight: 800; text-decoration: none; transition: color 180ms ease, transform 180ms ease; }
.text-action svg { width: 17px; }.text-action:hover { color: #78eaff; transform: translateX(2px); }
.feature-card-support .text-action { position: absolute; right: 28px; bottom: 29px; }

.section-route { overflow: hidden; border-block: 1px solid rgba(108, 176, 255, 0.12); background: radial-gradient(circle at 73% 20%, rgba(8, 123, 255, 0.2), transparent 32rem), rgba(5, 17, 43, 0.68); }
.route-layout { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(42px, 8vw, 128px); align-items: center; }
.route-copy { max-width: 495px; }.route-copy .button { margin-top: 30px; }
.route-steps { position: relative; display: grid; gap: 14px; padding: 0; margin: 0; list-style: none; }
.route-steps::before { position: absolute; top: 47px; bottom: 47px; left: 29px; width: 1px; content: ""; background: linear-gradient(to bottom, var(--cyan) 0 calc(var(--scene-progress, 0) * 100%), rgba(134, 192, 255, 0.17) calc(var(--scene-progress, 0) * 100%)); }
.route-steps li { position: relative; min-height: 137px; display: grid; grid-template-columns: 58px 1fr; gap: 22px; align-items: center; padding: 22px 26px 22px 0; }
.route-steps > li > span { position: relative; z-index: 1; width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid rgba(0, 207, 255, 0.38); border-radius: 50%; color: var(--cyan); background: #061633; font-family: Manrope, Inter, sans-serif; font-size: 12px; font-weight: 800; }
.route-steps li > div { padding-bottom: 2px; }.route-steps li > div > i { width: 31px; height: 31px; display: grid; place-items: center; margin-bottom: 12px; color: var(--cyan); font-style: normal; }.route-steps li > div > i svg { width: 24px; }
.route-steps h3 { margin: 0 0 8px; font-size: 22px; line-height: 1.1; letter-spacing: -0.04em; }.route-steps p { max-width: 420px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.section-tariffs { background: linear-gradient(180deg, rgba(2, 3, 6, 0), rgba(5, 20, 46, 0.78) 52%, rgba(2, 3, 6, 0)); }
.plans-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; align-items: stretch; }
.plan-card { position: relative; min-height: 395px; display: flex; flex-direction: column; overflow: hidden; padding: 29px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(160deg, rgba(10, 26, 59, 0.75), rgba(3, 8, 20, 0.94)); transition: transform 220ms ease, border-color 220ms ease; }
.plan-card:hover { border-color: rgba(0, 207, 255, 0.43); transform: translateY(-4px); }
.plan-card-featured { border-color: rgba(0, 207, 255, 0.5); background: radial-gradient(circle at 50% 0, rgba(0, 207, 255, 0.16), transparent 48%), linear-gradient(160deg, rgba(10, 39, 84, 0.94), rgba(3, 8, 20, 0.98)); box-shadow: 0 28px 75px rgba(0, 131, 255, 0.1); }
.plan-tag { position: absolute; top: 20px; right: 20px; padding: 7px 9px; border-radius: 9px; color: #00141c; background: var(--cyan); font-size: 10px; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; }
.plan-index { color: rgba(189, 215, 255, 0.45); font-family: Manrope, Inter, sans-serif; font-size: 12px; font-weight: 800; letter-spacing: 0.12em; }.plan-card h3 { margin: 42px 0 10px; font-size: 31px; line-height: 1.05; letter-spacing: -0.055em; }.plan-card > p { min-height: 48px; margin-bottom: 25px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.plan-card dl { display: grid; gap: 9px; padding: 17px 0 22px; margin: 0; border-top: 1px solid rgba(147, 194, 255, 0.13); }.plan-card dl > div { display: flex; justify-content: space-between; gap: 14px; color: var(--muted); font-size: 12px; }.plan-card dt { font-weight: 600; }.plan-card dd { margin: 0; color: var(--text); font-weight: 700; text-align: right; }
.price-note { margin: 18px 0 0; color: rgba(180, 199, 228, 0.66); font-size: 12px; line-height: 1.5; }

.router-callout { display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; margin-top: 18px; padding: 21px 24px; border: 1px solid rgba(110, 180, 255, 0.18); border-radius: 20px; background: rgba(5, 22, 51, 0.56); }.router-callout > span { width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid rgba(0, 207, 255, 0.27); border-radius: 13px; color: var(--cyan); background: rgba(0, 207, 255, 0.07); }.router-callout > span svg { width: 23px; }.router-callout strong { display: block; margin-bottom: 4px; font-family: Manrope, Inter, sans-serif; font-size: 15px; }.router-callout p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }.router-callout .text-action { margin: 0; white-space: nowrap; }

.section-devices { overflow: hidden; }.devices-layout { display: grid; grid-template-columns: minmax(340px, 0.9fr) minmax(0, 0.8fr); gap: clamp(48px, 9vw, 140px); align-items: center; }.devices-visual { position: relative; min-height: 510px; display: grid; place-items: center; }.mascot-orb { position: relative; width: min(88%, 435px); overflow: hidden; border: 1px solid rgba(0, 207, 255, 0.33); border-radius: 50%; box-shadow: 0 0 0 20px rgba(5, 22, 51, 0.5), 0 30px 90px rgba(0, 0, 0, 0.5), 0 0 90px rgba(0, 207, 255, 0.14); }.mascot-orb::before { position: absolute; z-index: 1; inset: 0; content: ""; pointer-events: none; background: radial-gradient(circle at 22% 18%, rgba(255,255,255,.24), transparent 19%), linear-gradient(135deg, transparent 56%, rgba(155, 92, 255, 0.12)); }.mascot-orb img { display: block; width: 100%; height: auto; }.device-float { position: absolute; width: 60px; height: 60px; display: grid; place-items: center; border: 1px solid rgba(138, 203, 255, 0.28); border-radius: 19px; color: var(--cyan); background: rgba(5, 20, 49, 0.92); box-shadow: var(--shadow); backdrop-filter: blur(10px); }.device-float svg { width: 28px; }.float-phone { top: 10%; left: 3%; animation: float-card 4.7s ease-in-out infinite; }.float-laptop { right: 2%; bottom: 10%; animation: float-card 4.4s ease-in-out -1.5s infinite; }.float-router { right: 5%; top: 12%; animation: float-card 5s ease-in-out -2.7s infinite; }.devices-copy { max-width: 480px; }.platform-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; margin-top: 29px; }.platform-link { min-height: 54px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 9px; padding: 0 13px; border: 1px solid rgba(144, 191, 255, 0.15); border-radius: 14px; color: var(--muted-strong); background: rgba(5, 20, 49, 0.48); font-size: 13px; font-weight: 700; text-decoration: none; transition: transform 180ms ease, border-color 180ms ease, color 180ms ease; }.platform-link > svg { width: 15px; }.platform-link > span { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 9px; color: var(--cyan); background: rgba(0,207,255,.08); }.platform-link > span svg { width: 16px; }.platform-link:hover { border-color: rgba(0, 207, 255, 0.54); color: var(--text); transform: translateY(-2px); }

.section-faq { border-top: 1px solid rgba(127, 186, 255, 0.12); background: linear-gradient(165deg, rgba(4, 14, 35, 0.76), rgba(2, 3, 6, 0.8)); }.faq-layout { display: grid; grid-template-columns: 0.76fr 1.24fr; gap: clamp(46px, 8vw, 130px); align-items: start; }.faq-copy { position: sticky; top: 112px; }.faq-copy .text-action { margin-top: 28px; }.faq-list { display: grid; gap: 10px; }.faq-item { overflow: hidden; border: 1px solid rgba(145, 194, 255, 0.15); border-radius: 18px; background: rgba(6, 19, 45, 0.62); }.faq-item summary { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 17px 16px 22px; color: var(--text); cursor: pointer; font-family: Manrope, Inter, sans-serif; font-size: 15px; font-weight: 700; line-height: 1.35; list-style: none; }.faq-item summary::-webkit-details-marker { display: none; }.faq-item summary i { width: 33px; height: 33px; display: grid; flex: 0 0 33px; place-items: center; border-radius: 10px; color: var(--cyan); background: rgba(0,207,255,.08); transition: transform 180ms ease, background 180ms ease; }.faq-item summary i svg { width: 17px; }.faq-item[open] { border-color: rgba(0, 207, 255, 0.4); }.faq-item[open] summary i { background: rgba(0,207,255,.18); transform: rotate(45deg); }.faq-item p { max-width: 720px; padding: 0 54px 22px 22px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.68; }

.final-section { position: relative; padding: 40px 0 clamp(92px, 12vw, 150px); overflow: hidden; }.final-section.compact { padding-top: 0; }.final-panel { position: relative; overflow: hidden; padding: clamp(43px, 6.7vw, 76px) clamp(23px, 7vw, 98px); border: 1px solid rgba(0, 207, 255, 0.4); border-radius: clamp(28px, 4vw, 44px); background: radial-gradient(circle at 76% 117%, rgba(0, 207, 255, 0.27), transparent 43%), radial-gradient(circle at 90% 15%, rgba(155, 92, 255, 0.18), transparent 30%), linear-gradient(138deg, #071b41, #030814 68%); box-shadow: 0 32px 100px rgba(0, 0, 0, 0.38); }.final-panel > *:not(.final-liquid) { position: relative; z-index: 2; }.final-panel h2 { max-width: 770px; margin: 18px 0 14px; font-size: clamp(39px, 5.3vw, 73px); line-height: .99; letter-spacing: -.065em; }.final-panel > p:not(.eyebrow) { max-width: 670px; margin-bottom: 0; color: var(--muted-strong); font-size: 16px; line-height: 1.68; }.final-liquid { position: absolute; right: -3%; bottom: -37%; width: min(45%, 440px); height: 88%; border-radius: 48% 52% 20% 28% / 44% 46% 34% 30%; background: radial-gradient(circle at 52% 32%, rgba(126, 240, 255, .78), rgba(0, 207, 255, .48) 24%, rgba(7, 92, 235, .67) 50%, rgba(155, 92, 255, .38) 72%, transparent 73%); filter: blur(3px); transform: rotate(-13deg); }.final-liquid i { position: absolute; display: block; border-radius: 999px; background: linear-gradient(#00d9ff, #1477ff 70%, #9652ff); }.final-liquid i:nth-child(1) { width: 18px; height: 120px; top: -13%; left: 32%; }.final-liquid i:nth-child(2) { width: 12px; height: 80px; top: 0; right: 21%; }.final-liquid i:nth-child(3) { width: 23px; height: 145px; top: 14%; right: 43%; }

.page-hero { padding: clamp(88px, 12vw, 148px) 0 clamp(66px, 8vw, 98px); background: radial-gradient(circle at 82% 10%, rgba(0, 207, 255, 0.15), transparent 32rem); }.page-hero h1 { margin-bottom: 20px; font-size: clamp(51px, 6.7vw, 86px); }.page-hero .button { margin-top: 31px; }.platform-page-hero { padding-bottom: clamp(78px, 9vw, 125px); }.platform-hero-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(350px, 0.78fr); gap: clamp(44px, 7vw, 105px); align-items: center; }.platform-art { position: relative; min-height: 410px; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(0,207,255,.27); border-radius: 38px; background: radial-gradient(circle at 50% 50%, rgba(0,207,255,.2), transparent 36%), linear-gradient(145deg, rgba(10, 42, 91, .78), rgba(3, 7, 17, .96)); box-shadow: var(--shadow); }.platform-art img { width: min(68%, 290px); border-radius: 50%; opacity: .88; }.platform-art > span { position: absolute; top: 24px; right: 24px; width: 55px; height: 55px; display: grid; place-items: center; border-radius: 17px; color: var(--cyan); background: rgba(0,207,255,.1); }.platform-art > span svg { width: 28px; }.platform-art p { position: absolute; bottom: 22px; left: 25px; margin: 0; color: var(--text); font-family: Manrope, Inter, sans-serif; font-size: 13px; font-weight: 800; line-height: 1.35; }.detail-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }.detail-card { min-height: 262px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(11, 30, 67, 0.68), rgba(3, 8, 20, .91)); transition: transform 200ms ease, border-color 200ms ease; }.detail-card:hover { border-color: rgba(0,207,255,.4); transform: translateY(-3px); }.detail-card > span { color: var(--cyan); font-family: Manrope, Inter, sans-serif; font-size: 12px; font-weight: 800; letter-spacing: .1em; }.detail-card h3 { margin: 54px 0 12px; font-size: 24px; line-height: 1.1; letter-spacing: -.045em; }.detail-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.62; }

.platform-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }.device-page-card { min-height: 208px; display: grid; grid-template-columns: auto 1fr auto; gap: 19px; align-items: start; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(11, 31, 70, .7), rgba(3, 8, 20, .94)); text-decoration: none; transition: transform 200ms ease, border-color 200ms ease; }.device-page-card > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; color: var(--cyan); background: rgba(0,207,255,.08); }.device-page-card > span svg { width: 24px; }.device-page-card > svg { width: 19px; margin-top: 14px; color: var(--cyan); }.device-page-card h2 { margin: 4px 0 10px; font-size: 24px; line-height: 1; letter-spacing: -.045em; }.device-page-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }.device-page-card:hover { border-color: rgba(0,207,255,.46); transform: translateY(-3px); }

.legal-bridge { min-height: 65vh; }.legal-document { padding-bottom: clamp(80px, 12vw, 142px); }.legal-document h1 { overflow-wrap: anywhere; hyphens: auto; }.legal-copy { max-width: 780px; margin-top: 40px; padding: clamp(24px, 4vw, 44px); border: 1px solid rgba(137, 193, 255, .18); border-radius: var(--radius); background: linear-gradient(145deg, rgba(10, 30, 67, .72), rgba(3, 8, 20, .93)); box-shadow: var(--shadow); }.legal-copy h2 { margin: 40px 0 14px; color: var(--text); font-family: Manrope, Inter, sans-serif; font-size: clamp(20px, 2.6vw, 27px); letter-spacing: -.04em; }.legal-copy h2:first-of-type { margin-top: 0; }.legal-copy p, .legal-copy li { color: var(--muted-strong); font-size: 15px; line-height: 1.72; }.legal-copy p { margin: 0 0 15px; }.legal-copy ul { display: grid; gap: 9px; padding-left: 22px; margin: 0 0 18px; }.legal-copy li::marker { color: var(--cyan); }.legal-copy a { color: var(--cyan); }.legal-copy .legal-date { margin-top: 31px; color: rgba(189, 212, 244, .63); font-size: 13px; }.notice-card { display: grid; grid-template-columns: auto 1fr; gap: 15px; max-width: 740px; margin: 28px 0; padding: 20px; border: 1px solid rgba(137, 193, 255, .18); border-radius: 18px; background: rgba(6, 20, 47, .7); }.notice-card > span { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 13px; color: var(--cyan); background: rgba(0,207,255,.08); }.notice-card > span svg { width: 22px; }.notice-card strong { display: block; margin: 3px 0 7px; font-family: Manrope, Inter, sans-serif; font-size: 14px; }.notice-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }.inline-link { display: inline-flex; align-items: center; gap: 8px; min-height: 53px; padding: 0 19px; border: 1px solid rgba(0,207,255,.52); border-radius: 15px; color: var(--cyan); background: rgba(0,207,255,.08); font-family: Manrope, Inter, sans-serif; font-size: 14px; font-weight: 800; text-decoration: none; transition: transform 180ms ease, background 180ms ease; }.inline-link svg { width: 17px; }.inline-link:hover { background: rgba(0,207,255,.16); transform: translateY(-2px); }

.site-footer { position: relative; border-top: 1px solid rgba(126, 189, 255, .13); background: #020307; }.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, .75fr); gap: 38px; padding: 68px 0 48px; }.footer-grid > div { display: grid; align-content: start; gap: 10px; }.footer-grid > div > strong { margin-bottom: 5px; color: var(--text); font-family: Manrope, Inter, sans-serif; font-size: 13px; }.footer-grid > div > a:not(.brand):not(.channel-link) { color: var(--muted); font-size: 13px; line-height: 1.45; text-decoration: none; transition: color 160ms ease; }.footer-grid > div > a:not(.brand):not(.channel-link):hover { color: var(--cyan); }.footer-brand { max-width: 320px; }.footer-brand > p { margin: 7px 0 7px; color: var(--muted); font-size: 13px; line-height: 1.62; }.channel-link { display: inline-flex; align-items: center; gap: 8px; color: var(--cyan); font-size: 12px; font-weight: 750; text-decoration: none; }.channel-link svg { width: 17px; }.footer-bottom { min-height: 67px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(126, 189, 255, .1); color: rgba(181, 202, 232, .56); font-size: 11px; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 560ms cubic-bezier(.22,.8,.2,1), transform 560ms cubic-bezier(.22,.8,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes float-card { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }
@keyframes drip-sway { 0%, 100% { margin-left: 0; } 50% { margin-left: 5px; } }
@keyframes scroll-pulse { 0%, 100% { opacity: .25; transform: scaleY(.7); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); transform-origin: top; } }

@media (max-width: 1060px) {
  .hero-shell { grid-template-columns: minmax(0, 1fr) minmax(330px, .83fr); gap: 30px; }.feature-bento { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }.feature-card-account { grid-row: span 2; }.feature-card-support { grid-column: auto; min-height: 265px; }.feature-card-support .text-action { position: static; margin-top: 24px; }.footer-grid { grid-template-columns: 1.4fr repeat(3, .8fr); gap: 25px; }.route-layout, .devices-layout { gap: 52px; }.devices-visual { min-height: 430px; }
}

@media (max-width: 800px) {
  .shell { width: min(100% - 36px, 620px); }.header-shell { min-height: 72px; }.site-header { backdrop-filter: blur(16px); }.menu-button { display: grid; }.site-nav { position: fixed; z-index: 30; top: 72px; right: 0; left: 0; display: grid; gap: 4px; padding: 17px 18px 22px; border-bottom: 1px solid rgba(124, 188, 255, .2); background: rgba(2, 5, 12, .98); transform: translateY(-125%); opacity: 0; pointer-events: none; transition: transform 220ms ease, opacity 180ms ease; }.js .site-nav[aria-hidden="true"] { visibility: hidden; }.site-nav.is-open { visibility: visible; transform: translateY(0); opacity: 1; pointer-events: auto; }.no-js .menu-button { display: none; }.no-js .header-shell { flex-wrap: wrap; padding-block: 10px; }.no-js .site-nav { position: static; width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); transform: none; opacity: 1; pointer-events: auto; padding: 9px 0 0; border: 0; background: transparent; }.no-js .nav-cta { grid-column: 1 / -1; }.site-nav > a:not(.nav-cta) { min-height: 50px; padding-inline: 15px; }.nav-cta { min-height: 51px; justify-content: center; margin: 7px 0 0; }.hero-section { min-height: auto; }.hero-shell { min-height: auto; grid-template-columns: 1fr; padding: 78px 0 74px; }.hero-copy { max-width: 650px; }.hero-art { min-height: min(102vw, 555px); max-width: 620px; margin: 0 auto; }.hero-image-frame { width: min(83%, 480px); }.hero-scroll-hint { display: none; }.proof-grid { min-height: auto; display: grid; gap: 16px; padding: 24px 0; }.proof-grid > div { justify-content: flex-start; }.section { padding: 88px 0; }.feature-bento, .plans-grid, .detail-grid { grid-template-columns: 1fr; }.feature-card-account, .feature-card-support { grid-row: auto; grid-column: auto; min-height: 295px; }.feature-card-account { min-height: 390px; }.route-layout, .devices-layout, .faq-layout, .platform-hero-layout { grid-template-columns: 1fr; }.route-copy, .devices-copy { max-width: 620px; }.route-steps { max-width: 620px; }.devices-visual { order: 2; min-height: 390px; max-width: 530px; width: 100%; margin: 0 auto; }.devices-copy { order: 1; }.faq-copy { position: static; }.platform-card-grid { grid-template-columns: 1fr; }.footer-grid { grid-template-columns: 1.25fr 1fr 1fr; }.footer-brand { grid-column: 1 / -1; max-width: 430px; }.final-liquid { width: 58%; }.router-callout { grid-template-columns: auto 1fr; }.router-callout .text-action { grid-column: 2; justify-self: start; }.page-hero { padding: 87px 0 65px; }
}

@media (max-width: 520px) {
  .shell { width: calc(100% - 32px); }.brand { font-size: 17px; }.brand img { width: 36px; height: 36px; border-radius: 12px; }.header-shell { min-height: 68px; }.site-nav { top: 68px; }.hero-shell { padding-top: 64px; }.eyebrow { font-size: 10px; letter-spacing: .12em; }.hero-lead, .page-hero p { font-size: 16px; line-height: 1.62; }.legal-document h1 { font-size: clamp(32px, 9vw, 37px); }.hero-actions { display: grid; grid-template-columns: 1fr; margin-top: 30px; }.button { width: 100%; min-height: 54px; }.hero-footnote { gap: 10px 16px; margin-top: 21px; font-size: 12px; }.hero-art { min-height: 93vw; }.hero-image-frame { width: 90%; border-radius: 39% 47% 43% 46% / 40% 43% 54% 49%; }.ring-two { width: 102%; }.hero-art figcaption { left: 1%; bottom: 3%; max-width: 160px; padding: 9px 10px; font-size: 10px; }.hero-route { right: 0; bottom: 5%; }.liquid-pour { display: none; }.proof-grid > p { font-size: 15px; }.proof-grid > div { gap: 8px; font-size: 11px; }.proof-grid i { display: none; }.section { padding: 74px 0; }.section-heading { margin-bottom: 34px; }.section-heading h2, .route-copy h2, .devices-copy h2, .faq-copy h2 { margin-top: 15px; font-size: clamp(35px, 11vw, 49px); }.feature-card, .feature-card-account { min-height: 278px; padding: 23px; border-radius: 23px; }.feature-card-account { min-height: 347px; }.feature-card h3 { margin-top: 42px; font-size: 24px; }.feature-number { top: 26px; right: 24px; }.account-pulse { right: 20px; bottom: 21px; left: 20px; }.route-layout { gap: 34px; }.route-steps li { min-height: 128px; grid-template-columns: 50px 1fr; gap: 15px; padding-right: 0; }.route-steps > li > span { width: 50px; height: 50px; }.route-steps::before { left: 25px; }.route-steps h3 { font-size: 19px; }.plans-grid { gap: 12px; }.plan-card { min-height: 350px; padding: 24px; border-radius: 23px; }.plan-card h3 { margin-top: 35px; }.router-callout { gap: 13px; padding: 18px; border-radius: 17px; }.router-callout > span { width: 40px; height: 40px; }.devices-visual { min-height: 325px; }.mascot-orb { width: min(77%, 320px); }.device-float { width: 51px; height: 51px; border-radius: 16px; }.device-float svg { width: 23px; }.float-phone { top: 7%; left: 0; }.float-laptop { right: 0; bottom: 5%; }.float-router { top: 9%; right: 2%; }.platform-links { grid-template-columns: 1fr; }.faq-item summary { min-height: 68px; padding-left: 17px; font-size: 14px; }.faq-item p { padding: 0 18px 20px; font-size: 13px; }.final-section { padding-bottom: 77px; }.final-panel { padding: 42px 21px; border-radius: 27px; }.final-panel h2 { font-size: clamp(37px, 11vw, 52px); }.final-panel > p:not(.eyebrow) { font-size: 15px; }.final-liquid { right: -24%; bottom: -44%; width: 78%; opacity: .76; }.platform-art { min-height: 300px; border-radius: 28px; }.detail-card { min-height: 230px; padding: 23px; border-radius: 23px; }.detail-card h3 { margin-top: 42px; }.device-page-card { min-height: 190px; gap: 13px; padding: 20px; border-radius: 23px; }.device-page-card h2 { font-size: 21px; }.footer-grid { grid-template-columns: repeat(2, 1fr); gap: 31px 20px; padding: 51px 0 37px; }.footer-brand { grid-column: 1 / -1; }.footer-bottom { min-height: auto; flex-direction: column; align-items: flex-start; gap: 7px; padding: 19px 0; }.notice-card { grid-template-columns: 1fr; }.notice-card > span { width: 40px; height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .hero-image-frame, .hero-aura, .ring-two { transform: none; }
  .liquid-pour { transform: scaleY(.44); }
}
