:root {
  --ink: #0a252a;
  --ink-deep: #06191d;
  --paper: #f4f0e4;
  --paper-bright: #fffdf5;
  --gold: #f0b74a;
  --gold-dark: #d4962e;
  --coral: #df654e;
  --sea: #337a78;
  --muted: #6c7976;
  --line: rgba(10, 37, 42, 0.16);
  --shadow: 0 28px 80px rgba(4, 24, 28, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
button, input { font: inherit; }
a { color: inherit; }
[hidden] { display: none !important; }

.grain {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

.site-header {
  width: min(1240px, calc(100% - 48px));
  height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-decoration: none;
}
.brand img { border-radius: 12px; box-shadow: 0 5px 14px rgba(15, 52, 57, .12); }
nav { display: flex; align-items: center; gap: 34px; }
nav a { font-size: 13px; font-weight: 700; text-decoration: none; }
.nav-cta { padding: 12px 18px; border: 1px solid var(--ink); border-radius: 999px; }
.nav-cta:hover { color: var(--paper-bright); background: var(--ink); }

.hero {
  width: min(1240px, calc(100% - 48px));
  min-height: 720px;
  margin: 0 auto;
  padding: 76px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .82fr);
  align-items: center;
  gap: 80px;
}
.hero-copy { padding: 12px 0 38px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--sea);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow > span { width: 28px; height: 2px; background: var(--gold-dark); }
.hero h1, .dashboard h1 {
  max-width: 700px;
  margin: 0;
  font: 400 clamp(64px, 7vw, 106px)/.88 var(--serif);
  letter-spacing: -.055em;
}
.hero h1 em, .principle-copy h2 em { color: var(--coral); font-weight: 400; }
.hero-lede {
  max-width: 590px;
  margin: 34px 0 0;
  color: #385154;
  font: 400 19px/1.65 var(--serif);
}
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.button {
  min-height: 50px;
  border: 0;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 24px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.button:hover { transform: translateY(-2px); }
.button:disabled { cursor: wait; opacity: .65; transform: none; }
.button.primary { color: var(--paper-bright); background: var(--ink); box-shadow: 0 12px 26px rgba(6, 25, 29, .18); }
.button.primary:hover { background: #113b40; box-shadow: 0 15px 32px rgba(6, 25, 29, .22); }
.button.full { width: 100%; margin-top: 8px; }
.text-link { font-size: 13px; font-weight: 800; text-underline-offset: 5px; }
.trust-row {
  margin: 40px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
}
.trust-row li { color: #5b6d6b; font-size: 11px; font-weight: 750; }
.trust-row span { color: var(--sea); margin-right: 5px; }

.claim-card {
  position: relative;
  min-height: 580px;
  padding: 27px 34px 30px;
  border: 1px solid rgba(10, 37, 42, .11);
  border-radius: 4px;
  background: rgba(255, 253, 245, .84);
  box-shadow: var(--shadow);
}
.claim-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  pointer-events: none;
  border: 1px solid rgba(10, 37, 42, .055);
}
.card-topline {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
  color: #7c8884;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .17em;
}
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 5px rgba(223, 101, 78, .1); }
.card-kicker { margin: 0 0 9px; color: var(--coral); font-size: 10px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.claim-card h2 { margin: 0; font: 400 31px/1.1 var(--serif); letter-spacing: -.025em; }
.card-intro { margin: 13px 0 24px; color: var(--muted); font-size: 12px; line-height: 1.6; }
form { position: relative; }
label { display: block; margin-bottom: 15px; }
label > span { display: block; margin: 0 0 7px; color: #4d6261; font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
input {
  width: 100%;
  height: 44px;
  padding: 0 13px;
  color: var(--ink);
  border: 1px solid #ccd1ca;
  border-radius: 4px;
  outline: none;
  background: rgba(255,255,255,.7);
  font-size: 13px;
}
input:focus { border-color: var(--sea); box-shadow: 0 0 0 3px rgba(51, 122, 120, .1); }
.field-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note { margin: 13px 0 0; color: #87918d; font-size: 10px; line-height: 1.45; text-align: center; }
.form-error { padding: 10px; border-radius: 4px; color: #a73c2c; background: #fbe6df; font-size: 11px; line-height: 1.45; text-align: center; }
.permission-hold { padding: 11px 12px; border: 1px solid rgba(212,150,46,.35); border-radius: 4px; color: #78551d; background: #fff5dc; font-size: 11px; line-height: 1.5; text-align: center; }

.verify-steps { margin: 22px 0; padding: 0; list-style: none; }
.verify-steps li { display: grid; grid-template-columns: 27px 1fr; gap: 10px; align-items: center; margin: 12px 0; }
.verify-steps li > span { width: 25px; height: 25px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--sea); font-size: 9px; font-weight: 900; }
.verify-steps p { margin: 0; color: #536563; font-size: 12px; line-height: 1.45; }
.key-box { margin: 20px 0 13px; padding: 13px; display: flex; align-items: center; gap: 8px; border: 1px dashed var(--sea); border-radius: 5px; background: #edf5ef; }
.key-box code { flex: 1; min-width: 0; overflow-wrap: anywhere; color: #1d5858; font-size: 11px; font-weight: 800; }
.key-box button, .quiet-button { border: 0; color: var(--sea); background: transparent; cursor: pointer; font-size: 10px; font-weight: 900; text-decoration: underline; text-underline-offset: 3px; }
.quiet-button { padding: 10px 0; display: block; margin: 4px auto 0; }

.method { padding: 112px max(24px, calc((100vw - 1240px) / 2)) 126px; background: var(--paper-bright); }
.section-heading { max-width: 660px; margin-bottom: 58px; }
.section-heading h2 { margin: 0; font: 400 clamp(43px, 5vw, 67px)/1 var(--serif); letter-spacing: -.045em; }
.section-heading > p:last-child { max-width: 550px; margin: 21px 0 0; color: var(--muted); font: 15px/1.6 var(--serif); }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.method-grid article { position: relative; min-height: 330px; padding: 32px 43px 10px 0; }
.method-grid article + article { padding-left: 43px; border-left: 1px solid var(--line); }
.step-number { position: absolute; top: 34px; right: 26px; color: #a3aca6; font: italic 13px var(--serif); }
.line-icon { position: relative; width: 54px; height: 58px; margin: 30px 0 24px; }
.fingerprint-icon i { position: absolute; bottom: 4px; width: 4px; border-radius: 4px; background: var(--gold-dark); }
.fingerprint-icon i:nth-child(1) { height: 20px; left: 3px; }.fingerprint-icon i:nth-child(2) { height: 42px; left: 14px; }.fingerprint-icon i:nth-child(3) { height: 52px; left: 25px; }.fingerprint-icon i:nth-child(4) { height: 35px; left: 36px; }.fingerprint-icon i:nth-child(5) { height: 17px; left: 47px; }
.search-icon { width: 43px; height: 43px; margin-top: 36px; border: 4px solid var(--gold-dark); border-radius: 50%; }
.search-icon i { position: absolute; width: 24px; height: 4px; right: -18px; bottom: -8px; border-radius: 3px; background: var(--gold-dark); transform: rotate(48deg); }
.document-icon { border: 3px solid var(--gold-dark); border-radius: 3px; }
.document-icon::before { content: ""; position: absolute; right: -3px; top: -3px; border-width: 0 17px 17px 0; border-style: solid; border-color: transparent var(--paper-bright) var(--gold-dark) transparent; }
.document-icon i { position: absolute; left: 10px; width: 28px; height: 3px; background: var(--gold-dark); }.document-icon i:nth-child(1){top:25px}.document-icon i:nth-child(2){top:34px}.document-icon i:nth-child(3){top:43px;width:18px}
.method-grid h3 { margin: 0 0 12px; font: 400 24px var(--serif); }
.method-grid p { max-width: 315px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }

.principles { padding: 100px max(24px, calc((100vw - 1240px) / 2)); display: grid; grid-template-columns: .9fr 1fr; gap: 110px; color: var(--paper-bright); background: var(--ink); }
.eyebrow.light { color: #a9c2bc; }
.principle-copy h2 { max-width: 520px; margin: 0; font: 400 clamp(38px, 4.2vw, 58px)/1.07 var(--serif); letter-spacing: -.04em; }
.principle-list article { display: grid; grid-template-columns: 42px 1fr; gap: 22px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.13); }
.principle-list article > span { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid rgba(240,183,74,.5); border-radius: 50%; color: var(--gold); font: italic 12px var(--serif); }
.principle-list h3 { margin: 2px 0 7px; font: 400 21px var(--serif); }
.principle-list p { margin: 0; color: #aebfbb; font-size: 12px; line-height: 1.65; }

.dashboard { width: min(1240px, calc(100% - 48px)); min-height: 760px; margin: 0 auto; padding: 70px 0 110px; }
.dashboard-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 45px; }
.dashboard h1 { font-size: clamp(48px, 6vw, 76px); }
.dashboard-head > div > p:last-child { color: var(--muted); font: 15px var(--serif); }
.dashboard-actions { display: flex; align-items: center; gap: 25px; }
.verified-pill { padding: 10px 14px; color: #276561; border: 1px solid rgba(39,101,97,.25); border-radius: 99px; background: rgba(72,143,123,.09); font-size: 9px; font-weight: 900; letter-spacing: .09em; }
.dashboard-actions .quiet-button { margin: 0; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-bottom: 28px; border: 1px solid var(--line); background: var(--line); }
.stat-grid article { min-height: 150px; padding: 25px 28px; background: var(--paper-bright); }
.stat-label { display: block; color: var(--muted); font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.stat-grid strong { display: block; margin: 15px 0 6px; font: 400 38px var(--serif); }
.stat-grid small { color: #83908d; font-size: 10px; }
.live-stat i, .scan-pulse i { display: inline-block; width: 8px; height: 8px; margin-right: 7px; border-radius: 50%; background: #4e9c73; box-shadow: 0 0 0 5px rgba(78,156,115,.12); }
.findings-panel, .notice-preview { padding: 30px; border: 1px solid var(--line); background: rgba(255,253,245,.68); }
.notice-preview { margin-top: 28px; }
.panel-heading { display: flex; justify-content: space-between; align-items: center; padding-bottom: 23px; border-bottom: 1px solid var(--line); }
.panel-heading h2 { margin: 0; font: 400 29px var(--serif); }
.scan-pulse { color: var(--sea); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.empty-state { max-width: 540px; margin: 65px auto 55px; text-align: center; }
.empty-state h3 { margin: 24px 0 10px; font: 400 25px var(--serif); }
.empty-state p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.radar { position: relative; width: 90px; height: 90px; margin: 0 auto; border: 1px solid rgba(51,122,120,.25); border-radius: 50%; background: repeating-radial-gradient(circle, transparent 0 14px, rgba(51,122,120,.12) 15px 16px); overflow: hidden; }
.radar::before, .radar::after { content: ""; position: absolute; background: rgba(51,122,120,.16); }.radar::before { width: 1px; height: 100%; left: 50%; }.radar::after { height: 1px; width: 100%; top: 50%; left: 0; }
.radar i { position: absolute; width: 50%; height: 50%; left: 50%; top: 0; transform-origin: bottom left; background: linear-gradient(35deg, rgba(51,122,120,.28), transparent 65%); animation: sweep 3.6s linear infinite; }
.radar b, .radar span { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--coral); }.radar b{left:63px;top:28px}.radar span{left:27px;top:57px}
@keyframes sweep { to { transform: rotate(360deg); } }
.finding { display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.finding h3 { margin: 0 0 7px; font: 400 21px var(--serif); }
.finding p { margin: 4px 0; color: var(--muted); font-size: 11px; overflow-wrap: anywhere; }
.score { color: var(--sea); font-weight: 900; }
.notice-preview pre { max-height: 560px; margin: 0; padding: 28px 8px 8px; overflow: auto; white-space: pre-wrap; color: #334b4d; font: 12px/1.7 ui-monospace, SFMono-Regular, Menlo, monospace; }

footer { min-height: 120px; padding: 35px max(24px, calc((100vw - 1240px) / 2)); display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; color: #6f7d7a; background: var(--paper-bright); font-size: 11px; }
footer > p:nth-child(2) { text-align: center; font: italic 13px var(--serif); }
.legal { text-align: right; }

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; gap: 45px; padding-top: 55px; }
  .hero-copy { padding-bottom: 0; }
  .claim-card { width: min(100%, 620px); }
  .method-grid { grid-template-columns: 1fr; }
  .method-grid article { min-height: 250px; padding-left: 0 !important; border-left: 0 !important; border-bottom: 1px solid var(--line); }
  .principles { grid-template-columns: 1fr; gap: 55px; }
  .dashboard-head { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 700px) {
  .site-header, .hero, .dashboard { width: min(100% - 30px, 1240px); }
  .site-header { height: 75px; }
  nav a:not(.nav-cta) { display: none; }
  nav { gap: 0; }
  .nav-cta { padding: 9px 13px; font-size: 11px; }
  .hero { padding-top: 48px; }
  .hero h1 { font-size: clamp(55px, 18vw, 82px); }
  .hero-lede { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .trust-row { flex-direction: column; gap: 12px; }
  .claim-card { min-height: 0; padding: 23px 21px 26px; }
  .field-pair { grid-template-columns: 1fr; gap: 0; }
  .method, .principles { padding-top: 82px; padding-bottom: 88px; }
  .stat-grid { grid-template-columns: 1fr; }
  .dashboard-actions { align-items: flex-start; flex-direction: column; gap: 8px; }
  .findings-panel, .notice-preview { padding: 22px 18px; }
  .panel-heading { align-items: flex-start; gap: 12px; }
  .scan-pulse { max-width: 100px; text-align: right; }
  .finding { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; gap: 18px; text-align: center; }
  footer .brand { justify-self: center; }
  .legal, footer > p:nth-child(2) { margin: 0; text-align: center; }
}

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

