

:root {
  --bg: #060608;
  --bg-2: #0c0c10;
  --line: #232329;
  --white: #f5f3fb;
  --mute: #8d8d99;
  --dim: #595961;
  --accent: #8a6cff;
  --accent-2: #c4b5fd;
  --grad: linear-gradient(100deg, #8a6cff, #c4b5fd 60%, #6f9bff);
  --pad: clamp(20px, 4.4vw, 96px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }
.lenis.lenis-smooth { scroll-behavior: auto; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; height: 100vh; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
::selection { background: var(--accent); color: #fff; }

.display {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.045em;
}
.accent {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.line { display: block; overflow: hidden; padding-bottom: 0.08em; }
.w { display: inline-block; }

.grain {
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  opacity: 0.4; mix-blend-mode: overlay;
  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='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cursor, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9500;
  border-radius: 50%; pointer-events: none;
}
.cursor {
  width: 7px; height: 7px;
  background: var(--accent-2);
  box-shadow: 0 0 8px 1px rgba(138, 108, 255, 0.7);
}
.cursor-ring {
  width: 30px; height: 30px;
  background: radial-gradient(circle, rgba(138, 108, 255, 0.45), rgba(138, 108, 255, 0) 68%);
  filter: blur(5px);
  transition: width .45s var(--ease), height .45s var(--ease), opacity .45s var(--ease);
}
.cursor-ring.is-hover {
  width: 72px; height: 72px;
}
.progress {
  position: fixed; top: 0; left: 0; z-index: 8000;
  height: 3px; width: 0%;
  background: var(--grad);
}

.loader {
  position: fixed; inset: 0; z-index: 9800;
  background: #060608;
  display: grid; place-items: center;
  overflow: hidden;
}
.loader__glow {
  position: absolute; width: 62vw; height: 62vw;
  top: 50%; margin-top: -31vw;
  border-radius: 50%; filter: blur(130px);
  opacity: 0; pointer-events: none;
}
.loader__glow--l { left: -24vw; background: radial-gradient(circle, rgba(196,181,253,0.55), transparent 68%); }
.loader__glow--r { right: -26vw; background: radial-gradient(circle, rgba(138,108,255,0.62), transparent 68%); }
.loader__inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 30px;
}
.loader__logo { width: clamp(220px, 33vw, 470px); height: auto; overflow: visible; }
.loader__logo path { fill: transparent; }
.loader__meta {
  display: flex; align-items: center; gap: 18px;
  width: clamp(220px, 33vw, 470px);
}
.loader__track { flex: 1; height: 2px; background: rgba(245,243,251,0.12); overflow: hidden; }
.loader__track i { display: block; height: 100%; width: 0%; background: var(--grad); }
.loader__count {
  font-family: "Space Grotesk", sans-serif; font-size: 13px;
  color: var(--mute); font-variant-numeric: tabular-nums;
  min-width: 42px; text-align: right;
}

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 7000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--pad);
  transition: padding .4s var(--ease), background .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  padding: 14px var(--pad);
  background: rgba(6, 6, 8, 0.72);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav__logo img { height: 22px; }
.nav__links { display: flex; gap: 38px; }
.nav__links a {
  font-size: 14px; color: var(--mute);
  text-transform: uppercase; letter-spacing: 0.06em;
  transition: color .25s;
}
.nav__links a:hover { color: var(--white); }
.nav__cta-mobile { display: none; }
.nav__cta {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Space Grotesk", sans-serif; font-weight: 600;
  font-size: 14px; padding: 12px 22px; border-radius: 100px;
  background: var(--white); color: #08080a;
  text-transform: uppercase; letter-spacing: 0.04em;
  transition: box-shadow .55s var(--ease);
}
.nav__cta:hover { box-shadow: 0 14px 38px -14px rgba(196, 181, 253, 0.6); }
.nav__burger { display: none; flex-direction: column; gap: 6px; padding: 8px; }
.nav__burger span { width: 26px; height: 2px; background: var(--white); transition: transform .3s, opacity .3s; }
.nav__burger.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }

.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Space Grotesk", sans-serif; font-weight: 600;
  font-size: 15px; letter-spacing: 0.01em;
  padding: 18px 34px; border-radius: 100px;
  transition: background .55s var(--ease), color .55s var(--ease),
    border-color .55s var(--ease), box-shadow .55s var(--ease);
}
.btn--full { width: 100%; }
.btn--solid { background: var(--white); color: #08080a; }
.btn--solid:hover { box-shadow: 0 16px 44px -14px rgba(196, 181, 253, 0.55); }
.btn--line { border: 1px solid var(--line); color: var(--white); }
.btn--line:hover { border-color: rgba(138, 108, 255, 0.6); }

.btn__roll { position: relative; display: block; overflow: hidden; }
.btn__roll > span {
  display: block; white-space: nowrap;
  transition: transform .6s var(--ease);
}
.btn__roll > span:last-child { position: absolute; top: 100%; left: 0; width: 100%; }
.btn:hover .btn__roll > span,
.nav__cta:hover .btn__roll > span { transform: translateY(-100%); }

.label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--accent-2);
}
.index {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(13px, 1.1vw, 15px);
  color: var(--dim); letter-spacing: 0.04em; margin-bottom: 26px;
}
.section-title { font-size: clamp(2.8rem, 8.5vw, 9.5rem); }
[data-reveal] { opacity: 0; }

.hero {
  position: relative;
  min-height: 100svh;
  padding: 140px var(--pad) 56px;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.hero__media {
  position: absolute; top: -8%; right: -6%;
  width: 70%; height: 90%; z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.55;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 70% 35%, #000, transparent 78%);
  mask-image: radial-gradient(ellipse 70% 70% at 70% 35%, #000, transparent 78%);
}
.hero > *:not(.hero__media) { position: relative; z-index: 1; }
.hero__meta {
  display: flex; justify-content: space-between;
  border-bottom: 1px solid var(--line); padding-bottom: 22px;
}
.hero__title {
  font-size: clamp(3.1rem, 11.6vw, 15rem);
  margin: auto 0;
  padding: 3vh 0;
}

html.is-intro .hero__title .w { opacity: 0; transform: translateY(115%); will-change: transform; }
.hero__foot {
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: end;
  border-top: 1px solid var(--line); padding-top: 30px;
}
.hero__sub { max-width: 46ch; color: var(--mute); }
.hero__actions { display: flex; gap: 14px; }

.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 0; overflow: hidden;
}
.strip__row { display: flex; gap: 50px; width: max-content; }
.strip__row span {
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 6rem);
  letter-spacing: -0.03em; text-transform: uppercase;
  white-space: nowrap; color: var(--white);
}
.strip__row em { font-size: clamp(1.4rem, 3vw, 3rem); color: var(--accent); align-self: center; }

.how { padding: clamp(80px, 12vh, 180px) 0 0; }
.how__intro {
  max-width: 1100px;
  margin: 0 var(--pad) clamp(40px, 7vh, 110px);
}
.stack { position: relative; }
.panel {
  position: sticky; top: 0;
  min-height: 100svh;
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 5vw, 90px);
  align-items: center;
  padding: clamp(64px, 9vh, 130px) var(--pad);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-radius: 30px 30px 0 0;
  overflow: hidden;
}
.panel--cascade {
  background: #101017;
  box-shadow: 0 -50px 90px -34px rgba(0, 0, 0, 0.75);
}
.panel__num {
  position: absolute; top: clamp(28px, 5vh, 56px); right: var(--pad);
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
  font-size: clamp(5rem, 16vw, 20rem);
  line-height: 1; color: transparent;
  -webkit-text-stroke: 1px var(--line);
  pointer-events: none;
}
.panel__body { max-width: 540px; }
.tag {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--accent-2);
}
.panel__title {
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
  font-size: clamp(1.9rem, 3.6vw, 3.4rem);
  line-height: 1.04; letter-spacing: -0.03em;
  margin: 18px 0 20px;
}
.panel__body p { color: var(--mute); }
.ticks { margin-top: 26px; display: grid; gap: 14px; }
.ticks li { position: relative; padding-left: 34px; color: var(--mute); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 0.2em;
  width: 20px; height: 20px; border-radius: 50%; background: var(--grad);
}
.ticks li::after {
  content: ""; position: absolute;
  left: 10px; top: calc(0.2em + 10px);
  width: 8px; height: 4px;
  border-left: 2px solid #08080a; border-bottom: 2px solid #08080a;
  transform: translate(-50%, -70%) rotate(-45deg);
}

.panel__vis { display: flex; justify-content: center; }

.rdg {
  position: relative; overflow: hidden;
  width: 100%; max-width: 480px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 22px; padding: clamp(28px, 3.4vw, 46px);
}
.rdg__glow {
  position: absolute; top: -22%; left: 50%;
  width: 72%; height: 64%; transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(138,108,255,0.24), transparent 70%);
  filter: blur(22px); pointer-events: none;
}
.rdg > *:not(.rdg__glow) { position: relative; z-index: 1; }
.rdg__src {
  width: 172px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 14px;
  color: #08080a; background: var(--grad);
  border-radius: 12px; padding: 13px 10px;
  box-shadow: 0 0 36px -8px rgba(138,108,255,0.7);
}
.rdg__src i {
  width: 7px; height: 7px; border-radius: 50%; background: #08080a;
  animation: rdgPulse 1.8s ease-in-out infinite;
}
@keyframes rdgPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
.rdg__wires { width: 100%; height: 124px; display: block; }
.rdg__wires path { stroke: var(--line); stroke-width: 1.4; }
.rdg__wires path#rp1 { stroke: rgba(138,108,255,0.5); stroke-width: 2; }
.rdg__dot { fill: var(--accent-2); }
.rdg__dot--best { fill: #ffffff; }
.rdg__nodes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.rdg__node {
  position: relative;
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--bg-2); padding: 16px 8px; text-align: center;
}
.rdg__name { font-family: "Space Grotesk", sans-serif; font-size: 13px; display: block; }
.rdg__rate { font-family: "Space Grotesk", sans-serif; font-size: 12px; color: var(--dim); display: block; margin-top: 5px; }
.rdg__node.is-best {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(138,108,255,0.16), var(--bg-2));
  box-shadow: 0 0 0 1px var(--accent), 0 16px 42px -16px var(--accent);
}
.rdg__node.is-best .rdg__rate { color: var(--accent-2); }
.rdg__node.is-best::after {
  content: ""; position: absolute; inset: -1px; border-radius: 12px;
  box-shadow: 0 0 0 1px var(--accent);
  animation: rdgHalo 2.2s ease-in-out infinite;
}
@keyframes rdgHalo { 0%, 100% { opacity: 0.25; } 50% { opacity: 1; } }
.rdg__tag {
  position: absolute; top: -9px; left: 50%; transform: translateX(-50%);
  font-family: "Space Grotesk", sans-serif; font-style: normal;
  font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  color: #08080a; background: var(--grad);
  padding: 3px 9px; border-radius: 100px; white-space: nowrap;
}

.cdg {
  position: relative;
  width: 100%; max-width: 480px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(28px, 3.4vw, 44px) clamp(26px, 3.2vw, 42px);
}
.cdg__rail {
  position: absolute; width: 2px; background: var(--line);
  left: calc(clamp(26px, 3.2vw, 42px) + 22px);
  top: clamp(44px, 5vw, 64px); bottom: clamp(44px, 5vw, 64px);
}
.cdg__token {
  position: absolute; left: -5px; top: 0;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 16px 3px rgba(138,108,255,0.85);
}
.cdg__rows { position: relative; display: grid; gap: 14px; }
.cdg__row {
  display: flex; align-items: center; gap: 16px;
  font-family: "Space Grotesk", sans-serif; font-size: 15px;
  border: 1px solid var(--line); border-radius: 14px;
  background: var(--bg-2); padding: 20px 22px;
  opacity: 0.5;
  transition: opacity .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.cdg__dot {
  width: 11px; height: 11px; border-radius: 50%; flex: none;
  background: var(--dim);
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
.cdg__name { color: var(--white); }
.cdg__state {
  margin-left: auto; font-size: 12px; color: var(--dim);
  transition: color .35s var(--ease);
}
.cdg__row.is-active {
  opacity: 1; border-color: rgba(138,108,255,0.55);
  box-shadow: 0 0 0 1px rgba(138,108,255,0.35);
}
.cdg__row.is-active .cdg__dot { background: var(--accent-2); box-shadow: 0 0 12px 2px var(--accent); }
.cdg__row.is-fail { opacity: 1; border-color: rgba(255,106,106,0.4); }
.cdg__row.is-fail .cdg__dot { background: #ff6a6a; }
.cdg__row.is-fail .cdg__state { color: #ff6a6a; }
.cdg__row.is-pass {
  opacity: 1; border-color: var(--accent);
  box-shadow: 0 16px 46px -20px var(--accent);
}
.cdg__row.is-pass .cdg__dot { background: #58e08a; box-shadow: 0 0 12px 2px rgba(88,224,138,0.7); }
.cdg__row.is-pass .cdg__state { color: #58e08a; }

.perf {
  position: relative;
  padding: clamp(90px, 14vh, 200px) var(--pad);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.perf__map { position: absolute; inset: 0; z-index: 0; }
.perf__map img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.14;
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 45%, #000, transparent);
  mask-image: radial-gradient(ellipse 60% 60% at 50% 45%, #000, transparent);
}
.perf > *:not(.perf__map) { position: relative; z-index: 1; }
.perf__head { max-width: 1100px; margin-bottom: clamp(40px, 6vh, 90px); }
.bignum { text-align: center; margin: clamp(30px, 6vh, 90px) 0; }
.bignum__val {
  display: block;
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
  font-size: clamp(6rem, 26vw, 30rem); line-height: 0.82;
  letter-spacing: -0.05em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.bignum__cap { display: block; margin-top: 28px; color: var(--mute); }
.perf__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.stat { padding: 44px clamp(26px, 2.6vw, 46px); border-right: 1px solid var(--line); }
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: none; padding-right: 0; }
.stat b {
  display: block;
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
  font-size: clamp(2.4rem, 4.5vw, 4.4rem); letter-spacing: -0.03em;
}

.stat > span { color: var(--mute); font-size: 0.92em; }
.geo { margin-top: clamp(50px, 8vh, 110px); }
.geo h3 {
  font-family: "Space Grotesk", sans-serif; font-weight: 600;
  font-size: clamp(1.3rem, 2.2vw, 2rem); margin-bottom: 36px;
}
.geo__list { display: grid; gap: 0; }
.geo__row {
  display: grid; grid-template-columns: 180px 1fr 90px;
  align-items: center; gap: 28px;
  padding: 22px 0; border-top: 1px solid var(--line);
}
.geo__row:last-child { border-bottom: 1px solid var(--line); }
.geo__row span { color: var(--mute); }
.geo__row b {
  font-family: "Space Grotesk", sans-serif; text-align: right;
  font-size: 1.15em;
}
.track { height: 6px; background: var(--line); border-radius: 100px; overflow: hidden; }
.track i { display: block; height: 100%; width: 0; background: var(--grad); }

.sol { border-top: 1px solid var(--line); }
.sol__pin {
  height: 100svh;
  display: flex; align-items: center;
}
.sol__inner {
  width: 100%; padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr clamp(190px, 21vw, 320px);
  grid-template-rows: auto auto;
  column-gap: clamp(40px, 6vw, 120px);
  row-gap: clamp(34px, 6vh, 84px);
  align-items: center;
}
.sol__top {
  grid-column: 1 / -1;
  display: flex; align-items: baseline; justify-content: space-between;
}
.sol__counter { font-family: "Space Grotesk", sans-serif; }
.sol__counter b { font-size: clamp(1.3rem, 2.2vw, 2.2rem); font-weight: 700; }
.sol__counter i { font-style: normal; color: var(--dim); margin-left: 4px; }

.sol__stage {
  grid-column: 1; grid-row: 2;
  position: relative;
  min-height: clamp(300px, 48vh, 540px);
}
.sol-item {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
}
.sol-item__n {
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
  font-size: clamp(0.9rem, 1.2vw, 1.2rem);
  letter-spacing: 0.24em; color: var(--accent-2);
  margin-bottom: clamp(14px, 2.4vh, 30px);
}
.sol-item__mask { overflow: hidden; padding-bottom: 0.12em; }
.sol-item__title {
  font-size: clamp(3rem, 9.6vw, 12.5rem);
  line-height: 0.92;
}
.sol-item__desc {
  margin-top: clamp(20px, 3.4vh, 44px);
  max-width: 46ch;
  font-size: clamp(1rem, 1.3vw, 1.4rem);
  color: var(--mute);
}

.sol__prog {
  grid-column: 2; grid-row: 2;
  display: flex; flex-direction: column; gap: clamp(10px, 1.4vh, 18px);
  border-left: 1px solid var(--line);
  padding-left: clamp(20px, 2vw, 40px);
}
.sol__prog li {
  font-family: "Space Grotesk", sans-serif; font-size: 14px;
  color: var(--dim); cursor: pointer;
  display: flex; gap: 12px; align-items: baseline;
  transition: color .4s var(--ease), transform .4s var(--ease);
}
.sol__prog li span { color: var(--line); transition: color .4s var(--ease); }
.sol__prog li:hover { color: var(--mute); }
.sol__prog li.is-active { color: var(--white); transform: translateX(6px); }
.sol__prog li.is-active span { color: var(--accent); }

.pricing { padding: clamp(90px, 14vh, 200px) var(--pad); border-top: 1px solid var(--line); }
.pricing__head { max-width: 1100px; }
.pricing__hero {
  position: relative;

  overflow: visible clip;
  margin: clamp(40px, 7vh, 110px) 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: clamp(30px, 5vh, 70px) 0;
}
.pricing__glow {
  position: absolute; left: 50%; top: 50%;
  width: min(640px, 66%); height: 84%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(124, 92, 255, 0.34), transparent 72%);
  filter: blur(50px); pointer-events: none; opacity: 0;
}
.pricing__hero > *:not(.pricing__glow) { position: relative; z-index: 1; }
.pricing__label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--dim);
}
.pricing__big { font-size: clamp(4rem, 16vw, 20rem); margin-top: 16px; }

.pricing__big .line { overflow: visible clip; }

.pricing__big .w.accent { padding-right: 20px !important; }
.pricing__row { display: grid; grid-template-columns: repeat(3, 1fr); }
.pcell { padding: 44px clamp(26px, 2.6vw, 46px); border-right: 1px solid var(--line); }
.pcell:first-child { padding-left: 0; }
.pcell:last-child { border-right: none; padding-right: 0; }
.pcell__k {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--dim);
}
.pcell__v {
  display: block;
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.8rem); letter-spacing: -0.02em;
  margin: 14px 0 12px;
}
.pcell p { color: var(--mute); }

.about { padding: clamp(90px, 14vh, 200px) var(--pad); border-top: 1px solid var(--line); }
.about__head { max-width: 1100px; }
.about__mark { display: inline-block; vertical-align: baseline; }
.about__mark svg { display: block; height: 0.64em; width: auto; }
.about__cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 90px);
  margin: clamp(40px, 7vh, 100px) 0;
}
.about__lead {
  font-family: "Space Grotesk", sans-serif; font-weight: 500;
  font-size: clamp(1.1rem, 1.7vw, 1.6rem); line-height: 1.4;
  letter-spacing: -0.01em;
}
.about__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.bigstat { padding: 44px clamp(26px, 2.6vw, 46px) 0; border-right: 1px solid var(--line); }
.bigstat:first-child { padding-left: 0; }
.bigstat:last-child { border-right: none; padding-right: 0; }
.bigstat b {
  display: block;
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
  font-size: clamp(3rem, 7vw, 8rem); line-height: 0.95;
  letter-spacing: -0.04em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.bigstat span { display: block; color: var(--mute); margin-top: 14px; font-size: 0.92em; }

.contact { padding: clamp(90px, 14vh, 200px) var(--pad); border-top: 1px solid var(--line); }
.contact__head { max-width: 1100px; margin-bottom: clamp(40px, 7vh, 90px); }

.quiz { width: 100%; }
.quiz__top {
  display: flex; align-items: center; gap: clamp(20px, 3vw, 44px);
  margin-bottom: clamp(30px, 5vh, 56px);
}
.quiz__label {
  font-family: "Space Grotesk", sans-serif; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent-2);
  white-space: nowrap;
}
.quiz__bar { flex: 1; height: 2px; background: var(--line); overflow: hidden; }
.quiz__bar i {
  display: block; height: 100%; width: 20%;
  background: var(--grad);
  transition: width .6s var(--ease);
}
.quiz__viewport {
  position: relative; overflow: hidden;
  height: clamp(400px, 56vh, 600px);
}
.quiz__steps { position: absolute; inset: 0; }
.quiz__step {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
}
.quiz__body { width: 100%; }
.quiz__q {
  font-size: clamp(1.9rem, 4.6vw, 4.4rem);
  line-height: 1; max-width: 18ch;
  margin-bottom: clamp(22px, 3.4vh, 44px);
}
.quiz__step--cal .quiz__q { font-size: clamp(1.5rem, 3vw, 2.6rem); max-width: none; margin-bottom: 12px; }
.quiz__step--done .quiz__q { font-size: clamp(2rem, 4.4vw, 3.8rem); }
.quiz__input {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid var(--line);
  padding: 16px 2px; color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.2rem, 2vw, 2rem);
  resize: none;
  transition: border-color .3s var(--ease);
}
.quiz__input:focus { outline: none; border-bottom-color: var(--accent); }
.quiz__input::placeholder { color: var(--dim); }
.quiz__input.is-error { border-bottom-color: #ff6a6a; }
.quiz__hint { display: block; margin-top: 16px; font-size: 12px; color: var(--dim); font-family: "Space Grotesk", sans-serif; }
.quiz__hint kbd {
  font-family: inherit; background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 6px; padding: 2px 7px; color: var(--mute); font-size: 11px;
}
.quiz__sub { color: var(--mute); max-width: 48ch; margin-bottom: clamp(18px, 2.6vh, 30px); }

.quiz__cal { display: grid; grid-template-columns: minmax(0, 360px) 1fr; gap: clamp(16px, 2.4vw, 38px); align-items: start; }
.cal__head {
  display: flex; align-items: baseline; justify-content: space-between;
  font-family: "Space Grotesk", sans-serif; margin-bottom: 14px;
}
.cal__head > span:first-child { font-size: 1.05rem; }
.cal__tz { font-size: 11px; color: var(--dim); text-transform: uppercase; letter-spacing: 0.1em; }
.cal__days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.cal__days .cd {
  aspect-ratio: 1; display: grid; place-items: center;
  border-radius: 9px; font-size: 12px;
  font-family: "Space Grotesk", sans-serif; color: var(--mute);
}
.cal__days .cd.head { color: var(--dim); font-size: 10px; }
.cal__days .cd.pick {
  cursor: pointer; border: 1px solid var(--line);
  transition: border-color .2s, color .2s, background .2s, transform .2s var(--ease);
}
.cal__days .cd.pick:hover { border-color: rgba(138,108,255,0.5); color: var(--white); transform: translateY(-2px); }
.cal__days .cd.sel { background: var(--grad); color: #08080a; border-color: transparent; }
.cal__days .cd.empty { visibility: hidden; }
.cal__right { display: flex; flex-direction: column; gap: 12px; }
.cal__slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; align-content: start; }
.cal__slot {
  border: 1px solid var(--line); border-radius: 10px; padding: 11px 0;
  font-family: "Space Grotesk", sans-serif; font-size: 13px; color: var(--mute);
  font-variant-numeric: tabular-nums;
  transition: border-color .2s, color .2s, background .2s, transform .2s var(--ease);
}
.cal__slot:hover { border-color: rgba(138,108,255,0.5); color: var(--white); transform: translateY(-2px); }
.cal__slot.sel { background: var(--grad); color: #08080a; border-color: transparent; }
.cal__custom {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--line); padding-top: 14px; margin-top: 2px;
}
.cal__custom span {
  font-family: "Space Grotesk", sans-serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--dim);
  white-space: nowrap;
}
.cal__custom input {
  flex: 1; min-width: 0;
  background: none; border: 1px solid var(--line); border-radius: 10px;
  padding: 11px 14px; color: var(--white);
  font-family: "Space Grotesk", sans-serif; font-size: 13px;
  font-variant-numeric: tabular-nums;
  transition: border-color .2s;
}
.cal__custom input:focus { outline: none; border-color: rgba(138, 108, 255, 0.6); }
.cal__custom input::placeholder { color: var(--dim); }

.quiz__nav {
  display: flex; align-items: center; gap: 16px;
  margin-top: clamp(28px, 5vh, 56px);
}
.quiz__back {
  font-family: "Space Grotesk", sans-serif; font-size: 14px;
  color: var(--dim); transition: color .25s;
}
.quiz__back:hover { color: var(--white); }
.quiz__back[hidden] { display: none; }
.quiz__next {
  display: inline-flex; align-items: center; gap: 10px;
  margin-left: auto;
  font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 15px;
  background: var(--white); color: #08080a;
  padding: 15px 30px; border-radius: 100px;
  transition: background .3s var(--ease);
}
.quiz__next:hover { background: var(--accent-2); }
.quiz__next[hidden] { display: none; }
.quiz__next i { font-style: normal; opacity: 0.55; }
.quiz__review { display: grid; gap: 0; max-width: 640px; margin-bottom: clamp(20px, 3vh, 32px); }
.quiz__review div {
  display: flex; gap: clamp(16px, 3vw, 40px);
  padding: 13px 0; border-bottom: 1px solid var(--line);
}
.quiz__review dt {
  font-family: "Space Grotesk", sans-serif; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--dim);
  width: 104px; flex: none;
}
.quiz__review dd { color: var(--white); font-family: "Space Grotesk", sans-serif; }
.quiz__error {
  margin: 0 0 18px; max-width: 640px;
  font-family: "Space Grotesk", sans-serif; font-size: 13px;
  color: #ff8e8e; letter-spacing: 0.01em;
}
#quizSend[disabled] { opacity: 0.55; pointer-events: none; }
.quiz__check {
  display: inline-grid; place-items: center;
  width: 66px; height: 66px; border-radius: 50%;
  background: var(--grad); margin-bottom: 24px;
}
.quiz__check svg {
  width: 32px; height: 32px; stroke: #08080a;
  stroke-width: 3; stroke-linecap: round; stroke-linejoin: round;
}

.contact__mails {
  display: flex; align-items: center; gap: clamp(16px, 3vw, 44px);
  flex-wrap: wrap;
  margin-top: clamp(26px, 3.4vh, 44px);
  padding-top: clamp(26px, 3.4vh, 44px);
  border-top: 1px solid var(--line);
}
.contact__mails-label {
  font-family: "Space Grotesk", sans-serif; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--dim);
}
.contact__mails a {
  display: flex; align-items: baseline; gap: 10px;
  font-family: "Space Grotesk", sans-serif; font-size: clamp(1rem, 1.4vw, 1.3rem);
  transition: color .25s;
}
.contact__mails a span {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--dim);
}
.contact__mails a:hover { color: var(--accent-2); }

.foot { border-top: 1px solid var(--line); padding: clamp(56px, 8vh, 110px) var(--pad) 36px; }
.foot__logo {
  display: block;
  margin: 0 0 clamp(40px, 5vh, 64px);
}
.foot__logo-svg { width: 100%; height: auto; display: block; overflow: visible; }
.foot__logo-svg path {
  fill: transparent;
  stroke: url(#footGrad); stroke-width: 0.6;
  transition: fill .6s var(--ease);
}
.foot__logo:hover .foot__logo-svg path { fill: rgba(245, 243, 251, 0.06); }
.foot__bottom {
  border-top: 1px solid var(--line); padding-top: 26px;
  display: grid; grid-template-columns: 1fr auto; gap: 24px clamp(40px, 6vw, 110px);
  align-items: end;
}
.foot__legal {
  max-width: 78ch;
  color: var(--dim); font-size: 11.5px; line-height: 1.7;
}
.foot__meta {
  display: flex; flex-direction: column; gap: 6px;
  text-align: right; white-space: nowrap;
  color: var(--dim); font-size: 13px;
  font-family: "Space Grotesk", sans-serif;
}

@media (max-width: 1024px) {
  .panel { grid-template-columns: 1fr; gap: 40px; position: relative; min-height: auto; }
  .panel__num { font-size: 28vw; top: 20px; }
  .perf__grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; padding-right: 0; }
  .stat:nth-child(3) { padding-left: 0; }
  .stat { border-bottom: 1px solid var(--line); }
  .about__stats { grid-template-columns: 1fr 1fr; }
  .bigstat:nth-child(2) { border-right: none; padding-right: 0; }
  .bigstat:nth-child(3) { padding-left: 0; }
  .bigstat { border-bottom: 1px solid var(--line); padding-bottom: 30px; }
}
@media (max-width: 860px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 360px);
    height: 100dvh; flex-direction: column; justify-content: center;
    gap: 14px; padding: 0 var(--pad);
    background: var(--bg-2); border-left: 1px solid var(--line);
    transform: translateX(100%); transition: transform .5s var(--ease);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { font-size: 22px; }
  .nav__cta-mobile { display: block; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .cursor { display: none; }
  .hero__media { width: 100%; right: 0; opacity: 0.6; }
  .hero__foot { grid-template-columns: 1fr; gap: 26px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .perf__grid { grid-template-columns: 1fr; }
  .stat { border-right: none; padding: 32px 0; }
  .stat:nth-child(2) { border-right: none; }
  .bigstat { padding-left: 0; padding-right: 0; }
  .pcell { padding-left: 0; }
  .sol__pin { height: auto; display: block; padding: clamp(70px, 11vh, 130px) 0; }
  .sol__inner { display: block; padding: 0 var(--pad); }
  .sol__top { margin-bottom: 44px; }
  .sol__counter { display: none; }
  .sol__stage { min-height: 0; }
  .sol-item {
    position: relative; inset: auto;
    opacity: 1 !important; visibility: visible !important;
    padding-bottom: clamp(40px, 7vh, 68px); margin-bottom: clamp(40px, 7vh, 68px);
    border-bottom: 1px solid var(--line);
  }
  .sol-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .sol__prog { display: none; }
  .pricing__row { grid-template-columns: 1fr; }
  .pcell { border-right: none; border-bottom: 1px solid var(--line); padding-right: 0; }
  .pcell:last-child { border-bottom: none; }
  .about__cols { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: 1fr; }
  .bigstat { border-right: none; }
  .bigstat:nth-child(2) { border-right: none; }
  .geo__row { grid-template-columns: 110px 1fr 70px; gap: 16px; }
}
@media (max-width: 520px) {
  .foot__bottom { grid-template-columns: 1fr; gap: 18px; }
  .foot__meta { text-align: left; flex-direction: row; gap: 18px; }
  .hero__meta { flex-direction: column; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; }
  .grain { display: none; }
  * { scroll-behavior: auto !important; }
}
