:root {
  color-scheme: light;
  --ink: #15233d;
  --muted: #68758a;
  --paper: #f7f8fc;
  --line: #dbe1ec;
  --teal: #0c958f;
  --coral: #f06f5f;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; }

.shell {
  width: min(100% - 40px, 900px);
  margin: 0 auto;
  padding: 38px 0 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(3, 5px);
  align-items: end;
  gap: 3px;
  width: 26px;
  height: 26px;
  padding: 6px 5px;
  border-radius: 8px;
  background: var(--ink);
}

.brand-mark span { border-radius: 3px; background: #fff; }
.brand-mark span:nth-child(1) { height: 7px; }
.brand-mark span:nth-child(2) { height: 12px; background: #70e0cc; }
.brand-mark span:nth-child(3) { height: 16px; background: #ffad9f; }

.hero { max-width: 720px; padding: 90px 0 52px; }
.eyebrow { margin: 0 0 10px; color: var(--teal); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
h1, h2, p { margin-top: 0; }
h1 { max-width: 680px; margin-bottom: 20px; font-size: clamp(2.25rem, 7vw, 4.4rem); line-height: 1.04; letter-spacing: 0; }
h2 { margin: 40px 0 10px; font-size: 1.2rem; line-height: 1.3; }
.lede { max-width: 650px; color: var(--muted); font-size: 1.12rem; }

.cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.card { min-height: 240px; display: flex; flex-direction: column; padding: 25px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink); text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
.card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(21, 35, 61, .1); }
.card-label { color: var(--coral); font-size: .78rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.card strong { margin: 14px 0 8px; font-size: 1.38rem; }
.card > span:not(.card-label) { color: var(--muted); }
.card b { margin-top: auto; padding-top: 28px; color: var(--teal); }
.card i { font-size: 1.15rem; font-style: normal; }

.support { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 56px; padding: 28px; border-radius: 8px; background: var(--ink); color: #fff; }
.support .eyebrow { color: #70e0cc; }
.support h2 { margin: 0; font-size: 1.55rem; }
.support a { color: #fff; font-weight: 700; }

article { max-width: 720px; padding: 64px 0 28px; }
article h1 { font-size: clamp(2.25rem, 6vw, 3.8rem); }
article h2 { scroll-margin-top: 24px; }
article p { color: #3c4960; }
article a { color: var(--teal); font-weight: 700; }

footer { display: flex; gap: 18px; margin-top: 56px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
footer a { text-decoration: none; }
footer a:hover { color: var(--teal); }

@media (max-width: 620px) {
  .shell { width: min(100% - 28px, 900px); padding-top: 24px; }
  .hero { padding: 60px 0 36px; }
  .cards { grid-template-columns: 1fr; }
  .support { align-items: flex-start; flex-direction: column; }
  .legal-page article { padding-top: 48px; }
}
