:root {
  --pink: #ffd0dd;
  --hot-pink: #ff4f7e;
  --mint: #b8eee8;
  --coral: #ff9a7b;
  --ink: #111111;
  --muted: #67626a;
  --line: #eadde4;
  --paper: #fff7fa;
  --white: #ffffff;
  --shadow: 0 26px 80px rgba(83, 38, 55, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 8%, rgba(184, 238, 232, 0.42), transparent 28%),
    linear-gradient(145deg, rgba(255, 208, 221, 0.72), rgba(255, 255, 255, 0) 36%),
    linear-gradient(180deg, #fff9fb 0%, #fff5f8 46%, #ffffff 100%);
  font-family: "Inter", Arial, sans-serif;
}

img {
  max-width: 100%;
}

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

.container {
  width: min(1140px, 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: 76px;
  gap: 24px;
}

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

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

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

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
}

.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(48px, 6vw, 82px) 0 44px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(440px, 0.98fr) minmax(420px, 1.02fr);
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
  min-height: min(700px, calc(100vh - 118px));
}

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

.hero h1 {
  max-width: 700px;
  font-size: clamp(42px, 4.7vw, 64px);
  line-height: 1.06;
}

.lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.62;
}

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

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

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

.hero-visual {
  position: relative;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 22px;
  background: rgba(255, 255, 255, 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: 16px;
}

.hero-card {
  position: absolute;
  left: 28px;
  bottom: 28px;
  display: grid;
  gap: 4px;
  max-width: 260px;
  padding: 16px 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 46px rgba(83, 38, 55, 0.16);
  backdrop-filter: blur(12px);
}

.hero-card strong {
  font-size: 15px;
}

.hero-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.stats {
  padding: 8px 0 34px;
}

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

.stats-grid div {
  min-height: 116px;
  padding: 24px 26px;
  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(68px, 8vw, 104px) 0;
}

.soft {
  background:
    linear-gradient(180deg, #ffffff, #fff8fb);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dark {
  background: linear-gradient(135deg, #111111, #201820 58%, #2b1d24);
  color: var(--white);
}

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

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

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

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

.section h2 {
  max-width: 700px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.06;
}

.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: 18px;
  background: var(--white);
  padding: 28px;
}

.cards article {
  min-height: 188px;
  box-shadow: 0 16px 38px rgba(87, 42, 57, 0.065);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.cards article:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(87, 42, 57, 0.1);
}

.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: 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  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, #fff1f6, #ffffff 72%);
  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;
  }

  .hero-card {
    left: 24px;
    bottom: 24px;
  }

  .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(38px, 12vw, 52px);
  }

  .hero-visual {
    padding: 8px;
  }

  .hero-card {
    position: static;
    max-width: none;
    margin-top: 10px;
  }

  .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;
  }
}
