:root {
  color-scheme: light;
  --bg: #fff8ef;
  --ink: #2e2520;
  --ink-soft: #57473f;
  --brand-red: #ef1b1b;
  --brand-orange: #ff8f1f;
  --card: #ffffff;
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Segoe UI", Roboto, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(255, 182, 54, 0.26), transparent 40%),
    radial-gradient(circle at bottom left, rgba(239, 27, 27, 0.12), transparent 45%),
    var(--bg);
  color: var(--ink);
}

.site-header {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo {
  width: clamp(160px, 28vw, 300px);
  height: auto;
}

.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem 1.25rem 3rem;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  align-items: start;
  gap: 2rem;
}

.hero-copy h1 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 16ch;
}

.kicker {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-red);
}

.lead {
  margin: 0 0 1.75rem;
  max-width: 48ch;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.65;
}

.feature-panel {
  background: var(--card);
  border: 1px solid rgba(87, 71, 63, 0.12);
  border-radius: 18px;
  padding: 1.35rem 1.5rem 1.5rem;
  box-shadow: 0 14px 36px rgba(85, 65, 47, 0.14);
}

.feature-panel h2 {
  margin: 0 0 0.9rem;
  font-size: 1.2rem;
}

.feature-panel ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.6rem;
  color: var(--ink-soft);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.cta:hover {
  transform: translateY(-1px);
}

.cta-primary {
  background: var(--brand-red);
  color: #fff4ef;
  padding: 0.85rem 1.4rem;
  box-shadow: 0 12px 26px rgba(239, 27, 27, 0.28);
}

.cta-primary:hover {
  background: #d81313;
}

.cta-ghost {
  border: 1px solid rgba(87, 71, 63, 0.25);
  color: var(--ink);
  padding: 0.6rem 1.1rem;
  background: rgba(255, 255, 255, 0.5);
}

.cta-ghost:hover {
  box-shadow: 0 10px 24px rgba(87, 71, 63, 0.15);
}

@media (max-width: 840px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .site-header {
    padding-bottom: 0.5rem;
  }
}
