:root {
  --ink-950: #050814;
  --ink-900: #090e20;
  --ink-850: #0d142a;
  --ink-800: #121a33;
  --ink-700: #202a47;
  --paper: #f6f4ef;
  --paper-2: #ece9e1;
  --white: #ffffff;
  --text: #e9ecf7;
  --text-soft: #aeb8d3;
  --text-dark: #151827;
  --text-dark-soft: #5a6072;
  --violet: #9b7cff;
  --violet-strong: #7b55f7;
  --cyan: #56e2df;
  --lime: #c7f36b;
  --rose: #ff8db5;
  --line: rgba(255, 255, 255, .11);
  --line-dark: rgba(12, 17, 36, .13);
  --shadow-sm: 0 16px 40px rgba(5, 8, 20, .12);
  --shadow-lg: 0 40px 100px rgba(3, 6, 17, .32);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --container: 1180px;
  --header-h: 78px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
  background: var(--ink-950);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 4%, rgba(123, 85, 247, .18), transparent 30rem),
    radial-gradient(circle at 92% 15%, rgba(86, 226, 223, .12), transparent 27rem),
    var(--ink-950);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

a:hover {
  text-decoration-color: var(--cyan);
}

::selection {
  color: var(--ink-950);
  background: var(--cyan);
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: .75rem 1rem;
  color: var(--ink-950);
  background: var(--white);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 780px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  min-height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.site-header.is-scrolled,
body.menu-open .site-header {
  background: rgba(5, 8, 20, .82);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px) saturate(140%);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--header-h);
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 12px 28px rgba(123, 85, 247, .3));
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: .95rem;
  letter-spacing: .075em;
}

.brand-copy span {
  margin-top: 6px;
  color: var(--text-soft);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 8px;
}

.nav-list {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 2px;
}

.nav-link,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: .7rem .85rem;
  color: var(--text-soft);
  background: none;
  border: 0;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 720;
  letter-spacing: .015em;
  text-decoration: none;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.nav-link:hover,
.nav-link[aria-current="page"],
.nav-trigger:hover,
.has-submenu:focus-within > .nav-trigger {
  color: var(--white);
  background: rgba(255, 255, 255, .07);
}

.nav-trigger svg {
  width: 15px;
  margin-left: 6px;
  transition: transform .2s ease;
}

.has-submenu {
  position: relative;
}

.submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  display: grid;
  width: 550px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 14px;
  color: var(--text);
  background: rgba(13, 20, 42, .98);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity .18s ease, transform .18s ease;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu,
.has-submenu.is-open .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.has-submenu.is-open > .nav-trigger svg {
  transform: rotate(180deg);
}

.submenu a {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border-radius: 14px;
  text-decoration: none;
  transition: background .18s ease, transform .18s ease;
}

.submenu a:hover,
.submenu a:focus-visible {
  background: rgba(255, 255, 255, .065);
  transform: translateY(-1px);
}

.submenu-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--cyan);
  background: rgba(86, 226, 223, .08);
  border: 1px solid rgba(86, 226, 223, .18);
  border-radius: 12px;
}

.submenu-icon svg {
  width: 19px;
  height: 19px;
}

.submenu strong {
  display: block;
  color: var(--white);
  font-size: .86rem;
  line-height: 1.25;
}

.submenu small {
  display: block;
  margin-top: 3px;
  color: var(--text-soft);
  font-size: .73rem;
  line-height: 1.35;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  display: inline-flex;
  padding: 4px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.lang-switch a {
  display: grid;
  min-width: 35px;
  min-height: 32px;
  place-items: center;
  color: var(--text-soft);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-decoration: none;
}

.lang-switch a[aria-current="true"] {
  color: var(--ink-950);
  background: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .85rem 1.25rem;
  gap: 9px;
  color: var(--ink-950);
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(255, 255, 255, .12);
  font-size: .9rem;
  font-weight: 820;
  letter-spacing: .005em;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
  color: var(--ink-950);
  box-shadow: 0 18px 44px rgba(86, 226, 223, .2);
  transform: translateY(-2px);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--cyan), #a9fff3);
  border-color: transparent;
}

.btn--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, .04);
  border-color: var(--line);
  box-shadow: none;
}

.btn--ghost:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .085);
  border-color: rgba(255, 255, 255, .2);
}

.btn--dark {
  color: var(--white);
  background: var(--ink-950);
  border-color: var(--ink-950);
  box-shadow: 0 16px 36px rgba(5, 8, 20, .18);
}

.btn--dark:hover {
  color: var(--white);
  background: var(--ink-800);
}

.btn--small {
  min-height: 42px;
  padding: .7rem 1rem;
  font-size: .8rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.text-link svg {
  width: 17px;
  transition: transform .2s ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  gap: 10px;
  color: var(--cyan);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 72px 0 112px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: min(92vw, 1250px);
  height: 780px;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 85%);
  transform: translateX(-50%);
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, .97fr);
  gap: clamp(44px, 7vw, 88px);
}

.hero h1,
.page-hero h1 {
  max-width: 850px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3.25rem, 7.4vw, 6.7rem);
  font-weight: 880;
  letter-spacing: -.067em;
  line-height: .93;
}

.hero h1 em,
.page-hero h1 em {
  color: transparent;
  background: linear-gradient(105deg, var(--violet) 10%, var(--cyan) 88%);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
}

.hero-lead,
.page-hero .lead {
  max-width: 670px;
  margin: 28px 0 0;
  color: var(--text-soft);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 34px;
  gap: 12px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.hero-proof li,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: .55rem .78rem;
  gap: 8px;
  color: #cbd3ea;
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .77rem;
  font-weight: 720;
  line-height: 1;
}

.hero-proof svg,
.pill svg {
  width: 15px;
  height: 15px;
  color: var(--cyan);
}

.signal-visual {
  position: relative;
  min-height: 570px;
  padding: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, rgba(123, 85, 247, .21), transparent 43%),
    linear-gradient(145deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .018));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), inset 0 1px rgba(255, 255, 255, .08);
}

.signal-visual::before {
  position: absolute;
  top: -110px;
  right: -95px;
  width: 300px;
  height: 300px;
  content: "";
  background: var(--cyan);
  border-radius: 50%;
  filter: blur(110px);
  opacity: .09;
}

.visual-topline {
  display: flex;
  position: relative;
  z-index: 2;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.visual-topline strong {
  color: var(--white);
  font-size: .92rem;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-soft);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.live-dot::before {
  width: 8px;
  height: 8px;
  content: "";
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(199, 243, 107, .09), 0 0 24px var(--lime);
}

.orbit-stage {
  position: relative;
  display: grid;
  min-height: 350px;
  place-items: center;
}

.orbit {
  position: relative;
  display: grid;
  width: 285px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(155, 124, 255, .26);
  border-radius: 50%;
  box-shadow: inset 0 0 70px rgba(123, 85, 247, .08);
}

.orbit::before,
.orbit::after {
  position: absolute;
  content: "";
  border: 1px dashed rgba(86, 226, 223, .22);
  border-radius: 50%;
}

.orbit::before {
  inset: 35px;
  animation: spin 18s linear infinite;
}

.orbit::after {
  inset: -28px;
  border-color: rgba(255, 255, 255, .09);
  animation: spin 28s linear infinite reverse;
}

.orbit-core {
  position: relative;
  z-index: 2;
  display: grid;
  width: 122px;
  aspect-ratio: 1;
  place-items: center;
  text-align: center;
  background: linear-gradient(145deg, rgba(155, 124, 255, .95), rgba(86, 226, 223, .82));
  border-radius: 38px;
  box-shadow: 0 24px 60px rgba(91, 69, 201, .35), inset 0 1px rgba(255, 255, 255, .55);
  transform: rotate(8deg);
}

.orbit-core span {
  color: var(--ink-950);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.orbit-node {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--cyan);
  background: rgba(10, 15, 33, .95);
  border: 1px solid rgba(86, 226, 223, .22);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
}

.orbit-node svg {
  width: 21px;
}

.orbit-node--one {
  top: 18px;
  left: 37px;
}

.orbit-node--two {
  top: 110px;
  right: -8px;
  color: var(--violet);
  border-color: rgba(155, 124, 255, .25);
}

.orbit-node--three {
  bottom: 20px;
  left: 36px;
  color: var(--lime);
  border-color: rgba(199, 243, 107, .22);
}

.flow-card {
  position: absolute;
  z-index: 4;
  right: 22px;
  bottom: 18px;
  left: 22px;
  padding: 18px;
  background: rgba(8, 13, 29, .86);
  border: 1px solid var(--line);
  border-radius: 20px;
  backdrop-filter: blur(14px);
}

.flow-card small {
  display: block;
  margin-bottom: 12px;
  color: var(--text-soft);
  font-size: .69rem;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.flow-step {
  position: relative;
  padding: 11px 8px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, .045);
  border-radius: 12px;
  font-size: .66rem;
  font-weight: 760;
  line-height: 1.25;
  text-align: center;
}

.flow-step:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -8px;
  width: 9px;
  height: 1px;
  content: "";
  background: var(--cyan);
}

.trust-band {
  position: relative;
  z-index: 3;
  margin-top: -50px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  background: rgba(13, 20, 42, .88);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.trust-item {
  min-height: 116px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.4rem, 2vw, 2rem);
  letter-spacing: -.04em;
  line-height: 1.15;
}

.trust-item span {
  display: block;
  margin-top: 7px;
  color: var(--text-soft);
  font-size: .77rem;
  line-height: 1.4;
}

.section {
  position: relative;
  padding: clamp(88px, 11vw, 150px) 0;
}

.section--compact {
  padding-block: 76px;
}

.section--paper {
  color: var(--text-dark);
  background: var(--paper);
}

.section--paper::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  content: "";
  background: linear-gradient(to bottom, rgba(5, 8, 20, .06), transparent);
  pointer-events: none;
}

.section--ink {
  background: var(--ink-900);
  border-block: 1px solid rgba(255, 255, 255, .055);
}

.section--glow {
  overflow: hidden;
}

.section--glow::after {
  position: absolute;
  z-index: -1;
  right: -160px;
  bottom: -260px;
  width: 560px;
  height: 560px;
  content: "";
  background: rgba(123, 85, 247, .19);
  border-radius: 50%;
  filter: blur(150px);
}

.section-head {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr);
  margin-bottom: 52px;
  gap: 48px;
}

.section-head--single {
  display: block;
  max-width: 780px;
}

.section-head h2,
.content-heading {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.35rem, 5vw, 4.65rem);
  font-weight: 850;
  letter-spacing: -.055em;
  line-height: 1.01;
}

.section--paper .section-head h2,
.section--paper .content-heading {
  color: var(--text-dark);
}

.section-head p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.02rem;
}

.section--paper .section-head p {
  color: var(--text-dark-soft);
}

.kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--violet);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.section--paper .kicker {
  color: #6342d1;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  position: relative;
  padding: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .24s var(--ease), border-color .24s ease, background .24s ease;
}

.card:hover {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(86, 226, 223, .22);
  transform: translateY(-5px);
}

.section--paper .card {
  background: rgba(255, 255, 255, .58);
  border-color: var(--line-dark);
  box-shadow: 0 14px 38px rgba(9, 14, 32, .045);
}

.section--paper .card:hover {
  background: var(--white);
  border-color: rgba(99, 66, 209, .26);
  box-shadow: var(--shadow-sm);
}

.card-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 38px;
  place-items: center;
  color: var(--cyan);
  background: rgba(86, 226, 223, .07);
  border: 1px solid rgba(86, 226, 223, .18);
  border-radius: 16px;
}

.section--paper .card-icon {
  color: #5634cc;
  background: rgba(123, 85, 247, .075);
  border-color: rgba(123, 85, 247, .16);
}

.card-icon svg {
  width: 23px;
  height: 23px;
}

.card h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.27rem;
  letter-spacing: -.025em;
  line-height: 1.25;
}

.section--paper .card h3 {
  color: var(--text-dark);
}

.card p {
  margin: 13px 0 0;
  color: var(--text-soft);
  font-size: .91rem;
  line-height: 1.65;
}

.section--paper .card p {
  color: var(--text-dark-soft);
}

.card .text-link {
  margin-top: 22px;
  color: var(--cyan);
  font-size: .82rem;
}

.section--paper .card .text-link {
  color: #5734cd;
}

.card-number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(255, 255, 255, .17);
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -.05em;
}

.section--paper .card-number {
  color: rgba(21, 24, 39, .13);
}

.split {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(48px, 8vw, 110px);
}

.split--reverse {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
}

.split-copy h2,
.split-copy h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4.65rem);
  font-weight: 850;
  letter-spacing: -.055em;
  line-height: 1.01;
}

.section--paper .split-copy h2,
.section--paper .split-copy h1 {
  color: var(--text-dark);
}

.split-copy > p {
  margin: 24px 0 0;
  color: var(--text-soft);
}

.section--paper .split-copy > p {
  color: var(--text-dark-soft);
}

.check-list {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  gap: 13px;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 11px;
  color: var(--text-soft);
}

.section--paper .check-list li {
  color: var(--text-dark-soft);
}

.check-list svg {
  width: 20px;
  margin-top: 3px;
  color: var(--cyan);
}

.section--paper .check-list svg {
  color: #5f3ad3;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.compare-panel {
  padding: clamp(30px, 5vw, 56px);
}

.compare-panel:first-child {
  color: var(--text-dark);
  background: #e5e1d7;
}

.compare-panel:last-child {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(86, 226, 223, .15), transparent 40%),
    var(--ink-850);
}

.compare-panel h3 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  letter-spacing: -.04em;
  line-height: 1.1;
}

.compare-panel ul {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.compare-panel li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  font-size: .91rem;
}

.compare-panel:first-child li {
  color: #606274;
}

.compare-panel:last-child li {
  color: var(--text-soft);
}

.compare-panel svg {
  width: 18px;
  margin-top: 3px;
}

.compare-panel:first-child svg {
  color: #a14d64;
}

.compare-panel:last-child svg {
  color: var(--cyan);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.timeline::before {
  position: absolute;
  top: 31px;
  right: 10%;
  left: 10%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  opacity: .45;
}

.timeline-step {
  position: relative;
  padding: 0 8px;
}

.timeline-dot {
  position: relative;
  z-index: 2;
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--ink-950);
  background: var(--white);
  border: 7px solid var(--ink-900);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .18);
  font-size: .82rem;
  font-weight: 900;
}

.timeline-step h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.08rem;
  letter-spacing: -.02em;
}

.timeline-step p {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: .85rem;
}

.feature-panel {
  padding: clamp(32px, 5vw, 54px);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(123, 85, 247, .18), rgba(86, 226, 223, .05)),
    var(--ink-850);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.feature-panel h3 {
  margin: 0;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  letter-spacing: -.045em;
  line-height: 1.08;
}

.feature-panel > p {
  margin: 18px 0 0;
  color: var(--text-soft);
}

.signal-map {
  display: grid;
  margin-top: 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.signal-map-item {
  padding: 16px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.signal-map-item strong {
  display: block;
  color: var(--white);
  font-size: .86rem;
}

.signal-map-item span {
  display: block;
  margin-top: 5px;
  color: var(--text-soft);
  font-size: .73rem;
}

.problem-table {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
}

.problem-row {
  display: grid;
  grid-template-columns: minmax(170px, .8fr) minmax(0, 1.1fr) minmax(0, 1.1fr);
  border-bottom: 1px solid var(--line-dark);
}

.problem-row:last-child {
  border-bottom: 0;
}

.problem-row > div {
  padding: 20px 22px;
  color: var(--text-dark-soft);
  font-size: .86rem;
}

.problem-row > div:not(:last-child) {
  border-right: 1px solid var(--line-dark);
}

.problem-row strong {
  color: var(--text-dark);
}

.problem-row--head {
  background: #e7e3da;
}

.problem-row--head > div {
  color: var(--text-dark);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.engagement {
  display: flex;
  min-height: 100%;
  padding: 30px;
  flex-direction: column;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.engagement.is-featured {
  background: linear-gradient(145deg, rgba(123, 85, 247, .18), rgba(86, 226, 223, .05));
  border-color: rgba(155, 124, 255, .3);
  transform: translateY(-10px);
}

.engagement-tag {
  align-self: flex-start;
  padding: .44rem .65rem;
  color: var(--cyan);
  background: rgba(86, 226, 223, .07);
  border: 1px solid rgba(86, 226, 223, .15);
  border-radius: 999px;
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.engagement h3 {
  margin: 25px 0 0;
  color: var(--white);
  font-size: 1.4rem;
  letter-spacing: -.03em;
}

.engagement p {
  margin: 13px 0 0;
  color: var(--text-soft);
  font-size: .88rem;
}

.engagement ul {
  display: grid;
  margin: 22px 0 28px;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.engagement li {
  display: grid;
  grid-template-columns: 17px 1fr;
  gap: 8px;
  color: var(--text-soft);
  font-size: .8rem;
}

.engagement li svg {
  width: 15px;
  margin-top: 4px;
  color: var(--cyan);
}

.engagement .text-link {
  margin-top: auto;
  color: var(--cyan);
  font-size: .82rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.section--paper .faq-list details {
  background: rgba(255, 255, 255, .55);
  border-color: var(--line-dark);
}

.faq-list summary {
  position: relative;
  padding: 21px 60px 21px 22px;
  color: var(--white);
  font-weight: 780;
  cursor: pointer;
  list-style: none;
}

.section--paper .faq-list summary {
  color: var(--text-dark);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  display: grid;
  width: 30px;
  height: 30px;
  content: "+";
  place-items: center;
  color: var(--cyan);
  background: rgba(86, 226, 223, .07);
  border: 1px solid rgba(86, 226, 223, .15);
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform .2s ease;
}

.section--paper .faq-list summary::after {
  color: #5f3ad3;
  background: rgba(123, 85, 247, .07);
  border-color: rgba(123, 85, 247, .15);
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  padding: 0 22px 22px;
  color: var(--text-soft);
  font-size: .9rem;
}

.section--paper .faq-answer {
  color: var(--text-dark-soft);
}

.faq-answer p {
  margin: 0;
}

.cta-panel {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(34px, 6vw, 68px);
  overflow: hidden;
  gap: 36px;
  background:
    radial-gradient(circle at 90% 10%, rgba(86, 226, 223, .19), transparent 28rem),
    linear-gradient(135deg, rgba(123, 85, 247, .2), rgba(255, 255, 255, .04)),
    var(--ink-850);
  border: 1px solid rgba(155, 124, 255, .25);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.cta-panel::after {
  position: absolute;
  top: -40px;
  right: 18%;
  width: 160px;
  height: 160px;
  content: "";
  border: 1px dashed rgba(255, 255, 255, .13);
  border-radius: 50%;
}

.cta-panel h2 {
  max-width: 770px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4.8vw, 4rem);
  letter-spacing: -.055em;
  line-height: 1.02;
}

.cta-panel p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--text-soft);
}

.cta-actions {
  display: flex;
  position: relative;
  z-index: 2;
  align-items: flex-end;
  flex-direction: column;
  gap: 10px;
}

.cta-actions small {
  color: var(--text-soft);
  font-size: .72rem;
}

.page-hero {
  position: relative;
  padding: 66px 0 100px;
  overflow: clip;
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  top: -130px;
  right: -100px;
  width: 520px;
  height: 520px;
  content: "";
  background: rgba(123, 85, 247, .15);
  border-radius: 50%;
  filter: blur(140px);
}

.page-hero-grid {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .55fr);
  gap: 70px;
}

.page-hero h1 {
  font-size: clamp(3.1rem, 6.8vw, 6rem);
}

.page-hero-side {
  padding: 24px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.page-hero-side small {
  color: var(--cyan);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.page-hero-side ul {
  display: grid;
  margin: 18px 0 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.page-hero-side li {
  display: grid;
  grid-template-columns: 17px 1fr;
  gap: 8px;
  color: var(--text-soft);
  font-size: .82rem;
}

.page-hero-side svg {
  width: 15px;
  margin-top: 4px;
  color: var(--cyan);
}

.breadcrumbs {
  padding-top: 22px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 8px;
  color: var(--text-soft);
  list-style: none;
  font-size: .72rem;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: rgba(255, 255, 255, .28);
}

.breadcrumbs a {
  text-decoration: none;
}

.scope-builder {
  padding: clamp(28px, 5vw, 52px);
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.scope-builder h3 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -.04em;
}

.scope-builder > p {
  margin: 12px 0 0;
  color: var(--text-dark-soft);
}

.scope-form {
  display: grid;
  margin-top: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label,
.field-label {
  color: inherit;
  font-size: .77rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: .82rem .95rem;
  color: var(--text-dark);
  background: #fbfaf7;
  border: 1px solid #d8d4c9;
  border-radius: 13px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #7552e7;
  box-shadow: 0 0 0 4px rgba(123, 85, 247, .11);
}

.scope-result {
  display: none;
  margin-top: 22px;
  padding: 22px;
  background: #eeebff;
  border: 1px solid rgba(123, 85, 247, .18);
  border-radius: 18px;
}

.scope-result.is-visible {
  display: block;
  animation: resultIn .35s var(--ease) both;
}

.scope-result strong {
  display: block;
  font-size: 1.1rem;
}

.scope-result p {
  margin: 8px 0 0;
  color: #54566b;
  font-size: .87rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .6fr);
  gap: clamp(34px, 7vw, 80px);
}

.contact-form {
  padding: clamp(28px, 5vw, 50px);
  color: var(--text-dark);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-form h2 {
  margin: 0 0 24px;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  letter-spacing: -.04em;
}

.contact-form .field--full {
  grid-column: 1 / -1;
}

.checkbox {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--text-dark-soft);
  font-size: .77rem;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--violet-strong);
}

.form-actions {
  display: flex;
  align-items: center;
  margin-top: 22px;
  gap: 16px;
}

.form-note {
  color: var(--text-dark-soft);
  font-size: .72rem;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-aside {
  display: grid;
  gap: 14px;
}

.contact-card {
  padding: 24px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.contact-card small {
  display: block;
  color: var(--text-soft);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-card a,
.contact-card strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 780;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-card p {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: .82rem;
}

.status-message {
  display: none;
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 13px;
  font-size: .84rem;
}

.status-message.is-visible {
  display: block;
}

.status-message--success {
  color: #175739;
  background: #e2f8ea;
  border: 1px solid #bfe9cd;
}

.status-message--error {
  color: #752438;
  background: #ffe8ed;
  border: 1px solid #f5c4cf;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.article-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(9, 14, 32, .045);
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s ease;
}

.article-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-6px);
}

.article-art {
  position: relative;
  min-height: 205px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 30%, rgba(86, 226, 223, .26), transparent 34%),
    linear-gradient(135deg, #121a33, #3b276e);
}

.article-art::before,
.article-art::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 50%;
}

.article-art::before {
  top: 32px;
  right: 42px;
  width: 120px;
  height: 120px;
}

.article-art::after {
  top: 74px;
  right: 84px;
  width: 120px;
  height: 120px;
  border-style: dashed;
}

.article-art span {
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: var(--white);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.article-card-body {
  display: flex;
  padding: 25px;
  flex: 1;
  flex-direction: column;
}

.article-card-meta {
  color: #6d6c7c;
  font-size: .7rem;
  font-weight: 760;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.article-card h2,
.article-card h3 {
  margin: 12px 0 0;
  color: var(--text-dark);
  font-size: 1.35rem;
  letter-spacing: -.035em;
  line-height: 1.22;
}

.article-card p {
  margin: 13px 0 22px;
  color: var(--text-dark-soft);
  font-size: .85rem;
}

.article-card .text-link {
  margin-top: auto;
  color: #5734cd;
  font-size: .8rem;
}

.article-hero {
  padding: 54px 0 80px;
}

.article-hero h1 {
  max-width: 1000px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5.75rem);
  font-weight: 870;
  letter-spacing: -.06em;
  line-height: .98;
}

.article-deck {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--text-soft);
  font-size: 1.12rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  margin-top: 26px;
  gap: 12px 20px;
  color: var(--text-soft);
  font-size: .75rem;
}

.article-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 760px) minmax(230px, 320px);
  justify-content: space-between;
  gap: 60px;
}

.prose {
  color: #323547;
  font-size: 1.03rem;
  line-height: 1.78;
}

.prose > :first-child {
  margin-top: 0;
}

.prose h2 {
  margin: 2.6em 0 .75em;
  color: var(--text-dark);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -.045em;
  line-height: 1.12;
}

.prose h3 {
  margin: 2.1em 0 .6em;
  color: var(--text-dark);
  font-size: 1.35rem;
  letter-spacing: -.025em;
  line-height: 1.25;
}

.prose p,
.prose ul,
.prose ol,
.prose table,
.prose blockquote {
  margin: 1.15em 0;
}

.prose ul,
.prose ol {
  padding-left: 1.25em;
}

.prose li + li {
  margin-top: .5em;
}

.prose a {
  color: #5531c7;
  font-weight: 700;
}

.prose blockquote {
  padding: 18px 22px;
  color: #3b3d51;
  background: #eeebff;
  border-left: 4px solid #7552e7;
  border-radius: 0 14px 14px 0;
}

.prose table {
  width: 100%;
  border-collapse: separate;
  border: 1px solid var(--line-dark);
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  font-size: .86rem;
}

.prose th,
.prose td {
  padding: 13px 14px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  text-align: left;
  vertical-align: top;
}

.prose th:last-child,
.prose td:last-child {
  border-right: 0;
}

.prose tr:last-child td {
  border-bottom: 0;
}

.prose th {
  color: var(--text-dark);
  background: #ece8df;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.prose code {
  padding: .16em .4em;
  color: #4c2ab3;
  background: #eeeaff;
  border-radius: 6px;
  font-size: .9em;
}

.prose .callout {
  padding: 22px;
  background: #f0f8f5;
  border: 1px solid #cde8de;
  border-radius: 16px;
}

.prose .callout strong {
  display: block;
  margin-bottom: 5px;
  color: #174f3a;
}

.toc {
  position: sticky;
  top: calc(var(--header-h) + 22px);
  padding: 22px;
  background: rgba(255, 255, 255, .62);
  border: 1px solid var(--line-dark);
  border-radius: 18px;
}

.toc strong {
  color: var(--text-dark);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.toc ol {
  display: grid;
  margin: 15px 0 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.toc a {
  color: var(--text-dark-soft);
  font-size: .78rem;
  line-height: 1.35;
  text-decoration: none;
}

.toc a:hover {
  color: #5734cd;
}

.legal-hero {
  padding: 62px 0 70px;
}

.legal-hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  letter-spacing: -.055em;
  line-height: 1;
}

.legal-meta {
  margin-top: 18px;
  color: var(--text-soft);
  font-size: .8rem;
}

.legal-prose {
  padding: clamp(30px, 6vw, 68px);
  color: var(--text-dark-soft);
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.legal-prose h2 {
  margin: 2.3em 0 .65em;
  color: var(--text-dark);
  font-size: 1.55rem;
  letter-spacing: -.035em;
}

.legal-prose h2:first-child {
  margin-top: 0;
}

.legal-prose h3 {
  color: var(--text-dark);
}

.legal-prose a {
  color: #5531c7;
}

.site-footer {
  padding: 80px 0 30px;
  background: #03050d;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) repeat(3, minmax(140px, .6fr));
  gap: 48px;
}

.footer-brand p {
  max-width: 390px;
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: .87rem;
}

.footer-contact {
  display: grid;
  margin-top: 20px;
  gap: 7px;
}

.footer-contact a {
  color: var(--white);
  font-size: .84rem;
  font-weight: 740;
  text-decoration: none;
}

.footer-col h2,
.footer-col h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-col ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 9px;
  list-style: none;
}

.footer-col a {
  color: var(--text-soft);
  font-size: .8rem;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 24px;
  gap: 20px;
  color: #7e89a5;
  border-top: 1px solid var(--line);
  font-size: .7rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom a {
  text-decoration: none;
}

[hidden] {
  display: none !important;
}

.footer-settings {
  display: inline;
  margin: 0;
  padding: 0;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: inherit;
  line-height: inherit;
  text-align: left;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.footer-settings:hover {
  color: var(--white);
  text-decoration-color: var(--cyan);
}

.consent-banner {
  position: fixed;
  z-index: 3000;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 18px max(18px, env(safe-area-inset-right)) max(18px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
  pointer-events: none;
}

.consent-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  width: min(100%, var(--container));
  margin-inline: auto;
  padding: 24px;
  gap: 28px;
  color: var(--text);
  background: rgba(8, 13, 30, .97);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 24px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .52);
  pointer-events: auto;
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  backdrop-filter: blur(22px) saturate(150%);
}

.consent-copy {
  min-width: 0;
}

.consent-kicker {
  margin: 0 0 7px;
  color: var(--cyan);
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.consent-panel h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  letter-spacing: -.035em;
  line-height: 1.15;
}

.consent-panel p {
  max-width: 790px;
  margin: 9px 0 0;
  color: var(--text-soft);
  font-size: .78rem;
  line-height: 1.55;
}

.consent-panel a {
  color: var(--white);
  font-weight: 750;
}

.consent-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(138px, 1fr));
  gap: 10px;
}

.btn--consent {
  min-width: 138px;
  min-height: 48px;
  padding: .75rem 1rem;
  color: var(--white);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  cursor: pointer;
  font-size: .76rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.btn--consent:hover {
  background: rgba(255, 255, 255, .13);
  border-color: rgba(255, 255, 255, .62);
  transform: translateY(-1px);
}

.btn--consent-accept {
  color: var(--white);
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .32);
}

.btn--consent-accept:hover {
  background: rgba(255, 255, 255, .13);
  border-color: rgba(255, 255, 255, .62);
}

.inline-consent-button {
  display: inline;
  margin: 0;
  padding: 0;
  color: #5531c7;
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes resultIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
  .desktop-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, .85fr);
    gap: 42px;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero-grid {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 70px;
  }

  body {
    font-size: 16px;
  }

  .header-inner {
    gap: 14px;
  }

  .main-nav {
    position: fixed;
    z-index: 999;
    top: var(--header-h);
    right: 0;
    bottom: auto;
    left: 0;
    display: block;
    height: calc(100dvh - var(--header-h));
    padding: 20px;
    overflow-y: auto;
    background: rgba(5, 8, 20, .98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease;
  }

  body.menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.menu-open .site-header {
    background: rgba(5, 8, 20, .98);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .nav-list {
    display: grid;
    align-items: stretch;
    gap: 4px;
  }

  .nav-link,
  .nav-trigger {
    width: 100%;
    min-height: 52px;
    justify-content: space-between;
    padding: .85rem 1rem;
    border-radius: 14px;
    font-size: .98rem;
  }

  .submenu {
    position: static;
    display: none;
    width: auto;
    grid-template-columns: 1fr;
    margin: 4px 0 10px;
    padding: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }

  .has-submenu:hover .submenu,
  .has-submenu:focus-within .submenu {
    display: none;
  }

  .has-submenu.is-open .submenu {
    display: grid;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: grid;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-grid,
  .page-hero-grid,
  .split,
  .split--reverse,
  .contact-layout,
  .article-layout,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(3.2rem, 11vw, 5.5rem);
  }

  .signal-visual {
    width: min(100%, 620px);
    min-height: 550px;
    margin-inline: auto;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 18px;
  }

  .timeline::before {
    display: none;
  }

  .engagement-grid {
    grid-template-columns: 1fr;
  }

  .engagement.is-featured {
    transform: none;
  }

  .cta-actions {
    align-items: flex-start;
  }

  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .toc {
    position: static;
    order: -1;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .consent-panel {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .consent-actions {
    width: 100%;
  }
}

@media (max-width: 650px) {
  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand-copy span {
    display: none;
  }

  .lang-switch {
    display: none;
  }

  .hero {
    padding: 42px 0 88px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
    letter-spacing: -.06em;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .signal-visual {
    min-height: 510px;
    padding: 20px;
    border-radius: 27px;
  }

  .orbit {
    width: 230px;
  }

  .orbit-core {
    width: 100px;
    border-radius: 32px;
  }

  .orbit-node--two {
    right: -18px;
  }

  .flow-card {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .flow-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-step:not(:last-child)::after {
    display: none;
  }

  .trust-band {
    margin-top: -35px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 82px 0;
  }

  .section-head h2,
  .content-heading,
  .split-copy h2,
  .split-copy h1 {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }

  .cards,
  .article-grid,
  .timeline,
  .signal-map,
  .form-grid,
  .scope-form {
    grid-template-columns: 1fr;
  }

  .comparison {
    grid-template-columns: 1fr;
  }

  .problem-table {
    border: 0;
    border-radius: 0;
  }

  .problem-row,
  .problem-row--head {
    display: block;
    margin-bottom: 14px;
    background: var(--white);
    border: 1px solid var(--line-dark);
    border-radius: 16px;
  }

  .problem-row--head {
    display: none;
  }

  .problem-row > div {
    padding: 14px 16px;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line-dark);
  }

  .problem-row > div:last-child {
    border-bottom: 0;
  }

  .problem-row > div::before {
    display: block;
    margin-bottom: 4px;
    color: #737283;
    content: attr(data-label);
    font-size: .63rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .contact-form .field--full {
    grid-column: auto;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .btn {
    width: 100%;
  }

  .article-hero h1 {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

  .prose table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .consent-banner {
    padding: 10px max(10px, env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
  }

  .consent-panel {
    max-height: calc(100dvh - 20px);
    padding: 18px;
    gap: 16px;
    overflow-y: auto;
    border-radius: 20px;
  }

  .consent-panel p {
    font-size: .74rem;
  }

  .consent-actions {
    grid-template-columns: 1fr;
  }

  .btn--consent {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .consent-banner,
  .cta-panel,
  .toc,
  .hero-actions,
  .breadcrumbs {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section--paper {
    background: #fff;
  }

  .prose,
  .legal-prose {
    color: #000;
    box-shadow: none;
  }
}
