:root {
  --purple: #bd00d4;
  --deep: #9200b2;
  --lilac: #efd1ff;
  --pale: #f3d8ff;
  --orange: #ff5a00;
  --text: #ac00c8;
  --white: #ffffff;
  --ink: #2c2730;
  --max: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Panton", "Arial Rounded MT Bold", "Avenir Next", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
}

h1,
h2,
h3,
.btn,
.big-cta {
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 7vw, 72px);
  margin: 0 0 30px;
}

h2 {
  font-size: clamp(34px, 4vw, 48px);
  margin: 0 0 18px;
}

h3 {
  font-size: 24px;
  margin: 0 0 14px;
}

p {
  font-weight: 400;
  line-height: 1.15;
}

a {
  color: inherit;
}

.wrap {
  max-width: var(--max);
  margin: auto;
  padding: 0 28px;
}

.narrow {
  max-width: var(--max);
}

.top-strip {
  height: 18px;
  background: var(--purple);
}

.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 2px 12px rgba(82, 0, 100, 0.08);
}

.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand picture {
  display: block;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: min(280px, 46vw);
  height: auto;
}

.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a {
  font-size: 12px;
  font-weight: 900;
  color: var(--text);
  text-decoration: none;
}

.menu-toggle {
  display: none;
}

.hero {
  height: 56.25vw;
  min-height: 0;
  position: relative;
  overflow: hidden;
  background: #2f2630;
}

.slides,
.slide {
  position: absolute;
  inset: 0;
}

.slide {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.slide.is-active {
  opacity: 1;
}

.hero-dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  border: 0;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: var(--white);
}

.hero-hotspot {
  position: absolute;
  left: 34%;
  top: 50%;
  width: 32%;
  height: 16%;
  border-radius: 999px;
}

.section-white {
  background: var(--white);
  padding: 72px 0;
}

.section-lilac,
.stats-band {
  background: var(--lilac);
  padding: 62px 0;
}

.intro .btn {
  margin-top: 10px;
}

.button-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.btn,
.big-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 18px 38px;
  text-decoration: none;
  font-size: 24px;
}

.btn.primary,
.big-cta {
  background: var(--purple);
  color: var(--white);
}

.btn.secondary {
  background: #ffd7df;
  color: var(--orange);
  border: 2px solid rgba(255, 90, 0, 0.35);
}

.micro {
  font-size: 14px;
  margin-top: 24px;
}

.split {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.stats-band .section-heading {
  margin-bottom: 22px;
}

.stats-band h2 {
  font-size: clamp(32px, 3.7vw, 44px);
  white-space: nowrap;
}

.stats-band .section-heading p {
  font-size: 14px;
  line-height: 1.08;
  margin-top: 4px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.stat-card {
  background: var(--purple);
  color: var(--white);
  border-radius: 18px;
  padding: 24px 20px;
  min-height: 188px;
  display: flex;
  flex-direction: column;
}

.stat-card strong {
  font-size: 42px;
  font-weight: 900;
  line-height: 0.9;
}

.stat-card span {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.05;
  margin: 14px 0;
}

.stat-card small {
  margin-top: auto;
  font-size: 9px;
  font-weight: 400;
}

.card-grid {
  display: grid;
  gap: 22px;
}

.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.info-card {
  background: #f2cffb;
  border-radius: 20px;
  padding: 38px 34px;
  min-height: 180px;
}

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

.info-card.purple {
  background: var(--purple);
  color: var(--white);
}

.info-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
  font-weight: 400;
  line-height: 1.15;
}

.arrive-band {
  background: var(--orange);
  color: var(--white);
  padding: 42px 0;
}

.arrive-inner {
  display: grid;
  grid-template-columns: minmax(120px, 180px) 1fr;
  align-items: center;
  gap: 34px;
}

.arrive-inner img {
  width: 100%;
  max-width: 150px;
  height: auto;
  justify-self: end;
}

.arrive-inner h2 {
  font-size: 38px;
  margin: 0;
}

.arrive-inner p {
  max-width: 470px;
  margin: 5px 0 0;
  color: var(--white);
}

.orange-title {
  color: var(--orange);
}

.consequence-grid .info-card {
  min-height: 270px;
}

.sources h2 {
  font-size: 68px;
}

.source-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 60px;
}

.source-list li {
  font-weight: 400;
  margin: 14px 0;
  line-height: 1.15;
}

.source-list a {
  color: var(--text);
  font-weight: 800;
}

.big-cta {
  display: flex;
  font-size: 36px;
  padding: 26px 36px;
}

.site-footer {
  padding: 110px 20px 160px;
  text-align: center;
  background: var(--white);
}

.site-footer .footer-logo {
  width: 250px;
  height: auto;
}

.site-footer p {
  color: var(--ink);
  font-size: 13px;
  margin-top: 70px;
}

@media (max-width: 800px) {
  .nav {
    height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
    gap: 16px;
  }

  .brand-logo {
    width: 56px;
  }

  .menu-toggle {
    display: block;
    background: var(--purple);
    color: var(--white);
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 900;
  }

  .nav-links {
    display: none;
    position: absolute;
    right: 24px;
    top: 88px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
    padding: 16px;
    flex-direction: column;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    height: 56.25vw;
    min-height: 0;
  }

  .split,
  .stats-grid,
  .card-grid.two {
    grid-template-columns: 1fr;
  }

  .stats-band h2 {
    white-space: normal;
  }

  .stats-grid {
    gap: 14px;
  }

  .arrive-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .arrive-inner img {
    justify-self: center;
    max-width: 150px;
  }

  .button-row {
    gap: 12px;
  }

  .btn {
    width: 100%;
    font-size: 20px;
  }

  .sources h2 {
    font-size: 48px;
  }

  .big-cta {
    font-size: 26px;
  }

  .wrap {
    padding: 0 22px;
  }
}
