:root {
  --pink: #e3126d;
  --pink-dark: #b30851;
  --black: #050505;
  --ink: #17141a;
  --muted: #67616c;
  --cream: #fff7fb;
  --line: #ead5df;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

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

.narrow {
  width: min(900px, calc(100% - 32px));
}

.topline {
  background: var(--black);
  color: var(--white);
  text-align: center;
  font-weight: 900;
  font-size: clamp(20px, 3vw, 36px);
  line-height: 1.1;
  padding: 20px 0;
}

.topline p {
  margin: 0;
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(227, 18, 109, 0.12), transparent 24rem),
    linear-gradient(180deg, #fff 0%, #fff7fb 72%, #fff 100%);
  text-align: center;
  padding: 28px 0 64px;
}

.hero__inner {
  position: relative;
}

.brand {
  width: min(310px, 72vw);
  margin: 0 auto 18px;
}

.live {
  margin: 0 auto 22px;
  color: var(--black);
  font-weight: 800;
  font-size: clamp(17px, 2vw, 25px);
  line-height: 1.25;
}

.live span {
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 7px;
  border-radius: 999px;
  background: var(--pink);
}

.hero h1 {
  max-width: 960px;
  margin: 0 auto;
  color: var(--black);
  text-transform: uppercase;
  font-size: clamp(42px, 8.4vw, 95px);
  line-height: 0.92;
  letter-spacing: 0;
  font-weight: 900;
}

.hero h1 span,
.hero h1 strong,
.hero h1 b {
  display: block;
}

.hero h1 strong {
  color: var(--pink);
}

.hero h1 b {
  font-size: clamp(31px, 5.8vw, 68px);
}

.hero__sub {
  margin: 22px auto 16px;
  text-transform: uppercase;
  font-weight: 900;
  font-size: clamp(19px, 3vw, 36px);
  line-height: 1.12;
  max-width: 760px;
}

.joan--hero {
  width: min(390px, 84vw);
  margin: 8px auto -4px;
}

.cta {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 17px 34px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #f72586 0%, var(--pink) 52%, var(--pink-dark) 100%);
  color: var(--white);
  box-shadow: 0 15px 30px rgba(227, 18, 109, 0.25);
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 19px 35px rgba(227, 18, 109, 0.32);
}

.cta--wide {
  margin: 34px auto 0;
  display: flex;
  width: min(740px, 100%);
}

.cta--left {
  margin-top: 12px;
}

.marks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(780px, 100%);
  margin: 28px auto 0;
  align-items: center;
}

.marks img {
  width: 100%;
}

.program {
  padding: 70px 0;
  background: var(--white);
}

.program h2 {
  margin: 0 0 38px;
  text-align: center;
  color: var(--black);
  text-transform: uppercase;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 0.95;
  font-weight: 900;
}

.program h2 span {
  display: block;
  color: var(--pink);
}

.days {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.day {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 230px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(24, 7, 18, 0.07);
}

.day:last-child {
  grid-column: 1 / -1;
  width: min(640px, 100%);
  margin: 0 auto;
}

.day img {
  width: 140px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.day p {
  margin: 0 0 8px;
  color: var(--pink);
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 900;
}

.day h3 {
  margin: 0;
  color: var(--black);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.16;
  font-weight: 800;
}

.bio {
  padding: 72px 0;
  background: var(--black);
  color: var(--white);
}

.bio__inner {
  display: grid;
  grid-template-columns: minmax(260px, 390px) 1fr;
  gap: 56px;
  align-items: center;
}

.bio__image {
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(180deg, #2b0a1a, #090507);
  overflow: hidden;
}

.bio__image img {
  width: min(350px, 90%);
}

.eyebrow {
  margin: 0;
  color: #ff67ab;
  text-transform: uppercase;
  font-size: 21px;
  font-weight: 900;
}

.bio h2 {
  margin: 2px 0 22px;
  text-transform: uppercase;
  font-size: clamp(42px, 7vw, 74px);
  line-height: 0.9;
  font-weight: 900;
}

.bio__copy p:not(.eyebrow) {
  margin: 0 0 16px;
  color: #f5eaf0;
  font-size: 18px;
  line-height: 1.55;
}

.footer {
  padding: 34px 0;
  background: #0f0c0e;
  color: #d9d0d5;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
}

.footer p {
  margin: 0 auto 10px;
  max-width: 980px;
}

.footer a {
  color: var(--white);
}

.popup {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.popup.is-open {
  display: flex;
}

.popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
}

.popup__panel {
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border-radius: 8px;
  background: var(--white);
  padding: 28px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.popup__close {
  position: absolute;
  top: 10px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #f1edf0;
  color: var(--black);
  cursor: pointer;
  font-size: 27px;
  line-height: 1;
}

.popup__logo {
  width: 180px;
  margin: 0 auto 12px;
}

.popup h2 {
  margin: 0 0 8px;
  text-align: center;
  font-size: 32px;
  font-weight: 900;
}

.popup p {
  margin: 0 0 12px;
  text-align: center;
  line-height: 1.4;
}

.hint {
  color: var(--muted);
  font-size: 14px;
}

.form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.form label {
  display: grid;
  gap: 6px;
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
}

.form input,
.form select {
  width: 100%;
  height: 48px;
  border: 1px solid #d6c8d0;
  border-radius: 6px;
  padding: 0 13px;
  background: #fff;
  color: var(--black);
  outline: none;
}

.form input:focus,
.form select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(227, 18, 109, 0.13);
}

.phone {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 8px;
}

.terms {
  grid-template-columns: 18px 1fr;
  align-items: start;
}

.terms input {
  height: 18px;
  margin-top: 2px;
  accent-color: var(--pink);
  appearance: auto;
}

.terms span {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.35;
}

.form__error {
  min-height: 18px;
  color: #b00020;
  text-align: left !important;
  font-size: 13px;
  font-weight: 700;
}

.cta--form {
  width: 100%;
}

.thanks-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(227, 18, 109, 0.18), transparent 28rem),
    var(--black);
  color: var(--white);
}

.thanks {
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 22px;
  padding: 32px;
  text-align: center;
}

.thanks__card {
  width: min(720px, 100%);
}

.thanks h1 {
  margin: 0 0 14px;
  font-size: clamp(42px, 8vw, 82px);
  line-height: 0.95;
  font-weight: 900;
}

.thanks p {
  margin: 0 auto 24px;
  max-width: 620px;
  color: #f5eaf0;
  font-size: 18px;
  line-height: 1.5;
}

@media (max-width: 820px) {
  .hero {
    padding-bottom: 46px;
  }

  .marks,
  .days,
  .bio__inner {
    grid-template-columns: 1fr;
  }

  .day,
  .day:last-child {
    width: 100%;
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .topline {
    font-size: 21px;
  }

  .hero h1 {
    font-size: clamp(36px, 12vw, 58px);
  }

  .hero h1 b {
    font-size: clamp(38px, 13vw, 62px);
  }

  .cta {
    width: 100%;
    padding-inline: 18px;
    font-size: 15px;
  }

  .day {
    grid-template-columns: 92px 1fr;
    gap: 13px;
    min-height: 0;
    padding: 14px;
  }

  .day img {
    width: 92px;
  }

  .day p {
    font-size: 20px;
  }

  .day h3 {
    font-size: 15px;
  }

  .bio {
    padding: 54px 0;
  }

  .bio__inner {
    gap: 28px;
  }

  .popup {
    padding: 12px;
  }

  .popup__panel {
    padding: 24px 18px;
  }

  .phone {
    grid-template-columns: 96px 1fr;
  }
}
