:root {
  --ink: #102447;
  --ink-soft: #263d61;
  --muted: #617696;
  --blue: #2878f6;
  --blue-deep: #1554bd;
  --blue-pale: #eaf2ff;
  --ice: #f4f8ff;
  --surface: #ffffff;
  --line: rgba(18, 61, 122, 0.13);
  --line-strong: rgba(18, 61, 122, 0.23);
  --green: #158b67;
  --amber: #c77821;
  --red: #d85057;
  --shadow: 0 30px 90px rgba(30, 74, 140, 0.13);
  --radius-xl: 34px;
  --radius-lg: 25px;
  --radius-md: 17px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "IBM Plex Sans", sans-serif;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 50;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
.site-shell { overflow-x: clip; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 112px 0; }
h1, h2, h3, summary { font-family: "Manrope", "IBM Plex Sans", sans-serif; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 249, 255, .82);
  border-bottom: 1px solid rgba(16, 52, 105, .08);
  backdrop-filter: blur(20px);
}
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 9px; }
.brand-mark { width: 40px; height: 40px; border-radius: 14px; background: white; box-shadow: 0 12px 30px rgba(40, 120, 246, .22); }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-copy { display: grid; gap: 1px; color: var(--muted); font-size: .82rem; }
.brand-copy strong { color: var(--ink); font-size: 1.02rem; }
.main-nav { display: flex; align-items: center; gap: 28px; color: var(--muted); font-size: .94rem; }
.main-nav a { transition: color .2s ease; }
.main-nav a:hover { color: var(--blue); }

.button {
  min-height: 56px;
  padding: 0 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(180deg, #3688ff 0%, #1f67df 100%); box-shadow: 0 18px 38px rgba(40, 120, 246, .27); }
.button-primary:hover { box-shadow: 0 22px 42px rgba(40, 120, 246, .34); }
.button-secondary, .button-ghost { background: rgba(255,255,255,.78); border-color: var(--line); color: var(--ink); }
.button-secondary:hover, .button-ghost:hover { color: var(--blue-deep); border-color: rgba(40,120,246,.35); }
.button-small { min-height: 48px; padding: 0 18px; border-radius: 14px; }
.button-full { width: 100%; }

.eyebrow, .mono-label, .step-index {
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .76rem;
}
.eyebrow { display: inline-flex; align-items: center; gap: 11px; color: var(--blue-deep); margin-bottom: 22px; }
.eyebrow::before { content: ""; width: 36px; height: 1px; background: currentColor; opacity: .42; }
.eyebrow-light { color: #a9ceff; }

.hero {
  position: relative;
  padding: 76px 0 88px;
  background:
    radial-gradient(circle at 8% 5%, rgba(64, 135, 250, .16), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(21, 139, 103, .12), transparent 24%),
    linear-gradient(180deg, #f9fbff 0%, #eff5ff 100%);
}
.hero::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(34,100,194,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(34,100,194,.04) 1px, transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(to bottom, #000, transparent 82%); pointer-events: none; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) minmax(440px, .82fr); gap: 72px; align-items: center; }
.hero-copy h1 { margin: 0; max-width: 13ch; font-size: clamp(2.95rem, 5.45vw, 5.3rem); line-height: .94; letter-spacing: -.055em; }
.hero-lead { margin: 27px 0 0; max-width: 59ch; color: var(--muted); font-size: 1.13rem; line-height: 1.7; }
.promo-banner {
  max-width: 590px;
  margin-top: 24px;
  padding: 15px 18px 16px;
  display: grid;
  gap: 5px;
  border: 1px solid rgba(21,139,103,.22);
  border-left: 4px solid var(--green);
  border-radius: 18px;
  background: rgba(237,248,243,.86);
  box-shadow: 0 18px 42px rgba(21,139,103,.09);
}
.promo-banner span {
  color: var(--green);
  font-family: "IBM Plex Mono", monospace;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.promo-banner strong { color: #155d49; line-height: 1.45; }
.hero-actions { display: flex; gap: 11px; flex-wrap: wrap; margin-top: 34px; }
.hero-signals { list-style: none; padding: 0; margin: 38px 0 0; display: flex; flex-wrap: wrap; gap: 16px 24px; color: var(--ink-soft); font-size: .88rem; }
.hero-signals li { display: flex; align-items: center; gap: 8px; }
.hero-signals span { font-family: "IBM Plex Mono", monospace; color: var(--blue); font-size: .72rem; }
.hero-orbit { position: absolute; border: 1px solid rgba(40,120,246,.13); border-radius: 50%; pointer-events: none; }
.hero-orbit-one { width: 440px; height: 440px; right: -180px; top: -140px; }
.hero-orbit-two { width: 170px; height: 170px; left: 42%; bottom: -110px; }

.hero-product { position: relative; padding: 18px 0 24px; }
.product-window { position: relative; z-index: 2; padding: 19px; border: 1px solid rgba(25,76,150,.14); border-radius: 30px; background: rgba(255,255,255,.9); box-shadow: var(--shadow); backdrop-filter: blur(16px); transform: rotate(1.2deg); }
.supplier-window { transform: rotate(-1deg); }
.window-bar { display: flex; align-items: center; gap: 11px; padding: 0 2px 16px; border-bottom: 1px solid var(--line); }
.window-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 6px var(--blue-pale); }
.window-bar div { display: grid; gap: 2px; flex: 1; }
.window-bar strong { font-size: .88rem; }
.window-bar div span { color: var(--muted); font-size: .71rem; }
.live-pill, .file-chip, .status-pill { display: inline-flex; padding: 7px 10px; border-radius: 99px; background: #edf8f3; color: var(--green); font-size: .69rem; font-weight: 700; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 15px 0; }
.metric-grid article { display: grid; gap: 5px; min-width: 0; padding: 14px; border-radius: 15px; background: var(--ice); }
.metric-grid span { color: var(--muted); font-size: .68rem; }
.metric-grid strong { font-size: .94rem; white-space: nowrap; }
.metric-grid .metric-positive { background: #edf8f3; }
.metric-positive strong { color: var(--green); }
.request-card { padding: 18px; border: 1px solid var(--line); border-radius: 20px; background: white; }
.request-card-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.mono-label { display: block; color: var(--blue-deep); margin-bottom: 5px; }
.request-card h2 { margin: 0; font-size: 1.13rem; letter-spacing: -.025em; }
.file-chip { background: var(--blue-pale); color: var(--blue-deep); }
.material-list { display: grid; gap: 8px; }
.material-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 13px;
  border-radius: 14px;
  background: #f5f8fd;
  color: var(--ink-soft);
  font-size: .82rem;
}
.material-row strong { color: var(--ink); white-space: nowrap; }
.request-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.request-meta span { padding: 8px 10px; border-radius: 10px; background: var(--blue-pale); color: var(--blue-deep); font-size: .72rem; font-weight: 700; }
.offer-line { display: flex; align-items: center; gap: 11px; margin-top: 13px; padding: 13px 14px; border-radius: 16px; background: #edf8f3; color: #155d49; }
.offer-icon { width: 26px; height: 26px; border-radius: 9px; display: grid; place-items: center; background: #d9f3e8; color: var(--green); font-weight: 800; }
.offer-line div { flex: 1; display: grid; gap: 2px; }
.offer-line strong { font-size: .78rem; }
.offer-line div span { font-size: .67rem; color: #4f806f; }
.arrow { font-size: 1.2rem; }
.floating-note { position: absolute; z-index: 3; right: -34px; bottom: -10px; width: 176px; padding: 15px; display: grid; gap: 4px; border: 1px solid rgba(40,120,246,.18); border-radius: 18px; background: white; box-shadow: 0 22px 50px rgba(27,75,145,.17); transform: rotate(3deg); }
.floating-note span { color: var(--green); font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; }
.floating-note strong { font-size: .95rem; }
.floating-note b { color: var(--blue-deep); font-size: .9rem; }

.section-heading { max-width: 760px; margin-bottom: 52px; }
.section-heading.compact { max-width: 720px; }
.section-heading h2, .compare-copy h2, .control-heading h2, .implementation-copy h2, .demo-copy h2 { margin: 0; font-size: clamp(2.25rem, 4vw, 4rem); max-width: 14ch; line-height: 1; letter-spacing: -.055em; }
.section-heading p, .compare-copy > p, .control-heading > p, .implementation-copy > p, .demo-copy > p { margin: 22px 0 0; max-width: 64ch; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }

.argument-section { background: white; }
.workflow-track { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.workflow-track::before { content: ""; position: absolute; top: 51px; left: 8%; right: 8%; height: 1px; background: rgba(40,120,246,.22); }
.workflow-card { position: relative; z-index: 1; min-height: 270px; padding: 21px 18px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.96); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.workflow-card:hover { transform: translateY(-7px); border-color: rgba(40,120,246,.3); box-shadow: 0 20px 48px rgba(24,69,134,.1); }
.step-index { display: block; color: var(--blue-deep); }
.step-icon { width: 58px; height: 58px; margin: 17px 0 22px; display: grid; place-items: center; border: 6px solid white; border-radius: 18px; background: var(--blue-pale); color: var(--blue-deep); box-shadow: 0 0 0 1px rgba(40,120,246,.14), 0 9px 22px rgba(40,120,246,.1); line-height: 1; }
.step-icon--label { font-family: "IBM Plex Mono", monospace; font-size: .84rem; font-weight: 600; letter-spacing: .02em; }
.step-icon--symbol { font-family: "Manrope", "IBM Plex Sans", sans-serif; font-size: 1.48rem; font-weight: 800; }
.step-icon--chart svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 2.25; stroke-linecap: round; stroke-linejoin: round; }
.workflow-card h3 { margin: 0; font-size: 1.03rem; line-height: 1.25; }
.workflow-card p { margin: 11px 0 0; color: var(--muted); font-size: .88rem; line-height: 1.6; }

.compare-section { background: var(--ice); }
.compare-grid { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 88px; }
.check-list { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 15px; }
.check-list li { position: relative; padding-left: 30px; color: var(--ink-soft); line-height: 1.5; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 7px; background: #e5f6ef; color: var(--green); font-size: .75rem; font-weight: 800; }
.quote-board { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: white; box-shadow: var(--shadow); }
.board-head { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; padding-bottom: 20px; }
.board-head h3 { margin: 4px 0 0; font-size: 1.3rem; }
.status-pill { background: var(--blue-pale); color: var(--blue-deep); }
.quote-row { display: grid; grid-template-columns: 43px 1fr auto; gap: 13px; align-items: center; margin-top: 9px; padding: 15px; border: 1px solid var(--line); border-radius: 17px; }
.quote-row.is-best { border-color: rgba(21,139,103,.28); background: #f1fbf7; }
.vendor-avatar { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 13px; background: var(--blue-pale); color: var(--blue-deep); font-size: .72rem; font-weight: 700; }
.quote-row > div { display: grid; gap: 4px; }
.quote-row div span { color: var(--muted); font-size: .76rem; }
.quote-price { text-align: right; }
.quote-price strong { font-size: 1rem; }
.is-best .quote-price span { color: var(--green); }
.board-foot { display: flex; justify-content: space-between; margin-top: 18px; padding: 15px 3px 0; border-top: 1px dashed var(--line-strong); color: var(--muted); font-size: .86rem; }
.board-foot strong { color: var(--ink); }

.control-section { color: white; background: #0f2850; position: relative; }
.control-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 90% 0, rgba(48,133,255,.26), transparent 32%), radial-gradient(circle at 8% 92%, rgba(21,139,103,.18), transparent 28%), linear-gradient(rgba(99,163,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(99,163,255,.045) 1px, transparent 1px); background-size: auto, auto, 48px 48px, 48px 48px; }
.control-section .container { position: relative; z-index: 1; }
.control-heading { display: grid; grid-template-columns: 1fr .75fr; align-items: end; gap: 70px; margin-bottom: 52px; }
.control-heading > p { color: #a9bad3; margin: 0; }
.terms-grid { display: grid; grid-template-columns: 1.12fr repeat(3, 1fr); gap: 13px; }
.term-card { min-height: 218px; padding: 24px; border: 1px solid rgba(255,255,255,.13); border-radius: 24px; background: rgba(255,255,255,.96); color: var(--ink); box-shadow: 0 28px 80px rgba(0,0,0,.18); }
.term-card span { display: block; color: var(--muted); font-size: .76rem; margin-bottom: 12px; }
.term-card strong { display: block; font-family: "Manrope", sans-serif; font-size: clamp(1.55rem, 2.8vw, 2.6rem); letter-spacing: -.04em; line-height: 1; }
.term-card p { margin: 16px 0 0; color: var(--muted); line-height: 1.55; font-size: .9rem; }
.term-card-main { background: linear-gradient(145deg, #fff, #edf8f3); }
.term-card-main strong { color: var(--green); }

.categories-section { background: white; }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.category-card { min-height: 230px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg, #fff, #f7faff); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.category-card:hover { transform: translateY(-5px); border-color: rgba(40,120,246,.28); box-shadow: 0 22px 52px rgba(24,69,134,.09); }
.category-card > span { font-family: "IBM Plex Mono", monospace; color: var(--blue-deep); font-size: .71rem; text-transform: uppercase; letter-spacing: .08em; }
.category-card h3 { margin: 52px 0 13px; font-size: 1.28rem; }
.category-card p { margin: 0; color: var(--muted); line-height: 1.65; }

.implementation-section { background: linear-gradient(180deg, #f6f9ff, #eef5ff); }
.implementation-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 86px; align-items: center; }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 30px; color: var(--blue-deep); font-weight: 700; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.launch-list { list-style: none; padding: 0; margin: 0; display: grid; }
.launch-list li { display: grid; grid-template-columns: 50px 1fr; gap: 18px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.launch-list li:first-child { border-top: 1px solid var(--line); }
.launch-list > li > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: white; color: var(--blue-deep); font-family: "IBM Plex Mono", monospace; font-size: .72rem; box-shadow: 0 10px 24px rgba(34,88,167,.1); }
.launch-list div { display: grid; gap: 7px; }
.launch-list strong { font-family: "Manrope", sans-serif; font-size: 1.06rem; }
.launch-list p { margin: 0; color: var(--muted); line-height: 1.55; }

.faq-section { background: var(--ice); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: start; }
.faq-list { display: grid; gap: 10px; }
.faq-item { padding: 0 22px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.faq-item summary { list-style: none; cursor: pointer; padding: 21px 34px 21px 0; position: relative; font-weight: 700; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 0; top: 16px; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 10px; background: var(--blue-pale); color: var(--blue-deep); font-size: 1.2rem; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: -2px 0 22px; max-width: 64ch; color: var(--muted); line-height: 1.65; }

.demo-section { padding-top: 0; background: var(--ice); }
.demo-shell { display: grid; grid-template-columns: 1fr .78fr; gap: 76px; padding: 60px; border-radius: 36px; color: white; background: #102b57; box-shadow: 0 34px 100px rgba(15,43,87,.25); }
.demo-copy > p { color: #b4c6e0; }
.demo-copy ul { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 12px; color: #d9e6f8; }
.demo-copy li { position: relative; padding-left: 26px; }
.demo-copy li::before { content: "✓"; position: absolute; left: 0; color: #76d4b7; }
.demo-form { padding: 25px; border-radius: 25px; background: white; color: var(--ink); }
.demo-form label { display: grid; gap: 8px; margin-bottom: 14px; }
.demo-form label span { font-size: .78rem; font-weight: 700; }
.demo-form label i { color: var(--muted); font-weight: 400; font-style: normal; }
.demo-form input, .demo-form textarea { width: 100%; min-height: 52px; padding: 0 15px; border: 1px solid var(--line); border-radius: 13px; background: #f9fbff; color: var(--ink); outline: none; }
.demo-form textarea { min-height: 104px; padding-top: 14px; resize: vertical; }
.demo-form input:focus, .demo-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(40,120,246,.1); }
.optional-fields {
  margin: 2px 0 14px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f9fbff;
}
.optional-fields summary {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--blue-deep);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.optional-fields summary::-webkit-details-marker { display: none; }
.optional-fields summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 9px;
  background: var(--blue-pale);
  color: var(--blue-deep);
  font-size: 1.1rem;
}
.optional-fields[open] summary {
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.optional-fields[open] summary::after { content: "−"; }
.optional-fields label:last-child { margin-bottom: 14px; }
.form-note, .form-feedback { margin: 12px 0 0; text-align: center; color: var(--muted); font-size: .73rem; line-height: 1.45; }
.form-feedback { min-height: 1.2em; }
.form-feedback.is-error { color: var(--red); }
.form-feedback.is-success { color: var(--green); }
.demo-form.is-loading button { opacity: .7; pointer-events: none; }

.site-footer { padding: 48px 0 24px; background: #091b38; color: white; }
.footer-main { display: flex; justify-content: space-between; gap: 50px; padding-bottom: 35px; }
.footer-brand .brand-copy strong { color: white; }
.footer-main > div:first-child > p { max-width: 52ch; margin: 18px 0 0; color: #8fa6c7; line-height: 1.6; }
.footer-links { display: grid; gap: 9px; text-align: right; color: #c6d5e9; }
.footer-links a:hover { color: white; }
.footer-meta { display: flex; justify-content: space-between; gap: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #7188aa; font-size: .72rem; }
.footer-meta p { margin: 0; max-width: 52ch; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .main-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr 430px; gap: 34px; }
  .hero-copy h1 { font-size: clamp(3rem, 7vw, 4.7rem); }
  .workflow-track { grid-template-columns: repeat(3, 1fr); }
  .workflow-track::before { display: none; }
  .compare-grid, .implementation-grid { gap: 48px; }
  .terms-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .section { padding: 82px 0; }
  .hero { padding-top: 60px; }
  .hero-grid, .compare-grid, .control-heading, .implementation-grid, .faq-grid, .demo-shell { grid-template-columns: 1fr; }
  .hero-grid { gap: 48px; }
  .hero-copy h1 { max-width: 12ch; }
  .hero-product { max-width: 560px; margin: 0 auto; }
  .workflow-track, .category-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-grid, .implementation-grid, .faq-grid, .demo-shell { gap: 42px; }
  .control-heading { gap: 24px; }
  .faq-grid .section-heading { margin-bottom: 0; }
  .demo-shell { padding: 42px; }
  .footer-meta { flex-direction: column; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 24px, var(--container)); }
  .section { padding: 68px 0; }
  .header-inner { min-height: 70px; }
  .header-inner > .button { display: none; }
  .brand-mark { width: 38px; height: 38px; }
  .hero { padding: 42px 0 68px; }
  .hero-copy h1 { font-size: clamp(2.28rem, 10.8vw, 3.25rem); line-height: .96; }
  .hero-lead { margin-top: 23px; font-size: 1rem; }
  .promo-banner { margin-top: 21px; padding: 14px 15px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-signals { display: grid; gap: 10px; margin-top: 28px; }
  .hero-grid { gap: 35px; }
  .hero-product { width: calc(100% - 10px); padding-bottom: 42px; }
  .product-window { padding: 12px; border-radius: 23px; transform: none; }
  .window-bar { padding: 3px 3px 13px; }
  .live-pill { display: none; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .metric-grid article:last-child { grid-column: 1 / -1; }
  .request-card { padding: 14px; }
  .request-card-head { display: grid; }
  .material-row { font-size: .76rem; }
  .floating-note { right: -5px; bottom: 0; }
  .section-heading { margin-bottom: 35px; }
  .section-heading h2, .compare-copy h2, .control-heading h2, .implementation-copy h2, .demo-copy h2 { font-size: 2.35rem; }
  .workflow-track, .category-grid, .terms-grid { grid-template-columns: 1fr; }
  .workflow-card { min-height: 0; padding: 20px; display: grid; grid-template-columns: 58px 1fr; gap: 8px 14px; }
  .workflow-card .step-index { grid-column: 1 / -1; }
  .step-icon { grid-row: 2 / 4; margin: 7px 0 0; }
  .workflow-card h3 { align-self: end; }
  .workflow-card p { margin-top: 0; }
  .quote-board { padding: 14px; border-radius: 23px; }
  .board-head { display: grid; }
  .status-pill { justify-self: start; }
  .quote-row { grid-template-columns: 39px 1fr; padding: 12px; }
  .vendor-avatar { width: 39px; height: 39px; }
  .quote-price { grid-column: 2; text-align: left; }
  .control-section { padding-bottom: 76px; }
  .term-card { min-height: 0; padding: 21px; }
  .category-card { min-height: 0; padding: 23px; }
  .category-card h3 { margin-top: 40px; }
  .faq-item { padding: 0 17px; }
  .demo-shell { width: calc(100% - 24px); padding: 28px 18px; border-radius: 28px; }
  .demo-form { padding: 18px; border-radius: 20px; }
  .footer-main { flex-direction: column; }
  .footer-links { text-align: left; }
}

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