:root {
  --ink: #07131b;
  --ink-soft: #102631;
  --paper: #f5f0e5;
  --paper-dim: #d9d4c8;
  --orange: #ff5b25;
  --orange-bright: #ff7a3d;
  --mint: #74e0bb;
  --sky: #91c9e8;
  --line: rgba(245, 240, 229, 0.16);
  --content: 1180px;
  --display: "Avenir Next Condensed", "Futura Condensed ExtraBold", "Franklin Gothic Condensed", sans-serif;
  --body: "Avenir Next", "Trebuchet MS", sans-serif;
}

* { box-sizing: border-box; }

html {
  background: var(--ink);
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--paper);
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 91, 37, 0.12), transparent 24rem),
    linear-gradient(145deg, #07131b 0%, #0a1b24 46%, #07131b 100%);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-underline-offset: 0.2em; }
a:focus-visible, summary:focus-visible { outline: 3px solid var(--mint); outline-offset: 5px; }

.site-header {
  position: relative;
  z-index: 10;
  width: min(calc(100% - 40px), var(--content));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 3px solid var(--orange);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-bright), #cc3714);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span::before {
  content: "";
  position: absolute;
  inset: -5px 13px;
  border: 2px solid var(--ink-soft);
  border-radius: 50%;
  transform: rotate(28deg);
}

.brand-mark::after { transform: rotate(-28deg); }
.brand-mark span::before { inset: 13px -5px; transform: none; }
.brand-mark.large { width: 72px; height: 72px; border-width: 5px; }

nav { display: flex; align-items: center; gap: clamp(18px, 4vw, 42px); }
nav a {
  position: relative;
  color: var(--paper-dim);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}
nav a:hover, nav a[aria-current="page"] { color: var(--paper); }
nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 3px;
  background: var(--orange);
}

main { min-height: calc(100vh - 190px); }

.hero {
  position: relative;
  width: min(calc(100% - 40px), var(--content));
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.97fr);
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  right: -17%;
  bottom: -48%;
  width: 78%;
  aspect-ratio: 1;
  border: 2px solid rgba(116, 224, 187, 0.16);
  border-radius: 50%;
}

.hero-copy { position: relative; z-index: 2; padding: 88px 0 96px; }
.eyebrow, .card-label {
  margin: 0 0 18px;
  color: var(--mint);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); line-height: 0.96; }

.hero h1, .support-hero h1, .document-intro h1, .error-page h1 {
  margin-bottom: 28px;
  font-size: clamp(4.2rem, 8.5vw, 7.4rem);
  font-weight: 950;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

h1 em { color: var(--orange); font-style: normal; }
.lede, .support-hero > p:not(.eyebrow):not(.response-note) {
  max-width: 610px;
  color: var(--paper-dim);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  min-height: 52px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--orange); }
.button-primary:hover { background: var(--orange-bright); }
.button-secondary { border-color: var(--line); color: var(--paper); background: rgba(255, 255, 255, 0.035); }

.court-art { position: relative; min-height: 550px; transform: rotate(-2deg); }
.backboard {
  position: absolute;
  top: 13%;
  right: 1%;
  width: 83%;
  aspect-ratio: 1.7;
  border: 12px solid var(--paper);
  background: linear-gradient(130deg, rgba(145, 201, 232, 0.26), rgba(255, 255, 255, 0.04));
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.36);
}
.backboard span {
  position: absolute;
  bottom: 0;
  left: 31%;
  width: 38%;
  height: 48%;
  border: 8px solid var(--paper);
}
.rim {
  position: absolute;
  z-index: 2;
  top: 48%;
  right: 13%;
  width: 48%;
  height: 54px;
  border: 12px solid var(--orange);
  border-radius: 50%;
  box-shadow: 0 12px 0 -6px rgba(0, 0, 0, 0.35);
}
.ball {
  position: absolute;
  z-index: 3;
  top: 57%;
  left: 2%;
  width: 128px;
  aspect-ratio: 1;
  border: 4px solid #9d2f13;
  border-radius: 50%;
  background: radial-gradient(circle at 33% 25%, #ff9d4c, var(--orange) 53%, #9d2f13 100%);
  box-shadow: 20px 28px 45px rgba(0, 0, 0, 0.38);
}
.ball::before, .ball::after {
  content: "";
  position: absolute;
  inset: -4px 45%;
  border: 3px solid #67200f;
  border-radius: 50%;
  transform: rotate(25deg);
}
.ball::after { transform: rotate(-65deg); }
.arc {
  position: absolute;
  top: 44%;
  left: 15%;
  width: 58%;
  height: 37%;
  border-top: 2px dashed rgba(245, 240, 229, 0.28);
  border-radius: 50%;
  transform: rotate(-19deg);
}

.trust-grid {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-grid article { min-height: 255px; padding: 38px 34px; border-right: 1px solid var(--line); }
.trust-grid article:last-child { border-right: 0; }
.number { color: var(--orange); font-family: var(--display); font-size: 0.78rem; font-weight: 900; }
.trust-grid h2 { margin: 52px 0 14px; font-size: 1.55rem; text-transform: uppercase; }
.trust-grid p { margin: 0; color: var(--paper-dim); font-size: 0.95rem; line-height: 1.55; }

.document-shell {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  padding: 90px 0 120px;
  display: grid;
  grid-template-columns: minmax(250px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(50px, 8vw, 120px);
}
.document-intro { position: sticky; top: 40px; align-self: start; }
.document-intro h1 { margin-bottom: 24px; font-size: clamp(3.4rem, 6vw, 5.6rem); }
.document-intro > p:not(.eyebrow) { color: var(--paper-dim); }
.policy-summary { padding-top: 28px; border-top: 1px solid var(--line); }

.legal-document section { padding: 0 0 42px; margin: 0 0 42px; border-bottom: 1px solid var(--line); }
.legal-document section:last-child { border-bottom: 0; }
.legal-document h2 { margin-bottom: 24px; color: var(--paper); font-size: 1.8rem; text-transform: uppercase; }
.legal-document h3 { margin: 30px 0 10px; color: var(--mint); font-size: 1.08rem; letter-spacing: 0.02em; }
.legal-document p, .legal-document li { color: var(--paper-dim); }
.legal-document a { color: var(--mint); }
.legal-document li + li { margin-top: 9px; }

.support-shell {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  padding: 90px 0 120px;
  display: grid;
  grid-template-columns: minmax(300px, 0.4fr) minmax(0, 0.6fr);
  gap: clamp(50px, 8vw, 110px);
}
.support-hero { position: sticky; top: 38px; align-self: start; }
.support-hero h1 { font-size: clamp(3.8rem, 7vw, 6.4rem); }
.support-hero .button { margin-top: 18px; }
.response-note { margin: 16px 0 0; color: var(--paper-dim); font-size: 0.82rem; }

.support-card { padding: 38px; border: 1px solid var(--line); background: rgba(255,255,255,0.035); }
.priority-card { border-top: 6px solid var(--orange); }
.support-card h2 { font-size: 2rem; text-transform: uppercase; }
.support-card p, .check-list { color: var(--paper-dim); }
.check-list { padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 29px; margin: 12px 0; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--mint); font-weight: 900; }

.faq-list { margin-top: 28px; border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary {
  position: relative;
  padding: 24px 44px 24px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.16rem;
  font-weight: 900;
  list-style: none;
  text-transform: uppercase;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 5px; color: var(--orange); font-size: 1.6rem; }
details[open] summary::after { content: "−"; }
details p { padding: 0 42px 22px 0; color: var(--paper-dim); }
details a { color: var(--mint); }

.contact-strip { margin-top: 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.contact-strip div { padding: 24px; background: var(--ink-soft); }
.contact-strip span { display: block; margin-bottom: 5px; color: var(--paper-dim); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-strip a { color: var(--mint); font-size: 0.92rem; overflow-wrap: anywhere; }

.error-page {
  min-height: 100vh;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.error-page .brand-mark { margin-bottom: 34px; }
.error-page h1 { margin-bottom: 16px; font-size: clamp(3.5rem, 8vw, 6.5rem); }
.error-page > p:not(.eyebrow) { color: var(--paper-dim); }
.error-page .button { margin-top: 20px; }

footer {
  width: min(calc(100% - 40px), var(--content));
  min-height: 98px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--paper-dim);
  font-size: 0.78rem;
}
footer p { margin: 0; }
footer div { display: flex; gap: 24px; }

@media (max-width: 860px) {
  .site-header { min-height: 82px; }
  .hero, .document-shell, .support-shell { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-copy { padding-bottom: 20px; }
  .court-art { min-height: 430px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-grid article:last-child { border-bottom: 0; }
  .trust-grid h2 { margin-top: 26px; }
  .document-intro, .support-hero { position: static; }
  .document-intro { padding-bottom: 30px; border-bottom: 1px solid var(--line); }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .site-header { width: min(calc(100% - 28px), var(--content)); align-items: flex-start; padding: 18px 0 15px; }
  .brand { font-size: 0; }
  nav { gap: 14px; padding-top: 7px; }
  nav a { font-size: 0.66rem; }
  .hero, .trust-grid, .document-shell, .support-shell, footer { width: min(calc(100% - 28px), var(--content)); }
  .hero-copy, .document-shell, .support-shell { padding-top: 62px; }
  .hero h1 { font-size: clamp(3.5rem, 17vw, 5.5rem); }
  .court-art { min-height: 330px; }
  .backboard { border-width: 8px; }
  .backboard span { border-width: 5px; }
  .rim { border-width: 8px; height: 39px; }
  .ball { width: 90px; }
  .document-shell, .support-shell { padding-bottom: 80px; }
  .document-intro h1, .support-hero h1 { font-size: clamp(3.1rem, 15vw, 4.5rem); }
  .support-card { padding: 28px 22px; }
  .contact-strip { grid-template-columns: 1fr; }
  footer { padding: 24px 0; align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

@media print {
  body { color: #111; background: #fff; }
  .site-header, footer, .document-intro .eyebrow { display: none; }
  .document-shell { width: 100%; padding: 0; display: block; }
  .document-intro { position: static; }
  .document-intro h1, .legal-document h2, .legal-document h3 { color: #111; }
  .document-intro > p:not(.eyebrow), .legal-document p, .legal-document li { color: #333; }
  .legal-document a { color: #111; }
}
