:root {
  --bg: #fffaf9;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #172033;
  --muted: #5f697d;
  --line: rgba(23, 32, 51, 0.1);
  --accent: #e53935;
  --accent-dark: #c62828;
  --accent-soft: #fff0ef;
  --shadow: 0 24px 70px rgba(23, 32, 51, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --nav-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(229, 57, 53, 0.12), transparent 28%),
    linear-gradient(180deg, #fff7f7 0%, #ffffff 22%, #fffdfd 100%);
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23, 32, 51, 0.08);
  box-shadow: 0 8px 30px rgba(23, 32, 51, 0.07);
}

.nav-shell {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 88px;
  height: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 253, 0.98));
  border: 1px solid rgba(23, 32, 51, 0.08);
  box-shadow: 0 14px 30px rgba(23, 32, 51, 0.08);
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 94%;
  height: 94%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.brand-name {
  font-size: 0.96rem;
  font-weight: 800;
  text-transform: uppercase;
}

.desktop-nav,
.nav-cta {
  display: none;
}

.desktop-nav {
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--accent);
}

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

.nav-cta {
  padding: 14px 22px;
  color: #fff;
  background: #111827;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--accent);
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(23, 32, 51, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 24px rgba(23, 32, 51, 0.07);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: grid;
  gap: 8px;
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.96);
  transition: max-height 220ms ease, padding 220ms ease;
}

.mobile-nav.is-open {
  max-height: 320px;
  padding: 0 16px 18px;
  border-top: 1px solid rgba(23, 32, 51, 0.08);
}

.mobile-nav a {
  padding: 14px 16px;
  border-radius: 18px;
  font-weight: 700;
  color: var(--muted);
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  background: var(--accent-soft);
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--nav-height) + 28px) 0 48px;
}

.hero-media,
.hero-media img,
.hero-overlay,
.hero-glow {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(112deg, rgba(255, 255, 255, 0.96) 16%, rgba(255, 255, 255, 0.82) 40%, rgba(229, 57, 53, 0.22) 100%);
}

.hero-glow {
  background: radial-gradient(circle at top right, rgba(229, 57, 53, 0.22), transparent 32%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-card {
  max-width: 760px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(229, 57, 53, 0.16);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1,
.section-copy h2,
.intro h2,
.final-cta h2 {
  margin: 0;
  line-height: 1.05;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(2.6rem, 6vw, 5.7rem);
  max-width: 11ch;
}

.hero-alerts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-alert {
  margin: 0;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(23, 32, 51, 0.08);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-alert-strong {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(229, 57, 53, 0.18);
}

.hero-subtitle {
  margin: 18px 0 0;
  max-width: 28ch;
  font-size: clamp(1.15rem, 2.5vw, 1.7rem);
  line-height: 1.6;
  color: #364152;
}

.hero-highlight {
  margin: 18px 0 0;
  font-size: clamp(1.15rem, 2.2vw, 1.8rem);
  font-weight: 800;
  color: var(--accent);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.button {
  min-height: 56px;
  padding: 16px 26px;
  border: 1px solid transparent;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 18px 40px rgba(229, 57, 53, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-dark);
}

.button-secondary {
  color: var(--text);
  background: #fff;
  border-color: rgba(23, 32, 51, 0.16);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--text);
}

.button-light {
  color: var(--accent);
  background: #fff;
}

.hero-points {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.hero-points span {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-weight: 700;
}

.intro {
  padding: 36px 0 10px;
}

.intro-grid {
  display: grid;
  gap: 24px;
  padding: 28px;
  border: 1px solid rgba(229, 57, 53, 0.08);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #fff1f1 0%, #ffffff 68%);
  box-shadow: 0 18px 60px rgba(229, 57, 53, 0.08);
}

.intro h2,
.section-copy h2,
.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.intro p,
.section-copy p,
.final-support,
.final-copy {
  color: var(--muted);
  line-height: 1.8;
}

.intro-stats {
  display: grid;
  gap: 14px;
}

.intro-stats article {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 12px 28px rgba(23, 32, 51, 0.06);
}

.intro-stats strong {
  display: block;
  color: var(--accent);
  font-size: 2rem;
  font-weight: 800;
}

.intro-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.7;
}

.content-section {
  padding: 28px 0;
  scroll-margin-top: calc(var(--nav-height) + 20px);
}

.section-grid {
  display: grid;
  gap: 26px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface-strong);
  box-shadow: 0 24px 80px rgba(23, 32, 51, 0.08);
}

.section-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 280px;
  position: relative;
}

.section-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(23, 32, 51, 0.16));
}

.section-image img {
  height: 100%;
  object-fit: cover;
}

.section-copy {
  align-self: center;
}

.section-copy p {
  margin: 18px 0 0;
}

.bullet-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.bullet-list li {
  position: relative;
  padding-left: 42px;
  color: #2d3748;
  line-height: 1.7;
  font-weight: 600;
}

.bullet-list li::before {
  content: "✓";
  position: absolute;
  top: 2px;
  left: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
}

.final-cta {
  padding: 56px 0 72px;
  scroll-margin-top: calc(var(--nav-height) + 20px);
}

.final-cta-card {
  padding: 36px 24px;
  text-align: center;
  border-radius: var(--radius-xl);
  color: #fff;
  background: linear-gradient(135deg, #e53935 0%, #ff6b57 100%);
  box-shadow: 0 28px 90px rgba(127, 29, 29, 0.24);
}

.section-tag-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
}

.final-copy {
  margin: 18px auto 0;
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  color: rgba(255, 255, 255, 0.94);
}

.final-support {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.86);
}

.final-cta .button-light {
  margin-top: 28px;
}

.site-footer {
  border-top: 1px solid rgba(23, 32, 51, 0.08);
  background: #fff;
}

.footer-shell {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 0 32px;
  text-align: center;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 760px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .intro-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-shell {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

@media (min-width: 980px) {
  .desktop-nav,
  .nav-cta {
    display: inline-flex;
  }

  .brand-mark {
    width: 104px;
    height: 104px;
  }

  .menu-toggle,
  .mobile-nav {
    display: none;
  }

  .section-grid,
  .intro-grid {
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
  }

  .reverse .section-grid > :first-child {
    order: 2;
  }

  .section-grid {
    padding: 36px;
  }

  .intro-grid {
    padding: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
