:root {
  --pink: #ffd6e2;
  --hot-pink: #ff5f88;
  --mint: #b9eee7;
  --coral: #ff8f7e;
  --ink: #111111;
  --muted: #615d64;
  --line: #eadfe5;
  --paper: #fff6f9;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(83, 38, 55, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 214, 226, 0.8), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, #fff8fb 0%, #fff4f8 48%, #ffffff 100%);
  font-family: "Inter", Arial, sans-serif;
}

img {
  max-width: 100%;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 250, 252, 0.86);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--hot-pink);
  color: var(--ink);
}

.nav {
  display: flex;
  gap: 8px;
  color: #3f3a40;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  padding: 10px 12px;
  border-radius: 8px;
}

.nav a:hover {
  background: rgba(255, 95, 136, 0.1);
}

.nav a,
.sources a,
.site-footer a {
  transition: color 160ms ease;
}

.nav a:hover,
.sources a:hover,
.site-footer a:hover {
  color: var(--hot-pink);
}

.hero {
  padding: clamp(44px, 6vw, 72px) 0 38px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
  min-height: min(680px, calc(100vh - 110px));
}

.hero h1,
.section h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(44px, 5vw, 66px);
  line-height: 1.04;
}

.lead {
  max-width: 570px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.62;
}

.eyebrow {
  margin: 0 0 14px;
  color: #a12f55;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.hero-points span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 95, 136, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #3f3a40;
  font-size: 14px;
  font-weight: 800;
}

.hero-visual {
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 245, 248, 0.72));
  box-shadow: var(--shadow);
}

.hero-visual img,
.media-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
}

.stats {
  padding: 12px 0 32px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 14px 44px rgba(87, 42, 57, 0.07);
}

.stats-grid div {
  min-height: 112px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.stats-grid div:last-child {
  border-right: 0;
}

.stats-grid strong {
  display: block;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.section {
  padding: clamp(64px, 8vw, 96px) 0;
}

.soft {
  background: #fffdfd;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dark {
  background: linear-gradient(135deg, #111111, #241920);
  color: var(--white);
}

.dark .eyebrow {
  color: var(--pink);
}

.two-column,
.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(360px, 1fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: start;
}

.media-grid {
  align-items: center;
}

.media-grid > div {
  max-width: 580px;
}

.section h2 {
  max-width: 680px;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.07;
}

.prose p,
.media-grid p,
.note-box p,
.section-heading p,
.cards p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.prose p:first-child,
.media-grid p:first-of-type,
.note-box p,
.section-heading p {
  margin-top: 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.cards {
  display: grid;
  gap: 18px;
}

.cards.four {
  grid-template-columns: repeat(4, 1fr);
}

.cards article,
.note-box {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  padding: 26px;
}

.cards article {
  min-height: 184px;
  box-shadow: 0 14px 36px rgba(87, 42, 57, 0.06);
}

.cards h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.cards p {
  margin: 0;
}

.cards.four article:nth-child(2) {
  background: linear-gradient(180deg, #f2fffd, #ffffff);
}

.cards.four article:nth-child(3) {
  background: linear-gradient(180deg, #fff1f6, #ffffff);
}

.cards.four article:nth-child(4) {
  background: linear-gradient(180deg, #fff4ef, #ffffff);
}

.section-image {
  margin: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.dark .cards article {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.dark .cards p {
  color: #d8d0d4;
}

.note-box {
  max-width: 900px;
  background: linear-gradient(135deg, #fff0f4, #ffffff);
  box-shadow: 0 14px 44px rgba(87, 42, 57, 0.07);
}

.note-box h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.note-box p {
  margin-bottom: 0;
}

.sources {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.sources-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 28px 0;
}

.sources h2 {
  flex-basis: 100%;
  margin: 0;
  font-size: 18px;
}

.sources a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-footer {
  background: #111111;
  color: var(--white);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
}

.site-footer p {
  margin: 0;
  color: #d8d0d4;
}

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

  .hero-inner,
  .two-column,
  .media-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero h1 {
    max-width: 760px;
  }

  .stats-grid,
  .cards.four {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid div:nth-child(2) {
    border-right: 0;
  }

  .stats-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    padding-top: 34px;
  }

  .hero h1 {
    font-size: clamp(40px, 13vw, 56px);
  }

  .hero-visual {
    padding: 8px;
  }

  .stats-grid,
  .cards.four {
    grid-template-columns: 1fr;
  }

  .stats-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-grid div:last-child {
    border-bottom: 0;
  }

  .cards article,
  .note-box {
    padding: 22px;
  }

  .cards article {
    min-height: 0;
  }

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