*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #E30613;
  --primary-dark: #B8000B;
  --ink: #141416;
  --ink-soft: #374151;
  --muted: #6B7280;
  --line: #ECEFF3;
  --surface: #FFFFFF;
  --surface-soft: #F8FAFC;
  --footer: #111827;
  --radius: 14px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.7;
}

a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}

a:hover {
  color: var(--primary-dark);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 5%;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  object-fit: cover;
}

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

.nav-links a {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--primary);
  color: #FFFFFF;
  font-weight: 800;
}

.btn:hover {
  background: var(--primary-dark);
  color: #FFFFFF;
}

.hero {
  padding: 76px 0 48px;
  background: #FFF1F2;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
}

h1 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.12;
  margin-bottom: 18px;
}

.intro {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
}

.content {
  padding: 56px 0 72px;
  background: var(--surface-soft);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 28px;
  align-items: start;
}

.panel,
.side-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
}

.panel {
  padding: 36px;
}

.side-panel {
  padding: 26px;
  position: sticky;
  top: 92px;
}

h2 {
  font-size: 1.2rem;
  line-height: 1.3;
  margin: 28px 0 10px;
}

h2:first-child {
  margin-top: 0;
}

p {
  color: var(--ink-soft);
  margin-bottom: 14px;
}

ul,
ol {
  padding-left: 1.25rem;
  margin-bottom: 14px;
}

li {
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.pill-list span {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(227, 6, 19, 0.08);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
}

.notice {
  margin-top: 24px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(227, 6, 19, 0.2);
  background: rgba(227, 6, 19, 0.06);
}

footer {
  background: var(--footer);
  color: rgba(255, 255, 255, 0.7);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding: 56px 0 36px;
  }

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

  .panel {
    padding: 26px 22px;
  }

  .side-panel {
    position: static;
  }
}
