@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;450;500;550;600;650;700&family=Manrope:wght@400;500;600;650;700;750;800&display=swap');
:root {
  --bg: #ffffff;
  --accent: #db2777;
  --text: #0a0a0a;
  --muted: #666663;
  --line: #e5e5e3;
  --ink: #0a0a0a;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 6px;
}
.wrap {
  width: min(1280px, calc(100% - 112px));
  margin: auto;
}
.nav {
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  font-family: 'Manrope', sans-serif;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -1.2px;
}
.brand span {
  font-weight: 500;
}
.brand i {
  font-size: 16px;
  font-style: normal;
  vertical-align: super;
  margin-left: 4px;
}
.nav-label {
  font-size: 16px;
  letter-spacing: 1.8px;
  color: var(--muted);
}
.nav-cta {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-cta > span {
  font-size: 23px;
  color: var(--accent);
}
.hero {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 65px;
  padding-top: 72px;
  padding-bottom: 79px;
  align-items: center;
}
.eyebrow {
  font-size: 16px;
  letter-spacing: 1.8px;
  font-weight: 600;
  margin: 0 0 28px;
  line-height: 1.6;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666663;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px #ec489915;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: 'Manrope', Arial, sans-serif;
}
h1 {
  font-size: clamp(60px, 6.8vw, 97px);
  font-weight: 650;
  letter-spacing: -6px;
  line-height: 1.055;
  margin-bottom: 28px;
}
h1 > span {
  color: var(--accent);
}
.intro {
  font-size: 21px;
  line-height: 1.5;
  letter-spacing: -0.4px;
  margin-bottom: 17px;
}
.hero-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 435px;
  margin-bottom: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--accent);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 22px;
  min-height: 58px;
  border-radius: 4px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #be185d;
  transform: translateY(-2px);
}
.button > span {
  font-size: 22px;
  font-weight: 400;
}
.micro {
  font-size: 16px;
  letter-spacing: 0.15px;
  margin: 14px 0 0;
  color: var(--muted);
}
.hero-stat {
  background: #f7f6f4;
  border: 1px solid #e5e5e3;
  border-radius: 7px;
  transform: rotate(2deg);
  overflow: hidden;
  position: relative;
}
.stat-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e5e3;
  padding: 24px 27px;
  font-size: 16px;
  letter-spacing: 1.6px;
  color: #666663;
}
.stat-top > span:last-child {
  font-size: 27px;
  line-height: 1;
}
.stat-main {
  padding: 48px 27px 38px;
}
.stat-label {
  font-size: 16px;
  color: #666663;
  margin-bottom: 17px;
}
.stat-number {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(58px, 6.4vw, 89px);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -5px;
  line-height: 1.1;
  margin-bottom: 13px;
  white-space: nowrap;
}
.stat-number > span {
  font-size: 0.55em;
  vertical-align: top;
  display: inline-block;
  margin: 9px 9px 0 0;
  letter-spacing: -1px;
}
.stat-sub {
  font-size: 16px;
  color: #666663;
  margin: 0;
}
.stat-bottom {
  margin: 0 27px;
  padding: 24px 0;
  border-top: 1px solid #e5e5e3;
  display: flex;
  gap: 16px;
  align-items: center;
}
.small-star {
  font-size: 39px;
  color: var(--accent);
}
.stat-bottom p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}
.stat-note {
  font-size: 16px;
  color: #666663;
  padding: 0 27px 21px;
  margin: 0;
}
.benefit-strip {
  background: #ec4899;
  color: #0a0a0a;
  padding: 23px 0;
}
.benefit-strip > .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.benefit-strip span {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.45px;
}
.benefit-strip span[aria-hidden] {
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
}
.section {
  padding-top: 96px;
  padding-bottom: 96px;
}
.opportunity {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 95px;
}
.section-heading > .eyebrow,
.section-heading > div > .eyebrow,
.cohort-copy > .eyebrow {
  color: var(--muted);
}
h2 {
  font-size: clamp(33px, 3.5vw, 47px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -2px;
  margin-bottom: 0;
}
h2 em {
  font-style: normal;
  color: var(--accent);
}
.opportunity-copy {
  padding-top: 39px;
}
.opportunity-copy > p:first-child {
  font-size: 21px;
  line-height: 1.45;
  letter-spacing: -0.4px;
}
.opportunity-copy > p:nth-child(2) {
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}
.text-link {
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  gap: 32px;
  align-items: center;
  border-bottom: 1px solid #d4d4d1;
  padding: 8px 0;
}
.text-link > span {
  color: var(--accent);
  font-size: 20px;
}
.partners {
  background: #f7f6f4;
  border-block: 1px solid #e5e5e3;
}
.partner-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 46px;
}
.partner-heading > p {
  max-width: 315px;
  color: #666663;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 2px;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #e5e5e3;
}
.benefit-grid article {
  padding: 29px 27px 31px;
  display: flex;
  flex-direction: column;
}
.benefit-grid article + article {
  border-left: 1px solid #e5e5e3;
}
.card-index {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #777773;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 55px;
}
.card-index > span {
  font-size: 27px;
  color: var(--accent);
}
h3 {
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.7px;
  margin-bottom: 17px;
}
.benefit-grid article > p {
  font-size: 16px;
  line-height: 1.8;
  color: #666663;
  max-width: 290px;
  margin-bottom: 31px;
}
.card-tag {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: #555552;
  margin-top: auto;
}
.cohort {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: center;
}
.cohort-number {
  font-family: 'Manrope', sans-serif;
  font-size: 230px;
  letter-spacing: -23px;
  line-height: 0.85;
  color: var(--accent);
  font-weight: 500;
  border-right: 1px solid var(--line);
  padding: 0 50px 10px 0;
}
.cohort-number > span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 2px;
  margin-top: 27px;
  padding-left: 9px;
  color: var(--text);
}
.cohort-copy h2 {
  margin-bottom: 23px;
}
.cohort-copy > p:not(.eyebrow) {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 390px;
}
.cohort-copy .capacity {
  display: inline-block;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 9px;
  font-size: 16px !important;
  color: var(--accent) !important;
  letter-spacing: 0.6px;
}
.apply-section {
  background: #f7f6f4;
  color: var(--ink);
  padding: 82px 0 77px;
}
.apply-inner {
  text-align: center;
}
.apply-inner > .eyebrow {
  margin-bottom: 21px;
}
.apply-inner > h2 {
  font-size: clamp(45px, 5.2vw, 72px);
  font-weight: 600;
  letter-spacing: -3.5px;
  line-height: 1.08;
  margin-bottom: 24px;
}
.apply-inner > p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.7;
}
.dark-button {
  background: var(--accent);
  color: #ffffff;
  margin-top: 13px;
  min-width: 258px;
}
.dark-button:hover {
  background: #be185d;
}
.apply-inner .apply-note {
  font-size: 16px !important;
  margin: 17px 0 0;
  color: #666663;
}
.apply-section a:focus-visible {
  outline-color: var(--ink);
}
footer {
  padding-top: 34px;
  padding-bottom: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
footer .brand {
  font-size: 20px;
}
footer > p,
footer > a:last-child {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
}
footer > a:last-child > span {
  margin-left: 18px;
  font-size: 17px;
}
::selection {
  background: #fce7f3;
  color: #0a0a0a;
}
@media (min-width: 1600px) {
  .hero {
    padding-top: 96px;
    padding-bottom: 100px;
  }
}
@media (max-width: 1050px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero {
    gap: 38px;
    grid-template-columns: 1.35fr 1fr;
  }
  h1 {
    letter-spacing: -4px;
  }
  .intro {
    font-size: 18px;
  }
  .hero-description {
    font-size: 16px;
  }
  .button {
    font-size: 16px;
    padding-inline: 18px;
    gap: 20px;
  }
  .stat-main {
    padding: 38px 20px;
  }
  .stat-top {
    padding: 20px;
  }
  .stat-bottom {
    margin-inline: 20px;
  }
  .stat-note {
    padding-inline: 20px;
    font-size: 16px;
  }
  .opportunity {
    gap: 45px;
  }
  .cohort {
    gap: 60px;
  }
  .cohort-number {
    font-size: 200px;
  }
  .benefit-grid article {
    padding: 24px 20px;
  }
  .nav-label {
    display: none;
  }
}
@media (max-width: 720px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .nav {
    height: 78px;
  }
  .brand {
    font-size: 21px;
  }
  .nav-cta {
    font-size: 16px;
    gap: 10px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 43px;
    padding-top: 44px;
    padding-bottom: 51px;
  }
  h1 {
    font-size: clamp(52px, 12.8vw, 85px);
    letter-spacing: -3.7px;
    margin-bottom: 24px;
  }
  .hero .eyebrow {
    font-size: 16px;
    letter-spacing: 1.3px;
    margin-bottom: 25px;
  }
  .intro {
    font-size: 19px;
  }
  .hero-description {
    font-size: 16px;
    max-width: 480px;
  }
  .hero-copy > .button {
    width: 100%;
    max-width: 410px;
    font-size: 16px;
  }
  .hero-stat {
    transform: none;
    max-width: 100%;
  }
  .stat-main {
    padding: 29px 25px;
  }
  .stat-number {
    font-size: 81px;
    letter-spacing: -4px;
  }
  .stat-top {
    padding: 19px 25px;
  }
  .stat-bottom {
    margin-inline: 25px;
    padding: 19px 0;
  }
  .stat-note {
    padding-inline: 25px;
    font-size: 16px;
  }
  .micro {
    font-size: 16px;
  }
  .benefit-strip {
    padding: 18px 0;
  }
  .benefit-strip > .wrap {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
  .benefit-strip span {
    font-size: 16px;
    letter-spacing: 1px;
  }
  .benefit-strip span[aria-hidden] {
    font-size: 16px;
  }
  .benefit-strip span:last-child {
    display: none;
  }
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .opportunity {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .eyebrow {
    font-size: 16px;
    margin-bottom: 22px;
  }
  h2 {
    font-size: 35px;
    letter-spacing: -1.5px;
  }
  .opportunity-copy {
    padding: 0;
  }
  .opportunity-copy > p:first-child {
    font-size: 20px;
  }
  .partner-heading {
    display: block;
    margin-bottom: 32px;
  }
  .partner-heading > p {
    margin-top: 24px;
    max-width: 100%;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .benefit-grid article {
    padding: 26px;
  }
  .benefit-grid article + article {
    border-left: 0;
    border-top: 1px solid #e5e5e3;
  }
  .card-index {
    margin-bottom: 26px;
  }
  .benefit-grid article > p {
    max-width: 100%;
    margin-bottom: 23px;
  }
  h3 {
    font-size: 23px;
  }
  .cohort {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .cohort-number {
    font-size: 160px;
    letter-spacing: -16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 33px;
    display: flex;
    align-items: flex-end;
    gap: 40px;
  }
  .cohort-number > span {
    font-size: 16px;
    letter-spacing: 1.4px;
    margin: 0 0 4px;
    padding: 0;
  }
  .cohort-copy > p:not(.eyebrow) {
    max-width: 100%;
  }
  .apply-section {
    padding: 60px 0;
  }
  .apply-inner > h2 {
    font-size: 45px;
    letter-spacing: -2.3px;
  }
  .apply-inner > p:not(.eyebrow) {
    font-size: 16px;
  }
  footer {
    flex-wrap: wrap;
    padding-block: 28px;
    gap: 22px;
  }
  footer > p {
    order: 3;
    width: 100%;
    border-top: 1px solid var(--line);
    padding-top: 20px;
  }
  footer > a:last-child {
    margin-left: auto;
  }
  .desktop {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
}

/* Agency enquiries */
.enquiry-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.enquiry-copy {
  padding-top: 14px;
}
.enquiry-copy h2 {
  font-size: clamp(36px, 4vw, 54px);
  letter-spacing: -2.4px;
}
.enquiry-intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 390px;
  margin: 25px 0 32px;
}
.onboarding-steps {
  list-style: none;
  counter-reset: steps;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 25px;
  max-width: 420px;
}
.onboarding-steps li {
  counter-increment: steps;
  position: relative;
  padding-left: 43px;
}
.onboarding-steps li:before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 16px;
  color: var(--accent);
  font-weight: 700;
}
.onboarding-steps strong {
  display: block;
  font-size: 16px;
  font-weight: 650;
  margin-bottom: 7px;
}
.onboarding-steps span {
  display: block;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}
.agency-form {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.form-eyebrow {
  font-size: 16px;
  letter-spacing: 1.7px;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 13px;
}
.agency-form h3 {
  font-size: 25px;
  margin-bottom: 27px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-field label {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}
.form-field label span {
  font-weight: 400;
  color: var(--muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d4d4d1;
  border-radius: 5px;
  padding: 12px;
  width: 100%;
  min-width: 0;
  min-height: 46px;
}
.form-field textarea {
  resize: vertical;
  min-height: 100px;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #777773;
}
.form-field select:invalid {
  color: #777773;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-color: var(--accent);
}
.agency-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  margin-top: 0;
}
.agency-form .button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}
.agency-form .button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.form-note {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 14px 0 0;
}
.form-setup-note {
  font-size: 16px;
  line-height: 1.6;
  color: #9d174d;
  margin: 12px 0 0;
}
.form-honey {
  display: none !important;
}
@media (max-width: 1050px) {
  .enquiry-layout {
    gap: 38px;
  }
  .agency-form {
    padding: 25px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media (max-width: 720px) {
  .enquiry-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .enquiry-copy {
    padding: 0;
  }
  .enquiry-copy h2 {
    font-size: 38px;
    letter-spacing: -1.8px;
  }
  .enquiry-intro {
    font-size: 16px;
    max-width: 100%;
  }
  .onboarding-steps {
    max-width: 100%;
  }
  .agency-form {
    padding: 25px 20px;
  }
  .agency-form h3 {
    font-size: 23px;
  }
  .nav-cta {
    font-size: 16px;
  }
}

.brand-disclaimer {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  padding-bottom: 25px;
  margin-bottom: 0;
}

/* Readable type and agency FAQ */
body {
  font-size: 16px;
  line-height: 1.6;
}
strong {
  font-weight: 700;
  color: var(--ink);
}
.hero-description strong,
.benefit-grid strong,
.cohort-copy strong,
.enquiry-intro strong {
  color: var(--ink);
}
.button {
  line-height: 1.4;
}
.eyebrow,
.hero .eyebrow,
.form-eyebrow,
.nav-label,
.stat-top,
.card-tag,
.benefit-strip span,
.cohort-number > span {
  letter-spacing: 0.055em;
}
.status-dot {
  flex: 0 0 7px;
}
.micro,
.stat-note,
.stat-label,
.stat-sub,
.card-tag {
  line-height: 1.6;
}
.stat-number {
  line-height: 1.1;
}
.brand {
  line-height: 1.2;
}
.nav-cta {
  line-height: 1.4;
}
.form-field input,
.form-field select,
.form-field textarea {
  line-height: 1.5;
  min-height: 50px;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #666663;
}
.form-field select:invalid {
  color: #666663;
}
.onboarding-steps strong {
  line-height: 1.5;
}
.onboarding-steps li:before {
  line-height: 1.5;
}
.faq-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.faq-heading {
  margin-bottom: 36px;
}
.faq-heading .eyebrow {
  color: var(--muted);
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.5;
  padding: 23px 4px;
  cursor: pointer;
}
.faq-list summary::marker {
  color: var(--accent);
}
.faq-list summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}
.faq-list details[open] summary {
  padding-bottom: 13px;
}
.faq-list details p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 850px;
  margin: 0;
  padding: 0 4px 25px;
}
.brand-disclaimer {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.benefit-strip span {
  line-height: 1.5;
}
.nav {
  gap: 25px;
}
@media (max-width: 720px) {
  .nav {
    height: auto;
    min-height: 78px;
    padding-block: 20px;
    flex-wrap: wrap;
    gap: 14px;
  }
  .nav-cta {
    flex: 1 1 100%;
    justify-content: space-between;
    padding: 12px 15px;
    border: 1px solid #fbcfe8;
    background: #fdf2f8;
    border-radius: 4px;
  }
  .hero {
    padding-top: 32px;
  }
  .hero .eyebrow {
    align-items: flex-start;
  }
  .hero .status-dot {
    margin-top: 9px;
  }
  .benefit-strip > .wrap {
    flex-direction: column;
    gap: 12px;
  }
  .benefit-strip span[aria-hidden] {
    display: none;
  }
  .cohort-number {
    font-size: 128px;
    letter-spacing: -12px;
    gap: 24px;
    align-items: center;
  }
  .cohort-number > span {
    flex: 1;
    letter-spacing: 0.04em;
  }
  .faq-section {
    padding-block: 55px;
  }
  .faq-heading {
    margin-bottom: 26px;
  }
  .faq-list summary {
    padding-block: 20px;
  }
  .agency-form .button {
    min-width: 0;
  }
  .brand-disclaimer {
    padding-bottom: 25px;
  }
  footer > a:last-child {
    margin-left: 0;
  }
}

.application-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: -8px 0 26px;
}
.thank-you-program {
  font-size: 16px;
  letter-spacing: 0.055em;
  color: var(--muted);
  line-height: 1.5;
}
.thank-you-main {
  max-width: 900px;
  padding-top: 72px;
  padding-bottom: 80px;
}
.thank-you-main h1 {
  font-size: clamp(44px, 5.5vw, 72px);
  letter-spacing: -3px;
  line-height: 1.1;
  margin-bottom: 27px;
}
.thank-you-main .eyebrow {
  color: var(--accent);
}
.thank-you-intro {
  font-size: 19px;
  line-height: 1.7;
  max-width: 660px;
  color: var(--muted);
  margin-bottom: 30px;
}
.next-steps {
  background: #f7f6f4;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  max-width: 720px;
}
.next-steps h2 {
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
}
.next-steps p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 16px;
}
.next-steps p:last-child {
  margin-bottom: 0;
}
.thank-you-page footer {
  border-top: 1px solid var(--line);
}
@media (max-width: 720px) {
  .thank-you-program {
    width: 100%;
  }
  .thank-you-main {
    padding-block: 44px;
  }
  .thank-you-main h1 {
    font-size: 44px;
    letter-spacing: -2px;
  }
  .thank-you-intro {
    font-size: 18px;
  }
  .next-steps {
    padding: 24px 20px;
  }
  .next-steps h2 {
    font-size: 26px;
  }
  .thank-you-main > .button {
    width: 100%;
    gap: 15px;
  }
}
