:root {
  --bg: #05030a;
  --bg-soft: #0d0718;
  --panel: #120b20;
  --panel-strong: #1a102d;
  --line: rgba(206, 185, 255, 0.16);
  --text: #f7f2ff;
  --muted: #b9adc9;
  --purple: #8444fc;
  --purple-strong: #a855f7;
  --violet-dark: #3b1a78;
  --orange: #ff8a3d;
  --orange-soft: #ffd1ad;
  --orange-wash: rgba(255, 138, 61, 0.13);
  --green: #4ade80;
  --teal: #5eead4;
  --amber: #fbbf24;
  --red: #f87171;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --font-sans: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
  --announcement-height: 42px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--announcement-height) + 92px);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 0%, rgba(139, 92, 246, 0.22), transparent 36rem),
    radial-gradient(circle at 86% 18%, rgba(168, 85, 247, 0.16), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font-mono);
  font-weight: 400;
  line-height: 1.5;
}

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

.top-announcement {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  height: var(--announcement-height);
  min-height: 42px;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid rgba(255, 138, 61, 0.2);
  background:
    linear-gradient(90deg, rgba(255, 138, 61, 0.2), rgba(94, 234, 212, 0.1), rgba(132, 68, 252, 0.18)),
    rgba(5, 3, 10, 0.92);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
}

.top-announcement span {
  color: var(--orange-soft);
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.top-announcement a {
  display: inline;
}

.top-announcement a::after {
  content: "->";
  margin-left: 0.45rem;
  color: var(--orange);
}

.site-header {
  position: sticky;
  top: var(--announcement-height);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
  padding: 1rem clamp(1rem, 4vw, 3.5rem);
  background: rgba(5, 3, 10, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-family: var(--font-sans);
  letter-spacing: 0;
}

.brand-name {
  display: inline-flex;
  align-items: flex-start;
  line-height: 1;
}

.brand-name sup {
  margin-left: 0.12rem;
  font-size: 0.45em;
  line-height: 1;
  transform: translateY(-0.18em);
}

.site-header .brand-name sup {
  font-size: 0.36em;
}

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(132, 68, 252, 0.12);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.nav-links,
.header-actions,
.cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--white);
}

.text-link {
  color: var(--muted);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.92rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--purple), var(--purple-strong));
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 16px 42px rgba(139, 92, 246, 0.25);
}

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

.button-small {
  min-height: 38px;
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.button-ghost {
  background: transparent;
  box-shadow: none;
}

.section-band,
.content-section,
.product-band,
.analytics-section,
.product-model-section,
.founder-band,
.beta-section,
.mobile-section,
.truck-roll-section,
.stats-band,
.final-cta {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  margin: 0;
  overflow: hidden;
  min-height: calc(100vh - 76px);
  padding: clamp(3rem, 6vw, 5rem) 0;
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(5, 3, 10, 0.9) 0%, rgba(5, 3, 10, 0.68) 38%, rgba(5, 3, 10, 0.16) 76%),
    linear-gradient(0deg, var(--bg) 0%, rgba(5, 3, 10, 0.04) 42%);
}

.hero::after {
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 62%);
  opacity: 0.75;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(1.05) contrast(1.02) brightness(0.92);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  margin: 0 0 0.9rem;
  color: var(--orange);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(255, 138, 61, 0.18);
}

.eyebrow::before {
  content: "";
  display: block;
  width: 1.55rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 138, 61, 0.16));
}

.final-cta .eyebrow,
.join-popup .eyebrow {
  margin-right: auto;
  margin-left: auto;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--font-sans);
}

p {
  margin-top: 0;
}

h1 {
  max-width: 640px;
  margin-bottom: 1.2rem;
  font-size: clamp(2.85rem, 5vw, 4.75rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 600;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 600;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.08rem;
  font-weight: 600;
}

.hero-lede,
.section-heading p:not(.eyebrow),
.product-copy p:not(.eyebrow),
.mobile-copy p:not(.eyebrow),
.final-cta p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 1rem;
}

.hero-note {
  max-width: 620px;
  margin-bottom: 1.6rem;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: clamp(0.25rem, 1vw, 0.75rem);
}

.hero-copy > div {
  width: min(560px, 100%);
}

.hero-visual {
  position: relative;
  z-index: 3;
  width: 100%;
  min-width: 0;
}

.dashboard-shell {
  position: relative;
  padding: 0.85rem;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.dashboard-shell::before,
.map-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent);
}

.dashboard-topbar,
.activity-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dashboard-topbar {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.88rem;
}

.dashboard-topbar div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(74, 222, 128, 0.7);
}

.metric-grid,
.sensor-summary-grid,
.moisture-metrics,
.feature-grid,
.trust-grid {
  display: grid;
  gap: 0.75rem;
}

.metric-grid,
.sensor-summary-grid {
  position: relative;
  z-index: 1;
}

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

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

.metric-grid article,
.feature-card,
.trust-grid article,
.steps article,
.ops-column {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.metric-grid article {
  padding: 1rem;
}

.status-card,
.moisture-card,
.chart-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.status-card,
.moisture-card {
  padding: 0.8rem;
}

.status-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  color: #efe7ff;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
}

.battery-card strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--amber);
  font-size: clamp(2.15rem, 4vw, 3.1rem);
  line-height: 0.95;
}

.battery-icon {
  position: relative;
  width: 24px;
  height: 15px;
  border: 2px solid #b7abc9;
  border-radius: 4px;
}

.battery-icon::after {
  content: "";
  position: absolute;
  top: 4px;
  right: -5px;
  width: 2px;
  height: 5px;
  border-radius: 2px;
  background: #b7abc9;
}

.battery-track {
  height: 12px;
  margin-bottom: 0.55rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.battery-track span {
  display: block;
  width: 50%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #facc15, var(--amber));
}

.status-card small,
.moisture-card small {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.78rem;
}

.signal-reading {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin-bottom: 0.25rem;
}

.signal-reading strong {
  font-size: clamp(2.15rem, 4vw, 3.1rem);
  line-height: 0.95;
}

.signal-reading span {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 1rem;
}

.signal-card p {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0 0 0.25rem;
  color: var(--muted);
  font-family: var(--font-sans);
}

.signal-card b {
  color: var(--red);
}

.signal-bars {
  display: inline-flex;
  align-items: end;
  gap: 3px;
  width: 28px;
  height: 22px;
}

.signal-bars i {
  display: block;
  width: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.22);
}

.signal-bars i:nth-child(1) { height: 6px; background: var(--red); }
.signal-bars i:nth-child(2) { height: 11px; }
.signal-bars i:nth-child(3) { height: 16px; }
.signal-bars i:nth-child(4) { height: 22px; }

.moisture-card {
  z-index: 1;
  margin-top: 0.75rem;
}

.droplet-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--green);
}

.droplet-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.moisture-metrics {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 0.75rem;
}

.moisture-metrics div {
  padding: 0.75rem 0.5rem;
  border: 1px solid rgba(94, 234, 212, 0.1);
  border-radius: 8px;
  background: rgba(74, 222, 128, 0.08);
  text-align: center;
}

.moisture-metrics span {
  display: block;
  margin-bottom: 0.35rem;
  color: #bbf7d0;
  font-family: var(--font-sans);
  font-size: 0.64rem;
  font-weight: 600;
  text-transform: uppercase;
}

.moisture-metrics strong {
  color: var(--green);
  font-size: clamp(1.6rem, 2.7vw, 2.35rem);
  line-height: 1;
}

.moisture-metrics small {
  color: #86efac;
  font-size: 0.5em;
}

.moisture-metrics div:nth-child(2) {
  background: rgba(94, 234, 212, 0.08);
}

.moisture-metrics div:nth-child(2) strong,
.moisture-metrics div:nth-child(2) small {
  color: var(--teal);
}

.mini-chart {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.55rem 0.7rem;
  margin-top: 0.75rem;
  padding: 0.8rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.chart-header,
.chart-axis {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.74rem;
}

.chart-header {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.chart-header span {
  color: #efe7ff;
  font-weight: 600;
  text-transform: uppercase;
}

.chart-header strong {
  color: #bbf7d0;
  font-weight: 600;
}

.chart-body {
  position: relative;
  grid-column: 1;
  height: 132px;
  overflow: hidden;
  border-radius: 6px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 100% 33%, 10% 100%;
}

.chart-axis {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 4.5rem;
  height: 132px;
  padding: 0.1rem 0;
}

.chart-zone {
  position: absolute;
  left: 0;
  right: 0;
}

.chart-zone-hot { top: 0; height: 34%; background: rgba(248, 113, 113, 0.08); }
.chart-zone-good { top: 34%; height: 36%; background: rgba(74, 222, 128, 0.08); }
.chart-zone-dry { bottom: 0; height: 30%; background: rgba(248, 113, 113, 0.06); }

.mini-chart svg,
.chart-plot svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.mini-chart polyline,
.moisture-line,
.temperature-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-chart polyline,
.moisture-line {
  stroke: #67e8b9;
  stroke-width: 5;
}

.limit {
  fill: none;
  stroke-width: 3;
  stroke-dasharray: 11 10;
}

.limit-hot { stroke: #f59e0b; }
.limit-dry { stroke: var(--red); }

.metric-grid span,
.metric-grid small {
  display: block;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.78rem;
}

.metric-grid strong {
  display: block;
  margin: 0.2rem 0;
  font-size: 2rem;
  font-weight: 600;
}

.map-panel {
  position: relative;
  min-height: 300px;
  margin: 1rem 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(59, 26, 120, 0.9), rgba(7, 5, 15, 0.96)),
    var(--panel-strong);
}

.pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 3px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: var(--purple-strong);
  box-shadow: 0 0 0 12px rgba(168, 85, 247, 0.14);
}

.pin-a { left: 22%; top: 26%; }
.pin-b { left: 62%; top: 22%; }
.pin-c { left: 72%; top: 68%; }
.pin-d { left: 38%; top: 58%; }

.map-card {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.2rem;
  width: min(260px, calc(100% - 2rem));
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 3, 10, 0.72);
  backdrop-filter: blur(10px);
}

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

.activity-list {
  display: grid;
  gap: 0.65rem;
}

.activity-list div {
  padding: 0.8rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.activity-list span {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--purple);
}

.activity-list p {
  flex: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.activity-list strong,
.map-card span,
.ops-column span,
.pill-list span,
.stats-band span {
  font-family: var(--font-sans);
}

.content-section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.reality-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
  margin-top: clamp(3rem, 7vw, 5.5rem);
}

.reality-versus {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--green));
  color: #09050f;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.34),
    0 0 0 6px rgba(251, 191, 36, 0.12);
  z-index: 2;
}

.reality-card {
  min-height: 380px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.reality-card h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: 0;
}

.reality-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.reality-card-modura {
  background:
    linear-gradient(135deg, rgba(94, 234, 212, 0.14), rgba(132, 68, 252, 0.2)),
    rgba(255, 255, 255, 0.055);
}

.tour-section {
  position: relative;
  margin-top: clamp(2.5rem, 6vw, 5rem);
  padding: clamp(2rem, 5vw, 3.5rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 138, 61, 0.11), rgba(94, 234, 212, 0.08), rgba(132, 68, 252, 0.14)),
    rgba(255, 255, 255, 0.035);
}

.tour-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(120deg, black, transparent 76%);
}

.tour-section::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  width: 34%;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 138, 61, 0.2), rgba(74, 222, 128, 0.08)),
    rgba(255, 255, 255, 0.035);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
}

.tour-header,
.tour-grid {
  position: relative;
  z-index: 1;
}

.tour-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.6fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: end;
  margin-bottom: 1.5rem;
}

.tour-header h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 3.35rem;
  letter-spacing: 0;
}

.tour-header > p {
  margin-bottom: 0.2rem;
  color: var(--muted);
  font-size: 1.02rem;
}

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

.tour-card {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 1rem;
  min-height: 330px;
  padding: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(206, 185, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    rgba(18, 11, 32, 0.72);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
}

.tour-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--green), var(--purple-strong));
}

.tour-card > span {
  width: fit-content;
  padding: 0.45rem 0.6rem;
  border: 1px solid rgba(255, 138, 61, 0.34);
  border-radius: 8px;
  background: var(--orange-wash);
  color: var(--orange-soft);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tour-card h3 {
  max-width: 340px;
  margin-bottom: 0;
  font-size: 1.55rem;
  line-height: 1.05;
}

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

.tour-meter,
.tour-stack,
.tour-route {
  min-height: 86px;
  margin-top: 0.4rem;
  border-top: 1px solid rgba(206, 185, 255, 0.14);
}

.tour-meter {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(110px, 1fr);
  gap: 1rem;
  align-items: end;
  padding-top: 1rem;
}

.tour-meter strong {
  display: block;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 2rem;
  line-height: 1;
}

.tour-meter small {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.76rem;
}

.tour-meter i {
  position: relative;
  display: block;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.tour-meter i b {
  display: block;
  width: 64%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--green));
}

.tour-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  align-items: end;
  padding-top: 1rem;
}

.tour-stack i {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(206, 185, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #efe7ff;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
}

.tour-stack i:nth-child(2) {
  transform: translateY(-0.5rem);
}

.tour-stack i:nth-child(3) {
  transform: translateY(-1rem);
  border-color: rgba(255, 138, 61, 0.34);
  background: var(--orange-wash);
  color: var(--orange-soft);
}

.tour-route {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-top: 1.7rem;
}

.tour-route::before {
  content: "";
  position: absolute;
  top: calc(1.7rem + 12px);
  left: 12px;
  right: 74px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--green));
}

.tour-route i {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  background: var(--panel);
  box-shadow: 0 0 0 7px rgba(255, 138, 61, 0.1);
}

.tour-route i:nth-child(2) {
  border-color: var(--green);
  box-shadow: 0 0 0 7px rgba(74, 222, 128, 0.1);
}

.tour-route i:nth-child(3) {
  border-color: var(--teal);
  box-shadow: 0 0 0 7px rgba(94, 234, 212, 0.1);
}

.tour-route strong {
  position: relative;
  z-index: 1;
  margin-left: auto;
  padding: 0.45rem 0.6rem;
  border: 1px solid rgba(74, 222, 128, 0.28);
  border-radius: 8px;
  background: rgba(74, 222, 128, 0.1);
  color: #bbf7d0;
  font-family: var(--font-sans);
  font-size: 0.78rem;
}

.product-model-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  margin-top: clamp(3.5rem, 8vw, 6.5rem);
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(94, 234, 212, 0.12), rgba(132, 68, 252, 0.18)),
    var(--bg-soft);
}

.product-model-intro h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: 0;
}

.product-model-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.product-model-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.product-model-grid article {
  min-height: 220px;
  padding: 1.25rem;
  border: 1px solid rgba(206, 185, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.product-model-grid article:first-child {
  background:
    linear-gradient(145deg, rgba(132, 68, 252, 0.2), rgba(74, 222, 128, 0.08)),
    rgba(255, 255, 255, 0.055);
}

.product-model-grid span {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.6rem;
  border: 1px solid rgba(255, 138, 61, 0.34);
  border-radius: 8px;
  background: var(--orange-wash);
  color: var(--orange-soft);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-model-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.product-model-media,
.why-now-media,
.founder-field-photo,
.hub-install-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(206, 185, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.product-model-media {
  margin-top: 1.4rem;
}

.hub-install-photo {
  width: min(100%, 480px);
  margin: 1.25rem auto 0;
}

.product-model-media img,
.why-now-media img,
.founder-field-photo img,
.hub-install-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.product-model-media img,
.founder-field-photo img {
  aspect-ratio: 4 / 3;
}

.why-now-media img {
  aspect-ratio: 3 / 4;
}

.hub-install-photo img {
  aspect-ratio: 1086 / 1448;
}

.product-model-media figcaption,
.why-now-media figcaption,
.founder-field-photo figcaption,
.hub-install-photo figcaption {
  position: static;
  padding: 0.75rem 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 3, 10, 0.62);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
}

.provider-choice-section {
  margin-top: clamp(2.5rem, 6vw, 5rem);
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 14% 18%, rgba(74, 222, 128, 0.12), transparent 24rem),
    rgba(255, 255, 255, 0.035);
}

.provider-choice-section .section-heading {
  max-width: 860px;
}

.provider-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.provider-choice-grid article {
  min-height: 220px;
  padding: 1.25rem;
  border: 1px solid rgba(206, 185, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.provider-choice-grid article:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(132, 68, 252, 0.09), rgba(255, 255, 255, 0.04));
}

.provider-choice-grid article:nth-child(3) {
  background:
    linear-gradient(145deg, rgba(74, 222, 128, 0.08), rgba(255, 255, 255, 0.045));
}

.provider-choice-grid article:nth-child(4) {
  background:
    linear-gradient(145deg, rgba(132, 68, 252, 0.16), rgba(255, 255, 255, 0.045));
}

.provider-choice-grid span {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.6rem;
  border: 1px solid rgba(255, 138, 61, 0.34);
  border-radius: 8px;
  background: var(--orange-wash);
  color: var(--orange-soft);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.provider-choice-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.analytics-section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.platform-visual {
  position: relative;
  min-height: clamp(420px, 56vw, 620px);
  margin-bottom: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.platform-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 3, 10, 0.82), rgba(5, 3, 10, 0.2) 52%, rgba(5, 3, 10, 0.48)),
    linear-gradient(0deg, rgba(5, 3, 10, 0.74), transparent 44%);
}

.platform-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 56%;
  filter: saturate(1.12) contrast(1.03);
}

.platform-overlay {
  position: absolute;
  left: clamp(1rem, 4vw, 2rem);
  bottom: clamp(1rem, 4vw, 2rem);
  z-index: 2;
  width: min(430px, calc(100% - 2rem));
}

.platform-overlay h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.7rem, 3.5vw, 3rem);
  line-height: 1;
}

.platform-overlay p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
}

.platform-callout {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(206, 185, 255, 0.24);
  border-radius: 999px;
  background: rgba(18, 11, 32, 0.72);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.platform-callout span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(74, 222, 128, 0.14);
}

.callout-sensors {
  left: 34%;
  bottom: 27%;
}

.callout-control {
  right: 21%;
  bottom: 35%;
}

.callout-gateway {
  right: 13%;
  top: 35%;
}

.callout-automation {
  left: 52%;
  bottom: 17%;
}

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

.feature-card,
.trust-grid article,
.steps article {
  padding: 1.35rem;
}

.feature-card-expandable {
  padding: 0;
  overflow: hidden;
}

.feature-summary {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 28px;
  gap: 1rem;
  align-items: start;
  padding: 1.35rem;
  list-style: none;
  cursor: pointer;
}

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

.feature-summary:focus-visible {
  outline: 2px solid rgba(94, 234, 212, 0.72);
  outline-offset: -5px;
}

.feature-summary h3 {
  align-self: center;
  margin-bottom: 0;
}

.feature-summary .feature-icon {
  margin-bottom: 0;
}

.feature-toggle {
  position: relative;
  align-self: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(206, 185, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.feature-toggle::before,
.feature-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transform: translate(-50%, -50%);
}

.feature-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 160ms ease, transform 160ms ease;
}

.feature-card-expandable[open] .feature-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.feature-card-expandable > p {
  padding: 0 1.35rem 1.35rem;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 8px;
  background: rgba(132, 68, 252, 0.14);
  color: #e9dcff;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card:nth-child(1) {
  background: rgba(255, 255, 255, 0.035);
}

.feature-card:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(132, 68, 252, 0.07), rgba(255, 255, 255, 0.035));
}

.feature-card:nth-child(3) {
  background:
    linear-gradient(145deg, rgba(132, 68, 252, 0.11), rgba(255, 255, 255, 0.038));
}

.feature-card:nth-child(4) {
  background:
    linear-gradient(145deg, rgba(132, 68, 252, 0.15), rgba(255, 255, 255, 0.04));
}

.feature-card:nth-child(5) {
  background:
    linear-gradient(145deg, rgba(132, 68, 252, 0.2), rgba(255, 255, 255, 0.043));
}

.feature-card:nth-child(6) {
  background:
    linear-gradient(145deg, rgba(132, 68, 252, 0.26), rgba(255, 255, 255, 0.045));
}

.feature-card p,
.trust-grid p,
.steps p {
  margin: 0;
  color: var(--muted);
}

.product-band,
.mobile-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.16), rgba(255, 255, 255, 0.04)),
    var(--bg-soft);
}

.chart-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.chart-card {
  padding: 1.15rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035)),
    var(--panel);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}

.chart-card h3 {
  margin-bottom: 0.9rem;
  color: #efe7ff;
}

.chart-plot {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-left: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(5, 3, 10, 0.34);
}

.chart-plot .area {
  opacity: 1;
}

.saturated-area { fill: rgba(248, 113, 113, 0.08); }
.target-area { fill: rgba(74, 222, 128, 0.075); }
.dry-area { fill: rgba(248, 113, 113, 0.055); }

.grid-lines path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.09);
  stroke-dasharray: 6 9;
  stroke-width: 1.3;
}

.chart-plot .moisture-line {
  stroke-width: 4;
  filter: drop-shadow(0 0 9px rgba(74, 222, 128, 0.25));
}

.temperature-line {
  stroke: #fb7185;
  stroke-width: 4;
  filter: drop-shadow(0 0 9px rgba(248, 113, 113, 0.22));
}

.threshold {
  position: absolute;
  z-index: 2;
  right: 0.8rem;
  padding: 0.12rem 0.35rem;
  border-radius: 4px;
  background: rgba(18, 11, 32, 0.72);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
}

.threshold.saturated {
  top: 27%;
  color: #fbbf24;
}

.threshold.dry {
  top: 66%;
  color: var(--red);
}

.chart-probe-b .threshold.saturated { top: 31%; }
.chart-probe-b .threshold.dry { top: 67%; }
.chart-average .threshold.saturated { top: 33%; }
.chart-average .threshold.dry { top: 67%; }

.chart-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  justify-content: space-between;
  padding-top: 0.9rem;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.9rem;
}

.chart-footer b {
  color: var(--text);
}

.ops-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.field-photo-card {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.field-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 3, 10, 0.05), rgba(5, 3, 10, 0.62)),
    linear-gradient(90deg, rgba(132, 68, 252, 0.24), transparent 48%);
  pointer-events: none;
}

.field-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 8% 60%;
  filter: saturate(0.96) contrast(1.04);
}

.field-photo-overlay {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 4.75rem;
  z-index: 1;
  display: grid;
  gap: 0.2rem;
  width: min(360px, calc(100% - 2rem));
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 3, 10, 0.72);
  backdrop-filter: blur(10px);
}

.field-photo-overlay span,
.field-ops-strip span {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.field-photo-overlay span {
  color: var(--orange-soft);
}

.field-photo-overlay strong {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.15;
}

.field-ops-strip {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.field-ops-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(132, 68, 252, 0.22);
  color: #efe7ff;
  text-align: center;
}

.ops-column {
  display: grid;
  gap: 0.75rem;
  min-height: 280px;
  padding: 1rem;
}

.ops-column strong {
  color: #eadfff;
}

.ops-column span,
.pill-list span {
  display: block;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.9rem;
}

.truck-roll-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 0;
}

.truck-roll-image {
  position: relative;
  min-height: clamp(420px, 48vw, 620px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.truck-roll-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5, 3, 10, 0.78), transparent 50%),
    linear-gradient(115deg, rgba(132, 68, 252, 0.22), transparent 46%);
  pointer-events: none;
}

.truck-roll-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 62%;
  filter: saturate(1.08) contrast(1.04);
}

.truck-roll-badge {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: grid;
  gap: 0.25rem;
  width: min(360px, calc(100% - 2rem));
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(5, 3, 10, 0.78);
  backdrop-filter: blur(14px);
}

.truck-roll-badge span {
  color: var(--orange-soft);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.truck-roll-badge strong {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-kerning: normal;
  line-height: 1;
}

.truck-roll-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.site-questions {
  margin-top: 1.5rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(74, 222, 128, 0.08), rgba(132, 68, 252, 0.1)),
    rgba(255, 255, 255, 0.045);
}

.site-questions h3 {
  margin-bottom: 1rem;
  color: #f5f3ff;
}

.site-questions ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-questions li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--muted);
}

.site-questions li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.1);
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.workflow-image {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.workflow-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 30%, rgba(5, 3, 10, 0.74)),
    linear-gradient(90deg, rgba(132, 68, 252, 0.18), transparent 50%);
  pointer-events: none;
}

.workflow-image img,
.workflow-image video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.workflow-image figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 3, 10, 0.72);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.workflow-video-card::after {
  background: linear-gradient(180deg, rgba(5, 3, 10, 0.58), transparent 44%);
}

.workflow-image.workflow-video-card figcaption {
  top: 1rem;
  bottom: auto;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 8px;
  background:
    radial-gradient(circle at 30% 20%, rgba(74, 222, 128, 0.18), transparent 55%),
    rgba(132, 68, 252, 0.08);
  color: #e9dcff;
}

.steps article:nth-child(1) .step-icon {
  background: rgba(132, 68, 252, 0.02);
}

.steps article:nth-child(2) .step-icon {
  background:
    radial-gradient(circle at 30% 20%, rgba(74, 222, 128, 0.1), transparent 55%),
    rgba(132, 68, 252, 0.08);
}

.steps article:nth-child(3) .step-icon {
  background:
    radial-gradient(circle at 30% 20%, rgba(74, 222, 128, 0.14), transparent 55%),
    rgba(132, 68, 252, 0.15);
}

.steps article:nth-child(4) .step-icon {
  background:
    radial-gradient(circle at 30% 20%, rgba(74, 222, 128, 0.18), transparent 55%),
    rgba(132, 68, 252, 0.24);
}

.step-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.steps article:nth-child(1) {
  background: rgba(255, 255, 255, 0.035);
}

.steps article:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(132, 68, 252, 0.08), rgba(255, 255, 255, 0.035));
}

.steps article:nth-child(3) {
  background:
    linear-gradient(145deg, rgba(132, 68, 252, 0.14), rgba(255, 255, 255, 0.04));
}

.steps article:nth-child(4) {
  background:
    linear-gradient(145deg, rgba(132, 68, 252, 0.24), rgba(255, 255, 255, 0.045));
}

.mobile-section {
  grid-template-columns: minmax(360px, 0.95fr) 1fr;
  margin-top: clamp(3.5rem, 8vw, 6.5rem);
}

.mobile-showcase {
  position: relative;
  width: min(100%, 560px);
  min-height: 610px;
  justify-self: center;
}

.mobile-showcase::before {
  content: "";
  position: absolute;
  inset: 3.5rem 1.4rem 2.8rem;
  border: 1px solid rgba(168, 85, 247, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 24% 22%, rgba(132, 68, 252, 0.36), transparent 34%),
    radial-gradient(circle at 84% 70%, rgba(74, 222, 128, 0.2), transparent 35%),
    rgba(255, 255, 255, 0.04);
  transform: rotate(-2deg);
}

.mobile-shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 26px;
  background: #f8fafc;
  box-shadow: var(--shadow);
}

.mobile-shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
}

.mobile-shot figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(5, 3, 10, 0.78);
  color: #f5f3ff;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.mobile-shot-primary {
  z-index: 2;
  left: 0;
  top: 0;
  width: min(68%, 360px);
}

.mobile-shot-secondary {
  z-index: 1;
  right: 0;
  top: 88px;
  width: min(58%, 310px);
  transform: rotate(2deg);
}

.mobile-shot-secondary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 3, 10, 0.08), transparent 38%);
  pointer-events: none;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.stats-band div {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028)),
    rgba(255, 255, 255, 0.035);
}

.stats-band div::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--green));
}

.stats-band strong {
  display: block;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  overflow-wrap: normal;
  word-break: normal;
}

.stats-band span {
  color: var(--muted);
  font-size: 0.95rem;
  overflow-wrap: normal;
  word-break: normal;
}

.why-now-section {
  margin-top: clamp(3.5rem, 8vw, 6.5rem);
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 16%, rgba(94, 234, 212, 0.12), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(132, 68, 252, 0.16), transparent 26rem),
    rgba(255, 255, 255, 0.035);
}

.why-now-section .section-heading {
  max-width: 900px;
}

.why-now-proof {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) 1fr;
  gap: 1rem;
  align-items: start;
}

.why-now-media {
  width: min(100%, 420px);
  justify-self: center;
}

.why-now-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.why-now-grid article {
  min-height: 210px;
  padding: 1.25rem;
  border: 1px solid rgba(206, 185, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.why-now-grid span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--orange);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
}

.why-now-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.founder-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: start;
  margin-bottom: 1rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(94, 234, 212, 0.16), rgba(132, 68, 252, 0.18)),
    radial-gradient(circle at 16% 18%, rgba(74, 222, 128, 0.16), transparent 24rem),
    var(--bg-soft);
}

.founder-band h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3.5vw, 3.4rem);
  letter-spacing: 0;
}

.founder-visual-stack,
.founder-profile {
  display: grid;
  gap: 1rem;
}

.founder-profile img {
  width: min(220px, 100%);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(94, 234, 212, 0.28);
  border-radius: 8px;
  background: #9be7f8;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
}

.founder-profile div {
  display: grid;
  gap: 0.15rem;
  font-family: var(--font-sans);
}

.founder-profile strong {
  color: var(--white);
  font-size: 1.05rem;
}

.founder-profile span {
  color: var(--muted);
  font-size: 0.9rem;
}

.founder-copy {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.02rem;
}

.founder-copy p {
  margin-bottom: 1rem;
}

.founder-proof-list {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

.founder-proof-list li {
  position: relative;
  padding-left: 1.15rem;
}

.founder-proof-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(74, 222, 128, 0.1);
}

.founder-field-photo {
  margin: 0;
}

.founder-copy strong {
  display: block;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.1;
  letter-spacing: 0;
  white-space: nowrap;
}

.beta-section {
  margin-bottom: 1rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(132, 68, 252, 0.14), rgba(94, 234, 212, 0.09)),
    radial-gradient(circle at 18% 18%, rgba(74, 222, 128, 0.12), transparent 24rem),
    rgba(255, 255, 255, 0.035);
}

.beta-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: end;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.beta-header h2 {
  max-width: 760px;
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: 0;
}

.beta-subhead {
  margin-bottom: 0;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.25;
}

.beta-header > p {
  margin-bottom: 0.2rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.beta-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1rem, 3vw, 1.5rem);
  align-items: stretch;
}

.beta-visual {
  position: relative;
  min-height: 720px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(206, 185, 255, 0.16);
  border-radius: 8px;
  background: var(--panel);
}

.beta-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 3, 10, 0.72), transparent 44%);
  pointer-events: none;
}

.beta-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.beta-visual figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(5, 3, 10, 0.72);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(12px);
}

.beta-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1rem;
  min-width: 0;
}

.beta-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.beta-fit-grid article {
  min-height: 154px;
  padding: 1rem;
  border: 1px solid rgba(206, 185, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.beta-fit-grid span {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.42rem 0.58rem;
  border: 1px solid rgba(255, 138, 61, 0.32);
  border-radius: 8px;
  background: var(--orange-wash);
  color: var(--orange-soft);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.beta-fit-grid strong {
  display: block;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.2;
}

.beta-fit-grid p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.beta-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(206, 185, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(5, 3, 10, 0.42);
}

.beta-form-header h3 {
  margin-bottom: 0.3rem;
}

.beta-form-header p,
.beta-form-note,
.beta-form-status {
  margin-bottom: 0;
}

.beta-form-header p,
.beta-form-note {
  color: var(--muted);
}

.beta-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.beta-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
}

.beta-form .beta-full {
  grid-column: 1 / -1;
}

.beta-form input,
.beta-form select,
.beta-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.72rem 0.78rem;
  border: 1px solid rgba(206, 185, 255, 0.2);
  border-radius: 8px;
  background: rgba(5, 3, 10, 0.62);
  color: var(--white);
  font: inherit;
}

.beta-form textarea {
  min-height: 104px;
  resize: vertical;
}

.beta-form select {
  color: var(--white);
}

.beta-form input::placeholder,
.beta-form textarea::placeholder {
  color: rgba(185, 173, 201, 0.72);
}

.beta-form input:focus,
.beta-form select:focus,
.beta-form textarea:focus {
  outline: 2px solid rgba(132, 68, 252, 0.5);
  outline-offset: 2px;
}

.beta-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--muted);
}

.beta-form-checkbox input {
  flex: 0 0 auto;
  width: 18px;
  min-height: 18px;
  margin-top: 0.2rem;
  padding: 0;
  border-radius: 4px;
  accent-color: var(--purple);
}

.beta-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.beta-form-status {
  min-height: 1.4rem;
  color: #ccfbf1;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
}

.beta-form-status.is-error {
  color: #fecaca;
}

.beta-form-note {
  font-size: 0.78rem;
}

.button:disabled {
  cursor: progress;
  opacity: 0.68;
  transform: none;
}

.join-popup {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.join-popup[hidden] {
  display: none;
}

body.join-popup-open {
  overflow: hidden;
}

.join-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 3, 10, 0.74);
  backdrop-filter: blur(10px);
}

.join-popup-dialog {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid rgba(206, 185, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(132, 68, 252, 0.18), rgba(94, 234, 212, 0.08)),
    rgba(18, 11, 32, 0.96);
  box-shadow: var(--shadow);
}

.join-popup-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: inherit;
  cursor: pointer;
}

.join-popup-close span {
  font-size: 1.25rem;
  line-height: 1;
}

.join-popup-content {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 1.4rem);
  align-items: center;
  padding-right: 2.4rem;
}

.join-popup-photo {
  width: 118px;
  height: 156px;
  border: 1px solid rgba(206, 185, 255, 0.22);
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.join-popup h2 {
  max-width: 460px;
  margin-bottom: 0.85rem;
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: 0;
}

.join-popup p:not(.eyebrow) {
  margin-bottom: 1rem;
  color: var(--muted);
}

.join-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

@media (max-width: 640px) {
  .join-popup {
    align-items: center;
    padding: 0.75rem;
  }

  .join-popup-dialog {
    width: min(420px, 100%);
    padding: 0.95rem;
  }

  .join-popup-content {
    grid-template-columns: 82px minmax(0, 1fr);
    grid-template-areas:
      "photo label"
      "photo title"
      "copy copy";
    gap: 0.25rem 0.85rem;
    align-items: start;
    padding-right: 2.35rem;
  }

  .join-popup-photo {
    grid-area: photo;
    width: 82px;
    height: 112px;
  }

  .join-popup-content > div {
    display: contents;
  }

  .join-popup-content .eyebrow {
    grid-area: label;
    margin-bottom: 0.25rem;
  }

  .join-popup h2 {
    grid-area: title;
    margin-bottom: 0;
    padding-right: 0;
    font-size: 1.45rem;
    line-height: 1.08;
  }

  .join-popup p:not(.eyebrow) {
    grid-area: copy;
    margin: 0.85rem 0 0;
  }

  .join-popup-actions {
    margin-top: 1rem;
  }
}

.final-cta {
  margin-bottom: 4rem;
  padding: clamp(3rem, 7vw, 5rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.22), rgba(5, 3, 10, 0.94)),
    var(--panel);
  text-align: center;
}

.final-cta h2 {
  letter-spacing: 0;
}

.final-cta .cta-row {
  justify-content: center;
  flex-wrap: wrap;
}

.integration-main {
  display: grid;
  gap: clamp(3.5rem, 8vw, 6.5rem);
}

.integration-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5.5rem) 0 0;
  isolation: isolate;
}

.integration-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 12%, rgba(94, 234, 212, 0.18), transparent 28rem),
    radial-gradient(circle at 82% 20%, rgba(132, 68, 252, 0.28), transparent 34rem);
}

.integration-hero-layout {
  width: min(1360px, calc(100% - 2rem));
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
}

.integration-page .integration-hero-layout {
  width: min(1180px, calc(100% - 2rem));
  grid-template-columns: minmax(360px, 0.95fr) minmax(340px, 0.75fr);
}

.integration-hero-copy h1 {
  max-width: 680px;
}

.integration-hero-visual {
  position: relative;
  aspect-ratio: 1672 / 941;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(206, 185, 255, 0.22);
  border-radius: 8px;
  background: #f7f6fb;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.38);
}

.integration-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(132, 68, 252, 0.16), transparent 34%, transparent 68%, rgba(94, 234, 212, 0.1));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.integration-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.03) contrast(1.02);
}

.integration-hero-portrait {
  width: min(100%, 520px);
  justify-self: center;
  aspect-ratio: 1086 / 1448;
  background: #f8f7fb;
}

.integration-hero-portrait img {
  object-fit: cover;
}

.integration-position,
.sensor-expansion,
.software-layer {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.integration-position {
  grid-template-columns: minmax(0, 1fr) minmax(200px, 260px);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(94, 234, 212, 0.12), rgba(132, 68, 252, 0.16)),
    var(--bg-soft);
}

.integration-position-copy {
  display: grid;
  gap: 0.95rem;
  max-width: 760px;
}

.integration-position h2,
.sensor-expansion h2,
.software-layer h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: 0;
}

.integration-position .eyebrow,
.integration-position h2 {
  margin-bottom: 0;
}

.integration-position h2 {
  font-size: clamp(2rem, 3.1vw, 2.8rem);
}

.integration-position-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(224, 214, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(6, 8, 18, 0.24);
  justify-self: end;
  width: min(100%, 260px);
}

.integration-position-media img {
  display: block;
  width: 100%;
  height: auto;
}

.integration-position-text,
.sensor-expansion p:not(.eyebrow),
.software-layer-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.integration-position-text {
  max-width: 650px;
  margin: 0;
}

.integration-value-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.integration-value-card {
  grid-column: span 3;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.integration-value-card-wide {
  grid-column: span 6;
  background:
    linear-gradient(135deg, rgba(132, 68, 252, 0.18), rgba(74, 222, 128, 0.08)),
    rgba(255, 255, 255, 0.055);
}

.integration-value-card > span,
.integration-timeline span,
.software-layer-board span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  min-height: 2rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 138, 61, 0.34);
  border-radius: 8px;
  background: var(--orange-wash);
  color: var(--orange-soft);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.integration-value-card h3 {
  font-size: 1.35rem;
}

.integration-value-card strong {
  display: block;
  margin-bottom: 0.7rem;
  color: #efe7ff;
  font-family: var(--font-sans);
  line-height: 1.35;
}

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

.integration-timeline-section {
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.16), rgba(255, 255, 255, 0.04)),
    var(--bg-soft);
}

.integration-timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.85rem;
}

.integration-timeline div {
  position: relative;
  min-height: 160px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.integration-timeline div::after {
  content: "";
  position: absolute;
  top: 2rem;
  right: -0.85rem;
  width: 0.85rem;
  height: 1px;
  background: rgba(206, 185, 255, 0.22);
}

.integration-timeline div:last-child::after {
  display: none;
}

.integration-timeline strong {
  display: block;
  color: var(--white);
  font-family: var(--font-sans);
  line-height: 1.25;
}

.comparison-grid,
.software-layer-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.comparison-grid article,
.software-layer-board article {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.comparison-grid article:nth-child(2),
.software-layer-board article:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(74, 222, 128, 0.1), rgba(132, 68, 252, 0.16)),
    rgba(255, 255, 255, 0.055);
}

.comparison-grid ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-grid li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--muted);
}

.comparison-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.sensor-expansion {
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(94, 234, 212, 0.14), rgba(132, 68, 252, 0.14)),
    var(--bg-soft);
}

.sensor-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.sensor-chip-grid span {
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(206, 185, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: #efe7ff;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
}

.software-layer {
  align-items: stretch;
}

.software-layer-board article {
  display: grid;
  align-content: center;
  min-height: 240px;
}

.software-layer-board span {
  width: fit-content;
}

.software-layer-board p {
  margin-bottom: 0;
  color: var(--muted);
}

.integration-cta-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
}

.integration-cta-list span {
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(206, 185, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.9rem;
}

.hub-hero::before {
  background:
    radial-gradient(circle at 20% 12%, rgba(74, 222, 128, 0.18), transparent 28rem),
    radial-gradient(circle at 82% 20%, rgba(94, 234, 212, 0.2), transparent 30rem),
    radial-gradient(circle at 62% 0%, rgba(132, 68, 252, 0.24), transparent 34rem);
}

.hub-page .integration-hero-layout {
  width: min(1180px, calc(100% - 2rem));
  grid-template-columns: minmax(360px, 0.95fr) minmax(340px, 0.75fr);
}

.hub-hero-visual img {
  object-position: center;
}

.hub-position {
  background:
    linear-gradient(135deg, rgba(74, 222, 128, 0.12), rgba(132, 68, 252, 0.16)),
    var(--bg-soft);
}

.hub-paths {
  display: grid;
  gap: 1.5rem;
}

.hub-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hub-path-grid article {
  min-height: 260px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.hub-path-grid article:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(94, 234, 212, 0.1), rgba(132, 68, 252, 0.16)),
    rgba(255, 255, 255, 0.055);
}

.hub-path-grid span {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.6rem;
  border: 1px solid rgba(255, 138, 61, 0.34);
  border-radius: 8px;
  background: var(--orange-wash);
  color: var(--orange-soft);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hub-path-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.hub-sensors {
  background:
    linear-gradient(135deg, rgba(74, 222, 128, 0.14), rgba(94, 234, 212, 0.12), rgba(132, 68, 252, 0.14)),
    var(--bg-soft);
}

.hub-board article:nth-child(1) {
  background:
    linear-gradient(145deg, rgba(132, 68, 252, 0.14), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.055);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 4vw, 3.5rem);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-credit {
  display: grid;
  gap: 0.25rem;
  max-width: 760px;
  text-align: right;
}

.footer-credit span:last-child {
  font-size: 0.84rem;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
  }

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

  .site-header.is-menu-open .nav-links,
  .site-header.is-menu-open .header-actions {
    display: flex;
    flex: 1 0 100%;
  }

  .site-header.is-menu-open .nav-links {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding-top: 0.5rem;
    border-top: 1px solid var(--line);
  }

  .site-header.is-menu-open .nav-links a {
    padding: 0.85rem 0;
  }

  .site-header.is-menu-open .header-actions {
    align-items: stretch;
    gap: 0.75rem;
  }

  .site-header.is-menu-open .header-actions .text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.55rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: transparent;
    color: var(--white);
  }

  .product-band,
  .reality-section,
  .product-model-section,
  .why-now-proof,
  .founder-band,
  .beta-header,
  .beta-layout,
  .mobile-section,
  .truck-roll-section,
  .workflow-layout,
  .integration-hero-layout,
  .integration-position,
  .sensor-expansion,
  .software-layer {
    grid-template-columns: 1fr;
  }

  .integration-position {
    align-items: start;
  }

  .integration-position-copy {
    max-width: none;
  }

  .integration-position-media {
    justify-self: center;
    width: min(100%, 300px);
  }

  .integration-position-text {
    max-width: none;
    justify-self: start;
  }

  .beta-header {
    align-items: start;
  }

  .tour-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .tour-header h2 {
    font-size: 2.8rem;
  }

  .beta-header > p {
    max-width: 720px;
  }

  .beta-visual {
    min-height: 560px;
  }

  .integration-hero-layout {
    width: min(820px, calc(100% - 2rem));
  }

  .integration-page .integration-hero-layout {
    width: min(720px, calc(100% - 2rem));
    grid-template-columns: 1fr;
  }

  .hub-page .integration-hero-layout {
    width: min(820px, calc(100% - 2rem));
    grid-template-columns: 1fr;
  }

  .integration-hero-visual {
    min-height: 0;
  }

  .reality-card {
    min-height: auto;
  }

  .reality-versus {
    top: 50%;
  }

  .hero {
    padding-bottom: 2rem;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(5, 3, 10, 0.9), rgba(5, 3, 10, 0.4)),
      linear-gradient(0deg, var(--bg), rgba(5, 3, 10, 0.12) 44%);
  }

  .hero-layout {
    grid-template-columns: 1fr;
    width: min(720px, calc(100% - 2rem));
  }

  .hero-visual {
    width: 100%;
  }

  .platform-visual {
    min-height: 420px;
  }

  .workflow-image img,
  .workflow-image video {
    min-height: 420px;
  }

  .platform-callout {
    font-size: 0.76rem;
  }

  .callout-sensors { left: 40%; bottom: 26%; }
  .callout-control { right: 8%; bottom: 36%; }
  .callout-gateway { right: 6%; top: 30%; }
  .callout-automation { left: 54%; bottom: 15%; }

  .feature-grid,
  .provider-choice-grid,
  .why-now-grid,
  .steps,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ops-board,
  .stats-band,
  .chart-grid,
  .comparison-grid,
  .software-layer-board,
  .hub-path-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .integration-timeline div:nth-child(3)::after,
  .integration-timeline div:nth-child(6)::after {
    display: none;
  }

  .mobile-showcase {
    min-height: 560px;
  }

  .mobile-shot-primary {
    width: min(62%, 340px);
  }

  .mobile-shot-secondary {
    width: min(52%, 300px);
  }
}

@media (max-width: 640px) {
  :root {
    --announcement-height: 72px;
  }

  .top-announcement {
    flex-direction: column;
    gap: 0.25rem;
    min-height: var(--announcement-height);
    padding: 0.45rem 0.75rem;
    font-size: 0.78rem;
  }

  .top-announcement span {
    white-space: normal;
  }

  .site-header {
    position: sticky;
    align-items: center;
    flex-direction: row;
  }

  .header-actions,
  .cta-row {
    flex-wrap: wrap;
  }

  .site-header.is-menu-open .header-actions {
    width: 100%;
  }

  .button,
  .text-link {
    flex: 1 1 auto;
  }

  .hero {
    min-height: auto;
    padding-top: 1.25rem;
  }

  .hero-photo {
    object-position: 58% center;
  }

  .hero-copy {
    padding-top: 1rem;
    padding-bottom: 1.5rem;
  }

  .founder-copy strong {
    white-space: normal;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
    line-height: 1;
  }

  .metric-grid,
  .sensor-summary-grid,
  .moisture-metrics,
  .feature-grid,
  .tour-grid,
  .reality-section,
  .product-model-grid,
  .provider-choice-grid,
  .why-now-proof,
  .why-now-grid,
  .workflow-layout,
  .steps,
  .ops-board,
  .stats-band,
  .trust-grid,
  .chart-grid,
  .integration-value-grid,
  .integration-timeline,
  .comparison-grid,
  .software-layer-board,
  .hub-path-grid {
    grid-template-columns: 1fr;
  }

  .integration-main {
    gap: 3rem;
  }

  .integration-hero {
    padding-top: 2rem;
  }

  .integration-hero-visual {
    min-height: 0;
  }

  .integration-value-card,
  .integration-value-card-wide {
    grid-column: auto;
  }

  .integration-timeline div {
    min-height: auto;
  }

  .integration-timeline div::after {
    display: none;
  }

  .workflow-image img,
  .workflow-image video {
    min-height: 360px;
  }

  .battery-card strong,
  .signal-reading strong {
    font-size: 2.35rem;
  }

  .moisture-metrics strong {
    font-size: 2rem;
  }

  .chart-plot {
    height: 210px;
  }

  .reality-section {
    gap: 0;
  }

  .reality-versus {
    top: calc(50% - 0.5rem);
  }

  .product-band,
  .reality-section,
  .tour-section,
  .product-model-section,
  .provider-choice-section,
  .why-now-section,
  .founder-band,
  .beta-section,
  .mobile-section,
  .truck-roll-section,
  .integration-position,
  .integration-timeline-section,
  .sensor-expansion,
  .final-cta {
    width: min(100% - 1rem, 1180px);
    padding: 1rem;
  }

  .tour-section::after {
    width: 62%;
    opacity: 0.6;
  }

  .tour-card {
    min-height: auto;
  }

  .tour-header h2 {
    font-size: 2rem;
  }

  .tour-card h3 {
    font-size: 1.35rem;
  }

  .truck-roll-badge {
    left: 0.75rem;
    right: 0.75rem;
    width: auto;
    padding: 0.85rem;
  }

  .truck-roll-badge strong {
    font-size: 1.5rem;
    white-space: nowrap;
  }

  .truck-roll-badge span {
    font-size: 0.72rem;
  }

  .why-now-grid article {
    min-height: auto;
  }

  .platform-visual {
    min-height: 520px;
  }

  .platform-visual::after {
    background:
      linear-gradient(0deg, rgba(5, 3, 10, 0.9), rgba(5, 3, 10, 0.14) 72%),
      linear-gradient(90deg, rgba(5, 3, 10, 0.38), transparent);
  }

  .platform-visual img {
    object-position: center;
  }

  .platform-callout {
    display: none;
  }

  .beta-fit-grid,
  .beta-form-grid {
    grid-template-columns: 1fr;
  }

  .beta-visual {
    min-height: 0;
  }

  .beta-visual::after {
    display: none;
  }

  .beta-visual img {
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .beta-visual figcaption {
    position: static;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    background: rgba(5, 3, 10, 0.62);
    backdrop-filter: none;
  }

  .mobile-showcase {
    display: grid;
    gap: 1rem;
    min-height: 0;
  }

  .mobile-showcase::before {
    inset: 1rem;
  }

  .mobile-shot,
  .mobile-shot-primary,
  .mobile-shot-secondary {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    transform: none;
  }

  .mobile-shot img {
    height: auto;
  }

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

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

@media (max-width: 360px) {
  .truck-roll-badge strong {
    font-size: 1.35rem;
  }
}
