:root {
  color-scheme: light;
  --blue-950: #0f2f6f;
  --blue-800: #1d4ed8;
  --blue-700: #2563eb;
  --blue-500: #3b82f6;
  --cyan-400: #4fc3ee;
  --orange-500: #f97316;
  --emerald-500: #10b981;
  --ink: #172033;
  --heading: #10213f;
  --muted: #56657c;
  --line: #d9e2ef;
  --surface: #ffffff;
  --surface-soft: #f7fbff;
  --section: #eef6ff;
  --panel: #ffffff;
  --panel-subtle: #f8fbff;
  --nav-bg: rgba(255, 255, 255, 0.9);
  --button-secondary: rgba(255, 255, 255, 0.84);
  --shadow: 0 24px 70px rgba(21, 58, 117, 0.16);
  --card-shadow: 0 16px 44px rgba(15, 47, 111, 0.08);
  --radius: 8px;
  --max: 1160px;
}

[data-theme="dark"] {
  color-scheme: dark;
  --blue-950: #b9d6ff;
  --blue-800: #8bbcff;
  --blue-700: #60a5fa;
  --blue-500: #3b82f6;
  --cyan-400: #67e8f9;
  --orange-500: #fb923c;
  --emerald-500: #34d399;
  --ink: #e8f1ff;
  --heading: #f8fbff;
  --muted: #afc0d8;
  --line: rgba(151, 179, 218, 0.22);
  --surface: #0b1220;
  --surface-soft: #09111f;
  --section: #0f1b2f;
  --panel: #121d31;
  --panel-subtle: #0e1728;
  --nav-bg: rgba(12, 20, 35, 0.9);
  --button-secondary: rgba(18, 29, 49, 0.9);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --card-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface-soft);
  font-family: "Fira Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

button {
  font: inherit;
}

.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;
  top: 14px;
  left: 14px;
  z-index: 100;
  padding: 10px 14px;
  color: #ffffff;
  background: #0f2f6f;
  border-radius: var(--radius);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 50;
}

.nav-shell {
  max-width: var(--max);
  min-height: 66px;
  margin: 0 auto;
  padding: 10px 12px 10px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  background: var(--nav-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--blue-950);
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 7px;
}

.nav-links,
.nav-actions,
.theme-switcher {
  display: flex;
  align-items: center;
}

.nav-links {
  justify-content: center;
  gap: 4px;
}

.nav-actions {
  gap: 10px;
}

.nav-links a,
.theme-option {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 7px;
  color: var(--muted);
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-links a {
  padding: 10px 12px;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.theme-option:hover,
.theme-option:focus-visible,
.theme-option.is-active {
  color: var(--blue-700);
  background: color-mix(in srgb, var(--blue-700) 12%, transparent);
}

.theme-switcher {
  padding: 3px;
  gap: 2px;
  background: var(--panel-subtle);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.theme-option {
  min-width: 44px;
  padding: 8px 9px;
  justify-content: center;
  gap: 6px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.theme-option svg {
  width: 17px;
  height: 17px;
}

.theme-option span {
  font-size: 0.82rem;
}

.nav-cta,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-cta {
  padding: 11px 16px;
  color: #ffffff;
  background: var(--blue-700);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.24);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.3);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  color: var(--blue-950);
  background: var(--panel-subtle);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.55);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 76svh;
  padding: 122px 22px 56px;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(color-mix(in srgb, var(--surface-soft) 86%, transparent), color-mix(in srgb, var(--surface-soft) 96%, transparent)),
    url("TrackQr.png") right 7vw center / min(52vw, 620px) no-repeat,
    var(--surface-soft);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.52;
  background-image:
    linear-gradient(color-mix(in srgb, var(--blue-700) 14%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--blue-700) 14%, transparent) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.72) 46%, transparent 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line);
}

.hero-content {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.hero-content > * {
  max-width: 760px;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero-visual img {
  position: absolute;
  right: clamp(18px, 7vw, 110px);
  bottom: clamp(12px, 5vw, 80px);
  width: clamp(230px, 35vw, 500px);
  opacity: 0.14;
  filter: saturate(1.12);
}

.scan-line {
  position: absolute;
  top: 18%;
  right: 0;
  width: min(48vw, 640px);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(79, 195, 238, 0.9), transparent);
  animation: scan 4s ease-in-out infinite;
}

.eyebrow {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-700);
  font-family: "Fira Code", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow svg {
  width: 18px;
  height: 18px;
}

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

h1 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(2.45rem, 6vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: 0;
  max-width: 930px;
}

h2 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--heading);
  font-size: 1.2rem;
  line-height: 1.25;
}

.hero-copy {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 690px;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 13px 18px;
}

.button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.button-primary {
  color: #ffffff;
  background: var(--blue-700);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
}

.button-secondary {
  color: var(--blue-950);
  background: var(--button-secondary);
  border: 1px solid var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--blue-700);
  border-color: color-mix(in srgb, var(--blue-700) 45%, var(--line));
  box-shadow: var(--card-shadow);
}

.hero-metrics {
  margin: 26px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 12px;
  max-width: 650px;
}

.hero-metrics div {
  padding: 14px;
  background: color-mix(in srgb, var(--panel) 82%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
}

.hero-metrics dt {
  color: var(--blue-950);
  font-family: "Fira Code", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}

.hero-metrics dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.trust-band {
  width: min(calc(100% - 44px), var(--max));
  margin: -28px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-item {
  min-height: 76px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  background: var(--panel);
  font-weight: 800;
}

.trust-item svg {
  width: 22px;
  height: 22px;
  color: var(--blue-700);
  flex: 0 0 auto;
}

.section,
.analytics-section,
.install-section,
.quote-section,
.contact-section {
  padding: 104px 22px;
}

.section-grid,
.workflow,
.install-section {
  background: var(--surface);
}

.section-heading {
  width: min(100%, var(--max));
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 36px;
  align-items: end;
}

.section-heading p:not(.eyebrow),
.analytics-copy p,
.install-copy p,
.legal-hero p,
.legal-content p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-card,
.step,
.install-card,
.quote-card,
.dashboard-panel,
.legal-content {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--card-shadow);
}

.feature-card {
  min-height: 250px;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--blue-700) 35%, var(--line));
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.14);
}

.feature-card p,
.step p,
.install-card p,
.quote-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.icon-chip {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  color: var(--blue-700);
  background: color-mix(in srgb, var(--blue-700) 12%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.icon-chip svg {
  width: 24px;
  height: 24px;
}

.analytics-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.82fr);
  gap: 44px;
  align-items: center;
  background:
    linear-gradient(color-mix(in srgb, var(--section) 94%, transparent), color-mix(in srgb, var(--section) 94%, transparent)),
    url("TrackQr.png") left 6vw bottom 20% / 290px no-repeat,
    var(--section);
}

.analytics-copy,
.dashboard-panel {
  width: min(100%, 560px);
}

.analytics-copy {
  justify-self: end;
}

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

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink);
  font-weight: 700;
}

.check-list svg {
  width: 20px;
  height: 20px;
  color: var(--emerald-500);
  flex: 0 0 auto;
  margin-top: 3px;
}

.dashboard-panel {
  padding: 22px;
}

.panel-top,
.insight-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.panel-kicker,
.pricing-label {
  display: block;
  color: var(--blue-700);
  font-family: "Fira Code", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.panel-top strong {
  display: block;
  color: var(--heading);
  font-size: 1.2rem;
}

.live-pill {
  min-height: 34px;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #086a49;
  background: #dff8ed;
  border-radius: 999px;
  font-weight: 800;
}

[data-theme="dark"] .live-pill {
  color: #bcf7da;
  background: rgba(16, 185, 129, 0.16);
}

.live-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald-500);
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.14);
}

.panel-metric {
  margin-top: 24px;
  padding: 20px;
  background: var(--panel-subtle);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.panel-metric span,
.panel-metric small {
  color: var(--muted);
  font-weight: 700;
}

.panel-metric strong {
  display: block;
  margin: 4px 0;
  color: var(--blue-950);
  font-family: "Fira Code", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1;
}

.chart-bars {
  height: 190px;
  margin-top: 24px;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: end;
  gap: 10px;
  background: #10213f;
  border-radius: var(--radius);
}

.chart-bars span {
  height: var(--h);
  min-height: 26px;
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, var(--cyan-400), var(--blue-500));
  transform-origin: bottom;
  animation: grow 900ms ease both;
}

.insight-row {
  margin-top: 16px;
  flex-wrap: wrap;
}

.insight-row span {
  min-height: 42px;
  padding: 10px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  background: var(--panel-subtle);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.insight-row svg {
  width: 18px;
  height: 18px;
  color: var(--blue-700);
}

.steps {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.step {
  min-height: 220px;
  padding: 26px;
}

.step span {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--orange-500);
  font-family: "Fira Code", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 1.75rem;
  font-weight: 800;
}

.quote-section {
  background: #0f2f6f;
}

[data-theme="dark"] .quote-section {
  background: #08101f;
}

.quote-card {
  width: min(100%, 870px);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  color: #ffffff;
  background: #122d63;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.quote-card > svg {
  width: 34px;
  height: 34px;
  color: var(--cyan-400);
}

.quote-card h2 {
  margin-top: 18px;
  color: #ffffff;
  font-size: clamp(1.8rem, 4.6vw, 3.4rem);
}

.quote-card p {
  color: #d7e6ff;
  font-size: 1.08rem;
}

.quote-author {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.quote-author span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #0f2f6f;
  background: #ffffff;
  border-radius: var(--radius);
  font-weight: 900;
}

.quote-author strong,
.quote-author small {
  display: block;
}

.quote-author small {
  color: #bed5ff;
}

.install-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: 36px;
  align-items: center;
}

.faq-section {
  background: var(--section);
}

.faq-list {
  width: min(100%, 860px);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--card-shadow);
}

.faq-item summary {
  min-height: 58px;
  padding: 18px 22px;
  color: var(--heading);
  font-weight: 800;
  cursor: pointer;
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.install-copy {
  justify-self: end;
  width: min(100%, 650px);
}

.install-card {
  width: min(100%, 420px);
  padding: 28px;
  border-top: 4px solid var(--orange-500);
}

.install-card strong {
  display: block;
  margin-top: 12px;
  color: var(--heading);
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  line-height: 1.08;
}

.legal-page {
  padding: 142px 22px 80px;
  background:
    linear-gradient(color-mix(in srgb, var(--surface-soft) 92%, transparent), color-mix(in srgb, var(--surface-soft) 100%, transparent)),
    url("TrackQr.png") right 8vw top 140px / min(38vw, 360px) no-repeat,
    var(--surface-soft);
}

.legal-hero,
.legal-content {
  width: min(100%, 860px);
  margin: 0 auto;
}

.legal-hero {
  padding-bottom: 34px;
}

.legal-hero h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
}

.legal-content {
  padding: clamp(24px, 4vw, 42px);
}

.legal-content h2 {
  margin-top: 34px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content a {
  color: var(--blue-700);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.changelog-list {
  display: grid;
  gap: 34px;
}

.changelog-list ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.changelog-list li + li {
  margin-top: 8px;
}

.site-footer {
  min-height: 104px;
  padding: 26px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.footer-meta {
  display: grid;
  gap: 6px;
  text-align: right;
}

.footer-links {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  gap: 9px;
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--blue-700);
}

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

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

@keyframes scan {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.18;
  }
  50% {
    transform: translateY(260px);
    opacity: 0.86;
  }
}

@keyframes grow {
  from {
    transform: scaleY(0.24);
    opacity: 0.3;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@media (max-width: 1120px) {
  .theme-option span {
    display: none;
  }
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-links.is-open,
  .nav-actions.is-open {
    grid-column: 1 / -1;
    display: grid;
    justify-content: stretch;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }

  .nav-links.is-open a {
    justify-content: flex-start;
  }

  .theme-switcher {
    justify-content: stretch;
  }

  .theme-option {
    flex: 1;
  }

  .theme-option span {
    display: inline;
  }

  .hero {
    min-height: 76svh;
    padding-top: 112px;
    background:
      linear-gradient(color-mix(in srgb, var(--surface-soft) 84%, transparent), color-mix(in srgb, var(--surface-soft) 96%, transparent)),
      url("TrackQr.png") right -34px bottom 26px / min(72vw, 430px) no-repeat,
      var(--surface-soft);
  }

  .section-heading,
  .analytics-section,
  .install-section {
    grid-template-columns: 1fr;
  }

  .analytics-copy,
  .install-copy {
    justify-self: center;
  }

  .dashboard-panel,
  .install-card {
    justify-self: center;
  }

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

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
  }

  .nav-shell {
    min-height: 62px;
  }

  .brand span {
    font-size: 0.98rem;
  }

  .hero {
    min-height: auto;
    padding: 112px 18px 48px;
  }

  .hero-actions,
  .site-footer,
  .panel-top {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .hero-metrics,
  .trust-band,
  .feature-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    display: none;
  }

  .trust-band {
    width: calc(100% - 28px);
    margin-top: 0;
  }

  .section,
  .analytics-section,
  .install-section,
  .faq-section,
  .quote-section,
  .legal-page {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section,
  .analytics-section,
  .install-section,
  .faq-section,
  .quote-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .legal-page {
    padding-top: 126px;
    padding-bottom: 64px;
  }

  .feature-card,
  .step {
    min-height: auto;
  }

  .chart-bars {
    height: 160px;
    gap: 7px;
  }

  .footer-meta {
    text-align: left;
  }

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

@media (max-width: 430px) {
  h1 {
    font-size: 2.36rem;
  }

  .hero-metrics div,
  .feature-card,
  .step,
  .dashboard-panel,
  .install-card,
  .legal-content {
    padding: 20px;
  }

  .eyebrow {
    font-size: 0.78rem;
  }
}

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

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