:root {
  --ink: #f7f8ff;
  --muted: #a6adc4;
  --muted-2: #747d99;
  --bg: #05060b;
  --bg-2: #080b13;
  --surface: rgba(14, 17, 29, 0.78);
  --surface-solid: #0d101b;
  --surface-2: #111626;
  --line: rgba(152, 165, 205, 0.16);
  --line-strong: rgba(152, 165, 205, 0.26);
  --purple: #8c45ff;
  --purple-2: #b145ff;
  --blue: #315dff;
  --cyan: #45d7ff;
  --green: #58e6ad;
  --orange: #ffb15d;
  --red: #ff707d;
  --gradient: linear-gradient(120deg, #b145ff 0%, #7f4cff 38%, #315dff 75%, #45d7ff 120%);
  --gradient-soft: linear-gradient(120deg, rgba(177,69,255,.16), rgba(49,93,255,.14), rgba(69,215,255,.1));
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --glow: 0 0 70px rgba(105, 75, 255, 0.2);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --max: 1180px;
  --header-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 5%, rgba(140, 69, 255, .11), transparent 31rem),
    radial-gradient(circle at 92% 18%, rgba(49, 93, 255, .1), transparent 28rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  opacity: .11;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

::selection { background: rgba(140, 69, 255, .45); color: #fff; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
img, svg { max-width: 100%; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 999;
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  background: var(--purple);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.site-shell { position: relative; isolation: isolate; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 40px)); margin-inline: auto; }

.ambient {
  position: fixed;
  z-index: -2;
  width: 30rem;
  aspect-ratio: 1;
  border-radius: 999px;
  filter: blur(95px);
  opacity: .12;
  pointer-events: none;
  animation: ambient-drift 14s ease-in-out infinite alternate;
}
.ambient.one { left: -14rem; top: 9rem; background: var(--purple); }
.ambient.two { right: -14rem; top: 34rem; background: var(--blue); animation-delay: -5s; }
@keyframes ambient-drift { to { transform: translate3d(2rem, 3rem, 0) scale(1.1); } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: rgba(5, 6, 11, .62);
  backdrop-filter: blur(18px) saturate(150%);
  transition: border-color .25s ease, background .25s ease;
}
.site-header.scrolled { border-color: var(--line); background: rgba(5, 6, 11, .86); }
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.brand img { display: block; width: 184px; height: auto; filter: drop-shadow(0 0 18px rgba(92, 88, 255, .22)); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 10px 13px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}
.nav-links a:hover, .nav-links a:focus-visible { color: #fff; background: rgba(255,255,255,.05); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: #fff;
  background: var(--surface);
  cursor: pointer;
}
.menu-btn span { display: block; width: 18px; height: 2px; margin: 4px auto; border-radius: 5px; background: currentColor; transition: transform .2s, opacity .2s; }
.menu-btn.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 14px;
  color: #fff;
  background: var(--gradient);
  background-size: 180% 180%;
  box-shadow: 0 14px 36px rgba(70, 75, 255, .22);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  animation: gradient-shift 8s ease infinite;
}
.btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.36) 45%, transparent 70%);
  transform: translateX(-130%);
  transition: transform .65s ease;
}
.btn:hover::after { transform: translateX(130%); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(70, 75, 255, .3); }
.btn:active { transform: translateY(0); }
.btn.secondary {
  color: #f5f7ff;
  border-color: var(--line-strong);
  background: rgba(14, 17, 29, .74);
  box-shadow: none;
  animation: none;
}
.btn.secondary:hover { border-color: rgba(140, 69, 255, .45); background: rgba(22, 25, 41, .92); box-shadow: 0 15px 34px rgba(0,0,0,.22); }
.btn.small { min-height: 42px; padding: 10px 16px; border-radius: 12px; font-size: 13px; }
.btn svg { width: 17px; height: 17px; }
@keyframes gradient-shift { 0%,100% { background-position: 0 50%; } 50% { background-position: 100% 50%; } }

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: center;
  padding: 86px 0 76px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, .98fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 13px;
  border: 1px solid rgba(140,69,255,.28);
  border-radius: 999px;
  color: #cbb8ff;
  background: rgba(105, 61, 207, .11);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 50% { transform: scale(.72); opacity: .62; } }

h1, h2, h3, h4 { margin: 0; font-family: Syne, Inter, sans-serif; color: #fff; }
h1 {
  max-width: 760px;
  font-size: clamp(46px, 6.4vw, 82px);
  line-height: .99;
  letter-spacing: -.052em;
  text-wrap: balance;
}
h2 { font-size: clamp(34px, 4.7vw, 58px); line-height: 1.04; letter-spacing: -.038em; text-wrap: balance; }
h3 { font-size: 20px; line-height: 1.25; letter-spacing: -.018em; }
.gradient-text {
  color: transparent;
  background: var(--gradient);
  background-size: 180% auto;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradient-shift 8s ease infinite;
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy .lede {
  max-width: 670px;
  margin: 25px 0 30px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.72;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 26px; color: var(--muted-2); font-size: 13px; font-weight: 600; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row svg { width: 15px; color: var(--green); }

.hero-stage { position: relative; min-height: 560px; perspective: 1200px; }
.stage-glow {
  position: absolute;
  inset: 12% 5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92,79,255,.25), rgba(92,79,255,.05) 45%, transparent 70%);
  filter: blur(20px);
  animation: stage-breathe 5s ease-in-out infinite;
}
@keyframes stage-breathe { 50% { transform: scale(1.08); opacity: .68; } }
.dashboard {
  position: absolute;
  inset: 32px 18px 28px 14px;
  overflow: hidden;
  border: 1px solid rgba(179, 188, 230, .19);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012)),
    rgba(9, 12, 22, .9);
  box-shadow: var(--shadow), var(--glow), inset 0 1px 0 rgba(255,255,255,.07);
  transform: rotateY(-6deg) rotateX(3deg);
  transform-style: preserve-3d;
  transition: transform .2s ease-out;
}
.dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 32%, rgba(255,255,255,.05) 49%, transparent 64%);
  transform: translateX(-120%);
  animation: dashboard-sheen 7s ease-in-out infinite;
}
@keyframes dashboard-sheen { 60%,100% { transform: translateX(120%); } }
.dash-top { height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 0 22px; border-bottom: 1px solid var(--line); }
.dash-title { display: flex; align-items: center; gap: 10px; font-weight: 750; font-size: 14px; }
.dash-title .mini-logo { width: 28px; height: 28px; border-radius: 9px; display: grid; place-items: center; background: var(--gradient); font-family: Syne; font-size: 12px; }
.dash-status { display: inline-flex; align-items: center; gap: 7px; padding: 6px 10px; border-radius: 999px; color: #a9f3d5; background: rgba(88,230,173,.09); border: 1px solid rgba(88,230,173,.18); font-size: 11px; font-weight: 700; }
.dash-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 9px var(--green); }
.dash-body { padding: 20px; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.metric { padding: 15px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.022); }
.metric small { display: block; color: var(--muted-2); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.metric strong { display: block; margin-top: 6px; font-family: Syne; font-size: 24px; line-height: 1; }
.metric .up { color: var(--green); font-size: 10px; font-weight: 700; }
.flow-list { display: grid; gap: 9px; margin-top: 15px; }
.flow-row { position: relative; display: grid; grid-template-columns: 1.3fr .9fr 90px; align-items: center; gap: 12px; padding: 12px 13px; overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.018); }
.flow-row::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--row-accent, var(--purple)); }
.person { display: flex; align-items: center; gap: 9px; min-width: 0; }
.avatar { flex: 0 0 auto; width: 29px; height: 29px; border-radius: 9px; display: grid; place-items: center; color: #fff; background: var(--gradient-soft); border: 1px solid rgba(255,255,255,.08); font-size: 10px; font-weight: 800; }
.person b { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 11px; }
.person em { display: block; color: var(--muted-2); font-size: 9px; font-style: normal; }
.flow-progress { height: 6px; overflow: hidden; border-radius: 99px; background: rgba(255,255,255,.06); }
.flow-progress span { display: block; height: 100%; width: var(--progress); border-radius: inherit; background: var(--gradient); animation: progress-in 1.5s ease both; }
@keyframes progress-in { from { width: 0; } }
.status-pill { justify-self: end; padding: 5px 8px; border-radius: 999px; color: var(--pill-text, #d7c7ff); background: var(--pill-bg, rgba(140,69,255,.12)); font-size: 9px; font-weight: 750; white-space: nowrap; }
.dash-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 15px; padding-top: 14px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 10px; }
.mini-wave { display: flex; align-items: flex-end; gap: 3px; height: 22px; }
.mini-wave i { width: 4px; border-radius: 4px; background: var(--gradient); animation: wave 1.2s ease-in-out infinite alternate; }
.mini-wave i:nth-child(1) { height: 8px; }.mini-wave i:nth-child(2) { height: 16px; animation-delay: -.3s; }.mini-wave i:nth-child(3) { height: 11px; animation-delay: -.6s; }.mini-wave i:nth-child(4) { height: 21px; animation-delay: -.2s; }.mini-wave i:nth-child(5) { height: 14px; animation-delay: -.5s; }
@keyframes wave { to { height: 7px; opacity: .45; } }
.float-card { position: absolute; z-index: 4; width: 205px; padding: 14px; border: 1px solid rgba(179,188,230,.18); border-radius: 16px; background: rgba(13,16,27,.84); backdrop-filter: blur(16px); box-shadow: 0 18px 50px rgba(0,0,0,.34); animation: float 5s ease-in-out infinite; }
.float-card.one { top: 2px; right: -2px; }
.float-card.two { left: -14px; bottom: 2px; animation-delay: -2.6s; }
.float-card .float-head { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; }
.float-icon { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 10px; color: #fff; background: var(--gradient); }
.float-icon svg { width: 16px; height: 16px; }
.float-card b { font-size: 11px; }
.float-card p { margin: 0; color: var(--muted-2); font-size: 9px; line-height: 1.5; }
.float-card .tick { color: var(--green); font-size: 10px; font-weight: 700; }
@keyframes float { 50% { transform: translateY(-10px) rotate(.5deg); } }

.logo-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.012); }
.logo-strip-inner { display: flex; align-items: center; gap: 24px; padding: 17px 0; overflow: hidden; }
.logo-strip-label { flex: 0 0 auto; color: var(--muted-2); font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.marquee { flex: 1; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track { display: flex; width: max-content; gap: 38px; animation: marquee 30s linear infinite; }
.marquee-track span { color: #858da8; font-family: Syne; font-size: 13px; font-weight: 750; white-space: nowrap; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { position: relative; padding: 112px 0; }
.section.compact { padding: 82px 0; }
.section-head { display: grid; grid-template-columns: .76fr 1.24fr; gap: 44px; align-items: end; margin-bottom: 48px; }
.section-kicker { color: #ae94ff; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.section-head p, .section-lede { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.section-lede { max-width: 730px; margin-top: 18px; }

.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.032), rgba(255,255,255,.012)), var(--surface);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
  transition: transform .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.card::after { content: ""; position: absolute; inset: auto -40% -70% -40%; height: 70%; background: radial-gradient(circle, rgba(104,73,255,.13), transparent 68%); opacity: 0; transition: opacity .3s ease; }
.card:hover { transform: translateY(-7px); border-color: rgba(143,104,255,.38); background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.016)), var(--surface); box-shadow: 0 20px 50px rgba(0,0,0,.25); }
.card:hover::after { opacity: 1; }
.icon-box { position: relative; z-index: 1; width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 22px; border: 1px solid rgba(150,132,255,.25); border-radius: 15px; color: #c8b8ff; background: rgba(111,73,255,.1); }
.icon-box svg { width: 23px; height: 23px; }
.card h3 { position: relative; z-index: 1; margin-bottom: 10px; }
.card p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.72; }
.card-tag { position: relative; z-index: 1; display: inline-flex; margin-top: 18px; padding: 6px 9px; border-radius: 999px; color: #b6a5f9; background: rgba(140,69,255,.09); font-size: 10px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }

.split { display: grid; grid-template-columns: .93fr 1.07fr; gap: clamp(42px, 7vw, 90px); align-items: center; }
.split.reverse > :first-child { order: 2; }
.split-copy .section-kicker { margin-bottom: 14px; }
.split-copy h2 { margin-bottom: 20px; }
.split-copy > p { color: var(--muted); font-size: 17px; line-height: 1.75; }
.check-list { display: grid; gap: 13px; margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; color: #c6ccdc; font-size: 14px; }
.check-list svg { flex: 0 0 auto; width: 19px; margin-top: 2px; color: var(--green); }

.workflow-panel { position: relative; min-height: 520px; }
.workflow-orbit { position: absolute; inset: 3% 4%; border: 1px dashed rgba(151,136,255,.18); border-radius: 50%; animation: orbit-spin 28s linear infinite; }
.workflow-orbit::before, .workflow-orbit::after { content: ""; position: absolute; width: 11px; height: 11px; border-radius: 50%; background: var(--purple); box-shadow: 0 0 20px var(--purple); }
.workflow-orbit::before { left: 20%; top: 2%; }.workflow-orbit::after { right: 9%; bottom: 20%; background: var(--cyan); box-shadow: 0 0 20px var(--cyan); }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
.workflow-core { position: absolute; inset: 50% auto auto 50%; width: 150px; aspect-ratio: 1; display: grid; place-items: center; transform: translate(-50%,-50%); border-radius: 50%; background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.14), transparent 26%), var(--gradient); box-shadow: 0 0 80px rgba(97,75,255,.28); font-family: Syne; font-size: 26px; font-weight: 800; }
.workflow-node { position: absolute; width: 175px; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: rgba(12,15,26,.87); backdrop-filter: blur(14px); box-shadow: 0 18px 46px rgba(0,0,0,.25); }
.workflow-node b { display: block; margin-bottom: 4px; font-size: 12px; }.workflow-node span { color: var(--muted-2); font-size: 10px; }
.workflow-node.a { left: 0; top: 10%; animation: float 5.6s ease-in-out infinite; }.workflow-node.b { right: 0; top: 17%; animation: float 6s ease-in-out infinite -2s; }.workflow-node.c { right: 3%; bottom: 7%; animation: float 5.3s ease-in-out infinite -3.2s; }.workflow-node.d { left: 2%; bottom: 9%; animation: float 5.8s ease-in-out infinite -1.1s; }
.node-line { position: absolute; inset: 0; pointer-events: none; }
.node-line svg { width: 100%; height: 100%; overflow: visible; }
.node-line path { fill: none; stroke: url(#lineGradient); stroke-width: 1.2; stroke-dasharray: 5 7; opacity: .45; animation: dash 16s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -180; } }

.modules { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.module { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: flex-start; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(13,16,27,.62); transition: border-color .25s, transform .25s; }
.module:hover { transform: translateY(-4px); border-color: rgba(140,69,255,.38); }
.module-num { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: #c6b7ff; background: rgba(140,69,255,.1); border: 1px solid rgba(140,69,255,.2); font-family: Syne; font-weight: 800; }
.module h3 { margin: 2px 0 8px; }.module p { margin: 0; color: var(--muted); font-size: 14px; }

.facts-band { overflow: hidden; border-block: 1px solid var(--line); background: linear-gradient(100deg, rgba(140,69,255,.07), rgba(49,93,255,.06)); }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact { position: relative; padding: 34px 26px; }
.fact + .fact { border-left: 1px solid var(--line); }
.fact small { display: block; color: var(--muted-2); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.fact strong { display: block; margin-top: 8px; font-family: Syne; font-size: 25px; line-height: 1.2; }
.fact span { display: block; margin-top: 7px; color: var(--muted); font-size: 12px; }
.source-note { margin-top: 16px; color: var(--muted-2); font-size: 11px; text-align: right; }
.source-note a { color: #a9b3d3; }

.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: process; }
.process-step { position: relative; min-height: 270px; padding: 29px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(13,16,27,.64); }
.process-step::before { counter-increment: process; content: "0" counter(process); position: absolute; right: 21px; top: 14px; color: rgba(255,255,255,.055); font-family: Syne; font-size: 72px; font-weight: 800; line-height: 1; }
.process-step .step-dot { width: 11px; height: 11px; margin-bottom: 52px; border-radius: 50%; background: var(--gradient); box-shadow: 0 0 18px rgba(107,78,255,.55); }
.process-step h3 { margin-bottom: 11px; }.process-step p { margin: 0; color: var(--muted); font-size: 14px; }

.offer-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.15fr .85fr; gap: 34px; align-items: center; padding: clamp(32px, 6vw, 68px); border: 1px solid rgba(138,106,255,.28); border-radius: var(--radius-lg); background:
  radial-gradient(circle at 90% 10%, rgba(49,93,255,.18), transparent 33%),
  radial-gradient(circle at 10% 100%, rgba(177,69,255,.14), transparent 34%),
  rgba(13,16,27,.74);
  box-shadow: var(--shadow);
}
.offer-panel::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.055) 50%, transparent 65%); transform: translateX(-100%); animation: dashboard-sheen 9s ease-in-out infinite; }
.offer-panel .section-kicker { margin-bottom: 12px; }
.offer-panel h2 { font-size: clamp(32px, 4vw, 50px); }
.offer-panel p { color: var(--muted); font-size: 16px; }
.offer-list { display: grid; gap: 10px; padding: 0; margin: 26px 0 0; list-style: none; }
.offer-list li { display: flex; align-items: center; gap: 9px; color: #c9cede; font-size: 14px; }
.offer-list svg { width: 17px; color: var(--green); }
.offer-action { position: relative; z-index: 2; padding: 28px; border: 1px solid var(--line); border-radius: 21px; background: rgba(5,7,13,.55); backdrop-filter: blur(12px); }
.offer-action .label { color: var(--muted-2); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.offer-action strong { display: block; margin: 9px 0 5px; font-family: Syne; font-size: 28px; }
.offer-action p { margin: 0 0 20px; font-size: 13px; }
.offer-action .btn { width: 100%; }

.fit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.fit-card { padding: 31px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(13,16,27,.62); }
.fit-card.good { border-color: rgba(88,230,173,.2); }.fit-card.bad { border-color: rgba(255,112,125,.17); }
.fit-card h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 17px; }
.fit-card h3 svg { width: 22px; }.fit-card.good h3 svg { color: var(--green); }.fit-card.bad h3 svg { color: var(--red); }
.fit-card ul { display: grid; gap: 10px; margin: 0; padding-left: 20px; color: var(--muted); font-size: 14px; }

.faq { display: grid; gap: 10px; }
details { border: 1px solid var(--line); border-radius: 16px; background: rgba(13,16,27,.58); transition: border-color .2s ease, background .2s ease; }
details[open] { border-color: rgba(140,69,255,.31); background: rgba(17,20,34,.8); }
summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px; cursor: pointer; list-style: none; font-weight: 700; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; flex: 0 0 auto; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; color: #c7b9ff; background: rgba(140,69,255,.1); font-size: 20px; line-height: 1; transition: transform .2s; }
details[open] summary::after { transform: rotate(45deg); }
details p { max-width: 860px; margin: 0; padding: 0 22px 22px; color: var(--muted); font-size: 14px; }

.final-cta { padding: 40px 0 112px; }
.cta-box { position: relative; overflow: hidden; padding: clamp(46px, 8vw, 90px) clamp(26px, 7vw, 76px); border: 1px solid rgba(140,69,255,.3); border-radius: 35px; text-align: center; background:
  radial-gradient(circle at 50% 140%, rgba(49,93,255,.28), transparent 46%),
  radial-gradient(circle at 10% 0%, rgba(177,69,255,.18), transparent 35%),
  #0b0e18;
  box-shadow: var(--shadow);
}
.cta-box::before { content: ""; position: absolute; width: 340px; aspect-ratio: 1; left: 50%; top: 50%; transform: translate(-50%,-50%); border: 1px solid rgba(255,255,255,.055); border-radius: 50%; box-shadow: 0 0 0 58px rgba(255,255,255,.018), 0 0 0 116px rgba(255,255,255,.012); }
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { max-width: 850px; margin: 0 auto; }
.cta-box p { max-width: 660px; margin: 20px auto 28px; color: var(--muted); font-size: 17px; }
.cta-box .hero-actions { justify-content: center; }
.cta-footnote { margin-top: 16px !important; color: var(--muted-2) !important; font-size: 11px !important; }

.site-footer { border-top: 1px solid var(--line); background: rgba(5,6,11,.7); }
.footer-main { display: grid; grid-template-columns: 1.1fr .9fr .9fr .9fr; gap: 42px; padding: 56px 0 38px; }
.footer-brand img { width: 180px; }.footer-brand p { max-width: 320px; margin: 17px 0 0; color: var(--muted-2); font-size: 13px; }
.footer-col h4 { margin-bottom: 14px; font-family: Inter; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.footer-col a, .footer-col button { display: block; width: fit-content; margin: 8px 0; padding: 0; border: 0; color: var(--muted); background: none; font-size: 13px; text-decoration: none; cursor: pointer; }
.footer-col a:hover, .footer-col button:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding: 20px 0 28px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 11px; }

.legal-hero { padding: 95px 0 50px; }
.legal-hero h1 { max-width: 850px; font-size: clamp(42px, 6vw, 68px); }
.legal-hero p { max-width: 720px; color: var(--muted); font-size: 17px; }
.legal { padding: 20px 0 100px; }
.legal article { color: #c8cede; }
.legal article h2 { margin: 44px 0 15px; font-size: 28px; }
.legal article h3 { margin: 28px 0 10px; font-size: 19px; }
.legal article p, .legal article li { color: var(--muted); font-size: 15px; }
.legal article a { color: #bba8ff; }
.legal article ul { padding-left: 22px; }
.legal .notice { padding: 18px 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }

.cookie-banner {
  position: fixed;
  z-index: 120;
  right: 20px;
  bottom: 20px;
  width: min(420px, calc(100% - 40px));
  padding: 20px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(11,14,24,.94);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transform: translateY(140%);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}
.cookie-banner.show { transform: translateY(0); opacity: 1; }
.cookie-banner h3 { font-size: 16px; }.cookie-banner p { margin: 8px 0 15px; color: var(--muted); font-size: 12px; }
.cookie-actions { display: flex; gap: 9px; }
.cookie-actions .btn { flex: 1; min-height: 40px; padding: 9px 12px; font-size: 12px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.25,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }.reveal-delay-2 { transition-delay: .16s; }.reveal-delay-3 { transition-delay: .24s; }

.page-badge { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 12px; }
.page-badge a { color: #c5b8ff; }

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 820px; }
  .hero-stage { width: min(680px, 100%); min-height: 580px; margin: 0 auto; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .section-head { grid-template-columns: 1fr; gap: 18px; }
  .split { grid-template-columns: 1fr; }
  .split.reverse > :first-child { order: initial; }
  .workflow-panel { width: min(680px, 100%); margin-inline: auto; }
  .footer-main { grid-template-columns: 1.35fr repeat(3, 1fr); gap: 28px; }
}

@media (max-width: 820px) {
  :root { --header-h: 70px; }
  .nav-links {
    position: fixed;
    inset: var(--header-h) 16px auto;
    display: grid;
    gap: 3px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(10,12,21,.97);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s, opacity .2s;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 13px; }
  .menu-btn { display: block; }
  .nav-actions .btn { display: none; }
  .brand img { width: 158px; }
  .hero { min-height: auto; padding-top: 64px; }
  h1 { font-size: clamp(44px, 12vw, 68px); }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .fact:nth-child(4) { border-top: 1px solid var(--line); }
  .process { grid-template-columns: 1fr; }
  .offer-panel { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container, .narrow { width: min(100% - 28px, var(--max)); }
  .hero { padding: 54px 0 48px; }
  .hero-copy .lede { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-stage { min-height: 455px; margin-top: 8px; }
  .dashboard { inset: 26px 0 26px 0; transform: none; border-radius: 21px; }
  .dash-top { height: 56px; padding: 0 15px; }
  .dash-body { padding: 14px; }
  .metric { padding: 11px; }.metric strong { font-size: 18px; }.metric:nth-child(3) { display: none; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .flow-row { grid-template-columns: 1fr 72px; }.flow-progress { display: none; }
  .float-card { width: 170px; padding: 11px; }
  .float-card.one { right: -5px; }.float-card.two { left: -5px; }
  .section { padding: 82px 0; }
  .cards, .modules, .fit-grid { grid-template-columns: 1fr; }
  .card { padding: 23px; }
  .facts-grid { grid-template-columns: 1fr; }
  .fact + .fact { border-left: 0; border-top: 1px solid var(--line); }
  .workflow-panel { min-height: 500px; }
  .workflow-core { width: 120px; font-size: 21px; }
  .workflow-node { width: 155px; padding: 13px; }
  .workflow-node.a { left: -2%; }.workflow-node.b { right: -2%; }.workflow-node.c { right: 0; }.workflow-node.d { left: 0; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: grid; }
  .cookie-actions { display: grid; }
}

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