:root {
  --orange: #ea762f;
  --orange-dark: #d46522;
  --cream: #fff6ef;
  --text: #1f2933;
  --muted: #5d6a75;
  --white: #ffffff;
  --shadow: 0 20px 40px rgba(0,0,0,0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  font-weight: 800;
  font-size: 1.15rem;
}

.logo span { color: var(--orange); }

.nav nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav nav a {
  font-weight: 500;
  color: var(--muted);
}

.hero {
  background: linear-gradient(180deg, var(--cream), #fff 65%);
  padding: 4.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  color: var(--orange-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.98;
  margin: 0 0 1rem;
}

.lead {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--orange-dark);
  margin-bottom: 1rem;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
}

.button.primary {
  background: var(--orange);
  color: var(--white);
}

.button.secondary {
  border: 2px solid rgba(31,41,51,0.14);
}

.section {
  padding: 4.5rem 0;
}

.section h2 {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  margin: 0 0 1rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.accent {
  background: var(--orange);
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.badge-box {
  display: flex;
  justify-content: center;
}

.badge {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  font-size: 1.25rem;
  transform: rotate(-12deg);
  box-shadow: var(--shadow);
}

.badge strong {
  display: block;
  font-size: 3rem;
  line-height: 1;
  margin: 0.35rem 0;
}

.section-intro {
  max-width: 56rem;
}

.topics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.topic {
  background: var(--cream);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  font-weight: 700;
}

.site-footer {
  background: #17212b;
  color: rgba(255,255,255,0.92);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .cards,
  .topics,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

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


.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.legal-page {
  padding: 4rem 0 5rem;
  background: linear-gradient(180deg, var(--cream), #fff 38%);
  min-height: calc(100vh - 72px);
}

.narrow {
  width: min(860px, calc(100% - 2rem));
}

.legal-note {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.legal-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.legal-card h2 {
  margin-top: 1.75rem;
  margin-bottom: 0.65rem;
  font-size: 1.25rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card a {
  color: var(--orange-dark);
}
