@font-face {
  font-family: "Space Grotesk";
  src: url("./assets/fonts/space-grotesk-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: optional;
}

@font-face {
  font-family: "Fraunces";
  src: url("./assets/fonts/fraunces-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
}

:root {
  --bg: #071613;
  --bg-soft: #10201d;
  --bg-elevated: rgba(13, 26, 23, 0.82);
  --panel: rgba(17, 31, 27, 0.74);
  --panel-strong: rgba(20, 37, 32, 0.92);
  --line: rgba(157, 221, 177, 0.18);
  --line-strong: rgba(157, 221, 177, 0.32);
  --text: #eef7ef;
  --muted: #afc4b3;
  --accent: #42d392;
  --accent-strong: #0fbf80;
  --accent-gold: #ffbc42;
  --accent-blue: #5da4ff;
  --accent-root: #7fddff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(48, 128, 88, 0.34), transparent 34%),
    radial-gradient(circle at 85% 12%, rgba(47, 96, 180, 0.24), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(255, 188, 66, 0.08), transparent 26%),
    linear-gradient(180deg, #071613 0%, #0a1412 45%, #09110f 100%);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -56px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 999px;
  background: #eef7ef;
  color: #071613;
  font-weight: 700;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

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

img {
  height: auto;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(255, 188, 66, 0.9);
  outline-offset: 4px;
}

.page-shell {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 18px 0 0;
  padding: 16px 20px;
  background: rgba(8, 18, 16, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 0.96rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button-primary {
  color: #062019;
  background: linear-gradient(135deg, #80efc6, var(--accent));
  box-shadow: 0 20px 40px rgba(66, 211, 146, 0.18);
}

.button-secondary,
.button-ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
}

.button-small {
  min-height: 40px;
  padding-inline: 18px;
  font-size: 0.92rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 36px;
  align-items: center;
  padding: 64px 0 26px;
}

.hero-copy h1,
.section-heading h2,
.companion-copy h2,
.cta-copy h2,
.contact-card h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(3.2rem, 6vw, 6rem);
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-text,
.section-heading p,
.companion-copy p,
.cta-copy p,
.contact-card p,
.feature-card p,
.use-case p,
.why-card p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 62ch;
  margin: 24px 0 0;
  font-size: 1.06rem;
}

.hero-actions,
.companion-actions,
.cta-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.metric-card,
.feature-card,
.use-case,
.why-card,
.hero-panel,
.contact-card,
.final-cta,
.signal-bar,
.companion-screen {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.metric-card {
  display: grid;
  gap: 8px;
  min-height: 124px;
  padding: 18px;
  border-radius: var(--radius-md);
}

.metric-value {
  font-size: 1.24rem;
  font-weight: 700;
}

.metric-label {
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.94rem;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: var(--radius-xl);
}

.panel-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 14px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.tray-body {
  fill: rgba(28, 48, 84, 0.85);
  stroke: rgba(119, 188, 255, 0.28);
  stroke-width: 2;
}

.tray-inner {
  fill: rgba(14, 33, 54, 0.82);
}

.tray-grid path {
  stroke: rgba(128, 175, 255, 0.12);
  stroke-width: 2;
}

.leaf {
  fill: url(#leafFill);
  transform-origin: center;
  animation: leafPulse 4.8s ease-in-out infinite;
}

.leaf-a { animation-delay: -0.8s; }
.leaf-b { animation-delay: -2.1s; }
.leaf-c { animation-delay: -3.4s; }

.rosette-core {
  fill: rgba(243, 255, 216, 0.94);
}

.scan-boxes rect {
  fill: none;
  stroke: rgba(255, 188, 66, 0.84);
  stroke-width: 2;
  stroke-dasharray: 8 6;
  animation: boxBlink 2.8s linear infinite;
}

.scan-boxes rect:nth-child(2) { animation-delay: -0.5s; }
.scan-boxes rect:nth-child(3) { animation-delay: -1.1s; }
.scan-boxes rect:nth-child(4) { animation-delay: -1.6s; }
.scan-boxes rect:nth-child(5) { animation-delay: -2s; }

.phone-body rect:first-child {
  fill: rgba(244, 248, 255, 0.9);
}

.phone-screen {
  fill: rgba(12, 25, 48, 0.96);
}

.phone-button {
  fill: rgba(31, 47, 79, 0.48);
}

.phone-ui {
  fill: none;
  stroke: rgba(110, 231, 200, 0.6);
  stroke-width: 4;
  stroke-linecap: round;
}

.scan-beam path {
  fill: none;
  stroke: rgba(110, 231, 200, 0.72);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 10 12;
  animation: beamFlow 3.2s linear infinite;
}

.beam-pulse {
  fill: url(#beamGlow);
  animation: beamPulse 2.7s ease-out infinite;
}

.feature-tags rect {
  fill: rgba(255, 255, 255, 0.04);
  stroke: rgba(255, 255, 255, 0.08);
}

.feature-tags text,
.analysis-copy text {
  fill: rgba(234, 244, 236, 0.88);
  font-size: 14px;
  font-family: "Space Grotesk", sans-serif;
  text-anchor: middle;
}

.dish-frame {
  fill: rgba(255, 255, 255, 0.04);
  stroke: rgba(127, 221, 255, 0.28);
  stroke-width: 2;
}

.root-line {
  fill: none;
  stroke: rgba(229, 243, 214, 0.82);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 12 10;
  animation: rootGrow 5.6s ease-in-out infinite;
}

.root-line.strong {
  stroke-width: 5;
}

.shoot {
  fill: #8fe38b;
}

.overlay-box {
  fill: none;
  stroke: rgba(127, 221, 255, 0.9);
  stroke-width: 2.5;
  stroke-dasharray: 7 7;
}

.overlay-root {
  fill: none;
  stroke: rgba(255, 188, 66, 0.95);
  stroke-width: 4;
  stroke-linecap: round;
}

.overlay-pulse {
  fill: none;
  stroke: rgba(127, 221, 255, 0.42);
  stroke-width: 2;
  animation: ringPulse 2.8s ease-out infinite;
}

.signal-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 24px 0 0;
  padding: 16px 18px;
  border-radius: 999px;
  color: var(--muted);
}

.signal-bar span {
  position: relative;
  padding-right: 14px;
}

.signal-bar span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
}

.signal-bar span:last-child::after {
  display: none;
}

.section {
  padding: 100px 0 0;
}

.signal-bar,
.evidence-section,
.section-features,
.companion-section,
.use-cases-section,
.why-section,
.final-cta,
.contact-section {
  content-visibility: auto;
}

.signal-bar {
  contain-intrinsic-size: 120px;
}

.evidence-section,
.section-features,
.companion-section,
.use-cases-section,
.why-section,
.final-cta,
.contact-section {
  contain-intrinsic-size: 900px;
}

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

.section-heading h2,
.companion-copy h2,
.cta-copy h2,
.contact-card h2 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.feature-grid,
.use-case-grid,
.why-grid {
  display: grid;
  gap: 18px;
}

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

.evidence-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.evidence-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.02);
}

.evidence-card figcaption {
  display: grid;
  gap: 8px;
  padding: 18px 20px 20px;
}

.evidence-card figcaption strong {
  font-size: 1.05rem;
}

.evidence-card figcaption span {
  color: var(--muted);
  line-height: 1.55;
}

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

.feature-card,
.use-case,
.why-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.feature-card h3,
.use-case h3,
.why-card h3 {
  margin: 18px 0 12px;
  font-size: 1.25rem;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.24), transparent 36%),
    linear-gradient(135deg, rgba(66, 211, 146, 0.35), rgba(93, 164, 255, 0.26));
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
}

.icon-lidar::before {
  inset: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.icon-lidar::after {
  left: 24px;
  top: 8px;
  width: 4px;
  height: 36px;
  background: rgba(255, 255, 255, 0.85);
}

.icon-roots::before {
  left: 24px;
  top: 8px;
  width: 4px;
  height: 36px;
  background: rgba(255, 255, 255, 0.84);
}

.icon-roots::after {
  left: 13px;
  top: 24px;
  width: 26px;
  height: 18px;
  border-left: 3px solid rgba(255, 255, 255, 0.9);
  border-bottom: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 0 0 0 16px;
  transform: rotate(-16deg);
}

.icon-qr::before {
  inset: 12px;
  border: 3px solid rgba(255, 255, 255, 0.82);
  border-radius: 10px;
}

.icon-qr::after {
  right: 12px;
  bottom: 12px;
  width: 10px;
  height: 10px;
  background: rgba(255, 188, 66, 0.92);
  border-radius: 3px;
  box-shadow: -14px 0 0 rgba(255,255,255,0.78), 0 -14px 0 rgba(255,255,255,0.78);
}

.icon-geo::before {
  left: 16px;
  top: 10px;
  width: 20px;
  height: 28px;
  border-radius: 14px 14px 14px 14px / 16px 16px 24px 24px;
  border: 3px solid rgba(255, 255, 255, 0.84);
}

.icon-geo::after {
  left: 22px;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 188, 66, 0.94);
}

.icon-fruit::before {
  left: 12px;
  top: 14px;
  width: 28px;
  height: 24px;
  border-radius: 55% 55% 45% 45%;
  background: rgba(255, 188, 66, 0.9);
}

.icon-fruit::after {
  left: 28px;
  top: 10px;
  width: 12px;
  height: 8px;
  border-radius: 12px 12px 2px 12px;
  background: rgba(143, 227, 139, 0.95);
}

.icon-ai::before {
  inset: 12px;
  border-radius: 16px;
  border: 2px solid rgba(255,255,255,0.78);
}

.icon-ai::after {
  left: 18px;
  top: 18px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.85),
    14px 0 0 -2px rgba(255,255,255,0.85),
    7px 12px 0 -2px rgba(255,255,255,0.85);
}

.companion-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}

.companion-copy {
  position: sticky;
  top: 108px;
  align-self: start;
  display: grid;
  gap: 0;
  max-width: 520px;
  padding: 32px 28px 30px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(9, 19, 17, 0.9), rgba(17, 31, 27, 0.82));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.companion-copy h2 {
  max-width: 9ch;
}

.companion-copy > p:not(.eyebrow):not(.companion-note) {
  margin-top: 22px;
}

.companion-visual {
  display: grid;
  gap: 14px;
  align-self: start;
}

.companion-visual-head {
  display: grid;
  gap: 6px;
  padding: 0 6px;
}

.companion-visual-head strong {
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.companion-visual-head span {
  max-width: 54ch;
  color: var(--muted);
  line-height: 1.55;
}

.companion-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.companion-note {
  margin: 22px 0 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  line-height: 1.6;
}

.companion-list li {
  position: relative;
  padding: 14px 16px 14px 40px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  line-height: 1.6;
}

.companion-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 19px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-blue));
}

.companion-screen {
  padding: 16px;
  border-radius: 28px;
}

.companion-showcase {
  display: grid;
  gap: 16px;
}

.companion-shot {
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.companion-shot img {
  width: 100%;
  display: block;
  background: #121817;
}

.companion-shot-main img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

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

.companion-thumb-grid .companion-shot img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.companion-shot-wide {
  grid-column: 1 / -1;
}

.companion-shot figcaption {
  display: grid;
  gap: 6px;
  padding: 14px 16px 16px;
}

.companion-shot figcaption strong {
  font-size: 0.98rem;
}

.companion-shot figcaption span {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.92rem;
}

.window-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.window-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.window-bar span:first-child { background: #ff7f73; }
.window-bar span:nth-child(2) { background: #f9c64f; }
.window-bar span:nth-child(3) { background: #56d469; }

.window-body {
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr);
  gap: 16px;
}

.sidebar {
  display: grid;
  gap: 10px;
}

.sidebar-title {
  margin-bottom: 10px;
  font-weight: 700;
}

.sidebar-card,
.top-card,
.dashboard-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
}

.sidebar-card {
  padding: 14px;
  color: var(--muted);
}

.sidebar-card.active {
  background: linear-gradient(135deg, rgba(66, 211, 146, 0.18), rgba(93, 164, 255, 0.08));
  color: var(--text);
}

.dashboard {
  display: grid;
  gap: 14px;
}

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

.top-card {
  display: grid;
  gap: 6px;
  padding: 14px;
}

.top-card strong {
  font-size: 1.4rem;
}

.tiny-label,
.panel-header {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
}

.dashboard-panel {
  padding: 14px;
}

.panel-large {
  grid-row: span 2;
}

.chart-path {
  fill: none;
  stroke: rgba(66, 211, 146, 0.95);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawLine 3.6s ease-out forwards;
}

.chart-dot {
  fill: rgba(255, 188, 66, 0.94);
}

.stack-bars {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.stack-bars span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent));
}

.mask-preview {
  position: relative;
  height: 112px;
  margin-top: 16px;
  background: rgba(7, 16, 13, 0.75);
  border-radius: 16px;
  overflow: hidden;
}

.mask-a,
.mask-b {
  position: absolute;
  width: 74px;
  height: 74px;
  border-radius: 50% 45% 50% 42%;
  background: rgba(223, 248, 167, 0.82);
}

.mask-a {
  left: 34px;
  top: 22px;
}

.mask-b {
  left: 88px;
  top: 28px;
  background: rgba(95, 187, 255, 0.52);
  mix-blend-mode: screen;
}

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

.case-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #05150f;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-gold), #ffd980);
}

.why-card {
  min-height: 220px;
}

.final-cta,
.contact-card {
  display: grid;
  gap: 18px;
  padding: 30px;
  border-radius: 30px;
}

.final-cta {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.contact-actions {
  margin-top: 8px;
}

.contact-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-pill {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 44px 0 54px;
  color: var(--muted);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  max-width: 780px;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.footer-brand p {
  margin: 0;
}

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

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

@keyframes leafPulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.04) rotate(1.2deg); }
}

@keyframes boxBlink {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

@keyframes beamFlow {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -44; }
}

@keyframes beamPulse {
  0% { opacity: 0; transform: scale(0.72); transform-origin: center; }
  30% { opacity: 1; }
  100% { opacity: 0; transform: scale(1.22); transform-origin: center; }
}

@keyframes rootGrow {
  0%, 100% { stroke-dashoffset: 40; opacity: 0.65; }
  50% { stroke-dashoffset: 0; opacity: 1; }
}

@keyframes ringPulse {
  0% { opacity: 0; transform: scale(0.74); transform-origin: center; }
  30% { opacity: 1; }
  100% { opacity: 0; transform: scale(1.24); transform-origin: center; }
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

@media (max-width: 1120px) {
  .hero,
  .companion-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .companion-visual {
    order: -1;
  }

  .companion-copy {
    position: static;
    max-width: none;
  }

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

@media (max-width: 860px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 28px;
    padding: 16px;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .hero {
    padding-top: 38px;
  }

  .leaf,
  .scan-boxes rect,
  .scan-beam path,
  .beam-pulse,
  .root-line,
  .overlay-pulse {
    animation: none !important;
  }

  .hero-metrics,
  .dashboard-top,
  .window-body,
  .companion-thumb-grid,
  .dashboard-grid,
  .evidence-grid,
  .feature-grid,
  .use-case-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .companion-shot-wide {
    grid-column: auto;
  }

  .signal-bar {
    border-radius: 30px;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(var(--max-width), calc(100% - 20px));
  }

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

  .hero-copy h1 {
    max-width: none;
  }

  .brand {
    align-items: center;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .hero-panel,
  .feature-card,
  .use-case,
  .why-card,
  .contact-card,
  .final-cta {
    padding: 20px;
  }

  .site-footer {
    padding-bottom: 36px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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