/* Palette lifted from CourtTheme so the site and the app are the same product.
   No webfonts and no third-party requests: a page that argues for privacy
   should not need to phone anyone to render. */
:root {
  --ink: #0E091C;
  --raised: #180F29;
  --plum: #3D1A52;
  --coral: #FF5959;
  --coral-deep: #D62E47;
  --gold: #F0BD5C;
  --cream: #FFF5E0;
  --parchment: #E8D6B0;
  --mint: #5FE0AB;
  --measure: 44rem;
  --serif: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background:
    radial-gradient(120% 80% at 12% -10%, rgba(61, 26, 82, 0.85) 0%, transparent 58%),
    radial-gradient(100% 70% at 92% 4%, rgba(214, 46, 71, 0.30) 0%, transparent 55%),
    var(--ink);
  background-attachment: fixed;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
}

.wrap { max-width: var(--measure); margin: 0 auto; padding: 0 1.5rem; }

/* Masthead */
.masthead { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.6rem 0; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: inherit; }
.seal {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--coral-deep));
  display: grid; place-items: center;
  box-shadow: 0 6px 22px rgba(255, 89, 89, 0.38);
  flex: none;
}
.seal svg { width: 20px; height: 20px; fill: var(--cream); transform: rotate(-16deg); }
.wordmark { font-weight: 800; letter-spacing: 0.11em; font-size: 1.02rem; }
.masthead nav { display: flex; gap: 1.3rem; font-size: 0.93rem; }
.masthead nav a { color: var(--parchment); text-decoration: none; }
.masthead nav a:hover, .masthead nav a:focus-visible { color: var(--cream); text-decoration: underline; }

/* Hero */
.hero { padding: 2.5rem 0 3rem; }
.eyebrow {
  display: inline-block; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.16em;
  color: var(--mint); background: rgba(95, 224, 171, 0.11);
  padding: 0.42rem 0.8rem; border-radius: 999px; margin-bottom: 1.3rem;
}
h1 { font-family: var(--serif); font-size: clamp(2.4rem, 8vw, 3.9rem); line-height: 1.06; margin: 0 0 1.1rem; font-weight: 700; }
.lede { font-size: clamp(1.06rem, 2.6vw, 1.22rem); color: var(--parchment); margin: 0 0 2rem; max-width: 34rem; }

/* Steps */
.steps { list-style: none; counter-reset: step; padding: 0; margin: 2.5rem 0; display: grid; gap: 0.85rem; }
.steps li {
  counter-increment: step; position: relative; padding: 1.15rem 1.3rem 1.15rem 3.6rem;
  background: rgba(255, 245, 224, 0.055); border-radius: 18px;
  border: 1px solid rgba(255, 245, 224, 0.10);
}
.steps li::before {
  content: counter(step); position: absolute; left: 1.25rem; top: 1.2rem;
  width: 1.6rem; height: 1.6rem; border-radius: 50%;
  background: rgba(240, 189, 92, 0.16); color: var(--gold);
  display: grid; place-items: center; font-size: 0.8rem; font-weight: 800;
}
.steps b { display: block; font-size: 1rem; }
.steps span { color: var(--parchment); font-size: 0.95rem; }

/* Cards */
.cards { display: grid; gap: 0.85rem; margin: 2rem 0; }
@media (min-width: 42rem) { .cards { grid-template-columns: 1fr 1fr; } }
.card {
  background: rgba(255, 245, 224, 0.055); border: 1px solid rgba(255, 245, 224, 0.10);
  border-radius: 20px; padding: 1.3rem;
}
.card h3 { margin: 0 0 0.4rem; font-size: 1.02rem; font-family: var(--serif); }
.card p { margin: 0; color: var(--parchment); font-size: 0.95rem; }

.rule { border: 0; border-top: 1px solid rgba(255, 245, 224, 0.12); margin: 3rem 0; }

/* Long-form documents */
.doc h2 { font-family: var(--serif); font-size: 1.5rem; margin: 2.6rem 0 0.7rem; }
.doc h3 { font-size: 1.02rem; margin: 1.7rem 0 0.4rem; color: var(--gold); }
.doc p, .doc li { color: var(--parchment); }
.doc ul { padding-left: 1.15rem; }
.doc li { margin-bottom: 0.5rem; }
.doc strong { color: var(--cream); }
.doc a { color: var(--mint); }
.updated { font-size: 0.88rem; color: rgba(232, 214, 176, 0.72); }

.callout {
  background: rgba(95, 224, 171, 0.08); border: 1px solid rgba(95, 224, 171, 0.22);
  border-radius: 18px; padding: 1.15rem 1.3rem; margin: 1.6rem 0;
}
.callout p { margin: 0; color: var(--cream); }

table { width: 100%; border-collapse: collapse; margin: 1.2rem 0; font-size: 0.93rem; display: block; overflow-x: auto; }
th, td { text-align: left; padding: 0.7rem 0.8rem; border-bottom: 1px solid rgba(255, 245, 224, 0.12); vertical-align: top; }
th { color: var(--gold); font-size: 0.74rem; letter-spacing: 0.09em; text-transform: uppercase; white-space: nowrap; }
td { color: var(--parchment); }

footer { padding: 3rem 0 4rem; font-size: 0.88rem; color: rgba(232, 214, 176, 0.66); }
footer a { color: var(--parchment); }
footer nav { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 0.9rem; }

a:focus-visible, .brand:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: no-preference) {
  .hero { animation: rise 0.6s ease-out both; }
  @keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
}
