:root {
  color-scheme: dark;
  --ink: #f7f4ff;
  --muted: #b9b7ca;
  --night: #060917;
  --night-soft: #0c1229;
  --panel: rgba(15, 22, 48, 0.76);
  --panel-solid: #111936;
  --line: rgba(207, 216, 255, 0.16);
  --gold: #ffd889;
  --gold-strong: #ffbe4b;
  --cyan: #79e9ff;
  --coral: #ff9da7;
  --violet: #9b8cff;
  --success: #91f2c4;
  --danger: #ffaaa8;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --content: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--night);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(94, 73, 201, 0.18), transparent 30rem),
    radial-gradient(circle at 90% 38%, rgba(57, 187, 219, 0.12), transparent 34rem),
    var(--night);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.62) 0 1px, transparent 1.5px),
    radial-gradient(circle at 65% 25%, rgba(121, 233, 255, 0.54) 0 1px, transparent 1.5px),
    radial-gradient(circle at 80% 70%, rgba(255, 216, 137, 0.62) 0 1px, transparent 1.5px);
  background-size: 110px 110px, 150px 150px, 190px 190px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: #07101f;
  background: var(--cyan);
  border-radius: 999px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
.legal-header {
  background: rgba(6, 9, 23, 0.82);
  border-bottom-color: var(--line);
  backdrop-filter: blur(22px) saturate(130%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  letter-spacing: 0.08em;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 216, 137, 0.5);
  border-radius: 50%;
  background:
    radial-gradient(circle, #fff8dd 0 8%, var(--gold) 9% 18%, transparent 20%),
    conic-gradient(from 45deg, transparent 0 21%, rgba(255, 216, 137, 0.7) 22% 28%, transparent 29% 46%, rgba(121, 233, 255, 0.65) 47% 53%, transparent 54% 71%, rgba(255, 216, 137, 0.7) 72% 78%, transparent 79%);
  box-shadow: 0 0 22px rgba(255, 205, 100, 0.28);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 150ms ease, background 150ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
}

.nav-cta {
  color: #15101c;
  background: linear-gradient(135deg, var(--gold), #fff1c7);
}

.nav-cta:hover {
  color: #15101c;
  background: linear-gradient(135deg, #ffe3a4, #fff7e0);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 150ms ease, opacity 150ms ease;
}

.menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.menu-button[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
  animation: hero-drift 14s ease-in-out infinite alternate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 5, 17, 0.92) 0%, rgba(3, 5, 17, 0.65) 39%, rgba(3, 5, 17, 0.12) 72%),
    linear-gradient(0deg, var(--night) 0%, transparent 28%, rgba(3, 5, 17, 0.14) 100%);
}

.hero-content {
  max-width: 680px;
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 12vh;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.display {
  max-width: 12ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 8.4rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.82;
  text-wrap: balance;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.38);
}

.display em {
  color: var(--gold);
  font-style: normal;
}

.hero-copy {
  max-width: 590px;
  margin: 28px 0 0;
  color: #d8d7e5;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  text-wrap: balance;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #19121f;
  background: linear-gradient(135deg, var(--gold-strong), #fff0c2);
  box-shadow: 0 12px 34px rgba(255, 190, 75, 0.22);
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(7, 11, 25, 0.48);
  backdrop-filter: blur(12px);
}

.button-small {
  min-height: 44px;
  padding: 9px 17px;
  font-size: 0.9rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-meta span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-tight {
  padding: 82px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}

.section-title {
  max-width: 15ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.section-intro {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card,
.world-card,
.legal-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(19, 28, 61, 0.9), rgba(9, 14, 33, 0.84));
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 300px;
  padding: 30px;
}

.feature-gold { --glow: rgba(255, 197, 83, 0.2); }
.feature-cyan { --glow: rgba(121, 233, 255, 0.2); }
.feature-coral { --glow: rgba(255, 142, 180, 0.2); }

.feature-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--glow, rgba(121, 233, 255, 0.18));
  filter: blur(24px);
}

.feature-number {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(255, 216, 137, 0.26);
  border-radius: 50%;
  background: rgba(255, 216, 137, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
}

.feature-card h3,
.world-card h3 {
  margin: 58px 0 10px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.feature-card p,
.world-card p {
  margin: 0;
  color: var(--muted);
}

.showcase {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #071020;
  box-shadow: var(--shadow);
}

.showcase img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.showcase-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 26px;
  border-top: 1px solid var(--line);
}

.showcase-caption strong {
  font-size: 1.05rem;
}

.showcase-caption span {
  color: var(--muted);
  font-size: 0.92rem;
}

.world-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding: 4px 4px 18px;
  scroll-snap-type: x mandatory;
}

.world-card {
  min-height: 330px;
  padding: 24px;
  scroll-snap-align: start;
}

.world-moon { --orb-a: #b5efff; --orb-b: #5269d9; }
.world-cloud { --orb-a: #91fff1; --orb-b: #2c8cb5; }
.world-ember { --orb-a: #ffd27d; --orb-b: #bd4b43; }
.world-rain { --orb-a: #bcf7ff; --orb-b: #7865ce; }
.world-eclipse { --orb-a: #ffb5de; --orb-b: #512c82; }

.world-orb {
  width: 94px;
  height: 94px;
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 32%, rgba(255, 255, 255, 0.85) 0 3%, transparent 4%),
    radial-gradient(circle at 50% 55%, var(--orb-a) 0, var(--orb-b) 48%, #0b1028 72%);
  box-shadow: 0 0 44px color-mix(in srgb, var(--orb-a), transparent 60%);
}

.world-card h3 {
  margin-top: 52px;
}

.promise-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: 54px;
  border: 1px solid rgba(255, 216, 137, 0.2);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 202, 96, 0.14), transparent 38%),
    linear-gradient(135deg, rgba(33, 25, 57, 0.94), rgba(9, 15, 35, 0.94));
  box-shadow: var(--shadow);
}

.promise-band h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.promise-band p {
  margin: 16px 0 0;
  color: var(--muted);
}

.promise-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.promise-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 10px 14px;
  color: #e9e7f2;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.promise-list li::before {
  content: "✓";
  display: inline-grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #07151a;
  border-radius: 50%;
  background: var(--success);
  font-size: 0.76rem;
  font-weight: 1000;
}

.cta-section {
  padding: 70px 0 130px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 86px 28px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(6, 9, 23, 0.22), rgba(6, 9, 23, 0.86)),
    url("hero.webp") center 54% / cover;
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  max-width: 12ch;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.94;
  text-wrap: balance;
}

.cta-panel p {
  max-width: 620px;
  margin: 20px auto 0;
  color: #d3d2df;
  font-size: 1.04rem;
}

.cta-panel .button-row {
  justify-content: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(3, 5, 14, 0.62);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.65fr);
  gap: 48px;
  padding: 66px 0 48px;
}

.footer-copy {
  max-width: 360px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-group h2 {
  margin: 0 0 14px;
  color: #f1eff8;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 30px;
  color: #858396;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Legal and support pages */
.legal-main {
  min-height: 70vh;
  padding-top: calc(var(--header-height) + 70px);
  padding-bottom: 110px;
}

.legal-hero {
  max-width: 900px;
  margin-bottom: 56px;
}

.legal-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.4rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.legal-hero p {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 11px;
  color: var(--gold);
  border: 1px solid rgba(255, 216, 137, 0.22);
  border-radius: 999px;
  background: rgba(255, 216, 137, 0.07);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  gap: 58px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(14, 20, 43, 0.68);
}

.legal-toc strong {
  display: block;
  margin-bottom: 10px;
  color: #f2f0f9;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-toc a {
  display: block;
  padding: 6px 0;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.84rem;
}

.legal-toc a:hover {
  color: var(--gold);
}

.legal-content {
  min-width: 0;
}

.legal-content section {
  scroll-margin-top: calc(var(--header-height) + 24px);
  padding: 0 0 44px;
}

.legal-content section + section {
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.legal-content h3 {
  margin: 28px 0 10px;
  font-size: 1.1rem;
}

.legal-content p,
.legal-content li {
  color: #c4c2d0;
}

.legal-content a {
  color: var(--cyan);
  text-underline-offset: 3px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.35rem;
}

.legal-content li + li {
  margin-top: 8px;
}

.notice {
  padding: 18px 20px;
  color: #d9d6e7;
  border: 1px solid rgba(121, 233, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(74, 179, 207, 0.07);
}

.notice strong {
  color: var(--cyan);
}

.notice-warning {
  border-color: rgba(255, 216, 137, 0.28);
  background: rgba(255, 216, 137, 0.07);
}

.notice-warning strong {
  color: var(--gold);
}

.data-table {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.data-table th,
.data-table td {
  padding: 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.data-table th {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.82rem;
}

.data-table td {
  color: var(--muted);
  font-size: 0.86rem;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.detail-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
}

.detail-card h3 {
  margin-top: 0;
}

.detail-card p:last-child {
  margin-bottom: 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.required-value {
  display: inline-block;
  padding: 2px 7px;
  color: #16101a;
  border-radius: 5px;
  background: var(--gold);
  font-weight: 850;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
}

.faq-list summary {
  min-height: 54px;
  padding: 16px 48px 16px 18px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.faq-list details p {
  margin: 0;
  padding: 0 18px 18px;
}

@keyframes hero-drift {
  from { transform: scale(1.01); }
  to { transform: scale(1.055); }
}

@media (max-width: 960px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) + 8px);
    right: 20px;
    left: 20px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-list {
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(6, 9, 23, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(24px);
  }

  .nav-link {
    justify-content: center;
  }

  .section-head,
  .promise-band {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card:last-child {
    grid-column: 1 / -1;
  }

  .footer-main {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .legal-toc {
    position: static;
    columns: 2;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
  }

  .shell {
    width: min(calc(100% - 28px), var(--content));
  }

  .brand {
    font-size: 0.9rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .hero {
    min-height: 840px;
  }

  .hero-media img {
    object-position: 66% 50%;
  }

  .hero::before {
    background:
      linear-gradient(0deg, var(--night) 0%, rgba(3, 5, 17, 0.68) 58%, rgba(3, 5, 17, 0.28) 100%),
      linear-gradient(90deg, rgba(3, 5, 17, 0.76), transparent 88%);
  }

  .hero-content {
    padding-bottom: 82px;
  }

  .display {
    font-size: clamp(3.65rem, 18vw, 5.2rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .section {
    padding: 82px 0;
  }

  .section-head {
    gap: 22px;
    margin-bottom: 34px;
  }

  .feature-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .feature-card:last-child {
    grid-column: auto;
  }

  .feature-card {
    min-height: 260px;
  }

  .showcase-caption {
    display: grid;
    gap: 5px;
  }

  .showcase img {
    aspect-ratio: 1.15 / 1;
  }

  .promise-band {
    padding: 34px 22px;
  }

  .cta-panel {
    padding: 64px 20px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
  }

  .legal-main {
    padding-top: calc(var(--header-height) + 48px);
  }

  .legal-toc {
    columns: 1;
  }

  .data-table {
    display: block;
    overflow-x: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  :root { color-scheme: light; }
  body { color: #111; background: #fff; }
  body::before, .site-header, .site-footer, .legal-toc { display: none; }
  .legal-main { padding: 0; }
  .legal-layout { display: block; }
  .legal-content p, .legal-content li { color: #222; }
  .legal-content a { color: #111; }
}
