:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #101828;
  background: #f3f5f8;
  font-synthesis: none;
}
* { box-sizing: border-box; }
body { margin: 0; min-width: 320px; background: #f3f5f8; }
button, input { font: inherit; }
.page { min-height: 100vh; }
.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.hero {
  min-height: 360px;
  position: relative;
  isolation: isolate;
  background-image: url('/assets/login-hero.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 15%, rgba(228, 148, 36, .32), transparent 30%);
  z-index: -1;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,18,32,.97), rgba(11,18,32,.73)); z-index: -2; }
.hero-content { padding-top: 34px; color: white; }
.logo { width: 166px; max-width: 58vw; filter: brightness(0) invert(1); }
.eyebrow { display: inline-flex; margin-top: 54px; padding: 7px 11px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(255,255,255,.09); font-size: 13px; font-weight: 700; }
h1 { margin: 16px 0 10px; max-width: 700px; font-size: clamp(36px, 6vw, 62px); line-height: .98; letter-spacing: -2px; }
.hero p { max-width: 650px; margin: 0; color: rgba(255,255,255,.82); font-size: 17px; line-height: 1.6; }
.content { margin-top: -62px; position: relative; z-index: 2; padding-bottom: 48px; }
.search-card, .summary-card, .timeline-card {
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(16,24,40,.07);
  border-radius: 24px;
  box-shadow: 0 22px 65px rgba(16,24,40,.12);
}
.search-card { padding: 24px; }
.search-card label { display: block; margin-bottom: 9px; font-size: 15px; font-weight: 800; }
.search-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.search-row input { width: 100%; min-height: 52px; padding: 0 16px; border: 1px solid #d0d5dd; border-radius: 14px; outline: none; text-transform: uppercase; transition: .2s ease; }
.search-row input:focus { border-color: #bd791d; box-shadow: 0 0 0 4px rgba(189,121,29,.12); }
.search-row button { min-height: 52px; padding: 0 22px; border: 0; border-radius: 14px; background: #101828; color: white; font-weight: 800; cursor: pointer; }
.search-row button:disabled { opacity: .6; cursor: progress; }
.search-card small { display: block; margin-top: 10px; color: #667085; line-height: 1.45; }
.alert { margin-top: 16px; padding: 13px 15px; border-radius: 13px; background: #fff7e8; border: 1px solid #fedf89; color: #93370d; }
.result-grid { display: grid; grid-template-columns: .85fr 1.45fr; gap: 20px; margin-top: 20px; }
.summary-card, .timeline-card { padding: 26px; box-shadow: 0 12px 38px rgba(16,24,40,.07); }
.label { color: #667085; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.spaced { margin-top: 28px; }
.guide-value { margin-top: 6px; font-weight: 850; font-size: 19px; overflow-wrap: anywhere; }
.status { display: inline-flex; margin-top: 9px; padding: 7px 11px; border-radius: 999px; font-size: 13px; font-weight: 850; }
.status.active { background: #eef4ff; color: #3538cd; }
.status.success { background: #ecfdf3; color: #027a48; }
.status.warning { background: #fffaeb; color: #b54708; }
.status.danger { background: #fef3f2; color: #b42318; }
.description { color: #475467; line-height: 1.5; }
.metric { display: grid; gap: 4px; padding: 15px 0; border-top: 1px solid #eaecf0; }
.metric span { color: #667085; font-size: 13px; }
.metric strong { font-size: 15px; }
.timeline-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.timeline-header h2 { margin: 5px 0 0; font-size: 24px; }
.privacy-badge { white-space: nowrap; padding: 6px 9px; border-radius: 999px; background: #ecfdf3; color: #027a48; font-size: 12px; font-weight: 800; }
.timeline { list-style: none; margin: 28px 0 0; padding: 0; }
.timeline li { position: relative; display: grid; grid-template-columns: 18px 1fr; gap: 14px; padding-bottom: 24px; }
.timeline li:not(:last-child)::before { content: ""; position: absolute; left: 7px; top: 15px; bottom: -1px; width: 2px; background: #eaecf0; }
.dot { width: 16px; height: 16px; margin-top: 2px; border-radius: 50%; background: #c7801a; box-shadow: 0 0 0 4px #fff6e8; }
.timeline strong { font-size: 15px; }
.timeline p { margin: 4px 0; color: #667085; line-height: 1.45; }
.timeline small { color: #98a2b3; }
footer { display: flex; justify-content: space-between; gap: 20px; padding: 28px 2px 0; color: #667085; font-size: 13px; }
footer strong { color: #344054; }
@media (max-width: 780px) {
  .shell { width: min(100% - 28px, 1120px); }
  .hero { min-height: 395px; }
  .hero-content { padding-top: 28px; }
  .eyebrow { margin-top: 50px; }
  .search-row { grid-template-columns: 1fr; }
  .result-grid { grid-template-columns: 1fr; }
  .timeline-header { flex-direction: column; }
  footer { flex-direction: column; }
}
.hidden { display: none !important; }
