:root {
  --ink: #0b1633;
  --ink-2: #15213d;
  --ink-3: #293652;
  --cobalt: #2457f5;
  --cobalt-soft: #eaf0ff;
  --amber: #f2b84b;
  --amber-soft: #fff6df;
  --paper: #f6f7fb;
  --white: #ffffff;
  --line: #dbe1ec;
  --muted: #65718a;
  --green: #0d8f63;
  --red: #cf3347;
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --shadow-sm: 0 12px 32px rgba(11, 22, 51, .08);
  --shadow: 0 28px 80px rgba(11, 22, 51, .16);
  --shell: min(1240px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(11, 22, 51, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 22, 51, .028) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 42%);
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.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: 16px; top: 12px; z-index: 1000; padding: 10px 14px; border-radius: 8px; color: white; background: var(--cobalt); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.section-shell { width: var(--shell); margin-inline: auto; }
.section-space { padding-block: 132px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(11, 22, 51, .08);
  background: rgba(246, 247, 251, .9);
  backdrop-filter: blur(18px) saturate(140%);
}
.header-inner {
  width: var(--shell);
  height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; }
.brand img { display: block; width: 205px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 27px; color: #3f4a61; font-size: 13px; font-weight: 680; }
.site-nav > a:not(.button) { position: relative; padding-block: 10px; }
.site-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 4px; height: 2px; background: var(--cobalt); transition: right .2s ease; }
.site-nav > a:not(.button):hover::after { right: 0; }
.nav-sign-in { padding-left: 26px !important; border-left: 1px solid var(--line); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: white; }
.menu-toggle > span:not(.sr-only) { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--ink); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 52px; padding: 0 23px; border: 1px solid transparent; border-radius: 14px; font-size: 13px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button span { font-size: 16px; }
.button-small { min-height: 42px; padding-inline: 18px; border-radius: 12px; }
.button-dark { color: white; background: var(--ink); box-shadow: 0 10px 24px rgba(11, 22, 51, .16); }
.button-primary { color: white; background: var(--cobalt); box-shadow: 0 14px 34px rgba(36, 87, 245, .28); }
.button-primary:hover { background: #1747e4; box-shadow: 0 18px 38px rgba(36, 87, 245, .34); }
.button-full { width: 100%; border: 0; cursor: pointer; }
.text-link { display: inline-flex; align-items: center; gap: 12px; padding-bottom: 6px; border-bottom: 1px solid #aab2c2; font-size: 13px; font-weight: 800; }
.text-link span { color: var(--cobalt); font-size: 16px; }

.hero {
  min-height: calc(100svh - 78px);
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 72px;
  padding-block: 96px 116px;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0; color: #526078; font-size: 10px; line-height: 1.2; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 2px; background: var(--amber); }
.hero h1 { max-width: 660px; margin: 28px 0 24px; font-size: clamp(58px, 6.5vw, 92px); line-height: .92; letter-spacing: -.07em; font-weight: 820; }
.hero h1 em { display: inline-block; color: var(--cobalt); font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.055em; }
.hero-lead { max-width: 590px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 36px; }
.hero-audience { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 34px; color: #707b91; font-size: 11px; font-weight: 650; }
.hero-audience i { width: 3px; height: 3px; border-radius: 50%; background: var(--amber); }

.hero-product { position: relative; padding: 42px 0 54px; }
.hero-product::before {
  content: "";
  position: absolute;
  inset: -90px -120px -80px -60px;
  z-index: -1;
  background:
    radial-gradient(circle at 68% 34%, rgba(36, 87, 245, .18), transparent 38%),
    radial-gradient(circle at 30% 72%, rgba(242, 184, 75, .18), transparent 30%);
  filter: blur(12px);
}
.interface-label { position: absolute; right: 28px; top: 0; z-index: 4; display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px; border-radius: 10px 10px 0 0; color: white; background: var(--ink); font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.interface-label span { width: 7px; height: 7px; border-radius: 50%; background: #4fd19f; box-shadow: 0 0 0 4px rgba(79, 209, 159, .14); }
.browser-frame { overflow: hidden; border: 1px solid rgba(11, 22, 51, .14); border-radius: 22px; background: white; box-shadow: var(--shadow); }
.browser-frame-hero { transform: perspective(1500px) rotateY(-3deg) rotateX(1deg); transform-origin: center; }
.browser-bar { height: 42px; display: flex; align-items: center; gap: 6px; padding: 0 15px; border-bottom: 1px solid #e6eaf1; background: #f2f4f8; }
.browser-bar > span { width: 7px; height: 7px; border-radius: 50%; background: #c8ced9; }
.browser-bar > span:first-child { background: #f29d8d; }
.browser-bar > span:nth-child(2) { background: #f0c56c; }
.browser-bar > span:nth-child(3) { background: #75c795; }
.browser-bar div { max-width: 260px; margin-inline: auto; overflow: hidden; color: #8390a6; font-size: 9px; white-space: nowrap; text-overflow: ellipsis; }
.browser-frame > img { display: block; width: 100%; height: auto; }
.floating-card { position: absolute; z-index: 5; display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid rgba(11, 22, 51, .1); border-radius: 15px; background: rgba(255, 255, 255, .93); box-shadow: 0 18px 40px rgba(11, 22, 51, .14); backdrop-filter: blur(14px); }
.floating-card small, .floating-card strong { display: block; }
.floating-card small { color: var(--muted); font-size: 8px; }
.floating-card strong { margin-top: 2px; font-size: 14px; }
.floating-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: var(--green); background: #e6fbf2; font-weight: 900; }
.floating-card-progress { left: -34px; bottom: 10px; }
.floating-card-proof { right: -25px; bottom: 28px; }
.proof-dot { width: 13px; height: 13px; border-radius: 50%; background: var(--cobalt); box-shadow: 0 0 0 6px var(--cobalt-soft); }

.trust-strip { min-height: 82px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; padding-inline: max(24px, calc((100vw - 1240px) / 2)); color: #dce4f5; background: var(--ink); }
.trust-strip > div { display: flex; align-items: center; gap: 14px; min-height: 82px; padding-inline: 22px; border-right: 1px solid rgba(255, 255, 255, .12); font-size: 11px; font-weight: 700; }
.trust-strip > div:first-child { padding-left: 0; }
.trust-strip > div:last-child { border-right: 0; }
.trust-strip strong { color: var(--amber); font-size: 9px; letter-spacing: .12em; }

.section-intro { max-width: 840px; }
.section-intro h2, .proof-heading h2, .workflow-intro h2, .report-copy h2, .security-copy h2, .pilot-copy h2 { margin: 24px 0 20px; font-size: clamp(44px, 5vw, 67px); line-height: 1.02; letter-spacing: -.058em; }
.section-intro > p:last-child, .workflow-intro > p:last-child { max-width: 690px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 66px; }
.problem-card { min-height: 510px; position: relative; overflow: hidden; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255, 255, 255, .9); }
.problem-card::before { content: ""; position: absolute; right: -55px; top: -65px; width: 190px; height: 190px; border: 1px solid #e4e8f0; border-radius: 50%; }
.card-index { position: relative; z-index: 2; color: #8a95a9; font-size: 9px; font-weight: 850; letter-spacing: .13em; }
.line-icon { width: 90px; height: 90px; position: relative; margin-top: 45px; border: 1.5px solid var(--ink); border-radius: 25px; background: var(--paper); }
.line-icon::before, .line-icon::after { content: ""; position: absolute; }
.line-icon-location::before { left: 31px; top: 22px; width: 25px; height: 34px; border: 3px solid var(--cobalt); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }
.line-icon-location::after { left: 40px; top: 31px; width: 9px; height: 9px; border: 3px solid var(--cobalt); border-radius: 50%; }
.line-icon-people::before { left: 22px; top: 24px; width: 19px; height: 19px; border: 3px solid currentColor; border-radius: 50%; box-shadow: 28px 0 0 -3px var(--paper), 28px 0 0 0 currentColor; }
.line-icon-people::after { left: 17px; top: 53px; width: 32px; height: 17px; border: 3px solid currentColor; border-bottom: 0; border-radius: 18px 18px 0 0; box-shadow: 28px 0 0 -3px var(--ink), 28px 0 0 0 currentColor; }
.line-icon-camera::before { left: 20px; top: 29px; width: 48px; height: 34px; border: 3px solid var(--cobalt); border-radius: 8px; }
.line-icon-camera::after { left: 36px; top: 38px; width: 14px; height: 14px; border: 3px solid var(--cobalt); border-radius: 50%; }
.problem-card h3 { margin: auto 0 13px; font-size: 27px; letter-spacing: -.045em; }
.problem-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.problem-card ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 24px 0 0; padding: 0; list-style: none; }
.problem-card li { padding: 7px 9px; border-radius: 999px; color: #536078; background: #f0f3f8; font-size: 9px; font-weight: 750; }
.problem-card-dark { color: white; border-color: var(--ink); background: var(--ink); }
.problem-card-dark::before { border-color: rgba(255, 255, 255, .12); }
.problem-card-dark .card-index, .problem-card-dark p { color: #aeb9ce; }
.problem-card-dark .line-icon { color: white; border-color: rgba(255, 255, 255, .35); background: #121f3e; }
.problem-card-dark .line-icon-people::before { box-shadow: 28px 0 0 -3px #121f3e, 28px 0 0 0 currentColor; }
.problem-card-dark .line-icon-people::after { box-shadow: 28px 0 0 -3px #121f3e, 28px 0 0 0 currentColor; }
.problem-card-dark li { color: #d9e0ed; background: rgba(255, 255, 255, .08); }

.proof-section { overflow: hidden; color: white; background: var(--ink); }
.proof-section .section-shell { position: relative; }
.proof-section .section-shell::before { content: ""; position: absolute; width: 600px; height: 600px; right: -300px; top: -260px; border-radius: 50%; background: rgba(36, 87, 245, .18); filter: blur(20px); }
.proof-heading { position: relative; display: grid; grid-template-columns: 1.2fr .7fr; align-items: end; gap: 90px; }
.proof-heading h2 { max-width: 760px; color: white; }
.proof-heading > p { max-width: 430px; margin: 0 0 27px; color: #aab6cc; font-size: 13px; line-height: 1.7; }
.eyebrow-light { color: #9eabc1; }
.product-gallery { position: relative; margin-top: 62px; padding: 16px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 30px; background: rgba(255, 255, 255, .04); }
.gallery-tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 6px; border-radius: 16px; background: #071027; }
.gallery-tabs button { min-height: 50px; border: 0; border-radius: 12px; color: #929fb6; background: transparent; cursor: pointer; font-size: 12px; font-weight: 750; }
.gallery-tabs button[aria-selected="true"] { color: var(--ink); background: var(--amber); box-shadow: 0 8px 24px rgba(242, 184, 75, .17); }
.gallery-stage { display: grid; grid-template-columns: .42fr 1fr; align-items: center; gap: 36px; padding: 48px 32px 32px; }
.gallery-kicker { color: #7f99ff; font-size: 9px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.gallery-copy h3 { margin: 15px 0 13px; font-size: 31px; line-height: 1.08; letter-spacing: -.045em; }
.gallery-copy p { margin: 0; color: #aeb9ce; font-size: 13px; line-height: 1.7; }
.gallery-points { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.gallery-points span { padding: 7px 9px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 999px; color: #dbe2ef; font-size: 9px; }
.gallery-frame { border-color: rgba(255, 255, 255, .16); box-shadow: 0 32px 90px rgba(0, 0, 0, .32); }
.gallery-frame img { aspect-ratio: 1300 / 630; object-fit: cover; object-position: top left; }

.workflow-intro { max-width: 830px; }
.workflow-track { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 74px; border-top: 1px solid #bbc4d3; }
.workflow-track article { min-height: 250px; position: relative; padding: 38px 26px 20px 0; border-right: 1px solid var(--line); }
.workflow-track article::before { content: ""; position: absolute; left: 0; top: -6px; width: 11px; height: 11px; border-radius: 50%; background: var(--cobalt); box-shadow: 0 0 0 7px rgba(36, 87, 245, .11); }
.workflow-track article:last-child { border-right: 0; }
.workflow-track span { color: var(--cobalt); font-size: 9px; font-weight: 850; letter-spacing: .12em; }
.workflow-track h3 { margin: 54px 0 12px; font-size: 24px; }
.workflow-track p { max-width: 180px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }

.report-feature { display: grid; grid-template-columns: 1.22fr .78fr; align-items: center; gap: 76px; padding-bottom: 132px; }
.report-visual { position: relative; }
.report-visual::before { content: ""; position: absolute; inset: 16% -40px -40px 12%; z-index: -1; border-radius: 40px; background: var(--amber-soft); }
.report-visual .browser-frame { transform: rotate(-1deg); }
.report-visual img { aspect-ratio: 1300 / 700; object-fit: cover; object-position: top left; }
.report-copy > p:not(.eyebrow) { color: var(--muted); font-size: 15px; line-height: 1.75; }
.report-copy h2 { font-size: clamp(40px, 4.4vw, 58px); }
.report-stat { display: grid; grid-template-columns: 62px 1fr; align-items: center; gap: 18px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.report-stat strong { font-family: Georgia, serif; color: var(--cobalt); font-size: 55px; font-weight: 500; }
.report-stat span { color: #59667e; font-size: 12px; line-height: 1.5; }

.security { color: white; background: #071027; }
.security-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; align-items: center; }
.security-copy h2 { max-width: 600px; color: white; }
.security-copy > p:not(.eyebrow) { max-width: 590px; color: #aab6cc; font-size: 15px; line-height: 1.75; }
.text-link-light { margin-top: 22px; color: white; border-color: #516078; }
.text-link-light span { color: var(--amber); }
.security-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.security-list article { min-height: 185px; display: grid; grid-template-columns: 28px 1fr; gap: 15px; padding: 25px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 18px; background: rgba(255, 255, 255, .035); }
.security-list article > span { color: var(--amber); font-size: 9px; font-weight: 850; letter-spacing: .12em; }
.security-list h3 { margin: 0 0 9px; font-size: 18px; }
.security-list p { margin: 0; color: #a7b3c8; font-size: 12px; line-height: 1.6; }

.pilot { background: #eef1f7; }
.pilot-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 90px; }
.pilot-copy > p:not(.eyebrow) { color: var(--muted); font-size: 15px; line-height: 1.75; }
.pilot-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin-top: 28px; }
.pilot-checks span { position: relative; padding-left: 24px; color: #46536b; font-size: 12px; font-weight: 700; }
.pilot-checks span::before { content: "✓"; position: absolute; left: 0; top: -2px; width: 17px; height: 17px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--green); font-size: 9px; }
.pilot-form { padding: 34px; border: 1px solid var(--line); border-radius: 28px; background: white; box-shadow: var(--shadow-sm); }
.form-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 23px; }
.form-heading strong { font-size: 22px; letter-spacing: -.035em; }
.form-heading span { padding: 6px 9px; border-radius: 999px; color: #70520d; background: var(--amber-soft); font-size: 8px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.pilot-form label { display: block; margin-top: 14px; color: #4a5770; font-size: 10px; font-weight: 800; }
.pilot-form input, .pilot-form textarea { width: 100%; margin-top: 7px; padding: 13px 14px; border: 1px solid #d6dce7; border-radius: 11px; outline: 0; color: var(--ink); background: #fbfcfe; font-size: 13px; transition: border .2s ease, box-shadow .2s ease, background .2s ease; }
.pilot-form input:focus, .pilot-form textarea:focus { border-color: var(--cobalt); background: white; box-shadow: 0 0 0 4px rgba(36, 87, 245, .1); }
.pilot-form textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pilot-form .button { margin-top: 20px; }
.form-note { margin: 12px 0 0; color: #8490a5; font-size: 9px; text-align: center; }
.form-note.success { color: var(--green); font-weight: 750; }

.site-footer { color: #c5cede; background: #050c1e; }
.footer-main { min-height: 245px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 80px; }
.brand-reversed img { width: 205px; }
.footer-main > div:first-child > p { margin: 17px 0 0; color: #728098; font-family: Georgia, serif; font-size: 18px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 42px; }
.footer-links > div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-links strong { margin-bottom: 4px; color: white; font-size: 11px; }
.footer-links a { color: #8794aa; font-size: 11px; }
.footer-links a:hover { color: white; }
.footer-bottom { min-height: 70px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255, 255, 255, .09); color: #68758d; font-size: 9px; }
.footer-bottom a { color: #8f9bb0; }
.footer-bottom a:hover { color: white; }
.form-note a { color: #5b6c8c; font-weight: 750; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal-delay { transition-delay: .12s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button { transition: none; }
}

@media (max-width: 1100px) {
  .site-nav { gap: 18px; }
  .hero { grid-template-columns: 1fr; min-height: 0; gap: 44px; padding-top: 80px; }
  .hero-copy { max-width: 820px; }
  .hero-product { max-width: 900px; }
  .problem-card { min-height: 465px; }
  .proof-heading { gap: 45px; }
  .gallery-stage { grid-template-columns: .35fr 1fr; }
  .report-feature { gap: 45px; }
  .security-grid, .pilot-grid { gap: 55px; }
}

@media (max-width: 880px) {
  :root { --shell: min(100% - 32px, 720px); }
  .section-space { padding-block: 94px; }
  .header-inner { height: 70px; }
  .brand img { width: 178px; }
  .menu-toggle { display: block; }
  .site-nav { position: absolute; left: 16px; right: 16px; top: 78px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: var(--shadow-sm); }
  .site-nav.open { display: flex; }
  .site-nav > a { padding: 13px !important; }
  .site-nav > a:not(.button)::after { display: none; }
  .nav-sign-in { border-left: 0; border-top: 1px solid var(--line); }
  .site-nav .button { margin-top: 7px; }
  .hero { padding-top: 68px; padding-bottom: 92px; }
  .hero h1 { font-size: clamp(55px, 13vw, 82px); }
  .floating-card-proof { right: 5px; }
  .floating-card-progress { left: 5px; }
  .trust-strip { grid-template-columns: 1fr 1fr; padding: 18px 16px; }
  .trust-strip > div { min-height: 56px; padding: 0 15px !important; border-bottom: 1px solid rgba(255, 255, 255, .08); }
  .trust-strip > div:nth-child(2) { border-right: 0; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card { min-height: 400px; }
  .proof-heading { grid-template-columns: 1fr; gap: 4px; }
  .proof-heading > p { margin-bottom: 0; }
  .gallery-stage { grid-template-columns: 1fr; padding: 38px 18px 18px; }
  .gallery-copy { max-width: 570px; }
  .workflow-track { grid-template-columns: 1fr 1fr; border-top: 0; }
  .workflow-track article { min-height: 200px; border-top: 1px solid #bbc4d3; }
  .report-feature, .security-grid, .pilot-grid { grid-template-columns: 1fr; }
  .report-feature { padding-bottom: 94px; }
  .report-copy { max-width: 650px; }
  .security-list { margin-top: 20px; }
  .footer-main { grid-template-columns: 1fr; gap: 44px; padding-block: 55px; }
}

@media (max-width: 560px) {
  :root { --shell: min(100% - 24px, 520px); }
  .section-space { padding-block: 76px; }
  .hero { padding-top: 52px; padding-bottom: 76px; }
  .hero h1 { margin-top: 23px; font-size: clamp(48px, 16vw, 68px); }
  .hero-lead { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .browser-frame { border-radius: 15px; }
  .browser-bar { height: 32px; }
  .browser-bar div { font-size: 8px; }
  .interface-label { right: 8px; }
  .floating-card { position: relative; left: auto; right: auto; bottom: auto; display: inline-flex; margin-top: 11px; }
  .floating-card-proof { margin-left: 8px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip > div { border-right: 0; }
  .section-intro h2, .proof-heading h2, .workflow-intro h2, .report-copy h2, .security-copy h2, .pilot-copy h2 { font-size: 42px; }
  .problem-grid { margin-top: 44px; }
  .problem-card { min-height: 385px; padding: 26px; }
  .gallery-tabs { grid-template-columns: 1fr 1fr; }
  .gallery-stage { padding-inline: 8px; }
  .gallery-copy { padding-inline: 10px; }
  .gallery-copy h3 { font-size: 27px; }
  .gallery-frame img { min-height: 270px; object-fit: cover; object-position: left top; }
  .workflow-track { grid-template-columns: 1fr; }
  .workflow-track article { min-height: 165px; padding-right: 0; border-right: 0; }
  .workflow-track h3 { margin-top: 32px; }
  .report-visual::before { right: -12px; bottom: -20px; }
  .security-list { grid-template-columns: 1fr; }
  .security-list article { min-height: 150px; }
  .pilot-checks, .form-row, .footer-links { grid-template-columns: 1fr; }
  .pilot-form { padding: 24px; }
  .form-heading { align-items: flex-start; flex-direction: column; gap: 9px; }
  .footer-links { gap: 28px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 7px; }
}
