:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-strong: #edf3f6;
  --ink: #0d1520;
  --text: #182433;
  --muted: #647486;
  --line: #d7e1e9;
  --primary: #0f6b7b;
  --primary-dark: #084d59;
  --accent: #5b5bd6;
  --danger: #b42318;
  --warning: #b7791f;
  --ok: #1f7a4d;
  --shadow: 0 22px 60px rgba(25, 41, 56, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: var(--primary);
  text-decoration: none;
}

.topbar {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  color: var(--text);
  font-size: 21px;
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav form {
  margin: 0;
}

.page {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0 60px;
}

.hero-band,
.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 38px;
  align-items: center;
  padding: 44px 0 26px;
}

.hero-copy h1,
.page-head h1,
.auth-card h1 {
  margin: 0 0 16px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 1.04;
  letter-spacing: 0;
  color: var(--ink);
}

h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
}

h3 {
  margin: 12px 0 8px;
}

.lead {
  max-width: 780px;
  color: var(--muted);
  font-size: 21px;
}

.eyebrow {
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 10px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  padding: 12px 18px;
  background: var(--primary);
  color: #fff;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
  box-shadow: none;
}

.button:hover,
button:hover {
  background: var(--primary-dark);
  color: #fff;
}

.button-small {
  min-height: 36px;
  padding: 8px 12px;
}

.button-muted {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text);
}

.button-muted:hover {
  background: var(--line);
  color: var(--text);
}

.link-button {
  background: transparent;
  color: var(--primary);
  min-height: auto;
  padding: 0;
}

.link-button:hover {
  background: transparent;
  color: var(--primary-dark);
}

.hero-panel,
.panel,
.auth-card,
.score-card,
.product-preview {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-panel {
  padding: 22px;
  display: grid;
  gap: 14px;
}

.metric {
  padding: 16px;
  border-radius: 8px;
  background: var(--surface-strong);
}

.metric span,
.metric small,
small {
  display: block;
  color: var(--muted);
}

.metric strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.section-grid,
.grid-two,
.report-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.section-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.section-grid article,
.panel {
  padding: 22px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.trust-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 700;
}

.product-preview {
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.preview-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  background: #f9fbfc;
  padding: 14px 16px;
}

.preview-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #c8d4dd;
}

.preview-toolbar span:nth-child(1) {
  background: #ef767a;
}

.preview-toolbar span:nth-child(2) {
  background: #f2c14e;
}

.preview-toolbar span:nth-child(3) {
  background: #57b894;
}

.preview-toolbar strong {
  margin-left: 8px;
  color: var(--muted);
  font-size: 14px;
}

.preview-grid {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
}

.preview-score {
  display: grid;
  align-content: center;
  min-height: 180px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  padding: 18px;
}

.preview-score span,
.preview-score small {
  color: #aebdca;
}

.preview-score strong {
  display: block;
  font-size: 64px;
  line-height: 1;
}

.preview-stack {
  display: grid;
  gap: 10px;
}

.risk-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}

.risk-row span {
  display: inline-flex;
  margin-bottom: 8px;
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 800;
}

.risk-row strong {
  display: block;
  color: var(--text);
}

.risk-critical span {
  background: #fee4e2;
  color: var(--danger);
}

.risk-warning span {
  background: #fef3c7;
  color: var(--warning);
}

.risk-ok span {
  background: #dcfce7;
  color: var(--ok);
}

.signal-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  background: #fbfcfd;
}

.signal-board div {
  padding: 15px;
  border-right: 1px solid var(--line);
}

.signal-board div:last-child {
  border-right: 0;
}

.signal-board span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.signal-board strong {
  display: block;
  margin-top: 2px;
  font-size: 24px;
  color: var(--ink);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  margin: 20px 0 62px;
}

.proof-band div {
  background: #fff;
  padding: 22px;
}

.proof-band strong {
  display: block;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.1;
}

.proof-band span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.landing-section,
.workflow-section,
.audience-band,
.cta-band {
  margin-top: 58px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-grid article,
.workflow div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 30px;
  border-radius: 6px;
  background: var(--surface-strong);
  color: var(--primary);
  font-weight: 850;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.workflow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}

.audience-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 26px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 28px;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audience-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfcfd;
  padding: 10px 13px;
  font-weight: 700;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  padding: 30px;
}

.cta-band h2 {
  color: #fff;
}

.cta-band p:not(.eyebrow) {
  max-width: 780px;
  color: #b9c5d0;
}

.cta-band .eyebrow {
  color: #7bd1c4;
}

.auth-card {
  max-width: 540px;
  padding: 26px;
  margin: 30px auto;
}

.form-stack p {
  display: grid;
  gap: 6px;
  margin: 0 0 14px;
}

label {
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  font: inherit;
  background: #fff;
}

.helptext {
  color: var(--muted);
  font-size: 13px;
}

.errorlist {
  color: var(--danger);
  margin: 0;
  padding-left: 18px;
}

.fineprint,
.muted {
  color: var(--muted);
}

.page-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  margin-bottom: 22px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.list {
  display: grid;
  gap: 10px;
}

.list-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}

.list-row:hover {
  border-color: var(--primary);
}

.score-chip,
.status {
  min-width: 44px;
  min-height: 34px;
  border-radius: 999px;
  background: var(--surface-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.status-completed {
  background: #dcfce7;
  color: var(--ok);
}

.status-failed {
  background: #fee4e2;
  color: var(--danger);
}

.status-running,
.status-queued {
  background: #fef3c7;
  color: var(--warning);
}

.messages {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.message {
  border-radius: 6px;
  padding: 12px 14px;
  background: var(--surface-strong);
}

.report-summary {
  grid-template-columns: 180px minmax(0, 1fr);
  margin-bottom: 18px;
}

.score-card {
  padding: 22px;
  text-align: center;
}

.score-card strong {
  display: block;
  font-size: 54px;
  line-height: 1;
}

.finding {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
}

.finding h4 {
  margin: 16px 0 8px;
  color: var(--ink);
}

.legal-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  padding: 14px;
  margin-top: 14px;
}

.legal-box p {
  margin: 0 0 10px;
}

.legal-box p:last-child {
  margin-bottom: 0;
}

.severity {
  display: inline-flex;
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.severity-critical {
  background: #fee4e2;
  color: var(--danger);
}

.severity-warning {
  background: #fef3c7;
  color: var(--warning);
}

.severity-ok {
  background: #dcfce7;
  color: var(--ok);
}

.plain-list {
  padding-left: 18px;
}

.mono {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.panel-danger {
  border-color: #f4aaa3;
  background: #fff4f2;
}

@media (max-width: 860px) {
  .hero-band,
  .landing-hero,
  .section-grid,
  .grid-two,
  .report-summary,
  .proof-band,
  .feature-grid,
  .workflow,
  .audience-band {
    grid-template-columns: 1fr;
  }

  .topbar,
  .page-head,
  .cta-band {
    flex-direction: column;
    align-items: stretch;
  }

  .nav {
    flex-wrap: wrap;
  }

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

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

body:has(.vanta-hero) {
  background: #f3f8f5;
}

body:has(.vanta-hero) .topbar {
  width: min(1200px, calc(100% - 32px));
  padding: 22px 0;
}

body:has(.vanta-hero) .brand {
  color: #10231b;
  font-size: 20px;
}

body:has(.vanta-hero) .nav {
  gap: 22px;
}

body:has(.vanta-hero) .nav a,
body:has(.vanta-hero) .link-button {
  color: #21372e;
  font-weight: 720;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

body:has(.vanta-hero) .nav .button-small {
  background: #14362a;
  color: #fff;
  border-radius: 999px;
}

body:has(.vanta-hero) .page {
  width: min(1200px, calc(100% - 32px));
  padding-top: 16px;
}

.vanta-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  min-height: auto;
  padding: 46px 0 34px;
  text-align: center;
}

.hero-announcement {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #cfdfd6;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  padding: 7px 12px;
  color: #405249;
  font-size: 14px;
  font-weight: 760;
  box-shadow: 0 12px 34px rgba(24, 54, 41, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hero-announcement:hover {
  border-color: #a9c7b3;
  box-shadow: 0 16px 42px rgba(24, 54, 41, 0.12);
  transform: translateY(-1px);
}

.hero-announcement span {
  border-radius: 999px;
  background: #14362a;
  color: #fff;
  padding: 5px 9px;
  font-size: 12px;
}

.hero-announcement a {
  color: #14362a;
}

.vanta-hero .hero-content {
  width: min(980px, 100%);
  justify-self: center;
}

.vanta-hero .hero-kicker {
  margin: 0 0 18px;
  color: #516157;
  font-weight: 820;
}

.vanta-hero h1 {
  max-width: 1040px;
  margin: 0 auto 22px;
  color: #10231b;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.94;
  letter-spacing: 0;
}

.vanta-hero .hero-lead {
  max-width: 780px;
  margin: 0 auto;
  color: #405249;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.38;
}

.hero-url-form {
  width: min(660px, 100%);
  margin: 30px auto 0;
  text-align: left;
}

.hero-url-form label {
  display: block;
  margin: 0 0 8px 14px;
  color: #58665e;
  font-size: 13px;
}

.hero-url-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  border: 1px solid #cfdfd6;
  border-radius: 999px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 22px 70px rgba(24, 54, 41, 0.12);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hero-url-form div:focus-within {
  border-color: #8ab99a;
  box-shadow: 0 28px 80px rgba(24, 54, 41, 0.16);
  transform: translateY(-1px);
}

.hero-url-form input {
  min-height: 50px;
  border: 0;
  padding: 0 12px;
  background: transparent;
}

.hero-url-form input:focus {
  outline: 2px solid #a9c7b3;
  outline-offset: 2px;
}

.hero-url-form button,
.hero-primary {
  background: #14362a;
  color: #fff;
  border-radius: 999px;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.hero-url-form button:hover,
.hero-primary:hover {
  background: #0d281f;
  transform: translateY(-1px);
}

.vanta-hero .hero-actions {
  justify-content: center;
  margin-top: 18px;
}

.hero-secondary {
  border: 1px solid #cfdfd6;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #14362a;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.hero-secondary:hover {
  background: #fff;
  border-color: #a9c7b3;
  color: #14362a;
  transform: translateY(-1px);
}

.product-console {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  overflow: hidden;
  min-height: 470px;
  border: 1px solid #cfe0d7;
  border-radius: 14px;
  background: #fbfffc;
  box-shadow: 0 34px 100px rgba(24, 54, 41, 0.14);
  text-align: left;
  transform: translateY(var(--console-lift, 0));
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.console-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  border-right: 1px solid #d6e5dc;
  background: #10231b;
  color: #dceee4;
  padding: 24px;
}

.console-sidebar strong {
  margin-bottom: 18px;
  color: #fff;
  font-size: 18px;
}

.console-sidebar span {
  border-radius: 999px;
  padding: 10px 11px;
  color: #c5d7ce;
  font-weight: 720;
  transition: background-color 180ms ease, color 180ms ease;
}

.console-sidebar span:nth-child(2) {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.console-main {
  padding: 26px;
  background: #f8fcfa;
}

.console-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  margin-bottom: 22px;
}

.console-top span,
.console-grid article > span:not(.status-pill),
.console-evidence span {
  display: block;
  color: #647267;
  font-size: 13px;
  font-weight: 760;
}

.console-top strong {
  display: block;
  margin-top: 4px;
  color: #10231b;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.04;
}

.console-top mark {
  border-radius: 999px;
  background: #dff3e3;
  color: #15462e;
  padding: 8px 11px;
  font-weight: 820;
}

.console-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 12px;
}

.console-grid article {
  min-height: 155px;
  border: 1px solid #d6e5dc;
  border-radius: 12px;
  background: #fff;
  padding: 18px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.console-grid article:hover {
  border-color: #b8d4c4;
  box-shadow: 0 16px 42px rgba(24, 54, 41, 0.09);
  transform: translateY(-2px);
}

.console-grid article strong {
  display: block;
  margin-top: 10px;
  color: #10231b;
  font-size: 18px;
}

.console-grid article p {
  margin-bottom: 0;
  color: #647267;
}

.console-score {
  grid-row: span 2;
  display: grid;
  align-content: end;
  background: #153629;
  color: #fff;
}

.console-grid .console-score span,
.console-grid .console-score small {
  color: #b9d4c8;
}

.console-grid .console-score strong {
  color: #fff;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 0.9;
}

.status-pill {
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 850;
}

.status-critical {
  background: #fde8df;
  color: #a23b21;
}

.status-warning {
  background: #fbefc9;
  color: #816019;
}

.status-ok {
  background: #dff3e3;
  color: #175b38;
}

.console-evidence {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 12px;
  border: 1px solid #d6e5dc;
  border-radius: 12px;
  background: #d6e5dc;
}

.console-evidence span,
.console-evidence strong {
  display: grid;
  align-items: center;
  min-height: 62px;
  background: #fff;
  padding: 13px;
}

.console-evidence strong {
  color: #10231b;
  font-size: 18px;
}

.logo-cloud,
.platform-section,
.framework-band,
.customer-stage,
.numbers-band {
  margin-top: 78px;
}

.logo-cloud {
  text-align: center;
}

.logo-cloud p {
  margin: 0 0 18px;
  color: #647267;
  font-weight: 760;
}

.logo-cloud div {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.logo-cloud span {
  display: grid;
  min-height: 68px;
  place-items: center;
  border: 1px solid #cfdfd6;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: #2d4037;
  font-size: 17px;
  font-weight: 850;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.logo-cloud span:hover {
  border-color: #a9c7b3;
  background: #fff;
  box-shadow: 0 14px 36px rgba(24, 54, 41, 0.08);
  transform: translateY(-2px);
}

.section-head-center {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head-center p:not(.eyebrow) {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: #536359;
  font-size: 18px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.platform-grid article,
.stage-grid article {
  border: 1px solid #cfdfd6;
  border-radius: 12px;
  background: #fbfffc;
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.platform-grid article:hover,
.stage-grid article:hover {
  border-color: #a9c7b3;
  background: #fff;
  box-shadow: 0 18px 48px rgba(24, 54, 41, 0.1);
  transform: translateY(-3px);
}

.platform-grid article {
  min-height: 258px;
}

.platform-grid h3,
.stage-grid h3 {
  color: #10231b;
}

.platform-grid p,
.stage-grid p {
  color: #536359;
}

.framework-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 34px;
  align-items: start;
  border-radius: 14px;
  background: #10231b;
  color: #fff;
  padding: 38px;
}

.framework-band h2 {
  color: #fff;
}

.framework-band .eyebrow {
  color: #9ee1bb;
}

.framework-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.framework-list span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 11px 14px;
  color: #e6f2eb;
  font-weight: 780;
}

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

.stage-grid article {
  min-height: 250px;
  display: grid;
  align-content: space-between;
}

.stage-grid a {
  margin-top: 22px;
  color: #14362a;
  font-weight: 850;
}

.numbers-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #cfdfd6;
  border-radius: 14px;
  background: #cfdfd6;
  gap: 1px;
}

.numbers-band div {
  background: #fbfffc;
  padding: 28px;
}

.numbers-band strong {
  display: block;
  color: #10231b;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.96;
}

.numbers-band span {
  display: block;
  margin-top: 12px;
  color: #536359;
}

.vanta-cta {
  margin-top: 78px;
  border-radius: 14px;
  background: #14362a;
}

.vanta-cta .button {
  border-radius: 999px;
  background: #f3f8f5;
  color: #14362a;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.vanta-cta .button:hover {
  background: #fff;
  color: #14362a;
  transform: translateY(-1px);
}

.js-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(var(--console-lift, 0));
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }
}

@media (max-width: 980px) {
  .product-console,
  .console-grid,
  .console-evidence,
  .logo-cloud div,
  .platform-grid,
  .framework-band,
  .stage-grid,
  .numbers-band {
    grid-template-columns: 1fr;
  }

  .console-sidebar {
    display: none;
  }

  .vanta-hero h1 {
    font-size: clamp(46px, 11vw, 78px);
  }
}

@media (max-width: 640px) {
  body:has(.vanta-hero) .topbar {
    align-items: flex-start;
  }

  .vanta-hero {
    padding-top: 24px;
  }

  .hero-announcement,
  .hero-url-form div,
  .vanta-hero .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-url-form div {
    display: flex;
    border-radius: 18px;
  }

  .hero-url-form button,
  .vanta-hero .hero-actions .button {
    width: 100%;
  }

  .product-console {
    min-height: auto;
  }

  .console-main,
  .framework-band,
  .numbers-band div {
    padding: 20px;
  }
}
