:root {
  --ink-950: #050706;
  --ink-925: #070a09;
  --ink-900: #0a0e0d;
  --ink-875: #0d1211;
  --ink-850: #101615;
  --ink-800: #151d1b;
  --ink-750: #1b2724;
  --paper: #f4f7f5;
  --muted: #a5b1ad;
  --muted-strong: #c2cbc8;
  --mint: #75f4c4;
  --mint-strong: #35e3b0;
  --mint-deep: #149d7c;
  --gold: #efb85e;
  --rose: #ee7184;
  --border: rgba(161, 197, 185, 0.14);
  --border-strong: rgba(117, 244, 196, 0.28);
  --glass: rgba(11, 16, 15, 0.78);
  --container: 1240px;
  --display: "Space Grotesk", "Segoe UI", sans-serif;
  --body: "Inter", "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", Consolas, monospace;
  --shadow-lg: 0 34px 90px rgba(0, 0, 0, 0.48);
  --shadow-mint: 0 18px 58px rgba(24, 195, 148, 0.18);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 50% -12%, rgba(29, 132, 103, 0.16), transparent 36rem),
    var(--ink-950);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(135, 202, 179, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(135, 202, 179, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  pointer-events: none;
}

[hidden] {
  display: none !important;
}

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

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

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

button {
  color: inherit;
}

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

p,
h1,
h2,
h3,
ul,
ol,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  font-family: var(--display);
  letter-spacing: -0.04em;
}

p:last-child,
ul:last-child,
ol:last-child,
figure:last-child {
  margin-bottom: 0;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink-950);
  background: var(--mint);
  border-radius: 8px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

section[id] {
  scroll-margin-top: 92px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

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

.button__symbol {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  background: rgba(4, 11, 9, 0.12);
  font-size: 18px;
}

.button > span:not(.button__symbol) {
  display: grid;
  gap: 4px;
  text-align: left;
}

.button strong,
.button small {
  display: block;
}

.button small {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.68;
}

.button--primary {
  color: #03100c;
  background: linear-gradient(135deg, var(--mint) 0%, var(--mint-strong) 100%);
  border-color: rgba(179, 255, 226, 0.5);
  box-shadow: 0 16px 42px rgba(45, 227, 172, 0.19);
}

.button--primary:hover {
  box-shadow: 0 20px 54px rgba(45, 227, 172, 0.28);
}

.button--quiet {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.035);
  border-color: var(--border);
}

.button--quiet:hover,
.button--secondary:hover {
  background: rgba(117, 244, 196, 0.08);
  border-color: var(--border-strong);
}

.button--secondary {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.035);
  border-color: var(--border);
}

.button--gold {
  color: #1a1104;
  background: var(--gold);
  border-color: #ffd98e;
}

.button--wide {
  width: 100%;
  justify-content: flex-start;
  padding: 14px 16px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--muted-strong);
  border-bottom: 1px solid rgba(117, 244, 196, 0.28);
  font-size: 14px;
  font-weight: 600;
}

.text-link:hover {
  color: var(--mint);
}

.status-dot {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--mint-strong);
  box-shadow: 0 0 16px rgba(53, 227, 176, 0.9);
}

.status-dot::after {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(53, 227, 176, 0.35);
  border-radius: inherit;
  content: "";
}

/* Header */

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(5, 7, 6, 0.36);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(5, 7, 6, 0.88);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.site-header__inner {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand__mark {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(117, 244, 196, 0.24);
  border-radius: 12px;
  background: rgba(4, 10, 9, 0.74);
  box-shadow: inset 0 0 24px rgba(117, 244, 196, 0.05);
}

.brand__mark img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
}

.brand__copy {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.brand__copy strong {
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand__copy small {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

.site-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 12px;
  color: var(--muted);
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 150ms ease, background 150ms ease;
}

.site-nav a:hover {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.04);
}

.site-nav .site-nav__download {
  margin-left: 6px;
  color: #06120e;
  background: var(--mint-strong);
}

.site-nav .site-nav__download:hover {
  color: #06120e;
  background: var(--mint);
}

.site-nav .site-nav__support {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: var(--paper);
  transition: transform 150ms ease, opacity 150ms ease;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  isolation: isolate;
  padding: 104px 0 0;
}

.hero__aura {
  position: absolute;
  z-index: -1;
  width: min(56vw, 760px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.28;
  pointer-events: none;
}

.hero__aura--one {
  top: -220px;
  right: 2%;
  background: radial-gradient(circle, rgba(53, 227, 176, 0.28), transparent 67%);
}

.hero__aura--two {
  top: 260px;
  left: 1%;
  background: radial-gradient(circle, rgba(239, 184, 94, 0.14), transparent 69%);
}

.hero__copy {
  max-width: 950px;
  margin-inline: auto;
  text-align: center;
}

.release-chip {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding: 7px 13px;
  margin-bottom: 30px;
  color: var(--muted-strong);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(9, 18, 15, 0.68);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  transition: border-color 150ms ease, color 150ms ease, background 150ms ease;
}

.release-chip:hover {
  color: var(--paper);
  border-color: rgba(117, 244, 196, 0.5);
  background: rgba(15, 34, 28, 0.72);
}

.release-chip strong {
  color: var(--mint);
}

.hero h1 {
  max-width: 1100px;
  margin-inline: auto;
  font-size: clamp(58px, 8.25vw, 108px);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.91;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--mint);
  text-shadow: 0 0 46px rgba(53, 227, 176, 0.16);
}

.hero__promise {
  margin: 32px 0 10px;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.hero__lede {
  max-width: 790px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  padding: 0;
  margin: 24px 0 0;
  color: var(--muted-strong);
  font-size: 13px;
  list-style: none;
}

.hero__proof li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero__proof span {
  color: var(--mint);
}

.hero-product {
  width: 100%;
  min-width: 0;
  margin: 72px 0 0;
}

.product-frame {
  min-width: 0;
  padding: 5px;
  border: 1px solid rgba(117, 244, 196, 0.21);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(117, 244, 196, 0.12), rgba(239, 184, 94, 0.08));
  box-shadow: var(--shadow-lg), var(--shadow-mint);
}

.product-frame__bar {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 16px;
  color: #788783;
  background: #090d0c;
  border-radius: 15px 15px 0 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.product-frame__bar div,
.product-frame__bar strong {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.product-frame__bar div i,
.product-frame__bar strong i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint-strong);
  box-shadow: 0 0 12px rgba(53, 227, 176, 0.85);
}

.product-frame__bar div i {
  background: var(--gold);
  box-shadow: 0 0 12px rgba(239, 184, 94, 0.7);
}

.product-frame img {
  width: 100%;
  height: auto;
  border-radius: 0 0 15px 15px;
}

.hero-product figcaption {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 6px 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-product figcaption > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-product figcaption > span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
}

.hero-product figcaption p {
  margin: 0;
}

.hero-product figcaption strong {
  color: var(--paper);
}

.hero-product figcaption a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--paper);
  font-weight: 600;
}

.hero-product figcaption a:hover {
  color: var(--mint);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(9, 14, 13, 0.74);
}

.hero-metrics > div {
  display: grid;
  min-width: 0;
  gap: 2px;
  padding: 22px 24px;
}

.hero-metrics > div + div {
  border-left: 1px solid var(--border);
}

.hero-metrics small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-metrics strong {
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.03em;
}

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

.trust-ribbon {
  margin-top: 46px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.018);
}

.trust-ribbon__inner {
  display: flex;
  min-height: 64px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 28px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-ribbon__inner i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(117, 244, 196, 0.48);
}

/* Shared sections */

.section {
  padding: 124px 0;
}

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

.section-heading h2,
.trust__intro h2,
.price-story__copy h2,
.download-panel h2,
.faq__intro h2,
.support-card h2,
.final-cta h2 {
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 600;
  line-height: 1.03;
  text-wrap: balance;
}

.section-heading > p,
.section-heading--split > p,
.trust__intro > p,
.price-story__copy > p,
.faq__intro > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.section-heading--center {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--center > p:last-child {
  max-width: 640px;
  margin: 20px auto 0;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 70px;
}

.section-heading--split > p {
  margin: 0 0 4px;
}

/* First check */

.first-check {
  background: linear-gradient(180deg, rgba(14, 22, 20, 0.72), rgba(5, 7, 6, 0));
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  counter-reset: none;
  list-style: none;
}

.step-grid > li {
  position: relative;
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(17, 25, 23, 0.88), rgba(8, 12, 11, 0.92));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.step-grid__number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(117, 244, 196, 0.52);
  font-family: var(--mono);
  font-size: 12px;
}

.step-grid__visual {
  display: flex;
  height: 120px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 1px solid rgba(117, 244, 196, 0.1);
  border-radius: 14px;
  background:
    radial-gradient(circle at center, rgba(53, 227, 176, 0.13), transparent 62%),
    rgba(5, 9, 8, 0.64);
}

.step-grid__visual--download i {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--ink-950);
  border-radius: 15px;
  background: var(--mint);
  box-shadow: 0 15px 30px rgba(53, 227, 176, 0.2);
  font-style: normal;
  font-size: 28px;
}

.step-grid__visual--keys {
  gap: 11px;
}

.step-grid__visual--keys kbd,
.feature-card__key kbd {
  display: inline-grid;
  min-width: 54px;
  min-height: 48px;
  place-items: center;
  color: var(--paper);
  border: 1px solid rgba(117, 244, 196, 0.25);
  border-bottom-width: 3px;
  border-radius: 9px;
  background: #111917;
  font-family: var(--mono);
  font-size: 13px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}

.step-grid__visual--keys b {
  color: var(--muted);
  font-family: var(--mono);
}

.step-grid__visual--signal {
  gap: 6px;
}

.step-grid__visual--signal i {
  width: 9px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--mint), var(--mint-deep));
  box-shadow: 0 0 18px rgba(53, 227, 176, 0.18);
}

.step-grid__visual--signal i:nth-child(1) { height: 28px; }
.step-grid__visual--signal i:nth-child(2) { height: 56px; }
.step-grid__visual--signal i:nth-child(3) { height: 86px; }
.step-grid__visual--signal i:nth-child(4) { height: 64px; }
.step-grid__visual--signal i:nth-child(5) { height: 40px; }

.step-grid h3 {
  font-size: 24px;
  line-height: 1.16;
}

.step-grid p {
  margin: 14px 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.step-grid small {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Features */

.features {
  padding-top: 106px;
}

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

.feature-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 380px;
  flex-direction: column;
  grid-column: span 4;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(18, 27, 24, 0.88), rgba(7, 11, 10, 0.94));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.024);
}

.feature-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(117, 244, 196, 0.44), transparent);
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.feature-card:hover {
  border-color: rgba(117, 244, 196, 0.26);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card--wide {
  grid-column: span 8;
}

.feature-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 54px;
}

.feature-card__top > span {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 12px;
}

.feature-card__top > small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.feature-card__label {
  margin-bottom: 10px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.feature-card h3 {
  max-width: 620px;
  font-size: clamp(27px, 3vw, 39px);
  line-height: 1.08;
}

.feature-card > p,
.feature-card > div > p:not(.feature-card__label) {
  max-width: 660px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.chip-list,
.tool-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: auto 0 0;
  list-style: none;
}

.chip-list li {
  padding: 7px 10px;
  color: var(--muted-strong);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.feature-card--price {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 34px;
}

.feature-card--price .feature-card__top,
.feature-card--price .chip-list {
  grid-column: 1 / -1;
}

.feature-card__key {
  display: flex;
  align-self: center;
  align-items: center;
  gap: 9px;
  color: var(--muted);
}

.feature-card--market {
  background:
    radial-gradient(circle at 75% 90%, rgba(53, 227, 176, 0.11), transparent 42%),
    linear-gradient(145deg, rgba(18, 27, 24, 0.88), rgba(7, 11, 10, 0.94));
}

.feature-card--craft {
  background:
    radial-gradient(circle at 78% 86%, rgba(214, 168, 74, 0.12), transparent 44%),
    linear-gradient(145deg, rgba(18, 27, 24, 0.88), rgba(7, 11, 10, 0.94));
}

.feature-card--navigator {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 90%, rgba(214, 168, 74, 0.16), transparent 42%),
    linear-gradient(145deg, rgba(28, 22, 17, 0.9), rgba(7, 11, 10, 0.94));
}

.navigator-art {
  position: absolute;
  right: 24px;
  bottom: 20px;
  width: 78px;
  height: 78px;
  object-fit: contain;
  opacity: 0.72;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.7));
}

.mini-chart {
  display: flex;
  height: 76px;
  align-items: flex-end;
  gap: 6px;
  margin-top: auto;
  padding-top: 20px;
}

.mini-chart i {
  width: 10%;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--mint), rgba(20, 157, 124, 0.12));
  opacity: 0.78;
}

.mini-chart i:nth-child(1) { height: 20%; }
.mini-chart i:nth-child(2) { height: 34%; }
.mini-chart i:nth-child(3) { height: 27%; }
.mini-chart i:nth-child(4) { height: 48%; }
.mini-chart i:nth-child(5) { height: 42%; }
.mini-chart i:nth-child(6) { height: 64%; }
.mini-chart i:nth-child(7) { height: 58%; }
.mini-chart i:nth-child(8) { height: 94%; }

.intel-lines {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.intel-lines i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(117, 244, 196, 0.48), rgba(117, 244, 196, 0.035));
}

.intel-lines i:nth-child(1) { width: 82%; }
.intel-lines i:nth-child(2) { width: 64%; }
.intel-lines i:nth-child(3) { width: 91%; }
.intel-lines i:nth-child(4) { width: 47%; }

.node-map {
  position: relative;
  height: 96px;
  margin-top: auto;
}

.node-map i {
  position: absolute;
  z-index: 2;
  width: 14px;
  height: 14px;
  border: 2px solid var(--mint);
  border-radius: 50%;
  background: var(--ink-900);
  box-shadow: 0 0 16px rgba(53, 227, 176, 0.35);
}

.node-map i:nth-child(1) { top: 48px; left: 3%; }
.node-map i:nth-child(2) { top: 18px; left: 20%; }
.node-map i:nth-child(3) { top: 56px; left: 37%; }
.node-map i:nth-child(4) { top: 12px; left: 55%; }
.node-map i:nth-child(5) { top: 52px; left: 74%; }
.node-map i:nth-child(6) { top: 26px; right: 2%; }

.node-map b {
  position: absolute;
  top: 46px;
  left: 5%;
  width: 88%;
  height: 1px;
  background: linear-gradient(90deg, var(--mint-deep), rgba(117, 244, 196, 0.1), var(--mint-deep));
  transform-origin: left center;
}

.node-map b:nth-of-type(1) { transform: rotate(-4deg); }
.node-map b:nth-of-type(2) { transform: rotate(4deg); }
.node-map b:nth-of-type(3) { transform: rotate(-1deg); }

.boundary-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  padding: 12px 14px;
  margin-top: auto;
  color: var(--mint);
  border: 1px solid rgba(117, 244, 196, 0.18);
  border-radius: 12px;
  background: rgba(117, 244, 196, 0.045);
}

.boundary-badge > span {
  font-size: 22px;
}

.boundary-badge div {
  display: grid;
}

.boundary-badge strong {
  font-size: 12px;
}

.boundary-badge small {
  color: var(--muted);
  font-size: 10px;
}

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

.tool-list li {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--muted);
  font-size: 10px;
}

.tool-list span {
  display: grid;
  min-height: 42px;
  place-items: center;
  color: var(--mint);
  border: 1px solid var(--border);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.025);
  font-family: var(--mono);
}

/* Price story */

.price-story {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 15% 50%, rgba(53, 227, 176, 0.08), transparent 32rem),
    rgba(9, 14, 13, 0.66);
}

.price-story__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(54px, 8vw, 112px);
}

.price-story__visual {
  display: flex;
  justify-content: center;
}

.overlay-frame {
  position: relative;
  width: min(100%, 390px);
  padding: 5px;
  border: 1px solid rgba(117, 244, 196, 0.3);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(117, 244, 196, 0.14), rgba(239, 184, 94, 0.08));
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.52), 0 0 70px rgba(53, 227, 176, 0.12);
}

.overlay-frame__glow {
  position: absolute;
  z-index: -1;
  inset: 18% -14%;
  border-radius: 50%;
  background: rgba(53, 227, 176, 0.08);
  filter: blur(45px);
}

.overlay-frame img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.price-story__copy h2 {
  max-width: 720px;
}

.price-story__copy > p {
  max-width: 680px;
  margin: 24px 0 0;
}

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

.check-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}

.check-list li:last-child {
  border-bottom: 1px solid var(--border);
}

.check-list > li > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--mint);
  border: 1px solid rgba(117, 244, 196, 0.22);
  border-radius: 10px;
  font-family: var(--mono);
  font-size: 10px;
}

.check-list strong {
  font-family: var(--display);
  font-size: 18px;
}

.check-list p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.accuracy-note {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  padding: 16px;
  margin-top: 26px !important;
  color: var(--muted-strong) !important;
  border: 1px solid rgba(239, 184, 94, 0.2);
  border-radius: 12px;
  background: rgba(239, 184, 94, 0.045);
  font-size: 12px !important;
}

.accuracy-note span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(239, 184, 94, 0.26);
  border-radius: 50%;
  font-family: var(--mono);
}

/* Gallery */

.tour {
  padding-bottom: 110px;
}

.gallery {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(8, 12, 11, 0.88);
  box-shadow: var(--shadow-lg);
}

.gallery-tabs {
  display: none;
}

.gallery.is-enhanced .gallery-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
  border-bottom: 1px solid var(--border);
}

.gallery-tabs button {
  display: flex;
  min-width: 0;
  min-height: 52px;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.gallery-tabs button:hover {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.03);
}

.gallery-tabs button[aria-selected="true"] {
  color: var(--paper);
  border-color: rgba(117, 244, 196, 0.22);
  background: rgba(117, 244, 196, 0.07);
}

.gallery-tabs button span {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 10px;
}

.gallery-stage {
  min-width: 0;
  padding: 12px;
}

.gallery-panel {
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(161, 197, 185, 0.12);
  border-radius: 14px;
  background: var(--ink-900);
}

.gallery-panel + .gallery-panel {
  margin-top: 24px;
}

.gallery.is-enhanced .gallery-panel + .gallery-panel {
  margin-top: 0;
}

.gallery-panel img {
  width: 100%;
  height: auto;
  border-radius: 13px 13px 0 0;
}

.gallery-panel figcaption {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 24px;
  padding: 22px 24px;
  border-top: 1px solid var(--border);
}

.gallery-panel figcaption > span {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.09em;
}

.gallery-panel figcaption strong {
  font-family: var(--display);
  font-size: 18px;
}

.gallery-panel figcaption p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

/* Trust */

.trust {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(12, 21, 18, 0.82), rgba(7, 10, 9, 0.9));
}

.trust__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 8vw, 112px);
}

.trust__intro {
  align-self: start;
  position: sticky;
  top: 114px;
}

.trust__intro > p {
  margin: 24px 0 0;
}

.trust__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 28px;
}

.boundary-grid {
  display: grid;
  gap: 0;
}

.boundary-grid article {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.boundary-grid article:last-child {
  border-bottom: 1px solid var(--border);
}

.boundary-grid article > span {
  display: grid;
  width: 70px;
  height: 34px;
  place-items: center;
  color: var(--mint);
  border: 1px solid rgba(117, 244, 196, 0.2);
  border-radius: 9px;
  background: rgba(117, 244, 196, 0.04);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.boundary-grid h3 {
  font-size: 22px;
  line-height: 1.15;
}

.boundary-grid p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* Install and download */

.install-guide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 18px;
}

.install-guide__steps,
.requirements-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(11, 16, 15, 0.82);
}

.install-guide__steps {
  padding: 8px 30px;
}

.install-guide__steps article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 25px 0;
  border-bottom: 1px solid var(--border);
}

.install-guide__steps article:last-child {
  border-bottom: 0;
}

.install-guide__steps article > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink-950);
  border-radius: 10px;
  background: var(--mint);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
}

.install-guide h3 {
  font-size: 20px;
  line-height: 1.2;
}

.install-guide__steps p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.requirements-card {
  padding: 30px;
  background:
    radial-gradient(circle at 100% 0, rgba(239, 184, 94, 0.09), transparent 18rem),
    rgba(11, 16, 15, 0.82);
}

.requirements-card__label {
  margin-bottom: 12px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.requirements-card > h3 {
  font-size: 28px;
}

.requirements-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0;
  list-style: none;
}

.requirements-card li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  color: var(--muted-strong);
  font-size: 13px;
}

.requirements-card li span {
  color: var(--mint);
}

.requirements-card > p:last-child {
  padding: 16px;
  color: var(--muted);
  border: 1px solid rgba(239, 184, 94, 0.17);
  border-radius: 11px;
  background: rgba(239, 184, 94, 0.04);
  font-size: 12px;
  line-height: 1.65;
}

.requirements-card > p:last-child strong {
  color: var(--gold);
}

.download {
  padding-top: 16px;
}

.download-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
  min-width: 0;
  padding: clamp(38px, 6vw, 76px);
  border: 1px solid rgba(117, 244, 196, 0.26);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(14, 32, 26, 0.94), rgba(7, 11, 10, 0.97));
  box-shadow: var(--shadow-lg), inset 0 1px rgba(255, 255, 255, 0.03);
}

.download-panel__glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  height: 100%;
  background: radial-gradient(circle at 70% 38%, rgba(53, 227, 176, 0.13), transparent 56%);
  border-radius: inherit;
  pointer-events: none;
}

.download-panel__copy,
.download-panel__actions {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.download-panel__version {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 1px 9px;
  align-items: center;
  padding: 9px 12px;
  margin-bottom: 30px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.16);
}

.download-panel__version .status-dot {
  grid-row: 1 / 3;
}

.download-panel__version strong {
  font-family: var(--mono);
  font-size: 11px;
}

.download-panel__version small {
  color: var(--muted);
  font-size: 9px;
}

.download-panel h2 {
  max-width: 620px;
}

.download-panel__copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 22px 0 0;
  color: var(--muted);
}

.download-panel__copy > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.download-panel__copy > ul li {
  padding: 6px 9px;
  color: var(--muted-strong);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 9px;
}

.download-panel__actions {
  display: grid;
  gap: 10px;
}

.download-panel__links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  justify-content: center;
  margin-top: 8px;
}

.download-panel__links a,
.download-panel__links button {
  min-height: 44px;
  padding: 0;
  color: var(--muted);
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  font-size: 11px;
  cursor: pointer;
}

.download-panel__links a:hover,
.download-panel__links button:hover {
  color: var(--mint);
  border-bottom-color: rgba(117, 244, 196, 0.28);
}

.copy-status {
  min-height: 20px;
  margin: 0;
  color: var(--mint);
  font-size: 11px;
  text-align: center;
}

/* FAQ and support */

.faq {
  border-top: 1px solid var(--border);
  background: rgba(8, 12, 11, 0.52);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(48px, 8vw, 112px);
}

.faq__intro {
  align-self: start;
  position: sticky;
  top: 114px;
}

.faq__intro > p {
  margin-top: 22px;
}

.faq__items {
  border-top: 1px solid var(--border);
}

.faq details {
  border-bottom: 1px solid var(--border);
}

.faq summary {
  display: grid;
  min-height: 76px;
  grid-template-columns: 1fr 32px;
  align-items: center;
  gap: 20px;
  padding: 15px 0;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  cursor: pointer;
  list-style: none;
}

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

.faq summary span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--mint);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-family: var(--mono);
  transition: transform 180ms ease, background 180ms ease;
}

.faq details[open] summary span {
  background: rgba(117, 244, 196, 0.08);
  transform: rotate(45deg);
}

.faq details > p {
  max-width: 760px;
  padding: 0 52px 24px 0;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.support {
  padding-top: 0;
}

.support-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 42px 48px;
  border: 1px solid rgba(239, 184, 94, 0.24);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(239, 184, 94, 0.08), rgba(12, 16, 14, 0.86));
}

.support-card h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.support-card p:last-child {
  max-width: 680px;
  margin: 15px 0 0;
  color: var(--muted);
}

/* Final CTA and footer */

.final-cta {
  position: relative;
  padding: 116px 0 126px;
  text-align: center;
}

.final-cta__inner {
  max-width: 900px;
}

.final-cta img {
  width: 108px;
  height: 108px;
  margin: 0 auto 26px;
  border-radius: 24px;
  box-shadow: 0 0 70px rgba(53, 227, 176, 0.13);
}

.final-cta h2 {
  font-size: clamp(44px, 6.5vw, 78px);
}

.final-cta > .container > p:not(.eyebrow) {
  max-width: 730px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.final-cta__inner > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #040605;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: clamp(50px, 9vw, 130px);
  padding-top: 54px;
  padding-bottom: 46px;
}

.site-footer__brand > p {
  max-width: 390px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer__links {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 120px;
}

.site-footer__links strong {
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: 14px;
}

.site-footer__links a {
  color: var(--muted);
  font-size: 12px;
}

.site-footer__links a:hover {
  color: var(--mint);
}

.site-footer__bottom {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--border);
  color: #6f7b77;
  font-size: 10px;
}

.site-footer__bottom p {
  margin: 0;
}

/* Progressive reveals */

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

/* Responsive */

@media (max-width: 1100px) {
  .site-nav a {
    padding-inline: 9px;
    font-size: 12px;
  }

  .brand__copy small {
    display: none;
  }

  .feature-card,
  .feature-card--wide {
    grid-column: span 6;
  }

  .feature-card--price,
  .feature-card--tools {
    display: flex;
  }

  .feature-card__key {
    display: none;
  }

  .tool-list {
    grid-template-columns: repeat(5, minmax(58px, 1fr));
    width: 100%;
  }
}

@media (max-width: 920px) {
  .site-header__inner {
    min-height: 68px;
    flex-wrap: wrap;
    padding-block: 10px;
  }

  .site-nav {
    width: 100%;
    flex: 1 0 100%;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .site-nav a {
    flex: 0 0 auto;
  }

  .js .site-header__inner {
    flex-wrap: nowrap;
    padding-block: 0;
  }

  .js .nav-toggle {
    display: block;
  }

  .js .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    padding: 10px;
    border: 1px solid var(--border);
    border-top: 0;
    border-radius: 0 0 14px 14px;
    background: rgba(6, 9, 8, 0.97);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.42);
  }

  .js .site-nav.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav a {
    min-width: 0;
    min-height: 48px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .site-nav .site-nav__download {
    margin-left: 0;
  }

  .hero {
    padding-top: 82px;
  }

  .hero-product figcaption {
    grid-template-columns: 1fr auto;
  }

  .hero-product figcaption > span {
    grid-column: 1 / -1;
  }

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

  .hero-metrics > div:nth-child(3) {
    border-left: 0;
  }

  .hero-metrics > div:nth-child(n + 3) {
    border-top: 1px solid var(--border);
  }

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

  .step-grid > li {
    display: grid;
    grid-template-columns: 150px 1fr;
    column-gap: 28px;
  }

  .step-grid__visual {
    grid-row: 1 / 5;
    height: 100%;
    min-height: 174px;
    margin-bottom: 0;
  }

  .step-grid h3 {
    padding-right: 54px;
  }

  .price-story__grid,
  .trust__grid,
  .install-guide,
  .download-panel,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .price-story__grid {
    gap: 70px;
  }

  .price-story__visual {
    order: 2;
  }

  .trust__intro,
  .faq__intro {
    position: static;
  }

  .install-guide {
    gap: 14px;
  }

  .download-panel {
    gap: 42px;
  }
}

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

  html {
    scroll-padding-top: 78px;
  }

  section[id] {
    scroll-margin-top: 78px;
  }

  .section {
    padding: 84px 0;
  }

  .hero {
    padding-top: 64px;
  }

  .hero h1 {
    font-size: clamp(48px, 15.4vw, 76px);
    line-height: 0.94;
  }

  .hero__promise {
    margin-top: 26px;
    font-size: 20px;
  }

  .hero__lede {
    font-size: 15px;
  }

  .hero-product {
    margin-top: 50px;
  }

  .product-frame {
    padding: 3px;
    border-radius: 13px;
  }

  .product-frame__bar {
    min-height: 38px;
    padding: 0 10px;
    border-radius: 10px 10px 0 0;
    font-size: 8px;
  }

  .product-frame__bar > strong,
  .product-frame__bar > span {
    display: none;
  }

  .product-frame img {
    border-radius: 0 0 10px 10px;
  }

  .hero-product figcaption {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 14px;
  }

  .hero-product figcaption > span {
    grid-column: auto;
  }

  .hero-product figcaption a {
    display: none;
  }

  .trust-ribbon__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 12px 0;
    text-align: center;
  }

  .trust-ribbon__inner span {
    padding: 8px;
  }

  .trust-ribbon__inner i {
    display: none;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading--split > p {
    max-width: 600px;
  }

  .step-grid > li {
    display: block;
  }

  .step-grid__visual {
    height: 116px;
    min-height: 0;
    margin-bottom: 24px;
  }

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

  .feature-card,
  .feature-card--wide {
    min-height: 360px;
    grid-column: auto;
  }

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

  .gallery.is-enhanced .gallery-tabs {
    grid-template-columns: 1fr;
  }

  .gallery-panel figcaption {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px;
  }

  .boundary-grid article {
    grid-template-columns: 72px 1fr;
    gap: 16px;
  }

  .install-guide__steps {
    padding-inline: 20px;
  }

  .requirements-card {
    padding: 24px;
  }

  .download-panel {
    padding: 34px 24px;
    border-radius: 18px;
  }

  .support-card {
    grid-template-columns: 1fr;
    padding: 34px 28px;
  }

  .site-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 30px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 500px) {
  .overlay-frame__glow {
    inset-inline: 0;
  }

  .brand__copy strong {
    font-size: 15px;
  }

  .js .site-nav.is-open {
    grid-template-columns: 1fr;
  }

  .release-chip {
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 24px;
  }

  .hero h1 {
    font-size: clamp(43px, 14vw, 62px);
  }

  .hero__actions,
  .hero__actions .button,
  .final-cta__inner > div,
  .final-cta__inner .button {
    width: 100%;
  }

  .hero__proof {
    display: grid;
    justify-content: center;
    text-align: left;
  }

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

  .hero-metrics > div + div,
  .hero-metrics > div:nth-child(3) {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .section-heading h2,
  .trust__intro h2,
  .price-story__copy h2,
  .download-panel h2,
  .faq__intro h2,
  .support-card h2,
  .final-cta h2 {
    font-size: clamp(36px, 11.5vw, 52px);
  }

  .step-grid > li,
  .feature-card {
    padding: 24px;
  }

  .feature-card__top {
    margin-bottom: 40px;
  }

  .feature-card h3 {
    font-size: 29px;
  }

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

  .check-list li {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .boundary-grid article {
    grid-template-columns: 1fr;
  }

  .install-guide__steps article {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .download-panel__links {
    display: grid;
  }

  .faq summary {
    min-height: 70px;
    font-size: 16px;
  }

  .faq details > p {
    padding-right: 0;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .site-footer__bottom {
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
    text-align: center;
  }
}

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

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

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
