:root {
  color-scheme: light;
  --ink: #142230;
  --muted: #5d6c78;
  --line: #d8e1e8;
  --paper: #f6f8f9;
  --white: #ffffff;
  --brand: #1a3a5c;
  --accent: #ff8c42;
  --green: #1e7a5f;
  --shadow: 0 22px 70px rgba(20, 34, 48, 0.15);
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.site-header {
  min-height: 72px;
  padding: 16px max(24px, calc((100vw - 1120px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(246, 248, 249, 0.92);
  border-bottom: 1px solid rgba(216, 225, 232, 0.8);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 760;
  color: var(--brand);
}

.brand img {
  border-radius: 8px;
}

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

nav a {
  min-height: 38px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  text-decoration: none;
  color: var(--muted);
  font-weight: 650;
  font-size: 14px;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--brand);
  background: #eaf0f4;
}

.hero {
  padding: 72px max(24px, calc((100vw - 1120px) / 2)) 58px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: 56px;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(26, 58, 92, 0.08), rgba(255, 140, 66, 0.08)),
    var(--paper);
  overflow: hidden;
}

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

.eyebrow,
.feature-kicker {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.lede {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 20px;
}

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

.button {
  min-height: 46px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 760;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button.primary {
  color: white;
  background: var(--brand);
}

.button.secondary {
  color: var(--brand);
  border-color: var(--line);
  background: white;
}

.button:hover {
  transform: translateY(-1px);
}

.phone-strip {
  min-height: 560px;
  display: grid;
  grid-template-columns: repeat(3, minmax(170px, 1fr));
  gap: 16px;
  align-items: center;
}

.phone-strip img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  border-radius: 28px;
  border: 8px solid #111a23;
  box-shadow: var(--shadow);
  background: #111a23;
}

.phone-strip img:nth-child(2) {
  transform: translateY(38px);
}

.proof-band,
.features,
.page-shell {
  padding: 64px max(24px, calc((100vw - 1120px) / 2));
}

.proof-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 48px;
  background: var(--white);
  border-block: 1px solid var(--line);
}

.proof-band p,
.features p,
.page-hero p,
.notice-panel p,
.contact-panel p,
.legal p,
.legal li,
.policy-table span {
  color: var(--muted);
}

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

.proof-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  font-weight: 700;
}

.proof-list.compact {
  gap: 8px;
}

.proof-list.compact li {
  padding: 12px 14px;
  font-size: 15px;
}

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

.features article,
.notice-panel,
.contact-panel,
.legal-section {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.page-shell {
  min-height: calc(100vh - 150px);
}

.page-hero {
  max-width: 760px;
  margin-bottom: 28px;
}

.page-hero h1 {
  font-size: clamp(38px, 6vw, 64px);
}

.verify-page {
  display: grid;
  gap: 22px;
}

.verify-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 44px;
  align-items: center;
}

.verify-hero-copy {
  max-width: 600px;
}

.verify-hero h1 {
  font-size: clamp(40px, 5.2vw, 64px);
}

.verifier-panel {
  padding: 22px;
  border: 1px solid rgba(26, 58, 92, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(251, 252, 253, 0.96)),
    white;
  box-shadow: 0 18px 50px rgba(20, 34, 48, 0.1);
}

.verifier-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.verifier-panel-header p {
  margin: 0;
}

.status-pill,
.outcome-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 820;
}

.status-pill {
  color: var(--brand);
  background: #eaf0f4;
}

.verify-dropzone {
  min-height: 250px;
  padding: 30px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px dashed #b9c7d2;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(26, 58, 92, 0.045), rgba(255, 140, 66, 0.05)),
    #fbfcfd;
}

.verify-dropzone h2 {
  margin: 16px 0 10px;
  max-width: 480px;
  font-size: clamp(25px, 3vw, 34px);
}

.verify-dropzone p {
  max-width: 500px;
  margin-bottom: 0;
  color: var(--muted);
}

.file-mark {
  width: 52px;
  height: 64px;
  position: relative;
  border: 2px solid var(--brand);
  border-radius: 8px;
  background: white;
}

.file-mark::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: -2px;
  right: -2px;
  border-left: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  border-radius: 0 8px 0 6px;
  background: #eef3f6;
}

.file-mark::after {
  content: "";
  width: 26px;
  height: 3px;
  position: absolute;
  left: 14px;
  bottom: 22px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 10px 0 rgba(26, 58, 92, 0.2);
}

.verifier-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0 0;
}

.verifier-facts div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.verifier-facts dt {
  margin-bottom: 4px;
  color: var(--brand);
  font-weight: 820;
}

.verifier-facts dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.verify-outcomes,
.verify-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.verify-outcomes article,
.verify-workflow,
.verify-notes > div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.verify-outcomes h2 {
  margin: 16px 0 10px;
  font-size: 24px;
  line-height: 1.12;
}

.verify-outcomes p,
.verify-workflow p,
.verify-steps span {
  color: var(--muted);
}

.outcome-label.verified {
  color: #126149;
  background: #e8f4ef;
}

.outcome-label.metadata {
  color: var(--brand);
  background: #eaf0f4;
}

.outcome-label.warning {
  color: #91511d;
  background: #fff1e8;
}

.verify-workflow {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: 40px;
  align-items: start;
}

.verify-workflow h2,
.verify-notes h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.verify-steps {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
  counter-reset: verify-step;
}

.verify-steps li {
  min-height: 104px;
  padding: 18px 18px 18px 70px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.verify-steps li::before {
  counter-increment: verify-step;
  content: counter(verify-step);
  width: 36px;
  height: 36px;
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--brand);
  font-weight: 820;
}

.verify-steps strong,
.verify-steps span {
  display: block;
}

.verify-steps strong {
  margin-bottom: 4px;
}

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

.privacy-page {
  gap: 22px;
}

.privacy-hero {
  max-width: none;
  margin-bottom: 2px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 32px;
  align-items: end;
}

.privacy-hero-copy {
  max-width: 800px;
}

.privacy-hero .lede {
  max-width: 720px;
  margin-bottom: 0;
}

.privacy-status {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.privacy-status h2 {
  margin: 18px 0 8px;
  font-size: 20px;
  line-height: 1.15;
}

.privacy-status p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.privacy-status a {
  color: var(--brand);
  font-weight: 760;
  text-underline-offset: 3px;
}

.policy-date {
  display: flex;
  width: fit-content;
  margin: 0;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcfd;
  color: var(--brand);
  font-size: 14px;
  font-weight: 760;
}

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

.privacy-summary article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  display: grid;
  grid-template-rows: 24px minmax(52px, auto) 1fr;
  align-items: start;
}

.privacy-summary span {
  display: inline-flex;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  font-weight: 820;
}

.privacy-summary h2 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.18;
  align-self: start;
}

.privacy-summary p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.privacy-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.legal-section {
  max-width: none;
  height: 100%;
}

.legal-section h2 {
  margin-bottom: 14px;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.08;
}

.legal-section.wide {
  grid-column: 1 / -1;
}

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

.legal-list {
  margin: 0;
  padding-left: 20px;
}

.legal-list li {
  margin: 9px 0;
}

.policy-table {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.policy-table > div {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 0.68fr);
  gap: 18px;
  padding: 16px;
}

.policy-table > div + div {
  border-top: 1px solid var(--line);
}

.policy-table strong {
  color: var(--brand);
}

.contact-strip a,
.legal-section a {
  color: var(--brand);
  font-weight: 760;
  text-underline-offset: 3px;
}

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

.big-link {
  color: var(--brand);
  font-size: clamp(26px, 5vw, 44px);
  font-weight: 820;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.legal {
  display: grid;
  gap: 18px;
}

.site-footer {
  min-height: 78px;
  padding: 22px max(24px, calc((100vw - 1120px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: white;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 16px;
}

@media (max-width: 900px) {
  .hero,
  .proof-band,
  .features,
  .privacy-summary,
  .privacy-hero,
  .privacy-content,
  .verify-hero,
  .verify-outcomes,
  .verify-workflow,
  .verify-notes {
    grid-template-columns: 1fr;
  }

  .legal-section.wide {
    grid-column: auto;
  }

  .phone-strip {
    min-height: 0;
  }

  .verify-hero-copy {
    max-width: 760px;
  }

  .verifier-panel {
    box-shadow: none;
  }

  .verify-dropzone {
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 46px;
  }

  .phone-strip {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .phone-strip img {
    min-width: 128px;
    border-width: 5px;
    border-radius: 20px;
  }

  .phone-strip img:nth-child(2) {
    transform: translateY(20px);
  }

  .privacy-page {
    padding-top: 46px;
  }

  .verify-page {
    gap: 18px;
    padding-top: 38px;
  }

  .verify-hero {
    gap: 22px;
  }

  .verify-hero h1 {
    margin-bottom: 14px;
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.02;
  }

  .verify-hero .lede {
    margin-bottom: 22px;
    font-size: 18px;
  }

  .verify-page .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .verify-page .button {
    width: 100%;
  }

  .verifier-panel {
    padding: 16px;
  }

  .verifier-panel-header,
  .verifier-facts {
    grid-template-columns: 1fr;
  }

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

  .verify-dropzone {
    min-height: 190px;
    padding: 20px 16px;
  }

  .verify-dropzone h2 {
    margin-top: 12px;
    font-size: 24px;
  }

  .verify-dropzone p,
  .verifier-facts dd,
  .verify-outcomes p,
  .verify-workflow p,
  .verify-steps span {
    font-size: 15px;
  }

  .file-mark {
    width: 44px;
    height: 54px;
  }

  .file-mark::before {
    width: 16px;
    height: 16px;
  }

  .file-mark::after {
    width: 20px;
    left: 11px;
    bottom: 17px;
  }

  .verifier-facts div,
  .verify-outcomes article,
  .verify-workflow,
  .verify-notes > div {
    padding: 18px;
  }

  .verify-outcomes h2 {
    font-size: 22px;
  }

  .verify-workflow h2,
  .verify-notes h2 {
    font-size: 26px;
  }

  .verify-steps li {
    min-height: 0;
    padding: 68px 16px 16px;
  }

  .verify-steps li::before {
    top: 16px;
    left: 16px;
  }

  .privacy-summary article {
    min-height: 0;
    grid-template-rows: auto;
    gap: 10px;
  }

  .policy-table > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
