@font-face { font-family: Manrope; src: url('/assets/Manrope.ttf') format('truetype'); font-display: swap; }
@font-face { font-family: Lora; src: url('/assets/Lora.ttf') format('truetype'); font-display: swap; }
:root { color-scheme: light; --paper: #fff; --ink: #232c29; --muted: #59645e; --line: #dce3dd; --green: #25563b; --pink: #f2dde2; }
* { box-sizing: border-box; letter-spacing: 0; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Manrope, sans-serif; font-size: 16px; line-height: 1.65; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 3px solid var(--green); outline-offset: 6px; }
.masthead, main, footer { width: min(100% - 48px, 960px); margin-inline: auto; }
.masthead { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); }
.masthead a { font-family: Lora, serif; font-size: 25px; font-weight: 600; }
.brand-dot { color: var(--green); }
.section-label, .eyebrow { color: var(--green); font-size: 13px; font-weight: 700; }
.intro { padding: 48px 0 40px; display: grid; grid-template-columns: 1.2fr 1fr; align-items: center; gap: 40px; }
.intro-copy { min-width: 0; }
.eyebrow { margin: 0 0 16px; }
h1, h2 { font-family: Lora, serif; font-weight: 500; }
h1 { font-size: 48px; line-height: 1.13; margin: 0 0 22px; }
.lead { font-size: 18px; margin: 0 0 12px; }
.status { color: var(--muted); font-size: 14px; max-width: 36ch; }
.welcome { display: block; width: 100%; height: auto; max-height: 340px; object-fit: contain; }
.next-steps { border-top: 1px solid var(--line); padding: 30px 0; }
h2 { margin: 0 0 22px; font-size: 25px; line-height: 1.3; }
ol { list-style: none; counter-reset: step; padding: 0; margin: 0; }
li { counter-increment: step; display: grid; grid-template-columns: 30px 1fr; column-gap: 16px; margin: 0 0 26px; }
li::before { content: counter(step, decimal-leading-zero); grid-row: span 2; color: var(--green); font-size: 14px; font-weight: 700; padding-top: 2px; }
h3 { font-size: 16px; margin: 0 0 5px; font-weight: 700; }
li p { margin: 0; color: var(--muted); max-width: 72ch; }
strong { font-weight: 700; color: var(--ink); }
.security { background: var(--pink); padding: 24px; border-left: 3px solid #a15369; }
.security h2 { font-family: Manrope, sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.security p { margin: 0; font-size: 14px; }
footer { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding: 28px 0; color: var(--muted); font-size: 12px; }
@media (max-width: 600px) {
  .masthead, main, footer { width: calc(100% - 36px); }
  .masthead { min-height: 76px; }
  .masthead a { font-size: 21px; }
  .section-label { font-size: 11px; }
  .intro { grid-template-columns: 1fr; gap: 20px; padding: 30px 0; }
  h1 { font-size: 36px; }
  .welcome { max-height: 140px; width: 100%; }
  .status { max-width: none; }
  .next-steps { padding-top: 24px; }
  .security { padding: 18px; }
}
@media (prefers-reduced-motion: no-preference) {
  main { animation: arrive 300ms ease-out both; }
  @keyframes arrive { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
}