:root {
  --navy: #0a0a2b;
  --navy-soft: #14143f;
  --coral: #f15a4d;
  --coral-deep: #e14636;
  --pink: #f7a89e;
  --pink-soft: #fbcac2;
  --white: #ffffff;
  --ink: #0a0a2b;

  --font-display: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;

  --gutter: clamp(20px, 6vw, 64px);
  --max-width: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--navy);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 900;
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.01em;
}

p { margin: 0; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--coral);
  color: var(--white);
  padding: 12px 20px;
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* ---------- Logo ---------- */
.logo-svg {
  display: block;
  height: clamp(24px, 3vw, 34px);
  aspect-ratio: 543.35 / 78.79;
  width: auto;
  color: var(--white);
  fill: currentColor;
}
.logo-svg--small { height: clamp(18px, 2vw, 24px); }

/* ---------- Hero ---------- */
.hero {
  background: var(--navy);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--gutter);
  gap: clamp(32px, 8vh, 96px);
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 8vh, 80px);
  flex: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero__headline {
  align-self: flex-end;
  text-align: right;
  font-size: clamp(2.4rem, 6.4vw, 5rem);
  max-width: 900px;
}

.hero__headline .line { display: block; }
.line--dark { color: var(--coral); }
.line--light { color: var(--pink); }
.line--white { color: var(--white); }

.cta-row {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
}

.cta {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--pink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  max-width: 320px;
  transition: opacity 0.15s ease;
}
.cta:hover { opacity: 0.75; }
.cta strong { color: var(--white); font-weight: 800; }
.cta__arrow { width: 30px; height: 14px; flex-shrink: 0; color: var(--coral); }

.cta-divider {
  width: 2px;
  align-self: stretch;
  min-height: 48px;
  background: var(--coral);
  display: none;
}

.legal {
  font-size: 0.75rem;
  color: var(--pink-soft);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  opacity: 0.8;
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(56px, 10vw, 120px) var(--gutter);
}
.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section--navy { background: var(--navy); color: var(--white); }
.section--pink { background: var(--pink-soft); color: var(--ink); }
.section--coral { background: var(--coral); color: var(--white); }
.section--final { text-align: left; }

.section__heading {
  font-size: clamp(1.8rem, 4.4vw, 3.2rem);
  max-width: 18ch;
  margin-bottom: clamp(28px, 5vw, 48px);
}
.section__heading--big { max-width: 16ch; }
.section__heading--navy { color: var(--navy); }
.section__heading--white { color: var(--white); }
.accent-navy-coral { color: var(--coral); }
.section--navy .accent-navy-coral,
.section--coral .accent-navy-coral { color: var(--pink); }

.section__lead {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  max-width: 48ch;
  opacity: 0.75;
  margin: calc(-1 * clamp(12px, 3vw, 24px)) 0 clamp(24px, 4vw, 40px);
}

/* value list */
.value-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px 40px;
  max-width: 900px;
}
.value-list li {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  padding-left: 28px;
  position: relative;
  color: var(--navy);
}
.value-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  background: var(--coral);
  border-radius: 2px;
}

/* about / statement */
.statement {
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  line-height: 1.15;
  color: var(--pink);
  max-width: 30ch;
  margin-top: clamp(28px, 6vw, 56px);
}
.statement sup {
  font-size: 0.5em;
  line-height: 0;
}
.statement__footnote {
  margin-top: 14px;
  color: var(--pink-soft);
  font-size: 0.9rem;
  opacity: 0.85;
}
.about-copy {
  margin-top: clamp(32px, 6vw, 64px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1000px;
}
.about-copy p {
  color: var(--white);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  opacity: 0.92;
}

/* how it works */
.steps {
  list-style: none;
  margin: clamp(28px, 6vw, 56px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px 28px;
}
.step__number {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 10px;
}
.step__title {
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  margin-bottom: 10px;
  color: var(--white);
}
.step__body {
  font-size: 0.95rem;
  opacity: 0.92;
}

/* sounds */
.sounds {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-bottom: clamp(40px, 8vw, 72px);
}
.sound__noise {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: var(--coral);
  word-break: break-word;
  margin-bottom: 12px;
  line-height: 1.05;
}
.sound__caption {
  color: var(--pink-soft);
  font-size: 0.95rem;
  max-width: 34ch;
}
.pullquote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  color: var(--white);
  max-width: 60ch;
  border-top: 2px solid var(--coral);
  padding-top: clamp(24px, 5vw, 40px);
}

/* final cta */
.lead {
  margin-top: 18px;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--navy);
  opacity: 0.85;
  max-width: 50ch;
}
.cta-row--dark { margin-top: clamp(36px, 6vw, 56px); }
.cta--navy { color: var(--coral-deep); }
.cta--navy strong { color: var(--navy); }
.cta-divider--navy { background: var(--navy); }

/* footer */
.footer {
  background: var(--navy);
  padding: clamp(32px, 6vw, 48px) var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer .legal { opacity: 0.6; }

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .cta-divider { display: block; }
}

@media (min-width: 720px) {
  .hero__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

@media (max-width: 719px) {
  .hero__headline {
    align-self: flex-start;
    text-align: left;
  }
  .cta {
    max-width: none;
  }
}
