:root {
  --bg: #071019;
  --bg-alt: #0e1b29;
  --surface: rgba(12, 22, 34, 0.86);
  --surface-soft: rgba(18, 31, 45, 0.8);
  --surface-strong: rgba(25, 43, 62, 0.95);
  --line: rgba(173, 196, 214, 0.16);
  --line-strong: rgba(173, 196, 214, 0.26);
  --text: #eff7ff;
  --muted: #9fb3c6;
  --muted-strong: #bdd0e0;
  --teal: #3ed7c0;
  --teal-strong: #6ef1dd;
  --orange: #ff8d55;
  --orange-soft: #ffb48c;
  --glow: rgba(62, 215, 192, 0.28);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(255, 141, 85, 0.16), transparent 34%),
    radial-gradient(circle at left top, rgba(62, 215, 192, 0.14), transparent 28%),
    linear-gradient(180deg, #061019 0%, #091523 28%, #0b1827 100%);
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.85), transparent 92%);
  opacity: 0.35;
}

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

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -44px;
  padding: 10px 14px;
  background: var(--surface-strong);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  z-index: 2000;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(7, 16, 25, 0.8);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(173, 196, 214, 0.1);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand__logo {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
  object-fit: cover;
  background: rgba(255, 255, 255, 0.03);
}

.brand__copy {
  display: grid;
  gap: 2px;
}

.brand__caption {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal-strong);
}

.brand__name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
  content: "";
}

.nav-toggle__bars {
  position: relative;
}

.nav-toggle__bars::before {
  position: absolute;
  transform: translateY(-6px);
}

.nav-toggle__bars::after {
  position: absolute;
  transform: translateY(6px);
}

.site-header.is-open .nav-toggle__bars {
  opacity: 0;
}

.site-header.is-open .nav-toggle__bars::before {
  opacity: 1;
  transform: rotate(45deg);
}

.site-header.is-open .nav-toggle__bars::after {
  opacity: 1;
  transform: rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav__links,
.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav__link {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  border: 1px solid transparent;
}

.site-nav__link:hover,
.site-nav__link[aria-current="page"] {
  color: var(--text);
  border-color: rgba(173, 196, 214, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: linear-gradient(135deg, var(--orange), #ff7139);
  box-shadow: 0 18px 36px rgba(255, 113, 57, 0.22);
}

.button--secondary {
  background: linear-gradient(135deg, rgba(62, 215, 192, 0.24), rgba(62, 215, 192, 0.06));
  border-color: rgba(62, 215, 192, 0.28);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line);
  color: var(--text);
}

.button--ghost:hover,
.button--secondary:hover {
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.14);
}

.button--block {
  width: 100%;
}

.page-tabs {
  border-bottom: 1px solid rgba(173, 196, 214, 0.08);
}

.page-tabs__track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 16px 0 18px;
}

.page-tabs__track::-webkit-scrollbar {
  display: none;
}

.page-tabs__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(173, 196, 214, 0.12);
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.page-tabs__link:hover,
.page-tabs__link.is-active,
.page-tabs__link[aria-current="page"] {
  color: var(--text);
  border-color: rgba(62, 215, 192, 0.28);
  background: linear-gradient(135deg, rgba(62, 215, 192, 0.13), rgba(255, 141, 85, 0.12));
}

.page-tabs__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
}

.hero {
  padding: 56px 0 30px;
}

.hero--home {
  padding-top: 66px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: stretch;
}

.hero__content,
.hero__visual,
.surface,
.panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(173, 196, 214, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(12, 22, 34, 0.78);
  box-shadow: var(--shadow);
}

.hero__content {
  padding: 34px;
}

.hero__visual {
  padding: 24px;
  min-height: 100%;
}

.hero__content::before,
.hero__visual::before,
.surface::before,
.panel::before {
  content: "";
  position: absolute;
  inset: -30% auto auto 40%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(62, 215, 192, 0.22), transparent 70%);
  filter: blur(18px);
  opacity: 0.9;
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(62, 215, 192, 0.28);
  background: rgba(62, 215, 192, 0.08);
  color: var(--teal-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 141, 85, 0.12);
}

.hero__title {
  margin: 18px 0 14px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero__lede {
  max-width: 60ch;
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.65vw, 1.2rem);
  line-height: 1.72;
}

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

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero__fact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(173, 196, 214, 0.12);
  color: var(--muted-strong);
  font-size: 13px;
}

.hero__fact-mark {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--teal));
}

.signal-card {
  display: grid;
  gap: 18px;
  height: 100%;
}

.signal-card__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.signal-card__title {
  font-size: 1.1rem;
  font-weight: 700;
}

.signal-card__caption {
  font-family: "IBM Plex Mono", "Courier New", monospace;
  color: var(--muted);
  font-size: 0.82rem;
}

.signal-card__screen {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(4, 11, 19, 0.82);
  border: 1px solid rgba(173, 196, 214, 0.1);
}

.signal-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr auto;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  color: var(--muted-strong);
}

.signal-row__name {
  font-weight: 600;
  color: var(--text);
}

.signal-row__tag {
  justify-self: start;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(173, 196, 214, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.signal-row__status {
  min-width: 92px;
  text-align: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(62, 215, 192, 0.12);
  border: 1px solid rgba(62, 215, 192, 0.2);
  color: var(--teal-strong);
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: 11px;
  font-weight: 700;
}

.signal-row__status--warm {
  color: var(--orange-soft);
  background: rgba(255, 141, 85, 0.12);
  border-color: rgba(255, 141, 85, 0.22);
}

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

.signal-tile {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(173, 196, 214, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.signal-tile__value {
  font-size: 1.5rem;
  font-weight: 700;
}

.signal-tile__label {
  color: var(--muted);
  font-size: 13px;
}

.product-frame {
  display: grid;
  gap: 18px;
  height: 100%;
}

.product-frame__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(173, 196, 214, 0.12);
  background: rgba(9, 18, 29, 0.74);
}

.product-frame__dots {
  display: flex;
  gap: 8px;
}

.product-frame__dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(173, 196, 214, 0.2);
}

.product-frame__dots span:first-child {
  background: rgba(255, 141, 85, 0.88);
}

.product-frame__dots span:nth-child(2) {
  background: rgba(62, 215, 192, 0.88);
}

.product-frame__dots span:nth-child(3) {
  background: rgba(104, 161, 255, 0.88);
}

.product-frame__label {
  color: var(--muted-strong);
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.product-frame__screen {
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(173, 196, 214, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(6, 13, 21, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 70px rgba(0, 0, 0, 0.34);
}

.product-frame__screen img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(173, 196, 214, 0.14);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.32);
}

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

.product-frame__fact {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(173, 196, 214, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.product-frame__value {
  font-size: 1.45rem;
  font-weight: 700;
}

.product-frame__copy {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.section {
  padding: 30px 0 10px;
}

.section--roomy {
  padding-top: 52px;
}

.section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.section__kicker {
  margin: 0 0 8px;
  color: var(--teal-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section__title {
  margin: 0;
  font-size: clamp(1.8rem, 2.7vw, 2.6rem);
  letter-spacing: -0.03em;
}

.section__copy {
  margin: 8px 0 0;
  color: var(--muted-strong);
  max-width: 68ch;
  line-height: 1.72;
}

.stats-grid,
.tool-grid,
.flow-grid,
.info-grid,
.comparison-grid,
.link-grid,
.plan-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

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

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

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

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

.stat-card,
.tool-card,
.flow-step,
.surface,
.panel,
.plan-card,
.faq-card,
.link-card {
  padding: 24px;
}

.stat-card__label,
.tool-card__tag,
.flow-step__number,
.surface__eyebrow,
.plan-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(173, 196, 214, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-card__value {
  margin-top: 16px;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 700;
}

.stat-card__copy,
.tool-card__copy,
.flow-step__copy,
.surface__copy,
.link-card__copy,
.plan-card__copy,
.faq-card__copy {
  margin: 12px 0 0;
  color: var(--muted-strong);
  line-height: 1.68;
}

.tool-card,
.link-card,
.plan-card {
  display: grid;
  gap: 12px;
}

.tool-card__title,
.link-card__title,
.plan-card__title {
  margin: 0;
  font-size: 1.3rem;
}

.tool-card__list,
.check-list,
.stack-list,
.legal-content ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted-strong);
  line-height: 1.72;
}

.tool-card__list li,
.check-list li,
.stack-list li,
.legal-content li {
  margin: 6px 0;
}

.tool-card__foot,
.link-card__foot {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-strong);
  font-weight: 700;
}

.flow-step__number {
  color: var(--orange-soft);
}

.surface__title,
.faq-card__title {
  margin: 14px 0 0;
  font-size: 1.2rem;
}

.surface__body {
  margin-top: 18px;
}

.surface__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(173, 196, 214, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 700;
}

.mini-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(3, 11, 19, 0.48);
  border: 1px solid rgba(173, 196, 214, 0.1);
}

.mini-table th,
.mini-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(173, 196, 214, 0.08);
  text-align: left;
  font-size: 13px;
}

.mini-table th {
  color: var(--muted);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.02);
}

.mini-table td {
  color: var(--text);
}

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

.code-block {
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(173, 196, 214, 0.1);
  background: rgba(3, 11, 19, 0.56);
  color: #d8e9f8;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: 13px;
  line-height: 1.72;
  overflow-x: auto;
}

.comparison {
  display: grid;
  gap: 12px;
}

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

.comparison__value {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
}

.quote {
  position: relative;
  padding-left: 18px;
  border-left: 3px solid rgba(255, 141, 85, 0.52);
  color: var(--muted-strong);
  line-height: 1.72;
}

.cta-band {
  margin: 44px 0 12px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(173, 196, 214, 0.14);
  background:
    radial-gradient(circle at right top, rgba(255, 141, 85, 0.18), transparent 38%),
    radial-gradient(circle at left bottom, rgba(62, 215, 192, 0.16), transparent 34%),
    rgba(12, 22, 34, 0.88);
  box-shadow: var(--shadow);
}

.cta-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.cta-band__title {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.cta-band__copy {
  margin: 10px 0 0;
  color: var(--muted-strong);
  max-width: 56ch;
  line-height: 1.7;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.breadcrumb span {
  color: var(--text);
}

.legal-shell {
  padding: 42px 0 50px;
}

.legal-content h1,
.legal-content h2,
.legal-content h3 {
  letter-spacing: -0.03em;
}

.legal-content h1 {
  margin: 14px 0 8px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-content h2 {
  margin: 26px 0 10px;
  font-size: 1.35rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted-strong);
  line-height: 1.76;
}

.legal-summary {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.meta-line {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

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

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

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

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

.form-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.input,
.textarea,
.select {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  border-radius: 16px;
  border: 1px solid rgba(173, 196, 214, 0.14);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.input:focus,
.textarea:focus,
.select:focus {
  border-color: rgba(62, 215, 192, 0.38);
  box-shadow: 0 0 0 4px rgba(62, 215, 192, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.input::placeholder,
.textarea::placeholder {
  color: #7991a6;
}

.helper {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.alert {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-size: 14px;
  line-height: 1.65;
}

.alert--success {
  border-color: rgba(62, 215, 192, 0.28);
  background: rgba(62, 215, 192, 0.08);
  color: #d8fff9;
}

.alert--error {
  border-color: rgba(255, 141, 85, 0.3);
  background: rgba(255, 141, 85, 0.1);
  color: #ffe6d7;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.site-footer {
  padding: 48px 0 70px;
  border-top: 1px solid rgba(173, 196, 214, 0.08);
  margin-top: 48px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 0.9fr));
  gap: 24px;
}

.site-footer__brand {
  display: grid;
  gap: 14px;
}

.site-footer__title {
  font-size: 15px;
  font-weight: 700;
}

.site-footer__copy,
.site-footer__list a {
  color: var(--muted-strong);
  line-height: 1.7;
}

.site-footer__list {
  display: grid;
  gap: 10px;
}

.site-footer__meta {
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
}

.site-footer__copyright {
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
}

.faq-card details {
  width: 100%;
}

.faq-card summary {
  list-style: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
}

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

.faq-card details p {
  margin: 12px 0 0;
}

.no-scroll {
  overflow: hidden;
}

@media (max-width: 1080px) {
  .hero__grid,
  .site-footer__grid,
  .stats-grid,
  .tool-grid,
  .flow-grid,
  .comparison-grid,
  .info-grid,
  .link-grid,
  .plan-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .cta-band__grid {
    grid-template-columns: 1fr;
  }

  .cta-band__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .site-header__inner {
    min-height: 72px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 72px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(8, 16, 25, 0.98);
    border: 1px solid rgba(173, 196, 214, 0.12);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav__links,
  .site-nav__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav__link,
  .button {
    width: 100%;
    justify-content: center;
  }

  .hero--home {
    padding-top: 42px;
  }

  .hero__content,
  .hero__visual,
  .surface,
  .panel,
  .stat-card,
  .tool-card,
  .flow-step,
  .plan-card,
  .faq-card,
  .link-card {
    padding: 22px;
  }
}

@media (max-width: 720px) {
  .hero__grid,
  .stats-grid,
  .tool-grid,
  .flow-grid,
  .comparison-grid,
  .info-grid,
  .link-grid,
  .plan-grid,
  .faq-grid,
  .site-footer__grid,
  .form-grid,
  .signal-grid {
    grid-template-columns: 1fr;
  }

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

  .hero__title {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .section {
    padding-top: 24px;
  }

  .site-header__inner {
    gap: 12px;
  }

  .brand__caption {
    letter-spacing: 0.16em;
  }

  .brand__name {
    font-size: 16px;
  }

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

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

  .product-frame__facts {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
