:root {
  --ink: #172033;
  --muted: #5b6472;
  --paper: #f7f3ea;
  --card: #fffaf0;
  --gold: #c99941;
  --gold-dark: #8f6421;
  --green: #1f6f5b;
  --blue: #244b7a;
  --line: rgba(23, 32, 51, 0.14);
  --shadow: 0 24px 70px rgba(23, 32, 51, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(201, 153, 65, 0.18), transparent 38rem),
    linear-gradient(180deg, #fffaf0 0%, var(--paper) 48%, #f2eadc 100%);
}
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1.2rem, 4vw, 4rem);
  background: rgba(255, 250, 240, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: .7rem; font-weight: 800; text-decoration: none; }
.brand-mark { position: relative; width: 34px; height: 34px; border-radius: 12px; background: #172033; display: grid; place-items: center; }
.brand-mark i { position: absolute; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }
.brand-mark i:nth-child(1) { left: 8px; top: 9px; }
.brand-mark i:nth-child(2) { right: 8px; top: 9px; }
.brand-mark i:nth-child(3) { bottom: 8px; left: 13px; }
nav { display: flex; gap: 1.2rem; color: var(--muted); font-weight: 650; }
nav a { text-decoration: none; }
nav a:hover { color: var(--ink); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .8rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ink), #2b3d60);
  color: white;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(23, 32, 51, 0.18);
  border: 0;
  cursor: pointer;
}
.button.secondary { background: white; color: var(--ink); border: 1px solid var(--line); box-shadow: none; }
.button.small { min-height: 38px; padding: .55rem .9rem; }

main { overflow: hidden; }
section { padding: clamp(4rem, 8vw, 7rem) clamp(1.2rem, 5vw, 5rem); }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: 84vh;
}
.eyebrow { color: var(--gold-dark); text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 900; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(3rem, 7vw, 6.6rem); line-height: .92; letter-spacing: -0.07em; margin-bottom: 1.3rem; }
h2 { font-size: clamp(2rem, 4vw, 4rem); line-height: 1; letter-spacing: -0.045em; margin-bottom: 1rem; }
h3 { font-size: 1.35rem; }
.lead { font-size: clamp(1.15rem, 2vw, 1.45rem); color: var(--muted); line-height: 1.55; max-width: 720px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 2rem 0 1rem; }
.trust-line { color: var(--muted); font-weight: 650; }

.hero-card {
  background: linear-gradient(145deg, #fff 0%, #fff7e5 100%);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 420px;
}
.window-bar { display: flex; gap: 8px; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.window-bar span { width: 12px; height: 12px; border-radius: 50%; background: #d9c7a3; }
.map-art { position: relative; min-height: 350px; }
.map-art svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-art path { fill: none; stroke: rgba(201,153,65,.75); stroke-width: 4; stroke-linecap: round; }
.node { position: absolute; z-index: 2; max-width: 42%; padding: .7rem .9rem; background: white; border: 1px solid var(--line); border-radius: 18px; font-weight: 850; font-size: .92rem; line-height: 1.2; box-shadow: 0 12px 30px rgba(23,32,51,.1); }
.root { left: 50%; top: 50%; transform: translate(-50%, -50%); background: #172033; color: white; }
.a { left: 22px; top: 40px; }
.b { right: 22px; top: 40px; }
.c { right: 40px; bottom: 40px; }

.problem, .steps, .faq { max-width: 1120px; margin: 0 auto; }
.problem p, .section-heading p, .steps p, .urgency p { color: var(--muted); font-size: 1.12rem; line-height: 1.65; }
.proof-grid, .format-columns, .price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.proof-grid div, .format-card, .price-grid article, .capture, .faq details {
  background: rgba(255,255,255,.68);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.35rem;
  box-shadow: 0 14px 36px rgba(23,32,51,.07);
}
.proof-grid b, .proof-grid span { display: block; }
.proof-grid span { color: var(--muted); margin-top: .4rem; }

.formats { background: rgba(255,255,255,.38); }
.section-heading { max-width: 900px; margin-bottom: 1.8rem; }
.format-columns { grid-template-columns: repeat(2, 1fr); }
.format-card a { display: flex; justify-content: space-between; padding: 1rem; margin: .7rem 0; border-radius: 16px; text-decoration: none; background: white; border: 1px solid var(--line); font-weight: 850; }
.format-card.live h3::after { content: "Supported now"; color: var(--green); font-size: .78rem; margin-left: .7rem; }
.format-card.roadmap h3::after { content: "Roadmap"; color: var(--blue); font-size: .78rem; margin-left: .7rem; }

.steps ol { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 1rem; counter-reset: step; }
.steps li { counter-increment: step; display: grid; grid-template-columns: 54px 1fr; gap: 1rem; align-items: start; background: white; padding: 1rem; border-radius: 20px; border: 1px solid var(--line); }
.steps li::before { content: counter(step); width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--gold-dark); color: white; font-weight: 900; }
.steps li > b { grid-column: 2; }
.steps li > span { grid-column: 2; display: block; color: var(--muted); margin-top: .2rem; }

.capture { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1fr 420px; gap: 2rem; align-items: center; }
form { display: grid; gap: .75rem; }
input, select, textarea { width: 100%; padding: .9rem 1rem; border: 1px solid var(--line); border-radius: 14px; font: inherit; background: white; }
textarea { resize: vertical; line-height: 1.45; }
.checkbox-row { display: flex; gap: .65rem; align-items: flex-start; color: var(--muted); line-height: 1.45; }
.checkbox-row input { width: auto; margin-top: .25rem; }
.support-output { white-space: pre-wrap; overflow-wrap: anywhere; background: rgba(23,32,51,.05); border: 1px solid var(--line); border-radius: 14px; padding: 1rem; color: var(--muted); line-height: 1.5; font: 0.95rem/1.5 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
small { color: var(--muted); }

.pricing { background: linear-gradient(180deg, rgba(23,32,51,.04), transparent); }
.price-grid article.featured { border: 2px solid var(--gold); transform: translateY(-10px); }
.price { font-size: 2.4rem; font-weight: 900; color: var(--ink); }
.pricing-note { color: var(--muted); text-align: center; margin-top: 1.4rem; }
.urgency { text-align: center; max-width: 900px; margin: 0 auto; }
.faq details { margin: .8rem 0; }
.faq summary { font-weight: 850; cursor: pointer; }
.faq p { color: var(--muted); margin: .8rem 0 0; }
footer { padding: 2rem clamp(1.2rem, 5vw, 5rem); border-top: 1px solid var(--line); color: var(--muted); display: flex; justify-content: space-between; gap: 2rem; }
.legal { max-width: 720px; }

@media (max-width: 900px) {
  nav { display: none; }
  .hero, .capture { grid-template-columns: 1fr; }
  .proof-grid, .format-columns, .price-grid { grid-template-columns: 1fr; }
  .price-grid article.featured { transform: none; }
  footer { flex-direction: column; }
}

.legal-page { max-width: 1120px; margin: 0 auto; }
.legal-page h1 { font-size: clamp(2.6rem, 5vw, 5.2rem); }
.legal-page h2 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); line-height: 1.16; letter-spacing: -0.025em; }
.legal-page p:last-child { margin-bottom: 0; }
.legal-card, .legal-grid article { background: rgba(255,255,255,.72); border: 1px solid var(--line); border-radius: 24px; padding: 1.35rem; box-shadow: 0 14px 36px rgba(23,32,51,.07); }
.warning-card { border-color: rgba(201,153,65,.45); background: rgba(255,250,240,.92); margin: 1.5rem 0; }
.legal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: 1.25rem; }
.legal-grid p, .legal-card p { color: var(--muted); line-height: 1.65; }
.legal-page ul, .legal-page ol { color: var(--muted); line-height: 1.65; padding-left: 1.35rem; margin: .75rem 0 0; }
.legal-page li + li { margin-top: .45rem; }
.legal-nav { display: flex; flex-wrap: wrap; gap: .65rem; margin: 1.25rem 0 1.5rem; }
.legal-nav a { border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.72); color: var(--ink); font-weight: 800; padding: .55rem .8rem; text-decoration: none; }
.legal-nav a[aria-current="page"] { background: var(--ink); color: white; }
footer .legal a { color: var(--ink); font-weight: 800; text-decoration: none; }
footer .legal a:hover { text-decoration: underline; }
@media (max-width: 900px) { .legal-grid { grid-template-columns: 1fr; } }

.checker {
  max-width: 1120px;
  margin: 0 auto;
  background: rgba(255,255,255,.42);
}
.checker-copy { max-width: 920px; }
.checker-copy p, .checker-note { color: var(--muted); font-size: 1.08rem; line-height: 1.65; }
.checker-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2rem 0 1.2rem; }
.checker-grid article {
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.35rem;
  box-shadow: 0 14px 36px rgba(23,32,51,.07);
}
.checker-grid b, .checker-grid span { display: block; }
.checker-grid span { color: var(--muted); margin-top: .5rem; line-height: 1.55; }
.checker-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.5rem 0 .8rem; }
.checker-note {
  border-left: 4px solid var(--gold);
  padding-left: 1rem;
  max-width: 900px;
}
@media (max-width: 900px) { .checker-grid { grid-template-columns: 1fr; } }


/* --- Accessibility: skip-to-content link (added 2026-06-24 shakedown) --- */
.skip-link{position:absolute;left:-9999px;top:0;z-index:1000;background:#172033;color:#fff;
  padding:.6rem 1rem;border-radius:0 0 8px 0;text-decoration:none;font-weight:600}
.skip-link:focus{left:0;outline:3px solid #9db8ff;outline-offset:2px}
