:root {
  --bg: #080b12;
  --bg-soft: #0d111b;
  --surface: #111722;
  --surface-2: #151c28;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f6f8fb;
  --muted: #a7b0bf;
  --ink: #0a0e14;
  --mint: #7cf7c4;
  --cyan: #48c7ff;
  --violet: #9b7cff;
  --lime: #d7ff70;
  --gradient: linear-gradient(135deg, var(--mint), var(--cyan) 50%, var(--violet));
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
::selection { background: var(--mint); color: var(--ink); }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }
sup { font-size: .42em; line-height: 0; vertical-align: super; margin-left: .08em; }
.container { width: var(--container); margin-inline: auto; }
.section-pad { padding: 120px 0; position: relative; }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }

.noise {
  position: fixed; inset: 0; z-index: 30; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.cursor-glow {
  width: 420px; height: 420px; border-radius: 50%; position: fixed; left: 0; top: 0;
  pointer-events: none; z-index: -1; opacity: .16; filter: blur(70px);
  background: radial-gradient(circle, var(--cyan), transparent 65%); transform: translate(-50%, -50%);
}

.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 20; padding: 18px 0;
  transition: .35s ease;
}
.site-header.scrolled {
  padding: 10px 0; background: rgba(8, 11, 18, .78); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: "Space Grotesk", sans-serif; }
.brand-mark { width: 42px; height: 42px; filter: drop-shadow(0 8px 22px rgba(72, 199, 255, .2)); }
.brand-word { font-size: 25px; letter-spacing: -.04em; font-weight: 700; }
.brand-word sup { color: var(--mint); }
.desktop-nav { display: flex; gap: 34px; align-items: center; }
.desktop-nav a { color: #cbd1db; font-size: 14px; font-weight: 600; transition: .2s; position: relative; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 2px; background: var(--mint); transition: .25s; }
.desktop-nav a:hover { color: #fff; }
.desktop-nav a:hover::after { width: 100%; }
.menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; background: #fff; margin: 7px 0; transition: .3s; }
.mobile-menu { display: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px;
  border-radius: 999px; padding: 0 23px; font-weight: 700; font-size: 14px; border: 1px solid transparent;
  transition: transform .25s, box-shadow .25s, border-color .25s, background .25s; cursor: pointer;
}
.btn svg { width: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--ink); background: var(--gradient); box-shadow: 0 16px 42px rgba(72, 199, 255, .2); }
.btn-primary:hover { box-shadow: 0 20px 52px rgba(72, 199, 255, .32); }
.btn-ghost { border-color: var(--line-strong); background: rgba(255,255,255,.035); }
.btn-ghost:hover { border-color: var(--mint); background: rgba(124,247,196,.07); }
.btn-small { min-height: 44px; padding-inline: 18px; }
.btn-link { padding-inline: 4px; color: #d7dce5; }
.btn-link:hover { color: var(--mint); }
.btn-light { color: var(--ink); background: #fff; min-height: 48px; }

.hero { min-height: 920px; padding-top: 170px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: linear-gradient(to bottom, #000, transparent 75%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .16; }
.orb-one { width: 520px; height: 520px; right: -180px; top: 40px; background: var(--violet); }
.orb-two { width: 400px; height: 400px; left: -200px; top: 320px; background: var(--mint); }
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 70px; position: relative; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 800; color: #c9d0da; }
.eyebrow span { width: 29px; height: 1px; background: var(--mint); box-shadow: 0 0 10px var(--mint); }
.hero h1, .section-head h2, .statement h2, .brands-intro h2, .faq h2 {
  font-family: "Space Grotesk", sans-serif; letter-spacing: -.055em; line-height: 1.04; margin: 24px 0 28px;
}
.hero h1 { font-size: clamp(52px, 5.8vw, 80px); }
.hero-lead { max-width: 670px; font-size: 18px; color: var(--muted); line-height: 1.8; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 38px; }
.hero-proof { display: flex; align-items: center; gap: 16px; margin-top: 48px; color: var(--muted); font-size: 13px; }
.hero-proof p { margin: 0; line-height: 1.5; }
.hero-proof strong { color: #fff; }
.proof-avatars { display: flex; }
.proof-avatars span {
  width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; margin-left: -8px;
  border: 3px solid var(--bg); background: var(--surface-2); color: var(--mint); font-size: 10px; font-weight: 800;
}
.proof-avatars span:first-child { margin-left: 0; }

.hero-visual { min-height: 590px; position: relative; display: grid; place-items: center; }
.visual-shell {
  width: min(100%, 540px); border: 1px solid var(--line-strong); border-radius: 30px; overflow: hidden;
  background: linear-gradient(155deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.1); backdrop-filter: blur(16px); transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
}
.visual-topbar { height: 62px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; border-bottom: 1px solid var(--line); }
.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.2); }
.window-dots span:first-child { background: #ff7f7f; }
.window-dots span:nth-child(2) { background: #ffd96b; }
.window-dots span:nth-child(3) { background: #7cf7c4; }
.secure-pill { display: flex; align-items: center; gap: 7px; font-size: 10px; color: #d7dce5; border: 1px solid var(--line); border-radius: 999px; padding: 7px 10px; }
.secure-pill svg { width: 13px; color: var(--mint); }
.command-center { height: 380px; display: grid; place-items: center; position: relative; overflow: hidden; }
.command-center::before { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(72,199,255,.14), transparent 65%); }
.center-logo {
  z-index: 3; display: flex; align-items: center; gap: 13px; border: 1px solid rgba(255,255,255,.14); background: rgba(8,11,18,.84);
  padding: 16px 20px; border-radius: 20px; box-shadow: 0 18px 50px rgba(0,0,0,.4);
}
.center-logo svg { width: 42px; }
.center-logo strong { display: block; font-family: "Space Grotesk"; font-size: 21px; }
.center-logo span { display: block; color: var(--muted); font-size: 10px; letter-spacing: .06em; }
.orbit { position: absolute; border: 1px dashed rgba(255,255,255,.14); border-radius: 50%; animation: orbitSpin 18s linear infinite; }
.orbit-a { width: 195px; height: 195px; }
.orbit-b { width: 280px; height: 280px; animation-direction: reverse; animation-duration: 24s; }
.orbit-c { width: 350px; height: 350px; animation-duration: 31s; }
.orbit-d { width: 430px; height: 430px; animation-direction: reverse; animation-duration: 38s; }
.orbit-node { width: 44px; height: 44px; display: grid; place-items: center; position: absolute; top: 50%; left: -22px; transform: translateY(-50%); border-radius: 14px; background: var(--surface); border: 1px solid var(--line-strong); color: var(--mint); box-shadow: 0 10px 28px rgba(0,0,0,.35); }
.orbit-node svg { width: 20px; animation: orbitReverse 18s linear infinite; }
.orbit-b .orbit-node svg { color: var(--cyan); animation-duration: 24s; animation-direction: normal; }
.orbit-c .orbit-node svg { color: var(--violet); animation-duration: 31s; }
.orbit-d .orbit-node svg { color: var(--lime); animation-duration: 38s; animation-direction: normal; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
@keyframes orbitReverse { to { transform: rotate(-360deg); } }
.visual-stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.visual-stats div { padding: 20px; border-right: 1px solid var(--line); }
.visual-stats div:last-child { border-right: 0; }
.visual-stats span { display: block; font-size: 9px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.visual-stats strong { display: block; margin-top: 4px; font-family: "Space Grotesk"; font-size: 25px; }
.floating-card { position: absolute; z-index: 4; padding: 14px 16px; border-radius: 16px; border: 1px solid var(--line-strong); background: rgba(15,20,30,.88); backdrop-filter: blur(14px); box-shadow: 0 18px 40px rgba(0,0,0,.32); }
.floating-card > svg { width: 20px; color: var(--mint); margin-bottom: 10px; }
.floating-card span, .floating-card strong { display: block; }
.floating-card span { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.floating-card strong { font-size: 12px; margin-top: 2px; }
.card-a { top: 85px; left: -18px; animation: float 4s ease-in-out infinite; }
.card-b { bottom: 65px; right: -18px; animation: float 5s ease-in-out infinite reverse; }
.status-live { color: var(--mint); display: flex !important; align-items: center; gap: 6px; }
.status-live b { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(124,247,196,.12); }
@keyframes float { 50% { transform: translateY(-9px); } }

.tech-strip { margin-top: 95px; padding: 24px 28px; border-block: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.tech-strip > span { color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.tech-items { display: flex; justify-content: space-between; width: 100%; gap: 24px; flex-wrap: wrap; }
.tech-items b { color: rgba(255,255,255,.58); font-family: "Space Grotesk"; font-size: 14px; }

.statement { background: #f4f6f9; color: var(--ink); }
.statement-grid { display: grid; grid-template-columns: 220px 1fr; gap: 60px; }
.section-label { display: flex; align-items: center; gap: 13px; font-size: 11px; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; color: #657082; }
.section-label span { color: #171c25; border: 1px solid #cbd2dc; border-radius: 999px; padding: 5px 8px; }
.section-label.inline { margin-bottom: 22px; }
.section-label.light { color: #aeb7c5; }
.section-label.light span { color: #fff; border-color: rgba(255,255,255,.22); }
.statement h2, .section-head h2, .brands-intro h2, .faq h2 { font-size: clamp(42px, 5vw, 66px); }
.statement h2 { margin-top: 0; }
.statement h2 span, .section-head h2 span, .faq h2 span { color: #8791a0; }
.statement-content > p { font-size: 18px; color: #646e7e; max-width: 800px; line-height: 1.8; }
.statement-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 58px; }
.statement-points article { border-top: 1px solid #d8dde5; padding-top: 24px; }
.statement-points svg { width: 24px; height: 24px; color: #6f4cff; margin-bottom: 28px; }
.statement-points h3 { font-family: "Space Grotesk"; font-size: 18px; margin: 0 0 8px; }
.statement-points p { margin: 0; color: #707a89; font-size: 14px; }

.services { background: #fbfcfd; color: var(--ink); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 70px; margin-bottom: 60px; }
.section-head h2 { margin: 0; }
.section-head > p { color: #6d7786; max-width: 420px; margin-bottom: 8px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 365px; border: 1px solid #e1e5eb; border-radius: var(--radius); padding: 30px; position: relative; overflow: hidden; background: #fff; transition: .3s; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 25px 60px rgba(13, 25, 43, .10); border-color: #c9d1dc; }
.service-featured { grid-row: span 2; min-height: 748px; color: #fff; background: linear-gradient(160deg, #111722, #0a0e16); border-color: transparent; }
.service-featured::before { content: ""; position: absolute; width: 280px; height: 280px; right: -100px; bottom: -80px; border-radius: 50%; background: var(--gradient); filter: blur(80px); opacity: .23; }
.service-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; background: #f0f2f5; color: #6247e8; }
.service-featured .service-icon { background: rgba(255,255,255,.08); color: var(--mint); }
.service-icon svg { width: 23px; }
.service-no { position: absolute; right: 28px; top: 29px; color: #a9b1bd; font-family: "Space Grotesk"; font-size: 12px; }
.service-card h3 { font-family: "Space Grotesk"; font-size: 24px; line-height: 1.25; margin: 32px 0 14px; letter-spacing: -.025em; }
.service-card p { color: #707987; font-size: 14px; }
.service-featured p { color: #aeb6c3; }
.service-featured ul { list-style: none; padding: 0; margin: 35px 0 0; display: grid; gap: 14px; }
.service-featured li { display: flex; gap: 10px; align-items: center; color: #dce1e8; font-size: 13px; }
.service-featured li svg { width: 16px; color: var(--mint); }
.service-decoration { position: absolute; right: 35px; bottom: 32px; width: 170px; height: 170px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.09); }
.service-decoration::before, .service-decoration::after { content: ""; position: absolute; border: 1px dashed rgba(255,255,255,.1); border-radius: 50%; }
.service-decoration::before { inset: 20px; }
.service-decoration::after { inset: 48px; }
.service-decoration svg { width: 38px; color: var(--mint); }
.tag-row { display: flex; gap: 7px; flex-wrap: wrap; position: absolute; left: 30px; bottom: 28px; }
.tag-row span { padding: 6px 9px; border-radius: 7px; background: #f1f3f6; color: #697383; font-size: 10px; font-weight: 700; }

.brands { background: #0b0f17; overflow: hidden; }
.brands::before { content: ""; position: absolute; width: 720px; height: 720px; right: -300px; top: -300px; border-radius: 50%; background: var(--violet); opacity: .08; filter: blur(100px); }
.brands-intro { max-width: 780px; }
.brands-intro h2 { margin: 0 0 24px; }
.brands-intro h2 span { background: var(--gradient); -webkit-background-clip: text; color: transparent; }
.brands-intro p { max-width: 650px; color: var(--muted); font-size: 17px; }
.brand-stage { margin-top: 58px; display: grid; grid-template-columns: 300px 1fr; border: 1px solid var(--line-strong); border-radius: var(--radius-lg); overflow: hidden; background: rgba(255,255,255,.025); }
.brand-tabs { padding: 16px; border-right: 1px solid var(--line); display: grid; align-content: start; gap: 8px; }
.brand-tab { border: 0; background: transparent; border-radius: 16px; padding: 15px; display: flex; align-items: center; gap: 13px; text-align: left; cursor: pointer; transition: .25s; }
.brand-tab:hover, .brand-tab.active { background: rgba(255,255,255,.07); }
.tab-icon { width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 13px; color: var(--muted); transition: .25s; }
.brand-tab.active .tab-icon { color: var(--ink); background: var(--mint); border-color: transparent; }
.tab-icon svg { width: 19px; }
.brand-tab b, .brand-tab small { display: block; }
.brand-tab b { font-size: 13px; }
.brand-tab small { color: var(--muted); font-size: 10px; margin-top: 1px; }
.brand-panel { min-height: 500px; display: grid; grid-template-columns: 1.05fr .95fr; }
.panel-copy { padding: 58px; }
.panel-kicker { display: inline-block; color: var(--mint); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.panel-copy h3 { font-family: "Space Grotesk"; font-size: clamp(37px, 4vw, 56px); margin: 15px 0 18px; letter-spacing: -.045em; }
.panel-copy > p { color: #aeb6c3; max-width: 590px; }
.panel-services { display: flex; flex-wrap: wrap; gap: 12px 22px; margin: 28px 0 36px; }
.panel-services span { display: flex; align-items: center; gap: 7px; color: #dce1e8; font-size: 12px; }
.panel-services svg { width: 15px; color: var(--mint); }
.panel-visual { position: relative; overflow: hidden; display: grid; place-items: center; border-left: 1px solid var(--line); background: radial-gradient(circle at 70% 30%, rgba(124,247,196,.14), transparent 50%); }
.panel-symbol { width: 155px; height: 155px; display: grid; place-items: center; border-radius: 38px; background: var(--gradient); color: var(--ink); transform: rotate(-7deg); box-shadow: 0 32px 80px rgba(72,199,255,.18); }
.panel-symbol svg { width: 64px; height: 64px; }
.mini-window { position: absolute; width: 180px; height: 125px; right: 20px; top: 34px; border: 1px solid var(--line-strong); border-radius: 17px; background: rgba(12,16,24,.9); transform: rotate(7deg); }
.mini-head { padding: 12px; display: flex; gap: 5px; border-bottom: 1px solid var(--line); }
.mini-head span { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.3); }
.mini-content { padding: 15px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mini-content b { height: 23px; border-radius: 6px; background: rgba(255,255,255,.06); }
.mini-content b:first-child { grid-column: span 2; height: 13px; background: rgba(124,247,196,.2); }
.panel-chip { position: absolute; bottom: 30px; left: 30px; right: 30px; border: 1px solid var(--line); background: rgba(8,11,18,.82); backdrop-filter: blur(14px); border-radius: 14px; padding: 13px 15px; font-size: 10px; color: #cfd5df; display: flex; align-items: center; gap: 8px; }
.panel-chip svg { width: 15px; color: var(--mint); }
.parent-note { margin-top: 24px; border: 1px solid var(--line); border-radius: 18px; padding: 22px 25px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; background: rgba(255,255,255,.025); }
.parent-note > svg { color: var(--cyan); width: 25px; }
.parent-note p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.parent-note strong { color: #fff; }
.parent-note a { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700; color: var(--mint); }
.parent-note a svg { width: 15px; }

.process { background: #f5f7fa; color: var(--ink); }
.process-track { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #d9dee6; }
.process-step { padding: 30px 28px 0 0; min-height: 260px; border-right: 1px solid #d9dee6; margin-right: 28px; }
.process-step:last-child { border-right: 0; margin-right: 0; }
.step-top { display: flex; align-items: center; justify-content: space-between; color: #798393; }
.step-top span { font-family: "Space Grotesk"; font-size: 12px; }
.step-top svg { width: 23px; color: #674de2; }
.process-step h3 { font-family: "Space Grotesk"; font-size: 25px; margin: 50px 0 14px; }
.process-step p { color: #707a89; font-size: 13px; }

.why { background: #0a0e16; }
.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.why-card { min-height: 560px; border-radius: var(--radius-lg); padding: 52px; background: linear-gradient(145deg, rgba(155,124,255,.34), rgba(72,199,255,.12) 55%, rgba(124,247,196,.11)); border: 1px solid var(--line-strong); position: relative; overflow: hidden; }
.why-card::after { content: "T"; position: absolute; right: -20px; bottom: -160px; font-family: "Space Grotesk"; font-size: 520px; line-height: 1; color: rgba(255,255,255,.035); font-weight: 800; }
.why-card h2 { font-family: "Space Grotesk"; font-size: clamp(38px, 4vw, 55px); line-height: 1.05; letter-spacing: -.05em; margin: 35px 0 25px; position: relative; z-index: 1; }
.why-card p { color: #c0c7d2; max-width: 480px; position: relative; z-index: 1; }
.why-card .btn { margin-top: 32px; position: relative; z-index: 1; }
.why-list { display: grid; }
.why-list article { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.why-list article > span { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 16px; color: var(--mint); }
.why-list svg { width: 22px; }
.why-list h3 { margin: 2px 0 7px; font-family: "Space Grotesk"; font-size: 20px; }
.why-list p { margin: 0; color: var(--muted); font-size: 13px; }

.faq { background: #f8f9fb; color: var(--ink); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.faq h2 { margin: 0 0 20px; }
.faq-intro > p { color: #707987; }
.accordion-item { border-bottom: 1px solid #dbe0e7; }
.accordion-item button { width: 100%; border: 0; background: transparent; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; text-align: left; font-weight: 700; cursor: pointer; }
.accordion-item button span { padding-right: 20px; }
.accordion-item button svg { width: 19px; min-width: 19px; transition: .3s; }
.accordion-item.active button svg { transform: rotate(45deg); color: #654ce0; }
.accordion-content { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.accordion-content p { overflow: hidden; margin: 0; color: #707987; font-size: 14px; }
.accordion-item.active .accordion-content { grid-template-rows: 1fr; }
.accordion-item.active .accordion-content p { padding-bottom: 25px; }

.contact { background: #f8f9fb; color: var(--ink); padding-top: 30px; }
.contact-shell { border-radius: 34px; padding: 65px; background: #0b0f17; color: #fff; display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; position: relative; overflow: hidden; }
.contact-shell::before { content: ""; position: absolute; width: 500px; height: 500px; left: -240px; bottom: -250px; border-radius: 50%; background: var(--violet); opacity: .18; filter: blur(80px); }
.contact-copy { position: relative; z-index: 1; }
.contact-copy h2 { font-family: "Space Grotesk"; font-size: clamp(40px, 4.5vw, 60px); line-height: 1.05; letter-spacing: -.05em; margin: 30px 0 25px; }
.contact-copy > p { color: var(--muted); }
.contact-details { margin-top: 55px; display: grid; gap: 16px; }
.contact-details a, .contact-details > div { display: flex; align-items: center; gap: 14px; color: #e5e9ef; font-size: 13px; }
.contact-details svg { width: 20px; color: var(--mint); }
.contact-details small { display: block; color: #7f8998; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.contact-form { position: relative; z-index: 1; border-radius: 23px; padding: 28px; background: #fff; color: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 15px; color: #4a5361; font-size: 11px; font-weight: 700; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; border: 1px solid #dfe4ea; border-radius: 12px; padding: 13px 14px; outline: none; background: #f8f9fb; color: var(--ink); font-size: 13px; transition: .2s; }
.contact-form textarea { resize: vertical; min-height: 105px; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: #755af0; box-shadow: 0 0 0 4px rgba(117,90,240,.09); background: #fff; }
.btn-submit { width: 100%; border: 0; }
.form-note { display: flex; justify-content: center; gap: 7px; align-items: center; color: #87909e; font-size: 9px; }
.form-note svg { width: 12px; }
.form-success { display: none; margin-top: 15px; border-radius: 12px; padding: 12px; background: #eafaf3; color: #16744f; font-size: 11px; align-items: center; gap: 8px; }
.form-success.show { display: flex; }
.form-success svg { width: 17px; }

.site-footer { background: #080b12; }
.footer-top { min-height: 200px; display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 50px; border-bottom: 1px solid var(--line); }
.footer-brand .brand-mark { width: 48px; height: 48px; }
.footer-brand .brand-word { font-size: 30px; }
.footer-top > p { color: var(--muted); font-size: 13px; max-width: 420px; }
.back-top { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line-strong); }
.back-top:hover { background: var(--mint); color: var(--ink); }
.back-top svg { width: 18px; }
.footer-bottom { min-height: 85px; display: flex; align-items: center; justify-content: space-between; color: #77808f; font-size: 11px; }
.footer-bottom div { display: flex; gap: 25px; }
.footer-bottom a:hover { color: #fff; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 820px; }
  .hero-visual { width: min(100%, 680px); margin: 0 auto; }
  .statement-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-featured { grid-row: span 2; }
  .brand-stage { grid-template-columns: 240px 1fr; }
  .brand-panel { grid-template-columns: 1fr; }
  .panel-visual { min-height: 330px; border-left: 0; border-top: 1px solid var(--line); }
  .why-grid, .faq-grid, .contact-shell { grid-template-columns: 1fr; }
  .why-list { grid-template-columns: 1fr 1fr; gap: 0 30px; }
  .process-track { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 28px, 1180px); }
  .section-pad { padding: 86px 0; }
  .site-header { padding: 12px 0; }
  .desktop-cta { display: none; }
  .menu-toggle { display: block; z-index: 3; }
  .menu-toggle.active span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle.active span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .mobile-menu { position: fixed; inset: 0; background: rgba(8,11,18,.98); display: flex; flex-direction: column; justify-content: center; padding: 40px; gap: 18px; transform: translateY(-100%); opacity: 0; transition: .35s; z-index: 2; }
  .mobile-menu.open { transform: none; opacity: 1; }
  .mobile-menu a { font-family: "Space Grotesk"; font-size: 31px; font-weight: 700; }
  .hero { padding-top: 130px; min-height: auto; }
  .hero h1 { font-size: clamp(44px, 13vw, 62px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn-link { justify-content: center; }
  .hero-visual { min-height: 520px; }
  .visual-shell { transform: none; }
  .command-center { height: 320px; }
  .orbit-d { display: none; }
  .card-a { left: 4px; top: 40px; }
  .card-b { right: 4px; bottom: 38px; }
  .tech-strip { margin-top: 60px; align-items: flex-start; flex-direction: column; }
  .tech-items { display: grid; grid-template-columns: repeat(2, 1fr); }
  .statement h2, .section-head h2, .brands-intro h2, .faq h2 { font-size: 42px; }
  .statement-points { grid-template-columns: 1fr; }
  .section-head { align-items: flex-start; flex-direction: column; gap: 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-featured { min-height: 620px; grid-row: auto; }
  .brand-stage { grid-template-columns: 1fr; }
  .brand-tabs { grid-template-columns: 1fr 1fr; border-right: 0; border-bottom: 1px solid var(--line); }
  .brand-tab { padding: 10px; }
  .brand-tab small { display: none; }
  .tab-icon { width: 36px; height: 36px; }
  .panel-copy { padding: 35px 25px; }
  .parent-note { grid-template-columns: auto 1fr; }
  .parent-note a { grid-column: 2; }
  .process-track { grid-template-columns: 1fr; }
  .process-step { border-right: 0; margin-right: 0; border-bottom: 1px solid #d9dee6; padding-bottom: 30px; }
  .why-grid { gap: 45px; }
  .why-card { padding: 35px 28px; min-height: 500px; }
  .why-list { grid-template-columns: 1fr; }
  .faq-grid { gap: 45px; }
  .contact-shell { padding: 35px 20px; border-radius: 24px; gap: 45px; }
  .contact-form { padding: 21px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { grid-template-columns: 1fr auto; padding: 45px 0; min-height: auto; }
  .footer-top > p { grid-column: 1 / -1; grid-row: 2; }
  .footer-bottom { padding: 25px 0; flex-direction: column; align-items: flex-start; gap: 18px; }
}

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

/* Legal page */
.legal-page { background: #080b12; }
.legal-page .site-header { background: rgba(8, 11, 18, .46); backdrop-filter: blur(16px); }
.footer-bottom a[aria-current="page"] { color: var(--mint); }

.legal-hero {
  min-height: 570px;
  padding: 175px 0 105px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}
.legal-orb { position: absolute; border-radius: 50%; filter: blur(95px); opacity: .17; }
.legal-orb-one { width: 430px; height: 430px; right: -80px; top: 25px; background: var(--violet); }
.legal-orb-two { width: 320px; height: 320px; left: -170px; bottom: -110px; background: var(--mint); }
.legal-hero-grid { position: relative; display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: end; }
.legal-back { display: inline-flex; align-items: center; gap: 9px; color: #bac2cf; font-size: 12px; font-weight: 700; margin-bottom: 42px; transition: .2s; }
.legal-back:hover { color: var(--mint); transform: translateX(-3px); }
.legal-back svg { width: 17px; }
.legal-hero h1 { font-family: "Space Grotesk", sans-serif; font-size: clamp(62px, 8vw, 112px); line-height: .92; letter-spacing: -.07em; margin: 26px 0 28px; }
.gradient-dot { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.legal-hero-copy > p { margin: 0; max-width: 680px; color: var(--muted); font-size: 17px; }
.legal-hero-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 17px; padding: 25px; border: 1px solid var(--line-strong); border-radius: 22px; background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025)); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.legal-card-icon { width: 53px; height: 53px; border-radius: 16px; display: grid; place-items: center; color: var(--ink); background: var(--gradient); }
.legal-card-icon svg { width: 23px; }
.legal-hero-card small, .legal-hero-card span { display: block; color: var(--muted); font-size: 10px; }
.legal-hero-card strong { display: block; margin: 2px 0; font-family: "Space Grotesk"; font-size: 19px; }
.legal-card-mark { width: 22px; color: var(--mint); }

.legal-section { position: relative; background: #f5f7fa; color: var(--ink); padding: 100px 0 120px; }
.legal-layout { display: grid; grid-template-columns: 245px 1fr; gap: 55px; align-items: start; }
.legal-sidebar { position: sticky; top: 105px; }
.legal-sidebar-inner { border: 1px solid #dde2e9; border-radius: 22px; padding: 22px; background: rgba(255,255,255,.76); box-shadow: 0 18px 50px rgba(20,27,38,.06); }
.legal-sidebar-label { display: block; color: #8a94a2; font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; margin: 0 8px 13px; }
.legal-sidebar nav { display: grid; }
.legal-sidebar nav a { display: flex; align-items: center; gap: 11px; border-radius: 12px; padding: 11px 9px; color: #5e6877; font-size: 12px; font-weight: 700; transition: .2s; }
.legal-sidebar nav a span { color: #a1a9b5; font-family: "Space Grotesk"; font-size: 9px; }
.legal-sidebar nav a:hover, .legal-sidebar nav a.active { background: #eef1f5; color: #121821; }
.legal-sidebar nav a.active span { color: #674de2; }
.legal-sidebar-note { display: flex; gap: 11px; align-items: flex-start; border-top: 1px solid #e1e5eb; margin-top: 18px; padding: 19px 7px 2px; }
.legal-sidebar-note > svg { width: 18px; min-width: 18px; color: #674de2; }
.legal-sidebar-note p { margin: 0; color: #7a8492; font-size: 9px; line-height: 1.55; }
.legal-sidebar-note strong { color: #222a35; }

.legal-document { border: 1px solid #dde2e9; border-radius: 28px; background: #fff; box-shadow: 0 30px 80px rgba(20,27,38,.08); overflow: hidden; }
.legal-document-head { padding: 45px 48px; display: flex; align-items: flex-end; justify-content: space-between; gap: 25px; border-bottom: 1px solid #e5e8ed; background: linear-gradient(150deg, #fff, #f6f8fb); }
.legal-kicker { color: #674de2; text-transform: uppercase; letter-spacing: .13em; font-size: 9px; font-weight: 800; }
.legal-document-head h2 { font-family: "Space Grotesk"; font-size: 40px; letter-spacing: -.045em; margin: 7px 0 0; }
.legal-status { display: flex; align-items: center; gap: 8px; border: 1px solid #dfe4ea; border-radius: 999px; padding: 9px 12px; color: #687281; font-size: 9px; font-weight: 700; white-space: nowrap; }
.legal-status b { width: 6px; height: 6px; border-radius: 50%; background: #35c98a; box-shadow: 0 0 0 5px rgba(53,201,138,.11); }
.legal-block { padding: 48px; border-bottom: 1px solid #e8ebef; scroll-margin-top: 105px; }
.legal-block-heading { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; }
.legal-block-heading > span { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 13px; background: #f0edff; color: #674de2; font-family: "Space Grotesk"; font-weight: 700; font-size: 11px; }
.legal-block-heading small { display: block; color: #8b95a2; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.legal-block-heading h3 { margin: 1px 0 0; font-family: "Space Grotesk"; font-size: 24px; letter-spacing: -.03em; }
.legal-info-card { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: flex-start; border: 1px solid #e1e5eb; border-radius: 17px; padding: 21px; margin-top: 12px; background: #fafbfd; }
.legal-info-featured { background: linear-gradient(145deg, #0d121b, #151d29); color: #fff; border-color: transparent; }
.legal-company-mark { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 13px; background: #eef1f6; color: #674de2; }
.legal-info-featured .legal-company-mark { background: rgba(255,255,255,.09); color: var(--mint); }
.legal-company-mark svg { width: 20px; }
.legal-info-card small { display: block; color: #8b95a2; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 2px; }
.legal-info-card strong { display: block; font-family: "Space Grotesk"; font-size: 17px; }
.legal-info-card p { margin: 7px 0 0; color: #6d7785; font-size: 12px; line-height: 1.75; }
.legal-info-featured p { color: #aab2bf; }
.legal-person-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.legal-person-card { display: flex; align-items: center; gap: 15px; border: 1px solid #e1e5eb; border-radius: 17px; padding: 19px; background: #fafbfd; }
.legal-avatar { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(145deg, #ece7ff, #e6f7ff); color: #674de2; }
.legal-avatar svg { width: 19px; }
.legal-person-card small { display: block; color: #8b95a2; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.legal-person-card strong { display: block; margin-top: 2px; font-size: 12px; }
.legal-contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.legal-contact-card { min-height: 165px; display: flex; flex-direction: column; align-items: flex-start; border: 1px solid #e1e5eb; border-radius: 17px; padding: 20px; background: #fafbfd; transition: .25s; overflow: hidden; position: relative; }
.legal-contact-card::after { content: ""; width: 100px; height: 100px; border-radius: 50%; background: #eeeaff; position: absolute; right: -50px; top: -50px; opacity: .7; transition: .3s; }
.legal-contact-card:hover { transform: translateY(-3px); border-color: #c9befd; box-shadow: 0 15px 35px rgba(47,37,100,.08); }
.legal-contact-card:hover::after { transform: scale(1.25); }
.legal-contact-card > svg { width: 21px; color: #674de2; margin-bottom: 20px; position: relative; z-index: 1; }
.legal-contact-card small { color: #8b95a2; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.legal-contact-card strong { margin-top: 3px; font-size: 12px; position: relative; z-index: 1; }
.legal-contact-card > span { display: flex; align-items: center; gap: 6px; color: #674de2; font-size: 9px; font-weight: 800; margin-top: auto; }
.legal-contact-card > span svg { width: 12px; }
.legal-data-list { margin: 0; border: 1px solid #e1e5eb; border-radius: 17px; overflow: hidden; }
.legal-data-list > div { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; align-items: center; padding: 18px 20px; border-bottom: 1px solid #e6e9ee; }
.legal-data-list > div:last-child { border-bottom: 0; }
.legal-data-list dt { display: flex; align-items: center; gap: 10px; color: #7c8694; font-size: 10px; font-weight: 700; }
.legal-data-list dt svg { width: 17px; color: #674de2; }
.legal-data-list dd { margin: 0; color: #1d2530; font-family: "Space Grotesk"; font-size: 13px; font-weight: 700; }
.legal-brand-note { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center; border-radius: 19px; padding: 25px; color: #fff; background: linear-gradient(145deg, #0d121b, #141c29); position: relative; overflow: hidden; }
.legal-brand-note::after { content: "T"; position: absolute; right: -7px; bottom: -74px; color: rgba(255,255,255,.035); font-family: "Space Grotesk"; font-size: 190px; font-weight: 800; line-height: 1; }
.legal-brand-logo { width: 66px; height: 66px; display: grid; place-items: center; border-radius: 19px; border: 1px solid var(--line-strong); background: rgba(255,255,255,.05); }
.legal-brand-logo svg { width: 44px; }
.legal-brand-note strong { font-family: "Space Grotesk"; font-size: 18px; position: relative; z-index: 1; }
.legal-brand-note p { max-width: 650px; margin: 6px 0 0; color: #a9b2bf; font-size: 11px; position: relative; z-index: 1; }
.legal-document-footer { display: flex; align-items: flex-start; gap: 11px; padding: 23px 48px; color: #818b98; background: #f7f9fb; }
.legal-document-footer svg { width: 16px; min-width: 16px; color: #674de2; margin-top: 1px; }
.legal-document-footer p { margin: 0; font-size: 9px; }

@media (max-width: 980px) {
  .legal-hero-grid { grid-template-columns: 1fr; gap: 45px; }
  .legal-hero-card { max-width: 520px; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; }
  .legal-sidebar-inner { display: none; }
}

@media (max-width: 760px) {
  .legal-hero { min-height: auto; padding: 130px 0 75px; }
  .legal-back { margin-bottom: 34px; }
  .legal-hero h1 { font-size: 64px; }
  .legal-hero-copy > p { font-size: 14px; }
  .legal-hero-card { padding: 19px; }
  .legal-section { padding: 55px 0 80px; }
  .legal-document { border-radius: 21px; }
  .legal-document-head { padding: 30px 23px; align-items: flex-start; flex-direction: column; }
  .legal-document-head h2 { font-size: 31px; }
  .legal-block { padding: 34px 22px; }
  .legal-block-heading { align-items: flex-start; }
  .legal-person-grid, .legal-contact-grid { grid-template-columns: 1fr; }
  .legal-contact-card { min-height: 150px; }
  .legal-data-list > div { grid-template-columns: 1fr; gap: 7px; }
  .legal-brand-note { grid-template-columns: 1fr; }
  .legal-document-footer { padding: 20px 22px; }
}
