:root {
  color-scheme: dark;
  --bg: #050505;
  --surface: #0b0b0b;
  --surface-2: #111114;
  --surface-3: #17171d;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f7f8ff;
  --muted: rgba(247, 248, 255, 0.72);
  --dim: rgba(247, 248, 255, 0.48);
  --primary: #6d5dfc;
  --secondary: #8b5cf6;
  --accent: #00d4ff;
  --success: #58e6b2;
  --radius-panel: 26px;
  --radius-card: 20px;
  --radius-button: 999px;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.44);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  font-family:
    "Aptos Display",
    "Segoe UI",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(109, 93, 252, 0.13), transparent 520px),
    linear-gradient(115deg, rgba(0, 212, 255, 0.08), transparent 42%),
    var(--bg);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  content: "";
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.26) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

button,
input {
  font: inherit;
}

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

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

button {
  border: 0;
}

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

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

h1,
h2,
h3,
p,
blockquote,
figure {
  margin: 0;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.page {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18rem),
    var(--bg);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 64px);
  background: rgba(5, 5, 5, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 760;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(3, 5px);
  grid-template-rows: repeat(3, 5px);
  gap: 3px;
  width: 21px;
  height: 21px;
}

.brand-mark span {
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary) 55%, var(--secondary));
  box-shadow: 0 0 14px rgba(109, 93, 252, 0.38);
}

.brand-mark span:nth-child(2),
.brand-mark span:nth-child(5),
.brand-mark span:nth-child(8) {
  opacity: 0.7;
}

.nav {
  display: flex;
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
}

.nav a {
  padding: 10px 0;
  transition: color 180ms ease;
}

.nav a:hover {
  color: var(--text);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border-radius: var(--radius-button);
  font-weight: 760;
  white-space: nowrap;
  transition:
    transform 180ms var(--ease),
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.header-cta {
  padding: 0 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 14px 40px rgba(109, 93, 252, 0.3);
}

.button {
  min-width: 154px;
  padding: 0 22px;
}

.arrow,
.chevron {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.arrow::before {
  position: absolute;
  top: 8px;
  left: 3px;
  width: 11px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: currentColor;
}

.arrow::after {
  position: absolute;
  top: 5px;
  right: 3px;
  width: 7px;
  height: 7px;
  content: "";
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.arrow-up {
  transform: rotate(-45deg);
}

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

.button:active,
.header-cta:active {
  transform: translateY(1px) scale(0.98);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 18px 58px rgba(109, 93, 252, 0.34);
}

.button-secondary {
  color: var(--text);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--text);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nav-checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(620px, 88dvh, 840px);
  padding: 96px clamp(18px, 5vw, 80px) 48px;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.78) 35%, rgba(5, 5, 5, 0.35) 70%, rgba(5, 5, 5, 0.9) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.18), var(--bg) 100%);
}

.hero-content {
  width: 100%;
  max-width: 980px;
}

.hero-badge,
.hero h1,
.hero-copy,
.hero-actions {
  animation: hero-in 820ms var(--ease) both;
}

.hero h1 {
  animation-delay: 90ms;
}

.hero-copy {
  animation-delay: 160ms;
}

.hero-actions {
  animation-delay: 230ms;
}

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

.hero-badge,
.soft-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius-button);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-badge {
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 22px;
  font-size: 0.82rem;
  font-weight: 720;
}

.soft-label {
  min-height: 32px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 720;
}

.hero h1 {
  max-width: 980px;
  color: var(--text);
  font-size: clamp(3rem, 5.4vw, 4.9rem);
  font-weight: 780;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.headline-mobile {
  display: none;
}

.hero-copy {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(247, 248, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.metrics-shell,
.trust-cloud,
.section,
.final-cta,
.footer {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.metrics-shell {
  position: relative;
  z-index: 2;
  margin-top: -28px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: var(--line);
  box-shadow: var(--shadow);
}

.metric {
  min-height: 132px;
  padding: 28px;
  background: rgba(11, 11, 11, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.metric strong {
  display: block;
  color: var(--text);
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  font-weight: 770;
  letter-spacing: -0.045em;
}

.metric span {
  display: block;
  max-width: 12rem;
  margin-top: 8px;
  color: var(--dim);
  font-size: 0.94rem;
  line-height: 1.5;
}

.trust-cloud {
  padding: 74px 0 32px;
}

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

.logo-pill {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(247, 248, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.035);
}

.logo-pill span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(109, 93, 252, 0.8), rgba(0, 212, 255, 0.34));
  font-size: 0.68rem;
  font-weight: 820;
}

.logo-pill strong {
  font-size: 0.9rem;
  font-weight: 720;
}

.section {
  padding: clamp(74px, 8vw, 118px) 0;
}

.section-header {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-header h2,
.platform-copy h2,
.coverage-copy h2,
.faq-heading h2,
.final-cta h2 {
  color: var(--text);
  font-size: clamp(2.15rem, 4.7vw, 4.4rem);
  font-weight: 760;
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.section-header p,
.platform-copy p,
.coverage-copy p,
.final-cta p {
  max-width: 650px;
  margin-top: 16px;
  font-size: 1.02rem;
}

.discover-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(220px, auto);
  gap: 14px;
}

.discover-tile,
.process-card,
.reason,
.testimonial,
.signal-row,
.module-panel,
.dashboard-frame,
.coverage-map,
.final-cta-inner {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(11, 11, 11, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}

.discover-tile {
  position: relative;
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius-card);
}

.discover-tile::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0;
  background: linear-gradient(135deg, rgba(109, 93, 252, 0.28), rgba(0, 212, 255, 0.1));
  transition: opacity 200ms ease;
}

.discover-tile:hover::before {
  opacity: 1;
}

.discover-tile h3,
.process-card h3,
.reason h3,
.signal-row h3,
.module-preview h3 {
  position: relative;
  margin-top: 18px;
  color: var(--text);
  font-size: 1.16rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.discover-tile p,
.process-card p,
.reason p,
.signal-row p {
  position: relative;
  margin-top: 9px;
  font-size: 0.94rem;
}

.tile-large {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(109, 93, 252, 0.34), rgba(255, 255, 255, 0.035)),
    rgba(11, 11, 11, 0.82);
}

.tile-tall {
  grid-row: span 2;
  background:
    linear-gradient(180deg, rgba(0, 212, 255, 0.2), rgba(109, 93, 252, 0.08)),
    rgba(11, 11, 11, 0.82);
}

.icon-panel {
  position: relative;
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(109, 93, 252, 0.85), rgba(0, 212, 255, 0.28)),
    rgba(255, 255, 255, 0.05);
}

.icon-panel::before,
.module-icon::before,
.mini-icon {
  content: attr(data-icon);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 860;
  letter-spacing: 0.04em;
}

.process-section {
  padding-top: 34px;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-card {
  position: relative;
  min-height: 270px;
  padding: 24px;
  border-radius: var(--radius-card);
}

.process-index {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.78rem;
  font-weight: 780;
}

.platform {
  padding-top: 52px;
}

.platform-copy {
  max-width: 760px;
  margin-bottom: 32px;
}

.platform-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 16px;
  align-items: stretch;
}

.dashboard-frame {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-panel);
}

.dashboard-frame img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.module-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px;
  border-radius: var(--radius-panel);
}

.module-preview {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(109, 93, 252, 0.26), rgba(0, 212, 255, 0.06)),
    rgba(255, 255, 255, 0.04);
}

.module-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.module-preview p {
  margin-top: 26px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 760;
}

.module-preview h3 {
  margin-top: 7px;
  font-size: 1.55rem;
}

.module-preview span:not(.module-icon) {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.module-list {
  display: grid;
  gap: 8px;
}

.module-list a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  color: var(--muted);
  text-align: left;
  border: 1px solid transparent;
  border-radius: 16px;
  background: transparent;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.mini-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.56rem;
}

.module-list a:hover,
.module-list a.is-active {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.07);
}

.coverage {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(20px, 4vw, 46px);
  align-items: center;
}

.coverage-copy {
  min-width: 0;
}

.region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.region-list span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  color: rgba(247, 248, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius-button);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.88rem;
  font-weight: 690;
}

.coverage-map {
  overflow: hidden;
  border-radius: var(--radius-panel);
}

.coverage-map img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

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

.signal-row {
  display: grid;
  grid-template-columns: 40px 54px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 132px;
  padding: 18px;
  border-radius: var(--radius-card);
}

.signal-row > span:first-child {
  color: rgba(247, 248, 255, 0.32);
  font-size: 0.78rem;
  font-weight: 820;
}

.signal-row h3 {
  margin-top: 0;
}

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

.reason {
  min-height: 210px;
  padding: 24px;
  border-radius: var(--radius-card);
}

.testimonials {
  padding-top: 38px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 14px;
}

.testimonial {
  min-height: 250px;
  padding: 28px;
  border-radius: var(--radius-card);
}

.testimonial blockquote {
  color: var(--text);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.testimonial figcaption {
  display: grid;
  gap: 4px;
  margin-top: 30px;
}

.testimonial figcaption span {
  color: var(--text);
  font-weight: 760;
}

.testimonial figcaption small {
  color: var(--dim);
  font-size: 0.88rem;
}

.faq {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 0.55fr);
  gap: clamp(22px, 6vw, 72px);
  align-items: start;
}

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

.faq details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.faq summary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 20px;
  color: var(--text);
  cursor: pointer;
  font-weight: 720;
  list-style: none;
}

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

.chevron::before {
  position: absolute;
  top: 5px;
  left: 4px;
  width: 8px;
  height: 8px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms var(--ease);
}

.faq details[open] .chevron::before {
  transform: rotate(225deg) translate(-2px, -2px);
}

.faq details p {
  padding: 0 20px 22px;
  font-size: 0.94rem;
}

.final-cta {
  padding: 34px 0 96px;
}

.final-cta-inner {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 7vw, 78px);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(109, 93, 252, 0.34), rgba(0, 212, 255, 0.12)),
    rgba(11, 11, 11, 0.86);
}

.final-cta h2 {
  max-width: 860px;
  margin-top: 18px;
}

.final-cta p {
  font-size: 1.1rem;
}

.footer {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
}

.footer p {
  margin-top: 8px;
  font-size: 0.92rem;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  color: var(--dim);
  font-size: 0.9rem;
}

.footer a:hover {
  color: var(--text);
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
  transition-delay: calc(var(--reveal-index, 0) * 45ms);
}

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

@supports not ((backdrop-filter: blur(20px))) {
  .header,
  .button-secondary,
  .hero-badge,
  .soft-label,
  .metric,
  .discover-tile,
  .process-card,
  .reason,
  .testimonial,
  .signal-row,
  .module-panel,
  .dashboard-frame,
  .coverage-map,
  .final-cta-inner {
    background-color: #0b0b0b;
  }
}

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

@media (max-width: 1080px) {
  .header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    order: 3;
  }

  .header-cta {
    display: none;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 18px;
    display: none;
    width: min(320px, calc(100vw - 36px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(11, 11, 11, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-checkbox:checked ~ .nav {
    display: flex;
  }

  .nav a {
    padding: 14px;
    border-radius: 14px;
  }

  .nav a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .hero {
    min-height: 820px;
    align-items: flex-end;
    padding-bottom: 72px;
  }

  .hero-media img {
    object-position: 62% center;
  }

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

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

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

  .tile-tall {
    grid-row: span 1;
  }

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

  .platform-layout,
  .coverage,
  .faq {
    grid-template-columns: 1fr;
  }

  .signal-board,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body::before {
    background-size: 52px 52px;
  }

  .header {
    min-height: 66px;
    padding: 10px 16px;
  }

  .brand {
    font-size: 0.94rem;
  }

  .hero {
    display: grid;
    min-height: 760px;
    align-items: end;
    padding: 92px 18px 54px;
  }

  .hero-media img {
    object-position: 68% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.52) 0%, rgba(5, 5, 5, 0.78) 42%, rgba(5, 5, 5, 0.98) 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.2));
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 9.5vw, 2.8rem);
    line-height: 1;
    letter-spacing: -0.045em;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .headline-desktop {
    display: none;
  }

  .headline-mobile {
    display: block;
  }

  .hero-badge,
  .hero h1,
  .hero-copy,
  .hero-actions {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

  .hero-copy {
    max-width: calc(100vw - 36px);
    margin-top: 18px;
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
    margin-top: 26px;
  }

  .button {
    width: 100%;
  }

  .metrics-shell,
  .trust-cloud,
  .section,
  .final-cta,
  .footer {
    width: calc(100% - 32px);
  }

  .metrics-shell {
    margin-top: 0;
    padding-top: 18px;
  }

  .metric-grid,
  .logo-cloud,
  .discover-grid,
  .process-track,
  .reason-grid {
    grid-template-columns: 1fr;
  }

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

  .logo-pill {
    justify-content: flex-start;
    padding: 0 18px;
  }

  .trust-cloud {
    padding-top: 46px;
  }

  .section {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .section-header h2,
  .platform-copy h2,
  .coverage-copy h2,
  .faq-heading h2,
  .final-cta h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .tile-large {
    grid-column: span 1;
  }

  .dashboard-frame,
  .dashboard-frame img,
  .coverage-map img {
    min-height: 300px;
  }

  .module-panel {
    padding: 12px;
  }

  .module-preview {
    min-height: 220px;
    padding: 20px;
  }

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

  .signal-row > span:first-child {
    display: none;
  }

  .faq summary {
    min-height: 58px;
    padding: 0 16px;
  }

  .faq details p {
    padding: 0 16px 18px;
  }

  .final-cta {
    padding-bottom: 68px;
  }

  .final-cta-inner {
    border-radius: 26px;
    padding: 28px;
  }

  .footer {
    display: grid;
  }

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