@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400;14..32,500;14..32,600;14..32,700&family=JetBrains+Mono:wght@400;500;700&display=swap");

:root {
  --primary: #0b1f3a;
  --primary-hover: #152e51;
  --accent: #2563eb;
  --cyan: #00b8d9;
  --bg: #ffffff;
  --bg-subtle: #f8fafc;
  --border: #dbe5f0;
  --border-strong: #b9c7d8;
  --text: #0f172a;
  --muted: #64748b;
  --soft: #94a3b8;
  --green: #10b981;
  --yellow: #f59e0b;
  --red: #ef4444;
  --radius: 8px;
  --mono: "JetBrains Mono", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(219, 229, 240, 0.9);
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.header-inner,
.variant-switch,
main,
.site-footer {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 226px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  min-width: 0;
}

.site-nav a,
.header-action {
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--text);
}

.header-action,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.header-action {
  padding: 0 18px;
  border: 1px solid var(--border-strong);
  background: #ffffff;
}

.header-action:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
}

.variant-switch {
  position: sticky;
  top: 86px;
  z-index: 35;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px;
  overflow-x: auto;
  border: 1px solid rgba(219, 229, 240, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.07);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.variant-switch span,
.variant-switch a {
  flex: 0 0 auto;
}

.variant-switch span {
  padding: 0 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.variant-switch a {
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.variant-switch a:hover,
.variant-switch a.is-active {
  background: var(--primary);
  color: #ffffff;
}

main {
  padding: 56px 0 72px;
}

body.theme-2 {
  --magic-a: #2563eb;
  --magic-b: #7c3aed;
  --magic-c: #22d3ee;
  --magic-d: #c084fc;
  background:
    linear-gradient(115deg, rgba(37, 99, 235, 0.08), transparent 34%),
    linear-gradient(245deg, rgba(124, 58, 237, 0.1), transparent 38%),
    #ffffff;
}

body.theme-2 .site-header,
body.theme-2 .variant-switch {
  border-color: rgba(124, 58, 237, 0.18);
}

body.theme-2 .variant-switch a.is-active,
body.theme-2 .variant-switch a:hover {
  background: linear-gradient(110deg, var(--magic-a), var(--magic-b));
}

body.theme-5 .hero-section {
  position: relative;
  isolation: isolate;
}

body.theme-5 .hero-section {
  color: #ffffff;
}

body.theme-5 .hero-section::before {
  content: "";
  position: absolute;
  top: -52px;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  background: linear-gradient(135deg, #06101f 0%, #0b1f3a 58%, #123a63 100%);
}

body.theme-5 .status-line,
body.theme-5 .hero-copy > p:not(.status-line),
body.theme-5 .hero-notes {
  color: #cbd5e1;
}

body.theme-5 .btn.primary {
  background: #ffffff;
  color: var(--primary);
}

body.theme-5 .btn.primary:hover {
  background: #e0f2fe;
}

body.theme-5 .btn.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

body.theme-5 .report-preview {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: 56px;
  min-height: auto;
  padding: 48px 0 56px;
}

.hero-copy {
  max-width: 650px;
}

.status-line,
.section-kicker,
.report-toolbar span,
.api-console-head,
.matrix-label {
  font-family: var(--mono);
  letter-spacing: 0;
}

.status-line,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.status-line span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.12);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: 1;
  font-weight: 700;
}

.hero-copy > p:not(.status-line) {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

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

.btn {
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn.primary {
  background: var(--primary);
  color: #ffffff;
}

.btn.primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.btn.secondary {
  border-color: var(--border-strong);
  background: #ffffff;
  color: var(--text);
}

.btn.secondary:hover {
  border-color: var(--primary);
}

.hero-notes {
  display: grid;
  gap: 8px;
  margin: 26px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  list-style: none;
}

.hero-notes li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.hero-notes li::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--cyan);
}

.report-preview,
.report-main,
.monitor-card,
.lead-form,
.api-console {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.report-preview {
  overflow: hidden;
  background: var(--primary);
  color: #ffffff;
}

.preview-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding: 28px;
}

.preview-head h2 {
  margin-bottom: 6px;
  font-size: 25px;
}

.preview-head p {
  margin-bottom: 0;
  color: #b7c7dc;
}

.risk-score {
  min-width: 86px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  text-align: center;
}

.risk-score span {
  display: block;
  color: #fed7aa;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.source-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.source-strip span {
  padding: 14px 18px;
  color: #b7c7dc;
  font-size: 13px;
}

.source-strip span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.source-strip b {
  display: block;
  color: #ffffff;
}

.factor-list {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.factor-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.factor-row > span {
  width: 9px;
  height: 9px;
  margin-top: 6px;
  border-radius: 999px;
}

.factor-row.warning > span,
.event.mid::before {
  background: var(--yellow);
}

.factor-row.good > span,
.event.low::before {
  background: var(--green);
}

.factor-row.neutral > span {
  background: var(--cyan);
}

.factor-row strong {
  display: block;
  margin-bottom: 2px;
}

.factor-row p {
  margin-bottom: 0;
  color: #b7c7dc;
  font-size: 13px;
}

.factor-row em {
  color: #dbeafe;
  font-family: var(--mono);
  font-size: 12px;
  font-style: normal;
}

.preview-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 20px 28px 28px;
}

.preview-footer span {
  display: block;
  margin-bottom: 4px;
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.preview-footer strong {
  display: block;
  color: #ffffff;
  line-height: 1.45;
}

.preview-footer a {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--primary);
  font-size: 24px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 96px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
}

.trust-strip div {
  min-height: 112px;
  padding: 22px;
}

.trust-strip div + div {
  border-left: 1px solid var(--border);
}

.trust-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 14px;
}

.section-grid,
.api-section,
.pilot-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: start;
  padding: 88px 0;
  border-top: 1px solid var(--border);
}

.section-copy {
  position: sticky;
  top: 100px;
}

.section-copy h2,
.section-header h2,
.api-copy h2,
.pilot-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
}

.section-copy p,
.section-header p,
.api-copy p,
.pilot-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.workflow-list,
.source-catalog,
.security-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.workflow-step,
.source-catalog div,
.security-grid div {
  min-height: 184px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
}

.workflow-step span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
}

.workflow-step strong,
.source-catalog strong,
.security-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.workflow-step p,
.source-catalog span,
.security-grid span {
  margin-bottom: 0;
  color: var(--muted);
}

.section-report,
.section-security {
  padding: 88px 0;
  border-top: 1px solid var(--border);
}

.section-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.report-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
}

.report-main {
  overflow: hidden;
}

.report-toolbar,
.api-console-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  min-height: 54px;
  padding: 0 20px;
  border-bottom: 1px solid var(--border);
  background: var(--primary);
  color: #ffffff;
  font-size: 12px;
}

.report-toolbar button {
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.report-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--border);
}

.report-matrix div {
  padding: 22px;
}

.report-matrix div + div {
  border-left: 1px solid var(--border);
}

.matrix-label {
  display: block;
  margin-bottom: 12px;
  color: var(--soft);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.report-matrix strong {
  display: block;
  margin-bottom: 8px;
  font-size: 21px;
}

.report-matrix p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.evidence-table {
  display: grid;
  padding: 10px 18px 18px;
}

.evidence-table [role="row"] {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr auto;
  gap: 14px;
  align-items: center;
  min-height: 54px;
  border-bottom: 1px solid var(--border);
}

.evidence-table b {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.evidence-table span {
  color: var(--text);
  font-size: 14px;
}

.tag {
  display: inline-flex;
  justify-content: center;
  min-width: 82px;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.tag.warn {
  background: #fef3c7;
  color: #92400e;
}

.tag.mid {
  background: #ffedd5;
  color: #9a3412;
}

.tag.good {
  background: #d1fae5;
  color: #065f46;
}

.monitor-card {
  padding: 24px;
}

.monitor-card > span {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}

.monitor-card h3 {
  margin: 10px 0 22px;
  font-size: 24px;
}

.event-list {
  display: grid;
  gap: 12px;
}

.event {
  position: relative;
  padding: 14px 14px 14px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.event::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 12px;
  width: 6px;
  height: 28px;
  border-radius: 999px;
}

.event.high::before {
  background: var(--red);
}

.event b,
.event span {
  display: block;
}

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

.section-security {
  border-radius: var(--radius);
}

.api-section {
  align-items: center;
}

.api-console {
  overflow: hidden;
  background: #050b14;
  color: #dbeafe;
}

.api-console-head {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: #081629;
}

.api-console-head em {
  color: #7dd3fc;
  font-style: normal;
}

.api-console pre {
  margin: 0;
  overflow-x: auto;
  padding: 24px;
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.8;
}

.pilot-section {
  align-items: stretch;
  padding-bottom: 56px;
}

.pilot-steps {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.lead-form h3 {
  margin-bottom: 4px;
  font-size: 28px;
}

.lead-form label {
  display: grid;
  gap: 7px;
}

.lead-form label span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--text);
  padding: 0 14px;
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-note.success {
  color: #047857;
  font-weight: 700;
}

.form-note.error {
  color: #b91c1c;
  font-weight: 700;
}

.privacy-note {
  margin: -4px 0 0;
  color: var(--soft);
  font-size: 12px;
  line-height: 1.45;
}

.simple-main {
  padding-top: 48px;
}

.simple-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.78fr);
  align-items: center;
  gap: 48px;
  min-height: calc(100vh - 230px);
  padding: 34px 0 72px;
}

.simple-copy h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(46px, 6vw, 82px);
}

.simple-copy p {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

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

.simple-note {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.55;
}

.magic-border {
  border: 1px solid transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(115deg, #2563eb, #7c3aed, #22d3ee, #c084fc, #2563eb) border-box;
  background-size: 100% 100%, 280% 280%;
  animation: magic-border 9s ease-in-out infinite;
}

.simple-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 28px 72px rgba(37, 99, 235, 0.14);
}

.simple-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.08));
}

.simple-card > * {
  position: relative;
}

.launch-state {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.launch-state span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.launch-state strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(110deg, rgba(37, 99, 235, 0.12), rgba(124, 58, 237, 0.14));
  color: #4338ca;
  font-size: 13px;
}

.launch-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.launch-list li {
  display: grid;
  gap: 3px;
  padding: 14px 0;
  border-top: 1px solid rgba(185, 199, 216, 0.66);
}

.launch-list strong {
  font-size: 18px;
}

.launch-list span {
  color: var(--muted);
}

.launch-note {
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(185, 199, 216, 0.66);
  color: var(--muted);
  font-size: 14px;
}

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

.simple-feature {
  min-height: 168px;
  padding: 22px;
  border-radius: 14px;
}

.simple-feature strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.simple-feature span {
  color: var(--muted);
  font-size: 14px;
}

.simple-waitlist {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.62fr);
  gap: 40px;
  align-items: center;
  padding: 56px 0 66px;
  border-top: 1px solid var(--border);
}

.simple-waitlist h2 {
  max-width: 640px;
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.simple-waitlist p {
  max-width: 600px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.simple-form {
  box-shadow: 0 24px 64px rgba(124, 58, 237, 0.13);
}

.simple-form .btn.primary,
body.theme-2 .btn.primary.magic-cta {
  background: linear-gradient(110deg, #2563eb, #7c3aed 54%, #22d3ee);
  background-size: 220% 220%;
  animation: magic-border 8s ease-in-out infinite;
}

.simple-form .btn.primary:hover,
body.theme-2 .btn.primary.magic-cta:hover {
  background-position: 100% 50%;
}

@keyframes magic-border {
  0% {
    background-position: 0 50%, 0 50%;
  }

  50% {
    background-position: 0 50%, 100% 50%;
  }

  100% {
    background-position: 0 50%, 0 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .magic-border,
  .simple-form .btn.primary,
  body.theme-2 .btn.primary.magic-cta {
    animation: none;
  }
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
  padding: 34px 0 48px;
  border-top: 1px solid var(--border);
}

.site-footer img {
  width: 174px;
  height: auto;
}

.site-footer p {
  max-width: 420px;
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 16px;
  }

  .hero-section,
  .section-grid,
  .api-section,
  .pilot-section,
  .simple-hero,
  .simple-waitlist {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
    padding-top: 18px;
  }

  .section-copy {
    position: static;
  }

  .report-layout {
    grid-template-columns: 1fr;
  }

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

  .simple-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip div:nth-child(odd) {
    border-left: 0;
  }

  .trust-strip div:nth-child(n + 3) {
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 820px) {
  .header-inner,
  .variant-switch,
  main,
  .site-footer {
    width: min(100% - 32px, 1280px);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 12px 0;
  }

  .brand img {
    width: 186px;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .header-action {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .variant-switch {
    top: 118px;
    margin-top: 8px;
  }

  main {
    padding-top: 28px;
  }

  h1 {
    font-size: 42px;
    line-height: 1.05;
  }

  .hero-copy > p:not(.status-line),
  .simple-copy p,
  .section-copy p,
  .section-header p,
  .api-copy p,
  .pilot-copy p {
    font-size: 16px;
  }

  .hero-actions,
  .simple-actions,
  .site-footer {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .preview-head,
  .preview-footer,
  .source-strip,
  .report-matrix,
  .evidence-table [role="row"],
  .workflow-list,
  .source-catalog,
  .security-grid,
  .trust-strip,
  .simple-features {
    grid-template-columns: 1fr;
  }

  .simple-hero {
    min-height: auto;
    padding: 22px 0 44px;
  }

  .simple-card {
    padding: 22px;
  }

  .simple-waitlist {
    padding: 42px 0 52px;
  }

  .source-strip span + span,
  .trust-strip div + div,
  .report-matrix div + div {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .source-strip span + span {
    border-top-color: rgba(255, 255, 255, 0.12);
  }

  .factor-row {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .factor-row em {
    grid-column: 2;
  }

  .evidence-table [role="row"] {
    gap: 5px;
    padding: 12px 0;
  }

  .evidence-table [role="row"]:first-child {
    display: none;
  }
}

@media (max-width: 480px) {
  .brand img {
    width: 168px;
  }

  .variant-switch span {
    display: none;
  }

  .header-action {
    display: none;
  }

  h1 {
    font-size: 36px;
  }

  .section-copy h2,
  .section-header h2,
  .api-copy h2,
  .pilot-copy h2 {
    font-size: 30px;
  }

  .report-preview,
  .report-main,
  .monitor-card,
  .lead-form,
  .api-console,
  .workflow-step,
  .source-catalog div,
  .security-grid div {
    box-shadow: none;
  }
}
