:root {
  --canvas: #f4f1eb;
  --surface: #fbfaf7;
  --surface-raised: #fff;
  --text: #252321;
  --text-strong: #171614;
  --muted: #6f6a64;
  --border: #ded8cf;
  --brand: #49362f;
  --brand-hover: #382822;
  --accent: #315f62;
  --critical: #a43f38;
  --success: #39735c;
  --warning: #9b6a24;
  --info: #416b9b;
  --shadow-xs: 0 1px 2px rgba(55, 42, 33, .08);
  --shadow-sm: 0 4px 14px rgba(55, 42, 33, .07);
  --shadow-md: 0 16px 42px rgba(55, 42, 33, .12);
  --shadow-xl: 0 34px 92px rgba(52, 39, 30, .20);
  --radius-control: 12px;
  --radius-card: 16px;
  --radius-showcase: 22px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-standard: cubic-bezier(.2, 0, 0, 1);
  --font-ui: "Manrope", "Segoe UI Variable", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --screen-rx: 0deg;
  --screen-ry: 0deg;
  --pointer-x: 50%;
  --pointer-y: 45%;
  --hero-top: 116px;
  --announcement-height: 0px;
  --header-height: 64px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--canvas); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--canvas);
  font-family: var(--font-ui);
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img, video, svg { display: block; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--brand);
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

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

.site-shell { overflow: clip; }
.hero {
  position: relative;
  min-height: max(941px, 100svh);
  isolation: isolate;
  background: transparent;
}

.hero__media {
  position: absolute;
  inset: var(--header-height) 0 0;
  z-index: 0;
  overflow: hidden;
  background: var(--canvas);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.90) contrast(.98) brightness(1.01);
  transform: scale(1.012);
  opacity: .98;
}
.hero__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(248, 245, 239, .03) 0%, rgba(248, 245, 239, .02) 42%, rgba(244, 241, 235, .18) 84%, var(--canvas) 100%),
    radial-gradient(ellipse 46% 43% at 50% 25%, rgba(255, 253, 249, .66) 0%, rgba(255, 253, 249, .36) 48%, rgba(255, 253, 249, .06) 78%, transparent 100%);
  pointer-events: none;
}
.hero__pointer-light {
  position: absolute;
  inset: 0;
  opacity: .24;
  pointer-events: none;
  background: radial-gradient(380px circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, .54), transparent 70%);
  mix-blend-mode: soft-light;
  transition: opacity .35s ease;
}

.announcement {
  position: relative;
  z-index: 30;
  height: var(--announcement-height);
  border-bottom: 1px solid rgba(73, 54, 47, .08);
  background: rgba(247, 244, 239, .94);
  backdrop-filter: blur(16px) saturate(110%);
  transition: height .28s var(--ease), opacity .22s ease, transform .28s var(--ease);
}
.announcement.is-dismissed {
  height: 0;
  opacity: 0;
  transform: translateY(-100%);
  overflow: hidden;
}
.announcement__inner {
  width: min(1240px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #4f4944;
  font-size: 12px;
}
.announcement__inner p { display: flex; gap: 18px; margin: 0; }
.announcement__inner strong { font-weight: 700; color: var(--text-strong); }
.announcement__support { color: var(--muted); }
.announcement__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(73, 54, 47, .06);
}
.announcement__link {
  color: #5d554f;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease, transform .2s ease;
}
.announcement__link:hover { color: var(--text-strong); transform: translateX(2px); }
.icon-button {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}
.icon-button:hover { color: var(--text-strong); background: rgba(73, 54, 47, .05); }
.icon-button svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; }
.announcement__close { position: absolute; right: 18px; }

.site-header {
  position: fixed;
  z-index: 60;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(73, 54, 47, .10);
  background: rgba(251, 250, 247, .92);
  backdrop-filter: blur(18px) saturate(112%);
  -webkit-backdrop-filter: blur(18px) saturate(112%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .52) inset;
  transition: background-color .34s ease, border-color .34s ease, box-shadow .34s ease;
}
.site-header__inner {
  width: min(1240px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: var(--text-strong);
  text-decoration: none;
}
.brand__mark {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  border: 1px solid rgba(23,22,20,.10);
  border-radius: 50%;
  overflow: hidden;
  background: #f8f7f3;
  box-shadow: 0 3px 10px rgba(35,28,24,.10);
}
.brand__mark img { width: 100%; height: 100%; object-fit: cover; }
.brand__name { font-size: 18px; font-weight: 730; letter-spacing: -.02em; }
.primary-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 44px); }
.nav-link, .login-link {
  position: relative;
  padding: 8px 0;
  color: #625c57;
  text-decoration: none;
  font-size: 13px;
  font-weight: 510;
  white-space: nowrap;
  transition: color .2s ease;
}
.nav-link::after, .login-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--brand);
  transition: transform .25s var(--ease);
}
.nav-link:hover, .login-link:hover { color: var(--text-strong); }
.nav-link:hover::after, .login-link:hover::after { transform: scaleX(1); }
.site-header__actions { justify-self: end; display: flex; align-items: center; gap: 22px; }

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  overflow: hidden;
  color: var(--text-strong);
  background: var(--surface-raised);
  box-shadow: var(--shadow-xs), 0 1px 0 rgba(255,255,255,.8) inset;
  text-decoration: none;
  font-weight: 680;
  font-size: 14px;
  letter-spacing: -.012em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .2s ease, color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(55,42,33,.13), 0 1px 0 rgba(255,255,255,.85) inset; }
.button:active { transform: translateY(0) scale(.985); }
.button:focus-visible, .nav-link:focus-visible, .login-link:focus-visible, .compare-link:focus-visible, .card-action:focus-visible, .audit-card:focus-visible, .menu-button:focus-visible {
  outline: 3px solid rgba(63, 111, 206, .34);
  outline-offset: 3px;
}
.button--primary, .button--header {
  color: #fff;
  background: linear-gradient(180deg, #513d35 0%, var(--brand) 100%);
  border-color: rgba(48, 31, 25, .58);
  box-shadow: 0 8px 18px rgba(73,54,47,.20), 0 1px 0 rgba(255,255,255,.18) inset;
  text-shadow: 0 1px 0 rgba(0,0,0,.12);
}
.button--primary:hover, .button--header:hover { background: linear-gradient(180deg, #49352e 0%, var(--brand-hover) 100%); box-shadow: 0 14px 28px rgba(73,54,47,.25), 0 1px 0 rgba(255,255,255,.16) inset; }
.button--secondary { border-color: rgba(73,54,47,.18); background: rgba(255,255,255,.82); backdrop-filter: blur(10px); }
.button--large { min-height: 48px; padding: 0 22px; font-size: 15px; }
.button__icon { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.button__arrow { font-size: 17px; transition: transform .25s var(--ease); }
.button:hover .button__arrow { transform: translateX(3px); }
.button--sheen::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -60% auto -60% -45%;
  width: 38%;
  transform: skewX(-18deg) translateX(-220%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.52), rgba(255,255,255,.16), transparent);
  filter: blur(.2px);
  animation: button-sheen 6.8s 2.4s var(--ease) infinite;
}
.button--sheen:hover::after { animation-duration: 1.4s; }
@keyframes button-sheen {
  0%, 65% { transform: skewX(-18deg) translateX(-220%); opacity: 0; }
  70% { opacity: 1; }
  88%, 100% { transform: skewX(-18deg) translateX(620%); opacity: 0; }
}

.menu-button { display: none; width: 42px; height: 42px; border: 1px solid var(--border); border-radius: 12px; background: rgba(255,255,255,.72); }
.menu-button span { display: block; width: 17px; height: 1.5px; margin: 5px auto; background: var(--text-strong); transition: transform .2s ease; }
.mobile-nav { position: absolute; top: 100%; left: 16px; right: 16px; padding: 14px; border: 1px solid var(--border); border-radius: 16px; background: rgba(251,250,247,.98); box-shadow: var(--shadow-md); }
.mobile-nav a:not(.button) { display: block; padding: 12px; border-radius: 9px; text-decoration: none; font-weight: 600; }
.mobile-nav a:not(.button):hover { background: rgba(73,54,47,.05); }
.mobile-nav .button { width: 100%; margin-top: 8px; }

.hero__content {
  position: relative;
  z-index: 3;
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 26px 34px 14px;
}
.hero-copy {
  position: relative;
  z-index: 12;
  width: min(800px, 100%);
  margin: 0 auto;
  text-align: center;
  transform: translateZ(80px);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 9px;
  color: #756c66;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: .12em;
}
.eyebrow__pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(49,95,98,.22);
  animation: eyebrow-pulse 3.2s ease-in-out infinite;
}
@keyframes eyebrow-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(49,95,98,.24); opacity: .75; } 50% { box-shadow: 0 0 0 8px rgba(49,95,98,0); opacity: 1; } }
.hero-title {
  margin: 0;
  color: var(--text-strong);
  font-size: clamp(48px, 4.15vw, 70px);
  font-weight: 790;
  line-height: .98;
  letter-spacing: -.062em;
  text-wrap: balance;
}
.hero-title__line { display: block; will-change: transform, filter, opacity, letter-spacing; animation: title-breathe 8s var(--ease) infinite; }
.hero-title__line--accent { animation-delay: .12s; }
@keyframes title-breathe {
  0%, 12%, 70%, 100% { transform: translateY(0); filter: blur(0); letter-spacing: -.062em; }
  4% { transform: translateY(-2px); filter: blur(.15px); letter-spacing: -.059em; }
  8% { transform: translateY(1px); }
}
.hero-subtitle {
  width: min(680px, 92%);
  margin: 12px auto 0;
  color: #5d5752;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.48;
  letter-spacing: -.018em;
  text-wrap: balance;
}
.hero-actions { display: flex; justify-content: center; gap: 12px; margin-top: 18px; }
.compare-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 6px 8px;
  color: #6d655f;
  text-decoration: none;
  font-size: 13px;
  transition: color .2s ease, gap .2s var(--ease);
}
.compare-link:hover { color: var(--text-strong); gap: 12px; }

.hero-stage {
  position: relative;
  width: min(1440px, 100%);
  height: clamp(410px, 27vw, 460px);
  margin: -15px auto 0;
  perspective: 1600px;
  transform-style: preserve-3d;
}
.connectors {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.connector {
  fill: none;
  stroke: url(#connectorGradient);
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-dasharray: 3 7;
  opacity: .58;
  filter: none;
  animation: connector-flow 7s linear infinite;
  transition: opacity .3s ease, stroke-width .3s ease, filter .3s ease;
}
.connector--findings, .connector--report { animation-direction: reverse; animation-duration: 8.4s; }
.connector.is-active { opacity: 1; stroke-width: 2.35; animation-duration: 1.9s; }
@keyframes connector-flow { to { stroke-dashoffset: -80; } }

.tilt-layer {
  transform-style: preserve-3d;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: box-shadow .28s var(--ease), border-color .24s ease, scale .28s var(--ease), translate .28s var(--ease);
}
.product-screen {
  position: absolute;
  z-index: 6;
  top: 36px;
  left: 50%;
  width: min(68%, 900px);
  aspect-ratio: 1.92;
  overflow: hidden;
  border: 1px solid rgba(119, 104, 94, .22);
  border-radius: 19px;
  background: #f8f5f0;
  box-shadow: 0 28px 80px rgba(57,43,33,.20), 0 3px 10px rgba(57,43,33,.08), 0 1px 0 rgba(255,255,255,.82) inset;
  transform: translate3d(-50%, 0, 0) rotateX(var(--screen-rx)) rotateY(var(--screen-ry));
}
.product-screen picture, .product-screen img { width: 100%; height: 100%; }
.product-screen img { object-fit: cover; object-position: top center; }
.product-screen__shine { display: none; }
.product-screen__edge {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: 0 0 0 1px rgba(255,255,255,.55) inset, 0 -35px 80px rgba(73,54,47,.03) inset;
}
.product-screen::after { display: none; }
.product-screen:hover { box-shadow: 0 38px 105px rgba(57,43,33,.24), 0 5px 18px rgba(57,43,33,.10), 0 1px 0 rgba(255,255,255,.82) inset; }

.audit-card {
  --card-rx: 0deg;
  --card-ry: 0deg;
  position: absolute;
  z-index: 9;
  width: 164px;
  min-height: 150px;
  padding: 15px;
  overflow: hidden;
  border: 1px solid rgba(119,104,94,.23);
  border-radius: var(--radius-card);
  background: rgba(255,255,255,.945);
  box-shadow: 0 14px 34px rgba(55,42,33,.12), 0 1px 0 rgba(255,255,255,.82) inset;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  contain: layout paint style;
  transform: rotateX(var(--card-rx)) rotateY(var(--card-ry)) translateZ(0);
  cursor: default;
}
.audit-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(130deg, rgba(255,255,255,.65), transparent 44%, rgba(49,95,98,.03));
}
.audit-card__ambient {
  position: absolute;
  inset: -80%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at 48% 38%, rgba(255,255,255,.95), transparent 36%);
  transition: opacity .3s ease;
}
.audit-card:hover, .audit-card:focus-visible {
  z-index: 14;
  border-color: rgba(73,54,47,.34);
  box-shadow: 0 26px 65px rgba(55,42,33,.20), 0 1px 0 rgba(255,255,255,.85) inset;
}
.audit-card:hover .audit-card__ambient, .audit-card:focus-visible .audit-card__ambient { opacity: .45; }
.audit-card__header { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 10px; }
.audit-card__kicker { color: #36312d; font-size: 12px; font-weight: 760; letter-spacing: -.01em; }
.audit-card__total { color: var(--muted); font-size: 10px; }
.live-dot { display: inline-flex; align-items: center; gap: 5px; color: var(--success); font-size: 9px; font-weight: 700; }
.live-dot i { width: 5px; height: 5px; border-radius: 50%; background: currentColor; animation: live-dot 1.8s ease-in-out infinite; }
@keyframes live-dot { 50% { box-shadow: 0 0 0 5px rgba(57,115,92,0); } 0%,100% { box-shadow: 0 0 0 0 rgba(57,115,92,.24); } }

.audit-card--crawl { top: 40px; left: 1.3%; width: 166px; }
.audit-card--findings { top: 244px; left: 1.0%; width: 166px; }
.audit-card--evidence { top: 45px; right: .8%; width: 164px; }
.audit-card--report { top: 244px; right: .6%; width: 172px; }
.progress-ring { position: relative; width: 84px; height: 84px; margin: 4px auto 8px; }
.progress-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.progress-ring circle { fill: none; stroke-width: 7; }
.progress-ring__track { stroke: #e5e0d9; }
.progress-ring__value { stroke: var(--accent); stroke-linecap: round; stroke-dasharray: 72 100; animation: ring-in 1.4s .3s var(--ease) both; }
@keyframes ring-in { from { stroke-dasharray: 0 100; } }
.progress-ring strong { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 1px; color: var(--text-strong); font-size: 22px; letter-spacing: -.04em; }
.audit-card__copy { position: relative; z-index: 1; display: grid; gap: 3px; text-align: center; }
.audit-card__copy strong { font-size: 11px; }
.audit-card__copy span { color: var(--muted); font-size: 10px; }
.card-detail { display: flex; justify-content: space-between; gap: 7px; max-height: 0; margin-top: 0; overflow: hidden; opacity: 0; color: var(--muted); font-size: 8px; transition: max-height .3s var(--ease), opacity .2s ease, margin .3s var(--ease); }
.audit-card--crawl:hover .card-detail, .audit-card--crawl:focus-visible .card-detail { max-height: 20px; margin-top: 10px; opacity: 1; }

.severity-list { position: relative; z-index: 1; display: grid; gap: 8px; margin: 2px 0 11px; padding: 0; list-style: none; }
.severity-list li { display: grid; grid-template-columns: 7px 16px 1fr auto; align-items: center; gap: 6px; color: #5c554f; font-size: 10px; transition: transform .25s var(--ease), color .2s ease; }
.severity-list li:hover { transform: translateX(3px); color: var(--text-strong); }
.severity-list strong { color: var(--text-strong); font-size: 10px; }
.severity-list em { color: #8d857e; font-size: 8px; font-style: normal; opacity: 0; transform: translateX(5px); transition: opacity .2s ease, transform .25s var(--ease); }
.audit-card--findings:hover .severity-list em, .audit-card--findings:focus-visible .severity-list em { opacity: 1; transform: none; }
.severity { width: 6px; height: 6px; border-radius: 2px; }
.severity--critical { background: var(--critical); }
.severity--high { background: #b56d2b; }
.severity--medium { background: #9a8430; }
.severity--low { background: var(--success); }
.card-action { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 6px; padding: 6px 8px; border: 1px solid #e1dbd4; border-radius: 8px; color: #4e4843; background: rgba(255,255,255,.68); text-decoration: none; font-size: 9px; font-weight: 680; transition: gap .2s var(--ease), background .2s ease; }
.card-action:hover { gap: 9px; background: #fff; }

.capture-indicator { width: 8px; height: 8px; border: 1.5px solid var(--accent); border-radius: 50%; box-shadow: 0 0 0 4px rgba(49,95,98,.08); animation: capture-pulse 2.4s ease-in-out infinite; }
@keyframes capture-pulse { 50% { transform: scale(.72); opacity: .55; } }
.evidence-list { position: relative; z-index: 1; display: grid; gap: 8px; margin: 4px 0 11px; padding: 0; list-style: none; }
.evidence-list li { display: grid; grid-template-columns: 22px 1fr auto; align-items: center; gap: 7px; color: #57504b; font-size: 9px; }
.evidence-list em { max-width: 0; overflow: hidden; color: var(--muted); font-size: 7.5px; font-style: normal; white-space: nowrap; opacity: 0; transition: max-width .3s var(--ease), opacity .2s ease; }
.audit-card--evidence:hover .evidence-list em, .audit-card--evidence:focus-visible .evidence-list em { max-width: 64px; opacity: 1; }
.evidence-icon { display: grid; place-items: center; width: 21px; height: 21px; border-radius: 7px; color: var(--accent); background: #eef4f2; }
.evidence-icon svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.evidence-footer { position: relative; z-index: 1; display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 8px; }
.evidence-scan { position: relative; width: 24px; height: 3px; overflow: hidden; border-radius: 999px; background: #e3e0db; }
.evidence-scan::after { content: ""; position: absolute; inset: 0; width: 45%; border-radius: inherit; background: var(--accent); animation: scan 2.2s ease-in-out infinite alternate; }
@keyframes scan { to { transform: translateX(125%); } }

.status-pill { padding: 3px 6px; border-radius: 999px; color: var(--success); background: #e5f2ed; font-size: 7.5px; font-weight: 730; }
.report-preview { position: relative; z-index: 1; display: grid; grid-template-columns: 54px 1fr; gap: 10px; align-items: center; margin: 3px 0 12px; }
.report-preview__thumb { height: 67px; overflow: hidden; border: 1px solid #e1dbd4; border-radius: 7px; background: #f6f2ed; box-shadow: 0 5px 12px rgba(55,42,33,.08); transform: rotate(-1.6deg); transition: transform .4s var(--ease); }
.report-preview__thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.audit-card--report:hover .report-preview__thumb, .audit-card--report:focus-visible .report-preview__thumb { transform: rotate(1deg) translateY(-3px) scale(1.04); }
.report-preview__meta { min-width: 0; display: grid; gap: 4px; }
.report-preview__meta strong { color: var(--text-strong); font-size: 9.5px; line-height: 1.25; }
.report-preview__meta span { color: #625a54; font-size: 8px; }
.report-preview__meta small { color: #918881; font-size: 7.5px; }

.workflow {
  position: relative;
  z-index: 13;
  width: min(1210px, calc(100% - 60px));
  margin: -22px auto 0;
  padding: 13px 19px;
  border: 1px solid rgba(118,104,94,.20);
  border-radius: 17px;
  background: rgba(255,255,255,.75);
  box-shadow: 0 12px 34px rgba(55,42,33,.08), 0 1px 0 rgba(255,255,255,.82) inset;
  backdrop-filter: blur(20px) saturate(110%);
}
.workflow__list { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 10px; margin: 0; padding: 0; list-style: none; }
.workflow__item { display: grid; grid-template-columns: 36px 1fr; align-items: center; gap: 9px; min-width: 0; }
.workflow__item div { min-width: 0; display: grid; gap: 2px; }
.workflow__item strong { color: var(--text-strong); font-size: 11px; }
.workflow__item span { color: var(--muted); font-size: 8.5px; line-height: 1.35; }
.workflow__icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 11px; }
.workflow__icon svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.workflow__icon--configure { color: var(--accent); background: #e8f2ef; }
.workflow__icon--run { color: var(--info); background: #eaf1fa; }
.workflow__icon--review { color: var(--warning); background: #f6eee2; }
.workflow__icon--report { color: var(--brand); background: #f0e9e5; }
.workflow__icon--share { color: var(--success); background: #e7f0ec; }
.workflow__arrow { color: #a59d96; font-size: 16px; }

.handoff-strip {
  display: grid;
  place-items: center;
  min-height: 130px;
  padding: 32px;
  border-top: 1px solid rgba(73,54,47,.08);
  color: var(--muted);
  background: var(--canvas);
  font-size: 13px;
  text-align: center;
}
.handoff-strip span { color: var(--text-strong); font-weight: 740; }


@media (hover: hover) and (pointer: fine) {
  .audit-card:hover {
    translate: 0 -5px;
    scale: 1.018;
  }
}

@media (max-width: 1180px) {
  .site-header__inner { width: calc(100% - 32px); }
  .primary-nav { gap: 24px; }
  .hero__content { padding-inline: 18px; }
  .hero-stage { height: 500px; }
  .product-screen { width: 72%; top: 66px; }
  .audit-card--crawl { left: 0; }
  .audit-card--findings { left: 0; }
  .audit-card--evidence { right: 0; }
  .audit-card--report { right: 0; }
  .workflow { width: calc(100% - 36px); }
  .workflow__item span { font-size: 8px; }
}

@media (max-width: 940px) {
  :root { --announcement-height: 32px; --header-height: 62px; }
  .announcement__support { display: none; }
  .primary-nav { display: none; }
  .site-header__inner { grid-template-columns: 1fr auto; }
  .site-header__actions { grid-column: 2; }
  .login-link, .button--header { display: none; }
  .menu-button { display: block; }
  .hero { min-height: 980px; }
  .hero__content { padding-top: 38px; }
  .hero-title { font-size: clamp(43px, 8.4vw, 62px); }
  .hero-stage { height: 535px; margin-top: 20px; }
  .product-screen { top: 95px; width: 86%; }
  .audit-card { width: 148px; }
  .audit-card--crawl { top: 20px; left: 2%; }
  .audit-card--evidence { top: 20px; right: 2%; }
  .audit-card--findings { top: 365px; left: 4%; }
  .audit-card--report { top: 365px; right: 4%; }
  .connectors { opacity: .72; }
  .workflow { margin-top: 6px; padding: 12px; overflow-x: auto; scrollbar-width: none; }
  .workflow::-webkit-scrollbar { display: none; }
  .workflow__list { min-width: 900px; }
}

@media (max-width: 650px) {
  :root {
    --announcement-height: calc(31px + env(safe-area-inset-top));
    --header-height: 58px;
  }

  body { overscroll-behavior-y: none; }
  .hero {
    min-height: 1120px;
    background: var(--canvas);
  }

  /* iPhone-safe chrome: compact, translucent, and visually part of the scene. */
  .announcement {
    height: var(--announcement-height);
    padding-top: env(safe-area-inset-top);
    background: rgba(247, 244, 239, .84);
    backdrop-filter: blur(22px) saturate(120%);
    -webkit-backdrop-filter: blur(22px) saturate(120%);
  }
  .announcement.is-dismissed { padding-top: 0; }
  .announcement__inner {
    width: calc(100% - 42px - env(safe-area-inset-left) - env(safe-area-inset-right));
    justify-content: center;
    gap: 7px;
    font-size: 9.5px;
  }
  .announcement__inner p {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .announcement__inner strong { font-size: 9.5px; letter-spacing: -.01em; }
  .announcement__support, .announcement__link { display: none; }
  .announcement__dot { width: 4px; height: 4px; box-shadow: 0 0 0 4px rgba(73,54,47,.045); }
  .announcement__close { right: max(4px, env(safe-area-inset-right)); width: 30px; height: 30px; }

  .site-header {
    background: rgba(251, 250, 247, .72);
    backdrop-filter: blur(24px) saturate(125%);
    -webkit-backdrop-filter: blur(24px) saturate(125%);
  }
  .site-header__inner {
    width: calc(100% - 24px - env(safe-area-inset-left) - env(safe-area-inset-right));
  }
  .brand { gap: 8px; }
  .brand__name { font-size: 16px; letter-spacing: -.025em; }
  .brand__mark { width: 31px; height: 31px; border-radius: 9px; }
  .menu-button {
    display: block;
    width: 39px;
    height: 39px;
    border-color: rgba(73,54,47,.13);
    background: rgba(255,255,255,.62);
    box-shadow: 0 6px 20px rgba(55,42,33,.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  .mobile-nav {
    left: max(12px, env(safe-area-inset-left));
    right: max(12px, env(safe-area-inset-right));
    top: calc(100% + 8px);
    padding: 12px;
    border-radius: 18px;
    background: rgba(251,250,247,.95);
    backdrop-filter: blur(30px) saturate(125%);
    -webkit-backdrop-filter: blur(30px) saturate(125%);
    box-shadow: 0 24px 70px rgba(55,42,33,.18);
  }

  /* The full 4K/120 source now stays alive on phones. On a tall display we
     show a wider-than-viewport 16:9 plate so the original evidence-table
     composition remains recognizable instead of being brutally portrait-cropped. */
  .hero__media {
    inset: calc(var(--announcement-height) + var(--header-height)) 0 auto;
    height: 455px;
    overflow: hidden;
    background: var(--canvas);
  }
  .hero__video {
    display: block !important;
    inset: 0 auto auto 50%;
    width: 148vw;
    max-width: none;
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center top;
    opacity: .985;
    filter: saturate(.88) contrast(.975) brightness(1.035);
    transform: translate3d(-50%, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 70%, rgba(0,0,0,.92) 78%, rgba(0,0,0,.38) 91%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 70%, rgba(0,0,0,.92) 78%, rgba(0,0,0,.38) 91%, transparent 100%);
  }
  .hero__wash {
    display: block;
    background:
      linear-gradient(180deg, rgba(248,245,239,.02) 0%, rgba(248,245,239,.06) 45%, rgba(244,241,235,.56) 82%, var(--canvas) 100%),
      radial-gradient(ellipse 70% 44% at 50% 28%, rgba(255,253,249,.60) 0%, rgba(255,253,249,.28) 55%, transparent 100%);
  }
 .hero__pointer-light { display: none; }

  .hero__content { padding: 24px 12px 10px; }
  .hero-copy { width: 100%; padding-inline: 5px; }
  .eyebrow {
    gap: 6px;
    margin-bottom: 10px;
    padding: 6px 9px;
    border: 1px solid rgba(73,54,47,.09);
    border-radius: 999px;
    color: #6f6761;
    background: rgba(255,255,255,.43);
    box-shadow: 0 5px 18px rgba(55,42,33,.035);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-size: 8px;
    letter-spacing: .09em;
  }
  .eyebrow__pulse { width: 5px; height: 5px; }
  .hero-title {
    font-size: clamp(42px, 11.5vw, 48px);
    line-height: .985;
    letter-spacing: -.064em;
    text-shadow: 0 1px 0 rgba(255,255,255,.38);
  }
  .hero-subtitle {
    width: min(350px, 94%);
    margin-top: 11px;
    color: #5a544f;
    font-size: 14px;
    line-height: 1.43;
  }
  .hero-actions {
    width: min(374px, 100%);
    margin: 16px auto 0;
    gap: 8px;
    flex-direction: row;
    align-items: stretch;
  }
  .hero-actions .button {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    min-height: 50px;
    padding-inline: 10px;
    border-radius: 13px;
    font-size: 11.7px;
    letter-spacing: -.015em;
  }
  .hero-actions .button__icon { width: 16px; height: 16px; flex: 0 0 16px; }
  .hero-actions .button__arrow { display: none; }
  .hero-actions .button__label { white-space: nowrap; }
  .compare-link { margin-top: 7px; font-size: 11.5px; }

  /* Mobile product theatre: one strong central screen and four compact
     glass cards, all kept inside a comfortable thumb/viewing zone. */
  .hero-stage {
    height: 505px;
    margin-top: 15px;
    perspective: 1100px;
  }
  .product-screen {
    top: 88px;
    width: calc(100% - 24px);
    border-radius: 16px;
    box-shadow: 0 22px 58px rgba(57,43,33,.17), 0 4px 14px rgba(57,43,33,.07), 0 1px 0 rgba(255,255,255,.88) inset;
    animation: mobile-screen-float 7.5s ease-in-out infinite;
  }
  @keyframes mobile-screen-float {
    0%, 100% { transform: translate3d(-50%, 0, 0) rotateX(.1deg); }
    50% { transform: translate3d(-50%, -3px, 0) rotateX(-.25deg); }
  }

  .audit-card {
    min-height: 0;
    padding: 11px;
    border-radius: 15px;
    background: rgba(255,255,255,.84);
    box-shadow: 0 14px 38px rgba(55,42,33,.13), 0 1px 0 rgba(255,255,255,.78) inset;
    backdrop-filter: blur(22px) saturate(118%);
    -webkit-backdrop-filter: blur(22px) saturate(118%);
    animation: mobile-card-float 6.4s ease-in-out infinite;
  }
  .audit-card--crawl { top: 0; left: 7px; width: 124px; animation-delay: -.7s; }
  .audit-card--evidence { top: 0; right: 7px; width: 128px; animation-delay: -2.2s; }
  .audit-card--findings { top: 330px; left: 10px; width: 138px; animation-delay: -3.5s; }
  .audit-card--report { top: 330px; right: 10px; width: 144px; animation-delay: -1.7s; }
  @keyframes mobile-card-float {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -3px; }
  }
  .audit-card:active { scale: .985; transition-duration: .12s; }
  .progress-ring { width: 58px; height: 58px; margin: 1px auto 5px; }
  .progress-ring strong { font-size: 17px; }
  .audit-card__header { margin-bottom: 6px; }
  .audit-card__kicker { font-size: 10.5px; }
  .severity-list { gap: 4px; margin-bottom: 6px; }
  .severity-list li { grid-template-columns: 6px 13px 1fr; gap: 4px; font-size: 8.5px; }
  .severity-list em { display: none; }
  .evidence-list { gap: 4px; margin-bottom: 6px; }
  .evidence-list li { grid-template-columns: 18px 1fr; gap: 5px; font-size: 8px; }
  .evidence-list em { display: none; }
  .evidence-icon { width: 17px; height: 17px; border-radius: 6px; }
  .evidence-icon svg { width: 10px; height: 10px; }
  .report-preview { grid-template-columns: 41px 1fr; gap: 6px; margin-bottom: 6px; }
  .report-preview__thumb { height: 52px; }
  .report-preview__meta strong { font-size: 8px; }
  .report-preview__meta span, .report-preview__meta small { font-size: 7px; }
  .card-action { padding: 5px 7px; font-size: 8px; }
  .card-detail, .audit-card__total, .live-dot, .evidence-footer { display: none; }
  .connectors { display: none; }

  /* No horizontal micro-scroll on iPhone: all five stages read as one tidy rail. */
  .workflow {
    width: calc(100% - 24px - env(safe-area-inset-left) - env(safe-area-inset-right));
    margin-top: 0;
    padding: 10px 7px;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(20px) saturate(112%);
    -webkit-backdrop-filter: blur(20px) saturate(112%);
  }
  .workflow__list {
    min-width: 0;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 3px;
  }
  .workflow__arrow { display: none; }
  .workflow__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    text-align: center;
  }
  .workflow__item div { display: block; min-width: 0; }
  .workflow__item strong { display: block; font-size: 8.6px; line-height: 1.1; }
  .workflow__item span { display: none; }
  .workflow__icon { width: 30px; height: 30px; border-radius: 10px; }
  .workflow__icon svg { width: 15px; height: 15px; }
}

/* Primary tuning target: iPhone 16 Pro / modern 6.3-inch class (402×874 CSS px). */
@media (min-width: 390px) and (max-width: 430px) and (min-height: 820px) {
  .hero { min-height: 1136px; }
  .hero__media { height: 468px; }
  .hero__video { width: 150vw; }
  .hero__content { padding-top: 26px; }
  .hero-title { font-size: 46px; }
  .hero-subtitle { font-size: 14.4px; }
  .hero-stage { height: 512px; margin-top: 17px; }
  .product-screen { top: 92px; width: calc(100% - 26px); }
  .audit-card--findings, .audit-card--report { top: 334px; }
}

@media (max-width: 389px) {
  .hero { min-height: 1165px; }
  .hero__video { width: 156vw; }
  .hero-title { font-size: 41px; }
  .hero-subtitle { font-size: 13.5px; }
  .hero-actions { flex-direction: column; width: min(330px, 100%); }
  .hero-actions .button { width: 100%; }
  .hero-stage { height: 525px; }
  .product-screen { top: 96px; width: calc(100% - 18px); }
  .audit-card--crawl { left: 4px; }
  .audit-card--evidence { right: 4px; }
  .audit-card--findings { top: 344px; left: 5px; }
  .audit-card--report { top: 344px; right: 5px; width: 138px; }
}

@media (forced-colors: active) {
  .hero__video, .hero__media { display: none; }
  .hero { background: Canvas; }
  .audit-card, .workflow, .product-screen { border: 1px solid CanvasText; }
  .button { border: 1px solid ButtonText; }
}

/* v0.8 — iPhone 6.3-inch art-direction pass.
   Desktop/tablet rules above remain untouched. */
@media (max-width: 650px) {
  :root {
    --announcement-height: 0px;
    --header-height: 54px;
  }

  /* The mobile announcement is intentionally omitted. The value proposition
     needs the scarce first-screen vertical space more than a release banner. */
  .announcement { display: none !important; }

  /* Always respect the Dynamic Island / status-bar safe area, including after
     a previously dismissed announcement stored in sessionStorage. */
  .site-header {
    height: calc(var(--header-height) + env(safe-area-inset-top));
    padding-top: env(safe-area-inset-top);
    background: rgba(251, 250, 247, .80);
    border-bottom-color: rgba(73,54,47,.075);
  }
  .site-header__inner { height: var(--header-height); }
  .brand__mark { width: 30px; height: 30px; }
  .brand__name { font-size: 15.5px; }
  .menu-button { width: 38px; height: 38px; }

  .hero {
    min-height: 0;
    padding-bottom: 18px;
  }
  .hero__media {
    inset: calc(var(--header-height) + env(safe-area-inset-top)) 0 auto;
    height: 460px;
  }
  .hero__content {
    padding-top: 22px;
    padding-bottom: 0;
  }

  /* Keep the bold editorial headline, but shave enough vertical height that
     the product theatre and workflow feel like one continuous first scene. */
  .hero-title {
    font-size: clamp(41px, 11.1vw, 45px);
    line-height: .97;
  }
  .hero-subtitle {
    margin-top: 10px;
    width: min(348px, 94%);
    font-size: 13.9px;
    line-height: 1.4;
  }
  .hero-actions { margin-top: 14px; }
  .compare-link { margin-top: 6px; }

  /* Tighten the product theatre. The lower cards now overlap the screen's
     bottom corners instead of creating a second detached row. */
  .hero-stage {
    height: 432px;
    margin-top: 13px;
  }
  .product-screen {
    top: 84px;
    width: calc(100% - 22px);
    filter: saturate(.98) contrast(1.025);
    box-shadow: 0 24px 64px rgba(57,43,33,.18), 0 5px 16px rgba(57,43,33,.075), 0 1px 0 rgba(255,255,255,.92) inset;
  }
  .audit-card--crawl { top: 0; left: 5px; width: 121px; }
  .audit-card--evidence { top: 0; right: 5px; width: 125px; }
  .audit-card--findings { top: 272px; left: 7px; width: 132px; }
  .audit-card--report { top: 270px; right: 7px; width: 139px; }

  .audit-card {
    padding: 10px;
    border-radius: 14px;
    box-shadow: 0 12px 34px rgba(55,42,33,.125), 0 1px 0 rgba(255,255,255,.82) inset;
  }
  .audit-card__kicker { font-size: 10px; line-height: 1.05; }
  .progress-ring { width: 54px; height: 54px; }
  .progress-ring strong { font-size: 16px; }
  .audit-card__copy strong { font-size: 9.5px; }
  .audit-card__copy span { font-size: 8px; }
  .severity-list li { font-size: 8.2px; }
  .evidence-list li { font-size: 7.8px; }
  .report-preview__meta strong { font-size: 7.8px; }

  /* The workflow is the visual full stop of the Hero — no prototype boundary
     or dead beige canvas follows it. */
  .workflow {
    margin-top: 3px;
    margin-bottom: 0;
    padding: 9px 7px;
    box-shadow: 0 12px 34px rgba(55,42,33,.07);
  }
  .workflow__icon { width: 28px; height: 28px; border-radius: 9px; }
  .workflow__item strong { font-size: 8.4px; }

  .handoff-strip { display: none !important; }
}

@media (min-width: 390px) and (max-width: 430px) and (min-height: 820px) {
  .hero { min-height: 0; }
  .hero__media { height: 464px; }
  .hero__content { padding-top: 23px; }
  .hero-title { font-size: 44px; }
  .hero-stage { height: 438px; margin-top: 14px; }
  .product-screen { top: 86px; width: calc(100% - 22px); }
  .audit-card--findings { top: 276px; }
  .audit-card--report { top: 274px; }
}

/* v0.9 — mobile proportion + render-performance pass. */
.hero__video {
  /* Avoid a per-frame CSS filter on a 120fps video. The source is already
     color-corrected enough for the hero and the wash layer handles contrast. */
  filter: none;
}

@media (max-width: 650px) {
  :root {
    --ios-top-guard: max(env(safe-area-inset-top), 18px);
    --header-height: 52px;
  }

  .site-header {
    height: calc(var(--header-height) + var(--ios-top-guard));
    padding-top: var(--ios-top-guard);
    background: rgba(251,250,247,.91);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .site-header__inner { height: var(--header-height); }

  .hero__media {
    inset: calc(var(--header-height) + var(--ios-top-guard)) 0 auto;
    height: 424px;
  }
  .hero__video {
    width: 150vw;
    /* The lower fade is drawn by hero__wash instead; masking a 120fps video
       forces extra compositing work on mobile GPUs. */
    -webkit-mask-image: none;
    mask-image: none;
    opacity: 1;
  }
  .hero__wash {
    background:
      linear-gradient(180deg, rgba(248,245,239,.03) 0%, rgba(248,245,239,.055) 43%, rgba(244,241,235,.50) 77%, var(--canvas) 100%),
      radial-gradient(ellipse 74% 44% at 50% 28%, rgba(255,253,249,.60) 0%, rgba(255,253,249,.25) 58%, transparent 100%);
  }

  .hero__content { padding-top: 18px; }
  .hero-copy { padding-inline: 9px; }
  .eyebrow { margin-bottom: 9px; font-size: 7.7px; }
  .hero-title {
    font-size: clamp(38px, 10.1vw, 41px);
    line-height: .96;
    letter-spacing: -.058em;
  }
  .hero-title__line { white-space: nowrap; }
  .hero-subtitle {
    width: min(344px, 94%);
    margin-top: 9px;
    font-size: 13.2px;
    line-height: 1.38;
  }
  .hero-actions { margin-top: 13px; gap: 7px; }
  .hero-actions .button {
    min-height: 47px;
    border-radius: 12px;
    font-size: 10.8px;
    padding-inline: 8px;
  }
  .compare-link { margin-top: 6px; font-size: 10.9px; }

  .hero-stage {
    height: 398px;
    margin-top: 11px;
  }
  .product-screen {
    top: 73px;
    width: calc(100% - 18px);
    border-radius: 15px;
    filter: none;
    box-shadow: 0 18px 46px rgba(57,43,33,.155), 0 4px 12px rgba(57,43,33,.055), 0 1px 0 rgba(255,255,255,.92) inset;
  }

  /* The four cards now read as satellites of the main screen, not four equal
     panels fighting it for visual weight. */
  .audit-card {
    padding: 9px;
    border-radius: 13px;
    background: rgba(255,255,255,.93);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 10px 26px rgba(55,42,33,.105), 0 1px 0 rgba(255,255,255,.9) inset;
  }
  .audit-card--crawl { top: 0; left: 3px; width: 111px; }
  .audit-card--evidence { top: 0; right: 3px; width: 116px; }
  .audit-card--findings { top: 248px; left: 5px; width: 121px; }
  .audit-card--report { top: 246px; right: 5px; width: 130px; }
  .audit-card__kicker { font-size: 9.2px; }
  .progress-ring { width: 49px; height: 49px; margin-bottom: 4px; }
  .progress-ring strong { font-size: 14.5px; }
  .audit-card__copy strong { font-size: 8.7px; line-height: 1.06; }
  .audit-card__copy span { font-size: 7.4px; }
  .severity-list { gap: 3px; }
  .severity-list li { font-size: 7.6px; grid-template-columns: 6px 11px 1fr; }
  .evidence-list { gap: 3px; }
  .evidence-list li { font-size: 7.2px; grid-template-columns: 16px 1fr; }
  .evidence-icon { width: 15px; height: 15px; }
  .report-preview { grid-template-columns: 34px 1fr; gap: 5px; }
  .report-preview__thumb { height: 45px; }
  .report-preview__meta strong { font-size: 7.1px; }
  .report-preview__meta span, .report-preview__meta small { font-size: 6.5px; }
  .card-action { padding: 4px 6px; font-size: 7.4px; }

  .workflow {
    width: calc(100% - 22px - env(safe-area-inset-left) - env(safe-area-inset-right));
    margin-top: 0;
    padding: 10px 8px;
    border-radius: 14px;
    background: rgba(255,255,255,.86);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 9px 24px rgba(55,42,33,.055);
  }
  .workflow__icon { display: none; }
  .workflow__item { gap: 0; }
  .workflow__item strong { font-size: 8.1px; letter-spacing: -.01em; }
}

@media (min-width: 390px) and (max-width: 430px) and (min-height: 820px) {
  .hero__media { height: 428px; }
  .hero__content { padding-top: 19px; }
  .hero-title { font-size: 40.5px; }
  .hero-stage { height: 402px; margin-top: 12px; }
  .product-screen { top: 75px; width: calc(100% - 18px); }
  .audit-card--findings { top: 251px; }
  .audit-card--report { top: 249px; }
}

/* v0.10 — mobile static composition + 60fps delivery pass.
   Desktop/tablet motion remains unchanged. On phones, the video is the only
   continuous animation; UI objects are composed as a stable editorial scene. */
@media (max-width: 650px) {
  /* Kill decorative loops and touch-hover motion on mobile. */
  .eyebrow,
  .eyebrow__pulse,
  .hero-title__line,
  .button--sheen::after,
  .product-screen,
  .audit-card,
  .progress-ring__value,
  .capture-indicator,
  .evidence-scan::after,
  .live-dot i {
    animation: none !important;
  }

  .tilt-layer,
  .product-screen,
  .audit-card {
    will-change: auto !important;
    transition: none !important;
    transform: none !important;
    translate: none !important;
    rotate: none !important;
    scale: 1 !important;
  }

  .product-screen:hover,
  .audit-card:hover,
  .audit-card:focus-visible,
  .audit-card:active {
    transform: none !important;
    translate: none !important;
    rotate: none !important;
    scale: 1 !important;
  }
  .audit-card__ambient,
  .product-screen__shine { display: none !important; }
  .severity-list li:hover { transform: none !important; }

  /* More compact copy so the first screen feels composed, not oversized. */
  .hero-copy { padding-inline: 12px; }
  .hero-title {
    font-size: clamp(34px, 9.15vw, 37px);
    line-height: .985;
    letter-spacing: -.052em;
  }
  .hero-title__line { white-space: nowrap; }
  .hero-subtitle {
    width: min(352px, 96%);
    font-size: 12.9px;
    line-height: 1.39;
  }

  /* Static mobile product theatre: top pair → screen → bottom pair.
     No overlap, no jumping, no absolute-position collisions. */
  .hero-stage {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: calc(100% - 24px);
    height: auto;
    margin: 15px auto 0;
    perspective: none;
    transform-style: flat;
  }

  .product-screen {
    position: relative;
    z-index: 3;
    top: auto;
    left: auto;
    grid-column: 1 / -1;
    order: 2;
    width: 100%;
    aspect-ratio: 1.92;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 17px 40px rgba(57,43,33,.14), 0 3px 10px rgba(57,43,33,.05), 0 1px 0 rgba(255,255,255,.92) inset;
  }
  .product-screen::after { display: none; }

  .audit-card {
    position: relative;
    z-index: 4;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    min-height: 118px;
    padding: 10px;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255,255,255,.94);
    box-shadow: 0 9px 24px rgba(55,42,33,.085), 0 1px 0 rgba(255,255,255,.92) inset;
  }
  .audit-card--crawl { order: 1; }
  .audit-card--evidence { order: 1; }
  .audit-card--findings { order: 3; }
  .audit-card--report { order: 3; }

  .audit-card__header { margin-bottom: 6px; }
  .audit-card__kicker { font-size: 9.4px; line-height: 1.08; }
  .progress-ring { width: 47px; height: 47px; margin: 0 auto 3px; }
  .progress-ring strong { font-size: 14px; }
  .audit-card__copy strong { font-size: 8.8px; line-height: 1.05; }
  .audit-card__copy span { font-size: 7.4px; }
  .severity-list { gap: 3px; margin: 1px 0 6px; }
  .severity-list li { font-size: 7.6px; }
  .evidence-list { gap: 3px; margin: 1px 0 4px; }
  .evidence-list li { font-size: 7.2px; }
  .report-preview { margin-bottom: 5px; }
  .card-action { padding: 4px 6px; font-size: 7.4px; }

  .workflow {
    margin-top: 12px;
  }
}

/* Primary 6.3-inch iPhone class (around 402×874 CSS px). */
@media (min-width: 390px) and (max-width: 430px) and (min-height: 820px) {
  .hero-title { font-size: 36.5px; }
  .hero-stage { width: calc(100% - 26px); gap: 11px; }
  .audit-card { min-height: 120px; }
}

/* v0.11 — sticky transparent navigation + compositor-only pointer scene. */
:root { --announcement-height: 0px; }

.announcement { display: none !important; }
.hero__pointer-light { display: none !important; }
.hero-stage { contain: layout style; }
.product-screen, .audit-card {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.hero__video {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0) scale(1.012);
}

.site-header.is-scrolled {
  border-bottom-color: transparent;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}
.site-header.is-scrolled .brand__name,
.site-header.is-scrolled .nav-link,
.site-header.is-scrolled .login-link {
  color: rgba(23,22,20,.91);
  text-shadow: 0 1px 7px rgba(255,255,255,.95), 0 0 2px rgba(255,255,255,.80);
}
.site-header.is-scrolled .brand__mark {
  box-shadow: 0 4px 15px rgba(40,31,26,.12), 0 0 0 1px rgba(255,255,255,.70);
}
.site-header.is-scrolled .menu-button {
  border-color: rgba(73,54,47,.12);
  background: rgba(251,250,247,.72);
  box-shadow: 0 5px 18px rgba(55,42,33,.08);
}

.hero__content { padding-top: calc(var(--header-height) + 26px); }
.hero__media { inset: var(--header-height) 0 0; }

@media (max-width: 650px) {
  .site-header {
    height: calc(var(--header-height) + var(--ios-top-guard));
    padding-top: var(--ios-top-guard);
  }
  .hero__media {
    inset: calc(var(--header-height) + var(--ios-top-guard)) 0 auto;
  }
  .hero__content {
    padding-top: calc(var(--header-height) + var(--ios-top-guard) + 18px);
  }
  .brand__mark { border-radius: 50%; }
}

/* v0.13 — anti-template humanization + true site-level fixed navigation. */
.site-header {
  z-index: 5000;
}

.brand {
  gap: 0;
}

.brand__mark {
  display: none !important;
}

.brand__name--wordmark {
  font-size: 20px;
  font-weight: 760;
  letter-spacing: -.045em;
}

/* Section labels should read as typography, not as generated UI badges. */
.eyebrow {
  gap: 0;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.eyebrow__pulse {
  display: none !important;
}

/* Header is now outside the hero stacking context, so it stays above every section. */
.site-header.is-scrolled {
  z-index: 5000;
}

/* Prevent anchored sections from disappearing behind the fixed site nav. */
[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

@media (max-width: 650px) {
  .brand__name--wordmark {
    font-size: 18px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 8.5px;
    letter-spacing: .11em;
  }
}


/* v0.14 — silver mark install + mobile full-bleed video fix */
.brand {
  gap: 10px;
}
.brand__mark {
  display: flex !important;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(23,22,20,.10);
  box-shadow: 0 4px 14px rgba(25,20,16,.14);
}
.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand__name--wordmark {
  font-size: 19px;
  font-weight: 760;
  letter-spacing: -.035em;
}

@media (max-width: 650px) {
  .brand {
    gap: 8px;
  }
  .brand__mark {
    display: flex !important;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(25,20,16,.14);
  }
  .brand__name--wordmark {
    font-size: 17px;
    letter-spacing: -.03em;
  }

  /* Fill the mobile hero with the video instead of showing a narrower plate. */
  .hero__media {
    inset: calc(var(--header-height) + var(--ios-top-guard)) 0 auto;
    height: min(56svh, 500px);
    background: var(--canvas);
  }
  .hero__video {
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    min-height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: translateZ(0) scale(1.045);
  }
  .hero__wash {
    background:
      linear-gradient(180deg, rgba(248,245,239,.03) 0%, rgba(248,245,239,.07) 40%, rgba(244,241,235,.54) 76%, var(--canvas) 100%),
      radial-gradient(ellipse 80% 52% at 50% 22%, rgba(255,253,249,.58) 0%, rgba(255,253,249,.24) 58%, transparent 100%);
  }
  .hero__content {
    padding-top: calc(var(--header-height) + var(--ios-top-guard) + 20px);
  }
}

@media (min-width: 390px) and (max-width: 430px) and (min-height: 820px) {
  .hero__media { height: min(58svh, 520px); }
}
