:root {
  color-scheme: light;
  --ink: #1d2b27;
  --muted: #59645e;
  --forest: #173f3a;
  --moss: #4f6f65;
  --sand: #f5f1e8;
  --paper: #fffdf8;
  --line: #d9ded7;
  --coral: #b44e3c;
  --sky: #dcecf0;
  --gem: #1769aa;
}

* { box-sizing: border-box; }
html { font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: var(--sand); color: var(--ink); }
body { margin: 0; min-height: 100vh; line-height: 1.65; }
a { color: var(--gem); text-underline-offset: 3px; }
a:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; border-radius: 4px; }
.shell { width: min(850px, calc(100% - 32px)); margin: 0 auto; }
.topbar { padding: 22px 0; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--forest); text-decoration: none; font-weight: 850; letter-spacing: -0.02em; }
.gem { width: 28px; height: 28px; transform: rotate(45deg); border-radius: 7px; background: linear-gradient(145deg, #3ba0d8, #13558f); box-shadow: 0 5px 16px rgba(19,85,143,.22); }
.hero { padding: 72px 0 32px; }
.kicker { color: var(--moss); font-size: .78rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
h1 { max-width: 720px; margin: 10px 0 14px; font-size: clamp(2.25rem, 8vw, 4.5rem); line-height: 1.03; letter-spacing: -.05em; }
.lead { max-width: 680px; color: var(--muted); font-size: 1.12rem; }
.meta { display: inline-flex; margin-top: 14px; padding: 7px 11px; border-radius: 999px; background: var(--sky); color: var(--forest); font-size: .82rem; font-weight: 750; }
main { padding-bottom: 72px; }
.card { margin-top: 18px; padding: clamp(20px, 5vw, 36px); border: 1px solid var(--line); border-radius: 26px; background: var(--paper); box-shadow: 0 18px 55px rgba(29,43,39,.06); }
h2 { margin: 30px 0 8px; color: var(--forest); font-size: 1.32rem; letter-spacing: -.02em; }
h2:first-child { margin-top: 0; }
h3 { margin: 22px 0 4px; font-size: 1rem; }
p, li { color: var(--muted); }
li + li { margin-top: 7px; }
.notice { padding: 16px 18px; border-left: 4px solid var(--coral); border-radius: 8px 16px 16px 8px; background: #f6ded8; }
.steps { counter-reset: steps; padding: 0; list-style: none; }
.steps li { position: relative; padding: 0 0 22px 52px; }
.steps li::before { counter-increment: steps; content: counter(steps); position: absolute; left: 0; top: 0; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--forest); color: white; font-weight: 850; }
.steps strong { display: block; color: var(--ink); }
.contact { display: inline-flex; padding: 12px 17px; border-radius: 14px; background: var(--forest); color: white; font-weight: 800; text-decoration: none; }
.link-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.link-card { display: flex; min-height: 128px; flex-direction: column; justify-content: space-between; gap: 18px; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: #fff; color: var(--ink); text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.link-card:hover { transform: translateY(-2px); border-color: #a9c4d2; box-shadow: 0 12px 28px rgba(29,43,39,.08); }
.link-card strong { color: var(--forest); font-size: 1.05rem; }
.link-card span { color: var(--muted); font-size: .92rem; }
footer { padding: 30px 0 46px; border-top: 1px solid var(--line); color: var(--muted); font-size: .88rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 20px; margin-bottom: 12px; }
@media (max-width: 560px) { .hero { padding-top: 48px; } .card { border-radius: 20px; } .link-grid { grid-template-columns: 1fr; } }
