@font-face {
  font-family: "Estedad Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("../fonts/estedad-arabic-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC;
}

@font-face {
  font-family: "Estedad Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("../fonts/estedad-latin-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bone: #eee0d8;
  --bone-soft: #f8f1ec;
  --dun: #ddc1b4;
  --ink: #342f31;
  --ink-soft: #685c5d;
  --charcoal: #364a55;
  --charcoal-dark: #263a45;
  --rosy: #b97d80;
  --rosy-dark: #915663;
  --rose-wash: #ead5d3;
  --paper: #fffaf6;
  --line: rgba(92, 65, 65, 0.16);
  --shadow: 0 24px 70px rgba(117, 75, 75, 0.11);
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  line-height: 1.5;
  overflow-x: hidden;
  background: var(--bone-soft);
  color: var(--ink);
  font-family: "Estedad Variable", "Vazirmatn", Tahoma, Arial, sans-serif;
  font-variation-settings: "wght" 400;
  text-rendering: optimizeLegibility;
}

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

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 246, 0.9);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.wordmark__mark {
  display: block;
  width: 42px;
  height: 42px;
  background: var(--charcoal);
  -webkit-mask: url("../brand/uprime-mark.png") center / contain no-repeat;
  mask: url("../brand/uprime-mark.png") center / contain no-repeat;
}

.wordmark__name {
  display: grid;
  gap: 1px;
}

.wordmark__name strong {
  color: var(--charcoal-dark);
  font-size: 1.05rem;
  line-height: 1.25;
}

.wordmark__name small {
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  font-size: 0.9rem;
}

.site-nav a {
  color: rgba(52, 47, 49, 0.78);
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--rosy-dark);
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--rosy-dark);
  color: var(--rosy-dark);
  border-radius: 999px;
  font-size: 0.82rem;
  transition: background 180ms ease, color 180ms ease;
}

.site-header__cta:hover,
.site-header__cta:focus-visible {
  background: var(--rosy-dark);
  color: white;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 12%, rgba(185, 125, 128, 0.23), transparent 31%),
    linear-gradient(125deg, #ead8d0 0%, #f5eae4 55%, #fbf5f0 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  left: -85px;
  bottom: -210px;
  background: var(--rosy-dark);
  opacity: 0.055;
  -webkit-mask: url("../brand/uprime-mark.png") center / contain no-repeat;
  mask: url("../brand/uprime-mark.png") center / contain no-repeat;
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  left: -120px;
  top: -110px;
  border-radius: 50%;
  background: rgba(255, 250, 246, 0.48);
  filter: blur(14px);
}

.hero__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(315px, 0.4fr);
  align-items: end;
  gap: 56px;
  min-height: 650px;
  padding-block: 88px 96px;
}

.hero__content {
  align-self: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--rosy-dark);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.hero h1 {
  max-width: 830px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.25rem, 3.8vw, 3.65rem);
  font-weight: 780;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.hero__title-line {
  display: block;
}

.hero__title-line + .hero__title-line {
  color: var(--rosy-dark);
  font-size: clamp(1.05rem, 3.2vw, 2.4rem);
  font-weight: 680;
  white-space: nowrap;
}

.hero__lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(52, 47, 49, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 2;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--rosy-dark);
  color: white;
  box-shadow: 0 12px 30px rgba(145, 86, 99, 0.24);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #7f4855;
}

.button--quiet {
  border: 1px solid var(--line);
  background: rgba(255, 250, 246, 0.55);
}

.hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 38px;
  color: rgba(52, 47, 49, 0.66);
  font-size: 0.76rem;
}

.hero__signals span {
  position: relative;
  padding-right: 14px;
}

.hero__signals span::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rosy);
}

.hero__statement {
  position: relative;
  align-self: end;
  margin-bottom: 12px;
  padding: 30px;
  border: 1px solid rgba(145, 86, 99, 0.4);
  border-radius: 30px;
  background: var(--rosy-dark);
  box-shadow: var(--shadow);
}

.hero__statement::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 30px;
  width: 46px;
  height: 5px;
  border-radius: 999px;
  background: #f1d9d6;
}

.hero__statement-index {
  margin-bottom: 46px;
  color: #f1d9d6;
  font-family: "Estedad Variable", sans-serif;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.hero__statement p {
  margin: 0;
  color: white;
  font-size: 1.08rem;
  line-height: 2;
}

.hero__statement p strong {
  color: #f7e7e3;
  font-weight: 720;
}

.hero__statement span {
  display: block;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  line-height: 1.85;
}

.paths {
  padding: 108px 0 120px;
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.7fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 46px;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.section-heading > p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.9;
}

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

.path-card {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #f8eeea;
  transition: transform 180ms ease, box-shadow 180ms ease,
    border-color 180ms ease;
}

.path-card:hover,
.path-card:focus-visible {
  z-index: 1;
  transform: translateY(-5px);
  border-color: rgba(183, 122, 122, 0.58);
  box-shadow: var(--shadow);
}

.path-card--featured {
  border-color: transparent;
  background: var(--rosy-dark);
  color: white;
}

.path-card__eyebrow {
  color: var(--rosy-dark);
  font-size: 0.72rem;
  font-weight: 700;
}

.path-card--featured .path-card__eyebrow {
  color: #f1d9d6;
}

.path-card h3 {
  margin: 28px 0 14px;
  color: var(--ink);
  font-size: 1.36rem;
  line-height: 1.55;
}

.path-card--featured h3 {
  color: white;
}

.path-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.9;
}

.path-card--featured p {
  color: rgba(255, 255, 255, 0.72);
}

.path-card__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 32px;
  color: var(--rosy-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.path-card--featured .path-card__link {
  color: #f4dfdc;
}

.why {
  position: relative;
  overflow: hidden;
  padding: 120px 0 128px;
  background:
    radial-gradient(circle at 92% 8%, rgba(185, 125, 128, 0.14), transparent 28%),
    var(--bone-soft);
}

.why::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -210px;
  top: 120px;
  background: var(--rosy-dark);
  opacity: 0.035;
  -webkit-mask: url("../brand/uprime-mark.png") center / contain no-repeat;
  mask: url("../brand/uprime-mark.png") center / contain no-repeat;
  pointer-events: none;
}

.why__intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.7fr);
  gap: 72px;
  align-items: end;
}

.why__intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -46px;
}

.why__intro h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.25rem, 4.4vw, 4.35rem);
  font-weight: 760;
  line-height: 1.4;
  letter-spacing: -0.035em;
}

.why__lead {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 2;
}

.why__lead p {
  margin: 0;
}

.why__lead p + p {
  margin-top: 16px;
}

.why__statement {
  position: relative;
  margin: 64px 0 28px;
  padding: 34px 38px;
  border: 0;
  border-radius: 28px;
  background: var(--rosy-dark);
  color: white;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 610;
  line-height: 2;
  box-shadow: var(--shadow);
}

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

.why-card {
  position: relative;
  min-height: 310px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 250, 246, 0.72);
}

.why-card__number {
  display: block;
  color: var(--rosy-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.why-card h3 {
  max-width: 470px;
  margin: 38px 0 16px;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.65;
}

.why-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 2;
}

.why__closing {
  max-width: 900px;
  margin: 72px auto 0;
  color: var(--ink);
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 650;
  line-height: 1.9;
  text-align: center;
}

.impact {
  padding: 32px 0;
  background: var(--charcoal-dark);
  color: white;
}

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

.impact__item {
  display: grid;
  min-height: 128px;
  align-content: center;
  gap: 8px;
  padding: 20px 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.impact__item:last-child {
  border-left: 0;
}

.impact__item strong {
  color: #f3deda;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 760;
}

.impact__item span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  line-height: 1.7;
}

.media-section {
  padding: 118px 0 124px;
  background: var(--paper);
}

.media-section--warm {
  background:
    radial-gradient(circle at 8% 10%, rgba(185, 125, 128, 0.14), transparent 26%),
    #f1e4de;
}

.media-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 50px;
  margin-bottom: 42px;
}

.media-heading h2,
.testimonials__heading h2,
.contact__copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.media-heading p:not(.eyebrow) {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  line-height: 1.95;
}

.media-heading > a {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(145, 86, 99, 0.35);
  color: var(--rosy-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

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

.media-grid--webinars {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.media-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: 0 12px 36px rgba(89, 67, 63, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.media-card:hover,
.media-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.media-card__image-wrap {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bone);
}

.media-card--portrait .media-card__image-wrap {
  aspect-ratio: 4 / 5;
}

.media-grid--webinars .media-card__image {
  object-position: center top;
  transform-origin: center top;
}

.media-grid--webinars .media-card__body {
  min-height: 148px;
  padding: 20px;
}

.media-grid--webinars .media-card__body strong {
  font-size: 1rem;
}

.media-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 320ms ease;
}

.media-card:hover .media-card__image,
.media-card:focus-visible .media-card__image {
  transform: scale(1.025);
}

.media-card__play {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: rgba(38, 58, 69, 0.92);
  color: white;
  font-size: 1.05rem;
}

.media-card__body {
  display: grid;
  min-height: 162px;
  padding: 24px;
}

.media-card__body small {
  color: var(--rosy-dark);
  font-size: 0.72rem;
  line-height: 1.7;
}

.media-card__body strong {
  margin-top: 10px;
  color: var(--ink);
  font-size: 1.14rem;
  line-height: 1.65;
}

.media-card__detail {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.8;
}

.media-card__body > span {
  align-self: end;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.testimonials {
  padding: 118px 0 126px;
  background: var(--bone-soft);
}

.testimonials__heading {
  max-width: none;
  margin-bottom: 46px;
}

.testimonials__heading h2 {
  font-size: clamp(2rem, 3.35vw, 3.3rem);
  white-space: nowrap;
}

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

.testimonial-card {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  margin: 0;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 250, 246, 0.82);
}

.testimonial-card > span {
  height: 48px;
  color: var(--rosy);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
}

.testimonial-card p {
  margin: 20px 0 28px;
  color: var(--ink);
  font-size: 0.93rem;
  line-height: 2.15;
}

.testimonial-card footer {
  margin-top: auto;
  color: var(--rosy-dark);
  font-size: 0.75rem;
  font-weight: 700;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: var(--charcoal-dark);
  color: white;
}

.contact::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -160px;
  bottom: -180px;
  background: white;
  opacity: 0.035;
  -webkit-mask: url("../brand/uprime-mark.png") center / contain no-repeat;
  mask: url("../brand/uprime-mark.png") center / contain no-repeat;
}

.contact__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 84px;
  align-items: start;
}

.contact__copy .eyebrow {
  color: #e7c2c3;
}

.contact__copy h2 {
  color: white;
}

.contact__copy > p:last-child {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.67);
  line-height: 2;
}

.contact-form {
  display: grid;
  gap: 24px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(12px);
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label,
.contact-form fieldset {
  display: grid;
  gap: 9px;
}

.contact-form label > span,
.contact-form legend {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 650;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form label > input:not([type]) {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  outline: 0;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font: inherit;
}

.contact-form input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.contact-form input:focus-visible {
  border-color: #e7c2c3;
  box-shadow: 0 0 0 3px rgba(231, 194, 195, 0.12);
}

.contact-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-form legend {
  margin-bottom: 10px;
}

.channel-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.channel-option {
  position: relative;
  cursor: pointer;
}

.channel-option input {
  position: absolute;
  opacity: 0;
}

.channel-option span {
  display: grid;
  min-height: 44px;
  place-items: center;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
}

.channel-option input:checked + span {
  border-color: #e7c2c3;
  background: #e7c2c3;
  color: var(--charcoal-dark);
}

.channel-option input:focus-visible + span {
  outline: 2px solid white;
  outline-offset: 2px;
}

.contact-form button {
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: var(--rosy);
  color: white;
  cursor: pointer;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 750;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  background: #a8676e;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.contact-form__privacy {
  margin: -12px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  line-height: 1.75;
}

.contact-form__message {
  margin: -8px 0 0;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.78rem;
  line-height: 1.8;
}

.contact-form__message--success {
  border-color: rgba(137, 231, 170, 0.45);
  background: rgba(41, 125, 73, 0.2);
  color: #c8f6d8;
}

.contact-form__message--error {
  border-color: rgba(255, 151, 151, 0.48);
  background: rgba(151, 47, 47, 0.22);
  color: #ffd6d6;
}

.contact-form__message::before {
  display: inline-grid;
  width: 1.45em;
  height: 1.45em;
  margin-left: 7px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.82em;
  font-weight: 800;
  vertical-align: middle;
}

.contact-form__message--success::before { content: "✓"; }
.contact-form__message--error::before { content: "!"; }

.contact-form__honeypot {
  position: absolute !important;
  left: -9999px;
}

.site-footer {
  padding: 54px 0 28px;
  background: #1d2d35;
  color: white;
}

.site-footer__top,
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.wordmark--footer .wordmark__mark {
  background: #ead9d0;
}

.wordmark--footer .wordmark__name strong,
.wordmark--footer .wordmark__name small {
  color: white;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
}

.site-footer__bottom {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.68rem;
}

@media (max-width: 980px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero__layout {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: 0;
    padding-block: 72px;
  }

  .hero__statement {
    max-width: 620px;
  }

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

  .why__intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .why__intro .eyebrow {
    margin-bottom: -8px;
  }

  .path-card {
    min-height: 260px;
  }

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

  .why-card {
    min-height: 0;
  }

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

  .impact__item:nth-child(2) {
    border-left: 0;
  }

  .media-grid,
  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .media-grid--webinars .media-card:last-child {
    grid-column: auto;
  }

  .media-card:last-child,
  .testimonial-card:last-child {
    grid-column: 1 / -1;
  }

  .contact__layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .site-header__inner {
    min-height: 72px;
    gap: 12px;
  }

  .wordmark__mark {
    width: 36px;
    height: 36px;
  }

  .wordmark__name small {
    display: none;
  }

  .site-header__cta {
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.72rem;
  }

  .hero__layout {
    padding-block: 56px 64px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 9.5vw, 3rem);
    letter-spacing: -0.035em;
  }

  .hero__title-line + .hero__title-line {
    font-size: clamp(1rem, 4.45vw, 1.35rem);
    letter-spacing: -0.045em;
  }

  .hero__lead {
    line-height: 1.9;
  }

  .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero__signals {
    display: grid;
    gap: 10px;
  }

  .hero__statement {
    padding: 24px;
  }

  .hero__statement-index {
    margin-bottom: 34px;
  }

  .paths {
    padding-block: 76px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 34px;
  }

  .path-card {
    min-height: 290px;
    padding: 24px;
  }

  .why {
    padding-block: 76px 84px;
  }

  .why__intro h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .why__statement {
    margin-top: 42px;
    padding: 26px;
    border-radius: 22px;
  }

  .why-card {
    padding: 26px;
  }

  .why-card h3 {
    margin-top: 28px;
  }

  .why__closing {
    margin-top: 52px;
    text-align: right;
  }

  .impact {
    padding-block: 18px;
  }

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

  .impact__item {
    min-height: 100px;
    padding-inline: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .impact__item:last-child {
    border-bottom: 0;
  }

  .media-section,
  .testimonials,
  .contact {
    padding-block: 78px;
  }

  .media-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .media-grid,
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .media-grid--webinars {
    grid-template-columns: 1fr;
  }

  .media-card:last-child,
  .testimonial-card:last-child {
    grid-column: auto;
  }

  .media-card__body {
    min-height: 145px;
    padding: 20px;
  }

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

  .testimonials__heading h2 {
    white-space: normal;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .contact-form__row,
  .channel-options {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__top,
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* About page and final approved refinements */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.uprime-story__link {
  justify-self: start;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(145, 86, 99, 0.35);
  color: var(--rosy-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

.phone-field {
  display: grid;
  align-content: start;
  gap: 8px;
}

.phone-field__label {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 650;
}

.phone-field__inputs {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  direction: ltr;
  gap: 8px;
}

.phone-field__inputs label {
  display: block;
}

.phone-field__inputs input {
  width: 100%;
  direction: ltr;
  text-align: left;
}

.phone-field small {
  color: var(--ink-soft);
  font-size: 0.67rem;
  line-height: 1.75;
}

/* Crop the Google Meet chrome from the bottom while preserving faces. */
.hero-photo--community img,
.hero-photo--mentor img {
  top: -9%;
  width: 100%;
  height: 118%;
  object-fit: cover;
  object-position: center 31%;
}

.hero-photo--mentor img {
  top: -11%;
  height: 122%;
  object-position: center 28%;
}

.about-page {
  background: var(--bone-soft);
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 112px;
  background: radial-gradient(circle at 8% 18%, rgba(185, 125, 128, 0.24), transparent 31%), linear-gradient(130deg, #ead8d0, #fbf5f0 72%);
}

.about-hero::after {
  content: "";
  position: absolute;
  left: -70px;
  bottom: -210px;
  width: 520px;
  height: 520px;
  background: var(--charcoal);
  opacity: 0.035;
  -webkit-mask: url("../brand/uprime-mark.png") center / contain no-repeat;
  mask: url("../brand/uprime-mark.png") center / contain no-repeat;
}

.about-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(240px, 0.35fr);
  align-items: center;
  gap: 70px;
}

.about-hero h1 {
  max-width: 870px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.45rem, 5vw, 5rem);
  line-height: 1.35;
  letter-spacing: -0.045em;
}

.about-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 2.05;
}

.about-hero__mark {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(145, 86, 99, 0.25);
  border-radius: 50%;
  background: rgba(255, 250, 246, 0.64);
  box-shadow: var(--shadow);
  color: var(--rosy-dark);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 800;
  direction: ltr;
}

.about-story,
.about-values,
.about-school,
.founders {
  padding: 112px 0;
}

.about-story {
  background: var(--paper);
}

.about-story__layout,
.about-school__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: 92px;
}

.about-story__heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.about-story h2,
.about-values h2,
.about-school h2,
.founders h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1.45;
  letter-spacing: -0.035em;
}

.about-story__copy {
  display: grid;
  gap: 22px;
}

.about-story__copy p,
.about-school__layout p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 2.15;
}

.about-story__copy p:first-child {
  color: var(--ink);
  font-size: 1.22rem;
}

.about-values {
  background: var(--bone);
}

.about-values__intro {
  max-width: 1100px;
}

.about-values__intro > p:last-child {
  margin: 22px 0 0;
  color: var(--ink-soft);
  line-height: 2;
  white-space: nowrap;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 48px;
}

.about-values__grid article {
  min-height: 250px;
  padding: 26px 22px;
  border: 1px solid rgba(54, 74, 85, 0.13);
  border-radius: 24px;
  background: rgba(255, 250, 246, 0.58);
}

.about-values__grid article > span {
  color: var(--rosy-dark);
  font-size: 0.7rem;
  font-weight: 800;
}

.about-values__grid h3 {
  margin: 38px 0 12px;
  color: var(--charcoal-dark);
  font-size: 1.2rem;
}

.about-values__grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.95;
}

.about-school {
  background: var(--charcoal-dark);
  color: white;
}

.about-school h2,
.about-school .eyebrow {
  color: white;
}

.about-school .eyebrow {
  opacity: 0.66;
}

.about-school__layout p {
  color: rgba(255, 255, 255, 0.76);
}

.about-school__layout p + p {
  margin-top: 20px;
}

.about-school__layout strong {
  color: white;
}

.founders {
  background: var(--paper);
}

.founders__heading {
  max-width: none;
  margin-bottom: 52px;
}

.founders__heading h2 {
  font-size: clamp(1.9rem, 3vw, 3.15rem);
  white-space: nowrap;
}

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

.founder-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--bone-soft);
}

.founder-card__portrait {
  position: relative;
  display: grid;
  width: 250px;
  height: 250px;
  margin: 38px auto 4px;
  place-items: center;
  overflow: hidden;
  border: 6px solid rgba(255, 250, 246, 0.92);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--dun), var(--rose-wash));
  box-shadow: 0 20px 42px rgba(38, 58, 69, 0.13);
}

.founder-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.founder-card__portrait--lily img {
  object-position: center 42%;
}

.founder-card__portrait--mehran img {
  object-position: center 18%;
}

.founder-card__body {
  padding: 34px 34px 38px;
}

.founder-card__role {
  margin: 0;
  color: var(--rosy-dark);
  font-size: 0.76rem;
  font-weight: 700;
}

.founder-card h3 {
  margin: 10px 0 18px;
  color: var(--ink);
  font-size: 1.75rem;
}

.founder-card__body > p:not(.founder-card__role) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 2;
}

.founder-card__body > p + p {
  margin-top: 14px !important;
}

.founder-card__english {
  display: inline-block;
  margin-top: 24px;
  color: var(--charcoal);
  font-size: 0.74rem;
  font-weight: 750;
  direction: ltr;
}

.founder-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.founder-links a,
.founder-links span {
  padding: 7px 11px;
  border: 1px solid rgba(145, 86, 99, 0.2);
  border-radius: 999px;
  color: var(--rosy-dark);
  font-size: 0.67rem;
}

.founder-card__badge {
  position: absolute;
  right: 25px;
  bottom: 25px;
  display: block;
  width: 86px;
  height: 86px;
  overflow: hidden;
  background: transparent;
}

.founder-card__badge img {
  position: absolute;
  left: 50%;
  width: auto;
  height: 100%;
  max-width: none;
  transform: translateX(-50%);
  mix-blend-mode: multiply;
}

.about-closing {
  padding: 104px 0;
  background: linear-gradient(130deg, var(--rose-wash), var(--bone-soft));
  text-align: center;
}

.about-closing p {
  max-width: 880px;
  margin: 0 auto 32px;
  color: var(--ink);
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  line-height: 2;
}

@media (max-width: 980px) {
  .about-values__intro > p:last-child { white-space: normal; }
  .about-hero__layout,
  .about-story__layout,
  .about-school__layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-hero__mark {
    width: 210px;
  }

  .about-story__heading {
    position: static;
  }

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

  .about-values__grid article:last-child {
    grid-column: 1 / -1;
    min-height: 190px;
  }
}

@media (max-width: 680px) {
  .about-hero,
  .about-story,
  .about-values,
  .about-school,
  .founders,
  .about-closing {
    padding-block: 74px;
  }

  .about-hero__mark {
    width: 150px;
  }

  .about-values__grid,
  .founders__grid {
    grid-template-columns: 1fr;
  }

  .founders__heading h2 {
    white-space: normal;
  }

  .about-values__grid article:last-child {
    grid-column: auto;
  }

  .founder-card__portrait {
    width: 220px;
    height: 220px;
  }

  .founder-card__body {
    padding: 28px 24px 34px;
  }

  .phone-field__inputs {
    grid-template-columns: 78px minmax(0, 1fr);
  }
}

#paths,
#why-uprime,
#mentor-coaching,
#webinars,
#podcast,
#contact {
  scroll-margin-top: 104px;
}

/* Final prompt-locked refinements */
.brand-lockup {
  display: block;
  line-height: 0;
}

.brand-lockup img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-lockup--header {
  grid-area: logo;
  justify-self: center;
  width: 174px;
  transform: translateY(-3px);
  transition: width 240ms ease, transform 240ms ease;
}

.site-header.is-scrolled .brand-lockup--header {
  width: 148px;
}

.path-card--featured,
.path-card--featured:hover,
.path-card--featured:focus-visible {
  border-color: rgba(183, 122, 122, 0.34);
  background: rgba(183, 122, 122, 0.08);
  color: var(--charcoal-dark);
}

.path-card--featured .path-card__eyebrow,
.path-card--featured h3,
.path-card--featured p,
.path-card--featured .path-card__link {
  color: var(--charcoal-dark);
}

.path-card--featured .path-card__eyebrow,
.path-card--featured .path-card__link {
  color: var(--rosy-dark);
}

.hero-photo {
  display: grid;
  place-items: center;
  background: rgba(213, 195, 173, 0.36);
}

.hero-photo img,
.hero-photo--community img,
.hero-photo--mentor img {
  position: absolute;
  inset-inline: 0;
  top: -18%;
  display: block;
  width: 100%;
  height: auto;
  object-fit: initial;
  object-position: center;
  transform: none;
}

.hero-photo--community {
  inset: 34px 0 auto;
  aspect-ratio: 2.62 / 1;
}

.hero-photo--mentor {
  right: auto;
  left: 7%;
  bottom: 30px;
  width: 78%;
  height: auto;
  aspect-ratio: 2.62 / 1;
  border: 5px solid var(--bone-soft);
}

.hero__visual-caption {
  right: 4%;
  left: auto;
  bottom: 10px;
}

.social-icons__brand {
  display: block;
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.social-icons__brand--aparat {
  filter: invert(26%) sepia(12%) saturate(799%) hue-rotate(153deg) brightness(91%) contrast(88%);
  opacity: 0.68;
}

.social-icons__brand--bale {
  opacity: 0.72;
}

.site-footer {
  background: var(--bone);
  color: var(--charcoal-dark);
}

.brand-lockup--footer {
  width: 188px;
}

.footer-socials a {
  border-color: rgba(54, 74, 85, 0.2);
  color: rgba(54, 74, 85, 0.76);
}

.site-footer__bottom {
  border-top-color: rgba(54, 74, 85, 0.12);
  color: rgba(54, 74, 85, 0.62);
}

.site-footer__watermark {
  background: var(--charcoal);
  opacity: 0.045;
}

@keyframes uprime-rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__identity,
.hero h1,
.hero__lead,
.hero__actions,
.hero__signals,
.hero__visual {
  animation: uprime-rise 460ms ease both;
}

.hero h1 { animation-delay: 50ms; }
.hero__lead { animation-delay: 100ms; }
.hero__actions { animation-delay: 150ms; }
.hero__signals { animation-delay: 200ms; }
.hero__visual { animation-delay: 110ms; }

@media (max-width: 980px) {
  .brand-lockup--header,
  .site-header.is-scrolled .brand-lockup--header {
    width: 142px;
  }

  .hero__visual {
    min-height: 560px;
  }

  .hero-photo--community {
    inset: 16px 0 auto 0;
    height: auto;
  }

  .hero-photo--mentor {
    left: 8%;
    bottom: 24px;
    width: 76%;
  }
}

@media (max-width: 680px) {
  .brand-lockup--header,
  .site-header.is-scrolled .brand-lockup--header {
    width: 122px;
  }

  .hero__visual {
    min-height: 390px;
  }

  .hero-photo--community {
    inset: 8px 0 auto 0;
  }

  .hero-photo--mentor {
    left: 5%;
    bottom: 18px;
    width: 72%;
    height: auto;
  }

  .brand-lockup--footer {
    width: 164px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__identity,
  .hero h1,
  .hero__lead,
  .hero__actions,
  .hero__signals,
  .hero__visual {
    animation: none;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

/* Uprime 2026 header, hero and brand system */
:root {
  --bone: #eae1d6;
  --bone-soft: #f5f0ea;
  --dun: #d5c3ad;
  --charcoal: #364a55;
  --charcoal-dark: #293e48;
  --rosy: #b77a7a;
  --rosy-dark: #9a6268;
  --paper: #fbf8f4;
}

body.menu-open {
  overflow: hidden;
}

.site-header {
  z-index: 30;
  border-bottom: 1px solid rgba(54, 74, 85, 0.1);
  background: rgba(234, 225, 214, 0.91);
  box-shadow: none;
  transition: background 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(245, 240, 234, 0.98);
  box-shadow: 0 8px 24px rgba(54, 74, 85, 0.07);
}

.site-header__inner {
  position: relative;
  width: min(1440px, calc(100% - 36px));
  min-height: 98px;
  margin-inline: auto;
  display: grid;
  grid-template-areas: "left logo right";
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  direction: ltr;
  transition: min-height 240ms ease;
}

.site-header.is-scrolled .site-header__inner {
  min-height: 82px;
}

.wordmark--header {
  grid-area: logo;
  justify-self: center;
  direction: rtl;
  transform: translateY(-2px);
  transition: transform 240ms ease;
}

.wordmark--header .wordmark__mark {
  width: 56px;
  height: 56px;
  transition: width 240ms ease, height 240ms ease;
}

.wordmark--header .wordmark__name strong {
  font-size: 1.25rem;
}

.wordmark--header .wordmark__name small {
  color: rgba(54, 74, 85, 0.68);
  font-size: 0.66rem;
}

.site-header.is-scrolled .wordmark--header .wordmark__mark {
  width: 47px;
  height: 47px;
}

.site-nav {
  gap: 18px;
  direction: rtl;
  font-size: 0.78rem;
}

.site-nav--left {
  grid-area: left;
  justify-self: start;
  justify-content: flex-start;
}

.site-nav--right {
  grid-area: right;
  justify-self: end;
  justify-content: flex-end;
}

.site-nav__link,
.site-nav__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(54, 74, 85, 0.78);
  cursor: pointer;
  font: inherit;
  white-space: nowrap;
  transition: color 220ms ease;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--rosy);
  transition: width 220ms ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-nav__link.is-active {
  color: var(--charcoal-dark);
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after,
.site-nav__link.is-active::after {
  width: 24px;
}

.site-nav__button svg,
.mobile-nav-item button svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 220ms ease;
}

.nav-group {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: -18px;
  width: max-content;
  min-width: 220px;
  padding: 10px;
  border: 1px solid rgba(54, 74, 85, 0.12);
  border-radius: 18px;
  background: rgba(251, 248, 244, 0.99);
  box-shadow: 0 18px 48px rgba(54, 74, 85, 0.11);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-7px);
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 10px;
}

.nav-group.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-group.is-open .site-nav__button svg {
  transform: rotate(180deg);
}

.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: rgba(54, 74, 85, 0.78);
  line-height: 1.55;
  transition: background 180ms ease, color 180ms ease;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: rgba(183, 122, 122, 0.09);
  color: var(--charcoal-dark);
}

.site-header__cta {
  min-height: 40px;
  padding-inline: 16px;
  border-color: rgba(183, 122, 122, 0.78);
  background: transparent;
  color: var(--rosy-dark);
  font-size: 0.74rem;
}

.site-header__cta:hover,
.site-header__cta:focus-visible,
.site-header__cta.is-active {
  background: rgba(183, 122, 122, 0.09);
  color: var(--rosy-dark);
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 7px;
}

.social-icons a {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(54, 74, 85, 0.16);
  border-radius: 50%;
  color: rgba(54, 74, 85, 0.7);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-icons a:hover,
.social-icons a:focus-visible {
  transform: translateY(-2px);
  border-color: var(--rosy);
  color: var(--rosy-dark);
}

.social-icons svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.social-icons svg .fill {
  fill: currentColor;
  stroke: none;
}

.mobile-menu-button,
.mobile-path,
.mobile-drawer,
.mobile-backdrop {
  display: none;
}

.hero {
  min-height: 680px;
  background: linear-gradient(122deg, #eae1d6 0%, #f5f0ea 68%, #f7f2ed 100%);
}

.hero::before,
.hero__glow {
  display: none;
}

.hero__watermark {
  position: absolute;
  z-index: 0;
  left: clamp(28px, 5vw, 96px);
  top: 50%;
  width: min(39vw, 540px);
  aspect-ratio: 1;
  background: var(--charcoal);
  opacity: 0.045;
  transform: translateY(-47%);
  -webkit-mask: url("../brand/uprime-mark.png") center / contain no-repeat;
  mask: url("../brand/uprime-mark.png") center / contain no-repeat;
  pointer-events: none;
}

.hero__layout {
  width: min(1400px, calc(100% - 56px));
  min-height: max(680px, calc(84vh - 60px));
  grid-template-columns: minmax(0, 3fr) minmax(390px, 2fr);
  align-items: center;
  gap: clamp(44px, 5vw, 82px);
  padding-block: 54px 66px;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__identity {
  display: grid;
  gap: 4px;
  margin-bottom: 24px;
  color: var(--charcoal);
}

.hero__identity strong {
  font-size: clamp(0.86rem, 1.1vw, 0.98rem);
  font-weight: 660;
}

.hero__identity span {
  color: var(--rosy-dark);
  font-size: clamp(0.72rem, 0.95vw, 0.86rem);
}

.hero h1 {
  max-width: 850px;
  color: var(--charcoal-dark);
  font-size: clamp(3.2rem, 4.15vw, 3.75rem);
  font-weight: 690;
  line-height: 1.32;
}

.hero__title-line + .hero__title-line {
  margin-top: 9px;
  color: var(--rosy-dark);
  font-size: clamp(1.72rem, 2.55vw, 2.25rem);
  font-weight: 560;
  line-height: 1.6;
  white-space: normal;
}

.hero__lead {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(54, 74, 85, 0.78);
  font-size: clamp(1rem, 1.24vw, 1.12rem);
  line-height: 1.95;
}

.hero__actions {
  margin-top: 28px;
}

.button {
  min-height: 50px;
  box-shadow: none;
}

.button--primary {
  background: var(--rosy);
  box-shadow: none;
}

.button--quiet {
  border-color: rgba(183, 122, 122, 0.68);
  background: transparent;
  color: var(--rosy-dark);
}

.hero__signals {
  display: flex;
  gap: 14px 28px;
  margin-top: 30px;
  color: rgba(54, 74, 85, 0.72);
  font-size: 0.72rem;
}

.hero__signals span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  line-height: 1.7;
}

.hero__signals span::before {
  display: none;
}

.hero__signals img {
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.hero__visual {
  position: relative;
  z-index: 1;
  min-height: 535px;
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(54, 74, 85, 0.13);
  background: var(--charcoal-dark);
}

.hero-photo img {
  object-fit: cover;
}

.hero-photo--community {
  inset: 36px 0 86px 4%;
  border-radius: 30px;
}

.hero-photo--community img {
  object-position: center 48%;
  transform: scale(1.25);
}

.hero-photo--mentor {
  right: -22px;
  bottom: 26px;
  width: 48%;
  height: 178px;
  border: 5px solid var(--bone-soft);
  border-radius: 24px;
}

.hero-photo--mentor img {
  object-position: center 48%;
  transform: scale(1.32);
}

.hero__visual-caption {
  position: absolute;
  left: 18px;
  bottom: 42px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(245, 240, 234, 0.93);
  color: var(--charcoal);
  font-size: 0.68rem;
}

.paths {
  background: var(--paper);
}

.path-card {
  background: var(--bone-soft);
}

.uprime-story {
  display: grid;
  grid-template-columns: auto minmax(300px, 0.85fr) minmax(360px, 1fr);
  align-items: center;
  gap: 48px;
  margin-bottom: 104px;
  padding-block: 38px;
  border-block: 1px solid rgba(54, 74, 85, 0.13);
  scroll-margin-top: 120px;
}

.uprime-story__index {
  color: var(--rosy);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 670;
  letter-spacing: -0.05em;
  direction: ltr;
}

.uprime-story .eyebrow {
  margin-bottom: 8px;
}

.uprime-story h2 {
  margin: 0;
  color: var(--charcoal-dark);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.65;
}

.uprime-story > p {
  margin: 0;
  color: rgba(54, 74, 85, 0.72);
  line-height: 2;
}

.why::before {
  right: 5%;
  top: 310px;
  width: 300px;
  height: 300px;
  opacity: 0.035;
}

.media-section--warm {
  background: radial-gradient(circle at 8% 12%, rgba(183, 122, 122, 0.07), transparent 24%), var(--bone-soft);
}

.webinar-journey {
  margin-bottom: 54px;
  padding: 36px;
  border: 1px solid rgba(54, 74, 85, 0.12);
  border-radius: 28px;
  background: rgba(251, 248, 244, 0.72);
}

.webinar-journey__intro {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(340px, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 30px;
}

.webinar-journey__intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -34px;
}

.webinar-journey__intro h3 {
  margin: 0;
  color: var(--charcoal-dark);
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  line-height: 1.55;
}

.webinar-journey__intro > p:not(.eyebrow) {
  margin: 0;
  color: rgba(54, 74, 85, 0.7);
  line-height: 1.95;
}

.webinar-seasons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.season-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(54, 74, 85, 0.11);
  border-radius: 22px;
  background: var(--paper);
}

.season-card__image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--dun);
}

.season-card__image img {
  object-fit: cover;
}

.season-card figcaption {
  display: grid;
  gap: 7px;
  padding: 20px;
}

.season-card small {
  color: var(--rosy-dark);
  font-size: 0.72rem;
  font-weight: 700;
}

.season-card strong {
  color: var(--charcoal-dark);
  font-size: 1rem;
}

.season-card figcaption span,
.season-card--current p {
  color: rgba(54, 74, 85, 0.64);
  font-size: 0.75rem;
  line-height: 1.8;
}

.season-card--current {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 30px;
  border-color: rgba(183, 122, 122, 0.42);
  background: var(--charcoal-dark);
}

.season-card--current img {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border-radius: 50%;
}

.season-card--current small {
  color: #e7c6c4;
}

.season-card--current strong {
  margin-top: 8px;
  color: white;
  font-size: 1.35rem;
  line-height: 1.6;
}

.season-card--current p {
  margin: 16px 0 28px;
  color: rgba(255, 255, 255, 0.67);
}

.season-card--current a {
  margin-top: auto;
  border-bottom: 1px solid rgba(231, 198, 196, 0.42);
  color: #e7c6c4;
  font-size: 0.78rem;
}

.media-grid--webinars .media-card__image-wrap {
  aspect-ratio: 1000 / 1200;
}

.contact::before {
  right: 5%;
  bottom: 10%;
  width: 300px;
  height: 300px;
  opacity: 0.035;
}

.site-footer {
  position: relative;
  overflow: hidden;
}

.site-footer__watermark {
  position: absolute;
  top: 34px;
  left: calc(50% - 50px);
  width: 100px;
  height: 100px;
  background: white;
  opacity: 0.045;
  -webkit-mask: url("../brand/uprime-mark.png") center / contain no-repeat;
  mask: url("../brand/uprime-mark.png") center / contain no-repeat;
}

.site-footer__top,
.site-footer__bottom {
  position: relative;
  z-index: 1;
}

.footer-socials a {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1260px) {
  .header-socials {
    display: none;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.72rem;
  }

  .wordmark--header .wordmark__mark {
    width: 50px;
    height: 50px;
  }

  .hero__layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.8fr);
  }

  .hero h1 {
    font-size: clamp(2.75rem, 4vw, 3.4rem);
  }
}

@media (max-width: 980px) {
  .site-header__inner,
  .site-header.is-scrolled .site-header__inner {
    width: min(100% - 30px, 760px);
    min-height: 78px;
    grid-template-areas: "menu logo path";
    grid-template-columns: 1fr auto 1fr;
  }

  .site-nav {
    display: none;
  }

  .wordmark--header {
    grid-area: logo;
  }

  .wordmark--header .wordmark__mark,
  .site-header.is-scrolled .wordmark--header .wordmark__mark {
    width: 43px;
    height: 43px;
  }

  .wordmark--header .wordmark__name small {
    display: block;
    font-size: 0.58rem;
  }

  .mobile-menu-button {
    grid-area: path;
    justify-self: end;
    display: flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 9px;
    border: 1px solid rgba(54, 74, 85, 0.16);
    border-radius: 13px;
    background: transparent;
  }

  .mobile-menu-button span {
    display: block;
    width: 100%;
    height: 1.5px;
    border-radius: 99px;
    background: var(--charcoal);
  }

  .mobile-path {
    grid-area: menu;
    justify-self: start;
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding-inline: 12px;
    border: 1px solid rgba(183, 122, 122, 0.65);
    border-radius: 999px;
    color: var(--rosy-dark);
    font-size: 0.7rem;
    direction: rtl;
  }

  .mobile-backdrop {
    position: fixed;
    z-index: 40;
    inset: 0;
    display: block;
    border: 0;
    background: rgba(27, 41, 48, 0.38);
    opacity: 0;
    visibility: hidden;
    transition: opacity 240ms ease, visibility 240ms ease;
  }

  .mobile-backdrop.is-open {
    opacity: 1;
    visibility: visible;
  }

  .mobile-drawer {
    position: fixed;
    z-index: 50;
    top: 0;
    right: 0;
    display: flex;
    width: min(410px, 92vw);
    height: 100dvh;
    flex-direction: column;
    padding: 24px;
    background: var(--bone-soft);
    box-shadow: -24px 0 60px rgba(54, 74, 85, 0.16);
    transform: translateX(105%);
    transition: transform 260ms ease;
    direction: rtl;
    overflow-y: auto;
  }

  .mobile-drawer.is-open {
    transform: translateX(0);
  }

  .mobile-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    color: var(--charcoal-dark);
    font-weight: 700;
  }

  .mobile-drawer__head button {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(54, 74, 85, 0.14);
    border-radius: 50%;
    background: transparent;
    color: var(--charcoal);
    font-size: 1.6rem;
  }

  .mobile-nav-item {
    border-bottom: 1px solid rgba(54, 74, 85, 0.1);
  }

  .mobile-nav-item > a,
  .mobile-nav-item > button {
    display: flex;
    width: 100%;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    border: 0;
    background: transparent;
    color: var(--charcoal-dark);
    font: inherit;
    font-size: 0.9rem;
    text-align: right;
  }

  .mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 260ms ease;
  }

  .mobile-submenu > a {
    display: block;
    padding-right: 18px;
    color: rgba(54, 74, 85, 0.68);
    font-size: 0.78rem;
    line-height: 1.7;
  }

  .mobile-submenu.is-open {
    max-height: 360px;
  }

  .mobile-submenu.is-open > a {
    padding-block: 9px;
  }

  .mobile-drawer__cta {
    display: grid;
    min-height: 50px;
    place-items: center;
    margin-top: 24px;
    border: 1px solid var(--rosy);
    border-radius: 999px;
    color: var(--rosy-dark);
  }

  .mobile-socials {
    margin-top: auto;
    padding-top: 32px;
  }

  .hero__layout {
    width: min(100% - 38px, 760px);
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 62px 72px;
  }

  .hero__visual {
    min-height: 470px;
  }

  .hero-photo--community {
    inset: 20px 0 80px 0;
  }

  .hero-photo--mentor {
    right: 18px;
  }

  .hero__watermark {
    left: 8%;
    top: auto;
    bottom: 70px;
    width: 58vw;
    transform: none;
  }

  .uprime-story {
    grid-template-columns: auto 1fr;
    gap: 24px 34px;
  }

  .uprime-story > p {
    grid-column: 1 / -1;
  }

  .webinar-journey__intro {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .webinar-journey__intro .eyebrow {
    margin-bottom: 0;
  }

  .webinar-seasons {
    grid-template-columns: 1fr 1fr;
  }

  .season-card--current {
    grid-column: 1 / -1;
    min-height: 300px;
  }
}

@media (max-width: 680px) {
  .site-header__inner,
  .site-header.is-scrolled .site-header__inner {
    width: min(100% - 24px, 520px);
    min-height: 72px;
  }

  .wordmark--header .wordmark__name strong {
    font-size: 1rem;
  }

  .wordmark--header .wordmark__name small {
    display: none;
  }

  .hero__layout {
    display: flex;
    min-height: 0;
    flex-direction: column;
    padding-block: 50px 62px;
  }

  .hero__content {
    display: contents;
  }

  .hero__identity { order: 1; margin-bottom: 0; }
  .hero h1 { order: 2; font-size: clamp(2.1rem, 10.4vw, 3rem); line-height: 1.45; }
  .hero__title-line + .hero__title-line { font-size: clamp(1.23rem, 5.6vw, 1.65rem); line-height: 1.75; }
  .hero__lead { order: 3; margin-top: 0; font-size: 0.95rem; }
  .hero__actions { order: 4; width: 100%; margin-top: 0; }
  .hero__visual { order: 5; width: 100%; min-height: 390px; }
  .hero__signals { order: 6; display: grid; width: 100%; margin-top: 0; gap: 12px; }

  .hero-photo--community {
    inset: 8px 0 74px 0;
    border-radius: 24px;
  }

  .hero-photo--mentor {
    right: 10px;
    bottom: 18px;
    width: 56%;
    height: 132px;
    border-width: 4px;
    border-radius: 18px;
  }

  .hero__visual-caption {
    display: none;
  }

  .hero__signals span {
    font-size: 0.78rem;
  }

  .hero__signals img {
    width: 38px;
    height: 38px;
  }

  .uprime-story {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 70px;
  }

  .uprime-story > p {
    grid-column: auto;
  }

  .webinar-journey {
    padding: 22px;
  }

  .webinar-seasons {
    grid-template-columns: 1fr;
  }

  .season-card--current {
    grid-column: auto;
  }

  .site-footer__watermark {
    top: 58px;
    left: calc(50% - 42px);
    width: 84px;
    height: 84px;
  }
}

/* Prompt-lock: these rules intentionally close the final cascade. */
.path-card--featured,
.path-card--featured:hover,
.path-card--featured:focus-visible {
  border-color: rgba(183, 122, 122, 0.34);
  background: rgba(183, 122, 122, 0.08);
  color: var(--charcoal-dark);
}

.path-card--featured .path-card__eyebrow,
.path-card--featured h3,
.path-card--featured p,
.path-card--featured .path-card__link {
  color: var(--charcoal-dark);
}

.path-card--featured .path-card__eyebrow,
.path-card--featured .path-card__link {
  color: var(--rosy-dark);
}

.hero-photo {
  display: grid;
  place-items: center;
  background: rgba(213, 195, 173, 0.36);
}

.hero-photo img,
.hero-photo--community img,
.hero-photo--mentor img {
  position: absolute;
  inset-inline: 0;
  top: -14%;
  display: block;
  width: 100%;
  height: auto;
  object-fit: initial;
  object-position: center;
  transform: none;
}

.hero-photo--community {
  inset: 34px 0 222px 0;
  aspect-ratio: 2.12 / 1;
}

.hero-photo--mentor {
  right: auto;
  left: 7%;
  bottom: 30px;
  width: 78%;
  height: auto;
  aspect-ratio: 2.12 / 1;
  border: 5px solid var(--bone-soft);
}

.hero__visual-caption {
  right: 4%;
  left: auto;
  bottom: 10px;
}

.hero__title-line + .hero__title-line {
  white-space: nowrap;
}

.site-footer {
  background: var(--bone);
  color: var(--charcoal-dark);
}

.footer-socials a {
  border-color: rgba(54, 74, 85, 0.2);
  color: rgba(54, 74, 85, 0.76);
}

.site-footer__bottom {
  border-top-color: rgba(54, 74, 85, 0.12);
  color: rgba(54, 74, 85, 0.62);
}

.site-footer__watermark {
  background: var(--charcoal);
  opacity: 0.045;
}

@media (max-width: 980px) {
  .hero__title-line + .hero__title-line {
    white-space: normal;
  }

  .hero__visual {
    min-height: 560px;
  }

  .hero-photo--community {
    inset: 16px 0 auto 0;
    height: auto;
  }

  .hero-photo--mentor {
    left: 8%;
    bottom: 24px;
    width: 76%;
    height: auto;
  }
}

@media (max-width: 680px) {
  .hero__visual {
    min-height: 390px;
  }

  .hero-photo--community {
    inset: 8px 0 auto 0;
  }

  .hero-photo--mentor {
    right: auto;
    left: 5%;
    bottom: 18px;
    width: 72%;
    height: auto;
  }
}

/* Final crop lock: keep Google Meet controls outside the visible frames. */
.hero-photo--community img,
.hero-photo--mentor img {
  top: -10%;
  width: 100%;
  height: 122%;
  object-fit: cover;
  object-position: center 28%;
}

.hero-photo--mentor img {
  top: -12%;
  height: 126%;
  object-position: center 25%;
}

/* Cross-page design lock: all routes inherit the homepage surfaces and chrome. */
.about-page {
  background: var(--bone-soft);
}

.about-hero {
  background:
    radial-gradient(circle at 7% 12%, rgba(185, 125, 128, 0.23), transparent 31%),
    linear-gradient(125deg, #ead8d0 0%, #f5eae4 55%, #fbf5f0 100%);
}

.about-hero__layout {
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 54px;
}

.about-hero h1 {
  max-width: 930px;
  font-size: clamp(2.15rem, 4.15vw, 4.15rem);
  line-height: 1.42;
}

.about-hero__mark {
  width: 230px;
  border-color: rgba(255, 255, 255, 0.12);
  background: var(--charcoal-dark);
  color: white;
  box-shadow: 0 24px 70px rgba(38, 58, 69, 0.18);
}

.about-story,
.founders {
  background: var(--paper);
}

.about-values {
  position: relative;
  overflow: hidden;
  background: var(--bone);
}

.about-values::after,
.about-school::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  left: max(24px, calc((100% - 1180px) / 2));
  bottom: 34px;
  background: var(--charcoal);
  opacity: 0.035;
  -webkit-mask: url("../brand/uprime-mark.png") center / contain no-repeat;
  mask: url("../brand/uprime-mark.png") center / contain no-repeat;
  pointer-events: none;
}

.about-values > .shell,
.about-school > .shell {
  position: relative;
  z-index: 1;
}

.about-school {
  position: relative;
  overflow: hidden;
  background: var(--charcoal-dark);
}

.about-school::after {
  background: white;
  opacity: 0.045;
}

.about-closing {
  background:
    radial-gradient(circle at 8% 18%, rgba(185, 125, 128, 0.2), transparent 32%),
    var(--bone-soft);
}

/* Header and footer remain identical on every route through shared components. */
.site-header {
  background: rgba(255, 250, 246, 0.9);
}

.site-footer {
  background: var(--bone);
  color: var(--charcoal-dark);
}

/* Dark-form contrast lock. */
.contact .phone-field__label,
.contact .phone-field small,
.contact-form .phone-field__label,
.contact-form .phone-field small {
  color: rgba(255, 255, 255, 0.9);
}

.contact .phone-field small,
.contact-form .phone-field small {
  color: rgba(255, 255, 255, 0.76);
}

.contact .phone-field input,
.contact-form .phone-field input {
  color: white;
}

.contact .phone-field input::placeholder,
.contact-form .phone-field input::placeholder {
  color: rgba(255, 255, 255, 0.76);
  opacity: 1;
}

/* Definitive Meet crop: wide frames hide browser chrome, reactions and controls. */
.hero-photo--community,
.hero-photo--mentor {
  aspect-ratio: 2.58 / 1;
}

.hero-photo--community img,
.hero-photo--mentor img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: none;
}

@media (max-width: 980px) {
  .about-hero__layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-hero__mark {
    width: 190px;
  }

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

  .founders__heading h2 {
    white-space: normal;
  }

  .about-hero h1 {
    font-size: clamp(2rem, 5.6vw, 3.55rem);
  }
}

@media (max-width: 680px) {
  .about-hero__layout {
    grid-template-columns: 1fr;
  }

  .about-hero__mark {
    width: 142px;
  }

  .about-hero h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 9.5vw, 2.7rem);
  }

  .hero-photo--community,
  .hero-photo--mentor {
    aspect-ratio: 2.35 / 1;
  }
}

/* Keep the international-number example fully visible inside its field. */
.phone-field__number input::placeholder {
  font-size: clamp(0.58rem, 0.8vw, 0.72rem);
}
