@font-face {
  font-family: "Geist";
  src: url("/vendor/geist-latin-wght-normal.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Geist Mono";
  src: url("/vendor/geist-mono-latin-wght-normal.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #05070d;
  --surface: #0b1020;
  --surface-2: #10182a;
  --surface-3: #151f35;
  --violet: #7a64ff;
  --cyan: #36c5ff;
  --green: #6cff9b;
  --text: #d6dcdc;
  --muted: #939393;
  --line: #26304a;
  --warning: #ffbe55;
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 52px);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background: radial-gradient(circle at 18% 14%, rgba(122,100,255,.07), transparent 28rem), var(--ink);
  color: var(--text);
  font-family: Geist, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.03; text-wrap: balance; }
p { text-wrap: pretty; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 4px; }
.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: 1000; top: 8px; left: 8px; padding: 10px 14px; background: var(--green); color: var(--ink); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - var(--gutter) * 2), var(--container)); margin-inline: auto; }

.consent-panel {
  position: fixed;
  z-index: 1200;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: min(620px, calc(100vw - 40px));
  padding: 24px;
  grid-template-columns: 1fr auto;
  gap: 24px;
  border: 1px solid rgba(130, 157, 186, .35);
  border-radius: 18px;
  background: #fff;
  color: #14243a;
  box-shadow: 0 22px 70px rgba(1, 11, 25, .28);
}
.consent-panel[hidden] { display: none; }
.consent-panel h2 { margin: 4px 0 9px; color: #0b1f3a; font-size: 25px; }
.consent-panel p { margin-bottom: 8px; color: #4f6277; font-size: 13px; }
.consent-panel a { color: #0875d1; font-size: 12px; font-weight: 650; }
.consent-actions { display: flex; align-items: stretch; justify-content: center; flex-direction: column; gap: 8px; }
.consent-actions .button { min-width: 150px; }
.cookie-settings-button {
  position: fixed;
  z-index: 1100;
  right: 16px;
  bottom: 14px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(130, 157, 186, .42);
  border-radius: 999px;
  background: #fff;
  color: #23415e;
  box-shadow: 0 8px 25px rgba(1, 11, 25, .15);
  font-size: 10px;
  font-weight: 650;
  cursor: pointer;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  display: flex;
  width: min(calc(100% - 36px), 980px);
  min-height: 66px;
  padding: 7px 8px 7px 18px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateX(-50%);
  border: 1px solid rgba(214,220,220,.16);
  border-radius: 22px;
  background: rgba(5,7,13,.68);
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
  transition: top .25s ease, background .25s ease, border-color .25s ease;
}
.site-header.is-scrolled { top: 10px; background: rgba(11,16,32,.95); border-color: rgba(122,100,255,.34); }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--text); font-size: 17px; font-weight: 500; letter-spacing: -.02em; text-decoration: none; white-space: nowrap; }
.brand strong { color: var(--green); font-weight: 650; }
.brand-mark { position: relative; display: inline-grid; width: 25px; height: 28px; grid-template-columns: repeat(3, 1fr); align-items: end; gap: 3px; }
.brand-mark i { display: block; border-radius: 3px; background: linear-gradient(180deg, var(--cyan), var(--violet)); }
.brand-mark i:nth-child(1) { height: 55%; }
.brand-mark i:nth-child(2) { height: 100%; }
.brand-mark i:nth-child(3) { height: 72%; background: linear-gradient(180deg, var(--green), var(--cyan)); }
.site-nav { display: flex; align-items: center; gap: 10px; }
.nav-links, .nav-actions { display: flex; align-items: center; gap: 4px; }
.nav-links { padding: 4px; border: 1px solid rgba(214,220,220,.08); border-radius: 13px; background: rgba(255,255,255,.025); }
.nav-links a { padding: 9px 12px; border-radius: 9px; color: #aeb5ba; font-size: 12px; font-weight: 550; text-decoration: none; transition: color .2s ease, background .2s ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { background: rgba(122,100,255,.11); color: #fff; }
.nav-actions { padding-left: 6px; }
.site-nav .nav-login { padding: 0 12px; border-left: 1px solid var(--line); }
.nav-actions .nav-login { color: #aeb5ba; font-size: 12px; font-weight: 550; text-decoration: none; transition: color .2s ease; }
.nav-actions .nav-login:hover { color: #fff; }
.pending-link { color: #6f777d; font-size: 12px; cursor: not-allowed; }
.menu-button { display: none; width: 44px; height: 44px; padding: 11px; border: 0; background: transparent; }
.menu-button > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--text); }

.button { display: inline-flex; min-height: 50px; padding: 0 22px; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 14px; font: 600 14px/1 Geist, Arial, sans-serif; text-decoration: none; transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green); color: #06110a; box-shadow: 0 10px 32px rgba(108,255,155,.15); }
.button-primary:hover { background: #93ffb6; box-shadow: 0 13px 38px rgba(108,255,155,.23); }
.button-secondary { border-color: rgba(214,220,220,.24); background: rgba(11,16,32,.6); color: var(--text); }
.button-secondary:hover { border-color: var(--cyan); background: rgba(54,197,255,.07); }
.button-small { min-height: 44px; padding-inline: 18px; }
.button.is-disabled { background: #20283a; color: #a3a9af; box-shadow: none; }
.eyebrow { margin-bottom: 18px; color: var(--cyan); font: 600 11px/1.4 "Geist Mono", monospace; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow > span { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 14px rgba(108,255,155,.75); }

.hero { position: relative; display: grid; min-height: min(900px, 100svh); padding: 150px 0 74px; place-items: center; isolation: isolate; overflow: hidden; }
.hero::after { content: ""; position: absolute; z-index: -1; inset: auto 0 0; height: 34%; background: linear-gradient(transparent, var(--ink)); }
.hero-grid { position: absolute; z-index: -3; inset: 0; opacity: .12; background-image: linear-gradient(rgba(54,197,255,.24) 1px, transparent 1px), linear-gradient(90deg, rgba(54,197,255,.24) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, black 5%, transparent 78%); }
.hero-art { position: absolute; z-index: -2; inset: 0; opacity: .6; }
.hero-art::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(5,7,13,.06), rgba(5,7,13,.42) 56%, var(--ink) 96%); }
.hero-art picture, .hero-art img { width: 100%; height: 100%; }
.hero-art img { object-fit: cover; object-position: center 48%; filter: saturate(.9) contrast(1.08); }
.hero-content { text-align: center; }
.hero h1, .plans-hero h1 { max-width: 1050px; margin: 0 auto 26px; color: #f4f6f5; font-size: clamp(54px, 7.4vw, 112px); font-weight: 600; letter-spacing: -.07em; }
.hero h1 em, .plans-hero h1 em { color: transparent; font-style: normal; background: linear-gradient(90deg, var(--cyan), var(--violet) 48%, var(--green)); background-clip: text; -webkit-background-clip: text; }
.hero-copy { max-width: 670px; margin: 0 auto 30px; color: #b8bec1; font-size: clamp(17px, 2vw, 21px); }
.hero-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.hero-note, .contact-note { margin: 22px auto 0; color: #798187; font: 500 11px/1.5 "Geist Mono", monospace; }
.scroll-cue { position: absolute; bottom: 26px; left: 50%; display: flex; align-items: center; gap: 12px; transform: translateX(-50%); color: #7d858b; font: 500 10px "Geist Mono", monospace; letter-spacing: .13em; text-decoration: none; text-transform: uppercase; }
.scroll-cue i { width: 36px; height: 1px; background: var(--cyan); animation: cue 1.8s ease-in-out infinite; transform-origin: left; }
@keyframes cue { 50% { transform: scaleX(.35); opacity: .4; } }

.capability-strip { overflow: hidden; border-block: 1px solid var(--line); background: #080c15; }
.marquee-track { display: flex; width: max-content; padding: 16px 0; align-items: center; gap: 32px; animation: marquee 32s linear infinite; }
.marquee-track span { color: #aeb5ba; font: 550 12px "Geist Mono", monospace; letter-spacing: .1em; text-transform: uppercase; }
.marquee-track i { width: 5px; height: 5px; border-radius: 50%; background: var(--violet); box-shadow: 0 0 10px var(--violet); }
@keyframes marquee { to { transform: translateX(-50%); } }

.compact-section { padding: clamp(88px, 10vw, 138px) 0; }
.section-heading { margin-bottom: 48px; }
.section-heading h2 { max-width: 820px; margin-bottom: 0; color: #eef1f0; font-size: clamp(38px, 5vw, 68px); font-weight: 580; letter-spacing: -.055em; }
.section-heading p:not(.eyebrow) { max-width: 520px; margin-bottom: 0; color: var(--muted); }
.section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 48px; }
.section-heading-row .eyebrow { margin-bottom: 14px; }
.compact-heading { margin-bottom: 34px; }

.product-section { background: linear-gradient(180deg, var(--ink), #070b14); }
.product-grid { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); grid-auto-flow: dense; gap: 12px; }
.product-card { position: relative; display: flex; min-height: 390px; padding: 30px; grid-column: span 4; flex-direction: column; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(145deg, rgba(255,255,255,.018), transparent 45%), var(--surface); overflow: hidden; transition: transform .35s cubic-bezier(.22,1,.36,1), border-color .3s ease, background .3s ease; }
.product-card::before { content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 2px; opacity: .85; background: var(--violet); }
.product-card[data-accent="cyan"]::before { background: var(--cyan); }
.product-card[data-accent="green"]::before { background: var(--green); }
.product-card::after { content: ""; position: absolute; top: -90px; right: -90px; width: 220px; height: 220px; border-radius: 50%; background: var(--violet); filter: blur(80px); opacity: .07; transition: opacity .3s ease, transform .7s ease; }
.product-card[data-accent="cyan"]::after { background: var(--cyan); }
.product-card[data-accent="green"]::after { background: var(--green); }
.product-card:hover { transform: translateY(-5px); border-color: rgba(122,100,255,.52); background-color: #0d1425; }
.product-card:hover::after { opacity: .15; transform: scale(1.12); }
.product-card-wide { min-height: 350px; grid-column: span 6; }
.product-card-top { position: relative; z-index: 1; display: flex; min-height: 36px; margin-bottom: 42px; align-items: center; justify-content: space-between; gap: 16px; }
.product-type { color: #788188; font: 600 9px/1.3 "Geist Mono", monospace; letter-spacing: .1em; text-align: right; text-transform: uppercase; }
.product-icon { display: grid; width: 32px; height: 32px; padding: 6px; grid-template-columns: repeat(3,1fr); align-items: end; gap: 3px; border: 1px solid rgba(122,100,255,.35); border-radius: 9px; background: rgba(122,100,255,.08); }
.product-icon i { display: block; height: 55%; border-radius: 2px; background: var(--violet); }
.product-icon i:nth-child(2) { height: 100%; background: var(--cyan); }
.product-icon i:nth-child(3) { height: 76%; background: var(--green); }
.product-card h3 { position: relative; z-index: 1; margin-bottom: 14px; color: #eef1f0; font-size: clamp(27px, 2.4vw, 35px); font-weight: 590; letter-spacing: -.045em; }
.product-card > p { position: relative; z-index: 1; max-width: 550px; margin-bottom: 23px; color: #9ca4a9; font-size: 14px; }
.product-card ul { position: relative; z-index: 1; display: grid; margin: 0 0 28px; padding: 0; gap: 8px; list-style: none; }
.product-card li { color: #bbc1c4; font-size: 12px; }
.product-card li::before { content: ""; display: inline-block; width: 5px; height: 5px; margin: 0 10px 2px 0; border-radius: 50%; background: var(--green); }
.product-card > a { position: relative; z-index: 1; display: flex; margin-top: auto; align-items: center; justify-content: space-between; gap: 18px; color: var(--green); font-size: 12px; font-weight: 650; text-decoration: none; }
.product-card > a span { font-size: 18px; transition: transform .25s ease; }
.product-card:hover > a span { transform: translateX(5px); }
.text-link { color: var(--green); font-size: 13px; font-weight: 600; text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: 5px; }
.infrastructure-proof { display: grid; margin-top: 12px; padding: 30px 34px; grid-template-columns: .7fr 1.2fr 1.5fr; align-items: center; gap: 38px; border: 1px solid rgba(54,197,255,.22); border-radius: 18px; background: linear-gradient(90deg, rgba(54,197,255,.06), rgba(122,100,255,.05)), #090e19; }
.infrastructure-proof > div { display: flex; align-items: center; gap: 12px; }
.infrastructure-proof p, .infrastructure-proof h3 { margin: 0; }
.infrastructure-proof > div p { color: var(--cyan); font: 600 10px "Geist Mono", monospace; letter-spacing: .08em; text-transform: uppercase; }
.proof-signal { width: 9px; height: 9px; flex: 0 0 auto; border: 2px solid var(--green); border-radius: 50%; box-shadow: 0 0 15px rgba(108,255,155,.6); }
.infrastructure-proof h3 { color: #e2e6e5; font-size: 19px; letter-spacing: -.025em; }
.infrastructure-proof > p { color: #899197; font-size: 12px; }

.proof-section { border-block: 1px solid var(--line); background: var(--surface); }
.proof-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.proof-grid article { min-height: 230px; padding: 34px; border-right: 1px solid var(--line); }
.proof-grid article:last-child { border-right: 0; }
.proof-grid span, .path-grid > li > span { color: var(--violet); font: 600 11px "Geist Mono", monospace; }
.proof-grid h3, .path-grid h3 { margin: 56px 0 12px; font-size: 23px; letter-spacing: -.03em; }
.proof-grid p, .path-grid p { margin-bottom: 0; color: var(--muted); }

.game-spotlight { overflow: hidden; }
.game-layout { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(54px, 8vw, 120px); }
.game-copy h2 { max-width: 650px; margin-bottom: 24px; font-size: clamp(42px, 5.5vw, 76px); font-weight: 580; letter-spacing: -.06em; }
.game-copy > p:not(.eyebrow) { max-width: 570px; color: var(--muted); font-size: 18px; }
.game-tags { display: flex; margin: 28px 0 32px; flex-wrap: wrap; gap: 8px; }
.game-tags span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: #bac1c4; font: 500 11px "Geist Mono", monospace; }
.game-console { border: 1px solid rgba(54,197,255,.22); border-radius: var(--radius); background: linear-gradient(145deg, rgba(54,197,255,.08), rgba(122,100,255,.1)), var(--surface); box-shadow: 0 40px 90px rgba(0,0,0,.42); transform: perspective(1000px) rotateY(-5deg); overflow: hidden; }
.console-top { display: flex; min-height: 54px; padding: 0 20px; align-items: center; gap: 8px; border-bottom: 1px solid var(--line); }
.console-top > span { width: 8px; height: 8px; border-radius: 50%; background: var(--line); }
.console-top > span:first-child { background: var(--violet); }
.console-top strong { margin-left: auto; color: #717980; font: 500 10px "Geist Mono", monospace; }
.console-body { padding: 18px 28px 28px; }
.console-body p { display: flex; margin: 0; padding: 23px 0; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--line); }
.console-body p:last-child { border-bottom: 0; }
.console-body span { color: #707980; font: 500 11px "Geist Mono", monospace; text-transform: uppercase; }
.console-body strong { color: #e1e5e4; text-align: right; }

.path-section { background: #070b14; border-top: 1px solid var(--line); }
.path-grid { display: grid; margin: 0; padding: 0; grid-template-columns: repeat(3,1fr); list-style: none; }
.path-grid li { min-height: 255px; padding: 34px; border: 1px solid var(--line); border-right: 0; }
.path-grid li:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.path-grid li:last-child { border-right: 1px solid var(--line); border-radius: 0 var(--radius) var(--radius) 0; }

.final-cta { padding: clamp(90px, 11vw, 150px) 0; border-top: 1px solid var(--line); background: radial-gradient(circle at 50% 30%, rgba(122,100,255,.22), transparent 34rem), #080b14; text-align: center; }
.final-cta h2 { max-width: 980px; margin: 0 auto 34px; color: #f1f3f2; font-size: clamp(40px, 6vw, 80px); font-weight: 580; letter-spacing: -.06em; }
.final-cta .contact-note { max-width: 680px; }
.site-footer { padding: 68px 0 22px; border-top: 1px solid var(--line); background: #05070d; }
.footer-main { display: grid; padding-bottom: 58px; grid-template-columns: 2fr 1fr 1fr; gap: 60px; }
.footer-brand p { max-width: 350px; margin: 22px 0 0; color: var(--muted); }
.footer-main nav { display: flex; flex-direction: column; gap: 10px; }
.footer-main h2 { margin-bottom: 8px; color: #f0f2f1; font-size: 13px; }
.footer-main nav a { color: var(--muted); font-size: 13px; text-decoration: none; }
.footer-main nav .pending-link { font-size: 12px; }
.footer-main nav a:hover { color: var(--green); }
.footer-bottom { display: flex; padding-top: 18px; justify-content: space-between; border-top: 1px solid var(--line); color: #626b72; font: 500 10px "Geist Mono", monospace; text-transform: uppercase; }

/* Plans */
.plans-page { background: #070a11; }
.plans-hero { padding: 170px 0 84px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 82% 24%, rgba(54,197,255,.1), transparent 22rem), radial-gradient(circle at 15% 30%, rgba(122,100,255,.12), transparent 28rem); }
.plans-hero-grid { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 70px; }
.plans-hero h1 { margin: 0 0 25px; font-size: clamp(54px, 7vw, 96px); }
.plans-hero > .container > div > p:not(.eyebrow) { max-width: 720px; margin: 0; color: #a8afb3; font-size: 19px; }
.catalog-status { padding: 26px; border: 1px solid rgba(255,190,85,.25); border-radius: 18px; background: rgba(255,190,85,.05); }
.catalog-status span { color: var(--warning); font: 600 10px "Geist Mono", monospace; letter-spacing: .1em; text-transform: uppercase; }
.catalog-status strong { display: block; margin: 8px 0; color: #f1e4c9; font-size: 18px; }
.catalog-status p { margin: 0; color: #9f9581; font-size: 13px; }
.catalog-toolbar-wrap { position: sticky; z-index: 40; top: 89px; border-bottom: 1px solid var(--line); background: rgba(7,10,17,.94); backdrop-filter: blur(16px); }
.catalog-toolbar { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 25px; }
.category-tabs { display: flex; overflow-x: auto; scrollbar-width: none; }
.category-tabs::-webkit-scrollbar { display: none; }
.category-tabs button { flex: 0 0 auto; padding: 28px 15px 25px; border: 0; border-bottom: 3px solid transparent; background: transparent; color: #8f979d; font-size: 13px; cursor: pointer; }
.category-tabs button:hover { color: #fff; }
.category-tabs button[aria-selected="true"] { border-color: var(--green); color: #fff; }
.billing-toggle { display: flex; padding: 4px; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }
.billing-toggle button { min-height: 36px; padding: 0 12px; border: 0; border-radius: 8px; background: transparent; color: var(--muted); font-size: 11px; cursor: pointer; }
.billing-toggle button.is-selected { background: var(--surface-3); color: #fff; }
.billing-toggle button:disabled { opacity: .45; cursor: not-allowed; }
.billing-toggle span { color: var(--warning); font: 500 8px "Geist Mono", monospace; }
.catalog-content { padding-top: 80px; padding-bottom: 120px; }
.catalog-heading { display: flex; margin-bottom: 35px; align-items: end; justify-content: space-between; gap: 35px; }
.catalog-heading h2 { margin: 0; font-size: clamp(38px, 5vw, 64px); letter-spacing: -.055em; }
.catalog-heading > p { margin: 0; color: var(--muted); font: 500 11px "Geist Mono", monospace; }
.plan-list { display: grid; gap: 14px; }
.plan-title { padding: 30px; }
.plan-kicker { display: block; margin-bottom: 28px; color: var(--cyan); font: 600 10px "Geist Mono", monospace; letter-spacing: .1em; text-transform: uppercase; }
.plan-kicker b { margin-left: 8px; padding: 5px 7px; border-radius: 5px; background: rgba(108,255,155,.1); color: var(--green); }
.plan-title h3 { margin-bottom: 10px; font-size: 24px; letter-spacing: -.03em; }
.plan-title p { margin: 0; color: var(--muted); font-size: 13px; }
table { width: 100%; min-width: 650px; border-collapse: collapse; background: var(--surface); }
th, td { padding: 22px 26px; border-bottom: 1px solid var(--line); text-align: left; }
tr:last-child th, tr:last-child td { border-bottom: 0; }
thead th { background: #0d1322; color: #aeb5ba; font: 600 10px "Geist Mono", monospace; letter-spacing: .1em; text-transform: uppercase; }
tbody th { color: #b7bec1; font-size: 14px; font-weight: 500; }
td { color: #8e969b; font-size: 14px; }
.check { color: var(--green); }
.connection-state { flex: 0 0 auto; padding: 7px 9px; border: 1px solid var(--line); border-radius: 999px; font: 600 8px "Geist Mono", monospace; letter-spacing: .08em; text-transform: uppercase; }
.connection-state.is-waiting { border-color: rgba(255,190,85,.24); background: rgba(255,190,85,.06); color: var(--warning); }
.service-glyph { display: grid; width: 46px; height: 46px; padding: 10px; flex: 0 0 auto; grid-template-columns: repeat(3,1fr); align-items: end; gap: 4px; border-radius: 12px; background: rgba(122,100,255,.1); }
.service-glyph i { height: 45%; border-radius: 2px; background: var(--violet); }
.service-glyph i:nth-child(2) { height: 100%; background: var(--cyan); }
.service-glyph i:nth-child(3) { height: 72%; background: var(--green); }
.text-button { display: flex; width: 100%; padding: 14px 0 0; align-items: center; justify-content: space-between; border: 0; border-top: 1px solid var(--line); background: transparent; color: var(--green); font: 600 11px Geist, sans-serif; cursor: pointer; }
.text-button span { font-size: 18px; transition: transform .2s ease; }
.text-button:hover span { transform: translateX(4px); }
.support-route { display: grid; margin: 24px 0; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 12px; }
.support-route > div { min-height: 90px; padding: 15px; border: 1px solid var(--line); border-radius: 12px; background: #090e19; }
.support-route span { color: var(--cyan); font: 600 9px "Geist Mono", monospace; }
.support-route strong { display: block; margin-top: 12px; color: #c4cacc; font-size: 11px; }
.support-route > i { width: 20px; height: 1px; background: var(--line); }
.service-detail-card { min-height: 580px; }
.support-workspace { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(320px,.65fr); gap: 14px; }

@media (max-width: 1180px) {
  .support-route { grid-template-columns: 1fr; }
  .support-route > i { width: 1px; height: 14px; margin-left: 50%; }
}

@media (max-width: 1050px) {
  .site-nav { position: fixed; top: 82px; left: 18px; right: 18px; display: none; padding: 16px; align-items: stretch; flex-direction: column; border: 1px solid var(--line); border-radius: 18px; background: rgba(11,16,32,.98); box-shadow: 0 25px 70px rgba(0,0,0,.5); }
  .site-nav.is-open { display: flex; }
  .nav-links, .nav-actions { align-items: stretch; flex-direction: column; }
  .nav-links { padding: 4px; }
  .nav-links a { padding: 12px; }
  .nav-actions { padding: 10px 4px 0; }
  .site-nav .nav-login { padding: 10px 12px; border-top: 1px solid var(--line); border-left: 0; }
  .menu-button { display: block; }
  .product-card { grid-column: span 6; }
  .product-card:last-child { grid-column: 1 / -1; }
  .infrastructure-proof { grid-template-columns: 1fr 1.25fr; }
  .infrastructure-proof > p { grid-column: 1 / -1; }
  .plans-hero-grid { grid-template-columns: 1fr; align-items: start; }
  .catalog-toolbar { align-items: stretch; flex-direction: column; padding: 12px 0; }
  .category-tabs { margin-bottom: -12px; }
  .category-tabs button { padding-block: 13px; }
  .billing-toggle { align-self: flex-start; }
  .catalog-toolbar-wrap { top: 79px; }
}

@media (max-width: 760px) {
  .site-header { width: calc(100% - 24px); min-height: 62px; padding-left: 14px; border-radius: 17px; }
  .brand { font-size: 15px; }
  .brand-mark { width: 22px; height: 24px; }
  .hero { min-height: 780px; padding-top: 128px; }
  .hero h1, .plans-hero h1 { font-size: clamp(46px, 14vw, 72px); }
  .hero-copy { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .section-heading-row, .catalog-heading { align-items: flex-start; flex-direction: column; gap: 20px; }
  .proof-grid, .game-layout, .path-grid, .footer-main { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card, .product-card-wide, .product-card:last-child { min-height: 0; grid-column: 1; }
  .infrastructure-proof { grid-template-columns: 1fr; gap: 18px; }
  .infrastructure-proof > p { grid-column: auto; }
  .proof-grid article { min-height: 200px; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-grid article:last-child { border-bottom: 0; }
  .proof-grid h3, .path-grid h3 { margin-top: 38px; }
  .game-console { transform: none; }
  .path-grid li { min-height: 210px; border-right: 1px solid var(--line); border-bottom: 0; }
  .path-grid li:first-child { border-radius: var(--radius) var(--radius) 0 0; }
  .path-grid li:last-child { border-bottom: 1px solid var(--line); border-radius: 0 0 var(--radius) var(--radius); }
  .footer-main { gap: 36px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .plans-hero { padding-top: 130px; }
  .catalog-toolbar-wrap { top: 72px; }
  .catalog-content { padding-top: 55px; }
}

@media (max-width: 480px) {
  .hero h1 { letter-spacing: -.055em; }
  .scroll-cue { display: none; }
  .compact-section { padding-block: 78px; }
  .console-body { padding-inline: 20px; }
  .console-body p { align-items: flex-start; flex-direction: column; gap: 5px; }
  .console-body strong { text-align: left; }
}

@media (max-width: 1050px) {
  .support-workspace { grid-template-columns: 1fr; }
}

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