:root {
  --ink: #0f172a;
  --muted: #536174;
  --soft: #eef5ff;
  --soft-2: #f7fbff;
  --line: rgba(15, 23, 42, 0.1);
  --card: rgba(255, 255, 255, 0.82);
  --teal: #14b8a6;
  --blue: #2563eb;
  --violet: #7c3aed;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.08);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, 0.18), transparent 34rem),
    radial-gradient(circle at 88% 8%, rgba(124, 58, 237, 0.15), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 52%, #ffffff 100%);
  min-height: 100vh;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

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

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

.section-pad {
  padding: 96px 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 99;
  transform: translateY(-140%);
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  transition: transform .2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: box-shadow .2s ease, background .2s ease;
}

.site-header.scrolled {
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 256px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.primary-nav a {
  color: #334155;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 14px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue);
  outline: none;
}

.primary-nav .nav-cta {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .18);
}

.primary-nav .nav-cta:hover,
.primary-nav .nav-cta:focus-visible {
  background: #172033;
  color: #fff;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

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

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

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

.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;
}

.hero {
  position: relative;
  overflow: clip;
  padding-top: 88px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 70px auto auto -160px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(20, 184, 166, .1);
  filter: blur(6px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #2563eb;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--violet));
}

h1 {
  font-size: clamp(44px, 7vw, 78px);
  line-height: .95;
  letter-spacing: -0.065em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin-bottom: 18px;
}

h3 {
  font-size: 20px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.hero-lead {
  font-size: 19px;
  max-width: 650px;
  margin-bottom: 32px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  border: 1px solid transparent;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--blue) 52%, var(--violet));
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 42px rgba(37, 99, 235, 0.3);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, .76);
  border-color: rgba(15, 23, 42, .12);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.trust-strip {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-strip span,
.integration-list span,
.field-cloud span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(15, 23, 42, .1);
  background: rgba(255, 255, 255, .72);
  color: #334155;
  padding: 10px 13px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  color: #2563eb;
}

.visual-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(37, 99, 235, .15);
  animation: slow-spin 18s linear infinite;
}

.visual-orbit-one {
  width: 520px;
  height: 520px;
}

.visual-orbit-two {
  width: 380px;
  height: 380px;
  border-color: rgba(20, 184, 166, .16);
  animation-direction: reverse;
}

.visual-orbit::before,
.visual-orbit::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 9px rgba(37, 99, 235, .1);
}

.visual-orbit::before {
  top: 16%;
  left: 10%;
}

.visual-orbit::after {
  bottom: 12%;
  right: 16%;
}

@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

.glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.72));
  border: 1px solid rgba(255, 255, 255, .74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.dashboard-card {
  width: min(100%, 460px);
  border-radius: 34px;
  padding: 22px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.dashboard-card::after {
  content: "";
  position: absolute;
  inset: auto -80px -110px auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(20,184,166,.22), transparent 70%);
  pointer-events: none;
}

.card-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.card-topbar div {
  display: flex;
  gap: 7px;
}

.card-topbar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(15, 23, 42, .17);
}

.card-topbar p {
  margin: 0;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

.scan-box {
  position: relative;
  padding: 28px 24px 22px;
  border-radius: 26px;
  background: #0f172a;
  color: #fff;
  overflow: hidden;
}

.scan-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, .24), transparent);
  transform: translateX(-100%);
  animation: scan 2.8s ease-in-out infinite;
}

@keyframes scan {
  50% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

.barcode-lines {
  height: 92px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 7px;
  position: relative;
  z-index: 1;
}

.barcode-lines i {
  display: block;
  width: 5px;
  background: #fff;
  border-radius: 999px;
  opacity: .94;
}

.barcode-lines i:nth-child(2),
.barcode-lines i:nth-child(5),
.barcode-lines i:nth-child(9) {
  width: 11px;
}

.barcode-lines i:nth-child(3),
.barcode-lines i:nth-child(7) {
  width: 3px;
}

.scan-box p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .84);
  text-align: center;
  font-weight: 900;
  letter-spacing: .16em;
  position: relative;
  z-index: 1;
}

.product-match {
  margin: 18px 0;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 26px;
  background: rgba(255, 255, 255, .76);
}

.product-match h3 {
  margin-bottom: 4px;
}

.product-match p {
  margin: 0;
  font-size: 14px;
}

.tiny-label {
  color: var(--teal) !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px !important;
}

.product-cube {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(20,184,166,.18), rgba(37,99,235,.18));
  display: grid;
  place-items: center;
}

.product-cube span {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: inset 10px -10px 0 rgba(255, 255, 255, .22);
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.data-grid article {
  padding: 15px 12px;
  border-radius: 20px;
  background: rgba(248, 250, 252, .82);
  border: 1px solid rgba(15, 23, 42, .06);
}

.data-grid strong {
  display: block;
  font-size: 22px;
  letter-spacing: -.04em;
}

.data-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  margin-top: 3px;
}

.floating-pill {
  position: absolute;
  z-index: 3;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(15, 23, 42, .08);
  color: #172033;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.pill-left {
  left: 12px;
  bottom: 115px;
}

.pill-right {
  right: 0;
  top: 122px;
}

.logos-band {
  padding: 22px 0;
  border-block: 1px solid rgba(15, 23, 42, .06);
  background: rgba(255, 255, 255, .64);
}

.logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 28px;
}

.logos-grid p {
  margin: 0;
  color: #94a3b8;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
}

.logos-grid span {
  color: #334155;
  font-weight: 900;
}

.two-column {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 38px;
}

.section-heading p:not(.eyebrow) {
  font-size: 18px;
  max-width: 720px;
}

.centered {
  text-align: center;
}

.centered p:not(.eyebrow) {
  margin-inline: auto;
}

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.challenge-card,
.workflow-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: var(--shadow-soft);
}

.icon-bubble {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  margin-bottom: 22px;
}

.platform-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(37,99,235,.12), transparent 26rem),
    linear-gradient(180deg, rgba(239,246,255,.7), rgba(255,255,255,.3));
}

.workflow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.workflow-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
}

.workflow-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(37, 99, 235, .06);
}

.workflow-icon {
  width: 58px;
  height: 58px;
  border-radius: 19px;
  margin-bottom: 24px;
  position: relative;
  background: linear-gradient(135deg, rgba(20,184,166,.16), rgba(37,99,235,.18));
}

.workflow-icon::before,
.workflow-icon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
}

.collect::before { width: 26px; height: 9px; left: 16px; top: 18px; }
.collect::after { width: 20px; height: 9px; left: 16px; top: 32px; }
.validate::before { width: 29px; height: 9px; left: 16px; top: 26px; transform: rotate(-45deg); }
.validate::after { width: 14px; height: 9px; left: 13px; top: 31px; transform: rotate(45deg); background: var(--teal); }
.publish::before { width: 26px; height: 26px; left: 16px; top: 16px; border-radius: 8px; }
.publish::after { width: 36px; height: 3px; left: 11px; top: 39px; }

.feature-shell {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(15,23,42,.96), rgba(30,41,59,.96));
  overflow: hidden;
  position: relative;
}

.feature-shell::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  right: -130px;
  top: -120px;
  background: radial-gradient(circle, rgba(20,184,166,.24), transparent 68%);
}

.feature-panel {
  position: relative;
  z-index: 1;
  padding: 28px;
}

.feature-panel h2,
.feature-panel p {
  color: #fff;
}

.feature-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, .74);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: #a7f3d0;
  font-weight: 900;
}

.field-cloud {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.field-cloud span {
  background: rgba(255, 255, 255, .09);
  color: #e2e8f0;
  border-color: rgba(255, 255, 255, .13);
  backdrop-filter: blur(10px);
}

.quality-grid,
.api-grid,
.map-shell,
.cta-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.quality-list {
  display: grid;
  gap: 14px;
}

.quality-list article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 16px 34px rgba(15, 23, 42, .06);
}

.quality-list article > span {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: rgba(20, 184, 166, .14);
  position: relative;
}

.quality-list article > span::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 10px;
  border-left: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
  transform: rotate(-45deg);
  left: 12px;
  top: 14px;
}

.quality-list p,
.quality-list h3 {
  margin-bottom: 0;
}

.quality-list p {
  margin-top: 5px;
}

.api-section {
  background: #07111f;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.api-section::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  left: -180px;
  top: -180px;
  background: radial-gradient(circle, rgba(37,99,235,.28), transparent 65%);
}

.api-section h2,
.api-section h3 {
  color: #fff;
}

.api-section p:not(.eyebrow) {
  color: rgba(226, 232, 240, .74);
}

.api-card {
  position: relative;
  z-index: 1;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(15, 23, 42, .78);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 28px 60px rgba(0, 0, 0, .28);
}

.api-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.api-header span {
  background: #10b981;
  color: #022c22;
  font-weight: 950;
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 12px;
}

.api-header code {
  color: #cbd5e1;
  font-weight: 800;
  overflow-wrap: anywhere;
}

pre {
  margin: 0;
  padding: 24px;
  overflow-x: auto;
}

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  line-height: 1.65;
  color: #d1fae5;
}

.integration-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.integration-list span {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.14);
}

.map-shell {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: var(--shadow-soft);
}

.sa-map-card {
  min-height: 320px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(20,184,166,.12), rgba(37,99,235,.12)),
    #f8fafc;
  position: relative;
  overflow: hidden;
  color: #2563eb;
}

.sa-map-card svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.node {
  position: absolute;
  z-index: 2;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 10px rgba(37, 99, 235, .12), 0 12px 22px rgba(37, 99, 235, .18);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  50% { transform: scale(1.14); }
}

.n1 { left: 27%; top: 32%; }
.n2 { left: 48%; top: 25%; animation-delay: .2s; background: var(--teal); box-shadow: 0 0 0 10px rgba(20, 184, 166, .12); }
.n3 { left: 70%; top: 43%; animation-delay: .4s; }
.n4 { left: 55%; top: 66%; animation-delay: .6s; background: var(--violet); box-shadow: 0 0 0 10px rgba(124, 58, 237, .12); }
.n5 { left: 32%; top: 62%; animation-delay: .8s; }

.cta-section {
  padding-top: 54px;
}

.cta-card {
  border-radius: var(--radius-lg);
  padding: 46px;
  background: linear-gradient(135deg, rgba(20,184,166,.12), rgba(37,99,235,.12)), #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: var(--shadow-soft);
}

.cta-card p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
}

.cta-actions {
  justify-content: flex-end;
}

.site-footer {
  background: #07111f;
  color: #fff;
  padding: 54px 0 26px;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-grid img {
  width: 250px;
  max-width: 100%;
  filter: brightness(0) invert(1);
  opacity: .96;
  margin-bottom: 14px;
}

.footer-grid p,
.footer-bottom p {
  color: rgba(255, 255, 255, .68);
  margin-bottom: 0;
}

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

.footer-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255,255,255,.06);
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  font-size: 14px;
}

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

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

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

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

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    inset: 78px 16px auto;
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }

  .primary-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav a {
    display: block;
    width: 100%;
    padding: 14px 16px;
  }

  .hero-grid,
  .two-column,
  .feature-shell,
  .quality-grid,
  .api-grid,
  .map-shell,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .challenge-grid,
  .workflow {
    grid-template-columns: 1fr;
  }

  .feature-shell,
  .map-shell,
  .cta-card {
    padding: 28px;
  }

  .field-cloud {
    justify-content: flex-start;
  }

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

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

  .section-pad {
    padding: 64px 0;
  }

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

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 210px;
  }

  .primary-nav {
    inset: 70px 10px auto;
  }

  .hero {
    padding-top: 56px;
  }

  h1 {
    font-size: clamp(40px, 14vw, 56px);
  }

  h2 {
    font-size: clamp(31px, 10vw, 43px);
  }

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

  .hero-actions,
  .cta-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
    padding: 12px 0 42px;
  }

  .visual-orbit {
    display: none;
  }

  .dashboard-card {
    border-radius: 26px;
    padding: 16px;
  }

  .floating-pill {
    display: none;
  }

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

  .product-cube {
    width: 58px;
    height: 58px;
  }

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

  .logos-grid {
    justify-content: flex-start;
  }

  .challenge-card,
  .workflow-card,
  .quality-list article {
    padding: 22px;
  }

  .feature-shell,
  .map-shell,
  .cta-card {
    border-radius: 24px;
    padding: 22px;
  }

  .feature-panel {
    padding: 0;
  }

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

  .api-header {
    align-items: flex-start;
    flex-direction: column;
  }

  pre {
    padding: 18px;
  }

  code {
    font-size: 12.5px;
  }

  .sa-map-card {
    min-height: 240px;
  }

  .footer-grid,
  .footer-bottom {
    flex-direction: column;
  }

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