:root {
  color-scheme: light;
  --bg: #f7f9fc;
  --surface: #ffffff;
  --ink: #111827;
  --muted: #5e6675;
  --soft: #e6ebf2;
  --accent: #ff2e56;
  --accent-dark: #c9183d;
  --blue: #315ee9;
  --shadow: 0 18px 45px rgba(16, 24, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(230, 235, 242, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(255, 46, 86, 0.18);
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.top-nav a,
.site-footer a {
  text-decoration: none;
}

.top-nav a:hover,
.top-nav a[aria-current="page"],
.site-footer a:hover {
  color: var(--accent-dark);
}

.home-hero {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: flex-end;
  padding: 120px clamp(22px, 7vw, 86px) 64px;
  overflow: hidden;
  background: #131722;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.88;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 12, 22, 0.82), rgba(8, 12, 22, 0.42) 48%, rgba(8, 12, 22, 0.18)),
    linear-gradient(0deg, rgba(8, 12, 22, 0.72), rgba(8, 12, 22, 0.08) 45%);
}

.hero-content {
  position: relative;
  width: min(690px, 100%);
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(3.8rem, 10vw, 8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2.2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.primary-link {
  background: var(--accent);
  color: #ffffff;
}

.secondary-link {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.legal-overview {
  padding: 48px clamp(18px, 5vw, 56px) 72px;
  background: var(--bg);
}

.section-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.section-inner h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.document-grid {
  display: grid;
  gap: 12px;
}

.document-link {
  display: grid;
  gap: 6px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--soft);
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-decoration: none;
}

.document-link span {
  font-size: 1.05rem;
  font-weight: 850;
}

.document-link small {
  color: var(--muted);
  font-size: 0.94rem;
}

.legal-page {
  padding: 118px clamp(18px, 5vw, 56px) 70px;
}

.legal-document {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  background: var(--surface);
  border: 1px solid var(--soft);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.legal-document h1 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.document-meta {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.notice {
  margin: 28px 0 34px;
  padding: 16px;
  color: #6a3a08;
  background: #fff6df;
  border: 1px solid #f1d48a;
  border-radius: 8px;
}

.legal-document section {
  padding-top: 24px;
  border-top: 1px solid var(--soft);
}

.legal-document section + section {
  margin-top: 24px;
}

.legal-document h2 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  line-height: 1.3;
  letter-spacing: 0;
}

.legal-document h3 {
  margin: 18px 0 8px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
  letter-spacing: 0;
}

.legal-document p {
  margin: 0;
  color: var(--muted);
}

.legal-document p + p {
  margin-top: 12px;
}

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

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(18px, 5vw, 56px);
  color: var(--muted);
  background: #ffffff;
  border-top: 1px solid var(--soft);
  font-size: 0.92rem;
  font-weight: 650;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
    padding: 14px 18px;
  }

  .top-nav {
    justify-content: flex-start;
  }

  .home-hero {
    min-height: 78vh;
    padding: 148px 22px 44px;
  }

  .section-inner {
    grid-template-columns: 1fr;
  }

  .legal-page {
    padding-top: 138px;
  }

  .legal-document {
    padding: 24px 18px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
