:root {
  --ink: #22211f;
  --muted: #77716b;
  --line: #dfddd9;
  --soft: #f4f1ee;
  --cream: #f8f7f5;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.64);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #eceae7;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0;
  overflow-x: hidden;
}

.reveal {
  opacity: 0;
  filter: blur(var(--reveal-blur, 0));
  transform:
    translate3d(var(--reveal-x, 0), var(--reveal-y, 18px), 0)
    scale(var(--reveal-scale, 1));
  transition:
    opacity 880ms ease,
    filter 960ms ease,
    transform 1040ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

.reveal[data-reveal="left"] {
  --reveal-x: -20px;
  --reveal-y: 0;
}

.reveal[data-reveal="right"] {
  --reveal-x: 20px;
  --reveal-y: 0;
}

.reveal[data-reveal="down"] {
  --reveal-x: 0;
  --reveal-y: -16px;
}

.reveal[data-reveal="fade"] {
  --reveal-y: 0;
}

.reveal[data-reveal="soft"] {
  --reveal-y: 12px;
  --reveal-blur: 4px;
}

.reveal[data-reveal="scale"] {
  --reveal-y: 14px;
  --reveal-scale: 0.985;
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.parallax-layer {
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(var(--parallax-scale, 1.025));
  transition: transform 180ms linear;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .parallax-layer,
  .outline-pill,
  .black-pill,
  .hero-button,
  .outline-pill::before,
  .black-pill::before,
  .hero-button::before {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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

.page-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  background: var(--cream);
  overflow: hidden;
}

.identity-section,
.program-section,
.tech-section,
.learning-section,
.testimonials-section,
.benefits-section,
.fit-section,
.faq-section,
.footer {
  width: min(100%, 724px);
  margin-left: auto;
  margin-right: auto;
}

.image-placeholder {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(0, 0, 0, 0.08)),
    repeating-linear-gradient(45deg, #d5d1cb 0 14px, #c7c2bb 14px 28px);
}

.image-placeholder::after {
  content: "PLACEHOLDER";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.26);
}

.outline-pill,
.black-pill,
.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition:
    background-color 260ms ease,
    border-color 260ms ease,
    color 260ms ease,
    box-shadow 320ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.outline-pill::before,
.black-pill::before,
.hero-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: translateX(-115%);
  transition:
    opacity 260ms ease,
    transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
}

.outline-pill > *,
.black-pill > *,
.hero-button > * {
  position: relative;
  z-index: 1;
}

.outline-pill:hover,
.outline-pill:focus-visible,
.black-pill:hover,
.black-pill:focus-visible,
.hero-button:hover,
.hero-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(45, 22, 6, 0.18);
}

.outline-pill:hover::before,
.outline-pill:focus-visible::before,
.black-pill:hover::before,
.black-pill:focus-visible::before,
.hero-button:hover::before,
.hero-button:focus-visible::before {
  opacity: 1;
  transform: translateX(115%);
}

.outline-pill:focus-visible,
.black-pill:focus-visible,
.hero-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 3px;
}

.outline-pill {
  border: 1px solid rgba(255, 255, 255, 0.76);
  color: #fff;
}

.outline-pill:hover,
.outline-pill:focus-visible {
  border-color: #fff;
  background: #fff;
  color: #2d1606;
}

.black-pill {
  background: #090909;
  color: #fff;
  min-width: 128px;
}

.black-pill:hover,
.black-pill:focus-visible {
  background: #2d1606;
  color: #fff;
}

.hero {
  position: relative;
  height: 285px;
  overflow: hidden;
  color: #fff;
  background: #8c7666;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.image-placeholder--hero {
  background: url("assets/hero-bioreset.png") center / cover no-repeat;
}

.image-placeholder--hero::after {
  content: none;
}

.hero::before {
  content: none;
  position: absolute;
  inset: 0;
  background: none;
  z-index: 1;
}

.topbar,
.hero-copy,
.hero-title,
.hero-button,
.hero-stat,
.hero-progress-card {
  position: relative;
  z-index: 2;
}

.topbar {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: start;
  gap: 22px;
  padding: 18px 34px 0;
  font-size: 10px;
  line-height: 1.2;
}

.brand {
  font-size: 10px;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  max-width: 315px;
}

.nav a {
  max-width: 78px;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-actions .outline-pill {
  min-height: 22px;
  padding: 0 15px;
  font-size: 10px;
}

.hero-copy {
  width: 166px;
  margin: 128px 0 0 34px;
  font-size: 14px;
  line-height: 1.16;
  font-weight: 400;
}

.hero-copy p {
  margin: 0;
}

.hero-title {
  position: absolute;
  top: 67px;
  left: 193px;
  margin: 0;
  font-size: 51px;
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.hero-title span {
  display: block;
}

.hero-title span + span {
  margin-left: 104px;
}

.hero-button {
  position: absolute;
  left: 300px;
  bottom: 27px;
  background: #fff;
  color: #35302d;
  min-width: 126px;
}

.hero-button:hover,
.hero-button:focus-visible,
.support-cta:hover,
.support-cta:focus-visible {
  background: #2d1606;
  color: #fff;
}

.hero-stat {
  position: absolute;
  right: 39px;
  bottom: 16px;
  width: 141px;
  height: 77px;
  padding: 18px 0 0 25px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(8px);
}

.hero-stat b {
  display: block;
  font-size: 17px;
  font-weight: 500;
}

.hero-stat span {
  display: block;
  margin-top: 2px;
  font-size: 10px;
}

.hero-kicker,
.hero-metrics,
.hero-note {
  position: absolute;
  z-index: 2;
}

.hero-kicker {
  left: 300px;
  top: 150px;
  width: 230px;
  font-size: 10px;
  line-height: 1.25;
  text-align: center;
}

.hero-metrics {
  display: none;
}

.cta-note {
  margin: 8px 0 0;
  color: #6f6964;
  font-size: 10px;
  line-height: 1.25;
}

.hero-note {
  left: 300px;
  bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.avatar-row {
  display: flex;
  margin-top: 9px;
}

.avatar-row i {
  width: 14px;
  height: 14px;
  margin-right: -3px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: #6e5445;
}

.identity-section {
  padding: 12px 58px 14px;
  text-align: center;
  background: #f7f6f4;
}

.identity-section h2 span {
  display: block;
}

.identity-subtitle {
  width: min(100%, 820px);
  margin: 14px auto 0;
  color: #4f4944;
  font-size: 12px;
  line-height: 1.45;
}

.identity-subtitle strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-weight: 500;
}

.progress-card {
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.progress-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 10px;
}

.progress-bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #ddd9d3;
}

.progress-bar span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: #3f2e2b;
}

.progress-card .black-pill {
  width: 100%;
  margin-top: 14px;
  font-size: 10px;
}

.progress-card small,
.catalog-banner small {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  opacity: 0.82;
}

.hero-progress-card {
  position: absolute;
  right: clamp(18px, 6vw, 34px);
  bottom: 18px;
  width: min(390px, calc(100% - 36px));
  color: #15110f;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.38));
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 24px 54px rgba(27, 18, 14, 0.22);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.hero-progress-card .progress-label {
  color: #120f0d;
  font-size: 11px;
}

.hero-progress-card .progress-bar {
  background: rgba(219, 213, 205, 0.72);
}

.hero-progress-card .black-pill {
  min-height: 36px;
  font-size: 10px;
}

.hero-proof-avatars {
  display: block;
  width: clamp(62px, 6.2vw, 96px);
  height: auto;
  margin-top: 12px;
}

.hero-progress-card small {
  color: #201a17;
}

h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.03;
  font-weight: 500;
}

.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 9px;
}

.persona-card {
  position: relative;
  height: 210px;
  overflow: hidden;
  border-radius: 5px;
  text-align: left;
  color: #fff;
}

.persona-card .image-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.persona-card img.image-placeholder::after {
  content: none;
}

.persona-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 44%, rgba(40, 30, 23, 0.64));
}

.persona-content {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 11px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.persona-content h3 {
  margin: 0 0 7px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.persona-content span,
.persona-content a {
  display: inline-flex;
  max-width: 160px;
  min-height: 19px;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 99px;
  font-size: 10px;
  white-space: normal;
  line-height: 1.15;
  transition:
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.persona-content a:hover,
.persona-content a:focus-visible {
  background: #fff;
  color: #24211f;
  border-color: #fff;
}

.recognition-panel {
  width: min(100%, 608px);
  margin: 18px auto 0;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  text-align: left;
}

.recognition-panel h3 {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 500;
}

.recognition-panel ul,
.fit-card ul {
  margin: 0;
  padding-left: 18px;
}

.recognition-panel li,
.fit-card li {
  margin-bottom: 7px;
  color: #5f5a56;
  font-size: 11px;
  line-height: 1.28;
}

.recognition-panel p,
.fit-card p {
  margin: 12px 0 0;
  color: #4f4944;
  font-size: 11px;
  line-height: 1.35;
}

.program-section {
  position: relative;
  height: 325px;
  padding: 24px 57px;
  overflow: hidden;
  background: #fbfaf9;
}

.program-head {
  position: relative;
  z-index: 1;
  width: 252px;
}

.program-head h2 {
  text-align: left;
}

.program-head p {
  margin: 12px 0 0;
  color: #6d6762;
  font-size: 11px;
  line-height: 1.25;
}

.drop-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: url("assets/lha-lala-new.png") center / cover no-repeat;
}

.drop-visual::after {
  content: none;
}

.float-card {
  position: absolute;
  z-index: 1;
  width: 119px;
  min-height: 91px;
  padding: 18px 14px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(30, 20, 10, 0.04);
}

.float-card b {
  display: block;
  margin-bottom: 12px;
  font-size: 11px;
  line-height: 1.15;
}

.float-card span {
  display: block;
  color: #5d5854;
  font-size: 10px;
  line-height: 1.25;
}

.float-card--top {
  top: 34px;
  right: 166px;
}

.float-card--left {
  top: 188px;
  left: 190px;
}

.float-card--right {
  top: 152px;
  right: 39px;
}

.float-card--bottom-left {
  left: 58px;
  bottom: 8px;
}

.float-card--bottom {
  right: 220px;
  bottom: 36px;
}

.program-section .black-pill {
  position: absolute;
  z-index: 1;
  right: 66px;
  bottom: 43px;
}

.recognize-section {
  display: grid;
  grid-template-columns: minmax(0, 56%) minmax(260px, 44%);
  min-height: 420px;
  background: #d3a478;
  color: #181614;
}

.recognize-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 44px 34px 36px;
}

.recognize-copy h2 {
  text-align: left;
  font-size: 20px;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.recognize-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.recognize-items article {
  min-width: 0;
}

.diamond-icon {
  display: block;
  width: 10px;
  height: 10px;
  margin-bottom: 12px;
  background: #666563;
  transform: rotate(45deg);
}

.recognize-items p {
  margin: 0;
  font-size: 10px;
  line-height: 1.18;
  font-weight: 600;
}

.recognize-closing {
  max-width: 520px;
  margin: 34px 0 0;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 600;
}

.recognize-cta {
  display: inline-flex;
  width: fit-content;
  min-height: 26px;
  margin-top: 22px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  background: #fff;
  color: #181614;
  font-size: 10px;
  font-weight: 600;
  transition:
    background-color 240ms ease,
    color 240ms ease,
    transform 240ms ease;
}

.recognize-cta:hover,
.recognize-cta:focus-visible {
  background: #181614;
  color: #fff;
  transform: translateY(-1px);
}

.recognize-media-wrap {
  display: block;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
}

.recognize-media {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center right;
  border-radius: 0;
}

.tech-section {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 28px;
  align-items: center;
  padding: 28px 58px;
  background: #f3f0ec;
}

.tech-copy h2 {
  text-align: left;
}

.tech-copy p {
  margin: 12px 0 0;
  color: #5f5a56;
  font-size: 11px;
  line-height: 1.35;
}

.tech-copy strong {
  color: #24211f;
  font-weight: 700;
}

.tech-copy .tech-note {
  max-width: 520px;
  margin-top: 28px;
  color: #77716b;
  font-size: 9px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.25;
}

.tech-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
}

.tech-card b {
  display: block;
  font-size: 13px;
  line-height: 1.2;
}

.tech-card span {
  display: block;
  margin-top: 10px;
  color: #5f5a56;
  font-size: 11px;
  line-height: 1.35;
}

.tech-video {
  width: min(100%, 220px);
  aspect-ratio: 9 / 16;
  justify-self: center;
  overflow: hidden;
  border-radius: 8px;
  background: #e6e0db;
}

.tech-video video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.learning-section {
  position: relative;
  padding: 14px 64px 11px;
  background: #f8f7f5;
}

.learning-section h2 {
  margin-bottom: 11px;
  font-size: 18px;
  text-align: center;
}

.section-intro {
  max-width: 520px;
  margin: -4px auto 14px;
  color: #5f5a56;
  font-size: 11px;
  line-height: 1.35;
  text-align: center;
}

.learning-layout {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 36px;
}

.learning-list {
  display: grid;
  gap: 10px;
}

.learning-list article {
  display: grid;
  grid-template-columns: 18px 122px 1fr;
  gap: 13px;
  align-items: start;
  font-size: 10px;
  text-align: center;
}

.steps-list article {
  grid-template-columns: 28px 128px 1fr;
}

.steps-list .icon {
  font-size: 11px;
  font-weight: 600;
}

.learning-list b {
  display: block;
  margin-bottom: 3px;
  font-size: 10px;
}

.learning-list p {
  margin: 0;
  color: #5f5a56;
  line-height: 1.18;
}

.icon {
  color: #484542;
  font-size: 16px;
  line-height: 1;
}

.stage-list {
  display: grid;
  gap: 7px;
  margin-top: -4px;
}

.stage {
  display: grid;
  grid-template-columns: 107px 1fr;
  align-items: center;
  gap: 50px;
}

.stage .image-placeholder,
.stage img {
  width: 107px;
  height: 44px;
  border-radius: 4px;
}

.stage img {
  display: block;
  object-fit: cover;
}

.stage span {
  font-size: 10px;
  white-space: nowrap;
}

.steps-table {
  display: grid;
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid rgba(45, 22, 6, 0.12);
}

.step-row {
  display: grid;
  grid-template-columns: 28px minmax(120px, 150px) minmax(150px, 1fr) minmax(120px, 180px) 54px;
  column-gap: 18px;
  align-items: center;
  min-height: 72px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(45, 22, 6, 0.12);
  font-size: 10px;
}

.step-index,
.step-label {
  color: #151412;
  font-size: 10px;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
}

.step-title {
  display: block;
  font-size: 10px;
  line-height: 1.12;
  text-align: center;
}

.step-description {
  margin: 0 auto;
  max-width: 260px;
  color: #5f5a56;
  line-height: 1.18;
  text-align: center;
}

.step-image {
  display: block;
  width: 100%;
  height: 54px;
  border-radius: 4px;
  object-fit: cover;
}

.learning-cta {
  display: flex;
  width: fit-content;
  margin: 6px auto 0;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.learning-button {
  min-height: 24px;
}

.learning-note {
  margin: 0;
  text-align: center;
}

.testimonials-section {
  padding: 42px 20px 36px;
  background: #eceae7;
}

.testimonials-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin: 0 auto 28px;
  text-align: center;
}

.testimonials-head h2 {
  max-width: 600px;
  margin: 0 auto;
  font-size: 31px;
  line-height: 1;
  font-weight: 400;
}

.testimonials-head p {
  margin: 0 auto;
  color: #6f6964;
  font-size: 10px;
  line-height: 1.28;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr 1fr;
  gap: 10px;
  margin: 0 auto;
}

.testimonial-card {
  display: flex;
  min-height: 228px;
  flex-direction: column;
  gap: 13px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: #252321;
  font-size: 10px;
  line-height: 1.28;
}

.testimonial-card p,
.testimonial-card blockquote {
  margin: 0;
}

.testimonial-card blockquote {
  font-weight: 700;
  line-height: 1.24;
}

.testimonial-card--rating {
  justify-content: space-between;
}

.testimonial-score {
  display: block;
  margin-bottom: 10px;
  font-size: 27px;
  line-height: 1;
  font-weight: 500;
}

.testimonial-score span {
  font-size: 11px;
}

.testimonial-proof {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: center;
  margin-top: auto;
}

.testimonial-proof img {
  display: block;
  width: 46px;
  height: auto;
}

.testimonial-brand,
.testimonial-proof strong {
  font-size: 10px;
  font-weight: 700;
}

.testimonial-button {
  width: 100%;
  min-height: 30px;
  margin-top: 0;
  font-size: 10px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 30px;
}

.testimonial-author b,
.testimonial-author small {
  display: block;
}

.testimonial-author b {
  font-size: 10px;
}

.testimonial-author small {
  color: #6f6964;
  font-size: 9px;
}

.testimonial-author--bottom {
  margin-top: auto;
}

.mini-avatar {
  width: 24px;
  height: 24px;
  display: block;
  flex: 0 0 24px;
  border-radius: 50%;
  object-fit: cover;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(45, 22, 6, 0.12)),
    #d6c7bd;
}

.testimonial-stars {
  letter-spacing: 0.08em;
  font-weight: 700;
}

.catalog-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 52%);
  gap: 20px;
  align-items: center;
  min-height: 150px;
  width: 100%;
  margin: 0;
  padding: 0 0 0 27px;
  overflow: hidden;
  border-radius: 0;
  color: #fff;
  background: #2d1606;
}

.catalog-banner > div {
  align-self: center;
  padding: 24px 0;
}

.catalog-banner h2 {
  font-size: 21px;
  line-height: 1.02;
  font-weight: 400;
}

.catalog-banner p {
  width: 235px;
  margin: 9px 0 8px;
  font-size: 11px;
  line-height: 1.25;
}

.catalog-banner .outline-pill {
  min-height: 22px;
  padding: 0 15px;
  font-size: 10px;
}

.catalog-picture,
.catalog-image {
  align-self: stretch;
  display: block;
  width: 100%;
  height: 100%;
}

.catalog-image {
  min-height: 88px;
  margin-top: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: right center;
}

.benefits-section {
  padding: 8px 58px 12px;
  text-align: center;
  background: #f8f7f5;
}

.benefits-section h2 {
  font-size: 17px;
  line-height: 0.96;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 11px;
  margin-top: 8px;
  text-align: left;
}

.benefit-grid article {
  min-height: 69px;
  padding: 9px 9px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.82);
}

.benefit-grid--four {
  grid-template-columns: repeat(4, 1fr);
}

.fit-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 28px 58px;
  background: #f7f6f4;
}

.fit-card {
  padding: 18px;
  border-radius: 8px;
  background: #fff;
}

.fit-card--muted {
  background: #efebe7;
}

.fit-card h2 {
  margin-bottom: 14px;
  text-align: left;
  font-size: 18px;
}

.fit-section .black-pill,
.fit-section .cta-note {
  grid-column: 1 / -1;
  justify-self: center;
}

.mini-icon {
  display: block;
  position: relative;
  width: 18px;
  height: 18px;
  margin-bottom: 2px;
  border-radius: 4px;
  background: #ede7df;
}

.mini-icon::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  width: 8px;
  height: 10px;
  border: 1px solid #8d847b;
  border-top-width: 3px;
  border-radius: 2px;
}

.benefit-grid b {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
  line-height: 1.1;
}

.benefit-grid p {
  margin: 0;
  color: #5c5752;
  font-size: 10px;
  line-height: 1.2;
}

.support-section {
  display: grid;
  grid-template-columns: minmax(260px, 42%) 1fr;
  min-height: 178px;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #382e25 url("assets/dra-thaisla-bg.png") center top / cover no-repeat;
  color: #fff;
}

.support-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: 12px 0 11px 17px;
}

.support-copy h2 {
  text-align: left;
  font-size: 19px;
}

.support-copy p {
  width: 244px;
  margin: 8px 0 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  line-height: 1.25;
}

.support-cta {
  margin-top: 12px;
  min-width: 150px;
  background: #fff;
  color: #1f1611;
}

.stats-row {
  display: flex;
  gap: 45px;
  margin-top: 8px;
}

.stats-row b {
  display: block;
  font-size: 18px;
  font-weight: 400;
}

.stats-row span {
  display: block;
  max-width: 70px;
  margin-top: 2px;
  font-size: 10px;
  line-height: 1.16;
}

.faq-section {
  padding: 9px 87px 13px;
  background: #f7f6f4;
}

.faq-section h2 {
  margin-bottom: 9px;
  text-align: center;
  font-size: 22px;
}

.faq-section h2 span {
  color: #8b8580;
  font-weight: 400;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

details {
  margin-bottom: 8px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

details[open] {
  padding-bottom: 16px;
}

summary {
  position: relative;
  min-height: 25px;
  padding: 8px 33px 6px 14px;
  cursor: pointer;
  list-style: none;
  font-size: 10px;
  font-weight: 600;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 8px;
  font-size: 13px;
  font-weight: 500;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 2px 14px 0;
  color: #69635e;
  font-size: 10px;
  line-height: 1.28;
}

.faq-cta {
  width: 100%;
  margin-top: 6px;
}

.footer {
  padding: 8px 54px 8px;
  border-top: 1px solid #d9d5cf;
  background: #f8f7f5;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  margin-bottom: 8px;
  font-size: 10px;
}

.footer-columns {
  display: grid;
  grid-template-columns: 165px 1fr 98px;
  gap: 42px;
  font-size: 10px;
}

.footer b {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.footer a {
  display: block;
  margin-bottom: 3px;
}

.footer p,
.footer span {
  margin: 0 0 6px;
  color: #4f4944;
  line-height: 1.25;
}

.footer-logo {
  margin-top: 8px;
  text-align: center;
  font-size: 40px;
  line-height: 0.9;
  font-weight: 300;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.legal-body {
  background: #f8f7f5;
}

.legal-shell {
  width: min(100% - 40px, 920px);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 72px) 0;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-bottom: clamp(28px, 4vw, 54px);
  padding: 0 18px;
  border: 1px solid rgba(34, 33, 31, 0.28);
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  transition:
    background 260ms ease,
    color 260ms ease,
    border-color 260ms ease;
}

.legal-back:hover,
.legal-back:focus-visible {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.legal-content {
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(34, 33, 31, 0.08);
  background: #fff;
}

.legal-content header {
  margin-bottom: clamp(30px, 4vw, 54px);
}

.legal-content header p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.legal-content h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 70px);
  line-height: 0.95;
  font-weight: 400;
}

.legal-content section {
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 12px;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.15;
  font-weight: 600;
}

.legal-content p,
.legal-content li {
  color: #393532;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.65;
}

.legal-content p {
  margin: 0 0 12px;
}

.legal-content ul {
  margin: 0 0 14px;
  padding-left: 20px;
}

.legal-content li + li {
  margin-top: 5px;
}

@media (min-width: 725px) {
  .hero {
    --hero-side-right: clamp(42px, 4.6vw, 72px);
    --hero-card-width: clamp(260px, 24vw, 360px);
    --hero-card-height: clamp(88px, 7vw, 112px);
    --hero-card-gap: clamp(12px, 1vw, 16px);
    --hero-card-top: clamp(140px, 18.4vw, 250px);
  }

  .hero {
    height: clamp(520px, 56.25vw, 820px);
    min-height: 520px;
  }

  .image-placeholder--hero {
    background: url("assets/hero-bioreset.png") center / cover no-repeat;
  }

  .topbar {
    position: absolute;
    inset: 0 0 auto;
    grid-template-columns: minmax(76px, 1fr) auto minmax(210px, 1fr);
    align-items: start;
    gap: clamp(18px, 3vw, 46px);
    padding: clamp(20px, 2.2vw, 34px) clamp(28px, 4.5vw, 72px) 0;
    font-size: clamp(10px, 0.72vw, 12px);
  }

  .brand {
    font-size: clamp(10px, 0.68vw, 11px);
  }

  .nav {
    justify-content: center;
    max-width: min(470px, 42vw);
    gap: clamp(20px, 3vw, 48px);
  }

  .nav a {
    max-width: 92px;
  }

  .top-actions {
    justify-content: flex-end;
    gap: clamp(14px, 2vw, 28px);
    font-size: clamp(10px, 0.72vw, 12px);
  }

  .top-actions .outline-pill {
    min-height: clamp(24px, 2vw, 34px);
    padding: 0 clamp(16px, 1.7vw, 28px);
    font-size: clamp(10px, 0.68vw, 11px);
  }

  .hero-title {
    top: clamp(105px, 15vw, 180px);
    left: clamp(215px, 28vw, 520px);
    font-size: clamp(76px, 8.2vw, 136px);
    line-height: 0.84;
    letter-spacing: -0.035em;
  }

  .hero-title span + span {
    margin-left: clamp(116px, 15vw, 260px);
  }

  .hero-copy {
    position: absolute;
    left: clamp(28px, 4.4vw, 72px);
    bottom: clamp(70px, 10vw, 145px);
    width: clamp(178px, 18vw, 260px);
    margin: 0;
    font-size: clamp(14px, 1.22vw, 20px);
    line-height: 1.16;
  }

  .hero-button {
    left: 50%;
    bottom: clamp(72px, 12.5vw, 168px);
    min-width: clamp(152px, 14vw, 225px);
    min-height: clamp(34px, 3vw, 48px);
    padding: 0 clamp(20px, 2vw, 34px);
    font-size: clamp(11px, 0.82vw, 14px);
    transform: translateX(-50%);
  }

  .hero-stat {
    top: calc(var(--hero-card-top) + var(--hero-card-height) + var(--hero-card-height) + var(--hero-card-gap) + var(--hero-card-gap));
    right: var(--hero-side-right);
    bottom: auto;
    width: var(--hero-card-width);
    height: var(--hero-card-height);
    min-height: 0;
    padding: clamp(14px, 1.4vw, 22px);
  }

  .hero-stat b {
    font-size: clamp(15px, 1.2vw, 19px);
  }

  .hero-stat span {
    font-size: clamp(10px, 0.78vw, 13px);
  }

  .hero-kicker {
    top: clamp(295px, 30vw, 420px);
    left: 50%;
    width: clamp(330px, 34vw, 520px);
    font-size: clamp(11px, 0.92vw, 14px);
    line-height: 1.32;
    transform: translateX(-50%);
  }

  .hero-metrics {
    top: var(--hero-card-top);
    right: var(--hero-side-right);
    bottom: auto;
    display: grid;
    width: var(--hero-card-width);
    gap: var(--hero-card-gap);
  }

  .hero-metrics article {
    height: var(--hero-card-height);
    min-height: 0;
    padding: clamp(14px, 1.4vw, 22px);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(8px);
  }

  .hero-metrics b {
    display: block;
    font-size: clamp(13px, 1.1vw, 17px);
  }

  .hero-metrics span {
    display: block;
    margin-top: 7px;
    font-size: clamp(11px, 0.82vw, 13px);
    line-height: 1.25;
  }

  .hero-progress-card {
    right: var(--hero-side-right);
    bottom: clamp(38px, 5.6vw, 76px);
    width: var(--hero-card-width);
    padding: clamp(16px, 1.45vw, 22px);
  }

  .hero-progress-card .progress-label {
    margin-bottom: clamp(10px, 0.9vw, 14px);
    font-size: clamp(10px, 0.78vw, 12px);
  }

  .hero-progress-card .black-pill {
    min-height: clamp(34px, 3vw, 44px);
    margin-top: clamp(14px, 1.15vw, 18px);
    font-size: clamp(10px, 0.72vw, 12px);
  }

  .hero-proof-avatars {
    width: clamp(70px, 6vw, 108px);
    margin-top: clamp(12px, 1vw, 16px);
  }

  .hero-progress-card small {
    margin-top: clamp(8px, 0.8vw, 12px);
    font-size: clamp(10px, 0.68vw, 11px);
  }

  .hero-note {
    left: 50%;
    bottom: clamp(38px, 6vw, 86px);
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(11px, 0.78vw, 13px);
    transform: translateX(-50%);
  }

  .avatar-row i {
    width: clamp(14px, 1.3vw, 20px);
    height: clamp(14px, 1.3vw, 20px);
  }

  .identity-section,
  .program-section,
  .tech-section,
  .learning-section,
  .testimonials-section,
  .benefits-section,
  .fit-section,
  .faq-section,
  .footer {
    width: 100%;
    max-width: none;
  }

  .identity-section {
    padding: clamp(28px, 3.6vw, 54px) clamp(48px, 7vw, 96px) clamp(34px, 4vw, 62px);
  }

  .identity-section h2 {
    font-size: clamp(30px, 2.8vw, 44px);
    line-height: 1.05;
  }

  .identity-subtitle {
    width: min(100%, 880px);
    margin-top: clamp(14px, 1.5vw, 22px);
    font-size: clamp(13px, 1vw, 16px);
    line-height: 1.5;
  }

  .progress-card {
    padding: clamp(22px, 2.2vw, 34px);
  }

  .progress-card .black-pill {
    min-height: 36px;
    font-size: clamp(11px, 0.8vw, 13px);
  }

  .persona-grid {
    width: min(100%, 1180px);
    margin: clamp(18px, 2vw, 30px) auto 0;
    gap: clamp(12px, 1.4vw, 22px);
  }

  .persona-card {
    height: clamp(260px, 24vw, 350px);
    border-radius: 8px;
  }

  .persona-content {
    left: clamp(18px, 3vw, 46px);
    right: clamp(18px, 3vw, 46px);
    bottom: clamp(18px, 2vw, 30px);
  }

  .persona-content h3 {
    font-size: clamp(15px, 1.25vw, 20px);
  }

  .persona-content span,
  .persona-content a {
    min-height: 26px;
    max-width: none;
    padding: 0 18px;
    font-size: clamp(10px, 0.72vw, 12px);
  }

  .recognition-panel {
    width: min(100%, 1180px);
    margin-top: clamp(24px, 3vw, 44px);
    padding: clamp(24px, 3vw, 42px);
  }

  .recognition-panel h3 {
    font-size: clamp(22px, 2vw, 32px);
  }

  .recognition-panel li,
  .recognition-panel p {
    font-size: clamp(12px, 1vw, 15px);
  }

  .program-section {
    height: clamp(720px, 58vw, 900px);
    padding: clamp(62px, 6vw, 96px) clamp(56px, 7vw, 112px);
  }

  .program-head {
    width: clamp(340px, 31vw, 490px);
  }

  .program-head h2 {
    font-size: clamp(34px, 3.2vw, 52px);
    line-height: 1.02;
  }

  .program-head p {
    max-width: 420px;
    margin-top: 20px;
    font-size: clamp(12px, 1vw, 15px);
  }

  .drop-visual {
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }

  .float-card {
    width: clamp(170px, 15.5vw, 230px);
    min-height: clamp(118px, 10vw, 155px);
    padding: clamp(22px, 2vw, 30px) clamp(18px, 1.7vw, 26px);
    border-radius: 8px;
  }

  .float-card b {
    margin-bottom: 14px;
    font-size: clamp(12px, 1vw, 15px);
  }

  .float-card span {
    font-size: clamp(11px, 0.82vw, 13px);
  }

  .float-card--top {
    top: clamp(70px, 6.8vw, 112px);
    right: clamp(280px, 23vw, 420px);
  }

  .float-card--left {
    top: clamp(390px, 31vw, 505px);
    left: clamp(300px, 26vw, 450px);
  }

  .float-card--right {
    top: clamp(330px, 27vw, 460px);
    right: clamp(64px, 6vw, 120px);
  }

  .float-card--bottom-left {
    left: clamp(56px, 8vw, 130px);
    bottom: clamp(26px, 4vw, 64px);
  }

  .float-card--bottom {
    right: clamp(340px, 30vw, 520px);
    bottom: clamp(125px, 11vw, 185px);
  }

  .program-section .black-pill {
    right: clamp(70px, 9vw, 150px);
    bottom: clamp(105px, 9.5vw, 158px);
    min-width: clamp(158px, 14vw, 220px);
    min-height: 36px;
    font-size: clamp(11px, 0.82vw, 13px);
  }

  .recognize-section {
    grid-template-columns: minmax(0, 56%) minmax(380px, 44%);
    min-height: clamp(460px, 34vw, 580px);
  }

  .recognize-copy {
    padding: clamp(44px, 5vw, 78px) clamp(44px, 5.5vw, 88px);
  }

  .recognize-copy h2 {
    font-size: clamp(22px, 2vw, 34px);
    line-height: 1.18;
  }

  .recognize-items {
    gap: clamp(18px, 2vw, 34px);
    margin-top: clamp(28px, 2.8vw, 46px);
  }

  .diamond-icon {
    width: clamp(9px, 0.72vw, 12px);
    height: clamp(9px, 0.72vw, 12px);
    margin-bottom: clamp(12px, 1vw, 16px);
  }

  .recognize-items p {
    font-size: clamp(10px, 0.82vw, 13px);
  }

  .recognize-closing {
    max-width: 640px;
    margin-top: clamp(34px, 3.4vw, 58px);
    font-size: clamp(13px, 1.15vw, 18px);
  }

  .recognize-cta {
    min-height: clamp(28px, 2.4vw, 38px);
    margin-top: clamp(20px, 2vw, 34px);
    padding: 0 clamp(22px, 2.4vw, 38px);
    font-size: clamp(10px, 0.78vw, 12px);
  }

  .recognize-media-wrap,
  .recognize-media {
    min-height: clamp(460px, 34vw, 580px);
  }

  .tech-section {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
    gap: clamp(38px, 5vw, 78px);
    padding: clamp(42px, 5vw, 78px) clamp(56px, 7vw, 112px);
  }

  .tech-copy h2 {
    font-size: clamp(32px, 3vw, 48px);
  }

  .tech-copy p {
    max-width: 760px;
    font-size: clamp(12px, 1vw, 15px);
  }

  .tech-card {
    min-height: clamp(190px, 17vw, 260px);
    padding: clamp(28px, 3vw, 46px);
  }

  .tech-video {
    width: clamp(220px, 20vw, 300px);
    max-height: min(58vh, 520px);
  }

  .tech-card b {
    font-size: clamp(19px, 1.7vw, 28px);
  }

  .tech-card span {
    font-size: clamp(12px, 1vw, 15px);
  }

  .learning-section {
    padding: clamp(64px, 6.4vw, 104px) clamp(56px, 7vw, 112px) clamp(72px, 7vw, 118px);
  }

  .learning-section h2 {
    width: min(100%, 1180px);
    margin: 0 auto clamp(22px, 2.2vw, 34px);
    font-size: clamp(26px, 2.2vw, 36px);
    text-align: center;
  }

  .section-intro {
    width: min(100%, 1180px);
    max-width: 760px;
    margin: -12px auto clamp(38px, 3.8vw, 58px);
    font-size: clamp(12px, 1vw, 15px);
    text-align: center;
  }

  .learning-layout {
    width: min(100%, 1180px);
    margin: 0 auto;
    grid-template-columns: minmax(0, 1fr) clamp(390px, 38vw, 560px);
    gap: clamp(58px, 7.5vw, 120px);
  }

  .learning-list {
    gap: clamp(24px, 2.5vw, 38px);
  }

  .learning-list article {
    grid-template-columns: 28px minmax(150px, 220px) minmax(180px, 1fr);
    gap: clamp(18px, 2.2vw, 34px);
    font-size: clamp(11px, 0.86vw, 13px);
  }

  .steps-list article {
    grid-template-columns: 38px minmax(190px, 270px) minmax(260px, 1fr);
  }

  .learning-list b {
    font-size: clamp(12px, 1vw, 15px);
  }

  .icon {
    font-size: 23px;
  }

  .stage-list {
    gap: clamp(10px, 1.15vw, 17px);
  }

  .stage {
    grid-template-columns: clamp(210px, 22vw, 310px) 1fr;
    gap: clamp(48px, 5.5vw, 88px);
  }

  .stage .image-placeholder,
  .stage img {
    width: 100%;
    height: clamp(76px, 6.6vw, 104px);
  }

  .stage span {
    font-size: clamp(11px, 0.82vw, 13px);
  }

  .steps-table {
    width: min(100%, 1180px);
  }

  .step-row {
    grid-template-columns:
      clamp(38px, 4vw, 56px)
      minmax(170px, 250px)
      minmax(250px, 1fr)
      minmax(260px, 330px)
      minmax(72px, 96px);
    column-gap: clamp(24px, 3.5vw, 52px);
    min-height: clamp(106px, 8.8vw, 132px);
    padding: clamp(16px, 1.5vw, 22px) 0;
  }

  .step-index,
  .step-label {
    font-size: clamp(11px, 0.82vw, 13px);
  }

  .step-title {
    font-size: clamp(12px, 1vw, 15px);
  }

  .step-description {
    font-size: clamp(11px, 0.86vw, 13px);
  }

  .step-image {
    height: clamp(86px, 7vw, 112px);
  }

  .learning-cta {
    margin-top: clamp(42px, 4vw, 66px);
  }

  .learning-button {
    min-height: 40px;
    min-width: 220px;
  }

  .testimonials-section {
    padding: clamp(64px, 6.4vw, 104px) clamp(56px, 7vw, 112px) clamp(62px, 6vw, 96px);
  }

  .testimonials-head,
  .testimonial-grid {
    width: min(100%, 1180px);
  }

  .testimonials-head {
    align-items: center;
    gap: clamp(10px, 1.4vw, 18px);
    margin-bottom: clamp(28px, 3vw, 46px);
  }

  .testimonials-head h2 {
    max-width: 720px;
    font-size: clamp(37px, 4vw, 61px);
    line-height: 0.98;
  }

  .testimonials-head p {
    font-size: clamp(11px, 0.88vw, 13px);
  }

  .testimonial-grid {
    grid-template-columns: minmax(180px, 0.9fr) minmax(210px, 1fr) minmax(260px, 1.25fr) minmax(210px, 1fr);
    gap: clamp(12px, 1.3vw, 20px);
  }

  .testimonial-card {
    min-height: clamp(255px, 23vw, 350px);
    padding: clamp(20px, 2vw, 30px);
    font-size: clamp(11px, 0.86vw, 13px);
  }

  .testimonial-score {
    font-size: clamp(34px, 3.1vw, 48px);
  }

  .testimonial-button {
    min-height: 36px;
    font-size: clamp(10px, 0.78vw, 12px);
  }

  .catalog-banner {
    width: 100%;
    grid-template-columns: minmax(360px, 44%) minmax(0, 56%);
    gap: clamp(28px, 4vw, 70px);
    min-height: clamp(240px, 21vw, 330px);
    padding: 0 0 0 clamp(56px, 7vw, 112px);
    border-radius: 0;
  }

  .catalog-banner > div {
    padding: clamp(44px, 4.6vw, 72px) 0;
  }

  .catalog-banner h2 {
    font-size: clamp(34px, 3.2vw, 52px);
  }

  .catalog-banner p {
    width: min(420px, 100%);
    margin: 18px 0 20px;
    font-size: clamp(12px, 1vw, 15px);
  }

  .catalog-banner .outline-pill {
    min-height: 34px;
    padding: 0 22px;
    font-size: clamp(10px, 0.78vw, 12px);
  }

  .catalog-image {
    height: 100%;
    min-height: clamp(130px, 13vw, 205px);
  }

  .benefits-section {
    padding: clamp(28px, 3.2vw, 48px) clamp(56px, 7vw, 112px);
  }

  .benefits-section h2 {
    font-size: clamp(24px, 2.2vw, 36px);
  }

  .benefit-grid {
    width: min(100%, 1180px);
    margin: clamp(20px, 2vw, 30px) auto 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 1.5vw, 24px);
  }

  .benefit-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .why-section {
    padding-top: clamp(54px, 5.5vw, 86px);
    padding-bottom: clamp(58px, 6vw, 96px);
  }

  .why-section .benefit-grid {
    gap: clamp(18px, 2vw, 30px);
    margin-top: clamp(28px, 3vw, 46px);
  }

  .why-section .benefit-grid article {
    min-height: clamp(170px, 15vw, 235px);
    padding: clamp(26px, 2.6vw, 40px);
  }

  .why-section .mini-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 18px;
  }

  .why-section .mini-icon::before {
    left: 10px;
    top: 8px;
    width: 12px;
    height: 16px;
  }

  .why-section .benefit-grid b {
    font-size: clamp(14px, 1.15vw, 18px);
  }

  .why-section .benefit-grid p {
    margin-top: 12px;
    font-size: clamp(11px, 0.9vw, 14px);
    line-height: 1.35;
  }

  .benefit-grid article {
    min-height: clamp(120px, 11vw, 165px);
    padding: clamp(18px, 1.8vw, 28px);
    border-radius: 8px;
  }

  .mini-icon {
    width: 26px;
    height: 26px;
    margin-bottom: 10px;
  }

  .mini-icon::before {
    left: 8px;
    top: 6px;
    width: 10px;
    height: 14px;
  }

  .benefit-grid b {
    font-size: clamp(12px, 1vw, 16px);
  }

  .benefit-grid p {
    font-size: clamp(10px, 0.78vw, 12px);
  }

  .benefit-grid p + p {
    margin-top: 10px;
  }

  .benefit-grid p strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ink);
    font-weight: 700;
  }

  .fit-section {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(24px, 3vw, 44px);
    padding: clamp(42px, 5vw, 78px) clamp(56px, 7vw, 112px);
  }

  .fit-card {
    padding: clamp(28px, 3vw, 46px);
  }

  .fit-card h2 {
    font-size: clamp(26px, 2.4vw, 38px);
  }

  .fit-card li,
  .fit-card p {
    font-size: clamp(12px, 1vw, 15px);
  }

  .fit-section .black-pill {
    min-height: 36px;
    min-width: 270px;
  }

  .support-section {
    width: 100%;
    grid-template-columns: minmax(420px, 42%) 1fr;
    min-height: clamp(420px, 45vw, 680px);
    background-position: center top;
  }

  .support-copy {
    padding: clamp(34px, 4vw, 62px);
  }

  .support-copy h2 {
    font-size: clamp(30px, 2.8vw, 46px);
  }

  .support-copy p {
    width: min(430px, 100%);
    margin: 22px 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(12px, 1vw, 15px);
  }

  .support-cta {
    margin-top: clamp(20px, 2.4vw, 36px);
    min-height: 38px;
    min-width: 210px;
    font-size: clamp(11px, 0.82vw, 13px);
  }

  .support-copy .black-pill {
    min-height: 36px;
    min-width: 160px;
  }

  .stats-row {
    gap: clamp(34px, 5vw, 78px);
    margin-top: clamp(28px, 3vw, 48px);
  }

  .stats-row b {
    font-size: clamp(24px, 2vw, 34px);
  }

  .stats-row span {
    max-width: 120px;
    font-size: clamp(10px, 0.78vw, 12px);
  }

  .faq-section {
    padding: clamp(36px, 4vw, 62px) clamp(56px, 7vw, 112px);
  }

  .faq-section h2 {
    margin-bottom: clamp(24px, 2.6vw, 40px);
    font-size: clamp(32px, 3vw, 48px);
  }

  .faq-layout {
    width: min(100%, 1180px);
    margin: 0 auto;
    gap: clamp(28px, 4vw, 70px);
  }

  details {
    margin-bottom: 14px;
    border-radius: 8px;
  }

  details[open] {
    padding-bottom: 24px;
  }

  summary {
    min-height: 48px;
    padding: 17px 48px 15px 22px;
    font-size: clamp(11px, 0.9vw, 14px);
  }

  summary::after {
    right: 22px;
    top: 14px;
    font-size: 20px;
  }

  details p {
    margin: 2px 22px 0;
    font-size: clamp(11px, 0.84vw, 13px);
  }

  .footer {
    padding: clamp(34px, 4vw, 60px) clamp(56px, 7vw, 112px) clamp(24px, 3vw, 48px);
  }

  .footer-top,
  .footer-columns {
    width: min(100%, 1180px);
    margin-left: auto;
    margin-right: auto;
  }

  .footer-top {
    font-size: clamp(11px, 0.82vw, 13px);
    margin-bottom: 34px;
  }

  .footer-columns {
    grid-template-columns: minmax(180px, 260px) minmax(360px, 1fr) minmax(130px, 190px);
    gap: clamp(48px, 6vw, 92px);
    font-size: clamp(11px, 0.86vw, 13px);
  }

  .footer-logo {
    width: min(100%, 1180px);
    margin: clamp(34px, 4vw, 60px) auto 0;
    font-size: clamp(58px, 8vw, 118px);
    letter-spacing: 0.16em;
  }
}

@media (max-width: 724px) {
  .page-shell {
    width: 100%;
  }

  .topbar,
  .identity-section,
  .program-section,
  .tech-section,
  .learning-section,
  .testimonials-section,
  .benefits-section,
  .fit-section,
  .faq-section,
  .footer {
    padding-left: clamp(18px, 5.1vw, 34px);
    padding-right: clamp(18px, 5.1vw, 34px);
  }

  .topbar {
    grid-template-columns: clamp(56px, 10vw, 70px) minmax(0, 1fr) auto;
    gap: clamp(10px, 2.6vw, 22px);
  }

  .nav {
    gap: clamp(10px, 2.4vw, 22px);
    max-width: min(315px, 46vw);
  }

  .top-actions {
    gap: clamp(8px, 2vw, 15px);
  }

  .hero-copy {
    width: clamp(145px, 23vw, 166px);
    margin-left: clamp(18px, 4.7vw, 34px);
  }

  .hero-title {
    left: clamp(155px, 26.7vw, 193px);
    font-size: clamp(43px, 7vw, 51px);
  }

  .hero-title span + span {
    margin-left: clamp(72px, 14.4vw, 104px);
  }

  .hero-button {
    left: clamp(238px, 41.4vw, 300px);
  }

  .hero-stat {
    right: clamp(18px, 5.4vw, 39px);
  }

  .persona-content {
    left: clamp(16px, 4.7vw, 34px);
    right: clamp(16px, 4.7vw, 34px);
  }

  .program-head {
    width: min(252px, 42vw);
  }

  .drop-visual {
    left: 0;
    width: 100%;
  }

  .float-card {
    width: clamp(106px, 16.5vw, 119px);
    padding: 15px 12px 10px;
  }

  .float-card--top {
    top: 42px;
    right: 23.6%;
  }

  .float-card--left {
    top: 208px;
    left: 25%;
  }

  .float-card--right {
    top: 168px;
    right: 5.8%;
  }

  .float-card--bottom-left {
    left: 7.9%;
    bottom: 11px;
  }

  .float-card--bottom {
    right: 28%;
    bottom: 56px;
  }

  .program-section .black-pill {
    right: 9.1%;
  }

  .learning-layout {
    grid-template-columns: minmax(0, 1fr) minmax(168px, 220px);
    gap: clamp(20px, 5vw, 36px);
  }

  .learning-list article {
    grid-template-columns: 18px minmax(82px, 122px) minmax(0, 1fr);
    gap: clamp(8px, 1.8vw, 13px);
  }

  .stage {
    grid-template-columns: minmax(82px, 107px) minmax(42px, 1fr);
    gap: clamp(18px, 6.9vw, 50px);
  }

  .stage .image-placeholder,
  .stage img {
    width: 100%;
  }

  .step-row {
    grid-template-columns: 28px minmax(112px, 1fr) minmax(112px, 1fr) minmax(120px, 34%) 62px;
    column-gap: clamp(10px, 2.4vw, 18px);
  }

  .step-image {
    height: clamp(64px, 11vw, 84px);
  }

  .catalog-banner {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 255px);
    gap: clamp(12px, 2.8vw, 20px);
    margin-left: 0;
    margin-right: 0;
  }

  .catalog-banner p {
    width: min(235px, 100%);
  }

  .catalog-image {
    width: 100%;
  }

  .benefit-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .support-section {
    grid-template-columns: minmax(235px, 286px) minmax(0, 1fr);
  }

  .support-copy p {
    width: min(244px, 100%);
  }

  .stats-row {
    gap: clamp(20px, 6.2vw, 45px);
  }

  .testimonials-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .testimonials-head {
    gap: 12px;
    margin-bottom: 22px;
    align-items: center;
  }

  .testimonials-head h2 {
    max-width: 520px;
    font-size: clamp(29px, 6.8vw, 41px);
  }

  .testimonials-head p {
    max-width: 420px;
    margin-inline: auto;
  }

  .recognize-section {
    grid-template-columns: 1fr;
  }

  .recognize-copy {
    padding: 42px clamp(28px, 7vw, 64px) 34px;
  }

  .recognize-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 28px;
  }

  .recognize-media-wrap,
  .recognize-media {
    min-height: clamp(320px, 48vw, 460px);
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-card {
    min-height: 210px;
  }

  .faq-section {
    padding-left: clamp(24px, 12vw, 87px);
    padding-right: clamp(24px, 12vw, 87px);
  }

  .footer-columns {
    grid-template-columns: minmax(120px, 165px) minmax(0, 1fr) minmax(74px, 98px);
    gap: clamp(18px, 5.8vw, 42px);
  }

  .footer-logo {
    font-size: clamp(32px, 5.5vw, 40px);
    letter-spacing: clamp(0.06em, 1vw, 0.12em);
  }
}

@media (min-width: 641px) and (max-width: 724px) {
  .hero {
    height: clamp(500px, 72vw, 540px);
  }

  .topbar {
    padding-top: 22px;
  }

  .hero-title {
    top: 112px;
    left: clamp(88px, 23vw, 166px);
    font-size: clamp(58px, 9.2vw, 68px);
    line-height: 0.88;
  }

  .hero-title span + span {
    margin-left: clamp(86px, 16vw, 120px);
  }

  .hero-kicker {
    top: 245px;
    left: clamp(28px, 5vw, 36px);
    right: clamp(28px, 5vw, 36px);
    width: auto;
    font-size: 12px;
    text-align: left;
  }

  .hero-copy {
    position: absolute;
    left: clamp(28px, 5vw, 36px);
    bottom: 92px;
    width: 205px;
    margin: 0;
    font-size: 15px;
  }

  .hero-button {
    left: 50%;
    bottom: 94px;
    min-height: 34px;
    min-width: 164px;
    transform: translateX(-50%);
  }

  .hero-progress-card {
    right: clamp(28px, 5vw, 38px);
    bottom: 42px;
    width: min(292px, 42vw);
    padding: 15px;
  }

  .learning-section {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .learning-layout {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 300px);
    gap: 32px;
  }

  .stage {
    grid-template-columns: minmax(150px, 190px) 1fr;
    gap: 26px;
  }

  .stage .image-placeholder,
  .stage img {
    height: 70px;
  }

  .stage-list {
    gap: 10px;
  }

  .benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .why-section .benefit-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .why-section .benefit-grid article {
    min-height: 145px;
    padding: 16px;
  }
}

@media (min-width: 725px) and (max-width: 1100px) {
  .footer-columns {
    grid-template-columns: minmax(140px, 180px) minmax(0, 1fr) minmax(90px, 130px);
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .outline-pill,
  .black-pill,
  .hero-button {
    min-height: 32px;
    padding: 0 17px;
    font-size: 10px;
    white-space: normal;
    text-align: center;
  }

  .hero {
    min-height: 640px;
    height: auto;
  }

  .topbar {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 16px;
  }

  .brand {
    font-size: 10px;
  }

  .nav {
    display: flex;
    max-width: none;
    gap: 10px 16px;
    font-size: 10px;
  }

  .nav a {
    max-width: none;
  }

  .top-actions {
    width: 100%;
    justify-content: space-between;
    font-size: 10px;
  }

  .top-actions .outline-pill {
    min-height: 27px;
    font-size: 10px;
  }

  .hero-title {
    top: 50%;
    left: clamp(18px, 6vw, 34px);
    right: clamp(18px, 6vw, 34px);
    font-size: clamp(48px, 13.8vw, 74px);
    line-height: 0.93;
    transform: translateY(-72%);
    text-align: center;
  }

  .hero-title span + span {
    margin-left: clamp(32px, 12vw, 58px);
  }

  .hero-copy {
    position: absolute;
    left: clamp(18px, 6vw, 34px);
    bottom: 190px;
    width: min(270px, calc(100% - 36px));
    margin: 0;
    font-size: clamp(11px, 3vw, 14px);
  }

  .hero-kicker {
    left: clamp(18px, 6vw, 34px);
    right: clamp(18px, 6vw, 34px);
    top: calc(50% + 54px);
    width: auto;
    max-width: 320px;
    margin: 0 auto;
    font-size: clamp(11px, 3vw, 14px);
    text-align: center;
  }

  .hero-metrics {
    display: none;
  }

  .hero-progress-card {
    right: clamp(18px, 6vw, 34px);
    bottom: 18px;
    width: calc(100% - clamp(36px, 12vw, 68px));
    padding: 15px;
  }

  .hero-progress-card .black-pill {
    min-height: 34px;
    margin-top: 12px;
    padding: 0 14px;
  }

  .hero-proof-avatars {
    width: 76px;
    margin-top: 12px;
  }

  .hero-progress-card small {
    font-size: 10px;
  }

  .hero-note {
    display: none;
  }

  .hero-button {
    display: inline-flex;
    left: 50%;
    top: calc(50% + 132px);
    bottom: auto;
    width: auto;
    min-width: 0;
    min-height: 34px;
    padding: 0 22px;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .identity-section {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .identity-subtitle {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.45;
    text-align: center;
  }

  .tech-section,
  .fit-section {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .tech-video {
    width: min(280px, 100%);
    max-height: none;
    margin: 0 auto;
  }

  h2 {
    font-size: clamp(22px, 6.4vw, 31px);
  }

  .testimonials-head h2 {
    font-size: clamp(29px, 8.5vw, 37px);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .testimonial-card {
    min-height: 0;
    padding: 18px;
  }

  .testimonial-card:not(.testimonial-card--rating) .testimonial-author {
    order: 1;
    margin-top: 0;
  }

  .testimonial-card:not(.testimonial-card--rating) .testimonial-stars {
    order: 2;
  }

  .testimonial-card:not(.testimonial-card--rating) > p:not(.testimonial-stars),
  .testimonial-card:not(.testimonial-card--rating) > blockquote {
    order: 3;
  }

  .persona-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .persona-card {
    height: clamp(200px, 38vw, 250px);
  }

  .persona-content {
    left: 12px;
    right: 12px;
  }

  .persona-content span {
    max-width: 100%;
    white-space: normal;
    line-height: 1.15;
    padding: 4px 8px;
  }

  .program-section {
    display: grid;
    height: auto;
    min-height: 0;
    gap: 12px;
    overflow: hidden;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .program-head {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .program-head p {
    max-width: 100%;
  }

  .drop-visual {
    position: relative;
    left: auto;
    bottom: auto;
    width: calc(100% + 40px);
    height: clamp(240px, 62vw, 360px);
    margin: 0 -20px 4px;
    transform: none;
  }

  .float-card,
  .float-card--top,
  .float-card--left,
  .float-card--right,
  .float-card--bottom-left,
  .float-card--bottom {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    bottom: auto;
    top: auto;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    justify-self: stretch;
    box-sizing: border-box;
    overflow-wrap: break-word;
  }

  .float-card b,
  .float-card span {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .program-section .black-pill {
    position: relative;
    inset: auto;
    justify-self: start;
  }

  .recognize-section {
    grid-template-columns: 1fr;
    background: #d3a478;
  }

  .recognize-copy {
    padding: 34px 22px 28px;
    background: #d3a478;
  }

  .recognize-copy h2 {
    font-size: clamp(22px, 6vw, 28px);
  }

  .recognize-items {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
  }

  .diamond-icon {
    width: 9px;
    height: 9px;
    margin-bottom: 10px;
  }

  .recognize-items p {
    font-size: 11px;
    line-height: 1.25;
  }

  .recognize-closing {
    margin-top: 26px;
    font-size: 13px;
  }

  .recognize-media-wrap {
    height: auto;
    min-height: 0;
    background: #d3a478;
  }

  .recognize-media {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center bottom;
  }

  .learning-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .learning-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .learning-list article {
    grid-template-columns: 22px minmax(120px, 1fr) minmax(120px, 1fr);
    font-size: 10px;
  }

  .steps-list article {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .steps-list article > p {
    grid-column: 2;
  }

  .learning-list b {
    font-size: 10px;
  }

  .stage-list {
    gap: 8px;
  }

  .stage {
    grid-template-columns: minmax(120px, 45%) 1fr;
    gap: 18px;
  }

  .stage .image-placeholder,
  .stage img {
    height: 62px;
  }

  .step-row {
    grid-template-columns: 38px minmax(0, 1fr);
    row-gap: 10px;
    column-gap: 12px;
    min-height: 0;
    padding: 18px 0;
  }

  .step-index {
    display: block;
    width: auto;
    height: auto;
    place-items: initial;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 10px;
    text-align: center;
  }

  .step-title {
    text-align: left;
  }

  .step-description {
    grid-column: 2 / -1;
    max-width: none;
    margin: 0;
    text-align: left;
  }

  .step-image {
    grid-column: 1 / -1;
    height: clamp(120px, 34vw, 190px);
  }

  .step-label {
    display: none;
  }

  .learning-cta {
    margin-top: 16px;
  }

  .catalog-banner {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }

  .catalog-banner > div {
    padding: 30px clamp(22px, 6vw, 34px) 28px;
  }

  .catalog-banner h2 {
    font-size: clamp(22px, 6vw, 30px);
  }

  .catalog-image {
    width: 100%;
    height: clamp(260px, 76vw, 430px);
    margin-top: 0;
    object-position: center bottom;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
  }

  .benefit-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-grid article {
    min-height: 116px;
    padding: 18px;
    border-radius: 6px;
  }

  .benefits-section {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .benefits-section h2 {
    margin-bottom: 0;
    line-height: 1.08;
  }

  .support-section {
    grid-template-columns: 1fr;
    min-height: clamp(760px, 188vw, 980px);
    margin-left: 0;
    margin-right: 0;
    background: #382e25 url("assets/dra-thaisla-mobile.png") center bottom / 100% auto no-repeat;
  }

  .support-copy {
    align-self: start;
    padding: 60px 22px 0;
  }

  .support-copy h2 {
    font-size: clamp(24px, 6.3vw, 32px);
  }

  .support-copy p {
    width: 100%;
    font-size: 11px;
  }

  .support-cta {
    width: min(230px, 100%);
    margin-top: 18px;
  }

  .stats-row {
    flex-wrap: wrap;
    gap: 18px 30px;
  }

  .faq-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  summary {
    font-size: 10px;
    line-height: 1.25;
  }

  details p {
    margin-bottom: 0;
    font-size: 10px;
  }

  .footer {
    padding-top: 24px;
    padding-bottom: 18px;
  }

  .footer-top,
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 14px;
    font-size: 10px;
  }

  .identity-section,
  .tech-section,
  .learning-section,
  .testimonials-section,
  .benefits-section,
  .fit-section,
  .faq-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .identity-section h2,
  .learning-section h2,
  .benefits-section h2,
  .faq-section h2 {
    margin-bottom: 22px;
  }

  .persona-grid {
    gap: 16px;
    margin-top: 20px;
  }

  .recognition-panel {
    margin-top: 24px;
    padding: 22px;
  }

  .program-section {
    gap: 18px;
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .program-head p,
  .tech-copy p,
  .support-copy p {
    margin-top: 16px;
  }

  .float-card {
    padding: 18px;
  }

  .tech-section,
  .fit-section,
  .faq-layout {
    gap: 22px;
  }

  .tech-card,
  .fit-card,
  .testimonial-card {
    padding: 22px;
  }

  .section-intro {
    margin-bottom: 28px;
  }

  .step-row {
    row-gap: 14px;
    padding: 24px 0;
  }

  .learning-cta {
    margin-top: 28px;
  }

  .testimonials-head {
    gap: 16px;
    margin-bottom: 28px;
  }

  .testimonial-grid {
    gap: 18px;
  }

  .catalog-banner > div {
    padding-top: 44px;
    padding-bottom: 34px;
  }

  .benefit-grid {
    gap: 18px;
    margin-top: 24px;
  }

  .benefit-grid article {
    padding: 20px;
  }

  details {
    margin-bottom: 14px;
  }

  summary {
    min-height: 48px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .footer {
    padding-top: 38px;
    padding-bottom: 30px;
  }

  .footer-top,
  .footer-columns {
    gap: 20px;
  }

  .footer-logo {
    font-size: clamp(29px, 9.2vw, 48px);
    letter-spacing: clamp(0.04em, 1vw, 0.1em);
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 650px;
  }

  .nav {
    display: none;
  }

  .top-actions {
    align-items: flex-start;
  }

  .hero-title {
    top: 50%;
    font-size: clamp(44px, 16vw, 64px);
  }

  .hero-copy {
    bottom: 190px;
  }

  .persona-grid {
    grid-template-columns: 1fr;
  }

  .persona-card {
    height: 238px;
  }

  .learning-list article {
    grid-template-columns: 22px minmax(0, 1fr);
  }

  .learning-list article > p {
    grid-column: 2;
  }

  .stage {
    grid-template-columns: minmax(132px, 1fr) auto;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .benefit-grid article {
    min-height: 118px;
    padding: 20px;
  }

  .stats-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

}

@media (max-width: 370px) {
  .top-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 680px;
  }

  .hero-title {
    font-size: clamp(40px, 15vw, 52px);
  }

  .hero-title span + span {
    margin-left: 22px;
  }

  .hero-progress-card {
    left: clamp(18px, 6vw, 34px);
    right: auto;
    width: min(100% - 36px, 320px);
  }

  .footer-logo {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

/* Deploy hero offer layout */
.hero {
  min-height: clamp(720px, 56.25vw, 900px);
  height: clamp(720px, 56.25vw, 900px);
  background: #050403;
}

.image-placeholder--hero {
  background: url("assets/hero-bioreset.png") center / cover no-repeat;
}

.hero::before {
  content: none;
}

.topbar {
  position: absolute;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 80px);
  padding: clamp(28px, 2.4vw, 48px) clamp(42px, 3.7vw, 76px) 0;
  font-size: clamp(15px, 1.08vw, 23px);
  line-height: 1;
}

.brand {
  font-size: clamp(22px, 1.55vw, 34px);
  font-weight: 500;
  letter-spacing: 0;
}

.nav {
  max-width: none;
  justify-content: center;
  gap: clamp(42px, 4.8vw, 96px);
  flex-wrap: nowrap;
}

.nav a {
  max-width: none;
  white-space: nowrap;
}

.top-actions {
  justify-content: flex-end;
}

.top-actions .outline-pill {
  min-height: clamp(44px, 2.8vw, 58px);
  min-width: clamp(210px, 12.2vw, 260px);
  padding: 0 clamp(24px, 1.7vw, 36px);
  border-color: rgba(255, 255, 255, 0.76);
  font-size: clamp(15px, 1.06vw, 22px);
}

.hero-title {
  position: absolute;
  top: clamp(170px, 11vw, 230px);
  left: 50%;
  margin: 0;
  color: #fff;
  font-size: clamp(92px, 8.8vw, 176px);
  line-height: 0.82;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  transform: translateX(-50%);
}

.hero-title span {
  display: block;
}

.hero-title .hero-title-top {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(22px, 2.6vw, 52px);
}

.hero-title em {
  display: inline-block;
  font-size: 34%;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-title span + span {
  margin-left: clamp(86px, 8vw, 160px);
}

.hero-copy {
  position: absolute;
  left: clamp(42px, 3.7vw, 76px);
  bottom: clamp(182px, 14vw, 250px);
  width: min(540px, 34vw);
  margin: 0;
  color: #fff;
  font-size: clamp(13px, 0.95vw, 18px);
  line-height: 1.3;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.hero-copy p {
  margin: 0;
}

.hero-copy p:first-child {
  max-width: 430px;
  text-align: left;
}

.hero-copy p + p {
  margin-top: clamp(20px, 1.6vw, 32px);
}

.hero-button {
  left: 50%;
  bottom: clamp(72px, 7vw, 118px);
  width: auto;
  min-width: clamp(260px, 19vw, 380px);
  min-height: clamp(42px, 2.8vw, 54px);
  padding: 0 clamp(28px, 2.2vw, 44px);
  border-radius: 999px;
  background: #fff;
  color: #161210;
  font-size: clamp(13px, 0.95vw, 18px);
  font-weight: 600;
  text-transform: none;
  transform: translateX(-50%);
}

.hero .hero-button::before {
  content: none;
}

.hero .hero-button:hover,
.hero .hero-button:focus-visible {
  transform: translateX(-50%);
  box-shadow: none;
}

.hero-note {
  display: block;
  left: 50%;
  bottom: clamp(30px, 3vw, 56px);
  width: auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(15px, 1.1vw, 23px);
  line-height: 1.25;
  text-align: center;
  transform: translateX(-50%);
}

.hero-progress-card {
  right: clamp(48px, 4.2vw, 82px);
  top: clamp(500px, 37vw, 640px);
  bottom: auto;
  width: clamp(310px, 25vw, 440px);
  padding: clamp(18px, 1.45vw, 28px);
  border-radius: 14px;
  color: #0d0b0a;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.hero-progress-card .progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(10px, 0.8vw, 14px);
  color: #0d0b0a;
  font-size: clamp(16px, 1.12vw, 22px);
  line-height: 1;
}

.hero-progress-card .progress-label span,
.hero-progress-card .progress-label strong {
  font: inherit;
  font-weight: 500;
}

.hero-progress-card .progress-bar {
  height: clamp(10px, 0.8vw, 16px);
  border-radius: 999px;
  background: rgba(226, 225, 221, 0.82);
  overflow: hidden;
}

.hero-progress-card .progress-bar span {
  width: 56%;
  height: 100%;
  border-radius: inherit;
  background: #49302c;
}

.hero-proof-row {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.1vw, 22px);
  margin-top: clamp(14px, 1.2vw, 22px);
}

.hero-proof-avatars {
  flex: 0 0 auto;
  width: clamp(82px, 5.6vw, 116px);
  height: auto;
  margin: 0;
}

.hero-proof-row strong {
  max-width: 220px;
  font-size: clamp(13px, 0.9vw, 18px);
  line-height: 1.25;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .hero-copy {
    width: min(420px, 38vw);
    font-size: clamp(13px, 1.25vw, 16px);
  }

  .hero-progress-card {
    width: clamp(300px, 30vw, 370px);
    right: clamp(34px, 4vw, 54px);
  }
}

@media (max-width: 724px) {
  .hero {
    min-height: 760px;
    height: 760px;
  }

  .hero::before {
    content: "";
    background: rgba(0, 0, 0, 0.16);
    pointer-events: none;
  }

  .image-placeholder--hero {
    background: url("assets/hero-bioreset.png") center / cover no-repeat;
  }

  .topbar {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 24px 20px 0;
    font-size: 11px;
  }

  .brand {
    font-size: 14px;
  }

  .nav {
    display: none;
  }

  .top-actions {
    width: auto;
    justify-content: flex-end;
    align-self: center;
  }

  .top-actions .outline-pill {
    width: auto;
    min-width: 0;
    min-height: 28px;
    padding: 0 16px;
    font-size: 10px;
    white-space: nowrap;
  }

  .hero-title {
    top: 145px;
    left: 50%;
    right: auto;
    width: calc(100% - 40px);
    font-size: clamp(54px, 17vw, 82px);
    line-height: 0.86;
    text-align: center;
    transform: translateX(-50%);
  }

  .hero-title .hero-title-top {
    gap: 14px;
  }

  .hero-title em {
    font-size: 30%;
  }

  .hero-title span + span {
    margin-left: clamp(48px, 16vw, 88px);
  }

  .hero-copy {
    left: 20px;
    right: auto;
    top: 320px;
    bottom: auto;
    width: min(310px, calc(100% - 40px));
    font-size: clamp(12px, 3.3vw, 14px);
    line-height: 1.28;
  }

  .hero-copy p:first-child {
    max-width: none;
    text-align: left;
  }

  .hero-copy p + p {
    margin-top: 22px;
  }

  .hero-button {
    top: auto;
    bottom: 198px;
    left: 50%;
    width: auto;
    min-width: 0;
    min-height: 40px;
    padding: 0 24px;
    font-size: 12px;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .hero .hero-button:hover,
  .hero .hero-button:focus-visible {
    transform: translateX(-50%);
  }

  .hero-note {
    bottom: 162px;
    width: calc(100% - 40px);
    font-size: 12px;
  }

  .hero-progress-card {
    left: 20px;
    right: 20px;
    top: auto;
    bottom: 24px;
    width: auto;
    padding: 18px;
    border-radius: 10px;
  }

  .hero-progress-card .progress-label {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .hero-progress-card .progress-bar {
    height: 10px;
  }

  .hero-proof-row {
    gap: 14px;
    margin-top: 14px;
  }

  .hero-proof-avatars {
    width: 86px;
  }

  .hero-proof-row strong {
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  .hero {
    min-height: 790px;
    height: 790px;
  }

  .topbar {
    grid-template-columns: 1fr;
  }

  .top-actions {
    justify-content: flex-start;
  }

  .hero-title {
    top: 155px;
    font-size: clamp(48px, 16vw, 60px);
  }

  .hero-copy {
    top: 315px;
  }

  .hero-button {
    bottom: 210px;
    font-size: 11px;
  }

  .hero-note {
    bottom: 176px;
  }
}

/* Final responsive guardrails: layout-only fixes for small laptops, tablets and phones. */
@media (max-width: 899px) {
  html,
  body,
  .page-shell {
    max-width: 100%;
    overflow-x: hidden;
  }

  img,
  video,
  .image-placeholder {
    max-width: 100%;
  }
}

@media (min-width: 725px) and (max-width: 899px) {
  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    padding-inline: clamp(28px, 5vw, 46px);
  }

  .nav {
    display: none;
  }

  .top-actions {
    min-width: 0;
    justify-content: flex-end;
  }

  .top-actions .outline-pill {
    min-width: 0;
    min-height: 36px;
    padding: 0 18px;
    font-size: 12px;
    white-space: nowrap;
  }

  .steps-table {
    width: 100%;
    max-width: 100%;
  }

  .step-row {
    grid-template-columns:
      34px
      minmax(126px, 0.82fr)
      minmax(168px, 1fr)
      minmax(168px, 220px);
    column-gap: clamp(14px, 2.4vw, 22px);
    width: 100%;
    max-width: 100%;
  }

  .step-label {
    display: none;
  }

  .step-description {
    max-width: none;
  }

  .step-image {
    width: 100%;
    min-width: 0;
    max-width: 220px;
    justify-self: stretch;
  }
}

@media (max-width: 724px) {
  .topbar,
  .hero-title,
  .hero-copy,
  .hero-button,
  .hero-note,
  .hero-progress-card {
    max-width: calc(100vw - 40px);
  }

  .topbar {
    width: auto;
    left: 20px;
    right: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-title {
    left: 20px;
    right: 20px;
    width: auto;
    font-size: clamp(50px, 15.5vw, 72px);
    transform: none;
  }

  .hero-title span {
    white-space: nowrap;
  }

  .hero-title .hero-title-top {
    gap: clamp(8px, 3vw, 14px);
  }

  .hero-title span + span {
    margin-left: clamp(34px, 12vw, 68px);
  }

  .hero-button {
    max-width: calc(100vw - 40px);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-note {
    left: 20px;
    right: 20px;
    width: auto;
    transform: none;
  }

  .hero-progress-card {
    width: auto;
    max-width: none;
  }

  .steps-table {
    width: 100%;
    max-width: 100%;
  }

  .step-row {
    width: 100%;
    max-width: 100%;
  }

  .step-description,
  .step-title {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .program-section .drop-visual {
    width: 100vw;
    max-width: 100vw;
    margin-left: 50%;
    margin-right: 0;
    transform: translateX(-50%);
  }
}

@media (max-width: 380px) {
  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .top-actions {
    justify-content: flex-end;
  }

  .top-actions .outline-pill {
    padding: 0 13px;
    font-size: 9.5px;
  }

  .hero-title {
    font-size: clamp(44px, 14.2vw, 54px);
  }

  .hero-button {
    padding: 0 18px;
    font-size: 10.5px;
  }
}

/* Persona cards refinement: desktop keeps original lower placement; mobile centers content. */
.persona-card {
  height: 235px;
}

.persona-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  text-align: center;
}

.persona-content h3 {
  margin-bottom: 8px;
}

@media (max-width: 724px) {
  .persona-card {
    height: 255px;
  }

  .persona-content {
    inset: 0;
    justify-content: center;
    padding: 20px;
  }
}

/* Mobile hero spacing polish. */
@media (max-width: 724px) {
  .hero-title {
    top: clamp(128px, 33vw, 152px);
    font-size: clamp(62px, 18.4vw, 86px);
    line-height: 0.82;
  }

  .hero-title .hero-title-top {
    gap: clamp(8px, 2.2vw, 12px);
  }

  .hero-title em {
    font-size: 32%;
  }

  .hero-title span + span {
    margin-left: clamp(40px, 11vw, 70px);
  }

  .hero-copy {
    top: clamp(292px, 78vw, 318px);
    width: min(330px, calc(100% - 40px));
    line-height: 1.22;
  }

  .hero-copy p + p {
    margin-top: 18px;
  }

  .hero-button {
    bottom: clamp(212px, 30vw, 232px);
  }
}

@media (max-width: 380px) {
  .hero-title {
    top: 132px;
    font-size: clamp(58px, 18vw, 68px);
  }

  .hero-copy {
    top: 292px;
  }
}

.footer-disclaimer {
  display: block;
  width: min(100%, 900px);
  margin: clamp(22px, 2.4vw, 34px) auto 0;
  padding: 0 18px;
  color: rgba(37, 34, 31, 0.52);
  font-size: 9px;
  line-height: 1.35;
  text-align: center;
}

@media (max-width: 724px) {
  .footer-disclaimer {
    margin-top: 18px;
    font-size: 9px;
    line-height: 1.45;
    text-align: center;
  }
}

.footer .footer-disclaimer {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: clamp(22px, 2.4vw, 34px) 18px 0;
  text-align: center;
}

@media (max-width: 724px) {
  .footer .footer-disclaimer {
    padding-top: 18px;
  }
}

/* Mobile hero containment fix: keep title and CTA centered on real devices. */
@media (max-width: 724px) {
  .hero-title {
    left: 50%;
    right: auto;
    width: min(calc(100vw - 40px), 360px);
    max-width: calc(100vw - 40px);
    font-size: clamp(58px, 17.2vw, 74px);
    text-align: center;
    transform: translateX(-50%);
  }

  .hero-title .hero-title-top {
    width: 100%;
    justify-content: center;
    gap: clamp(7px, 2vw, 11px);
  }

  .hero-title em {
    font-size: 30%;
  }

  .hero-title span + span {
    margin-left: 0;
  }

  .hero-button {
    left: 50%;
    right: auto;
    width: fit-content;
    max-width: calc(100vw - 40px);
    min-width: 0;
    padding: 0 clamp(18px, 5vw, 28px);
    font-size: clamp(11px, 3vw, 12.5px);
    transform: translateX(-50%);
    box-sizing: border-box;
    white-space: nowrap;
  }

  .hero .hero-button:hover,
  .hero .hero-button:focus-visible {
    transform: translateX(-50%);
  }
}

@media (max-width: 360px) {
  .hero-title {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    font-size: clamp(52px, 16.6vw, 60px);
  }

  .hero-button {
    max-width: calc(100vw - 36px);
    padding-inline: 16px;
    font-size: 10.5px;
  }
}

/* Mobile-only hero crop: prioritize dropper and drops. */
@media (max-width: 724px) {
  .image-placeholder--hero {
    background-position: 30% center;
  }
}

/* Mobile-only persona cards readability. */
@media (max-width: 724px) {
  .persona-card::after {
    background: linear-gradient(rgba(20, 14, 10, 0.18), rgba(20, 14, 10, 0.52));
  }

  .persona-content h3 {
    margin-bottom: 10px;
    font-size: clamp(15px, 4.4vw, 19px);
    line-height: 1.08;
    font-weight: 500;
  }

  .persona-content span,
  .persona-content a {
    min-height: 28px;
    padding: 0 14px;
    font-size: clamp(11px, 3.2vw, 13px);
    line-height: 1.1;
  }
}

/* Mobile-only product image full bleed. */
@media (max-width: 724px) {
  .program-section {
    padding-left: 0;
    padding-right: 0;
  }

  .program-head,
  .program-section .float-card,
  .program-section .black-pill {
    margin-left: 20px;
    margin-right: 20px;
  }

  .program-section .drop-visual {
    width: 100vw;
    max-width: 100vw;
    margin: 0 0 4px;
    transform: none;
  }
}

.diamond-icon {
  background: #fff;
}

/* Recognition section image: full-width desktop crop with face preserved. */
.recognize-section {
  position: relative;
  min-height: 56.25vw;
  overflow: hidden;
  background: #d3a478;
}

.recognize-copy {
  position: relative;
  z-index: 1;
  grid-column: 1;
}

.recognize-media-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.recognize-media {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: right center;
}

@media (min-width: 725px) {
  .recognize-copy {
    width: min(48vw, 600px);
    max-width: 600px;
    padding-left: clamp(54px, 5.5vw, 90px);
    padding-right: clamp(20px, 2.8vw, 42px);
  }

  .recognize-items {
    gap: clamp(18px, 2.7vw, 42px);
  }

  .recognize-items p {
    max-width: 112px;
  }

  .recognize-closing {
    max-width: 560px;
  }
}

@media (max-width: 724px) {
  .recognize-section {
    min-height: clamp(820px, 235vw, 980px);
  }

  .recognize-copy {
    grid-column: auto;
    justify-content: flex-start;
    min-height: 100%;
    padding-top: clamp(34px, 10vw, 52px);
    padding-bottom: 0;
    background: transparent;
  }

  .recognize-media-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .recognize-media {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }
}
