:root {
  --bg: #080808;
  --surface: #121212;
  --surface-2: #171717;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f5f5f5;
  --muted: #b0b8c6;
  --soft: #8d97a8;
  --brand: #e5132d;
  --brand-light: #ff2d47;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(229, 19, 45, 0.16), transparent 30%),
    linear-gradient(180deg, #090909 0%, #060606 100%);
  color: var(--text);
  min-height: 100vh;
}

a {
  color: inherit;
}

.page-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(8, 8, 8, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-wordmark {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-wordmark .muted {
  color: var(--muted);
  font-weight: 400;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--text);
}

.hero {
  padding: 5.5rem 0 3rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(229, 19, 45, 0.1);
  border: 1px solid rgba(229, 19, 45, 0.25);
  color: var(--brand-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: end;
  margin-top: 1.5rem;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 0;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #f7b4bc 35%, #ff3d59 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 1.25rem 0 0;
  max-width: 42rem;
}

.trust-card {
  border-radius: 28px;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(34, 11, 15, 0.96) 0%, rgba(105, 20, 31, 0.82) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 56px rgba(229, 19, 45, 0.12);
}

.trust-card p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  margin: 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 1.5rem;
  align-items: start;
  padding-bottom: 4rem;
}

.section-heading h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
}

.section-heading p {
  color: var(--muted);
  line-height: 1.8;
  margin-top: 1rem;
}

.card-stack {
  display: grid;
  gap: 1rem;
}

.legal-card {
  background: rgba(18, 18, 18, 0.92);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.35rem 1.35rem 1.5rem;
}

.legal-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  margin: 0 0 0.75rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-card ul {
  margin: 0;
  padding-left: 1.15rem;
}

.small-label {
  color: var(--brand-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.footer-note {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--soft);
  font-size: 0.9rem;
  line-height: 1.7;
  padding: 1.5rem 0 3rem;
}

.footer-note a {
  color: var(--text);
}

@media (max-width: 920px) {
  .hero-grid,
  .section-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4rem;
  }
}
