:root {
  --ink: #17201d;
  --ink-strong: #07120f;
  --muted: #66746f;
  --surface: #fffdf8;
  --surface-2: #f7f5ef;
  --surface-3: #ece8dc;
  --border: #d9d3c3;
  --brand: #0f5f57;
  --brand-strong: #0a3d38;
  --accent: #c07828;
  --danger: #b64235;
  --ok: #28785f;
  --shadow: 0 24px 70px rgba(41, 34, 22, .14);
  --radius: 8px;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Calistoga", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface-2);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.5;
  overflow-x: hidden;
}

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

code {
  font-family: var(--mono);
  font-size: .9em;
}

.skip-link {
  left: 1rem;
  position: fixed;
  top: -4rem;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: .7rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 72px;
  padding: 0 clamp(1rem, 4vw, 3.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(217, 211, 195, .74);
  background: rgba(247, 245, 239, .86);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-weight: 800;
  color: var(--ink-strong);
}

.brand-mark {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(15, 95, 87, .24);
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: #eef7f3;
}

.brand-mark svg {
  width: 23px;
  height: 23px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: .92rem;
  color: #40514c;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink-strong);
}

.nav-cta {
  padding: 0 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

main {
  overflow: hidden;
}

.hero {
  min-height: min(790px, calc(100dvh - 72px));
  display: grid;
  grid-template-columns: minmax(390px, 560px) minmax(620px, 780px);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  justify-content: space-between;
  padding: clamp(2rem, 5vw, 5rem) clamp(1.25rem, 4vw, 4rem) clamp(1.5rem, 3vw, 3rem);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(120deg, rgba(255,255,255,.66), rgba(255,255,255,0) 44%),
    repeating-linear-gradient(90deg, rgba(23,32,29,.05) 0 1px, transparent 1px 78px),
    var(--surface-2);
}

.hero-copy {
  min-width: 0;
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--brand);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 620px;
  margin: 0;
  color: var(--ink-strong);
  font-family: var(--body);
  font-size: clamp(3rem, 4.9vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-title span {
  display: inline;
}

.hero-lede {
  max-width: 590px;
  margin: 1.25rem 0 0;
  color: #44544f;
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .78rem 1.08rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

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

.button.primary {
  background: var(--brand);
  color: white;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--brand-strong);
}

.button.secondary {
  background: var(--surface);
  border-color: var(--border);
  color: var(--ink-strong);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  margin: 1.8rem 0 0;
}

.hero-stats div {
  border-left: 2px solid var(--brand);
  padding: .2rem 0 .2rem .75rem;
}

.hero-stats dt {
  font-family: var(--mono);
  font-weight: 700;
  color: var(--ink-strong);
}

.hero-stats dd {
  margin: .16rem 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.hero-product {
  min-width: 0;
  align-self: center;
  transform: translateY(-.3rem);
}

.scene-card {
  width: min(100%, 820px);
  max-width: 820px;
  margin-left: auto;
  border: 1px solid rgba(23,32,29,.2);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 10%, rgba(31, 125, 112, .28), transparent 42%),
    linear-gradient(135deg, #101814, #1c2924);
  box-shadow: 0 34px 110px rgba(18, 23, 19, .24);
  color: #eef7f3;
  overflow: hidden;
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform .22s ease, box-shadow .22s ease;
}

.scene-card:hover {
  box-shadow: 0 42px 120px rgba(18, 23, 19, .3);
}

.scene-topbar {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1rem;
  border-bottom: 1px solid rgba(255,255,255,.11);
  color: #c9d5ce;
  font-family: var(--mono);
  font-size: .78rem;
}

.scene-topbar > div {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: .48rem;
}

.scene-topbar strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.window-dot.red { background: #c65a4b; }
.window-dot.amber { background: #d69b42; }
.window-dot.green { background: #4b9b77; }

.scene-pill {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: .25rem .65rem;
  border: 1px solid rgba(244, 174, 91, .34);
  border-radius: 999px;
  color: #f9d29a;
  background: rgba(192, 120, 40, .13);
  font-size: .68rem;
  white-space: nowrap;
}

.scene-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 232px;
  min-height: 480px;
}

.scene-stage {
  position: relative;
  min-width: 0;
  padding: 1.15rem 1rem 1rem;
  border-right: 1px solid rgba(255,255,255,.1);
}

.iso-graph {
  display: block;
  width: 100%;
  height: 380px;
}

.ghost-cubes {
  opacity: .22;
}

.restore-lines path {
  fill: none;
  stroke: rgba(174, 195, 185, .28);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.restore-lines .line-live {
  stroke: #8dd3b5;
  stroke-width: 3;
  stroke-dasharray: 12 10;
  animation: route-flow 3.2s linear infinite;
}

.iso-cube {
  filter: url(#cubeShadow);
}

.cube-top {
  fill: #263b35;
  stroke: rgba(255,255,255,.16);
  stroke-width: 1.4;
}

.cube-left {
  fill: #172923;
  stroke: rgba(255,255,255,.1);
  stroke-width: 1.2;
}

.cube-right {
  fill: #20332d;
  stroke: rgba(255,255,255,.1);
  stroke-width: 1.2;
}

.root .cube-top {
  fill: url(#cubeTop);
  stroke: rgba(141, 211, 181, .42);
}

.root .cube-left,
.root .cube-right {
  fill: url(#cubeSide);
}

.safe .cube-top {
  fill: url(#safeTop);
  stroke: rgba(244, 174, 91, .58);
}

.safe .cube-left {
  fill: #423019;
}

.safe .cube-right {
  fill: #5c3b19;
}

.iso-cube text {
  fill: #eef7f3;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  text-anchor: middle;
  text-transform: uppercase;
}

.safe text {
  fill: #ffdda8;
  font-size: 12px;
}

.graph-ports circle {
  fill: #f4f1e8;
  stroke: #1e2a26;
  stroke-width: 3;
}

.scene-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem .95rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(16, 24, 20, .72);
  backdrop-filter: blur(10px);
  font-family: var(--mono);
  font-size: .76rem;
}

.scene-caption span {
  color: #aabbb3;
}

.scene-caption strong {
  color: #f4f1e8;
}

.scene-panel {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.15rem;
  background: rgba(19, 31, 26, .72);
}

.panel-row,
.approval-card {
  display: grid;
  gap: .45rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.panel-row span,
.approval-card span {
  color: #aabbb3;
  font-size: .76rem;
}

.panel-row strong {
  color: #8dd3b5;
  font-family: var(--mono);
  font-size: 1rem;
}

.panel-row.muted strong {
  color: #f4f1e8;
}

.approval-card code {
  width: fit-content;
  padding: .34rem .55rem;
  border: 1px solid rgba(244, 174, 91, .38);
  border-radius: 7px;
  background: rgba(192, 120, 40, .14);
  color: #f9d29a;
}

.scene-steps {
  display: grid;
  gap: .45rem;
}

.scene-steps span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #9caca5;
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 700;
}

.scene-steps .done {
  background: rgba(40, 120, 95, .34);
  color: #a7e7cd;
}

.scene-steps .active {
  background: rgba(192, 120, 40, .34);
  color: #ffd59c;
}

@keyframes route-flow {
  to {
    stroke-dashoffset: -44;
  }
}

.proof-strip {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.proof-strip span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: .35rem .7rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #52625d;
  font-size: .86rem;
  font-weight: 700;
}

.section {
  padding: clamp(4rem, 7vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.section h2 {
  max-width: 850px;
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(2rem, 4.5vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 2.4rem;
}

.section-heading p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.problem-list {
  display: grid;
  gap: 1rem;
}

.problem-list article,
.feature,
.price-card,
.faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.problem-list article {
  padding: 1.25rem;
}

.problem-list h3,
.feature h3,
.steps h3 {
  margin: 0 0 .45rem;
  color: var(--ink-strong);
  font-size: 1.05rem;
}

.problem-list p,
.feature p,
.steps p,
.price-card p,
.faq-list p {
  margin: 0;
  color: var(--muted);
}

.product-section {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

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

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

.feature {
  padding: 1.25rem;
}

.feature svg {
  width: 30px;
  height: 30px;
  color: var(--brand);
  margin-bottom: 1rem;
}

.workflow {
  background: #17201d;
  color: #f4f1e8;
}

.workflow h2,
.workflow .steps h3 {
  color: #fffdf8;
}

.workflow .eyebrow {
  color: #b5ddce;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  overflow: hidden;
}

.steps li {
  min-height: 270px;
  padding: 1.25rem;
  background: #1e2a26;
}

.steps span {
  display: inline-flex;
  margin-bottom: 4rem;
  color: #d9b27c;
  font-family: var(--mono);
  font-size: .8rem;
}

.steps p {
  color: #b8c7c0;
}

.app-surface {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

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

.surface-card {
  min-height: 430px;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.surface-card h3 {
  margin: 0 0 .65rem;
  color: var(--ink-strong);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.1;
}

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

.surface-card ul,
.security-list {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .62rem;
}

.surface-card li,
.security-list li {
  display: flex;
  gap: .55rem;
  color: #40514c;
  font-size: .94rem;
}

.surface-card li::before,
.security-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: .5rem;
  border-radius: 50%;
  background: var(--accent);
}

.kicker {
  margin: 0 0 .8rem !important;
  color: var(--brand) !important;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dark-card {
  background: #17201d;
  color: #eef7f3;
}

.dark-card h3 {
  color: #fffdf8;
}

.dark-card p,
.dark-card .kicker {
  color: #b8c7c0 !important;
}

.endpoint-list {
  display: grid;
  gap: .65rem;
  margin-top: 1.2rem;
}

.endpoint-list code {
  display: block;
  padding: .72rem .8rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 7px;
  background: #1f2b27;
  color: #f4f1e8;
  font-size: .78rem;
}

.dashboard-card {
  display: grid;
  align-content: start;
}

.mini-dashboard {
  margin: .4rem 0 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #fffefa;
}

.mini-row {
  min-height: 42px;
  display: grid;
  grid-template-columns: .9fr .85fr 1fr;
  gap: .5rem;
  align-items: center;
  padding: 0 .72rem;
  border-bottom: 1px solid var(--border);
  color: #40514c;
  font-family: var(--mono);
  font-size: .72rem;
}

.mini-row:last-child {
  border-bottom: 0;
}

.mini-row.head {
  min-height: 34px;
  background: var(--surface-3);
  color: var(--muted);
  font-family: var(--body);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.mini-row strong {
  justify-self: start;
  padding: .16rem .45rem;
  border-radius: 999px;
  background: #e4f5eb;
  color: var(--ok);
  font-family: var(--body);
  font-size: .72rem;
}

.mini-row .warn-text {
  background: #fff1d8;
  color: #9a5b12;
}

.evidence {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.evidence-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.06rem;
}

.evidence-panel {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .8rem;
  background: var(--surface-2);
  box-shadow: var(--shadow);
}

.terminal {
  padding: 1.2rem;
  border-radius: var(--radius);
  background: #17201d;
  color: #e4efe9;
  font-family: var(--mono);
  font-size: .9rem;
}

.terminal div {
  padding: .35rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.terminal div:last-child {
  border-bottom: 0;
}

.terminal span {
  display: inline-block;
  width: 2rem;
  color: #d9b27c;
}

.deployment {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

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

.deploy-grid article {
  padding: 1.25rem;
  border-left: 3px solid var(--brand);
  background: var(--surface-2);
}

.deploy-grid h3 {
  margin: 0 0 .55rem;
  color: var(--ink-strong);
  font-size: 1.08rem;
}

.deploy-grid p {
  margin: 0;
  color: var(--muted);
}

.pricing,
.faq {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

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

.price-card {
  padding: 1.4rem;
}

.price-card.featured {
  border-color: rgba(15, 95, 87, .38);
  background: #eef7f3;
}

.price-label {
  margin: 0 0 1rem !important;
  color: var(--brand) !important;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0 0 .7rem;
  color: var(--ink-strong);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.price-card ul {
  margin: 1.3rem 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .65rem;
  color: #40514c;
}

.price-card li {
  display: flex;
  gap: .5rem;
}

.price-card li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: .48rem;
  border-radius: 50%;
  background: var(--brand);
}

.price-card .button {
  width: 100%;
}

.faq-list {
  display: grid;
  gap: .75rem;
  max-width: 930px;
}

.faq-list details {
  padding: 1rem 1.15rem;
}

.faq-list summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--ink-strong);
  font-weight: 800;
  cursor: pointer;
}

.faq-list p {
  padding: .2rem 0 .6rem;
}

.final-cta {
  padding: clamp(4rem, 7vw, 7rem) clamp(1rem, 5vw, 5rem);
  background:
    linear-gradient(120deg, rgba(15, 95, 87, .12), rgba(192, 120, 40, .12)),
    var(--surface);
}

.final-cta h2 {
  max-width: 920px;
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(2rem, 4.8vw, 4.8rem);
  line-height: 1;
}

.final-cta p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.lead-form {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(240px, 1fr) auto;
  gap: .75rem;
  max-width: 980px;
  margin-top: 2rem;
  align-items: end;
}

.lead-form label {
  display: grid;
  gap: .38rem;
  color: #40514c;
  font-size: .85rem;
  font-weight: 700;
}

.lead-form input {
  width: 100%;
  min-height: 48px;
  padding: .75rem .85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fffefa;
  color: var(--ink);
  font: inherit;
}

.lead-form input:focus,
.button:focus-visible,
.site-nav a:focus-visible,
.nav-toggle:focus-visible,
.faq-list summary:focus-visible {
  outline: 3px solid rgba(15, 95, 87, .28);
  outline-offset: 3px;
}

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

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--ink-strong);
}

@media (max-width: 1060px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-product {
    max-width: 820px;
  }

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

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

@media (max-width: 760px) {
  .site-header {
    min-height: 64px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    inset: 64px 1rem auto 1rem;
    display: none;
    padding: .75rem;
    flex-direction: column;
    align-items: stretch;
    gap: .15rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0 .75rem;
  }

  .nav-cta {
    justify-content: center;
    margin-top: .35rem;
  }

  .hero {
    min-height: auto;
    padding-top: 2.8rem;
    overflow: hidden;
    width: 100vw;
    max-width: 100vw;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy,
  .hero-product {
    width: 100%;
    max-width: calc(100vw - 2.5rem);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 10.5vw, 2.95rem);
    line-height: 1.04;
  }

  .hero-title span {
    display: block;
  }

  .eyebrow {
    max-width: 30ch;
    font-size: .72rem;
    letter-spacing: .08em;
  }

  .hero-lede {
    max-width: 34ch;
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-product {
    transform: none;
  }

  .scene-card {
    width: 100%;
    margin-left: 0;
    transform: none;
  }

  .scene-topbar {
    font-size: .7rem;
  }

  .scene-pill {
    display: none;
  }

  .hero-stats,
  .split,
  .evidence,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .scene-body,
  .feature-grid,
  .feature-grid.wide,
  .surface-grid,
  .deploy-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .scene-stage {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .scene-body {
    min-height: auto;
  }

  .iso-graph {
    height: 300px;
  }

  .scene-caption {
    position: static;
    margin-top: .7rem;
    flex-direction: column;
    align-items: flex-start;
    gap: .2rem;
  }

  .scene-panel {
    grid-template-columns: 1fr;
  }

  .steps li {
    min-height: 220px;
  }

  .steps span {
    margin-bottom: 2rem;
  }

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

@media (max-width: 430px) {
  .section,
  .final-cta,
  .hero {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .scene-card {
    border-radius: var(--radius);
  }

  .scene-topbar strong {
    max-width: 210px;
  }
}

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