:root {
  color-scheme: light;
  --paper: #f5f7f2;
  --white: #ffffff;
  --mist: #e8eef2;
  --line: #cdd8dd;
  --line-strong: #9cadb7;
  --ink: #111820;
  --muted: #5b6873;
  --quiet: #7a8791;
  --night: #08111c;
  --night-2: #111b29;
  --blue: #155ef7;
  --blue-deep: #0a3aa8;
  --green: #0b6b57;
  --green-soft: #d9eee6;
  --signal: #df4f35;
  --copper: #a85a30;
  --gold: #c49330;
  --shadow: 0 22px 70px rgba(15, 27, 39, 0.18);
  --radius: 8px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0 0 var(--radius) var(--radius);
  left: 50%;
  padding: 10px 14px;
  position: fixed;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 200;
}

.skip-link:focus {
  transform: translate(-50%, 0);
}

.shell {
  max-width: 1160px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.topbar.is-scrolled,
.topbar.menu-active {
  background: rgba(245, 247, 242, 0.92);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  min-height: 72px;
  position: relative;
}

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

.brand-mark {
  align-items: center;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: var(--white);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.brand-text {
  color: var(--white);
  display: grid;
  gap: 0;
  line-height: 1.05;
}

.topbar.is-scrolled .brand-text,
.topbar.menu-active .brand-text {
  color: var(--ink);
}

.brand-text strong {
  font-size: 15px;
}

.brand-text span {
  color: currentColor;
  font-size: 11px;
  letter-spacing: 0.14em;
  opacity: 0.62;
  text-transform: uppercase;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 650;
}

.topbar.is-scrolled .nav-links a,
.topbar.menu-active .nav-links a {
  color: var(--muted);
}

.nav-links a:hover,
.topbar.is-scrolled .nav-links a:hover {
  color: var(--blue);
}

.nav-cta {
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  color: var(--ink) !important;
  display: inline-flex;
  min-height: 40px;
  padding: 0 14px;
}

.topbar.is-scrolled .nav-cta,
.topbar.menu-active .nav-cta {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white) !important;
}

.menu-button {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: var(--white);
  display: none;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.topbar.is-scrolled .menu-button,
.topbar.menu-active .menu-button {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  background: currentColor;
  display: block;
  height: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 17px;
}

.menu-lines::before,
.menu-lines::after {
  content: "";
  position: relative;
}

.menu-lines::before {
  top: -6px;
}

.menu-lines::after {
  top: 4px;
}

.menu-button[aria-expanded="true"] .menu-lines {
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-lines::before {
  opacity: 0;
}

.menu-button[aria-expanded="true"] .menu-lines::after {
  top: -2px;
  transform: rotate(-90deg);
}

.hero {
  background:
    linear-gradient(90deg, rgba(8, 17, 28, 0.96), rgba(8, 17, 28, 0.72) 48%, rgba(8, 17, 28, 0.34)),
    linear-gradient(0deg, rgba(8, 17, 28, 0.84), rgba(8, 17, 28, 0.14) 36%, rgba(8, 17, 28, 0.1)),
    url("./screenshots/control-center-home.png") center top / cover no-repeat;
  color: var(--white);
  min-height: 78svh;
  overflow: hidden;
  padding: 112px 0 42px;
  position: relative;
}

.hero::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  position: absolute;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.eyebrow {
  align-items: center;
  display: inline-flex;
  gap: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.15em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--green);
  border-radius: 99px;
  content: "";
  height: 9px;
  width: 9px;
}

.hero h1 {
  font-size: clamp(44px, 6.2vw, 86px);
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
  max-width: 980px;
  overflow-wrap: break-word;
}

.mobile-break {
  display: none;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2.1vw, 24px);
  margin: 24px 0 0;
  max-width: 720px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border-radius: var(--radius);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  background: var(--blue);
  border: 1px solid var(--blue);
  color: var(--white);
}

.button-primary:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.button-dark {
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--white);
}

.button-light {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
}

.hero-proof {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
  max-width: 920px;
  padding-top: 22px;
}

.hero-proof div {
  min-width: 0;
}

.hero-proof strong {
  display: block;
  font-size: 24px;
  letter-spacing: 0;
  line-height: 1.1;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.66);
  display: block;
  font-size: 13px;
  margin-top: 6px;
}

main {
  background: var(--paper);
}

.band {
  padding: 86px 0;
}

.band-white {
  background: var(--white);
}

.band-mist {
  background: var(--mist);
}

.band-night {
  background: var(--night);
  color: var(--white);
}

.subhero {
  background:
    linear-gradient(90deg, rgba(8, 17, 28, 0.98), rgba(8, 17, 28, 0.82) 54%, rgba(8, 17, 28, 0.42)),
    url("./screenshots/control-center-home.png") center top / cover no-repeat;
  color: var(--white);
  padding: 132px 0 74px;
}

.subhero h1 {
  font-size: clamp(42px, 6.8vw, 92px);
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0;
  max-width: 980px;
}

.subhero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(18px, 2vw, 23px);
  margin: 24px 0 0;
  max-width: 760px;
}

.breadcrumb {
  color: rgba(255, 255, 255, 0.68);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.86);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.section-head {
  align-items: end;
  display: grid;
  gap: 22px;
  grid-template-columns: 0.8fr 1fr;
  margin-bottom: 34px;
}

.section-kicker {
  color: var(--blue);
  display: block;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.band-night .section-kicker {
  color: #8fb1ff;
}

h2 {
  font-size: clamp(34px, 4.5vw, 64px);
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

h1,
h2,
h3,
p,
li,
.hero-lead,
.card,
.verdict-panel {
  overflow-wrap: anywhere;
}

.section-head p,
.copy-lead {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
}

.band-night .section-head p,
.band-night .copy-lead {
  color: rgba(255, 255, 255, 0.72);
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 16px;
}

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

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

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

.split {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: 0.9fr 1.1fr;
}

.stack {
  display: grid;
  gap: 16px;
}

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

.metric {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.metric strong {
  color: var(--blue-deep);
  display: block;
  font-size: 28px;
  line-height: 1;
}

.metric span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  margin-top: 8px;
}

.list-check {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
}

.list-check li {
  color: var(--muted);
  list-style: none;
  padding-left: 24px;
  position: relative;
}

.list-check li::before {
  color: var(--green);
  content: "✓";
  font-weight: 900;
  left: 0;
  position: absolute;
}

.number-list {
  counter-reset: steps;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.number-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  counter-increment: steps;
  list-style: none;
  padding: 18px 18px 18px 58px;
  position: relative;
}

.number-list li::before {
  align-items: center;
  background: var(--ink);
  border-radius: var(--radius);
  color: var(--white);
  content: counter(steps, decimal-leading-zero);
  display: flex;
  font-size: 12px;
  font-weight: 900;
  height: 30px;
  justify-content: center;
  left: 16px;
  position: absolute;
  top: 16px;
  width: 30px;
}

.number-list strong {
  display: block;
  margin-bottom: 5px;
}

.number-list span {
  color: var(--muted);
}

.note-panel {
  background: var(--green-soft);
  border: 1px solid rgba(11, 107, 87, 0.24);
  border-radius: var(--radius);
  color: var(--green);
  padding: 20px;
}

.note-panel strong {
  color: var(--green);
  display: block;
  margin-bottom: 8px;
}

.page-cta {
  background: var(--ink);
  border-radius: var(--radius);
  color: var(--white);
  padding: 34px;
}

.page-cta p {
  color: rgba(255, 255, 255, 0.7);
  margin: 10px 0 0;
}

.link-card {
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.link-card:hover {
  border-color: var(--blue);
  box-shadow: 0 16px 45px rgba(17, 24, 32, 0.12);
  transform: translateY(-2px);
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.band-night .card {
  background: var(--night-2);
  border-color: rgba(255, 255, 255, 0.14);
}

.card h3 {
  font-size: 22px;
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0 0 12px;
}

.card p {
  color: var(--muted);
  margin: 0;
}

.band-night .card p {
  color: rgba(255, 255, 255, 0.66);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  background: rgba(21, 94, 247, 0.1);
  border: 1px solid rgba(21, 94, 247, 0.18);
  border-radius: 999px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 9px;
}

.tag.green {
  background: var(--green-soft);
  border-color: rgba(11, 107, 87, 0.22);
  color: var(--green);
}

.tag.copper {
  background: rgba(168, 90, 48, 0.1);
  border-color: rgba(168, 90, 48, 0.22);
  color: var(--copper);
}

.verdict {
  align-items: start;
  display: grid;
  gap: 16px;
  grid-template-columns: 0.72fr 1fr;
}

.verdict-panel {
  background: var(--ink);
  border-radius: var(--radius);
  color: var(--white);
  min-height: 100%;
  padding: 26px;
}

.verdict-panel strong {
  display: block;
  font-size: clamp(36px, 6vw, 78px);
  letter-spacing: 0;
  line-height: 0.95;
}

.verdict-panel span {
  color: rgba(255, 255, 255, 0.68);
  display: block;
  font-size: 15px;
  margin-top: 14px;
}

.delta-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.delta-list li {
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 12px;
  grid-template-columns: 140px 1fr;
  list-style: none;
  padding: 16px;
}

.delta-list b {
  color: var(--signal);
  font-size: 13px;
  text-transform: uppercase;
}

.delta-list span {
  color: var(--muted);
}

.operator-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.operator-meta {
  color: var(--quiet);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.operator-card ul {
  color: var(--muted);
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
}

.operator-card li {
  list-style: none;
  padding-left: 18px;
  position: relative;
}

.operator-card li::before {
  background: var(--blue);
  border-radius: 99px;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 9px;
  width: 7px;
}

.ramp {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 34px 0 0;
}

.ramp-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 154px;
  padding: 17px;
  position: relative;
}

.ramp-step::after {
  background: var(--line-strong);
  content: "";
  height: 1px;
  left: calc(100% - 2px);
  position: absolute;
  top: 38px;
  width: 12px;
}

.ramp-step:last-child::after {
  display: none;
}

.ramp-step strong {
  color: var(--blue-deep);
  display: block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ramp-step h3 {
  font-size: 20px;
  margin: 11px 0 8px;
}

.ramp-step p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.proof-layout {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: 0.9fr 1.1fr;
}

.calculator {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.calculator h3 {
  font-size: 26px;
  margin: 0 0 8px;
}

.calculator p {
  color: var(--muted);
  margin: 0 0 20px;
}

.field {
  margin: 17px 0;
}

.field label {
  align-items: center;
  display: flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: space-between;
}

.field output {
  color: var(--blue-deep);
  font-variant-numeric: tabular-nums;
}

input[type="range"] {
  accent-color: var(--blue);
  width: 100%;
}

.result-box {
  background: var(--ink);
  border-radius: var(--radius);
  color: var(--white);
  margin-top: 22px;
  padding: 20px;
}

.result-box span {
  color: rgba(255, 255, 255, 0.68);
  display: block;
  font-size: 13px;
}

.result-box strong {
  display: block;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1;
  margin-top: 8px;
}

.product-window {
  background: var(--night);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.window-bar {
  align-items: center;
  background: #0c1725;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.54);
  display: flex;
  font-size: 12px;
  gap: 9px;
  min-height: 38px;
  padding: 0 14px;
}

.dots {
  display: inline-flex;
  gap: 6px;
}

.dots i {
  background: var(--quiet);
  border-radius: 99px;
  display: block;
  height: 9px;
  width: 9px;
}

.dots i:nth-child(1) {
  background: var(--signal);
}

.dots i:nth-child(2) {
  background: var(--gold);
}

.dots i:nth-child(3) {
  background: var(--green);
}

.product-window img {
  height: 100%;
  object-fit: cover;
  object-position: top left;
  width: 100%;
}

.gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.3fr 0.9fr;
}

.gallery-main .product-window {
  height: 520px;
}

.gallery-side {
  display: grid;
  gap: 16px;
}

.gallery-side .product-window {
  height: 252px;
}

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

.trust-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 18px;
}

.trust-item strong {
  display: block;
  font-size: 17px;
  margin-bottom: 7px;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.66);
  display: block;
  font-size: 14px;
}

.pricing-grid {
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price {
  align-items: baseline;
  display: flex;
  gap: 8px;
}

.price strong {
  font-size: 34px;
  line-height: 1;
}

.price span {
  color: var(--muted);
}

.price-card ul {
  color: var(--muted);
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
}

.price-card li {
  list-style: none;
  padding-left: 20px;
  position: relative;
}

.price-card li::before {
  color: var(--green);
  content: "✓";
  font-weight: 900;
  left: 0;
  position: absolute;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  list-style: none;
  overflow: hidden;
}

.faq-item button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-weight: 850;
  justify-content: space-between;
  padding: 19px 20px;
  text-align: left;
  width: 100%;
}

.faq-item button span:last-child {
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
}

.faq-panel {
  color: var(--muted);
  display: none;
  padding: 0 20px 20px;
}

.faq-item.is-open .faq-panel {
  display: block;
}

.contact {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: 0.86fr 1fr;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 14px;
  padding: 22px;
}

.hp-field {
  display: none !important;
}

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

.contact-form label {
  color: var(--muted);
  display: grid;
  font-size: 13px;
  font-weight: 750;
  gap: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #fbfcfa;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  min-height: 44px;
  padding: 10px 12px;
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(21, 94, 247, 0.14);
}

.small-note {
  color: var(--quiet);
  font-size: 13px;
  margin: 0;
}

.footer {
  background: var(--ink);
  color: var(--white);
  padding: 36px 0;
}

.footer-inner {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.footer a {
  color: rgba(255, 255, 255, 0.74);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.legal-page {
  background: var(--paper);
  padding: 116px 0 72px;
}

.legal-doc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: min(7vw, 52px);
}

.legal-doc h1 {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
  margin: 0 0 18px;
}

.legal-doc h2 {
  font-size: 28px;
  margin-top: 42px;
}

.legal-doc p,
.legal-doc li {
  color: var(--muted);
}

.legal-doc a {
  color: var(--blue-deep);
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav-links {
    align-items: stretch;
    background: rgba(245, 247, 242, 0.98);
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    gap: 0;
    inset: 72px 0 auto 0;
    padding: 12px 20px 20px;
    position: fixed;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a,
  .topbar .nav-links a {
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    padding: 15px 0;
  }

  .nav-cta {
    border-bottom: 0 !important;
    justify-content: center;
    margin-top: 12px;
  }

  .menu-button {
    display: inline-flex !important;
    flex: 0 0 auto;
    position: fixed;
    right: 20px;
    top: 15px;
    z-index: 150;
  }

  .section-head,
  .verdict,
  .proof-layout,
  .gallery,
  .contact,
  .split {
    grid-template-columns: 1fr;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .trust-list,
  .pricing-grid,
  .metric-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .ramp-step::after {
    display: none;
  }

  .gallery-main .product-window,
  .gallery-side .product-window {
    height: 360px;
  }
}

@media (max-width: 680px) {
  .shell {
    margin-left: 14px;
    margin-right: auto;
    max-width: 330px;
    width: calc(100% - 28px);
  }

  .menu-button {
    right: 14px;
  }

  .hero {
    min-height: 76svh;
    padding: 102px 0 34px;
  }

  .hero h1 {
    font-size: clamp(34px, 9.4vw, 38px);
    max-width: 330px;
  }

  .mobile-break {
    display: block;
  }

  .hero-lead {
    font-size: 17px;
    max-width: 330px;
  }

  .hero-actions {
    max-width: 330px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-proof,
  .grid-4,
  .grid-3,
  .grid-2,
  .trust-list,
  .pricing-grid,
  .metric-strip,
  .form-row {
    grid-template-columns: 1fr;
  }

  .subhero {
    padding: 104px 0 54px;
  }

  .subhero h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .hero-proof {
    display: none;
  }

  .band {
    padding: 64px 0;
  }

  .delta-list li {
    grid-template-columns: 1fr;
  }

  .gallery-main .product-window,
  .gallery-side .product-window {
    height: 260px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

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

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