:root {
  --bg: #05070d;
  --bg-soft: #080c16;
  --panel: rgba(255, 255, 255, .028);
  --panel-2: rgba(255, 255, 255, .05);
  --line: rgba(148, 178, 220, .14);
  --line-strong: rgba(148, 178, 220, .26);
  --text: #e6edf7;
  --muted: #93a2ba;
  --muted-2: #6b7b93;
  --brand: #38bdf8;
  --brand-2: #6366f1;
  --brand-3: #22d3ee;
  --ok: #34d399;
  --warn: #fbbf24;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, .85);
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; letter-spacing: -.02em; font-weight: 700; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input { font: inherit; color: inherit; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.mono { font-family: var(--mono); font-size: .8rem; letter-spacing: .01em; }

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

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 200;
  background: var(--brand); color: #04121d; padding: 10px 16px; border-radius: 0 0 10px 10px;
  font-weight: 600; transition: top .2s ease;
}
.skip-link:focus { top: 0; }

:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 6px; }

.grid-bg {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background-image:
    linear-gradient(rgba(56, 189, 248, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, .055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 0%, transparent 78%);
}

.noise {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

.grad {
  background: linear-gradient(100deg, var(--brand-3), var(--brand) 42%, var(--brand-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.eyebrow {
  display: inline-block; margin-bottom: 14px;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--brand); padding: 6px 12px; border: 1px solid rgba(56, 189, 248, .3);
  border-radius: 999px; background: rgba(56, 189, 248, .07);
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; font-size: .93rem; cursor: pointer; white-space: nowrap;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  color: #05121e; box-shadow: 0 12px 30px -12px rgba(56, 189, 248, .75);
}
.btn--primary:hover { box-shadow: 0 18px 40px -12px rgba(56, 189, 248, .9); }
.btn--ghost {
  background: rgba(255, 255, 255, .035); border-color: var(--line-strong); color: var(--text);
}
.btn--ghost:hover { border-color: var(--brand); color: #fff; background: rgba(56, 189, 248, .1); }
.btn--sm { padding: 9px 16px; font-size: .85rem; }
.btn--lg { padding: 15px 30px; font-size: 1rem; }
.btn--block { width: 100%; justify-content: center; margin-top: auto; }

.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  background: rgba(5, 7, 13, .72); border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.is-stuck { border-bottom-color: var(--line); background: rgba(5, 7, 13, .92); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 20px; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a:not(.btn) {
  font-size: .9rem; color: var(--muted); font-weight: 500; position: relative; padding: 6px 0;
  transition: color .2s ease;
}
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--brand);
  transition: width .25s ease;
}
.nav__links a:not(.btn):hover { color: #fff; }
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav__toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, .04); border-radius: 10px; cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column; gap: 4px;
}
.nav__toggle span { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; color: #04121d;
  background: linear-gradient(140deg, var(--brand-3), var(--brand) 45%, var(--brand-2));
  box-shadow: 0 8px 24px -8px rgba(56, 189, 248, .8);
}
.brand__text { font-weight: 800; letter-spacing: -.02em; font-size: 1.06rem; }
.brand__tag { color: var(--muted-2); font-weight: 500; }

.pill {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px; border-radius: 999px;
  border: 1px solid var(--line-strong); background: rgba(255, 255, 255, .04);
  font-size: .82rem; color: var(--muted); margin-bottom: 26px;
}
.pill strong { color: var(--text); }
.pill__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--ok);
  box-shadow: 0 0 0 4px rgba(52, 211, 153, .16);
  animation: pulse 2.4s ease-in-out infinite;
}

.hero { position: relative; padding: 92px 0 0; overflow: hidden; }
.hero__inner {
  display: grid; grid-template-columns: 1.06fr .94fr; gap: 60px; align-items: center;
  padding-bottom: 76px;
}
.hero__orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.hero__orb--a { width: 520px; height: 520px; top: -180px; right: -120px; background: rgba(56, 189, 248, .18); }
.hero__orb--b { width: 460px; height: 460px; bottom: -160px; left: -160px; background: rgba(99, 102, 241, .17); }

.hero__title { font-size: clamp(2.3rem, 5.2vw, 3.85rem); font-weight: 800; margin-bottom: 22px; }
.hero__lead { font-size: 1.06rem; color: var(--muted); max-width: 56ch; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }
.hero__stats {
  display: grid; grid-template-columns: repeat(4, auto); gap: 30px;
  padding-top: 28px; border-top: 1px solid var(--line);
}
.hero__stats strong { display: block; font-size: 1.42rem; letter-spacing: -.03em; }
.hero__stats span { font-size: .78rem; color: var(--muted-2); font-family: var(--mono); }

.console {
  background: linear-gradient(180deg, rgba(13, 18, 30, .92), rgba(8, 11, 20, .95));
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  animation: float 7s ease-in-out infinite;
}
.console__bar {
  display: flex; align-items: center; gap: 7px; padding: 12px 16px;
  background: rgba(255, 255, 255, .035); border-bottom: 1px solid var(--line);
}
.console__path { margin-left: 12px; font-family: var(--mono); font-size: .74rem; color: var(--muted-2); }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot--r { background: #f87171; } .dot--y { background: #fbbf24; } .dot--g { background: #34d399; }
.console__body { padding: 20px; }
.console__row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; color: var(--muted-2); }
.console__code {
  margin: 0 0 20px; padding: 16px; background: rgba(0, 0, 0, .45);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-size: .76rem; line-height: 1.8; color: #b9cbe2; overflow-x: auto; white-space: pre;
}
.console__meters { display: grid; gap: 12px; }
.meter__head { display: flex; justify-content: space-between; font-family: var(--mono); font-size: .7rem; color: var(--muted-2); margin-bottom: 6px; }
.meter__bar { height: 6px; border-radius: 99px; background: rgba(255, 255, 255, .07); overflow: hidden; }
.meter__bar i {
  display: block; height: 100%; width: var(--w); border-radius: 99px;
  background: linear-gradient(90deg, var(--brand-3), var(--brand-2));
  animation: grow 1.4s cubic-bezier(.2, .8, .2, 1) both;
}

.badge { font-family: var(--mono); font-size: .68rem; padding: 4px 10px; border-radius: 999px; letter-spacing: .04em; }
.badge--ok { color: var(--ok); background: rgba(52, 211, 153, .11); border: 1px solid rgba(52, 211, 153, .3); }
.badge--warn { color: var(--warn); background: rgba(251, 191, 36, .11); border: 1px solid rgba(251, 191, 36, .3); }
.chip { font-family: var(--mono); font-size: .68rem; padding: 4px 10px; border-radius: 999px; color: var(--muted); border: 1px solid var(--line-strong); }
.chip--live { color: var(--ok); border-color: rgba(52, 211, 153, .35); background: rgba(52, 211, 153, .08); }

.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .015); overflow: hidden; padding: 15px 0;
}
.marquee__track {
  display: flex; gap: 26px; white-space: nowrap; width: max-content;
  font-family: var(--mono); font-size: .76rem; color: var(--muted-2); letter-spacing: .1em; text-transform: uppercase;
  animation: slide 34s linear infinite;
}
.marquee__track span:nth-child(even) { color: rgba(56, 189, 248, .45); }

.section { padding: 108px 0; position: relative; }
.section--alt { background: linear-gradient(180deg, transparent, rgba(10, 14, 24, .6) 18%, rgba(10, 14, 24, .6) 82%, transparent); }
.section__head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section__head h2 { font-size: clamp(1.85rem, 3.6vw, 2.6rem); margin-bottom: 18px; }
.section__head p { color: var(--muted); font-size: 1.03rem; }

.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.card:hover { transform: translateY(-5px); border-color: rgba(56, 189, 248, .4); }
.card__icon {
  width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 18px;
  border-radius: 12px; color: var(--brand);
  background: rgba(56, 189, 248, .09); border: 1px solid rgba(56, 189, 248, .22);
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .93rem; }

.features { display: grid; grid-template-columns: 1fr 1fr; gap: 62px; align-items: center; }
.features h2 { font-size: clamp(1.8rem, 3.4vw, 2.45rem); margin-bottom: 18px; }
.features__copy > p { color: var(--muted); margin-bottom: 26px; }
.checklist { display: grid; gap: 12px; margin-bottom: 30px; }
.checklist li { position: relative; padding-left: 30px; color: var(--muted); font-size: .94rem; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 16px; height: 16px; border-radius: 50%;
  background: rgba(56, 189, 248, .14); border: 1px solid rgba(56, 189, 248, .4);
}
.checklist li::after {
  content: ""; position: absolute; left: 5px; top: 13px; width: 5px; height: 5px; border-radius: 50%;
  background: var(--brand);
}

.panel {
  background: linear-gradient(180deg, rgba(13, 18, 30, .9), rgba(8, 11, 20, .94));
  border: 1px solid var(--line-strong); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden;
}
.panel__head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 15px 18px; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, .03);
}
.panel__foot { padding: 12px 18px; border-top: 1px solid var(--line); color: var(--muted-2); background: rgba(0, 0, 0, .25); }
.table__row {
  display: grid; grid-template-columns: 1.3fr .8fr .9fr 1fr .9fr; gap: 10px;
  padding: 13px 18px; align-items: center; border-bottom: 1px solid rgba(148, 178, 220, .07); font-size: .85rem;
}
.table__row:last-child { border-bottom: 0; }
.table__row--head { font-family: var(--mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); }
.table__row--head:hover { background: none; }
.table__row:hover { background: rgba(56, 189, 248, .04); }
.table__row .mono { color: var(--muted); }
.spark { display: inline-block; width: 42px; height: 5px; border-radius: 99px; margin-right: 8px; vertical-align: middle; }
.spark--low { background: linear-gradient(90deg, var(--ok), rgba(52, 211, 153, .3)); }
.spark--mid { background: linear-gradient(90deg, var(--warn), rgba(251, 191, 36, .3)); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { padding: 26px 22px; border-top: 1px solid var(--line-strong); position: relative; }
.step__num {
  display: block; font-family: var(--mono); font-size: .8rem; letter-spacing: .16em;
  color: var(--brand); margin-bottom: 16px;
}
.step h3 { font-size: 1.02rem; margin-bottom: 9px; }
.step p { color: var(--muted); font-size: .9rem; }
.step::before {
  content: ""; position: absolute; top: -1px; left: 0; width: 34%; height: 1px;
  background: linear-gradient(90deg, var(--brand), transparent);
}

.price {
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px 26px;
  transition: transform .25s ease, border-color .25s ease;
}
.price:hover { transform: translateY(-5px); border-color: rgba(56, 189, 248, .38); }
.price--featured {
  border-color: rgba(56, 189, 248, .5);
  background: linear-gradient(180deg, rgba(56, 189, 248, .1), rgba(10, 14, 24, .8) 42%);
  box-shadow: 0 30px 70px -34px rgba(56, 189, 248, .6);
}
.price__flag {
  position: absolute; align-self: flex-start; margin-top: -44px; margin-left: -2px;
  font-family: var(--mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; color: #04121d; background: linear-gradient(100deg, var(--brand-3), var(--brand));
}
.price { position: relative; }
.price__head { margin-bottom: 22px; }
.price__head h3 { font-size: 1.2rem; margin-bottom: 10px; }
.price__desc { color: var(--muted); font-size: .9rem; }
.price__amount { display: flex; align-items: baseline; gap: 4px; padding-bottom: 22px; border-bottom: 1px solid var(--line); margin-bottom: 22px; }
.price__cur { font-size: 1.2rem; color: var(--muted); }
.price__num { font-size: 2.7rem; font-weight: 800; letter-spacing: -.04em; }
.price__per { font-size: .85rem; color: var(--muted-2); }
.price__list { display: grid; gap: 11px; margin-bottom: 26px; }
.price__list li { position: relative; padding-left: 26px; font-size: .9rem; color: var(--muted); }
.price__list li::before {
  content: ""; position: absolute; left: 4px; top: 7px; width: 8px; height: 8px; border-radius: 2px;
  background: linear-gradient(140deg, var(--brand-3), var(--brand-2));
}
.pricing__note { text-align: center; color: var(--muted-2); margin-top: 34px; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 62px; align-items: center; }
.split h2 { font-size: clamp(1.8rem, 3.4vw, 2.45rem); margin-bottom: 18px; }
.split__copy > p { color: var(--muted); }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 38px; }
.stat strong { display: block; font-size: 1.02rem; margin-bottom: 5px; color: var(--brand); }
.stat span { font-size: .87rem; color: var(--muted-2); }
.ticks { display: grid; gap: 14px; }
.ticks li {
  position: relative; padding: 17px 20px 17px 48px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .022); color: var(--muted); font-size: .93rem;
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}
.ticks li:hover { border-color: rgba(56, 189, 248, .38); transform: translateX(4px); background: rgba(56, 189, 248, .05); }
.ticks li::before {
  content: "\2713"; position: absolute; left: 20px; top: 16px; color: var(--brand); font-weight: 700;
}

.mini { padding: 24px 22px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255, 255, 255, .022); }
.mini__ico { font-size: 1.5rem; display: block; margin-bottom: 12px; }
.mini h3 { font-size: 1rem; margin-bottom: 8px; }
.mini p { font-size: .88rem; color: var(--muted-2); }

.cta { padding: 96px 0; position: relative; }
.cta::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 90% at 50% 50%, rgba(56, 189, 248, .12), transparent 70%);
}
.cta__inner { position: relative; text-align: center; }
.cta h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); margin-bottom: 16px; }
.cta p { color: var(--muted); max-width: 62ch; margin: 0 auto 34px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 38px; }
.form {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; align-items: center;
  max-width: 620px; margin: 0 auto; padding: 12px; border: 1px solid var(--line);
  border-radius: 999px; background: rgba(255, 255, 255, .03);
}
.form input {
  flex: 1 1 200px; min-width: 0; padding: 12px 18px; border-radius: 999px;
  background: rgba(0, 0, 0, .35); border: 1px solid var(--line); color: var(--text);
}
.form input::placeholder { color: var(--muted-2); }
.form input:focus { outline: none; border-color: var(--brand); }
.form__msg { width: 100%; font-family: var(--mono); font-size: .72rem; color: var(--ok); min-height: 14px; }
.form.is-error .form__msg { color: #f87171; }

.footer { border-top: 1px solid var(--line); background: rgba(4, 6, 11, .85); padding: 64px 0 28px; }
.footer__inner { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer__brand p { color: var(--muted-2); font-size: .89rem; max-width: 42ch; margin-top: 16px; }
.footer__legal-name { color: var(--muted-2); opacity: .8; margin-top: 10px !important; }
.footer__col h4 { font-family: var(--mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px; }
.footer__col a { display: block; font-size: .9rem; color: var(--muted); padding: 5px 0; transition: color .2s ease; }
.footer__col a:hover { color: var(--brand); }
.footer__legal {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  padding: 30px 24px; border-top: 1px solid var(--line);
}
.footer__legal-col h4 {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 14px;
}
.footer__legal-col p { color: var(--muted-2); font-size: .84rem; line-height: 1.75; margin-bottom: 8px; }
.footer__legal-col p:last-child { margin-bottom: 0; }
.footer__legal-col strong { color: var(--muted); }
.footer__legal-col a { color: var(--muted); transition: color .2s ease; }
.footer__legal-col a:hover { color: var(--brand); }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: .82rem;
}

.nav__links--static { display: flex; }

.cta__entity {
  color: var(--muted-2); font-size: .74rem; line-height: 2; margin: -14px auto 30px; max-width: 78ch;
}
.cta__entity a { color: var(--brand); }

.invoice { display: grid; gap: 18px; padding: 20px; }
.invoice li { display: grid; grid-template-columns: 92px 1fr; gap: 16px; align-items: start; }
.invoice__label { color: var(--muted-2); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; padding-top: 3px; }
.invoice > li > span:last-child { color: var(--muted); font-size: .86rem; line-height: 1.7; }
.invoice .mono { color: var(--muted-2); }

.faq { display: grid; gap: 12px; max-width: 880px; margin: 0 auto 30px; }
.faq__item {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .022); overflow: hidden;
  transition: border-color .25s ease, background .25s ease;
}
.faq__item:hover { border-color: rgba(56, 189, 248, .35); }
.faq__item[open] { border-color: rgba(56, 189, 248, .45); background: rgba(56, 189, 248, .05); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 18px 54px 18px 22px; position: relative;
  font-weight: 600; font-size: .98rem; color: var(--text);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; position: absolute; right: 24px; top: 50%; width: 9px; height: 9px;
  border-right: 2px solid var(--brand); border-bottom: 2px solid var(--brand);
  transform: translateY(-70%) rotate(45deg); transition: transform .25s ease;
}
.faq__item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq__body { padding: 0 22px 20px; }
.faq__body p { color: var(--muted); font-size: .93rem; }
.faq__body a { color: var(--brand); }

.legal__steps { counter-reset: ls; display: grid; gap: 14px; }
.legal__steps li {
  position: relative; padding: 16px 20px 16px 58px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: rgba(255, 255, 255, .022); color: var(--muted); font-size: .95rem;
}
.legal__steps li::before {
  counter-increment: ls; content: counter(ls, decimal-leading-zero);
  position: absolute; left: 20px; top: 16px; font-family: var(--mono);
  font-size: .78rem; color: var(--brand);
}
.legal__steps strong { color: var(--text); }

.legal__docs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.legal__doc {
  padding: 22px; border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(255, 255, 255, .022);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.legal__doc:hover { transform: translateY(-4px); border-color: rgba(56, 189, 248, .4); background: rgba(56, 189, 248, .05); }
.legal__doc h3 { font-size: 1.02rem; margin-bottom: 9px; color: var(--brand); }
.legal__doc p { color: var(--muted); font-size: .89rem; }

.legal { padding: 72px 0 90px; }
.legal__inner { max-width: 980px; }
.legal__head { margin-bottom: 34px; }
.legal__head h1 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: 12px; }
.legal__head p { color: var(--muted-2); }
.legal__toc {
  display: flex; flex-wrap: wrap; gap: 10px; padding: 16px 0 30px; margin-bottom: 34px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.legal__toc a {
  font-family: var(--mono); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase;
  padding: 7px 14px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--muted);
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.legal__toc a:hover { border-color: var(--brand); color: #fff; background: rgba(56, 189, 248, .1); }
.legal__block { margin-bottom: 52px; }
.legal__block h2 {
  font-size: 1.35rem; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.legal__block h3 { font-size: 1rem; margin: 26px 0 10px; color: var(--brand); }
.legal__block p { color: var(--muted); font-size: .95rem; margin-bottom: 12px; }
.legal__block a { color: var(--brand); }
.legal__block a:hover { text-decoration: underline; }
.legal__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.legal__grid > div {
  padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .022);
}
.legal__grid h3 {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--muted-2); margin: 0 0 10px;
}
.legal__grid p { margin: 0; font-size: .9rem; line-height: 1.75; }
.legal__note {
  margin-top: 22px; padding: 16px 20px; border-left: 2px solid var(--brand);
  background: rgba(56, 189, 248, .05); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .9rem;
}
.legal__list { display: grid; gap: 12px; }
.legal__list li { position: relative; padding-left: 26px; color: var(--muted); font-size: .95rem; }
.legal__list li::before {
  content: ""; position: absolute; left: 4px; top: 9px; width: 8px; height: 8px; border-radius: 2px;
  background: linear-gradient(140deg, var(--brand-3), var(--brand-2));
}
.legal__list strong { color: var(--text); }

@media (max-width: 1000px) { .legal__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .legal__grid { grid-template-columns: 1fr; } .legal { padding: 48px 0 70px; } .invoice li { grid-template-columns: 1fr; gap: 6px; } }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .09s; }
.reveal[data-delay="2"] { transition-delay: .18s; }
.reveal[data-delay="3"] { transition-delay: .27s; }
.reveal[data-delay="4"] { transition-delay: .36s; }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes grow { from { width: 0; } }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

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

@media (max-width: 1000px) {
  .hero__inner, .features, .split { grid-template-columns: 1fr; gap: 44px; }
  .grid--3, .grid--4, .steps { grid-template-columns: repeat(2, 1fr); }
  .footer__inner, .footer__legal { grid-template-columns: repeat(2, 1fr); }
  .legal__docs { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .section { padding: 76px 0; }
  .hero { padding-top: 56px; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 68px 0 auto; flex-direction: column; align-items: flex-start; gap: 4px;
    padding: 20px 24px 28px; background: rgba(5, 7, 13, .97); border-bottom: 1px solid var(--line);
    transform: translateY(-14px); opacity: 0; visibility: hidden; transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  .nav__links.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav__links a:not(.btn) { font-size: 1rem; padding: 11px 0; width: 100%; border-bottom: 1px solid rgba(148, 178, 220, .08); }
  .nav__cta { margin-top: 16px; }
  .grid--3, .grid--4, .steps, .stats, .footer__inner, .footer__legal { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .table__row { grid-template-columns: 1fr .7fr .9fr; }
  .table__row > *:nth-child(4) { display: none; }
  .cta { padding: 72px 0; }
}

@media (max-width: 520px) {
  .hero__actions .btn, .cta__actions .btn { width: 100%; justify-content: center; }
  .footer__bottom { flex-direction: column; }
}
