@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("assets/fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url("assets/fonts/unbounded-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url("assets/fonts/unbounded-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: dark;
  --ink: #080d0c;
  --ink-soft: #0c1312;
  --panel: #111a18;
  --panel-light: #16211f;
  --line: rgba(216, 237, 226, 0.13);
  --line-strong: rgba(216, 237, 226, 0.25);
  --text: #f2f5ed;
  --muted: #97a39e;
  --acid: #e8ff65;
  --acid-soft: #cce54e;
  --teal: #59d2c4;
  --danger: #ff9e8c;
  --page: min(1440px, calc(100% - clamp(40px, 8vw, 128px)));
  --display: "Unbounded", sans-serif;
  --body: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 92% 4%, rgba(89, 210, 196, 0.08), transparent 32rem),
    var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--acid);
  transform: translateY(-160%);
}

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

.topbar {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--page);
  min-height: 88px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  width: fit-content;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.brand__mark {
  position: relative;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(232, 255, 101, 0.34);
  border-radius: 50%;
}

.brand__mark i {
  position: absolute;
  width: 4px;
  height: 11px;
  border-radius: 100% 10% 100% 10%;
  background: var(--acid);
  transform-origin: 50% 11px;
}

.brand__mark i:nth-child(2) {
  transform: rotate(120deg);
}

.brand__mark i:nth-child(3) {
  transform: rotate(240deg);
}

.topbar__nav {
  display: flex;
  gap: clamp(22px, 3vw, 44px);
  align-items: center;
}

.topbar__nav a {
  position: relative;
  color: #a8b1ad;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.topbar__nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--acid);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.topbar__nav a:hover::after,
.topbar__nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.topbar__cta {
  justify-self: end;
  padding: 12px 17px;
  border: 1px solid var(--line-strong);
  color: var(--acid);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.topbar__cta:hover,
.topbar__cta:focus-visible {
  border-color: var(--acid);
  color: var(--ink);
  background: var(--acid);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(430px, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(30px, 5vw, 92px);
  align-items: center;
  width: var(--page);
  min-height: min(100svh, 920px);
  margin: 0 auto;
  padding: 112px 0 44px;
}

.hero::before {
  position: absolute;
  z-index: -2;
  top: 88px;
  right: calc((100vw - 100%) / -2);
  bottom: 0;
  width: calc(59% + (100vw - 100%) / 2);
  border-left: 1px solid rgba(232, 255, 101, 0.1);
  background:
    linear-gradient(135deg, rgba(232, 255, 101, 0.025), transparent 42%),
    #0a1110;
  content: "";
}

.hero__grid {
  position: absolute;
  z-index: -1;
  top: 88px;
  right: calc((100vw - 100%) / -2);
  bottom: 0;
  width: calc(59% + (100vw - 100%) / 2);
  opacity: 0.44;
  background-image:
    linear-gradient(rgba(232, 255, 101, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 255, 101, 0.045) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 80%, transparent);
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding-top: 14px;
  animation: rise-in 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.eyebrow,
.kicker {
  color: #abb6b1;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  gap: 11px;
  align-items: center;
  margin: 0 0 25px;
}

.eyebrow span {
  width: 27px;
  height: 1px;
  background: var(--acid);
  box-shadow: 0 0 10px rgba(232, 255, 101, 0.45);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.055em;
}

h1 {
  margin: 0;
  font-size: clamp(46px, 5vw, 80px);
  line-height: 1.04;
}

h1 em,
.section-heading h2 em {
  color: var(--acid);
  font-style: normal;
}

.hero__lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  color: var(--text);
  background: transparent;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease,
    border-color 180ms ease, box-shadow 180ms ease;
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.button--primary {
  color: var(--ink);
  background: var(--acid);
  box-shadow: 0 13px 36px rgba(216, 239, 89, 0.08);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #f2ff9a;
  box-shadow: 0 16px 42px rgba(216, 239, 89, 0.15);
  transform: translateY(-2px);
}

.button--ghost {
  border-color: var(--line-strong);
  color: #c2cbc6;
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: var(--acid);
  color: var(--acid);
  transform: translateY(-2px);
}

.button:focus-visible,
.topbar a:focus-visible,
.text-link:focus-visible,
.site-footer a:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 4px;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 610px;
  margin: 30px 0 0;
  border-top: 1px solid var(--line);
}

.hero__facts div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  min-width: 0;
  padding: 20px 14px 0 0;
}

.hero__facts div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.hero__facts dt {
  color: var(--text);
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.25;
}

.hero__facts dd {
  margin: 1px 0 0;
  color: #75817c;
  font-size: 9px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero__disclaimer {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 18px 0 0;
  color: #6f7b76;
  font-size: 10px;
}

.hero__disclaimer span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(89, 210, 196, 0.08);
}

.turbine-card {
  position: relative;
  display: grid;
  width: min(100%, 780px);
  aspect-ratio: 1;
  margin: 0;
  place-items: center;
  justify-self: end;
  animation: visual-in 1.1s 0.12s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.turbine-card::before {
  position: absolute;
  inset: 16% 3% 9%;
  border: 1px solid rgba(232, 255, 101, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(35, 104, 97, 0.1);
  content: "";
}

.turbine-card__meta {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  color: #77847e;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.turbine-card__meta span:first-child {
  display: flex;
  gap: 8px;
  align-items: center;
}

.turbine-card__meta i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 10px rgba(232, 255, 101, 0.6);
  animation: blink 1.8s ease-in-out infinite;
}

.turbine-card__readout {
  position: absolute;
  z-index: 2;
  top: 16%;
  right: -12px;
  display: flex;
  flex-direction: column;
  min-width: 148px;
  border: 1px solid var(--line);
  background: rgba(8, 13, 12, 0.84);
  backdrop-filter: blur(10px);
}

.turbine-card__readout span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  color: #79857f;
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.turbine-card__readout span + span {
  border-top: 1px solid var(--line);
}

.turbine-card__readout b {
  color: var(--acid);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 500;
}

.turbine {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.topdown__field {
  opacity: 0.86;
}

.topdown__ground {
  fill: none;
  stroke: rgba(180, 216, 205, 0.1);
  stroke-width: 1;
  stroke-dasharray: 2 9;
}

.topdown__ground circle:first-child {
  stroke: rgba(232, 255, 101, 0.2);
  stroke-dasharray: 3 11;
  animation: topdown-ground-scan 18s linear infinite;
}

.topdown__wind-field {
  opacity: 0.9;
}

.topdown__guides {
  filter: drop-shadow(0 10px 11px rgba(0, 7, 6, 0.32));
}

.topdown__guide-shadow {
  fill: rgba(0, 7, 6, 0.55);
}

.topdown__guide-frame {
  fill: #6f827d;
  stroke: rgba(226, 241, 235, 0.7);
  stroke-width: 0.9;
}

.topdown__guide-panel {
  fill: url(#top-panel-face);
  stroke: rgba(161, 211, 199, 0.54);
  stroke-width: 0.8;
}

.topdown__guide-sheen {
  fill: url(#top-panel-sheen);
  animation: topdown-panel-charge 4.6s ease-in-out infinite;
}

.topdown__guide-grid {
  fill: none;
  stroke: rgba(180, 226, 214, 0.2);
  stroke-width: 0.65;
}

.topdown__guide-post {
  fill: #c4d5cf;
  stroke: #f0faf6;
  stroke-width: 0.9;
}

.topdown__guide-bolt {
  fill: #263431;
}

.topdown__inflow,
.topdown__capture,
.topdown__jet,
.topdown__vortex {
  fill: none;
  stroke-linecap: round;
}

.topdown__inflow path {
  stroke: rgba(89, 210, 196, 0.66);
  stroke-width: 1.8;
  stroke-dasharray: 2 9;
  animation: topdown-flow 2.4s linear infinite;
}

.topdown__inflow path:nth-child(2),
.topdown__inflow path:nth-child(4) {
  animation-delay: -0.8s;
}

.topdown__inflow path:nth-child(3) {
  stroke: rgba(232, 255, 101, 0.72);
  stroke-width: 2.2;
  animation-delay: -1.4s;
}

.topdown__inflow path:nth-child(5) {
  animation-delay: -1.7s;
}

.topdown__inflow path:nth-child(6) {
  animation-delay: -0.35s;
}

.topdown__inflow path:nth-child(7) {
  animation-delay: -1.1s;
}

.topdown__capture path {
  stroke: rgba(89, 210, 196, 0.64);
  stroke-width: 1.7;
  stroke-dasharray: 2 8;
  animation: topdown-capture-flow 1.35s linear infinite;
}

.topdown__capture path:nth-child(3n + 1) {
  animation-delay: -0.15s;
}

.topdown__capture path:nth-child(3n + 2) {
  stroke: rgba(188, 244, 129, 0.62);
  stroke-width: 1.9;
  stroke-dasharray: 3 7;
  animation-delay: -0.58s;
}

.topdown__capture path:nth-child(3n) {
  animation-delay: -1.02s;
}

.topdown__jet path {
  stroke: var(--acid);
  stroke-width: 2.8;
  stroke-dasharray: 4 7;
  animation: topdown-jet 0.72s linear infinite;
}

.topdown__jet path:nth-child(2) {
  animation-delay: -0.25s;
}

.topdown__jet path:nth-child(3) {
  animation-delay: -0.5s;
}

.topdown__jet path:nth-child(4) {
  animation-delay: -0.15s;
}

.topdown__jet path:nth-child(5) {
  animation-delay: -0.4s;
}

.topdown__vortex path {
  stroke: rgba(232, 255, 101, 0.72);
  stroke-width: 2;
  stroke-dasharray: 5 7;
  animation: topdown-vortex 0.85s linear infinite;
}

.topdown__turbine-ring {
  fill: rgba(8, 20, 18, 0.9);
  stroke: rgba(232, 255, 101, 0.42);
  stroke-width: 1.2;
}

.topdown__turbine-spin {
  transform-origin: 380px 380px;
  animation: topdown-spin 3.2s linear infinite;
}

.topdown__turbine-spin use {
  fill: url(#top-blade-fill);
  stroke: rgba(242, 255, 190, 0.82);
  stroke-width: 0.8;
}

.topdown__hub {
  fill: #293b37;
  stroke: #e8ff65;
  stroke-width: 1.4;
}

.topdown__hub-core {
  fill: #f3ffae;
}

.topdown__hub-pulse {
  fill: none;
  stroke: rgba(232, 255, 101, 0.68);
  stroke-width: 1.3;
  transform-origin: 380px 380px;
  animation: topdown-hub-pulse 2.2s ease-out infinite;
}

.topdown__annotation {
  fill: #86938e;
  font-family: var(--body);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.topdown__annotation path {
  fill: none;
  stroke: rgba(174, 199, 191, 0.34);
  stroke-linecap: round;
  stroke-width: 0.8;
}

.turbine-card figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 11px;
  align-items: center;
  justify-content: center;
  color: #6e7a74;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.turbine-card figcaption i {
  width: 16px;
  height: 1px;
  background: var(--line-strong);
}

.proof-strip {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  gap: 18px;
  align-items: center;
  width: var(--page);
  min-height: 72px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip p {
  margin: 0;
  color: #aeb8b3;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-strip > span {
  height: 1px;
  background: linear-gradient(90deg, var(--line-strong), transparent);
}

.section,
.support,
.site-footer {
  width: var(--page);
  margin: 0 auto;
}

.section {
  padding: clamp(40px, 4vw, 58px) 0;
}

.kicker {
  margin: 0 0 16px;
  color: var(--teal);
}

.section h2,
.support h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 68px);
  line-height: 1.08;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  column-gap: clamp(32px, 6vw, 88px);
  align-items: end;
}

.section-heading .kicker {
  grid-column: 1 / -1;
}

.section-heading > p:last-child {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefit {
  position: relative;
  min-height: 275px;
  padding: 24px clamp(22px, 2.5vw, 36px) 28px;
  overflow: hidden;
  background: var(--ink-soft);
}

.benefit + .benefit {
  border-left: 1px solid var(--line);
}

.benefit--accent {
  color: var(--ink);
  background: var(--acid);
}

.benefit__number {
  color: #66716c;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.benefit--accent .benefit__number {
  color: rgba(8, 13, 12, 0.5);
}

.benefit__icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-top: 26px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--acid);
  font-family: var(--display);
  font-size: 25px;
}

.benefit--accent .benefit__icon {
  border-color: rgba(8, 13, 12, 0.25);
  color: var(--ink);
}

.benefit h3,
.process h3,
.case-grid h3 {
  margin: 24px 0 0;
  font-family: var(--display);
  font-size: clamp(17px, 1.55vw, 23px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.benefit p,
.process p,
.case-grid p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.benefit--accent p {
  color: rgba(8, 13, 12, 0.7);
}

.how-it-works {
  display: block;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.how-it-works__intro {
  display: block;
}

.how-it-works__intro .kicker {
  margin: 0 0 14px;
}

.how-it-works__intro h2 {
  font-size: clamp(34px, 4.2vw, 64px);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  margin-top: 28px;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  list-style: none;
  counter-reset: none;
}

.process li {
  position: relative;
  display: block;
  min-height: 220px;
  padding: 24px clamp(18px, 2vw, 30px) 26px;
  background: linear-gradient(145deg, rgba(89, 210, 196, 0.025), transparent 58%);
}

.process li + li {
  border-left: 1px solid var(--line);
}

.process li:not(:last-child)::after {
  position: absolute;
  top: 22px;
  right: 18px;
  color: #53605b;
  content: "→";
  font-family: var(--display);
  font-size: 18px;
}

.process li > span {
  display: block;
  color: var(--acid);
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.process h3 {
  max-width: 220px;
  margin: 42px 0 0;
  font-size: 18px;
}

.process p {
  max-width: 520px;
  margin-top: 10px;
}

.validation {
  position: relative;
  border-bottom: 1px solid var(--line);
}

.validation::before {
  position: absolute;
  z-index: -1;
  top: 10%;
  right: -18vw;
  width: 50vw;
  height: 50vw;
  border: 1px solid rgba(89, 210, 196, 0.06);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(89, 210, 196, 0.012);
  content: "";
  pointer-events: none;
}

.validation__heading h2 {
  font-size: clamp(34px, 4vw, 62px);
}

.validation__dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  gap: 18px;
  margin-top: 28px;
}

.data-label {
  margin: 0;
  color: var(--teal);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.power-figure {
  margin: 0;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(232, 255, 101, 0.025), transparent 45%),
    var(--panel);
}

.power-figure__header {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
}

.power-figure h3 {
  margin: 14px 0 0;
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.power-figure__header > strong {
  flex: 0 0 auto;
  color: var(--acid);
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 66px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.06em;
}

.power-bars {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: clamp(40px, 5vw, 64px);
}

.power-bar {
  display: grid;
  grid-template-columns: minmax(125px, 0.34fr) minmax(180px, 1fr) 54px;
  gap: 18px;
  align-items: center;
}

.power-bar > span {
  color: #b6c0bb;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.power-bar > div {
  height: 13px;
  overflow: hidden;
  background: rgba(242, 245, 237, 0.05);
}

.power-bar i {
  display: block;
  width: var(--bar-width);
  height: 100%;
  background: linear-gradient(90deg, var(--acid-soft), var(--acid));
  box-shadow: 0 0 28px rgba(232, 255, 101, 0.16);
}

.power-bar > b {
  color: var(--acid);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 500;
  text-align: right;
}

.power-bar--muted i {
  background: #64716c;
  box-shadow: none;
}

.power-bar--muted > b {
  color: #89958f;
}

.power-figure figcaption {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: #707c76;
  font-size: 10px;
  line-height: 1.65;
}

.research-metrics {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.research-metric {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 215px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--ink-soft);
}

.research-metric strong {
  margin-top: 24px;
  color: var(--acid);
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.06em;
}

.research-metric p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.research-metric--acid {
  color: var(--ink);
  border-color: var(--acid);
  background: var(--acid);
}

.research-metric--acid .data-label,
.research-metric--acid strong {
  color: var(--ink);
}

.research-metric--acid p {
  color: rgba(8, 13, 12, 0.7);
}

.data-note {
  max-width: 1050px;
  margin: 18px 0 0;
  color: #68736e;
  font-size: 10px;
  line-height: 1.65;
}

.specs {
  display: block;
  border-bottom: 1px solid var(--line);
}

.specs__headline {
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  column-gap: clamp(32px, 6vw, 88px);
  align-items: end;
}

.specs__headline .kicker {
  grid-column: 1 / -1;
}

.specs__headline h2 {
  font-size: clamp(36px, 4vw, 62px);
}

.specs__headline > p:not(.kicker) {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  grid-column: 2;
  margin-top: 18px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--acid);
  color: var(--acid);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link span {
  font-size: 16px;
  transition: transform 180ms ease;
}

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

.spec-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 28px 0 0;
  padding: 1px;
  background: var(--line);
  counter-reset: spec;
}

.spec-table div {
  display: block;
  min-height: 146px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(232, 255, 101, 0.018), transparent 60%),
    var(--ink-soft);
  counter-increment: spec;
}

.spec-table dt {
  color: #75817c;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.spec-table dt::before {
  display: block;
  margin-bottom: 22px;
  color: var(--acid);
  content: "/" counter(spec, decimal-leading-zero);
  font-family: var(--display);
  font-size: 9px;
}

.spec-table dd {
  margin: 12px 0 0;
  color: #d9dfdc;
  font-size: 14px;
  line-height: 1.55;
}

.use-cases {
  border-top: 1px solid var(--line);
}

.section-heading--row {
  align-items: end;
}

.section-heading--row .kicker {
  grid-column: auto;
}

.section-heading--row > p:last-child {
  max-width: 480px;
  justify-self: end;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
}

.case-grid article {
  position: relative;
  min-height: 220px;
  padding: 24px 22px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.012));
  transition: background 180ms ease, transform 180ms ease;
}

.case-grid article + article {
  border-left: 1px solid var(--line);
}

.case-grid article:hover {
  background: var(--panel);
  transform: translateY(-5px);
}

.case-grid article > span {
  color: var(--teal);
  font-family: var(--display);
  font-size: 9px;
}

.case-grid h3 {
  margin-top: 50px;
  font-size: 17px;
}

.request {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(540px, 1.22fr);
  gap: clamp(40px, 6vw, 88px);
  padding-right: clamp(30px, 5vw, 80px);
  padding-left: clamp(30px, 5vw, 80px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(232, 255, 101, 0.025), transparent 42%),
    var(--panel);
}

.request::after {
  position: absolute;
  right: -200px;
  bottom: -250px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(232, 255, 101, 0.06);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(232, 255, 101, 0.012);
  content: "";
  pointer-events: none;
}

.request__copy,
.contact-form {
  position: relative;
  z-index: 1;
}

.request__copy h2 {
  font-size: clamp(34px, 4vw, 60px);
}

.request__copy > p:not(.kicker) {
  max-width: 540px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.request__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 34px;
}

.request__contacts span {
  color: #6f7b76;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.request__contacts a {
  color: var(--acid);
  font-size: 16px;
  text-decoration: underline;
  text-decoration-color: rgba(232, 255, 101, 0.35);
  text-underline-offset: 5px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-field > span {
  color: #aeb8b3;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-field > span i {
  color: var(--acid);
  font-style: normal;
}

.contact-field input,
.contact-field textarea,
.contact-field select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  outline: 0;
  color: var(--text);
  background: rgba(8, 13, 12, 0.4);
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-field input,
.contact-field select {
  height: 52px;
  padding: 0 14px;
}

.contact-field textarea {
  min-height: 108px;
  padding: 14px;
  resize: vertical;
}

.contact-field select {
  appearance: none;
  padding-right: 40px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--acid) 50%),
    linear-gradient(135deg, var(--acid) 50%, transparent 50%);
  background-position: calc(100% - 18px) 23px, calc(100% - 13px) 23px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.contact-field option {
  color: var(--text);
  background: var(--panel);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #66716c;
}

.contact-field input:focus,
.contact-field textarea:focus,
.contact-field select:focus {
  border-color: var(--acid);
  background-color: rgba(8, 13, 12, 0.72);
}

.contact-field input.is-invalid,
.contact-field textarea.is-invalid,
.contact-field select.is-invalid {
  border-color: var(--danger);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.consent-check {
  position: relative;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  cursor: pointer;
}

.consent-check input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.consent-check > span {
  position: relative;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border: 1px solid var(--line-strong);
  background: rgba(8, 13, 12, 0.45);
}

.consent-check input:checked + span {
  border-color: var(--acid);
  background: var(--acid);
}

.consent-check input:checked + span::after {
  position: absolute;
  top: 3px;
  left: 6px;
  width: 4px;
  height: 8px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  content: "";
  transform: rotate(45deg);
}

.consent-check input:focus-visible + span {
  outline: 2px solid var(--acid);
  outline-offset: 3px;
}

.consent-check input.is-invalid + span {
  border-color: var(--danger);
}

.consent-check small {
  color: #77837d;
  font-size: 10px;
  line-height: 1.55;
}

.consent-check a {
  color: #b5c0ba;
  text-decoration: underline;
  text-decoration-color: rgba(232, 255, 101, 0.3);
  text-underline-offset: 3px;
}

.contact-form__footer {
  display: flex;
  gap: 20px;
  align-items: center;
  min-height: 56px;
}

.contact-submit {
  min-width: 218px;
  border: 0;
}

.contact-submit:disabled {
  opacity: 0.56;
  cursor: wait;
  transform: none;
}

.contact-form__status {
  flex: 1;
  margin: 0;
  color: #85918b;
  font-size: 11px;
  line-height: 1.5;
}

.contact-form__status.is-success {
  color: var(--acid);
}

.contact-form__status.is-error {
  color: var(--danger);
}

.support {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, 0.8fr) minmax(380px, 1.2fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  margin-top: clamp(34px, 4vw, 56px);
  padding: clamp(34px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(143, 255, 229, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(16, 40, 42, 0.75), rgba(5, 15, 17, 0.84)),
    radial-gradient(circle at 10% 20%, rgba(38, 214, 207, 0.12), transparent 42%);
  box-shadow: inset 0 1px rgba(214, 255, 246, 0.04);
}

.support::after {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(143, 255, 229, 0.06);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(143, 255, 229, 0.014);
  content: "";
  pointer-events: none;
}

.support__logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.support__logo {
  display: grid;
  min-height: 145px;
  padding: 25px;
  place-items: center;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.support__logo:hover {
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.22);
  transform: translateY(-3px);
}

.support__logo img {
  display: block;
  width: 100%;
  max-width: 210px;
  max-height: 122px;
  object-fit: contain;
}

.support__copy {
  position: relative;
  z-index: 1;
}

.support__eyebrow {
  margin: 0 0 17px;
  color: var(--acid);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.support h2 {
  font-size: clamp(27px, 3.2vw, 48px);
  line-height: 1.2;
}

.support__copy > p:last-child {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.75;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.55fr 1.2fr 0.6fr;
  gap: 40px;
  align-items: end;
  padding: 38px 0 26px;
  color: #69756f;
  font-size: 10px;
  line-height: 1.65;
}

.site-footer__company,
.site-footer__links {
  display: flex;
  flex-direction: column;
}

.site-footer__company strong {
  color: #abb6b1;
}

.site-footer__links {
  align-items: flex-end;
}

.site-footer__links a,
.legal-document a,
.legal-footer a {
  text-decoration: underline;
  text-decoration-color: rgba(232, 255, 101, 0.28);
  text-underline-offset: 3px;
  transition: color 180ms ease;
}

.site-footer__links a:hover,
.legal-document a:hover,
.legal-footer a:hover {
  color: var(--acid);
}

.legal-page {
  min-height: 100vh;
  padding: 0 clamp(20px, 5vw, 84px) 40px;
  background:
    linear-gradient(rgba(232, 255, 101, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 255, 101, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 75% 10%, rgba(89, 210, 196, 0.1), transparent 34rem),
    var(--ink);
  background-size: 72px 72px, 72px 72px, auto, auto;
}

.legal-header,
.legal-document,
.legal-footer {
  width: min(980px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  border-bottom: 1px solid var(--line);
}

.legal-header__back {
  color: #8ca5a1;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-document {
  padding: clamp(54px, 8vw, 94px) 0;
}

.legal-document__eyebrow {
  margin: 0 0 18px;
  color: var(--acid);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.legal-document h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.055em;
}

.legal-document section {
  max-width: 860px;
  margin-top: 54px;
}

.legal-document h2 {
  margin: 0 0 18px;
  color: #dff8f1;
  font-family: var(--display);
  font-size: clamp(18px, 2.2vw, 25px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.legal-document p {
  margin: 14px 0 0;
  color: #9bb1ae;
  font-size: 14px;
  line-height: 1.8;
}

.legal-table {
  margin: 24px 0 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.legal-table__row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
}

.legal-table__row + .legal-table__row {
  border-top: 1px solid var(--line);
}

.legal-table__row span {
  padding: 16px;
  color: #91aaa7;
  font-size: 12px;
  line-height: 1.55;
}

.legal-table__row span + span {
  border-left: 1px solid var(--line);
}

.legal-table__head {
  background: rgba(232, 255, 101, 0.04);
}

.legal-table__head span {
  color: #c1d8d3;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-footer {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  color: #657b78;
  font-size: 11px;
}

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

@keyframes topdown-ground-scan {
  to { stroke-dashoffset: -140; }
}

@keyframes topdown-flow {
  to { stroke-dashoffset: -22; }
}

@keyframes topdown-capture-flow {
  to { stroke-dashoffset: -20; }
}

@keyframes topdown-jet {
  to { stroke-dashoffset: -22; }
}

@keyframes topdown-vortex {
  to { stroke-dashoffset: -24; }
}

@keyframes topdown-panel-charge {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.92; }
}

@keyframes topdown-hub-pulse {
  0% { opacity: 0.7; transform: scale(0.72); }
  76%, 100% { opacity: 0; transform: scale(1.38); }
}

@keyframes blink {
  0%, 100% { opacity: 0.42; }
  50% { opacity: 1; }
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes visual-in {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1180px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .topbar__nav {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(390px, 0.9fr) minmax(450px, 1.1fr);
    gap: 30px;
  }

  h1 {
    font-size: clamp(42px, 5.4vw, 67px);
  }

  .turbine-card__readout {
    right: 0;
  }
}

@media (max-width: 900px) {
  :root {
    --page: min(100% - 40px, 760px);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 140px;
  }

  .hero::before,
  .hero__grid {
    top: 47%;
    width: calc(100% + (100vw - 100%));
    border-left: 0;
  }

  .hero__copy {
    max-width: 720px;
  }

  h1 {
    font-size: clamp(45px, 9vw, 72px);
  }

  .turbine-card {
    width: min(100%, 700px);
    justify-self: center;
  }

  .section-heading,
  .request,
  .validation__dashboard {
    grid-template-columns: 1fr;
  }

  .how-it-works__intro,
  .specs__headline {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .specs__headline > p:not(.kicker) {
    margin-top: 0;
  }

  .text-link {
    grid-column: auto;
    width: fit-content;
  }

  .section-heading {
    gap: 28px;
  }

  .section-heading > p:last-child {
    max-width: 640px;
  }

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

  .benefit {
    min-height: auto;
  }

  .benefit + .benefit {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .benefit__icon {
    margin-top: 28px;
  }

  .request {
    gap: 40px;
  }

  .process,
  .spec-table {
    grid-template-columns: 1fr 1fr;
  }

  .process li:nth-child(3) {
    border-left: 0;
  }

  .process li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .research-metrics {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .section-heading--row > p:last-child {
    justify-self: start;
  }

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

  .case-grid article:nth-child(3) {
    border-left: 0;
  }

  .case-grid article:nth-child(n + 3) {
    border-top: 0;
  }

  .request {
    padding-right: 40px;
    padding-left: 40px;
  }

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

  .site-footer {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

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

@media (max-width: 620px) {
  :root {
    --page: calc(100% - 32px);
  }

  .topbar {
    min-height: 75px;
  }

  .topbar__cta {
    padding: 10px 11px;
    font-size: 8px;
  }

  .brand {
    font-size: 15px;
  }

  .brand__mark {
    width: 27px;
    height: 27px;
  }

  .hero {
    padding-top: 108px;
    padding-bottom: 34px;
  }

  .eyebrow {
    align-items: flex-start;
    font-size: 8px;
    line-height: 1.5;
  }

  .eyebrow span {
    margin-top: 6px;
  }

  h1 {
    font-size: clamp(36px, 11vw, 56px);
    line-height: 1.08;
  }

  .hero__lead {
    font-size: 14px;
  }

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

  .button {
    width: 100%;
  }

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

  .hero__facts div {
    grid-template-columns: 80px 1fr;
    padding: 15px 0;
  }

  .hero__facts div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero__facts dt {
    font-size: 17px;
  }

  .turbine-card__readout,
  .turbine-card figcaption {
    display: none;
  }

  .proof-strip {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 12px 0;
  }

  .proof-strip p {
    padding: 10px 5px;
  }

  .proof-strip > span {
    display: none;
  }

  .section {
    padding: 34px 0;
  }

  .section h2,
  .support h2 {
    font-size: clamp(29px, 9vw, 43px);
  }

  .benefit-grid {
    margin-top: 28px;
  }

  .validation__dashboard {
    margin-top: 28px;
  }

  .power-figure {
    padding: 24px 20px;
  }

  .power-figure__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .power-bars {
    margin-top: 36px;
  }

  .power-bar {
    grid-template-columns: 1fr auto;
    gap: 10px 16px;
  }

  .power-bar > div {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .power-bar > b {
    grid-column: 2;
    grid-row: 1;
  }

  .research-metrics {
    grid-template-columns: 1fr;
  }

  .research-metric {
    min-height: 210px;
    padding: 26px 22px;
  }

  .benefit {
    padding: 25px 22px 30px;
  }

  .process {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .process li {
    min-height: auto;
    padding: 22px 20px 24px;
  }

  .process li + li,
  .process li:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .process li:not(:last-child)::after {
    top: 20px;
    content: "↓";
  }

  .process h3 {
    margin-top: 22px;
  }

  .spec-table {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .spec-table div {
    min-height: 132px;
    padding: 20px;
  }

  .spec-table dt::before {
    margin-bottom: 18px;
  }

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

  .case-grid article {
    min-height: 210px;
  }

  .case-grid article + article,
  .case-grid article:nth-child(3) {
    border-top: 0;
    border-left: 0;
  }

  .case-grid h3 {
    margin-top: 48px;
  }

  .request {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-form__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .support {
    width: calc(100% - 32px);
    padding: 28px 20px;
    border-radius: 18px;
  }

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

  .support__logo {
    min-height: 130px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

  .site-footer__links {
    align-items: flex-start;
  }

  .legal-header {
    height: 76px;
  }

  .legal-header__back {
    font-size: 8px;
  }

  .legal-document section {
    margin-top: 42px;
  }

  .legal-table {
    border: 0;
    overflow: visible;
  }

  .legal-table__row {
    display: block;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .legal-table__row + .legal-table__row {
    margin-top: 12px;
  }

  .legal-table__head {
    display: none;
  }

  .legal-table__row span {
    display: block;
    padding: 12px 14px;
  }

  .legal-table__row span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
