.mentor-studio,
.mentor-studio * {
  box-sizing: border-box;
}

.mentor-studio {
  --ink: #16112c;
  --muted: #615a77;
  --cream: #fff8f2;
  --plum: #44205f;
  --teal: #0f8f8a;
  --coral: #f06d5f;
  --lilac: #efe8ff;
  --line: rgba(68, 32, 95, 0.16);
  color: var(--ink);
  background: linear-gradient(180deg, #fff8f2, #f2f7ff 52%, #fff8f2);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: clip;
}

.mentor-studio a {
  color: inherit;
  text-decoration: none;
}

.ms-demo-strip,
.ms-nav,
.ms-about,
.ms-programs,
.ms-booking,
.ms-instructor,
.ms-areas,
.ms-faq,
.ms-contact,
.ms-enroll,
.ms-footer {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.ms-demo-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  color: #fff;
  background: var(--plum);
  width: 100%;
  padding-inline: max(20px, calc((100vw - 1160px) / 2));
  font-size: 0.9rem;
}

.ms-demo-strip p {
  margin: 0;
  max-width: 770px;
}

.ms-demo-strip nav,
.ms-nav nav,
.ms-hero-card div,
.ms-lesson-note,
.ms-areas div {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ms-demo-strip a {
  color: #fff;
  font-weight: 950;
}

.ms-nav {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  gap: 22px;
  padding: 18px 0;
}

.ms-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
}

.ms-brand span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: conic-gradient(from 120deg, var(--coral), var(--teal), var(--plum), var(--coral));
}

.ms-nav nav {
  justify-content: flex-end;
  overflow-x: auto;
  scrollbar-width: none;
}

.ms-nav nav::-webkit-scrollbar {
  display: none;
}

.ms-nav nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 14px;
  color: var(--plum);
  background: rgba(68, 32, 95, 0.06);
  font-weight: 900;
  white-space: nowrap;
}

.ms-hero-banner {
  position: relative;
  min-height: clamp(560px, 75vh, 790px);
  overflow: hidden;
  isolation: isolate;
  background: var(--plum);
}

.ms-hero-banner picture,
.ms-hero-banner img {
  position: absolute;
  inset: 0;
}

.ms-hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ms-hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255,248,242,0.96) 0%, rgba(255,248,242,0.82) 42%, rgba(255,248,242,0.1) 78%),
    radial-gradient(circle at 12% 20%, rgba(240,109,95,0.28), transparent 34%);
}

.ms-hero-card {
  position: relative;
  z-index: 2;
  width: min(620px, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - 1160px) / 2));
  padding: clamp(72px, 11vw, 136px) 0;
}

.ms-kicker {
  margin: 0 0 14px;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 950;
}

.ms-hero-card h1 {
  margin: 0;
  max-width: 12ch;
  color: var(--plum);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.ms-hero-card > p {
  max-width: 570px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
}

.ms-hero-card div {
  margin-top: 30px;
}

.ms-hero-card a,
.ms-pass-grid a,
.ms-booking button,
.ms-contact a,
.ms-enroll button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 18px;
  padding: 0 22px;
  font-weight: 950;
  cursor: pointer;
}

.ms-hero-card a:first-child,
.ms-booking button,
.ms-contact a,
.ms-enroll button {
  color: #fff;
  background: var(--plum);
  box-shadow: 0 18px 50px rgba(68,32,95,0.22);
}

.ms-hero-card a:last-child,
.ms-pass-grid a {
  color: var(--plum);
  background: #fff;
  border: 1px solid var(--line);
}

.ms-lesson-note {
  position: absolute;
  right: max(20px, calc((100vw - 1160px) / 2));
  bottom: 38px;
  z-index: 3;
  max-width: 430px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(68, 32, 95, 0.82);
  color: #fff;
  box-shadow: 0 24px 70px rgba(22,17,44,0.28);
  backdrop-filter: blur(16px);
}

.ms-lesson-note span {
  width: 100%;
  color: #ffd5cf;
  font-weight: 950;
}

.ms-lesson-note strong {
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--plum);
  background: #fff;
}

.ms-about,
.ms-booking,
.ms-contact,
.ms-enroll {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 24px;
  align-items: stretch;
  margin-top: 86px;
}

.ms-about > div,
.ms-booking > div,
.ms-contact > div,
.ms-enroll > div {
  padding: 34px;
  border-radius: 32px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(68,32,95,0.08);
}

.ms-about aside {
  display: grid;
  gap: 14px;
  align-content: center;
  padding: 30px;
  border-radius: 32px;
  color: #fff;
  background: linear-gradient(145deg, var(--teal), #16475e);
}

.ms-about aside strong {
  font-size: 1.35rem;
}

.ms-about h2,
.ms-section-head h2,
.ms-booking h2,
.ms-instructor h2,
.ms-areas h2,
.ms-faq h2,
.ms-contact h2,
.ms-enroll h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2rem, 3.6vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.ms-about p:not(.ms-kicker),
.ms-booking p,
.ms-instructor p,
.ms-faq p,
.ms-enroll p,
.ms-pass-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.ms-programs,
.ms-instructor,
.ms-areas,
.ms-faq {
  margin-top: 92px;
}

.ms-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 24px;
}

.ms-pass-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ms-pass-grid article {
  min-height: 320px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  padding: 26px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(68,32,95,0.08);
}

.ms-pass-grid article:nth-child(2) {
  color: #fff;
  background: linear-gradient(145deg, var(--plum), #20123b);
}

.ms-pass-grid article:nth-child(2) p,
.ms-pass-grid article:nth-child(2) span {
  color: #eadfff;
}

.ms-pass-grid span,
.ms-instructor strong {
  color: var(--teal);
  font-weight: 950;
  font-size: 0.86rem;
}

.ms-pass-grid h3,
.ms-instructor h3 {
  margin: 10px 0;
  font-size: clamp(1.35rem, 2.4vw, 1.78rem);
  line-height: 1.12;
}

.ms-pass-grid footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.ms-pass-grid footer strong {
  font-size: 1.65rem;
}

.ms-pass-grid article:nth-child(2) a {
  color: var(--plum);
  background: var(--coral);
  border-color: transparent;
}

.ms-booking {
  grid-template-columns: minmax(0, 1fr) minmax(310px, 430px);
}

.ms-booking form,
.ms-enroll form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 32px;
  background: var(--lilac);
  border: 1px solid var(--line);
}

.ms-booking label,
.ms-enroll label {
  display: grid;
  gap: 8px;
  color: var(--plum);
  font-size: 0.85rem;
  font-weight: 950;
}

.ms-booking select,
.ms-enroll input,
.ms-enroll select {
  min-height: 46px;
  width: 100%;
  padding: 0 12px;
  border: 1px solid rgba(68,32,95,0.2);
  border-radius: 16px;
  background: #fff;
}

.ms-booking output {
  color: var(--muted);
  line-height: 1.4;
}

.ms-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ms-slots span {
  border-radius: 999px;
  padding: 9px 12px;
  color: #fff;
  background: var(--teal);
  font-weight: 950;
}

.ms-instructor > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ms-instructor article {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  padding: 28px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(68,32,95,0.08);
}

.ms-instructor article > span {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--coral);
  font-weight: 950;
  font-size: 1.35rem;
}

.ms-instructor article h3,
.ms-instructor article strong,
.ms-instructor article p {
  grid-column: 2;
}

.ms-areas {
  padding: 46px;
  border-radius: 38px;
  background: radial-gradient(circle at 15% 25%, rgba(240,109,95,0.18), transparent 34%), var(--plum);
  color: #fff;
}

.ms-areas .ms-kicker,
.ms-areas h2 {
  color: #fff;
}

.ms-areas div {
  margin-top: 22px;
}

.ms-areas span {
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--plum);
  background: #fff;
  font-weight: 950;
}

.ms-faq {
  display: grid;
  gap: 12px;
}

.ms-faq details {
  padding: 18px 20px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
}

.ms-faq summary {
  cursor: pointer;
  font-weight: 950;
}

.ms-contact a {
  align-self: center;
  justify-self: stretch;
  min-height: 96px;
  border-radius: 32px;
  font-size: clamp(1.3rem, 3vw, 2rem);
}

.ms-enroll {
  margin-bottom: 0;
}

.ms-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 42px 0 56px;
  color: var(--muted);
}

.ms-footer strong {
  color: var(--plum);
}

@media (max-width: 920px) {
  .ms-demo-strip,
  .ms-nav,
  .ms-section-head {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
  }

  .ms-nav nav {
    justify-content: flex-start;
  }

  .ms-lesson-note {
    position: relative;
    inset: auto;
    margin: -28px auto 0;
    width: min(100% - 40px, 520px);
  }

  .ms-about,
  .ms-booking,
  .ms-contact,
  .ms-enroll,
  .ms-instructor > div,
  .ms-pass-grid {
    grid-template-columns: 1fr;
  }

  .ms-hero-card {
    margin-inline: auto;
    padding-bottom: 90px;
  }
}

@media (max-width: 620px) {
  .ms-demo-strip,
  .ms-nav,
  .ms-about,
  .ms-programs,
  .ms-booking,
  .ms-instructor,
  .ms-areas,
  .ms-faq,
  .ms-contact,
  .ms-enroll,
  .ms-footer {
    width: min(100% - 28px, 1160px);
  }

  .ms-demo-strip {
    width: 100%;
    padding-inline: 14px;
  }

  .ms-nav nav {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .ms-hero-banner {
    min-height: 650px;
  }

  .ms-hero-banner::after {
    background: linear-gradient(0deg, rgba(255,248,242,0.96), rgba(255,248,242,0.34));
  }

  .ms-hero-card h1 {
    font-size: clamp(2rem, 11vw, 2.75rem);
  }

  .ms-about > div,
  .ms-about aside,
  .ms-booking > div,
  .ms-booking form,
  .ms-contact > div,
  .ms-enroll > div,
  .ms-enroll form,
  .ms-areas {
    padding: 22px;
    border-radius: 26px;
  }

  .ms-instructor article {
    grid-template-columns: 1fr;
  }

  .ms-instructor article h3,
  .ms-instructor article strong,
  .ms-instructor article p {
    grid-column: 1;
  }

  .ms-pass-grid footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

.ms-about,
.ms-booking,
.ms-contact,
.ms-enroll {
  margin-top: 68px;
}

.ms-programs,
.ms-instructor,
.ms-areas,
.ms-faq {
  margin-top: 72px;
}

.ms-hero-banner img {
  object-position: center center;
}

@media (max-width: 640px) {
  .ms-about,
  .ms-booking,
  .ms-contact,
  .ms-enroll,
  .ms-programs,
  .ms-instructor,
  .ms-areas,
  .ms-faq {
    margin-top: 48px;
  }
}

.ms-instructor>div{margin-top:32px}
.ms-instructor h2{max-width:940px}
