:root {
  color-scheme: light;
  --ink: #07111f;
  --ink-2: #0d1a2d;
  --navy: #102039;
  --slate: #334155;
  --muted: #66758a;
  --soft: #f6fbfa;
  --soft-2: #eef8f5;
  --white: #ffffff;
  --line: rgba(15, 23, 42, .10);
  --line-strong: rgba(20, 184, 166, .25);
  --teal: #0f766e;
  --teal-2: #0d9488;
  --mint: #a7f3d0;
  --green: #22c55e;
  --amber: #f59e0b;
  --red: #e11d48;
  --blue: #0ea5e9;
  --shell: 1200px;
  --radius-sm: 18px;
  --radius: 30px;
  --radius-lg: 46px;
  --shadow-soft: 0 18px 50px rgba(15, 23, 42, .08);
  --shadow: 0 30px 80px rgba(8, 17, 31, .18);
  --shadow-dark: 0 36px 100px rgba(0, 5, 15, .46);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at 10% 6%, rgba(20,184,166,.12), transparent 26rem),
    radial-gradient(circle at 90% 0%, rgba(14,165,233,.09), transparent 30rem),
    linear-gradient(180deg, #f9fffd 0%, #f6fbfa 42%, #ffffff 100%);
  color: var(--ink);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background-image:
    linear-gradient(rgba(15, 118, 110, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 118, 110, .055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000 0%, #000 28%, transparent 72%);
}
.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .22;
  background-image: radial-gradient(rgba(8,17,31,.3) .5px, transparent .5px);
  background-size: 8px 8px;
  mix-blend-mode: multiply;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); line-height: 1.7; }
h1, h2, h3, h4 { margin: 0; letter-spacing: -.045em; line-height: .98; }
h1 { font-size: clamp(3.4rem, 7.4vw, 7.35rem); max-width: 860px; }
h2 { font-size: clamp(2.25rem, 5.3vw, 5.1rem); max-width: 880px; }
h3 { font-size: 1.3rem; line-height: 1.1; }
h4 { font-size: 1rem; line-height: 1.1; }
.shell { width: min(100% - 48px, var(--shell)); margin-inline: auto; }
.section { position: relative; padding: 110px 0; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-150%);
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled {
  background: rgba(248, 255, 253, .84);
  backdrop-filter: blur(22px);
  border-color: rgba(15,23,42,.08);
  box-shadow: 0 16px 42px rgba(8,17,31,.08);
}
.nav { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 950; min-width: max-content; }
.brand img { width: 48px; height: 48px; border-radius: 15px; box-shadow: 0 14px 30px rgba(15,118,110,.22); }
.brand strong { display: block; font-size: 1.08rem; letter-spacing: -.02em; }
.brand small { display: block; margin-top: 2px; color: var(--muted); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { padding: 12px 13px; border-radius: 999px; color: #20314a; font-size: .91rem; font-weight: 850; }
.nav-links a:hover { background: rgba(15,118,110,.08); color: var(--teal); }
.nav-links .nav-cta { margin-left: 10px; color: #fff; background: var(--ink); box-shadow: 0 16px 35px rgba(8,17,31,.16); }
.nav-links .nav-cta:hover { color: #fff; background: var(--teal); }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--ink); font: inherit; font-weight: 900; }
.menu-toggle i { position: relative; display: inline-block; width: 28px; height: 2px; margin-left: 10px; border-radius: 20px; background: currentColor; }
.menu-toggle i::before, .menu-toggle i::after { content:""; position:absolute; left:0; width:28px; height:2px; border-radius:20px; background:currentColor; }
.menu-toggle i::before { top:-8px; }
.menu-toggle i::after { top:8px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 950;
  font-size: .78rem;
}
.eyebrow span { width: 10px; height: 10px; border-radius: 999px; background: var(--teal-2); box-shadow: 0 0 0 6px rgba(20,184,166,.12); }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 56px; padding: 0 24px; border-radius: 999px; border: 1px solid transparent; font-weight: 950; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--teal), #0d9488); color: #fff; box-shadow: 0 20px 50px rgba(15,118,110,.30); }
.button-secondary { background: rgba(255,255,255,.82); color: var(--ink); border-color: rgba(15,118,110,.2); box-shadow: 0 14px 34px rgba(15,23,42,.08); }
.button-secondary:hover { background: #fff; border-color: var(--teal); }

.hero {
  position: relative;
  padding: 74px 0 42px;
  min-height: 820px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 34px 0 auto;
  height: 745px;
  z-index: -3;
  background:
    radial-gradient(circle at 70% 23%, rgba(8,17,31,.98) 0 31rem, transparent 31.2rem),
    radial-gradient(circle at 91% 30%, rgba(20,184,166,.20), transparent 30rem),
    linear-gradient(135deg, rgba(236,253,245,.96), rgba(255,255,255,.78));
  clip-path: polygon(0 0, 100% 0, 100% 86%, 70% 100%, 0 89%);
}
.hero-smoke {
  position: absolute;
  inset: 40px 0 auto;
  height: 760px;
  z-index: -2;
  opacity: .65;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(167,243,208,.16), transparent 36rem),
    conic-gradient(from 215deg at 70% 25%, rgba(255,255,255,.18), transparent 12%, rgba(14,165,233,.12), transparent 35%, rgba(167,243,208,.18), transparent 52%);
  filter: blur(22px);
}
.hero-layout { display: grid; grid-template-columns: minmax(0,.8fr) minmax(620px,1.12fr); gap: 58px; align-items: center; }
.hero-copy { padding: 38px 0 0; }
.hero .lead { max-width: 680px; margin-top: 24px; color: #475569; font-size: 1.24rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 32px 0 28px; }
.status-row { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 13px; max-width: 720px; }
.status-row article { padding: 18px; border-radius: 24px; background: rgba(255,255,255,.78); border: 1px solid rgba(15,118,110,.18); box-shadow: 0 14px 32px rgba(15,23,42,.07); backdrop-filter: blur(12px); }
.status-row b { display:block; color: var(--teal); font-size: 1.72rem; letter-spacing: -.05em; }
.status-row span { display:block; color: var(--slate); font-size: .82rem; font-weight: 800; line-height: 1.35; }
.hero-media { position: relative; min-width: 0; }
.showcase-card { position: relative; margin-right: -95px; padding: 12px; border-radius: 42px; background: linear-gradient(180deg, rgba(255,255,255,.15), rgba(255,255,255,.06)); border: 1px solid rgba(255,255,255,.16); box-shadow: var(--shadow-dark); backdrop-filter: blur(18px); }
.showcase-card::after { content:""; position:absolute; inset:auto 8% -26px; height:44px; border-radius:999px; background:rgba(0,0,0,.42); filter:blur(24px); z-index:-1; }
.showcase-card img { width: 100%; border-radius: 32px; }
.hero-float { position: absolute; z-index: 3; width: 230px; padding: 18px; border-radius: 24px; background: rgba(255,255,255,.95); border: 1px solid rgba(167,243,208,.65); box-shadow: var(--shadow); }
.hero-float small { display:block; color: var(--teal); text-transform: uppercase; letter-spacing: .12em; font-size: .68rem; font-weight: 950; }
.hero-float strong { display:block; margin-top: 7px; font-size: 1rem; letter-spacing: -.03em; }
.sync-card { left: -34px; bottom: 54px; }
.report-card-mini { right: -40px; top: 90px; }
.pulse { display:inline-block; width: 10px; height:10px; margin-right: 8px; border-radius:999px; background: var(--green); box-shadow: 0 0 0 8px rgba(34,197,94,.14); }
.system-tags { display:flex; flex-wrap:wrap; gap: 10px; margin-top: 42px; padding: 14px; border-radius: 28px; background: rgba(255,255,255,.76); border: 1px solid rgba(15,118,110,.16); box-shadow: 0 18px 45px rgba(15,23,42,.07); }
.system-tags span { padding: 10px 14px; border-radius: 999px; background: #ecfdf5; color: var(--teal); font-size: .82rem; font-weight: 900; }

.evidence-strip { padding: 74px 0; }
.strip-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 32px; align-items: center; padding: 30px; border-radius: 38px; background: rgba(255,255,255,.9); border: 1px solid rgba(15,118,110,.13); box-shadow: var(--shadow-soft); }
.strip-grid h2 { font-size: clamp(1.8rem,3.2vw,3.1rem); }
.strip-metrics { display:grid; grid-template-columns: repeat(6,1fr); gap: 10px; }
.strip-metrics article { min-height: 96px; display:grid; place-items:center; text-align:center; padding: 12px; border-radius: 22px; background: #f8fafc; border: 1px solid var(--line); }
.strip-metrics b { display:block; color: var(--ink); font-size: 2.1rem; letter-spacing: -.06em; }
.strip-metrics span { display:block; color: var(--slate); font-weight: 850; font-size: .8rem; }
.strip-metrics .green { background:#dcfce7; border-color:rgba(34,197,94,.35); }
.strip-metrics .green b { color:#166534; }
.strip-metrics .amber { background:#fef3c7; border-color:rgba(245,158,11,.4); }
.strip-metrics .amber b { color:#92400e; }
.strip-metrics .red { background:#ffe4e6; border-color:rgba(225,29,72,.32); }
.strip-metrics .red b { color:#9f1239; }

.section-heading { max-width: 900px; margin: 0 auto 46px; text-align: center; }
.section-heading .eyebrow { justify-content: center; }
.section-heading p { max-width: 760px; margin-inline: auto; font-size: 1.08rem; }
.platform-section { background: linear-gradient(180deg, #fff, #f6fbfa); }
.bento-grid { display:grid; grid-template-columns: 1.12fr .88fr .88fr; grid-auto-rows: minmax(260px,auto); gap: 18px; }
.bento-card { position:relative; overflow:hidden; min-height: 260px; padding: 28px; border-radius: 32px; background: rgba(255,255,255,.92); border: 1px solid rgba(15,118,110,.14); box-shadow: var(--shadow-soft); }
.bento-card h3 { font-size: 1.55rem; margin: 14px 0 12px; }
.bento-card p { margin: 0; }
.bento-card.primary { grid-row: span 2; color: #fff; background: linear-gradient(145deg, #07111f, #102039 58%, #0f766e); border-color: rgba(255,255,255,.12); box-shadow: var(--shadow-dark); }
.bento-card.primary p { color:#cbd5e1; }
.card-label { display:inline-flex; padding: 9px 12px; border-radius:999px; background: rgba(167,243,208,.12); color: var(--mint); text-transform: uppercase; letter-spacing:.13em; font-size:.7rem; font-weight:950; }
.mini-queue { display:grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-top: 34px; }
.mini-queue span { padding: 16px; border-radius: 20px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); color:#cbd5e1; font-weight:800; }
.mini-queue b { display:block; color: var(--mint); font-size: 1.55rem; }
.bento-card.screenshot { padding: 12px; min-height: 560px; }
.bento-card.screenshot img { width:100%; height:100%; object-fit:cover; object-position:top center; border-radius: 24px; }
.icon-badge { display:inline-grid; place-items:center; min-width:54px; height:46px; padding: 0 13px; border-radius:17px; background:#ecfdf5; color:var(--teal); border: 1px solid rgba(15,118,110,.13); font-size:.78rem; font-weight:950; letter-spacing:.08em; }
.icon-badge.amber { background:#fffbeb; color:#b45309; }
.bento-card.wide { grid-column: span 2; padding: 12px; min-height: 330px; background:#07111f; }
.bento-card.wide img { width:100%; height:100%; object-fit:cover; border-radius: 24px; }

.screens-section { background: var(--ink); color:#fff; overflow:hidden; }
.screens-section::before { content:""; position:absolute; inset:-220px -140px auto auto; width:760px; height:760px; border-radius:999px; background:rgba(20,184,166,.25); filter:blur(100px); }
.screens-section::after { content:""; position:absolute; inset:auto auto -260px -140px; width:680px; height:680px; border-radius:999px; background:rgba(14,165,233,.14); filter:blur(90px); }
.screens-section p { color:#cbd5e1; }
.screens-section .eyebrow { color:var(--mint); }
.screens-section .eyebrow span { background:var(--mint); box-shadow:0 0 0 6px rgba(167,243,208,.14); }
.screens-layout { position:relative; z-index:1; display:grid; grid-template-columns: minmax(0,.92fr) minmax(420px,.78fr); gap: 72px; align-items:center; }
.screens-copy h2 { max-width: 850px; }
.screens-copy > p:not(.eyebrow) { max-width: 680px; font-size:1.08rem; }
.screen-tabs { display:flex; flex-wrap:wrap; gap: 8px; margin: 30px 0 26px; }
.screen-tab { border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.08); color:#e0f2fe; border-radius:999px; padding: 10px 13px; cursor:pointer; font:inherit; font-size:.84rem; font-weight:950; transition: transform .2s ease, background .2s ease, color .2s ease; }
.screen-tab:hover { transform: translateY(-1px); background:rgba(255,255,255,.14); }
.screen-tab.active { color:#073b36; background:var(--mint); border-color:transparent; }
.screen-text { display:none; max-width: 680px; animation: fadeUp .25s ease both; }
.screen-text.active { display:block; }
.screen-text small { color: var(--mint); text-transform: uppercase; letter-spacing:.14em; font-weight:950; }
.screen-text h3 { font-size: clamp(2rem,4vw,3.4rem); margin: 12px 0 16px; color:#fff; }
.phone-stage { position:relative; display:grid; place-items:center; min-height: 720px; }
.phone-glow { position:absolute; width: 520px; height:520px; border-radius:999px; background:linear-gradient(135deg,rgba(20,184,166,.34),rgba(14,165,233,.12)); filter:blur(14px); }
.phone-frame { position:relative; z-index:1; width:min(410px,78vw); padding: 16px; border-radius: 52px; background: linear-gradient(180deg,#f8fafc,#cbd5e1); border:1px solid rgba(255,255,255,.45); box-shadow: 0 44px 110px rgba(0,0,0,.48); }
.phone-frame::before { content:""; position:absolute; top:10px; left:50%; transform:translateX(-50%); width:112px; height:24px; border-radius:0 0 18px 18px; background:#0f172a; z-index:2; }
.phone-frame img { width:100%; border-radius: 36px; transition: opacity .18s ease, transform .18s ease; }
.device-caption { position:absolute; z-index:2; bottom:66px; left:50%; transform:translateX(-50%); min-width:max-content; padding: 12px 16px; border-radius:999px; color:#082f2c; background:var(--mint); font-weight:950; box-shadow: 0 16px 36px rgba(0,0,0,.25); }
.capture-grid { position:relative; z-index:1; display:grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 30px; }
.capture-card { display:grid; grid-template-columns: 145px 1fr; gap: 18px; align-items:center; padding: 16px; border-radius: 30px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12); backdrop-filter: blur(16px); box-shadow: var(--shadow-dark); }
.capture-card img { width:145px; height:210px; object-fit:cover; object-position:top center; border-radius: 20px; background:#fff; }
.capture-card h3 { color:#fff; margin-bottom: 10px; }
.capture-card p { margin:0; font-size:.92rem; }

.reporting-section { background:#fff; overflow:hidden; }
.reporting-layout { display:grid; grid-template-columns: minmax(380px,.88fr) minmax(0,1fr); gap: 84px; align-items:center; }
.report-sheet { position:relative; padding: 30px; border-radius: 36px; background:#fff; border:1px solid rgba(15,23,42,.1); box-shadow: var(--shadow); }
.report-sheet::before { content:""; position:absolute; inset:-22px auto auto -22px; width: 140px; height: 140px; border-radius: 38px; background:rgba(167,243,208,.28); z-index:-1; filter: blur(2px); }
.sheet-top { display:flex; justify-content:space-between; gap: 20px; align-items:flex-start; padding-bottom: 22px; border-bottom: 4px solid var(--ink); }
.sheet-top small { display:block; color: var(--muted); font-weight:850; }
.sheet-top h3 { font-size: clamp(2rem,4vw,3.2rem); margin: 4px 0 8px; }
.sheet-top p { margin:0; }
.sheet-status { max-width: 230px; padding: 12px 14px; border-radius: 999px; background:#dcfce7; color:#166534; border:1px solid rgba(34,197,94,.35); text-transform:uppercase; letter-spacing:.08em; font-weight:950; font-size:.72rem; text-align:center; }
.sheet-notice { margin: 28px 0 18px; padding: 16px; border-radius: 18px; background:#fffbeb; color:#78350f; border:1px solid rgba(245,158,11,.35); font-weight:750; line-height:1.55; }
.sheet-customer { display:grid; grid-template-columns: 1fr auto auto; gap: 12px; align-items:center; padding: 16px; border-radius: 18px; background:#f8fafc; border:1px solid var(--line); }
.sheet-customer strong { font-size:1.1rem; }
.sheet-customer span { color: var(--muted); font-weight:800; }
.sheet-customer b { color: var(--ink); }
.sheet-metrics { display:grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin: 18px 0; }
.sheet-metrics article { min-height: 98px; display:grid; place-items:center; text-align:center; border-radius: 18px; background:#f8fafc; border:1px solid var(--line); }
.sheet-metrics b { font-size:2rem; letter-spacing:-.06em; }
.sheet-metrics span { color: var(--slate); font-weight:850; font-size:.82rem; }
.sheet-metrics .green { background:#dcfce7; border-color:rgba(34,197,94,.35); color:#166534; }
.sheet-metrics .amber { background:#fef3c7; border-color:rgba(245,158,11,.35); color:#92400e; }
.sheet-metrics .red { background:#ffe4e6; border-color:rgba(225,29,72,.28); color:#9f1239; }
.sheet-two-col { display:grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.sheet-two-col article { padding: 16px; border-radius: 18px; background:#f8fafc; border:1px solid var(--line); }
.sheet-two-col h4 { margin-bottom: 8px; }
.sheet-two-col p { margin:0; font-size:.9rem; }
.report-copy > p:not(.eyebrow) { max-width: 700px; font-size:1.08rem; }
.proof-cards { display:grid; gap: 12px; margin-top: 30px; }
.proof-cards article { display:grid; grid-template-columns: 190px 1fr; gap:18px; padding: 18px; border-radius: 24px; background:#f8fafc; border:1px solid var(--line); }
.proof-cards strong { color: var(--ink); }
.proof-cards span { color: var(--muted); line-height:1.5; }
.report-scene { margin-top: 70px; border-radius: 44px; overflow:hidden; box-shadow: var(--shadow-dark); background:#07111f; }
.report-scene img { width:100%; }

.workflow-section { background:linear-gradient(180deg,#f6fbfa,#fff); }
.timeline { position:relative; display:grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.timeline::before { content:""; position:absolute; left:7%; right:7%; top:50px; height:2px; background:linear-gradient(90deg,rgba(15,118,110,.12),rgba(20,184,166,.6),rgba(15,118,110,.12)); }
.timeline article { position:relative; min-height: 250px; padding: 24px; border-radius: 28px; background:#fff; border:1px solid var(--line); box-shadow: var(--shadow-soft); }
.timeline span { display:grid; place-items:center; width:54px; height:54px; margin-bottom: 24px; border-radius: 18px; color:var(--mint); background:var(--ink); font-weight:950; }
.timeline h3 { margin-bottom: 12px; }
.timeline p { margin:0; font-size:.95rem; }

.systems-section { background: #07111f; color:#fff; overflow:hidden; }
.systems-section::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 85% 16%,rgba(20,184,166,.18),transparent 30rem), radial-gradient(circle at 0 80%,rgba(14,165,233,.12),transparent 28rem); }
.systems-section p { color:#cbd5e1; }
.systems-section .eyebrow { color:var(--mint); }
.systems-section .eyebrow span { background:var(--mint); }
.systems-layout { position:relative; z-index:1; display:grid; grid-template-columns:minmax(0,.82fr) minmax(540px,1fr); gap:64px; align-items:center; }
.systems-copy > p:not(.eyebrow) { max-width: 650px; font-size:1.08rem; }
.component-grid { display:flex; flex-wrap:wrap; gap:10px; margin-top:28px; }
.component-grid span { padding: 11px 14px; border-radius:999px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12); color:#e2e8f0; font-weight:900; }
.systems-art { position:relative; }
.systems-art::after { content:""; position:absolute; inset:auto 40px -24px; height:46px; border-radius:999px; background:rgba(0,0,0,.5); filter:blur(24px); z-index:-1; }
.systems-art img { border-radius: 44px; box-shadow: var(--shadow-dark); }

.admin-section { background:linear-gradient(180deg,#fff,#eef8f5); }
.admin-grid { display:grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.admin-card { min-height: 440px; padding: 38px; border-radius: 40px; display:flex; flex-direction:column; justify-content:space-between; overflow:hidden; position:relative; box-shadow: var(--shadow); }
.admin-card::after { content:""; position:absolute; right:-90px; bottom:-110px; width:330px; height:330px; border-radius:999px; background:rgba(167,243,208,.2); filter: blur(14px); }
.admin-card.dark { background:linear-gradient(145deg,#07111f,#102039 60%,#0f766e); color:#fff; border:1px solid rgba(255,255,255,.12); }
.admin-card.light { background:linear-gradient(145deg,#fff,#ecfdf5); border:1px solid rgba(15,118,110,.14); }
.admin-card.dark p { color:#cbd5e1; }
.admin-card.light p { color:var(--muted); }
.admin-card .eyebrow { margin-bottom:16px; }
.admin-card.dark .eyebrow { color:var(--mint); }
.admin-card.dark .eyebrow span { background:var(--mint); }
.admin-card h2 { font-size: clamp(2.1rem,4vw,3.7rem); margin-bottom:20px; }

.cta-section { padding: 88px 0; background:#fff; }
.cta-card { position:relative; display:grid; grid-template-columns: 1fr auto; gap: 32px; align-items:center; padding: 48px; border-radius: 44px; background: radial-gradient(circle at 20% 0%,rgba(167,243,208,.22),transparent 26rem), linear-gradient(135deg,#07111f,#102039); color:#fff; overflow:hidden; box-shadow: var(--shadow-dark); }
.cta-card::after { content:""; position:absolute; inset:-120px -160px auto auto; width:430px; height:430px; border-radius:999px; background:rgba(20,184,166,.25); filter:blur(32px); }
.cta-card > * { position:relative; z-index:1; }
.cta-card h2 { max-width: 860px; font-size: clamp(2.2rem,5vw,4.45rem); }
.cta-card p { max-width:720px; color:#cbd5e1; font-size:1.08rem; }
.cta-card .eyebrow { color:var(--mint); }
.cta-card .eyebrow span { background:var(--mint); }

.site-footer { background:#050a12; color:#fff; padding: 58px 0 30px; }
.footer-grid { display:grid; grid-template-columns: 1.4fr .6fr .9fr; gap: 46px; }
.footer-brand { margin-bottom: 16px; }
.site-footer p, .site-footer a, .site-footer span { color:#cbd5e1; }
.site-footer h3 { margin: 0 0 12px; font-size:.95rem; letter-spacing:.04em; text-transform:uppercase; color:#fff; }
.site-footer a, .site-footer span { display:block; margin:8px 0; }
.site-footer a:hover { color:var(--mint); }
.footer-bottom { margin-top: 38px; padding-top: 24px; border-top:1px solid rgba(255,255,255,.1); display:flex; justify-content:space-between; gap:22px; font-size:.84rem; }

.reveal { opacity:0; transform: translateY(28px); transition: opacity .72s ease, transform .72s ease; }
.reveal.visible { opacity:1; transform: translateY(0); }
.delay-1 { transition-delay:.1s; }
.delay-2 { transition-delay:.2s; }
@keyframes fadeUp { from { opacity:0; transform: translateY(12px); } to { opacity:1; transform: translateY(0); } }

@media (max-width: 1160px) {
  .hero { min-height: auto; }
  .hero::before { height: 1130px; clip-path: polygon(0 0,100% 0,100% 94%,0 100%); }
  .hero-layout, .strip-grid, .screens-layout, .reporting-layout, .systems-layout, .cta-card { grid-template-columns:1fr; }
  .showcase-card { margin: 20px 0 0; }
  .hero-media { max-width: 900px; margin-inline:auto; }
  .report-card-mini { right:24px; }
  .sync-card { left:24px; }
  .strip-metrics { grid-template-columns: repeat(3,1fr); }
  .bento-grid { grid-template-columns: repeat(2,1fr); }
  .bento-card.primary { grid-row: span 1; }
  .bento-card.screenshot { min-height: 520px; }
  .bento-card.wide { grid-column: span 2; }
  .phone-stage { min-height: 660px; }
  .capture-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2,1fr); }
  .timeline::before { display:none; }
  .systems-art { max-width: 850px; margin-inline:auto; }
  .admin-grid { grid-template-columns:1fr; }
}
@media (max-width: 820px) {
  .shell { width:min(100% - 30px, var(--shell)); }
  .section { padding: 78px 0; }
  .nav { min-height:74px; }
  .brand img { width:42px; height:42px; border-radius:13px; }
  .menu-toggle { display:inline-flex; align-items:center; cursor:pointer; }
  .nav-links { position:absolute; top:82px; left:15px; right:15px; display:none; flex-direction:column; align-items:stretch; gap:2px; padding:12px; border-radius:26px; background:rgba(255,255,255,.97); border:1px solid var(--line); box-shadow:var(--shadow); }
  .nav-links.open { display:flex; }
  .nav-links a { padding:14px; }
  .nav-links .nav-cta { margin:8px 0 0; text-align:center; }
  h1 { font-size: clamp(3rem, 14vw, 5rem); }
  h2 { font-size: clamp(2.05rem, 10vw, 3.55rem); }
  .hero { padding-top:36px; }
  .hero .lead { font-size:1.05rem; }
  .status-row, .strip-metrics, .bento-grid, .sheet-metrics, .sheet-two-col, .proof-cards article, .timeline { grid-template-columns:1fr; }
  .hero-float { position:relative; inset:auto; width:auto; margin-top:12px; }
  .system-tags span { flex: 1 1 100%; text-align:center; }
  .strip-grid { padding: 22px; border-radius: 30px; }
  .bento-card.wide { grid-column: span 1; min-height:240px; }
  .bento-card.screenshot { min-height:440px; }
  .phone-stage { min-height: 560px; }
  .phone-frame { width:min(330px,88vw); padding:12px; border-radius:44px; }
  .phone-frame img { border-radius:30px; }
  .capture-card { grid-template-columns: 105px 1fr; border-radius:24px; }
  .capture-card img { width:105px; height:160px; border-radius:16px; }
  .report-sheet { padding: 22px; border-radius:30px; }
  .sheet-top, .sheet-customer { grid-template-columns:1fr; display:grid; }
  .sheet-status { max-width:none; }
  .admin-card, .cta-card { padding:30px; border-radius:32px; }
  .footer-grid { grid-template-columns:1fr; gap:26px; }
  .footer-bottom { flex-direction:column; }
}
@media (max-width: 520px) {
  .button, .hero-actions { width:100%; }
  .screen-tabs { display:grid; grid-template-columns:1fr 1fr; }
  .screen-tab { width:100%; }
  .phone-stage { min-height: 510px; }
  .phone-frame { width:min(290px,90vw); }
  .capture-card { grid-template-columns:1fr; }
  .capture-card img { width:100%; height:320px; }
  .sheet-metrics article { min-height:80px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
  .reveal { opacity:1; transform:none; }
}

.foundations-section {
  background:
    radial-gradient(circle at 4% 18%, rgba(167,243,208,.26), transparent 28rem),
    linear-gradient(180deg, #ffffff, #f6fbfa);
}
.foundation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.foundation-card {
  min-height: 310px;
  padding: 26px;
  border-radius: 30px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,118,110,.14);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.foundation-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: rgba(167,243,208,.26);
  filter: blur(12px);
}
.foundation-card span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  border-radius: 18px;
  color: var(--teal);
  background: #ecfdf5;
  border: 1px solid rgba(15,118,110,.15);
  font-weight: 950;
}
.foundation-card h3 { margin-bottom: 12px; font-size: 1.35rem; }
.foundation-card p { position: relative; z-index: 1; margin: 0; }

.role-workflows-section {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.role-workflows-section::before {
  content: "";
  position: absolute;
  inset: -220px -160px auto auto;
  width: 680px;
  height: 680px;
  border-radius: 999px;
  background: rgba(20,184,166,.22);
  filter: blur(90px);
}
.role-workflows-section p { color: #cbd5e1; }
.role-workflows-section .eyebrow { color: var(--mint); }
.role-workflows-section .eyebrow span { background: var(--mint); }
.role-workflows-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.role-panel {
  min-height: 640px;
  padding: 36px;
  border-radius: 42px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow-dark);
  overflow: hidden;
  position: relative;
}
.role-panel.office { background: linear-gradient(145deg, #07111f, #102039 58%, #0f766e); }
.role-panel.engineer { background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.04)); backdrop-filter: blur(16px); }
.role-panel::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -130px;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: rgba(167,243,208,.13);
  filter: blur(12px);
}
.role-panel h2 { font-size: clamp(2rem, 4vw, 3.7rem); margin-bottom: 28px; }
.role-panel ol { position: relative; z-index: 1; list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.role-panel li {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
}
.role-panel li strong { color: #fff; letter-spacing: -.02em; }
.role-panel li span { color: #cbd5e1; line-height: 1.55; }

.architecture-section { background: #ffffff; }
.architecture-layout {
  display: grid;
  grid-template-columns: minmax(0,.72fr) minmax(560px,1fr);
  gap: 58px;
  align-items: center;
}
.architecture-copy > p:not(.eyebrow) { max-width: 650px; font-size: 1.08rem; }
.architecture-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.architecture-grid article {
  min-height: 178px;
  padding: 22px;
  border-radius: 28px;
  background: #f8fafc;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.architecture-grid b {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.05rem;
  letter-spacing: -.03em;
}
.architecture-grid span { display: block; color: var(--muted); line-height: 1.55; }

.roadmap-section {
  padding-top: 40px;
  background: linear-gradient(180deg, #fff, #f6fbfa);
}
.roadmap-card {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 34px;
  align-items: center;
  padding: 40px;
  border-radius: 42px;
  background: radial-gradient(circle at 90% 0%, rgba(167,243,208,.25), transparent 26rem), linear-gradient(135deg, #ffffff, #eef8f5);
  border: 1px solid rgba(15,118,110,.14);
  box-shadow: var(--shadow-soft);
}
.roadmap-card h2 { font-size: clamp(2.1rem, 4.4vw, 4rem); }
.roadmap-card p { max-width: 720px; }
.roadmap-list { display: flex; flex-wrap: wrap; gap: 10px; }
.roadmap-list span {
  padding: 12px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15,118,110,.16);
  color: var(--teal);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(15,23,42,.05);
}

@media (max-width: 1160px) {
  .foundation-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .role-workflows-grid, .architecture-layout, .roadmap-card { grid-template-columns: 1fr; }
  .role-panel { min-height: auto; }
}

@media (max-width: 820px) {
  .foundation-grid, .architecture-grid { grid-template-columns: 1fr; }
  .foundation-card { min-height: auto; }
  .role-panel, .roadmap-card { padding: 28px; border-radius: 32px; }
}


/* V7 display-image restoration: keep the page image-led instead of document-like. */
.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: -5;
  overflow: hidden;
  background: #07111f;
}
.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .22;
  filter: saturate(1.08) contrast(1.04);
}
.hero-bg-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(249,255,253,.92) 0%, rgba(249,255,253,.78) 42%, rgba(7,17,31,.55) 78%, rgba(7,17,31,.75) 100%),
    radial-gradient(circle at 76% 28%, rgba(20,184,166,.24), transparent 30rem);
}
.visual-banner {
  position: relative;
  padding: 34px 0 92px;
  background: linear-gradient(180deg, #ffffff 0%, #07111f 100%);
  overflow: hidden;
}
.visual-banner::before {
  content: "";
  position: absolute;
  inset: auto -10% 0;
  height: 64%;
  background:
    radial-gradient(circle at 16% 50%, rgba(20,184,166,.22), transparent 28rem),
    radial-gradient(circle at 86% 20%, rgba(14,165,233,.18), transparent 26rem);
  filter: blur(4px);
}
.visual-banner-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .72fr);
  align-items: center;
  gap: 0;
  min-height: 520px;
  border-radius: 46px;
  overflow: hidden;
  background: #07111f;
  box-shadow: var(--shadow-dark);
  border: 1px solid rgba(255,255,255,.14);
}
.visual-banner-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.visual-banner-copy {
  position: relative;
  z-index: 2;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
  color: #fff;
  background:
    radial-gradient(circle at 15% 0, rgba(167,243,208,.18), transparent 24rem),
    linear-gradient(135deg, rgba(7,17,31,.92), rgba(16,32,57,.98));
}
.visual-banner-copy .eyebrow { color: var(--mint); }
.visual-banner-copy .eyebrow span { background: var(--mint); box-shadow: 0 0 0 6px rgba(167,243,208,.14); }
.visual-banner-copy h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  margin-bottom: 18px;
}
.visual-banner-copy p:not(.eyebrow) {
  color: #cbd5e1;
  font-size: 1.05rem;
}
@media (max-width: 1160px) {
  .visual-banner-card { grid-template-columns: 1fr; }
  .visual-banner-card img { min-height: 420px; }
}
@media (max-width: 820px) {
  .visual-banner { padding-bottom: 70px; }
  .visual-banner-card { border-radius: 32px; }
  .visual-banner-card img { min-height: 280px; }
  .visual-banner-copy { padding: 28px; }
}


/* V8 layout refinements from live website review */
html { scroll-padding-top: 112px; }
section[id], .visual-banner { scroll-margin-top: 112px; }
.site-header { background: rgba(248, 255, 253, .92); backdrop-filter: blur(18px); }
.site-header.scrolled { background: rgba(248, 255, 253, .92); }

.platform-section { padding-top: 132px; }
.platform-section .section-heading { margin-bottom: 24px; }
.platform-context {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  justify-content: center;
  width: min(100%, 940px);
  margin: 0 auto 34px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(7, 17, 31, .92);
  color: #fff;
  box-shadow: 0 20px 50px rgba(8, 17, 31, .16);
}
.platform-context span {
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 950;
}
.platform-context b {
  font-size: .9rem;
  letter-spacing: -.02em;
}

.bento-grid {
  grid-template-columns: 1.05fr .95fr .95fr;
  grid-auto-rows: minmax(240px, auto);
  gap: 22px;
  align-items: stretch;
}
.bento-card { min-height: 240px; }
.bento-card.primary {
  min-height: 540px;
  display: flex;
  flex-direction: column;
}
.bento-card.primary::after {
  content: "";
  position: absolute;
  inset: auto -18% -22% auto;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(167,243,208,.26), rgba(15,118,110,.18) 38%, transparent 70%);
  filter: blur(10px);
}
.mini-queue { position: relative; z-index: 1; }
.card-flow-list {
  position: relative;
  z-index: 1;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.card-flow-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dbeafe;
  font-weight: 850;
  font-size: .92rem;
}
.card-flow-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(167,243,208,.10);
  flex: 0 0 9px;
}
.bento-card.screenshot {
  min-height: 540px;
  padding: 18px;
  background: linear-gradient(145deg, #07111f, #102039 58%, #0f766e);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
}
.bento-card.screenshot img {
  width: 100%;
  height: 100%;
  max-height: 490px;
  object-fit: contain;
  object-position: top center;
  border-radius: 24px;
  background: #f8fafc;
  box-shadow: 0 18px 44px rgba(0,0,0,.22);
}
.screen-kicker {
  justify-self: start;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(167,243,208,.14);
  color: var(--mint);
  border: 1px solid rgba(167,243,208,.18);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 950;
  font-size: .68rem;
}
.bento-card:not(.primary):not(.screenshot):not(.wide) {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.bento-card.wide {
  min-height: 360px;
  isolation: isolate;
}
.bento-card.wide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(7,17,31,.16), transparent 48%, rgba(7,17,31,.34));
  border-radius: 24px;
}

.screens-section { padding-top: 128px; }
.screens-copy h2 { color: #fff; text-shadow: 0 4px 28px rgba(0,0,0,.28); }
.screens-copy > p:not(.eyebrow) { color: #dbeafe; }
.screen-tab { color: #e2e8f0; }
.screen-tab.active { color: #052e2b; }
.screen-text h3 { color: #fff; }
.screen-text p { color: #dbeafe; }
.capture-card { background: rgba(255,255,255,.95); }
.capture-card h3 { color: var(--ink); }
.capture-card p { color: var(--muted); }

.visual-banner { padding-top: 52px; }
.visual-banner-card { transform: translateY(0); }
.visual-banner-card img, .showcase-card img, .bento-card.wide img { filter: saturate(1.05) contrast(1.04); }

@media (max-width: 1160px) {
  .platform-section { padding-top: 108px; }
  .bento-card.primary, .bento-card.screenshot { min-height: auto; }
  .bento-card.screenshot img { max-height: none; }
}
@media (max-width: 820px) {
  html { scroll-padding-top: 92px; }
  section[id], .visual-banner { scroll-margin-top: 92px; }
  .platform-context { border-radius: 24px; justify-content: flex-start; }
  .bento-grid { gap: 16px; }
  .bento-card.screenshot { padding: 12px; }
  .card-flow-list li { font-size: .88rem; }
}


/* V9 mobile/tablet refinement pass */
html {
  scroll-padding-top: 104px;
}

section[id] {
  scroll-margin-top: 104px;
}

img {
  image-rendering: auto;
}

@media (max-width: 1024px) {
  :root {
    --shell: 920px;
  }

  .hero-layout,
  .strip-grid,
  .screens-layout,
  .reporting-layout,
  .systems-layout,
  .cta-card,
  .visual-banner-card {
    grid-template-columns: 1fr !important;
  }

  .hero {
    padding-top: 42px;
  }

  .hero::before {
    height: 1040px;
  }

  .showcase-card {
    margin: 18px 0 0 !important;
  }

  .hero-media,
  .visual-banner-card,
  .systems-art,
  .report-visual {
    max-width: 900px;
    margin-inline: auto;
  }

  .bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .bento-card.primary,
  .bento-card.screenshot,
  .bento-card.wide {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

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

  .visual-banner-card img {
    min-height: auto;
    max-height: 520px;
    object-fit: cover;
  }

  .visual-banner-copy {
    padding: 34px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 88px;
  }

  section[id] {
    scroll-margin-top: 88px;
  }

  body {
    overflow-x: hidden;
  }

  .shell {
    width: min(100% - 28px, var(--shell));
  }

  .site-header {
    background: rgba(248, 255, 253, .94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(15,23,42,.08);
  }

  .nav {
    min-height: 70px;
    gap: 14px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .brand strong {
    font-size: .98rem;
  }

  .brand small {
    font-size: .62rem;
    letter-spacing: .11em;
  }

  .menu-toggle {
    min-height: 44px;
    padding: 0 4px;
  }

  .nav-links {
    top: 76px !important;
    max-height: calc(100vh - 92px);
    overflow: auto;
  }

  .nav-links a,
  .nav-links .nav-cta {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    padding: 28px 0 42px;
    min-height: auto;
  }

  .hero::before {
    inset: 20px 0 auto;
    height: 930px;
    background:
      radial-gradient(circle at 50% 18%, rgba(8,17,31,.93) 0 17rem, transparent 17.2rem),
      radial-gradient(circle at 92% 18%, rgba(20,184,166,.18), transparent 20rem),
      linear-gradient(135deg, rgba(236,253,245,.96), rgba(255,255,255,.82));
    clip-path: polygon(0 0,100% 0,100% 96%,0 100%);
  }

  .hero-bg-image {
    opacity: .18;
  }

  .hero-copy {
    padding-top: 12px;
    text-align: left;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4.15rem) !important;
    line-height: .96;
    max-width: 100%;
  }

  h2 {
    font-size: clamp(2rem, 9.6vw, 3.15rem) !important;
    line-height: 1;
    max-width: 100%;
  }

  h3 {
    line-height: 1.12;
  }

  .lead,
  .hero .lead,
  .screens-copy > p:not(.eyebrow),
  .section-heading > p:not(.eyebrow),
  .section-copy > p:not(.eyebrow) {
    font-size: 1rem !important;
    line-height: 1.62;
  }

  .eyebrow {
    font-size: .69rem;
    letter-spacing: .12em;
    line-height: 1.35;
  }

  .hero-actions {
    width: 100%;
    gap: 10px;
  }

  .button {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
  }

  .status-row,
  .strip-metrics,
  .sheet-metrics,
  .sheet-two-col,
  .proof-cards article,
  .timeline,
  .admin-grid,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .status-row article,
  .strip-metrics article {
    padding: 15px;
  }

  .showcase-card {
    border-radius: 28px;
    padding: 8px;
  }

  .showcase-card img {
    border-radius: 22px;
  }

  .hero-float {
    position: relative !important;
    inset: auto !important;
    width: 100%;
    margin-top: 10px;
    border-radius: 20px;
  }

  .system-tags {
    gap: 8px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .system-tags::-webkit-scrollbar {
    display: none;
  }

  .system-tags span {
    flex: 0 0 auto !important;
    white-space: nowrap;
  }

  .visual-banner {
    padding-top: 34px;
  }

  .visual-banner-card {
    border-radius: 30px;
    min-height: auto;
  }

  .visual-banner-card img {
    min-height: auto;
    height: auto;
    max-height: none;
    object-fit: contain;
    background: #07111f;
  }

  .visual-banner-copy {
    padding: 26px;
  }

  .visual-banner-copy h2 {
    font-size: clamp(1.75rem, 8vw, 2.65rem) !important;
  }

  .platform-section {
    padding-top: 78px !important;
  }

  .platform-context {
    padding: 16px;
    gap: 10px;
  }

  .bento-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .bento-card {
    min-height: auto;
    padding: 22px;
    border-radius: 26px;
  }

  .bento-card.primary {
    min-height: auto;
  }

  .bento-card.screenshot {
    min-height: auto !important;
    padding: 12px;
  }

  .bento-card.screenshot img {
    height: auto !important;
    max-height: 430px;
    object-fit: contain;
    border-radius: 18px;
  }

  .bento-card.wide {
    min-height: auto !important;
  }

  .bento-card.wide img {
    height: auto;
    object-fit: contain;
    min-height: auto;
  }

  .screens-section {
    padding-top: 82px !important;
  }

  .screen-tabs {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .screen-tab {
    min-height: 44px;
    width: 100%;
    justify-content: center;
  }

  .screen-text {
    margin-top: 18px;
  }

  .phone-stage {
    min-height: auto !important;
    padding: 20px 0 8px;
  }

  .phone-glow {
    width: 320px;
    height: 320px;
    opacity: .72;
  }

  .phone-frame {
    width: min(326px, 88vw) !important;
    padding: 11px;
    border-radius: 40px;
  }

  .phone-frame::before {
    width: 92px;
    height: 20px;
  }

  .phone-frame img {
    border-radius: 28px;
  }

  .capture-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .capture-card {
    grid-template-columns: 96px 1fr !important;
    gap: 14px;
    padding: 12px;
    border-radius: 22px;
  }

  .capture-card img {
    width: 96px !important;
    height: 142px !important;
    border-radius: 14px;
  }

  .capture-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .capture-card p {
    font-size: .84rem;
    line-height: 1.45;
  }

  .report-sheet,
  .proof-cards,
  .systems-card,
  .admin-card {
    border-radius: 28px;
  }

  .report-sheet {
    padding: 18px;
  }

  .sheet-top,
  .sheet-customer {
    grid-template-columns: 1fr !important;
  }

  .sheet-status {
    max-width: none;
  }

  .workflow-card,
  .systems-card,
  .admin-card,
  .cta-card {
    padding: 24px;
    border-radius: 28px;
  }

  .site-footer {
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .shell {
    width: min(100% - 22px, var(--shell));
  }

  .nav {
    min-height: 66px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand strong {
    font-size: .92rem;
  }

  .brand small {
    font-size: .58rem;
  }

  .menu-toggle span {
    font-size: .9rem;
  }

  .nav-links {
    left: 11px;
    right: 11px;
    top: 72px !important;
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    padding-top: 20px;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.2rem) !important;
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.55rem) !important;
  }

  .status-row article {
    border-radius: 18px;
  }

  .visual-banner-copy,
  .bento-card,
  .screen-text,
  .report-sheet,
  .workflow-card,
  .systems-card,
  .admin-card,
  .cta-card {
    padding: 20px;
  }

  .screen-tabs {
    grid-template-columns: 1fr;
  }

  .phone-frame {
    width: min(292px, 90vw) !important;
  }

  .capture-card {
    grid-template-columns: 1fr !important;
  }

  .capture-card img {
    width: 100% !important;
    height: 300px !important;
  }

  .bento-card.screenshot img {
    max-height: 360px;
  }

  .component-pill,
  .system-tags span {
    font-size: .75rem;
  }
}


/* V10 hero readability fix */
.hero-copy {
  position: relative;
  z-index: 3;
}
.hero-copy h1,
.hero-copy .lead,
.hero-copy .eyebrow {
  position: relative;
  z-index: 3;
}
.hero::before {
  background:
    radial-gradient(circle at 82% 24%, rgba(8,17,31,.88) 0 25rem, transparent 25.2rem),
    radial-gradient(circle at 95% 22%, rgba(20,184,166,.16), transparent 26rem),
    linear-gradient(90deg, rgba(244,252,249,.98) 0%, rgba(244,252,249,.97) 36%, rgba(251,255,254,.93) 52%, rgba(238,248,246,.74) 66%, rgba(7,17,31,.14) 82%, rgba(7,17,31,.28) 100%);
}
.hero-smoke {
  opacity: .42;
  background:
    radial-gradient(ellipse at 84% 18%, rgba(167,243,208,.14), transparent 32rem),
    conic-gradient(from 220deg at 76% 22%, rgba(255,255,255,.14), transparent 16%, rgba(14,165,233,.08), transparent 38%, rgba(167,243,208,.12), transparent 58%);
  filter: blur(18px);
}
.hero-bg-image img {
  opacity: .16;
  filter: saturate(1.03) contrast(1.02);
}
.hero-bg-image::after {
  background:
    linear-gradient(90deg, rgba(251,255,254,.98) 0%, rgba(249,255,253,.96) 36%, rgba(249,255,253,.90) 52%, rgba(247,252,251,.72) 66%, rgba(7,17,31,.18) 84%, rgba(7,17,31,.40) 100%),
    radial-gradient(circle at 84% 24%, rgba(20,184,166,.18), transparent 28rem);
}
.hero .lead {
  color: #334155;
  max-width: 720px;
}
@media (max-width: 1024px) {
  .hero::before {
    background:
      radial-gradient(circle at 76% 18%, rgba(8,17,31,.78) 0 21rem, transparent 21.2rem),
      radial-gradient(circle at 94% 18%, rgba(20,184,166,.15), transparent 18rem),
      linear-gradient(180deg, rgba(245,252,249,.98), rgba(250,255,254,.90));
  }
  .hero-bg-image::after {
    background:
      linear-gradient(180deg, rgba(251,255,254,.96) 0%, rgba(249,255,253,.90) 58%, rgba(7,17,31,.20) 100%),
      radial-gradient(circle at 82% 22%, rgba(20,184,166,.16), transparent 24rem);
  }
}
@media (max-width: 760px) {
  .hero::before {
    background:
      radial-gradient(circle at 74% 15%, rgba(8,17,31,.60) 0 13rem, transparent 13.2rem),
      radial-gradient(circle at 95% 16%, rgba(20,184,166,.14), transparent 14rem),
      linear-gradient(180deg, rgba(245,252,249,.98), rgba(251,255,254,.94));
  }
  .hero-bg-image::after {
    background:
      linear-gradient(180deg, rgba(251,255,254,.98) 0%, rgba(249,255,253,.94) 62%, rgba(7,17,31,.18) 100%),
      radial-gradient(circle at 78% 18%, rgba(20,184,166,.16), transparent 18rem);
  }
  .hero .lead {
    color: #334155;
  }
}


/* V11 image-asset clarity update */
.hero-bg-image img {
  opacity: .12;
  filter: saturate(1.00) contrast(1.00) brightness(1.04);
}
.hero-bg-image::after {
  background:
    linear-gradient(90deg, rgba(252,255,254,.99) 0%, rgba(251,255,254,.97) 38%, rgba(249,255,253,.92) 56%, rgba(246,252,250,.74) 70%, rgba(7,17,31,.14) 85%, rgba(7,17,31,.32) 100%),
    radial-gradient(circle at 84% 24%, rgba(20,184,166,.16), transparent 28rem);
}
.hero .lead { color: #304255; }


/* V12 top hero shadow and logo consistency update */
.hero::before {
  background:
    radial-gradient(circle at 116% 22%, rgba(7,17,31,.56) 0 20rem, transparent 20.25rem),
    radial-gradient(circle at 96% 18%, rgba(20,184,166,.12), transparent 18rem),
    linear-gradient(90deg, rgba(252,255,254,.99) 0%, rgba(252,255,254,.985) 43%, rgba(249,255,253,.96) 62%, rgba(238,248,246,.76) 78%, rgba(7,17,31,.18) 100%);
}
.hero-bg-image img { opacity: .08; }
.hero-bg-image::after {
  background:
    linear-gradient(90deg, rgba(252,255,254,.995) 0%, rgba(252,255,254,.985) 45%, rgba(249,255,253,.94) 64%, rgba(245,252,250,.72) 79%, rgba(7,17,31,.18) 100%),
    radial-gradient(circle at 92% 18%, rgba(20,184,166,.10), transparent 18rem);
}
.hero-smoke { opacity: .26; }
.hero-copy h1 { color: #07111f; text-shadow: 0 1px 0 rgba(255,255,255,.45); }
.hero .lead { color: #334155; }
.sample-report-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.sample-report-actions .button { min-height: 48px; }
@media (max-width: 760px) {
  .hero::before {
    background:
      linear-gradient(180deg, rgba(252,255,254,.99) 0%, rgba(250,255,253,.96) 68%, rgba(7,17,31,.08) 100%);
  }
  .hero-bg-image::after {
    background: linear-gradient(180deg, rgba(252,255,254,.99) 0%, rgba(250,255,253,.96) 72%, rgba(7,17,31,.08) 100%);
  }
}


/* V13: obvious hero readability fix + visible proof/report updates */
.hero {
  background:
    radial-gradient(circle at 86% 14%, rgba(20,184,166,.12), transparent 24rem),
    linear-gradient(180deg, #f8fffd 0%, #eef8f5 72%, #ffffff 100%) !important;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(248,255,253,.98) 0%, rgba(248,255,253,.98) 52%, rgba(240,250,247,.90) 66%, rgba(7,17,31,.05) 100%) !important;
  clip-path: none !important;
  height: 710px !important;
  opacity: 1 !important;
}

.hero-smoke {
  opacity: .18 !important;
  filter: blur(30px) !important;
  background:
    radial-gradient(ellipse at 82% 24%, rgba(20,184,166,.12), transparent 30rem) !important;
}

.hero-bg-image {
  opacity: 0 !important;
  display: none !important;
}

.hero-copy {
  padding: 36px 34px 34px !important;
  border-radius: 36px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,118,110,.12);
  box-shadow: 0 22px 60px rgba(15,23,42,.08);
  backdrop-filter: blur(12px);
}

.hero-copy h1 {
  color: #07111f !important;
  text-shadow: none !important;
}

.hero-copy .lead {
  color: #334155 !important;
  text-shadow: none !important;
}

.hero-copy .eyebrow {
  color: #0f766e !important;
  text-shadow: none !important;
}

.showcase-card {
  background: linear-gradient(180deg, rgba(7,17,31,.94), rgba(15,32,57,.92)) !important;
  border-color: rgba(167,243,208,.22) !important;
}

.public-report-card,
.logo-proof-card {
  display: grid;
  gap: 18px;
  align-items: start;
  padding: 26px;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid rgba(15,118,110,.16);
  box-shadow: 0 18px 46px rgba(15,23,42,.08);
}

.public-report-card {
  grid-template-columns: minmax(0, .72fr) minmax(320px, .68fr);
  margin-top: 28px;
}

.report-preview-tile {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.10);
  background: #f8fafc;
  min-height: 340px;
  display: grid;
  place-items: center;
  padding: 18px;
}

.report-preview-tile img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(15,23,42,.12));
}

.public-report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.public-report-actions .button {
  min-height: 48px;
}

.logo-proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.logo-proof-row article {
  padding: 18px;
  border-radius: 22px;
  background: #f8fafc;
  border: 1px solid rgba(15,118,110,.14);
}

.logo-proof-row img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 12px;
}

.logo-proof-row strong {
  display: block;
  color: #07111f;
  margin-bottom: 6px;
}

.logo-proof-row span {
  display: block;
  color: #64748b;
  line-height: 1.5;
  font-size: .92rem;
}

@media (max-width: 1024px) {
  .hero-copy {
    padding: 28px !important;
  }
  .public-report-card {
    grid-template-columns: 1fr;
  }
  .logo-proof-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero {
    background: linear-gradient(180deg, #f8fffd 0%, #eef8f5 100%) !important;
  }
  .hero::before {
    background: linear-gradient(180deg, rgba(248,255,253,.99), rgba(248,255,253,.96)) !important;
    height: 760px !important;
  }
  .hero-copy {
    padding: 22px !important;
    border-radius: 28px;
  }
  .report-preview-tile {
    min-height: 260px;
    padding: 12px;
  }
}


/* V14 privacy-clean hero readability: remove dark text-blocking circle */
.hero {
  background:
    radial-gradient(circle at 88% 12%, rgba(20,184,166,.10), transparent 25rem),
    linear-gradient(180deg, #f8fffd 0%, #eef8f5 72%, #ffffff 100%) !important;
}
.hero-bg-image,
.hero-bg-image img,
.hero-bg-image::after {
  display: none !important;
  opacity: 0 !important;
}
.hero::before {
  background:
    linear-gradient(90deg, rgba(248,255,253,.99) 0%, rgba(248,255,253,.99) 58%, rgba(245,252,249,.94) 72%, rgba(245,252,249,.86) 100%) !important;
  clip-path: none !important;
  opacity: 1 !important;
}
.hero-smoke {
  opacity: .12 !important;
  background: radial-gradient(ellipse at 88% 22%, rgba(20,184,166,.16), transparent 28rem) !important;
  filter: blur(34px) !important;
}
.hero-copy {
  background: rgba(255,255,255,.86) !important;
  border: 1px solid rgba(15,118,110,.16) !important;
  box-shadow: 0 24px 64px rgba(15,23,42,.08) !important;
  backdrop-filter: blur(14px) !important;
}
.hero-copy h1,
.hero-copy .lead,
.hero-copy .eyebrow {
  color: #07111f !important;
  text-shadow: none !important;
}
.hero-copy .eyebrow { color: #0f766e !important; }
.hero-copy .lead { color: #334155 !important; }
.public-safety-note {
  padding: 14px 16px;
  border-radius: 18px;
  background: #ecfdf5;
  border: 1px solid rgba(15,118,110,.16);
  color: #0f766e;
  font-weight: 850;
}


/* V15 public marketing safe pass: less internal detail, more customer-facing value */
.public-hero {
  background:
    radial-gradient(circle at 88% 8%, rgba(20,184,166,.12), transparent 26rem),
    linear-gradient(180deg, #f8fffd 0%, #eef8f5 74%, #ffffff 100%) !important;
}
.public-hero::before {
  background: linear-gradient(90deg, rgba(248,255,253,.99) 0%, rgba(248,255,253,.99) 62%, rgba(244,252,249,.93) 100%) !important;
  clip-path: none !important;
}
.public-hero .hero-bg-image { display:none !important; }
.public-hero .hero-smoke { opacity:.10 !important; filter: blur(36px) !important; }
.public-hero .hero-copy { background: rgba(255,255,255,.90) !important; }
.public-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.public-benefit-card {
  position: relative;
  min-height: 290px;
  padding: 26px;
  border-radius: 30px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(15,118,110,.14);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.public-benefit-card::after {
  content:"";
  position:absolute;
  inset:auto -70px -85px auto;
  width:190px;
  height:190px;
  border-radius:999px;
  background:rgba(167,243,208,.24);
  filter:blur(12px);
}
.public-benefit-card > * { position: relative; z-index:1; }
.public-benefit-card h3 { font-size: 1.4rem; margin: 18px 0 12px; }
.public-benefit-card p { margin-bottom:0; }
.public-audience-section {
  background:
    radial-gradient(circle at 100% 10%, rgba(167,243,208,.18), transparent 30rem),
    linear-gradient(180deg, #f8fafc, #eef7f5);
}
.public-audience-section .role-panel p { color: #cbd5e1; }
.public-audience-section .role-panel.engineer p { color: var(--muted); }
.public-audience-section .role-panel.engineer { background: linear-gradient(135deg,#ffffff,#ecfdf5); color: var(--ink); border-color: rgba(15,118,110,.14); }
.public-audience-section .role-panel.engineer .eyebrow { color: var(--teal); }
.public-audience-section .role-panel.engineer .eyebrow span { background: var(--teal-2); }
.public-audience-section .role-panel.engineer li { color: var(--slate); }
.section-heading p, .screens-copy > p:not(.eyebrow), .report-copy > p:not(.eyebrow), .systems-copy > p:not(.eyebrow) {
  max-width: 760px;
}
@media (max-width: 1160px) {
  .public-benefit-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .public-benefit-grid { grid-template-columns: 1fr; }
  .public-benefit-card { min-height: auto; }
}


/* V17 systems refinement */
.systems-card {
  margin-top: 24px;
  padding: 22px 24px;
  border-radius: 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow-soft);
}
.systems-card strong {
  display:block;
  margin-bottom: 14px;
  color:#fff;
  font-size:1.02rem;
}
.systems-list {
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px 16px;
}
.systems-list li {
  position:relative;
  padding-left: 18px;
  color:#cbd5e1;
  line-height:1.5;
}
.systems-list li::before {
  content:"";
  position:absolute;
  left:0;
  top:.62em;
  width:8px;
  height:8px;
  border-radius:999px;
  background:#5eead4;
  box-shadow:0 0 0 4px rgba(94,234,212,.12);
}
.systems-art img {
  width:100%;
  background:#07111f;
  object-fit:cover;
}
@media (max-width: 760px) {
  .systems-list { grid-template-columns: 1fr; }
}
