﻿:root {
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #111111;
  background: #ffffff;
}

* {
  box-sizing: border-box;
}

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

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

a {
  color: #111111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: #444444;
}

.legal-shell {
  width: min(100% - 40px, 820px);
  margin: 0 auto;
  padding: 28px 0 72px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  margin-bottom: 44px;
  border-bottom: 1px solid #e5e5e5;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: #111111;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 36px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: #555555;
  font-size: 0.94rem;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #111111;
}

.hero {
  margin-bottom: 34px;
}

.centered {
  text-align: left;
}

.eyebrow {
  margin: 0 0 12px;
  color: #666666;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 7vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 720;
}

.hero-text {
  max-width: 760px;
  margin-bottom: 18px;
  color: #333333;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  color: #666666;
  font-size: 0.92rem;
}

.notice-card {
  margin: 0 0 38px;
  padding: 18px 0 0;
  border-top: 1px solid #e5e5e5;
}

.notice-card .icon {
  display: none;
}

.notice-card h2 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  line-height: 1.35;
}

.notice-card p,
.section-card p,
.section-card li,
.card small {
  color: #252525;
  line-height: 1.78;
}

.legal-document {
  display: block;
}

.section-card {
  padding: 30px 0;
  border-top: 1px solid #e8e8e8;
}

.section-card:first-child {
  border-top: 0;
  padding-top: 0;
}

.section-card h2 {
  margin-bottom: 14px;
  font-size: 1.32rem;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.section-card h3 {
  margin: 22px 0 8px;
  font-size: 1rem;
  line-height: 1.45;
}

.section-card p {
  margin-bottom: 14px;
}

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

.section-card ul {
  padding-left: 22px;
  margin: 12px 0 0;
}

.section-card li {
  margin-bottom: 8px;
  padding-left: 4px;
}

.contact-card {
  padding-bottom: 0;
}

.links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.card {
  display: block;
  min-height: 150px;
  padding: 22px;
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  color: #111111;
  text-decoration: none;
  background: #ffffff;
}

.card:hover {
  border-color: #bcbcbc;
}

.card-icon {
  display: none;
}

.card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.35;
}

.card small {
  display: block;
  color: #555555;
  font-size: 0.95rem;
}

@media (max-width: 700px) {
  .legal-shell {
    width: min(100% - 28px, 820px);
    padding-top: 20px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 34px;
  }

  .nav-links {
    gap: 16px;
  }

  h1 {
    font-size: clamp(2rem, 13vw, 3rem);
  }

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

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