* {
  box-sizing: border-box;
}

:root {
  --graphite: #071426;
  --ink: #071426;
  --steel: #526277;
  --mist: #eef1ee;
  --paper: #f7f9fc;
  --white: #ffffff;
  --line: #d8e2ee;
  --teal: #0078ff;
  --teal-dark: #005fcc;
  --green: #0078ff;
  --amber: #c9862f;
  --diagnostic-steel: #526277;
  --rose: #b95f5f;
  --shadow: 0 20px 60px rgba(17, 20, 22, 0.12);
}

html {
  scroll-behavior: smooth;
}

main section {
  scroll-margin-top: 108px;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: Outfit, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0 20px;
}

.brand-nav {
  width: min(100%, 1160px);
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 10px 22px;
  border: 1px solid rgba(216, 222, 216, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 36px rgba(17, 20, 22, 0.12);
  backdrop-filter: blur(18px);
}

.brand-link {
  display: flex;
  align-items: center;
  min-width: 136px;
}

.brand-logo {
  width: 132px;
  height: auto;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: 28px;
}

.nav-actions {
  gap: 16px;
}

.nav-links a,
.login-link,
.mobile-menu a {
  color: var(--steel);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a:hover,
.login-link:hover,
.mobile-menu a:hover {
  color: var(--graphite);
}

.nav-cta,
.nav-secondary,
.primary-button,
.secondary-button,
.demo-form button,
.cookie-actions button:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.nav-cta,
.primary-button,
.demo-form button,
.cookie-actions button:first-child {
  background: var(--teal-dark);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 120, 255, 0.2);
}

.nav-cta {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.primary-button,
.secondary-button {
  min-width: 172px;
  padding: 0 20px;
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  box-shadow: none;
}

.nav-cta:hover,
.primary-button:hover,
.demo-form button:hover,
.cookie-actions button:first-child:hover {
  transform: translateY(-1px);
  background: var(--teal);
  box-shadow: 0 16px 34px rgba(0, 120, 255, 0.26);
}

.secondary-button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.14);
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--graphite);
}

.mobile-menu-button svg {
  width: 22px;
  height: 22px;
}

.mobile-menu {
  width: min(100%, 1160px);
  margin: 8px auto 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.mobile-menu a {
  display: block;
  padding: 12px;
}

.hero-section {
  position: relative;
  min-height: 91vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px 24px 68px;
  color: var(--white);
  background: var(--graphite);
}

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 20, 22, 0.96) 0%, rgba(17, 20, 22, 0.82) 42%, rgba(17, 20, 22, 0.54) 100%),
    linear-gradient(160deg, rgba(0, 120, 255, 0.18), rgba(82, 96, 106, 0.16) 45%, rgba(201, 134, 47, 0.12));
}

.control-surface {
  position: absolute;
  right: max(28px, calc((100vw - 1160px) / 2));
  top: 118px;
  width: min(46vw, 620px);
  min-height: 560px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
  opacity: 0.62;
}

.surface-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 42px;
  padding: 0 4px 18px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.surface-topline strong {
  color: #cfe4ff;
}

.surface-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.surface-panel {
  min-height: 176px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.panel-large {
  min-height: 274px;
  grid-row: span 2;
}

.panel-wide {
  grid-column: span 2;
  min-height: 138px;
}

.panel-eyebrow {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.status-row strong {
  font-size: 0.98rem;
}

.good,
.watch {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.good {
  background: rgba(0, 120, 255, 0.16);
  color: #bdf4cc;
}

.watch {
  background: rgba(201, 134, 47, 0.16);
  color: #f0c98a;
}

.stream-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 72px;
  margin-top: 24px;
}

.stream-bars span {
  flex: 1;
  min-width: 0;
  border-radius: 6px 6px 0 0;
  background: var(--teal);
}

.stream-bars span:nth-child(1) { height: 35%; }
.stream-bars span:nth-child(2) { height: 58%; background: var(--green); }
.stream-bars span:nth-child(3) { height: 78%; }
.stream-bars span:nth-child(4) { height: 52%; background: var(--steel); }
.stream-bars span:nth-child(5) { height: 88%; background: var(--green); }

.surface-metric {
  display: block;
  margin-bottom: 8px;
  font-family: Outfit, sans-serif;
  font-size: 3rem;
  line-height: 1;
}

.surface-panel small {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.45;
}

.evidence-ticks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.evidence-ticks span {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  text-align: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 1160px);
  margin: 0 auto;
  padding-bottom: 20px;
}

.section-kicker {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 650px;
  margin: 0;
  font-family: Outfit, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(3rem, 5.6vw, 5.6rem);
  line-height: 0.97;
  font-weight: 700;
}

.hero-lede {
  max-width: 500px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.cred-strip {
  width: min(100% - 48px, 1160px);
  margin: -36px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.cred-strip article {
  min-height: 142px;
  padding: 22px;
}

.cred-strip article + article {
  border-left: 1px solid var(--line);
}

.cred-strip strong,
.buyer-grid strong,
.proof-list strong {
  display: block;
  color: var(--graphite);
  font-size: 1rem;
}

.cred-strip span,
.buyer-grid span,
.proof-list span {
  display: block;
  margin-top: 8px;
  color: var(--steel);
  line-height: 1.48;
}

.content-section,
.proof-section,
.diagnostics-section,
.security-section,
.buyer-section,
.demo-section,
.site-footer {
  width: min(100% - 48px, 1160px);
  margin: 0 auto;
}

.content-section,
.proof-section,
.diagnostics-section,
.security-section,
.buyer-section {
  padding: clamp(72px, 9vw, 118px) 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.proof-copy h2,
.diagnostics-copy h2,
.buyer-section h2,
.demo-copy h2 {
  margin: 0;
  color: var(--graphite);
  font-family: Outfit, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.4rem, 4.8vw, 4.5rem);
  line-height: 1.02;
  font-weight: 700;
}

.section-heading p:not(.section-kicker),
.proof-copy p,
.diagnostics-copy p,
.demo-copy p {
  margin: 20px 0 0;
  color: var(--steel);
  font-size: 1.08rem;
  line-height: 1.68;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.capability-card,
.security-grid article,
.proof-list article,
.buyer-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.capability-card {
  min-height: 304px;
  padding: 22px;
}

.card-index {
  color: var(--teal-dark);
  font-weight: 800;
}

.capability-card h3,
.security-grid h3 {
  margin: 92px 0 10px;
  color: var(--graphite);
  font-size: 1.22rem;
}

.capability-card p,
.security-grid p {
  margin: 0;
  color: var(--steel);
  line-height: 1.55;
}

.proof-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.proof-list article {
  min-height: 178px;
  padding: 20px;
}

.diagnostics-section {
  width: 100%;
  max-width: none;
  padding-left: 24px;
  padding-right: 24px;
  background: #e6ece7;
}

.diagnostics-grid {
  width: min(100%, 1160px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: center;
}

.diagnostics-panel {
  min-height: 460px;
  padding: 22px;
  border: 1px solid rgba(17, 20, 22, 0.12);
  border-radius: 8px;
  background: var(--graphite);
  color: var(--white);
  box-shadow: var(--shadow);
}

.map-frame {
  position: relative;
  min-height: 262px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(140deg, rgba(0, 120, 255, 0.22), rgba(82, 96, 106, 0.18));
  background-size: 44px 44px, 44px 44px, auto;
}

.map-dot {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 4px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(0, 120, 255, 0.14);
}

.dot-a { left: 18%; top: 36%; }
.dot-b { left: 52%; top: 24%; background: var(--green); }
.dot-c { right: 16%; bottom: 28%; background: var(--amber); }

.map-line {
  position: absolute;
  height: 2px;
  transform-origin: left center;
  background: rgba(255, 255, 255, 0.36);
}

.line-a {
  left: 21%;
  top: 40%;
  width: 34%;
  transform: rotate(-13deg);
}

.line-b {
  left: 54%;
  top: 31%;
  width: 35%;
  transform: rotate(32deg);
}

.diagnostics-panel dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 14px 0 0;
}

.diagnostics-panel dl div {
  min-height: 80px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.diagnostics-panel dt {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 800;
}

.diagnostics-panel dd {
  margin: 6px 0 0;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.security-grid article {
  min-height: 218px;
  padding: 20px;
}

.security-grid h3 {
  margin-top: 0;
}

.trust-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
  margin-top: 24px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(17, 20, 22, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 120, 255, 0.12), transparent 40%),
    var(--graphite);
  color: var(--white);
  box-shadow: var(--shadow);
}

.trust-panel-copy h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.trust-panel-copy p {
  margin: 16px 0 0;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.68);
}

.trust-evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.trust-evidence-grid article {
  display: grid;
  align-content: space-between;
  min-height: 214px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.trust-evidence-grid span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-evidence-grid strong {
  color: var(--white);
  font-size: 1.06rem;
  line-height: 1.35;
}

.buyer-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  border-top: 1px solid var(--line);
}

.buyer-grid {
  display: grid;
  gap: 14px;
}

.buyer-grid article {
  padding: 20px;
}

.demo-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 48px;
  padding: clamp(32px, 6vw, 56px);
  border-radius: 8px;
  background: var(--graphite);
  color: var(--white);
  box-shadow: var(--shadow);
}

.demo-copy h2,
.demo-copy p {
  color: var(--white);
}

.demo-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.7);
}

.demo-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.demo-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  min-height: 52px;
  width: 100%;
  min-width: 0;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.demo-form textarea {
  min-height: 112px;
  padding-top: 14px;
  resize: vertical;
}

.demo-form select option {
  color: var(--ink);
}

.demo-form input::placeholder,
.demo-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  outline: 2px solid rgba(0, 120, 255, 0.52);
  outline-offset: 2px;
}

.full-span,
.compliance-field {
  grid-column: 1 / -1;
}

.compliance-field {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
}

.compliance-field legend {
  padding: 0 6px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.compliance-field label,
.demo-form .consent-field {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.35;
}

.compliance-field input,
.demo-form .consent-field input {
  min-height: auto;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  padding: 0;
  accent-color: var(--teal);
}

.honeypot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.demo-form button {
  min-height: 52px;
}

.demo-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-message {
  margin: 0;
  font-weight: 800;
}

.form-message.error {
  color: #ffb4ae;
}

.form-message.success {
  color: #cfe4ff;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
}

.footer-brand img {
  width: 128px;
}

.footer-brand p,
.copyright {
  margin: 8px 0 0;
  color: var(--steel);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer-links a {
  color: var(--steel);
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--graphite);
}

.copyright {
  grid-column: 1 / -1;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: min(calc(100% - 40px), 520px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(17, 20, 22, 0.96);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 6px;
  cursor: pointer;
}

.cookie-actions button:last-child {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--white);
}

@media (max-width: 1040px) {
  .nav-actions,
  .nav-links {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .control-surface {
    right: 24px;
    width: min(76vw, 680px);
    opacity: 0.54;
  }

  .cred-strip,
  .capability-grid,
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cred-strip article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .cred-strip article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .proof-section,
  .diagnostics-grid,
  .trust-panel,
  .buyer-section,
  .demo-section {
    grid-template-columns: 1fr;
  }

  .trust-evidence-grid {
    grid-template-columns: 1fr;
  }

  .trust-evidence-grid article {
    align-content: start;
    min-height: auto;
    gap: 26px;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    padding: 0 10px;
  }

  .brand-nav {
    min-height: 60px;
    padding-left: 14px;
  }

  .brand-logo {
    width: 118px;
  }

  .hero-section {
    min-height: 88vh;
    padding: 96px 16px 56px;
  }

  .control-surface {
    inset: 86px 12px auto 12px;
    width: auto;
    min-height: 440px;
    padding: 14px;
    opacity: 0.28;
  }

  .surface-grid,
  .evidence-ticks {
    grid-template-columns: 1fr;
  }

  .panel-wide {
    grid-column: auto;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero-actions,
  .cookie-banner,
  .cookie-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner {
    left: 50%;
    right: auto;
    bottom: 12px;
    width: min(calc(100% - 24px), 520px);
    gap: 10px;
    padding: 12px;
    transform: translateX(-50%);
  }

  .cookie-banner p {
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .cookie-actions button {
    min-height: 42px;
  }

  .primary-button,
  .secondary-button,
  .demo-form button {
    width: 100%;
  }

  .cred-strip,
  .capability-grid,
  .proof-list,
  .security-grid,
  .diagnostics-panel dl,
  .compliance-field,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .cred-strip {
    width: calc(100% - 24px);
  }

  .cred-strip article + article,
  .cred-strip article:nth-child(3),
  .cred-strip article:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .content-section,
  .proof-section,
  .security-section,
  .buyer-section,
  .demo-section,
  .site-footer {
    width: calc(100% - 24px);
  }

  .diagnostics-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .capability-card {
    min-height: 240px;
  }

  .capability-card h3 {
    margin-top: 54px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

/* Homepage go-live polish */
.hero-background::before {
  background:
    linear-gradient(90deg, rgba(17, 20, 22, 0.98) 0%, rgba(17, 20, 22, 0.88) 46%, rgba(17, 20, 22, 0.58) 100%),
    #071426;
}

.hero-copy h1 {
  max-width: 540px;
  font-size: clamp(3rem, 4.7vw, 4.7rem);
}

.hero-product-showcase {
  position: absolute;
  right: max(24px, calc((100vw - 1160px) / 2));
  top: 116px;
  width: min(48vw, 650px);
  pointer-events: none;
}

.product-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 20, 22, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(17, 20, 22, 0.18);
}

.hero-shot {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
  opacity: 0.86;
}

.product-shot img {
  width: 100%;
  height: auto;
}

.product-shot figcaption {
  padding: 14px 16px 16px;
  color: var(--steel);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
}

.hero-status-panel {
  width: min(360px, 62%);
  margin: -74px 24px 0 auto;
  padding: 18px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(17, 20, 22, 0.9);
  color: var(--white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
}

.hero-status-panel strong {
  display: block;
  font-size: 1.15rem;
}

.hero-status-panel p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.product-section,
.plans-section {
  width: min(100% - 48px, 1160px);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 118px) 0;
  border-top: 1px solid var(--line);
}

.product-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 18px;
  align-items: start;
  margin-top: 34px;
}

.workflow-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.workflow-rail article {
  min-height: 150px;
  padding: 18px;
  background: var(--white);
}

.workflow-rail strong,
.plan-label {
  display: block;
  color: var(--graphite);
  font-weight: 800;
}

.workflow-rail span {
  display: block;
  margin-top: 8px;
  color: var(--steel);
  line-height: 1.5;
}

.diagnostics-ledger {
  display: grid;
  gap: 10px;
}

.diagnostics-ledger div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.diagnostics-ledger span {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 800;
}

.diagnostics-ledger strong {
  color: var(--white);
  text-align: right;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.plan-card {
  min-height: 430px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(17, 20, 22, 0.08);
}

.plan-featured {
  border-color: rgba(0, 120, 255, 0.48);
  box-shadow: 0 24px 60px rgba(17, 20, 22, 0.14);
}

.plan-card strong {
  display: block;
  margin-top: 16px;
  color: var(--graphite);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.plan-card strong span {
  color: var(--steel);
  font-size: 1rem;
}

.plan-card p {
  min-height: 76px;
  margin: 18px 0;
  color: var(--steel);
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  color: var(--ink);
  font-weight: 700;
}

.plan-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--teal);
}

.demo-form .consent-field a {
  color: #cfe4ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.optional-consent {
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 1040px) {
  .hero-product-showcase {
    right: 24px;
    width: min(68vw, 650px);
    opacity: 0.64;
  }

  .product-showcase-grid,
  .workflow-rail,
  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .hero-product-showcase {
    inset: 96px 12px auto 12px;
    width: auto;
    opacity: 0.2;
  }

  .hero-status-panel {
    display: none;
  }

  .product-section,
  .plans-section {
    width: calc(100% - 24px);
  }

  .product-showcase-grid,
  .workflow-rail,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .workflow-rail article,
  .plan-card {
    min-height: auto;
  }

  .diagnostics-ledger div {
    display: grid;
    gap: 4px;
  }

  .diagnostics-ledger strong {
    text-align: left;
  }
}

.legal-page {
  background: var(--paper);
}

.legal-header,
.legal-document,
.legal-footer {
  width: min(100% - 48px, 920px);
  margin: 0 auto;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0;
}

.legal-header img {
  width: 134px;
}

.legal-header nav,
.legal-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-header a,
.legal-footer a,
.legal-document a {
  color: var(--teal-dark);
  font-weight: 800;
}

.legal-document {
  padding: 36px 0 72px;
}

.legal-document h1 {
  margin: 0 0 22px;
  color: var(--graphite);
  font-family: Outfit, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 1;
}

.legal-document h2 {
  margin: 44px 0 12px;
  color: var(--graphite);
  font-size: 1.65rem;
  line-height: 1.2;
}

.legal-document h3 {
  margin: 28px 0 8px;
  color: var(--graphite);
}

.legal-document p,
.legal-document li {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.72;
}

.legal-document ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.legal-draft-banner {
  margin: 0 0 28px;
  padding: 14px 16px;
  border: 1px solid rgba(201, 134, 47, 0.38);
  border-radius: 8px;
  background: rgba(201, 134, 47, 0.12);
  color: var(--ink);
  font-weight: 700;
}

.legal-footer {
  padding: 24px 0 42px;
  border-top: 1px solid var(--line);
}

@media (max-width: 720px) {
  .legal-header,
  .legal-document,
  .legal-footer {
    width: calc(100% - 24px);
  }

  .legal-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* apvanta signal-a landing foundation */
:root {
  --signal-cyan: #0078ff;
  --signal-cyan-strong: #005fcc;
  --signal-cyan-soft: rgba(0, 120, 255, 0.14);
  --graphite-deep: #0d1114;
  --deep-navy: #101722;
  --porcelain-raised: #fbfaf6;
}

body {
  font-family: Outfit, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.brand-link {
  min-width: 170px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
}

.brand-logo {
  width: 128px;
  height: auto;
}

.footer-lockup .brand-mark {
  width: 34px;
  height: 34px;
}

.footer-lockup .brand-logo {
  width: 124px;
}

.nav-cta,
.primary-button,
.demo-form button,
.cookie-actions button:first-child {
  background: var(--signal-cyan-strong);
  box-shadow: 0 14px 30px rgba(0, 120, 255, 0.22);
}

.nav-cta:hover,
.primary-button:hover,
.demo-form button:hover,
.cookie-actions button:first-child:hover {
  background: var(--signal-cyan);
  box-shadow: 0 16px 34px rgba(0, 120, 255, 0.28);
}

.hero-background::before {
  background:
    linear-gradient(90deg, rgba(13, 17, 20, 0.98) 0%, rgba(13, 17, 20, 0.9) 44%, rgba(13, 17, 20, 0.52) 100%),
    var(--graphite-deep);
}

.hero-copy h1,
.section-heading h2,
.proof-copy h2,
.diagnostics-copy h2,
.buyer-section h2,
.demo-copy h2,
.legal-document h1 {
  font-family: Outfit, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 610px;
  font-size: 4.65rem;
  line-height: 0.98;
  font-weight: 800;
}

.section-heading h2,
.proof-copy h2,
.diagnostics-copy h2,
.buyer-section h2,
.demo-copy h2 {
  font-size: 3.3rem;
  line-height: 1.04;
  font-weight: 800;
}

.panel-eyebrow,
.section-kicker,
.card-index,
.plan-label,
.diagnostics-ledger span,
.diagnostics-panel dt,
.trust-evidence-grid span {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0;
}

.section-kicker,
.panel-eyebrow,
.card-index {
  color: var(--signal-cyan);
}

.card-index,
.plan-label,
.diagnostics-ledger span,
.diagnostics-panel dt,
.trust-evidence-grid span {
  font-size: 0.76rem;
  font-weight: 700;
}

.capability-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 14px;
  min-height: 318px;
}

.capability-card h3 {
  margin-top: 0;
}

.capability-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 120, 255, 0.28);
  border-radius: 8px;
  background: var(--signal-cyan-soft);
  color: var(--signal-cyan-strong);
}

.capability-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capability-card,
.security-grid article,
.proof-list article,
.buyer-grid article,
.plan-card,
.workflow-rail article,
.cred-strip,
.product-shot {
  background: var(--porcelain-raised);
}

.plan-featured {
  border-color: rgba(0, 120, 255, 0.5);
}

.plan-card li::before,
.compliance-field input,
.demo-form .consent-field input {
  accent-color: var(--signal-cyan);
}

.plan-card li::before {
  background: var(--signal-cyan);
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  outline-color: rgba(0, 120, 255, 0.62);
}

.footer-brand img.brand-logo {
  width: 124px;
}

@media (max-width: 1040px) {
  .hero-copy h1 {
    max-width: 560px;
    font-size: 3.7rem;
  }

  .section-heading h2,
  .proof-copy h2,
  .diagnostics-copy h2,
  .buyer-section h2,
  .demo-copy h2 {
    font-size: 2.65rem;
  }
}

@media (max-width: 720px) {
  .brand-link {
    min-width: auto;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .brand-logo {
    width: 112px;
  }

  .hero-background::before {
    background: linear-gradient(180deg, rgba(13, 17, 20, 0.94) 0%, rgba(13, 17, 20, 0.88) 52%, rgba(13, 17, 20, 0.98) 100%);
  }

  .hero-copy h1 {
    font-size: 2.85rem;
  }

  .hero-lede {
    font-size: 1.04rem;
  }

  .section-heading h2,
  .proof-copy h2,
  .diagnostics-copy h2,
  .buyer-section h2,
  .demo-copy h2 {
    font-size: 2.12rem;
  }
}

/* PR #390 correction pass */
.mobile-menu {
  background: rgba(251, 250, 246, 0.99);
}

.diagnostics-panel-map {
  display: grid;
  gap: 14px;
}

.diagnostics-map {
  position: relative;
  overflow: hidden;
  min-height: 292px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    #101417;
}

.diagnostics-map svg {
  width: 100%;
  height: auto;
}

.map-grid,
.map-connector {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.map-connector {
  stroke: rgba(0, 120, 255, 0.34);
  stroke-width: 2;
  stroke-dasharray: 7 8;
}

.map-land {
  fill: rgba(255, 255, 255, 0.065);
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 1.2;
}

.flagged-region {
  fill: rgba(201, 134, 47, 0.24);
  stroke: rgba(201, 134, 47, 0.72);
}

.map-dot,
.map-dot-strong {
  fill: var(--signal-cyan);
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 2;
}

.map-dot-strong {
  fill: var(--warning-amber, #c9862f);
}

.map-cluster {
  fill: rgba(201, 134, 47, 0.08);
  stroke: rgba(201, 134, 47, 0.54);
  stroke-width: 2;
}

.map-callout path {
  fill: rgba(17, 20, 22, 0.88);
  stroke: rgba(255, 255, 255, 0.16);
}

.map-callout text {
  fill: rgba(255, 255, 255, 0.72);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.map-callout text:first-of-type {
  fill: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.map-sample-label {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(17, 20, 22, 0.72);
  color: rgba(255, 255, 255, 0.62);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.map-key {
  position: absolute;
  bottom: 12px;
  left: 14px;
  right: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: rgba(255, 255, 255, 0.58);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.map-key span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.key-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--signal-cyan);
}

.key-flag {
  background: var(--warning-amber, #c9862f);
}

@media (max-width: 720px) {
  .mobile-menu {
    position: fixed;
    left: 10px;
    right: 10px;
    top: 78px;
    width: auto;
    max-height: calc(100svh - 96px);
    overflow-y: auto;
    padding: 8px;
    border-color: rgba(216, 222, 216, 0.94);
    background: rgba(251, 250, 246, 0.99);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  }

  .mobile-menu a {
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.76);
  }

  .mobile-menu a + a {
    margin-top: 6px;
  }

  body.mobile-nav-open .hero-section {
    padding-top: 418px;
  }

  body.mobile-nav-open .hero-product-showcase {
    opacity: 0.12;
  }

  .diagnostics-map {
    min-height: 236px;
  }

  .diagnostics-map svg {
    width: 760px;
    max-width: none;
    transform: translateX(-185px);
  }

  .map-key {
    position: static;
    padding: 0 14px 14px;
  }
}


/* Brand recovery raster + mockup-faithful correction */
:root {
  --graphite: #071426;
  --ink: #071426;
  --steel: #526277;
  --mist: #eef4fb;
  --paper: #f7f9fc;
  --white: #ffffff;
  --line: #d8e2ee;
  --electric-blue: #0078ff;
  --electric-blue-strong: #005fcc;
  --electric-blue-soft: #e8f3ff;
  --deep-panel: #071426;
  --deep-panel-2: #071a2a;
  --warning-amber: #e3a008;
  --risk-red: #ff4b42;
  --live-red: #ff4b42;
  --teal: var(--electric-blue);
  --teal-dark: var(--electric-blue-strong);
  --green: var(--electric-blue);
  --signal-cyan: var(--electric-blue);
  --signal-cyan-strong: var(--electric-blue-strong);
  --signal-cyan-soft: rgba(0, 120, 255, 0.12);
  --graphite-deep: var(--deep-panel);
  --deep-navy: var(--deep-panel-2);
  --porcelain-raised: #ffffff;
  --shadow: 0 20px 60px rgba(7, 20, 38, 0.1);
}

body {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  color: var(--ink);
}

.site-header {
  top: 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.brand-nav {
  min-height: 88px;
  width: min(100%, 1480px);
  padding: 0 46px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-link {
  min-width: 224px;
}

.brand-lockup-image {
  width: 232px;
  height: 60px;
  object-fit: contain;
  object-position: left center;
}

.brand-logo,
.brand-mark {
  display: none;
}

.nav-links {
  gap: 44px;
}

.nav-links a,
.login-link,
.mobile-menu a {
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 600;
}

.nav-cta,
.nav-secondary,
.primary-button,
.demo-form button,
.cookie-actions button:first-child {
  background: var(--electric-blue);
  box-shadow: 0 14px 30px rgba(0, 120, 255, 0.18);
}

.nav-cta:hover,
.nav-secondary:hover,
.primary-button:hover,
.demo-form button:hover,
.cookie-actions button:first-child:hover {
  background: #1688ff;
  box-shadow: 0 16px 34px rgba(0, 120, 255, 0.24);
}

.secondary-button {
  border-color: var(--graphite);
  background: transparent;
  color: var(--graphite);
}

.nav-secondary {
  min-height: 50px;
  min-width: 154px;
  padding: 0 22px;
  border: 1px solid var(--graphite);
  border-radius: 6px;
  background: transparent;
  color: var(--graphite);
  box-shadow: none;
  font-size: 0.98rem;
  font-weight: 800;
}

.nav-secondary:hover {
  border-color: var(--electric-blue);
  background: var(--electric-blue-soft);
  color: var(--graphite);
  box-shadow: none;
}

.secondary-button:hover {
  border-color: var(--electric-blue);
  background: var(--electric-blue-soft);
  color: var(--graphite);
}

.hero-section {
  min-height: 626px;
  align-items: center;
  padding: 154px 48px 42px;
  color: var(--graphite);
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  left: -96px;
  bottom: -110px;
  width: 560px;
  height: 360px;
  pointer-events: none;
  opacity: 0.78;
  background-image: radial-gradient(circle, rgba(0, 120, 255, 0.34) 0 1.15px, transparent 1.35px);
  background-size: 11px 11px;
  transform: rotate(-10deg) skewY(-8deg);
  mask-image: radial-gradient(ellipse at 22% 72%, black 0%, black 28%, transparent 72%);
}

.hero-background::before {
  display: none;
}

.hero-copy {
  width: min(100%, 1480px);
  padding-bottom: 28px;
}

.hero-copy h1 {
  max-width: 760px;
  color: var(--graphite);
  font-size: clamp(3.9rem, 4.1vw, 4.55rem);
  line-height: 1.03;
  font-weight: 800;
}

.hero-copy h1 > span {
  display: block;
}

.hero-copy h1::after {
  content: none;
}

.hero-dot {
  display: inline;
  color: var(--electric-blue);
}

.hero-lede {
  max-width: 540px;
  color: #22314a;
  font-size: 1.34rem;
  line-height: 1.48;
}

.section-kicker,
.panel-eyebrow,
.card-index {
  color: var(--electric-blue);
}

.hero-actions {
  gap: 24px;
}

.primary-button,
.secondary-button {
  min-height: 50px;
  min-width: 194px;
  border-radius: 6px;
  font-size: 1.05rem;
}

.hero-dashboard {
  position: absolute;
  right: max(48px, calc((100vw - 1480px) / 2));
  top: 112px;
  width: min(54vw, 860px);
  min-height: 480px;
  display: grid;
  grid-template-columns: 60px 1fr;
  overflow: hidden;
  border: 1px solid rgba(7, 20, 38, 0.16);
  border-radius: 9px;
  background: var(--deep-panel);
  color: #f8fbff;
  box-shadow: 0 28px 70px rgba(7, 20, 38, 0.24);
}

.dashboard-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 12px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: #071a2a;
}

.sidebar-brand-dot {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0 auto 8px;
  border-radius: 999px;
  background: #f8fbff;
  color: var(--deep-panel);
  font-weight: 800;
}

.sidebar-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 42px;
  border-radius: 6px;
  color: #afc1d6;
}

.sidebar-icon.active {
  background: rgba(0, 120, 255, 0.22);
  color: #4fb0ff;
  box-shadow: inset 3px 0 0 var(--electric-blue);
}

.sidebar-icon svg,
.capability-icon svg,
.workflow-rail svg,
.security-grid svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sidebar-icon svg {
  width: 20px;
  height: 20px;
}

.dashboard-main {
  min-width: 0;
}

.dashboard-topbar {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #b7c7d9;
  font-size: 0.78rem;
}

.dashboard-topbar strong {
  color: #fff;
}

.dashboard-topbar em {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  color: #fff;
  font-style: normal;
  font-family: "JetBrains Mono", ui-monospace, monospace;
}

.dashboard-topbar em i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--risk-red);
}

.topbar-icons {
  display: flex;
  gap: 12px;
}

.topbar-icons span {
  width: 15px;
  height: 15px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 3px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  gap: 10px;
  padding: 12px;
}

.dash-card {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
}

.ingest-card {
  min-height: 228px;
}

.dash-card-head,
.metric-row,
.viewer-card dl div,
.replay-card p,
.diagnostics-card p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.dash-card-head strong,
.dash-card > strong {
  color: #fff;
  font-size: 0.95rem;
}

.dash-card-head span {
  color: #4fb0ff;
  font-size: 0.75rem;
}

.metric-row {
  margin-top: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.metric-row div {
  flex: 1;
}

.metric-row b {
  display: block;
  color: #fff;
  font-size: 1.12rem;
}

.metric-row span,
.viewer-card dt,
.replay-card p,
.diagnostics-card p {
  color: #a9bad0;
  font-size: 0.75rem;
}

.latency-line {
  width: 100%;
  height: 116px;
  margin-top: 4px;
}

.latency-line path,
.latency-line circle {
  fill: none;
  stroke: var(--electric-blue);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.latency-line circle {
  fill: var(--electric-blue);
}

.viewer-card {
  min-height: 228px;
}

.viewer-arc {
  width: 132px;
  height: 74px;
  margin: 20px auto 16px;
  display: grid;
  place-items: center;
  border-top: 10px solid var(--electric-blue);
  border-left: 10px solid var(--electric-blue);
  border-right: 10px solid var(--electric-blue);
  border-radius: 132px 132px 0 0;
}

.viewer-arc span {
  margin-top: 16px;
  color: #fff;
  font-size: 1.36rem;
  font-weight: 800;
}

.viewer-arc small {
  color: #dce8f5;
  font-size: 0.7rem;
}

.viewer-card dl {
  display: grid;
  gap: 7px;
  margin: 0;
}

.viewer-card dd {
  margin: 0;
  color: #fff;
  font-weight: 700;
}

.program-card,
.replay-card,
.diagnostics-card {
  min-height: 154px;
}

.program-card {
  display: grid;
  gap: 10px;
}

.program-card em {
  color: var(--risk-red);
  font-style: normal;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.7rem;
}

.stage-shot {
  min-height: 112px;
  display: grid;
  align-items: center;
  padding: 18px 24px;
  background:
    linear-gradient(90deg, rgba(0, 120, 255, 0.48), transparent 56%),
    repeating-linear-gradient(90deg, rgba(0, 120, 255, 0.16) 0 3px, transparent 3px 16px),
    #051123;
}

.stage-shot span {
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
}

.replay-card p,
.diagnostics-card p {
  margin: 10px 0 0;
  padding-top: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.replay-card span,
.diagnostics-card span {
  color: #d9e8f7;
}

.cred-strip {
  margin-top: 0;
  box-shadow: none;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  width: 100%;
  max-width: none;
  padding: 0 calc((100% - 1480px) / 2);
}

.cred-strip article {
  min-height: 176px;
  padding: 36px 44px;
}

.content-section,
.proof-section,
.diagnostics-grid,
.security-section,
.buyer-section,
.demo-section,
.site-footer,
.product-section,
.plans-section {
  width: min(100% - 96px, 1480px);
}

.section-heading h2,
.proof-copy h2,
.diagnostics-copy h2,
.buyer-section h2,
.demo-copy h2 {
  color: var(--graphite);
  font-size: clamp(2.4rem, 3.4vw, 4rem);
}

.capability-icon {
  border-color: rgba(7, 20, 38, 0.12);
  background: #f1f5fa;
  color: var(--graphite);
}

.workflow-rail {
  grid-template-columns: repeat(5, 1fr);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background: transparent;
}

.workflow-rail article {
  min-height: 166px;
  padding: 24px 28px;
  background: transparent;
}

.workflow-rail article + article {
  border-left: 1px solid var(--line);
}

.workflow-rail svg {
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  color: var(--graphite);
}

.diagnostics-section {
  background: #ffffff;
}

.diagnostics-grid {
  grid-template-columns: 0.26fr 0.74fr;
  align-items: start;
}

.looking-glass-product {
  overflow: hidden;
  border: 1px solid rgba(7, 20, 38, 0.16);
  border-radius: 8px;
  background: var(--deep-panel);
  color: #f8fbff;
  box-shadow: 0 28px 70px rgba(7, 20, 38, 0.2);
}

.lg-toolbar {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lg-toolbar strong,
.footer-wordmark {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0;
}

.lg-toolbar span {
  color: #d9e8f7;
  font-size: 0.86rem;
}

.lg-controls {
  margin-left: auto;
  display: flex;
  gap: 10px;
}

.lg-controls span {
  min-height: 30px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  color: #b7c7d9;
  font-size: 0.72rem;
}

.lg-body {
  display: grid;
  grid-template-columns: 0.58fr 0.42fr;
  gap: 0;
}

.lg-table {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.lg-row {
  min-height: 58px;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.8fr 0.82fr;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #d8e6f5;
  font-size: 0.8rem;
}

.lg-head {
  min-height: 40px;
  color: #8da4bd;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.lg-row strong {
  color: #d8e6f5;
  font-weight: 700;
}

.lg-row .is-warning {
  color: var(--warning-amber);
}

.lg-row .is-risk {
  color: #ff655b;
}

.lg-map {
  min-height: 264px;
  display: grid;
  align-content: space-between;
  padding: 16px;
}

.lg-map svg {
  width: 100%;
  height: auto;
}

.viewer-dot {
  fill: var(--electric-blue);
}

.viewer-ring {
  fill: rgba(0, 120, 255, 0.1);
  stroke: rgba(0, 120, 255, 0.38);
  stroke-width: 2;
}

.viewer-dot.warning {
  fill: var(--warning-amber);
}

.viewer-ring.warning {
  fill: rgba(227, 160, 8, 0.1);
  stroke: rgba(227, 160, 8, 0.44);
}

.viewer-dot.risk {
  fill: var(--risk-red);
}

.viewer-ring.risk {
  fill: rgba(255, 75, 66, 0.12);
  stroke: rgba(255, 75, 66, 0.45);
}

.lg-map p,
.lg-sample-note {
  margin: 10px 0 0;
  color: #d8e6f5;
  font-size: 0.82rem;
  line-height: 1.35;
}

.lg-sample-note {
  padding: 0 16px 16px;
  color: #8da4bd;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.security-grid article {
  display: grid;
  align-content: start;
  gap: 18px;
}

.security-grid svg {
  width: 46px;
  height: 46px;
  color: var(--graphite);
}

.security-grid h3 {
  margin: 0;
}

.trust-panel,
.demo-section {
  background: var(--deep-panel);
}

.plan-featured {
  border-color: var(--electric-blue);
  box-shadow: 0 24px 60px rgba(7, 20, 38, 0.14);
}

.plan-card li::before {
  background: var(--electric-blue);
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  outline-color: rgba(0, 120, 255, 0.62);
}

.site-footer {
  width: 100%;
  max-width: none;
  padding: 24px max(48px, calc((100% - 1480px) / 2)) 42px;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--deep-panel);
  border-top: 0;
  color: #f8fbff;
}

.footer-wordmark {
  display: block;
  color: #f8fbff;
  font-size: 2.2rem;
}

.footer-brand p,
.copyright,
.footer-links a {
  color: #b7c7d9;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 9px 42px;
}

.footer-links a:hover {
  color: #f8fbff;
}

.legal-header img {
  width: 232px;
  height: 60px;
  object-fit: contain;
  object-position: left center;
}

.legal-header a,
.legal-footer a,
.legal-document a {
  color: var(--electric-blue-strong);
}

.mobile-menu-button {
  border-color: var(--line);
  background: #fff;
  color: var(--graphite);
}

.mobile-menu-button svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1040px) {
  .brand-nav {
    padding: 0 24px;
  }

  .hero-section {
    min-height: 720px;
    align-items: end;
  }

  .hero-dashboard {
    right: 24px;
    width: min(80vw, 780px);
    opacity: 0.42;
  }

  .hero-copy h1 {
    max-width: 620px;
    font-size: 4rem;
  }

  .workflow-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-rail article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .lg-body {
    grid-template-columns: 1fr;
  }

  .lg-table {
    border-right: 0;
  }

  .footer-links {
    grid-template-columns: repeat(2, max-content);
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 0;
    padding: 0;
  }

  .brand-nav {
    min-height: 72px;
    padding: 0 14px;
  }

  .brand-lockup-image {
    width: 174px;
    height: 45px;
  }

  .hero-section {
    min-height: 760px;
    padding: 112px 16px 48px;
  }

  .hero-section::before {
    left: -152px;
    bottom: -132px;
    width: 520px;
    height: 320px;
  }

  .hero-dashboard {
    inset: 88px 10px auto 10px;
    width: auto;
    min-height: 450px;
    opacity: 0.2;
  }

  .dashboard-sidebar {
    display: none;
  }

  .hero-dashboard {
    grid-template-columns: 1fr;
  }

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

  .hero-copy h1 {
    font-size: 3.15rem;
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  body.mobile-nav-open .hero-section {
    padding-top: 400px;
  }

  .content-section,
  .proof-section,
  .diagnostics-grid,
  .security-section,
  .buyer-section,
  .demo-section,
  .product-section,
  .plans-section {
    width: calc(100% - 24px);
  }

  .cred-strip {
    width: 100%;
    padding: 0 12px;
  }

  .workflow-rail,
  .lg-row,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .workflow-rail article + article {
    border-top: 1px solid var(--line);
  }

  .lg-row {
    gap: 4px;
    align-items: start;
    padding: 12px 14px;
  }

  .lg-head {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-left: 24px;
    padding-right: 24px;
  }
}


/* Mockup 2 product anatomy and Image 1 workflow strip */
.workflow-strip {
  display: grid;
  grid-template-columns: 1.25fr repeat(5, 1fr);
  align-items: stretch;
  padding: 0 max(48px, calc((100% - 1480px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.workflow-strip article {
  min-height: 174px;
  padding: 30px 28px;
  border-left: 1px solid var(--line);
  background: #ffffff;
}

.workflow-strip article:first-child {
  border-left: 0;
}

.workflow-summary strong {
  font-size: 1.34rem;
  line-height: 1.12;
}

.workflow-strip svg {
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  color: var(--graphite);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-anatomy-section {
  display: grid;
  grid-template-columns: 0.24fr 0.76fr;
  gap: 42px;
  align-items: start;
  border-top: 0;
}

.product-anatomy-heading {
  position: sticky;
  top: 116px;
  max-width: 300px;
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.product-anatomy-heading h2 {
  font-size: clamp(2.2rem, 3vw, 3.1rem);
  text-transform: lowercase;
}

.product-anatomy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 32px;
}

.product-window {
  min-width: 0;
  color: #f8fbff;
}

.product-window-bar {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: #071426;
}

.product-window-bar strong {
  color: #fff;
  font-size: 1rem;
}

.product-window-bar span {
  color: #d8e6f5;
  font-size: 0.82rem;
}

.product-window-bar em {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 700;
}

.product-window-bar em i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--live-red, #ff4b42);
}

.product-window-body,
.viewer-body {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: #071426;
  box-shadow: 0 22px 58px rgba(7, 20, 38, 0.18);
}

.producer-body {
  display: grid;
  grid-template-columns: 48px 1fr;
}

.product-icon-rail {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 12px 7px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: #071a2a;
}

.product-icon-rail svg,
.viewer-bottom-icons svg,
.player-controls svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-icon-rail svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 6px;
  color: #b5c8de;
}

.product-icon-rail svg:first-child {
  color: #58b5ff;
  background: rgba(0, 120, 255, 0.2);
}

.producer-content {
  display: grid;
  grid-template-columns: 1.3fr 0.72fr;
  gap: 8px;
  padding: 8px;
}

.blue-stage-frame {
  min-height: 150px;
  display: grid;
  align-items: center;
  padding: 18px 24px;
  overflow: hidden;
  border-radius: 5px;
  background:
    radial-gradient(circle at 52% 18%, rgba(255, 255, 255, 0.38), transparent 6%),
    radial-gradient(circle at 42% 8%, rgba(255, 255, 255, 0.26), transparent 10%),
    linear-gradient(180deg, rgba(0, 120, 255, 0.38), rgba(0, 23, 77, 0.72)),
    repeating-linear-gradient(90deg, rgba(0, 120, 255, 0.16) 0 4px, transparent 4px 18px),
    #031229;
}

.blue-stage-frame span {
  max-width: 128px;
  color: #fff;
  font-weight: 800;
  line-height: 1.15;
}

.stream-health-list,
.producer-metric-tile,
.producer-alert-tile,
.replay-list,
.viewer-telemetry p {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.035);
}

.stream-health-list {
  display: grid;
  gap: 8px;
  padding: 12px;
}

.stream-health-list strong,
.replay-list strong {
  color: #fff;
  font-size: 0.78rem;
}

.stream-health-list p {
  display: flex;
  justify-content: space-between;
  margin: 0;
  color: #d8e6f5;
  font-size: 0.72rem;
}

.stream-health-list em,
.viewer-telemetry em {
  color: #70e3a0;
  font-style: normal;
}

.producer-metric-tile,
.producer-alert-tile {
  min-height: 104px;
  padding: 12px;
}

.producer-metric-tile span,
.producer-alert-tile span {
  color: #a9bad0;
  font-size: 0.68rem;
}

.producer-metric-tile strong,
.producer-alert-tile strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 1.35rem;
}

.producer-metric-tile svg {
  width: 100%;
  height: 42px;
  margin-top: 8px;
}

.producer-metric-tile path {
  fill: none;
  stroke: #12a2ff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.producer-alert-tile em {
  color: #70e3a0;
  font-style: normal;
  font-size: 0.8rem;
}

.product-window-caption {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  color: var(--graphite);
}

.product-window-caption strong {
  font-size: 1rem;
}

.product-window-caption span {
  color: var(--steel);
  line-height: 1.45;
}

.viewer-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 172px;
  gap: 8px;
  padding: 8px;
}

.viewer-player {
  overflow: hidden;
  border-radius: 5px;
  background: #050c17;
}

.viewer-player .blue-stage-frame {
  min-height: 198px;
  border-radius: 5px 5px 0 0;
}

.player-controls {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  background: rgba(0, 0, 0, 0.72);
  color: #f8fbff;
  font-size: 0.72rem;
}

.player-controls i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--live-red, #ff4b42);
}

.player-controls div {
  flex: 1;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--electric-blue) 0 44%, rgba(255, 255, 255, 0.2) 44%);
}

.player-controls svg {
  width: 16px;
  height: 16px;
}

.replay-list {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 12px;
}

.replay-list p {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 8px;
  margin: 0;
  color: #e3edf8;
  font-size: 0.72rem;
}

.replay-list p span {
  grid-row: span 2;
  min-height: 28px;
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(0, 120, 255, 0.46), transparent),
    #031229;
}

.replay-list p em {
  color: #a9bad0;
  font-style: normal;
}

.viewer-telemetry {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.viewer-telemetry p {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 10px;
}

.viewer-telemetry span {
  color: #a9bad0;
  font-size: 0.68rem;
}

.viewer-telemetry strong {
  color: #fff;
  font-size: 0.85rem;
}

.viewer-bottom-icons {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  padding: 2px 8px 4px;
  color: #b7c7d9;
}

.viewer-bottom-icons svg {
  width: 18px;
  height: 18px;
}

.plan-card b {
  display: block;
  margin-top: 4px;
  color: var(--electric-blue);
  font-size: 1.04rem;
}

.plan-card strong {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
}

.demo-promises {
  display: grid;
  gap: 20px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.demo-promises li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.demo-promises li::before {
  content: "";
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--electric-blue-soft);
  box-shadow: inset 0 0 0 1px rgba(0, 120, 255, 0.18);
}

.demo-promises strong {
  color: #fff;
}

.demo-promises span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

@media (max-width: 1180px) {
  .workflow-strip,
  .product-anatomy-section,
  .product-anatomy-grid {
    grid-template-columns: 1fr;
  }

  .workflow-strip {
    padding: 0 24px;
  }

  .workflow-strip article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .workflow-strip article:first-child {
    border-top: 0;
  }

  .product-anatomy-heading {
    position: static;
    max-width: 760px;
    padding-right: 0;
    border-right: 0;
  }
}

@media (max-width: 720px) {
  .workflow-strip {
    padding: 0 12px;
  }

  .producer-content,
  .viewer-body,
  .viewer-telemetry {
    grid-template-columns: 1fr;
  }

  .product-icon-rail {
    display: none;
  }

  .producer-body {
    grid-template-columns: 1fr;
  }
}

/* Final mockup-fidelity pass for PR #390: pricing, demo, and mobile diagnostics. */
.plans-section {
  width: 100%;
  max-width: none;
  padding: clamp(72px, 9vw, 118px) max(48px, calc((100% - 1480px) / 2));
  background: var(--deep-panel);
  color: #f8fbff;
}

.plans-section .section-heading {
  max-width: 900px;
}

.plans-section .section-kicker,
.plans-section .plan-label,
.plans-section .plan-card b {
  color: var(--electric-blue);
}

.plans-section .section-heading h2 {
  color: #f8fbff;
}

.plans-section .section-heading p:not(.section-kicker),
.plans-section .plan-card p,
.plans-section .plan-card strong span {
  color: #b7c7d9;
}

.plans-section .plan-grid {
  width: min(100%, 1180px);
}

.plans-section .plan-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
}

.plans-section .plan-featured {
  border-color: rgba(0, 120, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(0, 120, 255, 0.6), 0 22px 60px rgba(0, 120, 255, 0.14);
}

.plans-section .plan-card strong,
.plans-section .plan-card li {
  color: #f8fbff;
}

.plans-section .plan-card li::before {
  background: var(--electric-blue);
}

.demo-section {
  width: min(100% - 96px, 1480px);
  margin: clamp(72px, 8vw, 108px) auto;
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--graphite);
  box-shadow: 0 18px 54px rgba(7, 20, 38, 0.08);
}

.demo-copy h2,
.demo-copy p,
.demo-promises strong,
.demo-form label,
.compliance-field legend {
  color: var(--graphite);
}

.demo-copy p:not(.section-kicker),
.demo-promises span,
.optional-consent,
.form-message {
  color: var(--steel);
}

.demo-promises li {
  grid-template-columns: 42px minmax(0, 1fr);
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  border-color: #cdd8e5;
  background: #ffffff;
  color: var(--graphite);
}

.demo-form input::placeholder,
.demo-form textarea::placeholder {
  color: #8da0b5;
}

.demo-form .consent-field,
.compliance-field label {
  color: var(--graphite);
}

.compliance-field {
  border-color: #d8e2ee;
}

.demo-form .consent-field a {
  color: var(--electric-blue-strong);
}

@media (max-width: 1040px) {
  .diagnostics-grid {
    grid-template-columns: 1fr;
  }

  .diagnostics-copy {
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  .plans-section,
  .demo-section {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .plans-section {
    margin: 0;
  }

  .demo-section {
    width: calc(100% - 24px);
    margin: 56px auto;
  }

  .lg-toolbar {
    flex-wrap: wrap;
    gap: 6px 14px;
    padding: 12px;
  }

  .lg-controls {
    width: 100%;
    margin-left: 0;
  }

  .lg-controls span {
    flex: 1 1 0;
    text-align: center;
  }

  .lg-body {
    grid-template-columns: 1fr;
  }

  .lg-row {
    grid-template-columns: 1fr;
  }

  .lg-map {
    min-height: 220px;
    padding: 14px;
  }

  .lg-map svg {
    min-width: 0;
  }

  .demo-promises li {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .demo-promises li::before {
    width: 34px;
    height: 34px;
  }
}

/* Mobile/readability polish after visual QA. */
.demo-promises span {
  grid-column: 2;
}

.demo-promises strong {
  align-self: center;
}

@media (max-width: 720px) {
  .hero-section {
    min-height: auto;
    align-items: start;
    padding-top: 112px;
  }

  .hero-dashboard {
    display: none;
  }

  body.mobile-nav-open .hero-section {
    padding-top: 468px;
  }
}

/* Direct fidelity pass: use approved raster product previews instead of rough replicas. */
.hero-section {
  min-height: 650px;
  padding-top: 134px;
  padding-bottom: 46px;
}

.hero-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1480px;
  margin: 0 auto;
}

.hero-copy .section-kicker {
  display: none;
}

.hero-copy h1 {
  max-width: 535px;
  font-size: clamp(4.35rem, 5.25vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.hero-lede {
  max-width: 520px;
  margin-top: 30px;
}

.hero-product-image {
  display: block;
  position: absolute;
  top: 112px;
  right: max(42px, calc((100vw - 1480px) / 2));
  width: min(56vw, 860px);
  min-height: 0;
  aspect-ratio: 860 / 470;
  overflow: visible;
  border: 0;
  border-radius: 9px;
  background: transparent;
  box-shadow: 0 26px 74px rgba(7, 20, 38, 0.24);
}

.hero-product-image img,
.product-mockup-image,
.looking-glass-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

.product-anatomy-section {
  width: min(100% - 96px, 1480px);
  padding-top: 84px;
  padding-bottom: 92px;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 38px;
}

.product-anatomy-heading {
  top: 116px;
  padding-right: 34px;
}

.product-anatomy-heading h2 {
  margin-top: 10px;
  font-size: clamp(2.5rem, 3vw, 3.45rem);
  line-height: 1.02;
}

.product-anatomy-heading p:not(.section-kicker) {
  max-width: 245px;
  font-size: 1.1rem;
  line-height: 1.55;
}

.product-anatomy-grid {
  align-items: start;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.08fr);
  gap: 32px;
}

.product-window {
  background: transparent;
  color: var(--graphite);
}

.product-window > .product-window-bar,
.product-window > .product-window-body,
.product-window > .viewer-body {
  display: none;
}

.product-mockup-image {
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(7, 20, 38, 0.17);
}

.product-window-caption {
  margin-top: 14px;
}

.product-window-caption strong {
  color: var(--graphite);
  font-size: 1.02rem;
  line-height: 1.25;
}

.product-window-caption span {
  max-width: 600px;
  color: #2d3b51;
  font-size: 1rem;
  line-height: 1.42;
}

.diagnostics-section {
  padding-top: 86px;
  padding-bottom: 94px;
}

.diagnostics-grid {
  width: min(100% - 96px, 1480px);
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.diagnostics-copy h2 {
  font-size: clamp(2.55rem, 3.3vw, 3.55rem);
  line-height: 1.02;
}

.looking-glass-image {
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: 0 22px 60px rgba(7, 20, 38, 0.16);
}

.looking-glass-image figcaption {
  margin-top: 10px;
  color: var(--steel);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.security-section .section-heading h2 {
  max-width: 720px;
}

.plans-section .section-heading h2 {
  max-width: 980px;
}

.plans-section .plan-card strong {
  line-height: 0.93;
}

.plans-section .plan-card strong span {
  display: inline;
  margin-left: 4px;
  font-size: 1rem;
}

@media (max-width: 1180px) {
  .hero-section {
    min-height: 780px;
    align-items: end;
  }

  .hero-product-image {
    top: 104px;
    right: 24px;
    width: min(82vw, 760px);
    opacity: 0.28;
  }

  .hero-copy h1 {
    max-width: 700px;
  }

  .product-anatomy-section,
  .diagnostics-grid {
    grid-template-columns: 1fr;
  }

  .product-anatomy-heading {
    position: static;
    max-width: 720px;
    padding-right: 0;
    border-right: 0;
  }

  .product-anatomy-heading p:not(.section-kicker) {
    max-width: 560px;
  }
}

@media (max-width: 720px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    min-width: 0;
  }

  .brand-nav {
    min-height: 76px;
    width: 100%;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
  }

  .brand-lockup-image {
    width: 150px;
    height: auto;
  }

  .mobile-menu-button {
    flex: 0 0 auto;
    border-color: #b9c7d8;
    background: #ffffff;
    color: var(--graphite);
    box-shadow: 0 8px 18px rgba(7, 20, 38, 0.08);
  }

  .hero-section {
    min-height: auto;
    padding: 116px 16px 58px;
    overflow: hidden;
  }

  .hero-product-image {
    display: none;
  }

  .hero-copy h1 {
    max-width: 360px;
    font-size: clamp(3.25rem, 16vw, 4.15rem);
    line-height: 0.96;
  }

  .hero-lede {
    max-width: 340px;
    margin-top: 22px;
    font-size: 1.06rem;
    line-height: 1.45;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
    width: 100%;
    max-width: 358px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  body.mobile-nav-open .hero-section {
    padding-top: 430px;
  }

  .product-anatomy-section,
  .diagnostics-grid {
    width: calc(100% - 24px);
    max-width: calc(100vw - 24px);
    padding-top: 62px;
    padding-bottom: 64px;
    overflow: hidden;
  }

  .product-anatomy-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    min-width: 0;
  }

  .content-section,
  .proof-section,
  .security-section,
  .buyer-section,
  .plans-section,
  .demo-section {
    width: 100%;
    max-width: 100vw;
    padding-left: 16px;
    padding-right: 16px;
    overflow: hidden;
  }

  .capability-grid,
  .proof-list,
  .security-grid,
  .buyer-list,
  .plan-grid,
  .form-grid {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .capability-card,
  .proof-list article,
  .security-grid article,
  .buyer-list article,
  .plan-card,
  .product-window,
  .demo-form,
  .demo-copy {
    min-width: 0;
    max-width: 100%;
  }

  .section-heading,
  .proof-copy,
  .diagnostics-copy,
  .security-heading,
  .buyer-copy {
    max-width: 100%;
  }

  .section-heading h2,
  .proof-copy h2,
  .diagnostics-copy h2,
  .security-heading h2,
  .buyer-copy h2,
  .plans-section .section-heading h2 {
    max-width: 100%;
    overflow-wrap: normal;
  }

  .capability-card p,
  .proof-list span,
  .security-grid p,
  .buyer-list span,
  .product-window-caption span,
  .plans-section .section-heading p,
  .demo-copy p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .product-mockup-image,
  .looking-glass-image img {
    max-width: 100%;
    border-radius: 7px;
  }

  .looking-glass-image {
    box-shadow: 0 18px 42px rgba(7, 20, 38, 0.15);
  }

  .looking-glass-image figcaption {
    font-size: 0.58rem;
    line-height: 1.4;
  }
}

@media (min-width: 1181px) {
  .hero-section {
    padding-right: var(--landing-gutter);
    padding-left: var(--landing-gutter);
  }

  .hero-copy {
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }

  .hero-copy h1 {
    max-width: 760px;
    font-size: clamp(3.75rem, 3.95vw, 4.4rem);
    line-height: 1.03;
    letter-spacing: -0.025em;
  }
}

/* Annotation fidelity pass: keep the approved white/blue product mockup direction. */
.hero-section {
  isolation: isolate;
  min-height: 666px;
  padding-top: 148px;
  padding-bottom: 48px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6faff 82%, #eef6ff 100%);
}

.hero-section::before {
  left: -82px;
  bottom: -72px;
  width: 640px;
  height: 405px;
  opacity: 0.92;
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(0, 120, 255, 0.36) 0 1.05px, transparent 1.25px);
  background-size: 9px 9px;
  transform: rotate(-10deg) skewY(-7deg);
  mask-image: radial-gradient(ellipse at 26% 66%, black 0%, black 34%, transparent 73%);
}

.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 124px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(232, 243, 255, 0) 0%, rgba(232, 243, 255, 0.72) 100%);
}

.hero-background {
  z-index: 1;
}

.hero-copy {
  z-index: 2;
}

.hero-dashboard.hero-product-image {
  display: block;
  top: 122px;
  right: max(48px, calc((100vw - 1480px) / 2));
  width: min(51vw, 805px);
  min-height: 0;
  aspect-ratio: 860 / 470;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: 0 24px 64px rgba(7, 20, 38, 0.2);
}

.workflow-strip {
  background: linear-gradient(180deg, #eef7ff 0%, #f7fbff 100%);
}

.workflow-strip article {
  position: relative;
  background: transparent;
}

.workflow-strip article:nth-child(n+2):nth-child(-n+5)::after,
.workflow-strip article:nth-child(n+2):nth-child(-n+5)::before {
  content: none;
  display: none;
}

.platform-section {
  display: grid;
  grid-template-columns: minmax(380px, 0.72fr) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: end;
  padding-top: 96px;
  padding-bottom: 100px;
}

.platform-section .section-heading {
  max-width: 650px;
}

.platform-section .capability-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(42px, 6vw, 90px);
  margin-top: 0;
}

.platform-section .capability-card {
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.platform-section .capability-icon {
  width: 60px;
  height: 60px;
  margin: 0 0 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--graphite);
}

.platform-section .capability-icon svg {
  width: 52px;
  height: 52px;
  stroke-width: 1.55;
}

.platform-section .card-index {
  display: none;
}

.platform-section .capability-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.platform-section .capability-card p {
  max-width: 250px;
}

.product-anatomy-heading h2 {
  text-transform: none;
}

.security-grid {
  gap: 0;
  margin-top: 42px;
}

.security-grid article {
  min-height: 0;
  padding: 0 44px;
  border: 0;
  border-left: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.security-grid article:first-child {
  border-left: 0;
  padding-left: 0;
}

.security-grid article:last-child {
  padding-right: 0;
}

.security-grid svg {
  width: 72px;
  height: 72px;
  margin: 0 auto 30px;
  color: var(--graphite);
  stroke-width: 1.45;
}

.security-grid h3 {
  margin: 0 0 12px;
  font-size: 1.12rem;
}

.trust-evidence-grid article {
  min-height: 154px;
  align-content: start;
  gap: 28px;
}

.plans-section .plan-grid {
  width: min(100%, 1040px);
  margin-right: auto;
  margin-left: auto;
  grid-template-columns: repeat(3, minmax(0, 312px));
  justify-content: center;
}

@media (max-width: 1180px) {
  .hero-dashboard.hero-product-image {
    top: 118px;
    right: 24px;
    width: min(78vw, 760px);
    opacity: 0.26;
  }

  .workflow-strip article::before,
  .workflow-strip article::after {
    display: none;
  }

  .platform-section {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .platform-section .capability-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .hero-section {
    background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  }

  .hero-dashboard.hero-product-image {
    display: none;
  }

  .hero-section::before {
    width: 460px;
    height: 280px;
    bottom: -78px;
    opacity: 0.62;
  }

  .hero-section::after {
    height: 74px;
  }

  body.mobile-nav-open .hero-section {
    padding-top: 540px;
  }

  .workflow-strip {
    background: #f6faff;
  }

  .platform-section .capability-grid,
  .security-grid,
  .plans-section .plan-grid {
    grid-template-columns: 1fr;
  }

  .platform-section .capability-card,
  .security-grid article,
  .security-grid article:first-child,
  .security-grid article:last-child {
    padding: 0;
    border-left: 0;
  }

  .security-grid {
    gap: 34px;
  }

  .security-grid svg {
    margin-right: 0;
    margin-left: 0;
  }

  .trust-evidence-grid article {
    min-height: auto;
  }
}


/* PR390 annotation patch: hero clearance, section rails, kicker rhythm, raster footer lockup. */
:root {
  --landing-gutter: max(48px, calc((100vw - 1480px) / 2));
  --landing-rail: min(100% - 96px, 1480px);
}

.platform-section,
.product-anatomy-section,
.proof-section,
.diagnostics-grid,
.security-section,
.buyer-section {
  width: var(--landing-rail);
  margin-right: auto;
  margin-left: auto;
}

.workflow-strip {
  width: 100%;
  max-width: none;
  margin: 0;
  grid-template-columns: minmax(230px, 1.08fr) repeat(5, minmax(0, 1fr));
  padding-right: var(--landing-gutter);
  padding-left: var(--landing-gutter);
}

.workflow-strip article {
  padding-right: clamp(22px, 2vw, 30px);
  padding-left: clamp(22px, 2vw, 30px);
}

.workflow-strip .workflow-summary {
  padding-left: 0;
}

.diagnostics-section {
  width: 100%;
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.section-kicker,
.proof-copy .section-kicker,
.diagnostics-copy .section-kicker,
.demo-copy .section-kicker,
.plans-section .section-kicker,
.product-anatomy-heading .section-kicker,
.workflow-summary .section-kicker,
.platform-section .section-kicker,
.security-section .section-kicker,
.buyer-section .section-kicker {
  color: var(--electric-blue);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (min-width: 1181px) {
  .hero-copy h1 {
    width: max-content;
    max-width: min(100%, 620px);
    font-size: clamp(3.75rem, 3.95vw, 4.4rem);
    line-height: 1.03;
    letter-spacing: -0.025em;
  }

  .hero-copy h1 > span {
    display: block;
  }
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 10px;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.footer-lockup-image {
  display: block;
  width: 150px;
  height: auto;
}

@media (max-width: 1180px) {
  :root {
    --landing-gutter: 24px;
    --landing-rail: min(100% - 48px, 1160px);
  }

  .workflow-strip {
    padding-right: var(--landing-gutter);
    padding-left: var(--landing-gutter);
  }
}

@media (max-width: 720px) {
  :root {
    --landing-gutter: 12px;
    --landing-rail: 100%;
  }

  .hero-copy h1 {
    width: auto;
    max-width: 360px;
  }

  .workflow-strip,
  .platform-section,
  .product-anatomy-section,
  .proof-section,
  .diagnostics-grid,
  .security-section,
  .buyer-section {
    margin-right: auto;
    margin-left: auto;
  }

  .workflow-strip {
    padding-right: var(--landing-gutter);
    padding-left: var(--landing-gutter);
  }

  .footer-logo-link {
    padding: 6px 8px;
  }

  .footer-lockup-image {
    width: 132px;
  }
}
