:root {
  color-scheme: light;
  --ink: #18243a;
  --muted: #667085;
  --line: #dfe5ee;
  --brand: #0d766e;
  --brand-dark: #075e59;
  --accent: #e8f7f4;
  --danger: #b42318;
  --surface: #ffffff;
  --page: #f3f6fa;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 0%, #dff5f0 0, transparent 35%), var(--page);
}
.public-shell { width: min(1080px, calc(100% - 32px)); margin: 0 auto; }
.public-header { display: flex; align-items: center; justify-content: space-between; padding: 28px 0; }
.brand { display: inline-flex; gap: 12px; align-items: center; color: var(--ink); text-decoration: none; font-weight: 750; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; color: white; background: linear-gradient(135deg, var(--brand), #19a995); box-shadow: 0 8px 24px #0d766e35; }
.admin-link { color: var(--brand-dark); text-decoration: none; font-weight: 700; }
.hero { display: grid; grid-template-columns: 1.2fr .8fr; gap: 44px; align-items: center; min-height: calc(100vh - 140px); padding: 40px 0 100px; }
.eyebrow { margin: 0 0 14px; color: var(--brand); font-size: .8rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
h1 { margin: 0 0 18px; max-width: 720px; font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1.02; letter-spacing: -.045em; }
.lead { max-width: 650px; margin: 0; color: var(--muted); font-size: 1.12rem; line-height: 1.7; }
.verify-card { padding: 30px; border: 1px solid #ffffff; border-radius: 24px; background: #ffffffdd; box-shadow: 0 24px 70px #1b365d1a; backdrop-filter: blur(12px); }
.verify-card h2 { margin: 0 0 8px; font-size: 1.35rem; }
.verify-card p { margin: 0 0 22px; color: var(--muted); line-height: 1.5; }
label { display: block; margin-bottom: 8px; font-size: .86rem; font-weight: 750; }
input { width: 100%; min-height: 49px; padding: 0 14px; border: 1px solid var(--line); border-radius: 12px; background: white; color: var(--ink); font: inherit; text-transform: uppercase; }
input:focus { outline: 3px solid #18a89428; border-color: var(--brand); }
button { width: 100%; min-height: 49px; margin-top: 12px; border: 0; border-radius: 12px; color: white; background: var(--brand); font: inherit; font-weight: 750; cursor: pointer; }
button:hover { background: var(--brand-dark); }
.status-card { max-width: 640px; margin: 7vh auto 0; padding: 34px; text-align: center; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: 0 22px 70px #1b365d16; }
.status-icon { display: grid; place-items: center; width: 58px; height: 58px; margin: 0 auto 18px; border-radius: 18px; color: var(--brand); background: var(--accent); font-size: 1.6rem; font-weight: 800; }
.status-card h1 { margin: 0 0 12px; font-size: clamp(1.7rem, 4vw, 2.5rem); letter-spacing: -.025em; }
.status-card p { color: var(--muted); line-height: 1.6; }
.status-card.error .status-icon { color: var(--danger); background: #feeceb; }
.status-card a { display: inline-block; margin-top: 16px; color: var(--brand); font-weight: 750; }
@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; gap: 30px; align-content: center; }
  .admin-link { font-size: .9rem; }
}
