:root {
  --bg: #030504;
  --bg-soft: #070a09;
  --panel: #0c100f;
  --panel-strong: #101614;
  --border: #27312e;
  --border-strong: #3a4742;
  --text: #f6f8f7;
  --muted: #aeb8b4;
  --muted-strong: #d4dbd8;
  --accent: #5fd3ff;
  --accent-strong: #2c7dff;
  --accent-soft: rgba(95, 211, 255, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 50% -15%, rgba(95, 211, 255, 0.12), transparent 34rem),
    linear-gradient(180deg, #030504 0%, #050806 62%, #030504 100%);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(100% - 2rem, 1120px);
  margin: 0 auto;
}

.site-header {
  min-height: 92px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-size: 1.18rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: auto;
  height: 4.25rem;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

nav a {
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.72rem 0.9rem;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}

nav a:hover,
nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  outline: none;
}

nav a[aria-current="page"] {
  color: var(--accent);
}

.content-narrow,
.content-wide,
.content-readable {
  width: min(100% - 2rem, 1120px);
  margin: 0 auto;
}

.content-narrow {
  width: min(100% - 2rem, 760px);
}

.content-readable {
  width: min(100% - 2rem, 820px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.6rem 0 2.4rem;
  text-align: center;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 5, 4, 0.74), transparent 28%, transparent 72%, rgba(3, 5, 4, 0.74)),
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.09), transparent 21rem);
  content: "";
}

.court-line {
  position: absolute;
  z-index: -1;
  width: 22rem;
  height: 15rem;
  border: 1px solid rgba(95, 211, 255, 0.4);
  opacity: 0.8;
  transform: skewY(-19deg) rotate(-8deg);
}

.court-line::before,
.court-line::after {
  position: absolute;
  background: rgba(95, 211, 255, 0.4);
  content: "";
}

.court-line::before {
  left: 33%;
  top: 0;
  width: 1px;
  height: 100%;
}

.court-line::after {
  left: 0;
  top: 48%;
  width: 100%;
  height: 1px;
}

.court-line-left {
  left: -10rem;
  top: 5.1rem;
}

.court-line-right {
  right: -10rem;
  top: 7.4rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0.85rem;
  font-size: clamp(2.45rem, 7vw, 4.55rem);
  font-weight: 860;
  letter-spacing: 0;
  line-height: 1.03;
}

.subtitle,
.lede {
  color: var(--muted-strong);
  font-size: 1.14rem;
  line-height: 1.7;
}

.subtitle {
  margin-bottom: 2rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin: 0 auto;
  border: 1px solid var(--border-strong);
  border-radius: 0.8rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(12, 16, 15, 0.84);
  box-shadow: var(--shadow);
  padding: 1.8rem;
  text-align: left;
}

.contact-icon {
  display: grid;
  width: 4.25rem;
  height: 4.25rem;
  place-items: center;
  color: var(--accent);
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-panel h2 {
  margin-bottom: 0.1rem;
  font-size: 1.38rem;
  line-height: 1.2;
}

.contact-panel p {
  margin-bottom: 0.2rem;
  color: var(--muted);
}

.support-email,
.faq-list a,
.content-readable a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.support-email:hover,
.support-email:focus-visible,
.faq-list a:hover,
.faq-list a:focus-visible,
.content-readable a:hover,
.content-readable a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.faq-section {
  padding: 1.8rem 0 4.5rem;
}

.faq-section > h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 1.15;
}

.faq-list {
  display: grid;
  gap: 0.72rem;
}

details {
  border: 1px solid var(--border);
  border-radius: 0.55rem;
  background: rgba(12, 16, 15, 0.76);
  transition: border-color 160ms ease, background-color 160ms ease;
}

details[open],
details:hover {
  border-color: var(--border-strong);
  background: rgba(16, 22, 20, 0.92);
}

summary {
  display: grid;
  grid-template-columns: 2.6rem 1fr auto;
  gap: 1.05rem;
  align-items: center;
  min-height: 3.4rem;
  padding: 0.95rem 1.1rem;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  width: 0.52rem;
  height: 0.52rem;
  border-right: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  content: "";
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

details[open] summary::after {
  transform: rotate(225deg);
}

summary span {
  color: var(--accent);
  font-size: 1.05rem;
}

details p {
  margin: -0.2rem 1.1rem 1.2rem 4.75rem;
  color: var(--muted-strong);
}

.document-page {
  padding: 4.6rem 0;
}

.document-kicker {
  margin-bottom: 0.65rem;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.content-readable {
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  background:
    linear-gradient(135deg, rgba(95, 211, 255, 0.07), transparent 16rem),
    rgba(12, 16, 15, 0.78);
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 4vw, 3rem);
}

.content-readable h1 {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
}

.content-readable section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1.55rem;
}

.content-readable h2 {
  margin-bottom: 0.55rem;
  font-size: 1.32rem;
  line-height: 1.25;
}

.content-readable p,
.content-readable li {
  color: var(--muted-strong);
}

.content-readable ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding-left: 1.25rem;
}

.site-footer {
  min-height: 106px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
}

.brand-footer {
  font-size: 1rem;
}

.brand-footer .brand-logo {
  height: 3.3rem;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: right;
}

@media (max-width: 760px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.9rem;
  }

  .site-header {
    padding: 1rem 0;
  }

  nav {
    width: 100%;
    gap: 0.3rem;
  }

  nav a {
    padding: 0.7rem 0.68rem;
  }

  .hero {
    padding: 3.2rem 0 1.5rem;
  }

  .court-line {
    opacity: 0.34;
  }

  .court-line-left {
    left: -15rem;
  }

  .court-line-right {
    right: -16rem;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 1.25rem;
  }

  .contact-icon {
    width: 3rem;
    height: 3rem;
  }

  .faq-section {
    padding-bottom: 3.2rem;
  }

  summary {
    grid-template-columns: 2.2rem 1fr auto;
    gap: 0.65rem;
    padding: 0.9rem;
  }

  details p {
    margin: -0.1rem 0.9rem 1rem 3.75rem;
  }

  .document-page {
    padding: 2.2rem 0;
  }

  .site-footer {
    padding: 1.5rem 0;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 420px) {
  body {
    font-size: 15px;
  }

  .brand {
    font-size: 1.06rem;
  }

  .brand-logo {
    height: 3.35rem;
  }

  nav a {
    font-size: 0.9rem;
  }

  .subtitle,
  .lede {
    font-size: 1rem;
  }

  summary {
    font-size: 0.94rem;
  }
}
