:root {
  color-scheme: dark;
  --bg: #05070d;
  --surface: rgba(255, 255, 255, 0.026);
  --surface-hover: rgba(255, 255, 255, 0.045);
  --border: rgba(148, 163, 184, 0.18);
  --border-bright: rgba(34, 211, 238, 0.36);
  --text: #f3f6fb;
  --muted: #929bab;
  --cyan: #22d3ee;
  --cyan-soft: #67e8f9;
  --blue: #60a5fa;
  --teal: #2dd4bf;
  --container: 1120px;
  --radius: 18px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

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

button {
  border: 0;
}

.background {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.grid {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image: linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 72%);
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.48;
}

.orb--one {
  width: 680px;
  height: 680px;
  top: -230px;
  left: -210px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.32), transparent 68%);
  animation: drift-one 24s ease-in-out infinite;
}

.orb--two {
  width: 570px;
  height: 570px;
  top: 24%;
  right: -200px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25), transparent 70%);
  animation: drift-two 30s ease-in-out infinite;
}

.orb--three {
  width: 470px;
  height: 470px;
  bottom: -120px;
  left: 22%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.22), transparent 70%);
  animation: drift-three 22s ease-in-out infinite;
}

@keyframes drift-one {
  50% { transform: translate(70px, 95px) scale(1.08); }
}

@keyframes drift-two {
  50% { transform: translate(-90px, -50px) scale(0.92); }
}

@keyframes drift-three {
  33% { transform: translate(50px, -40px); }
  66% { transform: translate(-40px, 60px); }
}

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

.header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.header.is-scrolled,
.header.is-open {
  border-color: var(--border);
  background: rgba(5, 7, 13, 0.76);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  backdrop-filter: blur(20px) saturate(150%);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 750;
  letter-spacing: -0.025em;
  color: var(--text);
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  background: linear-gradient(135deg, #22d3ee, #3b82f6);
  box-shadow: 0 0 22px rgba(34, 211, 238, 0.33), inset 0 1px rgba(255, 255, 255, 0.28);
}

.brand__mark svg {
  width: 19px;
  fill: white;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  margin-right: 20px;
}

.header__nav a,
.mobile-menu > a {
  padding: 8px 12px;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.header__nav a:hover,
.mobile-menu > a:hover {
  color: #dbe4f0;
}

.header__nav a.is-active,
.header__nav a[aria-current="page"] {
  color: var(--cyan-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: white;
  font-weight: 650;
  letter-spacing: -0.01em;
  cursor: default;
  opacity: 1;
}

.button--small {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.94), rgba(59, 130, 246, 0.94));
  box-shadow: 0 6px 22px rgba(34, 211, 238, 0.14);
  font-size: 14px;
}

.button--large {
  min-height: 52px;
  padding: 0 25px;
  border-radius: 12px;
  font-size: 16px;
}

.button--primary {
  background: linear-gradient(135deg, #20c7e4, #3b82f6);
  box-shadow: 0 12px 35px rgba(34, 211, 238, 0.22), inset 0 1px rgba(255, 255, 255, 0.25);
}

.button--secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.03);
  color: #dce5ef;
}

.button--secondary:hover {
  border-color: rgba(148, 163, 184, 0.34);
  background: rgba(255, 255, 255, 0.055);
}

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  padding: 11px 9px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 1.5px;
  margin: 4px auto;
  background: #dfe7f2;
  transition: transform 0.2s ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(2.75px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-2.75px) rotate(-45deg);
}

.mobile-menu {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto 16px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(9, 12, 21, 0.96);
}

.mobile-menu:not([hidden]) {
  display: grid;
  animation: menu-in 0.2s ease-out;
}

.mobile-menu .button {
  margin-top: 8px;
}

@keyframes menu-in {
  from { opacity: 0; transform: translateY(-7px); }
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 135px 0 82px;
}

.hero__inner {
  position: relative;
  display: flex;
  min-height: calc(100vh - 217px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.08);
  color: #a5edf7;
  font-size: 14px;
  font-weight: 600;
}

.eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 11px var(--cyan);
}

.hero__title {
  max-width: 900px;
  margin: 27px 0 0;
  font-size: clamp(44px, 6.2vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.gradient-text {
  background: linear-gradient(120deg, var(--cyan-soft), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.68;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 31px;
}

.status__light {
  position: relative;
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 13px rgba(45, 212, 191, 0.85);
}

.hero__note {
  margin: 20px 0 0;
  color: #697386;
  font-size: 13px;
}

.signal {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: min(760px, 90vw);
  aspect-ratio: 1;
  transform: translate(-50%, -47%);
  opacity: 0.35;
  pointer-events: none;
}

.signal__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.signal__ring--one { width: 42%; height: 42%; }
.signal__ring--two { width: 68%; height: 68%; }
.signal__ring--three { width: 94%; height: 94%; }

.signal__ring::after {
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  content: "";
}

.signal__ring--one { animation: spin 16s linear infinite; }
.signal__ring--two { animation: spin 26s linear infinite reverse; }
.signal__ring--three { animation: spin 34s linear infinite; }

.signal__core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(34, 211, 238, 0.32);
  border-radius: 22px;
  background: rgba(34, 211, 238, 0.08);
  box-shadow: 0 0 70px rgba(34, 211, 238, 0.25);
  transform: translate(-50%, -50%) rotate(45deg);
}

.signal__core svg {
  width: 34px;
  fill: var(--cyan-soft);
  transform: rotate(-45deg);
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.metrics {
  padding-bottom: 88px;
}

.metrics__grid {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.015);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.15);
}

.metric {
  display: flex;
  min-height: 136px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  padding: 26px 18px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.metric span {
  color: var(--muted);
  font-size: 14px;
}

.features {
  padding: 92px 0 105px;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 50px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-heading h2,
.status h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.section-heading p,
.status p {
  max-width: 590px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.feature-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.02);
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.feature-card::before {
  position: absolute;
  width: 180px;
  height: 180px;
  right: -80px;
  bottom: -100px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.08);
  filter: blur(40px);
  content: "";
}

.feature-card:hover {
  border-color: var(--border-bright);
  background: var(--surface-hover);
  transform: translateY(-4px);
}

.feature-card__icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: 13px;
  background: rgba(34, 211, 238, 0.09);
  color: var(--cyan-soft);
}

.feature-card__icon svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.feature-card h3 {
  margin: 23px 0 9px;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.pricing {
  padding: 94px 0 112px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--center p {
  margin-right: auto;
  margin-left: auto;
}

.pricing__grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.price-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 515px;
  flex-direction: column;
  padding: 31px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.price-card--featured {
  border-color: rgba(34, 211, 238, 0.48);
  background: rgba(34, 211, 238, 0.055);
  box-shadow: 0 20px 65px rgba(16, 160, 190, 0.08), inset 0 1px rgba(255, 255, 255, 0.04);
}

.price-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #20c7e4, #3b82f6);
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.price-card__name {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card__price {
  display: flex;
  min-height: 58px;
  align-items: baseline;
  gap: 7px;
  margin-top: 10px;
}

.price-card__price strong {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -0.045em;
}

.price-card__price span {
  color: var(--muted);
  font-size: 13px;
}

.price-card__price--custom strong {
  font-size: 28px;
}

.price-card__description {
  min-height: 44px;
  margin: 5px 0 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 27px;
  color: #aeb7c5;
  font-size: 13px;
  line-height: 1.45;
}

.price-card li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.1);
  color: var(--cyan-soft);
  content: "✓";
  font-size: 11px;
  font-weight: 800;
}

.price-card__button {
  width: 100%;
  min-height: 44px;
  margin-top: auto;
  cursor: pointer;
}

.status {
  padding: 64px 0 118px;
}

.status__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 45px 48px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(120deg, rgba(34, 211, 238, 0.065), rgba(59, 130, 246, 0.025));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.18);
}

.status__panel h2 {
  font-size: clamp(28px, 3.2vw, 38px);
}

.status__panel p {
  font-size: 15px;
}

.status__indicator {
  display: flex;
  min-width: 265px;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(45, 212, 191, 0.18);
  border-radius: 14px;
  background: rgba(45, 212, 191, 0.055);
}

.status__indicator div {
  display: grid;
  gap: 4px;
}

.status__indicator strong {
  font-size: 14px;
}

.status__indicator span:last-child {
  color: var(--muted);
  font-size: 12px;
}

.footer {
  border-top: 1px solid var(--border);
  background: rgba(5, 7, 13, 0.44);
}

.footer__inner {
  display: grid;
  min-height: 110px;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
}

.footer__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.text-button,
.inline-button {
  padding: 0;
  background: none;
  color: var(--muted);
  cursor: pointer;
}

.text-button {
  font-size: 13px;
  text-decoration: none;
}

.text-button:hover,
.inline-button:hover {
  color: var(--cyan-soft);
}

.brand--small {
  font-size: 16px;
}

.brand--small .brand__mark {
  width: 29px;
  height: 29px;
  border-radius: 8px;
}

.brand--small .brand__mark svg {
  width: 16px;
}

.footer__inner > span {
  color: #697386;
  font-size: 13px;
}

.footer__inner > span {
  justify-self: end;
}

body.has-modal {
  overflow: hidden;
}

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 3, 8, 0.76);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  animation: fade-in 0.2s ease-out;
}

.modal__dialog {
  position: relative;
  width: min(100%, 590px);
  max-height: calc(100vh - 48px);
  padding: 34px;
  overflow-y: auto;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 20px;
  background: #0b0f18;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.55), inset 0 1px rgba(255, 255, 255, 0.035);
  animation: modal-in 0.25s ease-out;
}

.modal__dialog--document {
  width: min(100%, 760px);
}

@keyframes fade-in {
  from { opacity: 0; }
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(12px) scale(0.985); }
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  color: #b7c0cd;
  cursor: pointer;
}

.modal__close:hover {
  color: white;
  background: rgba(255, 255, 255, 0.07);
}

.modal__close svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.modal h2 {
  margin: 2px 50px 0 0;
  font-size: 30px;
  letter-spacing: -0.035em;
}

.modal__lead {
  margin: 12px 0 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.request-form {
  display: grid;
  gap: 17px;
}

.request-form label:not(.checkbox) {
  display: grid;
  gap: 7px;
}

.request-form label > span:first-child {
  color: #d9e1ec;
  font-size: 13px;
  font-weight: 600;
}

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

.request-form input:not([type="checkbox"]),
.request-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: none;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.request-form input:not([type="checkbox"]) {
  height: 44px;
  padding: 0 13px;
}

.request-form textarea {
  min-height: 88px;
  padding: 11px 13px;
  resize: vertical;
}

.request-form input::placeholder,
.request-form textarea::placeholder {
  color: #626c7b;
}

.request-form input:focus,
.request-form textarea:focus {
  border-color: rgba(34, 211, 238, 0.62);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.09);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.checkbox input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin: 2px 0 0;
  accent-color: #22c4df;
}

.inline-button {
  display: inline;
  color: #8edfed;
  font-size: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.inline-button--standalone {
  width: max-content;
  margin-top: -10px;
  font-size: 12px;
}

.form-submit {
  min-height: 48px;
  margin-top: 2px;
  cursor: pointer;
}

.form-status {
  min-height: 20px;
  margin: -4px 0 0;
  color: var(--cyan-soft);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.document-date {
  margin: 8px 0 28px;
  color: #697386;
  font-size: 13px;
}

.document-body {
  color: #aeb8c6;
  font-size: 14px;
  line-height: 1.75;
}

.document-body > p:first-child {
  margin-top: 0;
  padding: 18px 20px;
  border: 1px solid rgba(34, 211, 238, 0.13);
  border-radius: 12px;
  background: rgba(34, 211, 238, 0.045);
  color: #c8d1dc;
}

.document-body section {
  margin-top: 27px;
}

.document-body h3 {
  margin: 0 0 8px;
  color: #eef3f8;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.document-body p {
  margin: 0;
}

.document-note {
  margin-top: 30px;
  padding: 16px 18px;
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 11px;
  background: rgba(245, 158, 11, 0.055);
  color: #c9b890;
  font-size: 12px;
  line-height: 1.65;
}

.page {
  min-height: calc(100vh - 110px);
  padding: 130px 0 105px;
}

.page__container {
  max-width: 880px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 38px;
  color: #677183;
  font-size: 13px;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--cyan-soft);
}

.breadcrumb strong {
  color: var(--cyan-soft);
  font-weight: 600;
}

.page-heading {
  margin-bottom: 42px;
}

.page-heading h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(38px, 5vw, 54px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.page-heading > p:not(.page-heading__date) {
  max-width: 680px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.page-heading__date {
  margin: 15px 0 0;
  color: #707b8b;
  font-size: 13px;
}

.page-lead {
  margin: 0 0 44px;
  color: #aeb8c6;
  font-size: 18px;
  line-height: 1.82;
}

.page-stats {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 68px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: var(--surface);
}

.page-stats article {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  padding: 20px 12px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.page-stats article:last-child {
  border-right: 0;
}

.page-stats strong {
  font-size: 25px;
  letter-spacing: -0.035em;
}

.page-stats span {
  color: var(--muted);
  font-size: 12px;
}

.history h2,
.page-cta h2 {
  margin: 0;
  font-size: clamp(27px, 4vw, 35px);
  letter-spacing: -0.035em;
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin-top: 30px;
}

.timeline::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 7px;
  width: 2px;
  background: linear-gradient(var(--cyan), rgba(34, 211, 238, 0.1));
  content: "";
}

.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 22px;
  padding-bottom: 30px;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__dot {
  z-index: 1;
  width: 16px;
  height: 16px;
  border: 4px solid #0b0f18;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.55);
}

.timeline__item h3 {
  margin: -3px 0 6px;
  font-size: 17px;
}

.timeline__item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 75px;
  padding: 34px 36px;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 18px;
  background: rgba(34, 211, 238, 0.045);
}

.page-cta p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.page-cta .button {
  flex: 0 0 auto;
  text-decoration: none;
}

.legal-page .page__container {
  max-width: 820px;
}

.legal-intro {
  margin: 0 0 48px;
  padding: 22px 24px;
  border: 1px solid rgba(34, 211, 238, 0.16);
  border-radius: 14px;
  background: rgba(34, 211, 238, 0.045);
  color: #c3ccd8;
  font-size: 16px;
  line-height: 1.75;
}

.legal-sections {
  display: grid;
  gap: 33px;
}

.legal-sections section {
  padding-bottom: 33px;
  border-bottom: 1px solid var(--border);
}

.legal-sections section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-sections h2 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.legal-sections p {
  margin: 0;
  color: #9ea9b8;
  font-size: 15px;
  line-height: 1.78;
}

.legal-warning {
  margin-top: 48px;
  padding: 18px 20px;
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.055);
  color: #c9b890;
  font-size: 13px;
  line-height: 1.65;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.hero .reveal:nth-child(2) { transition-delay: 80ms; }
.hero .reveal:nth-child(3) { transition-delay: 150ms; }
.hero .reveal:nth-child(4) { transition-delay: 220ms; }
.hero .reveal:nth-child(5) { transition-delay: 290ms; }

@media (max-width: 800px) {
  .header__nav,
  .header__inner > .button {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 135px;
  }

  .hero__inner {
    min-height: 670px;
  }

  .hero__title br {
    display: none;
  }

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

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

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

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

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

  .price-card {
    min-height: 0;
  }

  .price-card__button {
    margin-top: 30px;
  }

  .feature-card {
    min-height: 260px;
  }

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

  .status__indicator {
    width: 100%;
  }

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

  .page-stats article:nth-child(2) {
    border-right: 0;
  }

  .page-stats article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }
}

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

  .header__inner {
    min-height: 64px;
  }

  .hero {
    padding: 110px 0 62px;
  }

  .hero__inner {
    min-height: 640px;
    justify-content: flex-start;
    padding-top: 48px;
  }

  .hero__title {
    margin-top: 23px;
    font-size: clamp(40px, 12vw, 54px);
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__actions {
    flex-direction: column;
    gap: 17px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .signal {
    top: 48%;
    width: 650px;
  }

  .metrics {
    padding-bottom: 56px;
  }

  .metric {
    min-height: 116px;
    padding: 22px 10px;
  }

  .metric strong {
    font-size: 28px;
  }

  .metric span {
    max-width: 130px;
    font-size: 12px;
  }

  .features {
    padding: 64px 0 78px;
  }

  .pricing {
    padding: 66px 0 82px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .feature-card {
    min-height: 285px;
    padding: 26px;
  }

  .status {
    padding: 42px 0 85px;
  }

  .status__panel {
    gap: 32px;
    padding: 30px 24px;
  }

  .status__indicator {
    min-width: 0;
  }

  .footer__inner {
    display: flex;
    min-height: 155px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 28px 0;
  }

  .footer__inner > span {
    align-self: flex-start;
  }

  .footer__legal {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .modal {
    align-items: end;
    padding: 10px;
  }

  .modal__dialog {
    width: 100%;
    max-height: calc(100dvh - 20px);
    padding: 27px 20px;
    border-radius: 18px;
  }

  .modal__close {
    top: 14px;
    right: 14px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .page {
    padding: 105px 0 76px;
  }

  .breadcrumb {
    margin-bottom: 30px;
  }

  .page-heading {
    margin-bottom: 32px;
  }

  .page-heading > p:not(.page-heading__date),
  .page-lead {
    font-size: 16px;
  }

  .page-stats {
    margin-bottom: 52px;
  }

  .page-cta {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 55px;
    padding: 28px 24px;
  }

  .page-cta .button {
    width: 100%;
  }

  .legal-intro {
    margin-bottom: 38px;
    padding: 18px;
    font-size: 14px;
  }
}

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

  .orb,
  .signal__ring,
  .modal__backdrop,
  .modal__dialog {
    animation: none;
  }

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