:root {
  --bg: #050814;
  --bg-2: #080d1b;
  --surface: rgba(12, 20, 39, .78);
  --surface-strong: rgba(12, 20, 39, .94);
  --surface-soft: rgba(255,255,255,.035);
  --line: rgba(142, 177, 255, .13);
  --line-strong: rgba(82, 224, 255, .26);
  --text: #f8fbff;
  --muted: #9daac2;
  --muted-2: #6f7e98;
  --blue: #2b65fc;
  --blue-deep: #151efb;
  --cyan: #52e0ff;
  --purple: #8b5cf6;
  --green: #36e88d;
  --yellow: #f8d761;
  --danger: #ff6b7a;
  --gradient: linear-gradient(135deg, var(--blue-deep), var(--blue) 45%, var(--cyan));
  --gradient-soft: linear-gradient(135deg, rgba(21,30,251,.14), rgba(82,224,255,.09));
  --shadow: 0 22px 80px rgba(0,0,0,.34);
  --radius: 22px;
  --radius-sm: 14px;
  --header-h: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body { margin: 0; min-height: 100vh; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--text); background: radial-gradient(circle at 50% -20%, #0a1936 0%, var(--bg) 44%, #04060d 100%); overflow-x: hidden; }
body::selection { background: rgba(82,224,255,.24); color: white; }
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img { max-width: 100%; display: block; }
svg { width: 1em; height: 1em; }

.ambient { position: fixed; pointer-events: none; filter: blur(100px); opacity: .18; z-index: -2; border-radius: 50%; }
.ambient-a { width: 450px; height: 450px; background: #1539ff; top: 70px; left: -190px; }
.ambient-b { width: 520px; height: 520px; background: #31d7ff; top: 420px; right: -290px; opacity: .12; }
.ambient-c { width: 380px; height: 380px; background: #7440ff; top: 58%; left: 35%; opacity: .08; }
.grid-bg { position: fixed; inset: 0; z-index: -3; opacity: .22; background-image: linear-gradient(rgba(93,128,192,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(93,128,192,.035) 1px, transparent 1px); background-size: 38px 38px; mask-image: linear-gradient(to bottom, black 0%, transparent 72%); }
.wrap { width: min(1180px, calc(100% - 44px)); margin-inline: auto; }
.page { display: none; min-height: calc(100vh - 180px); animation: pageIn .28s ease both; }
.page.active { display: block; }
@keyframes pageIn { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }

.glass-card { background: linear-gradient(180deg, rgba(18, 29, 54, .78), rgba(8, 14, 29, .78)); border: 1px solid var(--line); box-shadow: inset 0 1px 0 rgba(255,255,255,.025), var(--shadow); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-radius: var(--radius); }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.eyebrow, .mini-label, .card-kicker { color: #91a9d1; font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow { display: inline-flex; gap: 9px; align-items: center; color: #b7c9e9; padding: 8px 11px; border-radius: 999px; background: rgba(50, 104, 255, .07); border: 1px solid rgba(86, 139, 255, .14); }
.pulse-dot, .live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(82,224,255,.08), 0 0 22px rgba(82,224,255,.85); }

.site-header { width: min(1240px, calc(100% - 28px)); height: var(--header-h); margin: 14px auto 0; padding: 8px 10px 8px 14px; position: sticky; top: 12px; z-index: 50; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; border: 1px solid rgba(139,174,244,.12); border-radius: 19px; background: rgba(5, 10, 23, .75); backdrop-filter: blur(22px) saturate(140%); -webkit-backdrop-filter: blur(22px) saturate(140%); box-shadow: 0 16px 55px rgba(0,0,0,.28); transition: border-color .2s ease, background .2s ease; }
.site-header.scrolled { background: rgba(5, 10, 23, .9); border-color: rgba(139,174,244,.19); }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: max-content; }
.brand-logo { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 24px rgba(43,101,252,.26); border: 1px solid rgba(82,224,255,.28); }
.brand-wordmark { display: flex; align-items: baseline; letter-spacing: -.03em; font-size: 16px; }
.brand-wordmark strong { font-weight: 900; }
.brand-wordmark span { color: #c6d0e2; font-weight: 600; }
.nav { justify-self: center; display: flex; align-items: center; gap: 3px; padding: 4px; }
.nav a { padding: 9px 11px; border-radius: 10px; color: #97a5be; font-size: 13px; font-weight: 700; transition: .18s ease; white-space: nowrap; }
.nav a:hover { color: white; background: rgba(255,255,255,.035); }
.nav a.active { color: white; background: rgba(64,115,255,.10); box-shadow: inset 0 0 0 1px rgba(80,139,255,.14); }
.mobile-menu { display: none; border: 0; background: transparent; width: 42px; height: 42px; padding: 10px; cursor: pointer; }
.mobile-menu span { display: block; height: 2px; border-radius: 2px; background: white; margin: 5px 0; transition: .2s ease; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 43px; padding: 0 16px; border: 1px solid transparent; border-radius: 12px; font-weight: 800; font-size: 13px; letter-spacing: -.01em; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: var(--gradient); box-shadow: 0 10px 30px rgba(35, 97, 255, .20), inset 0 1px 0 rgba(255,255,255,.18); }
.btn-primary:hover { box-shadow: 0 14px 40px rgba(35, 97, 255, .32), 0 0 28px rgba(82,224,255,.10); }
.btn-secondary { color: #e9f0ff; border-color: rgba(165,186,230,.16); background: rgba(255,255,255,.035); }
.btn-secondary:hover { border-color: rgba(82,224,255,.25); background: rgba(82,224,255,.045); }
.btn-small { min-height: 42px; padding-inline: 15px; }
.btn-large { min-height: 50px; padding-inline: 20px; font-size: 14px; border-radius: 14px; }
.full-btn { width: 100%; }
.text-link { color: #a9c9ff; font-size: 13px; font-weight: 800; display: inline-flex; align-items: center; gap: 6px; transition: color .18s ease, gap .18s ease; }
.text-link:hover { color: var(--cyan); gap: 9px; }

/* Home */
.hero-grid { min-height: 680px; display: grid; grid-template-columns: 1.03fr .97fr; gap: 70px; align-items: center; padding-top: 34px; padding-bottom: 44px; }
.hero-copy-block h1 { margin: 20px 0 20px; font-size: clamp(50px, 6.7vw, 86px); line-height: .98; letter-spacing: -.07em; max-width: 760px; }
.hero-copy { max-width: 690px; margin: 0; color: #a9b6cc; font-size: 18px; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 11px; margin-top: 30px; }
.hero-proof { display: grid; gap: 12px; margin-top: 30px; max-width: 630px; grid-template-columns: repeat(3,1fr); }
.hero-proof > div { display: flex; align-items: flex-start; gap: 10px; padding-right: 8px; }
.proof-icon { width: 25px; height: 25px; flex: 0 0 25px; display: grid; place-items: center; border-radius: 8px; color: #9bffe0; background: rgba(54,232,141,.08); border: 1px solid rgba(54,232,141,.14); font-size: 12px; font-weight: 900; }
.hero-proof strong, .hero-proof small { display: block; }
.hero-proof strong { font-size: 12px; }
.hero-proof small { margin-top: 4px; color: #77869f; font-size: 10px; line-height: 1.35; }
.hero-visual { min-height: 545px; position: relative; display: grid; place-items: center; }
.logo-stage { width: min(465px, 100%); aspect-ratio: 1; position: relative; display: grid; place-items: center; padding: 52px; overflow: visible; background: radial-gradient(circle at 50% 38%, rgba(36,102,255,.12), rgba(5,10,22,.66) 60%); }
.logo-stage::before { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(82,224,255,.09); border-radius: 32px; pointer-events: none; }
.logo-halo { position: absolute; width: 66%; height: 66%; border-radius: 50%; background: rgba(41,106,255,.24); filter: blur(55px); }
.hero-logo { position: relative; width: 87%; border-radius: 50%; filter: drop-shadow(0 30px 50px rgba(0,0,0,.48)); }
.hero-orbit { position: absolute; border: 1px solid rgba(93,147,255,.10); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 525px; height: 525px; }
.orbit-two { width: 585px; height: 585px; border-style: dashed; opacity: .5; animation: slowSpin 35s linear infinite; }
@keyframes slowSpin { to { transform: rotate(360deg); } }
.floating-tag { position: absolute; display: flex; align-items: center; gap: 8px; padding: 10px 12px; border-radius: 12px; color: #dce8fb; background: rgba(8,15,31,.88); border: 1px solid rgba(126,168,255,.15); box-shadow: 0 12px 38px rgba(0,0,0,.28); font-size: 11px; font-weight: 800; backdrop-filter: blur(14px); }
.floating-tag span { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px rgba(82,224,255,.5); }
.tag-a { top: 12%; left: -8%; }
.tag-b { right: -8%; top: 38%; }
.tag-c { bottom: 12%; left: -5%; }
.availability-card { position: absolute; bottom: -4px; right: -8px; width: 300px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 11px; padding: 13px; border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,.34); }
.availability-card strong, .availability-card small { display: block; }
.availability-card strong { font-size: 12px; }
.availability-card small { color: var(--muted); font-size: 10px; margin-top: 3px; line-height: 1.4; }
.availability-card > a { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 9px; background: rgba(82,224,255,.07); color: var(--cyan); }
.capability-strip { min-height: 68px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px; padding: 16px 22px; border-radius: 18px; box-shadow: 0 18px 55px rgba(0,0,0,.18); }
.capability-strip span { color: #8290a8; font-size: 10px; letter-spacing: .12em; font-weight: 900; }
.capability-strip i { width: 3px; height: 3px; border-radius: 50%; background: #3c4c68; }
.home-section { padding: 105px 0 0; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 26px; }
.section-heading h2 { max-width: 760px; margin: 9px 0 0; font-size: clamp(32px, 4.4vw, 54px); line-height: 1.06; letter-spacing: -.045em; }
.centered-heading { justify-content: center; text-align: center; }
.centered-heading > div { max-width: 770px; }
.centered-heading h2 { margin-inline: auto; }
.centered-heading p { color: var(--muted); line-height: 1.7; max-width: 720px; margin: 16px auto 0; }
.feature-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.feature-card { position: relative; min-height: 260px; padding: 25px; overflow: hidden; transition: transform .22s ease, border-color .22s ease, background .22s ease; }
.feature-card:hover { transform: translateY(-4px); border-color: rgba(91,156,255,.26); background: linear-gradient(180deg, rgba(21, 36, 66, .88), rgba(8, 14, 29, .88)); }
.feature-card h3 { margin: 9px 0 9px; font-size: 21px; letter-spacing: -.03em; }
.feature-card p { color: var(--muted); font-size: 13px; line-height: 1.7; margin: 0; }
.feature-wide { grid-column: span 2; min-height: 300px; display: grid; grid-template-columns: auto 1fr; column-gap: 17px; align-content: start; }
.feature-wide > .feature-icon { grid-row: span 2; }
.feature-wide .feature-tags { grid-column: 2; }
.feature-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; color: #bdeeff; background: linear-gradient(145deg, rgba(42,101,252,.16), rgba(82,224,255,.07)); border: 1px solid rgba(82,224,255,.12); box-shadow: inset 0 1px 0 rgba(255,255,255,.035); margin-bottom: 22px; }
.svg-icon svg { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; width: 22px; height: 22px; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 24px; }
.feature-tags span, .mode-chips span { padding: 7px 9px; border: 1px solid rgba(119,151,215,.12); background: rgba(255,255,255,.025); color: #91a0b9; border-radius: 9px; font-size: 10px; font-weight: 750; }
.feature-accent { background: radial-gradient(circle at 85% 15%, rgba(82,224,255,.12), transparent 42%), linear-gradient(180deg, rgba(18,29,54,.78), rgba(8,14,29,.78)); }
.feature-accent .text-link { margin-top: 22px; }
.why-section { padding-bottom: 0; }
.why-grid { margin-top: 40px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.why-card { min-height: 230px; padding: 28px 24px; border-right: 1px solid var(--line); }
.why-card:last-child { border-right: 0; }
.why-card > strong { font-size: 11px; color: #4e6a9d; letter-spacing: .12em; }
.why-card h3 { margin: 50px 0 9px; font-size: 18px; }
.why-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.mega-cta { margin-top: 105px; margin-bottom: 105px; min-height: 265px; padding: 42px; display: flex; justify-content: space-between; align-items: center; gap: 35px; overflow: hidden; position: relative; background: radial-gradient(circle at 85% 10%, rgba(82,224,255,.13), transparent 33%), radial-gradient(circle at 15% 80%, rgba(21,30,251,.16), transparent 37%), linear-gradient(180deg, rgba(18,29,54,.84), rgba(8,14,29,.88)); }
.mega-cta::after { content: ""; position: absolute; width: 300px; height: 300px; right: -160px; top: -150px; border: 1px solid rgba(82,224,255,.15); border-radius: 50%; box-shadow: 0 0 0 35px rgba(82,224,255,.015), 0 0 0 70px rgba(82,224,255,.012); }
.mega-cta-copy { max-width: 670px; position: relative; z-index: 1; }
.mega-cta h2 { margin: 9px 0 10px; font-size: clamp(33px, 4vw, 52px); letter-spacing: -.045em; }
.mega-cta p { color: var(--muted); line-height: 1.7; margin: 0; }
.mega-cta-actions { display: grid; gap: 14px; justify-items: start; position: relative; z-index: 1; }

/* Shared page hero */
.page-hero { padding: 100px 0 42px; }
.page-hero h1 { margin: 16px 0 16px; font-size: clamp(46px, 6.4vw, 76px); line-height: 1; letter-spacing: -.06em; max-width: 920px; }
.page-hero p { max-width: 720px; color: var(--muted); font-size: 17px; line-height: 1.75; margin: 0; }
.split-page-hero { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; }
.page-emblem { width: 126px; height: 126px; object-fit: cover; border-radius: 50%; border: 1px solid rgba(82,224,255,.22); box-shadow: 0 0 50px rgba(43,101,252,.18); }

/* Services */
.service-grid { padding: 18px 0 110px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.service-card { min-height: 390px; padding: 26px; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: transform .22s ease, border-color .22s ease; }
.service-card:hover { transform: translateY(-4px); border-color: rgba(82,224,255,.23); }
.service-top { display: flex; justify-content: space-between; align-items: center; }
.service-number { font-size: 11px; font-weight: 900; color: #435479; letter-spacing: .1em; }
.service-badge { width: max-content; color: #c6dcff; background: rgba(43,101,252,.08); border: 1px solid rgba(82,140,255,.14); border-radius: 999px; padding: 6px 9px; font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.service-card h3 { font-size: 26px; margin: 26px 0 10px; letter-spacing: -.035em; }
.service-card > p, .custom-card p { margin: 0; max-width: 530px; color: var(--muted); line-height: 1.7; font-size: 13px; }
.service-card ul { margin: 22px 0; padding-left: 18px; color: #c3cde0; font-size: 12px; line-height: 2; }
.service-card > a:not(.btn) { margin-top: auto; color: #a9c9ff; font-size: 12px; font-weight: 800; }
.service-card > a:not(.btn):hover { color: var(--cyan); }
.custom-card { grid-column: 1 / -1; min-height: 230px; flex-direction: row; align-items: center; justify-content: space-between; gap: 30px; background: radial-gradient(circle at 85% 20%, rgba(82,224,255,.13), transparent 35%), linear-gradient(180deg, rgba(18,29,54,.78), rgba(8,14,29,.78)); }
.custom-card h3 { margin-top: 13px; font-size: 31px; }

/* Process */
.process-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(300px, .65fr); gap: 20px; padding: 18px 0 110px; align-items: start; }
.process-timeline { display: grid; gap: 12px; }
.process-step { position: relative; min-height: 190px; padding: 25px; display: grid; grid-template-columns: 70px 1fr; gap: 20px; }
.process-step > span { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 17px; background: rgba(43,101,252,.08); border: 1px solid rgba(82,140,255,.12); color: #95bcff; font-size: 13px; font-weight: 900; letter-spacing: .05em; }
.process-step small { color: #59719c; font-weight: 900; font-size: 9px; letter-spacing: .14em; }
.process-step h3 { margin: 6px 0 8px; font-size: 24px; letter-spacing: -.03em; }
.process-step p { margin: 0; color: var(--muted); line-height: 1.7; font-size: 13px; }
.order-sidebar { position: sticky; top: 102px; display: grid; gap: 12px; }
.ticket-card { padding: 27px; }
.ticket-card h2 { font-size: 28px; margin: 9px 0 20px; letter-spacing: -.04em; }
.check-list { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 10px; align-items: center; color: #bdc7d9; font-size: 12px; }
.check-list li span { width: 23px; height: 23px; flex: 0 0 23px; display: grid; place-items: center; border-radius: 7px; background: rgba(54,232,141,.07); border: 1px solid rgba(54,232,141,.12); color: #94f5c1; font-size: 10px; }
.scope-note { padding: 18px; display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; }
.scope-note p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.6; }
.scope-note strong { color: white; }
.scope-icon { width: 29px; height: 29px; border-radius: 9px; display: grid; place-items: center; background: rgba(82,224,255,.06); border: 1px solid rgba(82,224,255,.11); color: var(--cyan); font-size: 11px; font-weight: 900; }

/* Server */
.server-page-hero { align-items: center; }
.server-layout { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(300px, .7fr); gap: 16px; padding: 18px 0 110px; }
.server-main, .server-side { padding: 28px; }
.server-brand-row { display: grid; grid-template-columns: auto 1fr auto; gap: 13px; align-items: center; }
.server-brand-row > img { width: 54px; height: 54px; border-radius: 50%; border: 1px solid rgba(82,224,255,.18); }
.server-brand-row h2 { margin: 3px 0 0; font-size: 23px; letter-spacing: -.04em; }
.status-pill { white-space: nowrap; border: 1px solid var(--line); border-radius: 999px; padding: 9px 11px; color: var(--muted); font-size: 10px; font-weight: 850; }
.status-pill span { display: inline-block; width: 7px; height: 7px; background: #738096; border-radius: 50%; margin-right: 6px; }
.status-pill.online { color: #baf7cc; border-color: rgba(54,232,141,.17); background: rgba(54,232,141,.05); }
.status-pill.online span { background: var(--green); box-shadow: 0 0 13px rgba(54,232,141,.48); }
.status-pill.offline { color: #ffb8bf; border-color: rgba(255,107,122,.17); background: rgba(255,107,122,.05); }
.status-pill.offline span { background: var(--danger); }
.ip-panel { margin-top: 28px; padding: 22px; border-radius: 17px; background: linear-gradient(135deg, rgba(43,101,252,.08), rgba(82,224,255,.035)); border: 1px solid rgba(82,140,255,.12); }
.ip-row { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 9px; }
.ip-row code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: clamp(22px, 4vw, 34px); font-weight: 900; letter-spacing: -.045em; color: #f2f7ff; }
.ip-panel > small { display: block; color: #74839c; font-size: 10px; margin-top: 9px; }
.copy-btn { border: 1px solid rgba(82,224,255,.14); background: rgba(82,224,255,.05); color: #bdeeff; border-radius: 10px; padding: 8px 10px; font-size: 10px; font-weight: 850; cursor: pointer; }
.server-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin: 18px 0 26px; }
.server-stats div { padding: 16px; border-radius: 13px; background: rgba(255,255,255,.025); border: 1px solid var(--line); }
.server-stats span { display: block; color: var(--muted-2); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.server-stats strong { font-size: 17px; }
.server-description { padding-top: 24px; border-top: 1px solid var(--line); }
.server-description h3 { font-size: 26px; max-width: 650px; margin: 9px 0 10px; letter-spacing: -.035em; }
.server-description p { max-width: 690px; color: var(--muted); line-height: 1.7; font-size: 13px; }
.mode-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.server-actions { margin-top: 24px; }
.server-side h2 { font-size: 27px; margin: 9px 0 0; letter-spacing: -.04em; }
.steps { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 19px; }
.steps li { display: grid; grid-template-columns: 37px 1fr; gap: 12px; align-items: center; }
.steps li > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 11px; background: rgba(43,101,252,.08); border: 1px solid rgba(82,140,255,.12); color: #b7d2ff; font-size: 11px; font-weight: 900; }
.steps strong, .steps small { display: block; }
.steps strong { font-size: 12px; }
.steps small { margin-top: 4px; color: var(--muted-2); line-height: 1.4; font-size: 10px; }
.server-copy-card { width: 100%; margin-top: 25px; padding: 13px 14px; display: flex; justify-content: space-between; align-items: center; text-align: left; cursor: pointer; color: white; background: rgba(255,255,255,.025); border: 1px solid var(--line); border-radius: 13px; }
.server-copy-card small, .server-copy-card strong { display: block; }
.server-copy-card small { color: var(--muted-2); font-size: 8px; font-weight: 900; letter-spacing: .12em; margin-bottom: 4px; }
.server-copy-card strong { font-family: ui-monospace, monospace; font-size: 11px; }
.copy-symbol { color: #9ddcff; font-size: 18px; }

/* Reviews */
.reviews-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 16px; padding: 18px 0 110px; }
.review-empty { min-height: 450px; padding: 38px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; position: relative; overflow: hidden; }
.review-empty::before { content: ""; position: absolute; width: 330px; height: 330px; right: -130px; top: -130px; background: rgba(43,101,252,.11); filter: blur(30px); border-radius: 50%; }
.review-stars-large { color: var(--yellow); letter-spacing: 8px; font-size: 19px; margin-bottom: 26px; }
.review-empty h2 { margin: 10px 0 10px; font-size: 38px; letter-spacing: -.045em; }
.review-empty p { max-width: 590px; color: var(--muted); line-height: 1.7; font-size: 13px; margin: 0 0 24px; }
.review-info-grid { display: grid; gap: 12px; }
.review-info { min-height: 142px; padding: 21px; }
.review-info strong { font-size: 24px; color: #cce7ff; }
.review-info > span { display: block; margin-top: 8px; font-weight: 850; font-size: 12px; }
.review-info p { color: var(--muted); font-size: 10px; line-height: 1.55; margin: 7px 0 0; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .55fr); gap: 18px; padding: 18px 0 110px; align-items: start; }
.faq-list { display: grid; gap: 10px; }
details { padding: 0 20px; }
summary { cursor: pointer; list-style: none; padding: 20px 0; font-size: 13px; font-weight: 800; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; float: right; color: #7d8da7; font-size: 20px; font-weight: 400; transition: transform .2s ease; }
details[open] summary::after { content: '–'; }
details p { padding: 0 0 20px; margin: 0; color: var(--muted); line-height: 1.7; font-size: 12px; }
.faq-cta { position: sticky; top: 102px; padding: 26px; text-align: center; }
.faq-cta img { width: 108px; height: 108px; border-radius: 50%; margin: 0 auto 22px; border: 1px solid rgba(82,224,255,.18); box-shadow: 0 0 36px rgba(43,101,252,.16); }
.faq-cta h2 { margin: 9px 0 8px; font-size: 27px; letter-spacing: -.04em; }
.faq-cta p { color: var(--muted); line-height: 1.65; font-size: 11px; margin: 0 0 20px; }

/* Footer */
footer { border-top: 1px solid var(--line); background: rgba(3,6,13,.62); }
.footer-top { min-height: 240px; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 60px; height: 60px; border-radius: 50%; border: 1px solid rgba(82,224,255,.16); }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { font-size: 17px; }
.footer-brand span { margin-top: 4px; color: var(--muted); font-size: 10px; }
.footer-nav { display: flex; gap: 90px; }
.footer-nav > div { display: grid; gap: 9px; }
.footer-nav strong { font-size: 10px; color: #657794; text-transform: uppercase; letter-spacing: .13em; margin-bottom: 4px; }
.footer-nav a { color: #a8b3c8; font-size: 11px; }
.footer-nav a:hover { color: white; }
.footer-bottom { min-height: 65px; border-top: 1px solid rgba(120,154,222,.08); display: flex; justify-content: space-between; align-items: center; gap: 20px; color: #56647a; font-size: 9px; }
.toast { position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 20px); opacity: 0; pointer-events: none; background: #eff7ff; color: #07101f; font-weight: 900; font-size: 11px; padding: 11px 14px; border-radius: 11px; transition: .2s ease; z-index: 80; box-shadow: 0 12px 40px rgba(0,0,0,.28); }
.toast.show { opacity: 1; transform: translate(-50%,0); }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .nav a { padding-inline: 8px; font-size: 11px; }
  .desktop-order { display: none; }
  .hero-grid { gap: 35px; }
  .orbit-two { width: 520px; height: 520px; }
  .orbit-one { width: 470px; height: 470px; }
  .hero-proof { grid-template-columns: 1fr; }
  .feature-bento { grid-template-columns: repeat(2, 1fr); }
  .feature-wide { grid-column: 1 / -1; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .why-card:nth-child(2) { border-right: 0; }
  .why-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 850px) {
  .site-header { grid-template-columns: 1fr auto; }
  .mobile-menu { display: block; justify-self: end; }
  .nav { display: none; position: absolute; top: 77px; left: 0; right: 0; padding: 9px; flex-direction: column; align-items: stretch; border: 1px solid rgba(135,168,235,.14); border-radius: 16px; background: rgba(7,12,25,.97); box-shadow: 0 20px 50px rgba(0,0,0,.35); }
  .nav.open { display: flex; }
  .nav a { padding: 12px; font-size: 12px; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 80px; }
  .hero-copy-block { text-align: center; }
  .hero-copy { margin-inline: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
  .hero-proof { max-width: 580px; margin-inline: auto; margin-top: 28px; grid-template-columns: repeat(3,1fr); text-align: left; }
  .hero-visual { min-height: 500px; }
  .logo-stage { width: 430px; }
  .tag-a { left: 1%; }
  .tag-b { right: 1%; }
  .tag-c { left: 5%; }
  .availability-card { right: 7%; }
  .split-page-hero { align-items: flex-start; flex-direction: column; }
  .service-grid, .process-layout, .server-layout, .reviews-layout, .faq-layout { grid-template-columns: 1fr; }
  .order-sidebar, .faq-cta { position: static; }
  .review-info-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { align-items: flex-start; flex-direction: column; justify-content: center; padding: 45px 0; }
}

@media (max-width: 620px) {
  .wrap { width: min(100% - 24px, 1180px); }
  .site-header { width: calc(100% - 16px); top: 8px; margin-top: 8px; height: 62px; border-radius: 15px; }
  .brand-logo { width: 37px; height: 37px; }
  .brand-wordmark { font-size: 14px; }
  .nav { top: 67px; }
  .hero-grid { min-height: auto; padding-top: 75px; gap: 20px; }
  .hero-copy-block h1 { font-size: clamp(48px, 15vw, 68px); }
  .hero-copy { font-size: 15px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; max-width: 370px; }
  .hero-visual { min-height: 420px; }
  .logo-stage { width: min(360px, 92vw); padding: 42px; }
  .orbit-one { width: 380px; height: 380px; }
  .orbit-two { width: 420px; height: 420px; }
  .floating-tag { font-size: 9px; padding: 8px 9px; }
  .tag-a { top: 7%; left: -1%; }
  .tag-b { right: -1%; }
  .tag-c { bottom: 10%; left: 0; }
  .availability-card { bottom: -10px; right: 3%; width: 285px; }
  .capability-strip i { display: none; }
  .capability-strip { gap: 12px 18px; }
  .home-section { padding-top: 78px; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .feature-bento { grid-template-columns: 1fr; }
  .feature-wide { grid-column: auto; display: block; }
  .feature-wide .feature-tags { grid-column: auto; }
  .feature-card { min-height: 240px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { border-right: 0; border-bottom: 1px solid var(--line); min-height: 180px; }
  .why-card:last-child { border-bottom: 0; }
  .why-card h3 { margin-top: 28px; }
  .mega-cta { margin-top: 78px; margin-bottom: 78px; padding: 28px; flex-direction: column; align-items: flex-start; }
  .mega-cta-actions { width: 100%; }
  .mega-cta-actions .btn { width: 100%; }
  .page-hero { padding-top: 80px; }
  .page-hero h1 { font-size: clamp(43px, 13vw, 62px); }
  .page-hero p { font-size: 15px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 365px; }
  .custom-card { grid-column: auto; flex-direction: column; align-items: flex-start; min-height: 280px; }
  .custom-card .btn { width: 100%; }
  .process-step { grid-template-columns: 52px 1fr; padding: 20px; gap: 12px; }
  .process-step > span { width: 46px; height: 46px; border-radius: 13px; }
  .server-brand-row { grid-template-columns: auto 1fr; }
  .server-brand-row .status-pill { grid-column: 1 / -1; width: max-content; }
  .server-main, .server-side { padding: 21px; }
  .server-stats { grid-template-columns: 1fr; }
  .review-empty { min-height: 390px; padding: 28px; }
  .review-info-grid { grid-template-columns: 1fr; }
  .footer-nav { gap: 45px; flex-wrap: wrap; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 18px 0; }
}

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