:root {
  --bg: #050810;
  --bg-soft: #090e18;
  --panel: rgba(13, 20, 34, 0.82);
  --panel-strong: #0d1524;
  --line: rgba(158, 181, 216, 0.16);
  --line-bright: rgba(70, 161, 255, 0.38);
  --text: #f6f8fb;
  --muted: #aeb9c9;
  --muted-2: #77869b;
  --blue: #1478ff;
  --cyan: #22c5ff;
  --blue-soft: #0d3c88;
  --green: #4de3ac;
  --danger: #ff778b;
  --radius: 24px;
  --radius-sm: 14px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 75% -10%, rgba(20,120,255,.12), transparent 30%),
    linear-gradient(180deg, #060a12 0%, #04070d 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }

.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;
}
.skip-link {
  position: fixed; left: 1rem; top: 1rem; z-index: 999;
  background: white; color: black; padding: .75rem 1rem; border-radius: .5rem;
  transform: translateY(-150%); transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }
.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.section { padding: 112px 0; position: relative; }

.ambient { position: fixed; z-index: -2; filter: blur(100px); border-radius: 50%; opacity: .14; pointer-events: none; }
.ambient-one { width: 420px; height: 420px; background: var(--blue); top: 18%; right: -220px; }
.ambient-two { width: 380px; height: 380px; background: var(--cyan); bottom: 4%; left: -250px; opacity: .08; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(5,8,16,.65);
  backdrop-filter: blur(18px);
  transition: border-color .25s, background .25s;
}
.site-header.scrolled { border-color: var(--line); background: rgba(5,8,16,.9); }
.nav-shell { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }

.brand-lockup {
  width: 330px;
  height: 58px;
  flex: 0 0 330px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.brand-lockup img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.site-nav { display: flex; align-items: center; gap: 30px; font-size: .92rem; color: #c4cedb; }
.site-nav a { transition: color .2s; }
.site-nav a:hover, .site-nav a:focus-visible { color: white; }
.nav-cta { border: 1px solid var(--line-bright); border-radius: 999px; padding: 11px 18px; background: rgba(20,120,255,.08); }
.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; }
.nav-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; background: white; margin: 5px 0; }

.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 20px; color: #60b8ff; font-size: .72rem; font-weight: 700; letter-spacing: .18em; }
.eyebrow span { width: 34px; height: 1px; background: linear-gradient(90deg, var(--blue), var(--cyan)); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(3.2rem, 7vw, 6.5rem); line-height: .94; letter-spacing: -.055em; margin-bottom: 28px; max-width: 850px; }
h2 { font-size: clamp(2.3rem, 4.5vw, 4.4rem); line-height: 1.04; letter-spacing: -.045em; margin-bottom: 22px; }
h3 { font-size: 1.3rem; letter-spacing: -.02em; }
.hero { padding-top: 92px; padding-bottom: 90px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 62px; }
.hero-lede { max-width: 690px; font-size: clamp(1.08rem, 1.7vw, 1.35rem); line-height: 1.7; color: var(--muted); }
.hero-actions { display: flex; gap: 14px; margin: 38px 0 30px; flex-wrap: wrap; }
.button { min-height: 50px; padding: 0 22px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; font-weight: 700; transition: transform .2s, box-shadow .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, #146fff, #21b7ff); color: white; box-shadow: 0 15px 45px rgba(20,120,255,.28); }
.button-primary:hover { box-shadow: 0 18px 54px rgba(20,120,255,.38); }
.button-secondary { color: white; border-color: var(--line); background: rgba(255,255,255,.025); }
.button-secondary:hover { border-color: var(--line-bright); }
.proof-row { display: flex; flex-wrap: wrap; gap: 18px; color: #8f9cae; font-size: .82rem; }
.proof-row span { display: flex; align-items: center; gap: 8px; }
.proof-row span::before { content: ""; width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 14px var(--cyan); }

.hero-demo { position: relative; }
.hero-demo::before { content: ""; position: absolute; inset: 8% 8%; background: rgba(20,120,255,.2); filter: blur(70px); z-index: -1; }
.demo-window { border: 1px solid var(--line); background: linear-gradient(160deg, rgba(13,21,36,.96), rgba(6,11,20,.98)); border-radius: 25px; box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.04); overflow: hidden; }
.demo-topbar { min-height: 58px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 18px; font-size: .76rem; }
.window-dots { display: flex; gap: 6px; }
.window-dots i { width: 7px; height: 7px; border-radius: 50%; background: #344156; }
.demo-title { display: flex; align-items: center; gap: 8px; color: #dfe7f2; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 14px var(--green); }
.secure-pill { justify-self: end; color: #8492a5; }
.assistant-panel { padding: 22px 22px 14px; display: grid; gap: 15px; min-height: 315px; }
.assistant-message { border-radius: 16px; padding: 15px; display: flex; gap: 12px; font-size: .86rem; border: 1px solid var(--line); }
.assistant-message span { display: block; font-weight: 700; font-size: .7rem; color: #7caef7; margin-bottom: 4px; }
.assistant-message p { margin: 0; color: #c8d1df; line-height: 1.55; }
.message-ai { background: rgba(18,31,52,.72); margin-right: 36px; }
.message-user { background: rgba(20,120,255,.1); margin-left: 42px; border-color: rgba(20,120,255,.23); }
.avatar { width: 30px; height: 30px; flex: 0 0 30px; }
.avatar img { border-radius: 9px; }
.voice-orb { width: 34px; min-width: 34px; display: flex; align-items: center; justify-content: center; gap: 2px; }
.voice-orb b { width: 2px; height: 12px; background: var(--cyan); border-radius: 99px; animation: wave 1s ease-in-out infinite; }
.voice-orb b:nth-child(2) { animation-delay: .1s; height: 20px; }
.voice-orb b:nth-child(3) { animation-delay: .2s; height: 27px; }
.voice-orb b:nth-child(4) { animation-delay: .3s; height: 18px; }
.voice-orb b:nth-child(5) { animation-delay: .4s; }
@keyframes wave { 50% { transform: scaleY(.4); opacity: .55; } }
.record-preview { margin: 0 22px 20px; border: 1px solid var(--line); border-radius: 17px; background: rgba(4,8,15,.6); padding: 16px; }
.record-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: .75rem; margin-bottom: 14px; }
.record-head > span:first-child { font-weight: 700; color: #d9e2ef; }
.status { color: #ffd97a; background: rgba(255,191,64,.08); border: 1px solid rgba(255,191,64,.2); padding: 5px 8px; border-radius: 999px; }
.record-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.record-grid div { padding: 10px; background: rgba(255,255,255,.025); border-radius: 10px; }
.record-grid small, .industry-metrics small { display: block; color: var(--muted-2); font-size: .68rem; margin-bottom: 3px; }
.record-grid strong { font-size: .8rem; }
.evidence-line { display: flex; justify-content: space-between; margin-top: 12px; color: #728096; font-size: .68rem; }
.mic-button { width: calc(100% - 44px); margin: 0 22px 22px; min-height: 48px; border: 0; color: white; border-radius: 12px; background: linear-gradient(135deg, #0f65e5, #20b8ff); display: flex; align-items: center; justify-content: center; gap: 10px; font-weight: 700; }
.mic-icon { width: 12px; height: 17px; border: 2px solid white; border-radius: 7px; position: relative; }
.mic-icon::after { content: ""; position: absolute; width: 16px; height: 8px; border: 2px solid white; border-top: 0; border-radius: 0 0 9px 9px; left: 50%; transform: translateX(-50%); top: 9px; }
.demo-window.playing .assistant-panel { animation: subtleFlash 1.5s ease; }
.demo-window.playing .record-preview { border-color: rgba(34,197,255,.48); box-shadow: 0 0 30px rgba(20,120,255,.12); }
@keyframes subtleFlash { 50% { opacity: .68; } }

.logo-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.012); }
.logo-strip-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: #6f7c8e; font-size: .7rem; letter-spacing: .14em; white-space: nowrap; overflow: hidden; }
.section-heading { max-width: 820px; margin-bottom: 54px; }
.section-heading > p:last-child, .voice-copy > p, .value-copy > p, .section-heading.left > p:last-child { color: var(--muted); font-size: 1.08rem; line-height: 1.7; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-card { min-height: 320px; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(14,22,37,.78), rgba(6,10,18,.8)); position: relative; overflow: hidden; }
.process-card::after { content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%; background: rgba(20,120,255,.07); right: -100px; bottom: -100px; filter: blur(10px); }
.step-number { color: #536278; font: 700 .68rem/1 ui-monospace, monospace; letter-spacing: .12em; }
.line-icon { width: 58px; height: 58px; border: 1px solid var(--line-bright); border-radius: 16px; margin: 38px 0 25px; position: relative; background: rgba(20,120,255,.05); }
.line-icon::before, .line-icon::after { content: ""; position: absolute; }
.capture-icon::before { width: 10px; height: 24px; border: 2px solid var(--cyan); border-radius: 7px; top: 12px; left: 22px; }
.capture-icon::after { width: 24px; height: 12px; border: 2px solid var(--blue); border-top: 0; border-radius: 0 0 13px 13px; top: 25px; left: 15px; }
.structure-icon::before { width: 28px; height: 28px; border: 2px solid var(--blue); transform: rotate(45deg); top: 13px; left: 13px; }
.structure-icon::after { width: 8px; height: 8px; background: var(--cyan); border-radius: 50%; top: 24px; left: 24px; box-shadow: 0 0 12px var(--cyan); }
.verify-icon::before { width: 25px; height: 14px; border-left: 3px solid var(--cyan); border-bottom: 3px solid var(--cyan); transform: rotate(-45deg); top: 15px; left: 16px; }
.reuse-icon::before { inset: 13px; border: 2px solid var(--blue); border-radius: 50%; border-right-color: transparent; }
.reuse-icon::after { border-left: 6px solid var(--cyan); border-top: 5px solid transparent; border-bottom: 5px solid transparent; right: 10px; top: 13px; }
.process-card p { color: var(--muted); font-size: .92rem; line-height: 1.65; }

.voice-section { background: linear-gradient(180deg, transparent, rgba(9,16,28,.65), transparent); }
.voice-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 72px; align-items: center; }
.feature-list { list-style: none; margin: 38px 0 0; padding: 0; display: grid; gap: 19px; }
.feature-list li { display: grid; grid-template-columns: 38px 1fr; gap: 16px; }
.feature-list li > span { color: var(--blue); font: 700 .72rem/1 ui-monospace, monospace; padding-top: 6px; }
.feature-list strong { font-size: .95rem; }
.feature-list p { margin: 4px 0 0; color: var(--muted-2); font-size: .86rem; }
.conversation-card { background: linear-gradient(150deg, #101a2b, #080d16); border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); overflow: hidden; }
.conversation-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.conversation-header > div { display: flex; align-items: center; gap: 10px; font-size: .84rem; }
.conversation-header small { color: #8592a4; }
.pulse-ring { width: 10px; height: 10px; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 0 7px rgba(34,197,255,.08), 0 0 18px var(--cyan); }
.waveform { height: 78px; display: flex; align-items: center; justify-content: center; gap: 7px; padding-top: 18px; }
.waveform i { width: 3px; height: 22px; border-radius: 99px; background: linear-gradient(var(--cyan), var(--blue)); animation: waveform 1.5s ease-in-out infinite; }
.waveform i:nth-child(3n) { height: 52px; animation-delay: .2s; }
.waveform i:nth-child(2n) { height: 36px; animation-delay: .4s; }
@keyframes waveform { 50% { transform: scaleY(.35); opacity: .45; } }
blockquote { margin: 18px 34px 28px; font-size: 1.1rem; line-height: 1.7; color: #e3e9f2; }
.extraction-list { margin: 0 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.extraction-list div { padding: 14px; border-radius: 13px; background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.04); }
.extraction-list span { display: block; color: var(--muted-2); font-size: .68rem; margin-bottom: 5px; }
.extraction-list strong { font-size: .84rem; }
.confirm-row { display: flex; gap: 12px; align-items: center; padding: 22px; }
.confirm-button { min-height: 42px; border-radius: 10px; border: 0; background: var(--blue); color: white; padding: 0 16px; font-weight: 700; }
.text-button { background: transparent; border: 0; color: #9ba9ba; }

.industry-tabs { display: flex; gap: 8px; padding: 7px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.02); width: fit-content; max-width: 100%; overflow-x: auto; margin-bottom: 18px; }
.industry-tabs button { border: 0; color: #8f9daf; background: transparent; padding: 11px 16px; border-radius: 10px; white-space: nowrap; }
.industry-tabs button[aria-selected="true"] { color: white; background: rgba(20,120,255,.16); box-shadow: inset 0 0 0 1px rgba(20,120,255,.25); }
.industry-stage { border: 1px solid var(--line); border-radius: 28px; overflow: hidden; background: linear-gradient(145deg, rgba(13,21,36,.82), rgba(6,10,18,.88)); display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; }
.industry-copy { padding: 50px; border-right: 1px solid var(--line); }
.industry-kicker { font-size: .68rem; color: var(--cyan); letter-spacing: .16em; font-weight: 700; }
.industry-copy h3 { font-size: clamp(2rem, 3.5vw, 3.15rem); line-height: 1.08; margin: 18px 0; }
.industry-copy > p:not(.industry-kicker) { color: var(--muted); line-height: 1.7; }
.industry-metrics { display: grid; gap: 10px; margin-top: 28px; }
.industry-metrics div { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-top: 1px solid var(--line); }
.industry-metrics strong { text-align: right; font-size: .85rem; }
.industry-workflow { display: grid; align-content: center; padding: 48px; }
.workflow-node { display: flex; align-items: center; gap: 16px; color: #94a0b0; }
.workflow-node span { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; font: 700 .7rem/1 ui-monospace, monospace; }
.workflow-node.active { color: white; }
.workflow-node.active span { background: var(--blue); border-color: var(--blue); box-shadow: 0 0 25px rgba(20,120,255,.35); }
.industry-workflow > i { width: 1px; height: 31px; background: var(--line); margin-left: 18px; }

.value-section { overflow: hidden; }
.value-shell { min-height: 600px; border: 1px solid var(--line); border-radius: 32px; background: radial-gradient(circle at 73% 50%, rgba(20,120,255,.16), transparent 32%), linear-gradient(145deg, rgba(13,21,36,.75), rgba(5,8,14,.9)); display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; padding: 70px; position: relative; overflow: hidden; }
.value-copy { max-width: 490px; position: relative; z-index: 2; }
.memory-map { min-height: 450px; position: relative; }
.map-core { width: 140px; height: 140px; border-radius: 32px; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); background: rgba(7,12,21,.95); border: 1px solid var(--line-bright); display: grid; place-items: center; box-shadow: 0 0 70px rgba(20,120,255,.22); z-index: 3; }
.map-core img { width: 70px; border-radius: 18px; }
.map-core span { position: absolute; bottom: 15px; font-size: .62rem; letter-spacing: .18em; color: #8fc6ff; }
.map-orbit { position: absolute; border: 1px solid rgba(51,143,245,.2); border-radius: 50%; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.orbit-one { width: 330px; height: 330px; }
.orbit-two { width: 470px; height: 470px; border-style: dashed; }
.map-node { position: absolute; background: rgba(10,18,31,.95); border: 1px solid var(--line); border-radius: 12px; padding: 10px 15px; font-size: .72rem; color: #b9c4d2; z-index: 2; }
.node-one { top: 12%; left: 25%; }
.node-two { top: 22%; right: 12%; }
.node-three { bottom: 19%; right: 9%; }
.node-four { bottom: 10%; left: 24%; }
.node-five { top: 48%; left: 2%; }
.map-node::after { content: ""; position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }

.trust-section { background: rgba(8,13,22,.46); border-block: 1px solid rgba(255,255,255,.035); }
.trust-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; }
.section-heading.left { margin-bottom: 0; }
.trust-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.trust-card { border: 1px solid var(--line); border-radius: 20px; padding: 25px; background: rgba(255,255,255,.018); }
.trust-card > span { color: var(--blue); font: 700 .7rem/1 ui-monospace, monospace; }
.trust-card h3 { margin: 38px 0 10px; }
.trust-card p { color: var(--muted); font-size: .87rem; line-height: 1.65; margin: 0; }

.pilot-card { border-radius: 32px; border: 1px solid var(--line-bright); background: radial-gradient(circle at 8% 20%, rgba(20,120,255,.18), transparent 35%), linear-gradient(145deg, #0c1526, #070b13); padding: 62px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; box-shadow: var(--shadow); }
.pilot-card > div > p:last-child { color: var(--muted); line-height: 1.7; }
.pilot-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pilot-form label { display: grid; gap: 7px; }
.pilot-form label span { font-size: .72rem; color: #99a6b7; }
.pilot-form input, .pilot-form textarea { width: 100%; color: white; background: rgba(3,7,13,.62); border: 1px solid var(--line); border-radius: 12px; padding: 13px 14px; outline: none; resize: vertical; }
.pilot-form input:focus, .pilot-form textarea:focus { border-color: rgba(34,197,255,.55); box-shadow: 0 0 0 3px rgba(34,197,255,.08); }
.full-field { grid-column: 1 / -1; }
.form-status { margin: 0; font-size: .8rem; color: var(--green); min-height: 1.2em; }

.site-footer { border-top: 1px solid var(--line); padding: 42px 0; background: #03060b; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1.4fr auto; gap: 30px; align-items: center; }
.footer-brand { display: flex; gap: 12px; align-items: center; }
.footer-company-logo {
  width: 245px;
  height: auto;
  max-height: 88px;
  object-fit: contain;
  object-position: left center;
}
.footer-product { display: grid; gap: 8px; }
.footer-product img { width: 230px; height: auto; object-fit: contain; object-position: left center; }
.footer-product small { color: #6f7d90; font-size: .68rem; }
.footer-links { display: flex; gap: 20px; color: #8e9aab; font-size: .76rem; }
.copyright { grid-column: 1 / -1; margin: 12px 0 0; padding-top: 24px; border-top: 1px solid var(--line); color: #566275; font-size: .68rem; }

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

@media (max-width: 980px) {
  .hero-grid, .voice-grid, .trust-grid, .pilot-card { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .hero-demo { max-width: 650px; }
  .industry-stage { grid-template-columns: 1fr; }
  .industry-copy { border-right: 0; border-bottom: 1px solid var(--line); }
  .value-shell { grid-template-columns: 1fr; padding: 54px; }
  .memory-map { margin-top: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .section { padding: 82px 0; }
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .nav-toggle { display: block; }
  .site-nav { position: absolute; top: 78px; left: 14px; right: 14px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; background: rgba(7,11,19,.98); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px; }
  .nav-cta { margin-top: 5px; text-align: center; }

  .brand-lockup {
    width: 205px;
    height: 46px;
    flex-basis: 205px;
  }

  .brand-lockup img {
    width: 100%;
    height: 100%;
  }

  h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .hero { padding-top: 70px; }
  .hero-grid { gap: 42px; }
  .demo-topbar { grid-template-columns: auto 1fr; }
  .demo-title { justify-self: end; }
  .secure-pill { display: none; }
  .message-ai { margin-right: 0; }
  .message-user { margin-left: 12px; }
  .record-grid, .extraction-list, .trust-cards, .pilot-form { grid-template-columns: 1fr; }
  .full-field { grid-column: auto; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: 280px; }
  .logo-strip-inner { justify-content: flex-start; overflow-x: auto; }
  .industry-copy, .industry-workflow { padding: 30px; }
  .value-shell { padding: 34px 24px; min-height: 760px; }
  .memory-map { min-height: 390px; transform: scale(.82); margin-inline: -40px; }
  .pilot-card { padding: 38px 22px; gap: 34px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-company-logo { width: 220px; }
  .footer-product img { width: 205px; }
  .footer-links { grid-column: auto; flex-wrap: wrap; }
  .evidence-line { flex-direction: column; gap: 4px; }
}

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