:root {
  color-scheme: dark;
  --canvas: #031113;
  --canvas-soft: #04191c;
  --surface: #062126;
  --surface-raised: #0a2a2f;
  --ink: #f4f0e8;
  --muted: #a8babc;
  --line: rgba(142, 165, 168, 0.25);
  --mint: #65f2d1;
  --aqua: #39dcce;
  --coral: #ff8b63;
  --yellow: #ffd166;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  --radius-large: 28px;
  --radius-medium: 18px;
  --content: 920px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 12% -8%, rgba(57, 220, 206, 0.1), transparent 34rem),
    radial-gradient(circle at 92% 14%, rgba(255, 139, 99, 0.07), transparent 28rem),
    var(--canvas);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--mint);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--yellow);
}

a:focus-visible {
  border-radius: 5px;
  outline: 3px solid var(--aqua);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--canvas);
  font-weight: 700;
  transform: translateY(-180%);
}

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

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(3, 17, 19, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

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

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 720;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--surface);
  color: var(--ink);
}

.page-shell {
  padding-block: 72px 88px;
}

.hero {
  padding-block: 38px 58px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.18;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.45rem, 7vw, 4.8rem);
  font-weight: 720;
  letter-spacing: -0.055em;
}

.legal-page h1 {
  font-size: clamp(2.25rem, 6vw, 4.2rem);
}

h2 {
  margin: 52px 0 14px;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

h3 {
  margin: 28px 0 8px;
  font-size: 1.05rem;
  font-weight: 720;
}

p,
ul,
ol {
  margin-block: 0 18px;
}

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

li + li {
  margin-top: 7px;
}

.hero-copy {
  max-width: 680px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.22rem);
}

.meta {
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

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

.card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: linear-gradient(150deg, rgba(10, 42, 47, 0.92), rgba(6, 33, 38, 0.78));
  box-shadow: var(--shadow);
}

.card-number {
  margin-bottom: auto;
  color: var(--coral);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.13em;
}

.card h2 {
  margin: 28px 0 10px;
  font-size: 1.35rem;
}

.card p {
  color: var(--muted);
  font-size: 14px;
}

.card-link {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 720;
}

.legal-content {
  max-width: 780px;
}

.legal-content > p,
.legal-content > ul,
.legal-content > ol,
.legal-content section > p,
.legal-content section > ul,
.legal-content section > ol {
  color: #c7d2d2;
}

.notice,
.contact-panel,
.data-block {
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: rgba(6, 33, 38, 0.78);
}

.notice {
  margin: 32px 0;
  padding: 20px 22px;
  border-left: 4px solid var(--mint);
  color: #d5dedd;
}

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

.contact-panel {
  margin-top: 30px;
  padding: 24px;
}

.contact-panel p:last-child,
.notice p:last-child {
  margin-bottom: 0;
}

.data-list {
  display: grid;
  gap: 14px;
  margin-block: 22px 34px;
}

.data-block {
  padding: 20px 22px;
}

.data-block h3 {
  margin-top: 0;
}

.data-block p:last-child,
.data-block ul:last-child {
  margin-bottom: 0;
}

.plain-label {
  color: var(--yellow);
  font-size: 0.88rem;
  font-weight: 720;
}

.support-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  margin-top: 36px;
}

.support-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: rgba(6, 33, 38, 0.8);
}

.support-panel h2 {
  margin-top: 0;
}

.email-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--canvas);
  font-weight: 780;
  text-decoration: none;
}

.email-button:hover {
  background: var(--yellow);
  color: var(--canvas);
}

.faq-list {
  margin-top: 38px;
}

.faq-item {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item h2 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.faq-item p:last-child {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-block: 30px 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

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

.error-code {
  display: block;
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.16em;
}

@media (max-width: 760px) {
  .header-inner {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding-block: 15px;
    gap: 9px;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .site-nav a {
    white-space: nowrap;
  }

  .page-shell {
    padding-block: 48px 64px;
  }

  .hero {
    padding-block: 20px 42px;
  }

  .card-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 205px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .header-inner,
  .page-shell,
  .site-footer {
    width: min(calc(100% - 28px), var(--content));
  }

  .site-nav a {
    padding-inline: 10px;
  }

  .card,
  .support-panel {
    padding: 22px;
  }
}

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

@media print {
  :root {
    color-scheme: light;
  }

  body {
    background: #ffffff;
    color: #111111;
  }

  .site-header,
  .site-footer,
  .skip-link {
    display: none;
  }

  .page-shell {
    width: 100%;
    padding: 0;
  }

  h1,
  h2,
  h3,
  .legal-content > p,
  .legal-content > ul,
  .legal-content > ol,
  .legal-content section > p,
  .legal-content section > ul,
  .legal-content section > ol {
    color: #111111;
  }

  a {
    color: #111111;
  }

  .notice,
  .contact-panel,
  .data-block {
    border-color: #bbbbbb;
    background: #ffffff;
  }
}

