:root {
  --ease-main: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-hover: 240ms;
  --duration-small: 450ms;
  --duration-medium: 700ms;
  --duration-large: 900ms;
  --text-stagger: 60ms;
  --card-stagger: 120ms;
  --marquee-duration: 28s;
  --ink: #0b0b11;
  --muted: #5b5662;
  --line: rgba(11, 11, 17, 0.22);
  --paper: #fffdf9;
  --purple: #6a25f5;
  --purple-soft: #c49cff;
  --lilac: #eadbff;
  --sky: #d7f2ff;
  --yellow: #fff27a;
  --coral: #ffd3bc;
  --rose: #ffd7f4;
  --green: #c6e2b5;
  --max-width: 1180px;
  --header-height: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
  border-radius: 4px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.animated-gradient {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 18% 20%, rgba(196, 156, 255, 0.32), transparent 38%),
    radial-gradient(ellipse at 78% 34%, rgba(255, 211, 188, 0.45), transparent 38%),
    radial-gradient(ellipse at 48% 88%, rgba(106, 37, 245, 0.2), transparent 46%),
    var(--paper);
}

.gradient-blob {
  position: absolute;
  width: 72vw;
  height: 48vw;
  min-width: 640px;
  min-height: 430px;
  opacity: 0.58;
  filter: blur(46px);
  border-radius: 42% 58% 55% 45%;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.gradient-blob-one {
  left: -20vw;
  top: 18vh;
  background: linear-gradient(135deg, rgba(106, 37, 245, 0.52), rgba(255, 215, 244, 0.18));
  animation: background-drift-one 18s ease-in-out infinite alternate;
}

.gradient-blob-two {
  right: -22vw;
  top: 12vh;
  background: linear-gradient(135deg, rgba(255, 211, 188, 0.58), rgba(234, 219, 255, 0.3));
  animation: background-drift-two 16s ease-in-out infinite alternate;
}

.gradient-blob-three {
  left: 16vw;
  bottom: -22vh;
  background: linear-gradient(135deg, rgba(196, 156, 255, 0.44), rgba(215, 242, 255, 0.24));
  animation: background-drift-three 20s ease-in-out infinite alternate;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 46vw;
  height: 46vw;
  max-width: 620px;
  max-height: 620px;
  min-width: 300px;
  min-height: 300px;
  border-radius: 48%;
  background: radial-gradient(circle, rgba(255, 242, 122, 0.22), rgba(196, 156, 255, 0.18) 35%, transparent 68%);
  filter: blur(26px);
  opacity: 0.52;
  transform: translate3d(-50%, -50%, 0);
  pointer-events: none;
  will-change: transform;
}

@keyframes background-drift-one {
  from { transform: translate3d(0, 0, 0) rotate(-2deg); }
  to { transform: translate3d(18vw, -8vh, 0) rotate(4deg); }
}

@keyframes background-drift-two {
  from { transform: translate3d(0, 0, 0) rotate(2deg); }
  to { transform: translate3d(-16vw, 10vh, 0) rotate(-3deg); }
}

@keyframes background-drift-three {
  from { transform: translate3d(0, 0, 0) rotate(0deg); }
  to { transform: translate3d(10vw, -15vh, 0) rotate(4deg); }
}

.content-width {
  width: min(calc(100% - 32px), var(--max-width));
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(72px, 10vw, 132px);
  position: relative;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: auto minmax(120px, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  min-height: var(--header-height);
  padding: 16px clamp(16px, 3vw, 42px);
  background: rgba(255, 253, 249, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11, 11, 17, 0.08);
}

.brand-mark {
  display: inline-grid;
  align-content: center;
  gap: 0;
  min-width: 82px;
  color: var(--purple);
  font-weight: 900;
  font-size: 16px;
  line-height: 0.9;
  text-transform: uppercase;
}

.header-line {
  justify-self: center;
  max-width: 330px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
}

.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-nav {
  justify-content: flex-end;
}

.nav-pill,
.magnetic-button {
  border: 1px solid rgba(11, 11, 17, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  white-space: nowrap;
  transform: translate3d(0, 0, 0);
  transition:
    transform 260ms var(--ease-main),
    background-color 220ms ease-out,
    color 220ms ease-out,
    border-color 220ms ease-out;
  will-change: transform;
}

.nav-pill {
  padding: 8px 12px;
  font-size: 12px;
}

.nav-pill:hover,
.nav-pill:focus-visible,
.magnetic-button:hover,
.magnetic-button:focus-visible {
  transform: scale(1.015);
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

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

.referral-button,
.menu-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 16px;
}

.menu-button {
  appearance: none;
}

.text-roll {
  overflow: hidden;
}

.roll-mask {
  display: inline-grid;
  overflow: hidden;
  height: 1.15em;
}

.roll-mask span,
.roll-mask::after {
  grid-area: 1 / 1;
  display: block;
  transition: transform 500ms cubic-bezier(0.76, 0, 0.24, 1);
}

.roll-mask::after {
  content: attr(data-text);
  transform: translateY(110%);
}

.text-roll:hover .roll-mask span,
.text-roll:focus-visible .roll-mask span {
  transform: translateY(-110%);
}

.text-roll:hover .roll-mask::after,
.text-roll:focus-visible .roll-mask::after {
  transform: translateY(0);
}

.referral-button {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}

.referral-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--yellow);
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 550ms cubic-bezier(0.76, 0, 0.24, 1);
}

.referral-button:hover::before,
.referral-button:focus-visible::before {
  transform: scaleY(1);
}

.referral-button:hover,
.referral-button:focus-visible {
  color: var(--ink);
}

.menu-icon {
  position: relative;
  width: 18px;
  height: 12px;
}

.menu-icon span {
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 450ms var(--ease-main);
}

.menu-icon span:first-child {
  top: 1px;
}

.menu-icon span:last-child {
  bottom: 1px;
}

body.menu-open .menu-icon span:first-child {
  transform: translateY(4px) rotate(45deg);
}

body.menu-open .menu-icon span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: clamp(28px, 5vw, 56px) clamp(24px, 6vw, 72px) clamp(28px, 4vw, 48px);
  background:
    radial-gradient(ellipse at 74% 20%, rgba(255, 242, 122, 0.7), transparent 34%),
    linear-gradient(135deg, #6a25f5 0%, #a778ff 55%, #ffd3bc 100%);
  color: #fff;
  clip-path: circle(0% at calc(100% - 45px) 40px);
  pointer-events: none;
  visibility: hidden;
}

.menu-overlay a:focus-visible,
.menu-overlay button:focus-visible {
  outline-color: #fff;
}

.menu-overlay.is-open {
  pointer-events: auto;
  visibility: visible;
  clip-path: circle(160% at calc(100% - 45px) 40px);
}

.menu-close {
  position: absolute;
  top: clamp(20px, 4vw, 40px);
  right: clamp(20px, 4vw, 56px);
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  appearance: none;
}

.menu-close svg {
  width: 18px;
  height: 18px;
}

.menu-close:hover,
.menu-close:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.menu-overlay-inner {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  margin-top: clamp(36px, 4vw, 20px);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.menu-kicker,
.eyebrow,
.wallet-kicker,
.pathway-number {
  margin: 0;
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-kicker {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.menu-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 10px 14px;
  border-radius: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  transition: background-color 240ms ease, padding-left 240ms ease;
}

.menu-link:hover,
.menu-link:focus-visible,
.menu-link.is-current {
  background: rgba(255, 255, 255, 0.14);
  padding-left: 18px;
}

.menu-icon {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  opacity: 0.85;
  transition: opacity 240ms ease;
}

.menu-icon svg {
  width: 20px;
  height: 20px;
}

.menu-link:hover .menu-icon,
.menu-link:focus-visible .menu-icon,
.menu-link.is-current .menu-icon {
  opacity: 1;
}

.menu-link-mask {
  display: inline-block;
  overflow: hidden;
  flex: 1;
}

.menu-link-mask span {
  display: inline-block;
  will-change: transform, opacity;
}

.menu-arrow {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-left: auto;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.menu-arrow svg {
  width: 15px;
  height: 15px;
}

.menu-link:hover .menu-arrow,
.menu-link:focus-visible .menu-arrow,
.menu-link.is-current .menu-arrow {
  opacity: 0.9;
  transform: translateX(0);
}

.menu-link.is-current {
  color: var(--yellow);
}

.menu-sublink {
  font-size: 20px;
  font-weight: 700;
}

.menu-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 2px;
  padding: 0 14px;
}

.menu-category span {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.menu-category::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.menu-category:first-child {
  margin-top: 6px;
}

.menu-divider {
  height: 1px;
  margin: 14px 14px;
  background: rgba(255, 255, 255, 0.18);
}

.menu-contact-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 0 14px;
}

.menu-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: 16px;
  font-weight: 700;
}

.menu-contact .menu-icon {
  width: 18px;
  height: 18px;
  opacity: 0.75;
}

.menu-contact .menu-icon svg {
  width: 16px;
  height: 16px;
}

.menu-contact:hover,
.menu-contact:focus-visible {
  text-decoration: underline;
}

.menu-contact-sep {
  color: rgba(255, 255, 255, 0.3);
}

.menu-illustration {
  position: absolute;
  right: clamp(-20px, 2vw, 20px);
  bottom: 70px;
  z-index: 0;
  width: min(46vw, 380px);
  height: auto;
  pointer-events: none;
}

.menu-tagline {
  position: absolute;
  right: clamp(24px, 5vw, 64px);
  bottom: 28px;
  z-index: 0;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

@media (max-width: 900px) {
  .menu-illustration,
  .menu-tagline {
    display: none;
  }
}

@media (max-width: 640px) {
  .menu-link {
    font-size: 21px;
  }

  .menu-sublink {
    font-size: 18px;
  }
}

.site-main {
  padding-top: var(--header-height);
}

.form-notice {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 90;
  width: min(520px, calc(100% - 32px));
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(11, 11, 17, 0.12);
  transform: translateX(-50%);
}

.form-notice-success {
  border-color: rgba(66, 153, 88, 0.35);
}

.form-notice-error {
  border-color: rgba(190, 45, 45, 0.35);
}

.sticker-marquee {
  position: absolute;
  left: 0;
  right: 0;
  top: 28px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.58;
}

.sticker-track {
  display: flex;
  width: max-content;
  gap: clamp(16px, 2vw, 32px);
  animation: sticker-marquee var(--marquee-duration) linear infinite;
  will-change: transform;
}

.sticker-set {
  display: flex;
  gap: clamp(16px, 2vw, 32px);
  padding-right: clamp(16px, 2vw, 32px);
}

.sticker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  min-height: 42px;
  padding: 8px 18px;
  border: 1px solid rgba(106, 37, 245, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--purple);
  font-weight: 800;
  animation: sticker-float 5s ease-in-out infinite alternate;
  will-change: transform;
}

.sticker:nth-child(2) {
  animation-duration: 4.3s;
  animation-delay: -1.2s;
  background: rgba(215, 242, 255, 0.72);
}

.sticker:nth-child(3) {
  animation-duration: 5.7s;
  animation-delay: -2.4s;
  background: rgba(255, 242, 122, 0.7);
}

.sticker:nth-child(4) {
  animation-duration: 4.8s;
  animation-delay: -1.8s;
  background: rgba(255, 211, 188, 0.7);
}

@keyframes sticker-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes sticker-float {
  from { transform: translateY(-4px) rotate(-1.5deg); }
  to { transform: translateY(6px) rotate(1.5deg); }
}

.hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  padding-top: clamp(64px, 8vw, 104px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: clamp(26px, 4vw, 46px);
  text-align: center;
}

.hero-copy {
  display: grid;
  justify-items: center;
  gap: 28px;
}

.hero-eyebrow {
  width: fit-content;
  margin: 0;
  padding: 9px 15px;
  border: 1px solid rgba(11, 11, 17, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--muted);
}

.hero-headline,
.section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-headline {
  font-size: clamp(52px, 8vw, 106px);
}

.hero-line {
  display: block;
}

.hero-line-second {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(10px, 1.6vw, 22px);
  flex-wrap: wrap;
}

.hero-word-mask,
.heading-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.hero-word,
.heading-mask span {
  display: inline-block;
  will-change: transform, opacity;
}

.section-heading h2 .heading-mask {
  display: block;
}

.hero-logo {
  display: inline-grid;
  place-items: center;
  width: clamp(54px, 7vw, 92px);
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--purple);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(16px, 2vw, 26px);
  font-weight: 900;
  line-height: 1;
  will-change: transform, opacity;
}

.hero-period {
  display: inline-block;
  color: var(--purple);
  will-change: transform, opacity;
}

.hero-actions {
  display: grid;
  justify-items: center;
  gap: 22px;
  max-width: 650px;
}

.hero-actions p,
.section-heading p,
.founder-panel p,
.career-panel p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 19px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 260ms var(--ease-main),
    background-color 220ms ease-out,
    color 220ms ease-out;
  will-change: transform;
}

.primary-button {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.7);
}

.primary-button:hover,
.secondary-button:hover,
.primary-button:focus-visible,
.secondary-button:focus-visible {
  transform: scale(1.015);
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.primary-button span,
.secondary-button span,
.pathway-card a span {
  display: inline-block;
  transition: transform 260ms var(--ease-main);
}

.primary-button:hover span,
.secondary-button:hover span,
.pathway-card a:hover span {
  transform: translateX(4px);
}

.hero-visual {
  margin: 0;
  order: -1;
  justify-self: center;
  width: min(100%, 760px);
  max-height: 360px;
  overflow: hidden;
  border-radius: 42% 58% 57% 43%;
  background: #fff;
  box-shadow: 0 24px 80px rgba(106, 37, 245, 0.14);
}

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

.wallet-showcase {
  display: grid;
  grid-template-columns: minmax(150px, 0.62fr) minmax(280px, 1fr) minmax(150px, 0.62fr);
  grid-template-areas:
    "left1 main right"
    "left2 main right";
  gap: 16px;
  align-items: center;
  margin-top: clamp(54px, 8vw, 110px);
}

.wallet-card,
.wallet-main {
  border: 1px solid rgba(11, 11, 17, 0.16);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 56px rgba(11, 11, 17, 0.08);
  will-change: transform, opacity;
}

.wallet-card {
  display: grid;
  gap: 10px;
  min-height: 185px;
  padding: 18px;
  border-radius: 28px;
  transition:
    transform 300ms var(--ease-main),
    background-color 220ms ease-out;
}

.wallet-card:hover {
  transform: scale(1.008);
}

.wallet-card-left:first-of-type {
  grid-area: left1;
}

.wallet-card-left:nth-of-type(2) {
  grid-area: left2;
}

.wallet-card-right {
  grid-area: right;
}

.wallet-card-icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--lilac);
  color: var(--purple);
  font-weight: 900;
  will-change: transform, opacity;
}

.wallet-card-heading {
  margin: 0;
  overflow: hidden;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  will-change: transform, opacity;
}

.wallet-card-heading span {
  display: inline-block;
}

.wallet-card-description {
  margin: 0;
  color: var(--muted);
  will-change: transform, opacity;
}

.wallet-main {
  grid-area: main;
  display: grid;
  gap: 20px;
  min-height: 410px;
  padding: clamp(26px, 4vw, 48px);
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(234, 219, 255, 0.72)),
    radial-gradient(ellipse at 90% 12%, rgba(255, 242, 122, 0.7), transparent 40%);
}

.wallet-main h2 {
  max-width: 680px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.98;
}

.wallet-token-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-self: end;
}

.wallet-token-row {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(11, 11, 17, 0.16);
  font-weight: 800;
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(32px, 5vw, 60px);
}

.section-heading h2 {
  font-size: clamp(42px, 6vw, 82px);
}

.section-heading h2 > span {
  display: block;
}

.support-list {
  display: grid;
  gap: 14px;
}

.support-row,
.security-pill {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(11, 11, 17, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  transform-origin: center;
  transition:
    transform 300ms var(--ease-main),
    background-color 220ms ease-out;
  will-change: transform, opacity;
}

.support-row:hover,
.security-pill:hover {
  transform: scale(1.008);
  background: rgba(255, 255, 255, 0.92);
}

.pill-left,
.pill-right {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding: clamp(18px, 2.5vw, 30px);
  will-change: transform;
}

.pill-left {
  background: rgba(255, 255, 255, 0.72);
}

.pill-right {
  border-left: 1px solid rgba(11, 11, 17, 0.12);
}

.support-number {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--lilac);
  color: var(--purple);
  font-weight: 900;
}

.support-index {
  align-self: flex-start;
  min-width: 28px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.support-number img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.support-row .support-number {
  background: transparent;
}

.support-row:nth-child(2n) .support-number,
.service-tag {
  background: var(--yellow);
  color: var(--ink);
}

.support-row:nth-child(3n) .support-number {
  background: var(--sky);
  color: #146b87;
}

.support-row:nth-child(4n) .support-number {
  background: var(--coral);
  color: #873f20;
}

.pill-heading-mask {
  overflow: hidden;
}

.pill-heading {
  display: inline-block;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.8vw, 38px);
  line-height: 1.05;
  will-change: transform, opacity;
}

.pill-description {
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.45vw, 18px);
  will-change: transform, opacity;
}

.support-bullets {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: disc;
}

.support-row .pill-right {
  align-items: flex-start;
  padding-block: 22px;
}

.mb-support-closing {
  margin: 28px 0 0;
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 17px);
}

.mb-start-conversation {
  display: grid;
  gap: 14px;
  justify-items: start;
  padding: clamp(32px, 5vw, 56px);
  margin-block: clamp(24px, 4vw, 48px);
  border: 2px solid var(--ink);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.72);
}

.mb-start-conversation h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 40px);
}

.mb-start-conversation h3 {
  margin: 6px 0 0;
  font-size: clamp(18px, 2vw, 22px);
}

.mb-start-conversation p {
  margin: 0;
  color: var(--muted);
}

.services-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(234, 219, 255, 0.28), rgba(255, 255, 255, 0));
}

.service-grid {
  display: grid;
  gap: 18px;
}

.service-pill {
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.58fr);
  border-radius: 32px;
}

.service-copy {
  align-items: flex-start;
  flex-direction: column;
}

.service-tag {
  display: inline-flex;
  width: auto;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-copy ul,
.pathway-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.service-copy li,
.pathway-card li {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(106, 37, 245, 0.1);
  color: #34116f;
  font-size: 13px;
  font-weight: 800;
}

.service-image-wrap {
  margin: 0;
  min-height: 280px;
  padding: 0;
  overflow: hidden;
  background: var(--lilac);
}

.service-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.pathway-card,
.founder-panel,
.purpose-item,
.career-panel,
.before-panel,
.contact-card {
  border: 1px solid rgba(11, 11, 17, 0.16);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 56px rgba(11, 11, 17, 0.07);
  will-change: transform, opacity;
}

.pathway-card {
  display: grid;
  gap: 14px;
  min-height: 390px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 8px;
}

.pathway-card:nth-child(1) {
  background: linear-gradient(140deg, rgba(255, 244, 176, 0.95), rgba(255, 210, 120, 0.5));
}

.pathway-card:nth-child(2) {
  background: linear-gradient(140deg, rgba(234, 219, 255, 0.95), rgba(151, 109, 255, 0.58));
}

.pathway-card:nth-child(3) {
  background: linear-gradient(140deg, rgba(255, 210, 200, 0.95), rgba(255, 140, 130, 0.45));
}

.pathway-card:nth-child(4) {
  background: linear-gradient(140deg, rgba(198, 232, 255, 0.95), rgba(120, 190, 255, 0.5));
}

.pathway-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(11, 11, 17, 0.85);
  color: #fff;
}

.pathway-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}

.pathway-subtitle {
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
}

.pathway-card p {
  margin: 0;
  color: var(--muted);
}

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

.pathway-columns h4 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.pathway-columns ul,
.pathway-columns li {
  display: block;
  background: none;
  border-radius: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
  list-style: disc;
}

.pathway-columns ul {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pathway-note {
  font-size: 13px;
  font-style: italic;
}

@media (max-width: 640px) {
  .pathway-columns {
    grid-template-columns: 1fr;
  }
}

.pathway-card a {
  align-self: end;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--coral);
  font-weight: 900;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

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

.faq-list details {
  border-bottom: 1px solid rgba(11, 11, 17, 0.22);
  padding: 0 0 12px;
}

.faq-list summary {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: center;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.5vw, 31px);
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  content: "+";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 32px;
  line-height: 1;
}

.faq-list details[open] summary::before {
  content: "x";
  font-size: 24px;
}

.faq-list p {
  margin: 8px 0 0 46px;
  color: var(--muted);
}

.about-grid,
.form-intro,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.5fr);
  gap: clamp(26px, 5vw, 76px);
  align-items: center;
}

.about-image,
.form-image,
.contact-image {
  margin: 0;
  overflow: hidden;
  border-radius: 44% 56% 58% 42%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 80px rgba(106, 37, 245, 0.12);
}

.about-image img,
.form-image img,
.contact-image img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
}

.founder-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 860px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 8px;
}

.founder-bullets,
.values-list {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  list-style: disc;
}

.values-list {
  font-size: clamp(15px, 1.45vw, 18px);
}

.values-list strong {
  color: var(--ink);
}

.founder-panel h3,
.career-panel h3,
.before-panel h3,
.contact-card h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.05;
}

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

.purpose-item {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 8px;
}

.purpose-item span {
  color: var(--purple);
  font-weight: 900;
}

.purpose-item h3 {
  width: fit-content;
  margin: 0;
  padding: 10px 24px;
  border-radius: 999px;
  background: var(--lilac);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.purpose-item:nth-child(2) h3 {
  background: var(--sky);
}

.purpose-item:nth-child(3) h3 {
  background: var(--yellow);
}

.purpose-item p {
  margin: 0;
  color: var(--muted);
}

.complaints-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-block: clamp(28px, 5vw, 56px);
}

.complaints-item {
  display: grid;
  gap: 10px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(11, 11, 17, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.complaints-item h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.complaints-item p {
  margin: 0;
  color: var(--muted);
}

.complaints-item a {
  color: var(--purple);
  font-weight: 700;
}

@media (max-width: 780px) {
  .complaints-grid {
    grid-template-columns: 1fr;
  }
}

.pathway-detail-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 44px);
  margin-block: clamp(24px, 4vw, 44px);
}

.pathway-detail-columns h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.pathway-detail-columns ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  list-style: disc;
}

.pathway-detail-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 32px;
  margin: 0 0 clamp(22px, 4vw, 40px);
  padding: clamp(18px, 2.5vw, 26px);
  border: 1px solid rgba(11, 11, 17, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
}

.pathway-detail-facts dt {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.pathway-detail-facts dd {
  margin: 0;
}

.pathway-detail-limits {
  padding: clamp(18px, 2.5vw, 26px);
  border-left: 4px solid var(--purple);
  background: rgba(106, 37, 245, 0.06);
}

.pathway-detail-limits h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.pathway-detail-limits ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  list-style: disc;
}

.pathway-detail-limits li {
  margin-bottom: 6px;
}

.pathway-detail-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0;
}

.mb-eligibility-box {
  margin-block: clamp(24px, 4vw, 48px);
}

.mb-professionals-section {
  margin-block: clamp(28px, 5vw, 56px);
  max-width: 820px;
}

.mb-professionals-section h2 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3.2vw, 34px);
}

.mb-professionals-section p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.mb-professionals-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  list-style: disc;
}

.mb-lavender-panel {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-block: clamp(28px, 5vw, 56px);
  padding: clamp(26px, 4vw, 40px);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(106, 37, 245, 0.18);
}

.mb-lavender-icon {
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(106, 37, 245, 0.12);
  color: var(--purple);
}

.mb-lavender-icon svg {
  width: 22px;
  height: 22px;
}

.mb-lavender-panel h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 30px);
}

.mb-lavender-panel p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.mb-lavender-panel a {
  color: var(--purple);
  font-weight: 700;
}

@media (max-width: 640px) {
  .mb-lavender-panel {
    flex-direction: column;
  }
}

.mb-equal-ctas {
  justify-self: stretch;
  width: 100%;
  flex-wrap: nowrap;
}

.mb-equal-ctas a {
  flex: 1 1 0;
  justify-content: center;
  text-align: center;
}

@media (max-width: 560px) {
  .mb-equal-ctas {
    flex-wrap: wrap;
  }

  .mb-equal-ctas a {
    flex: 1 1 100%;
  }
}

.mb-policy-page {
  max-width: 780px;
  margin-inline: auto;
  padding-block: clamp(20px, 4vw, 40px) clamp(40px, 6vw, 72px);
}

.mb-policy-page h2 {
  margin: clamp(28px, 4vw, 42px) 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.mb-policy-page > p {
  margin: 0 0 4px;
  color: var(--muted);
}

.mb-policy-page a {
  color: var(--purple);
  font-weight: 700;
}

.mb-policy-page .mb-purple-card {
  margin-top: clamp(28px, 4vw, 44px);
}

.mb-policy-page .mb-purple-card p {
  color: inherit;
}

.mb-policy-page .mb-purple-card a {
  color: #fff;
  text-decoration: underline;
}

.mb-breadcrumbs {
  padding-top: clamp(18px, 3vw, 28px);
}

.mb-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.mb-breadcrumbs a {
  color: var(--muted);
  text-decoration: underline;
}

.mb-breadcrumbs a:hover,
.mb-breadcrumbs a:focus-visible {
  color: var(--purple);
}

.mb-breadcrumbs [aria-current="page"] {
  color: var(--ink);
}

.mb-breadcrumb-sep {
  color: rgba(11, 11, 17, 0.35);
}

.founder-byline {
  margin: 4px 0 0;
  color: var(--muted);
}

.founder-governance-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(11, 11, 17, 0.14);
  font-size: 15px;
  color: var(--muted);
}

@media (max-width: 780px) {
  .pathway-detail-columns,
  .pathway-detail-facts {
    grid-template-columns: 1fr;
  }
}

.career-panel,
.before-panel,
.trust-panel {
  display: grid;
  gap: 12px;
  margin-top: clamp(28px, 5vw, 64px);
  padding: clamp(24px, 4vw, 44px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(234, 219, 255, 0.76)),
    radial-gradient(ellipse at 95% 15%, rgba(106, 37, 245, 0.22), transparent 34%);
}

.trust-panel h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 32px);
}

.trust-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
}

.trust-links a {
  color: var(--purple);
}

.form-intro,
.contact-grid {
  margin-bottom: 26px;
}

.before-panel {
  text-align: center;
}

.before-panel p {
  margin: 0;
  color: var(--muted);
}

.before-panel a {
  font-weight: 900;
  color: var(--purple);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.emergency-notice {
  margin-top: clamp(20px, 3vw, 32px);
  padding: 16px 22px;
  border: 2px solid #b3261e;
  border-radius: 8px;
  background: #fdecea;
  color: #611a15;
}

.emergency-notice p {
  margin: 0;
}

.office-note {
  margin-top: 6px !important;
  font-size: 15px;
}

.consent-note,
.upload-guidance,
.form-hint {
  margin: 0 0 14px;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(106, 37, 245, 0.07);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}

.upload-guidance a,
.form-privacy-notice a,
.consent-note a {
  color: var(--purple);
  font-weight: 700;
}

.form-privacy-notice {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
}

.marra-form {
  display: grid;
  gap: 26px;
  padding: clamp(22px, 4vw, 46px);
  border: 1px solid rgba(11, 11, 17, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 56px rgba(11, 11, 17, 0.06);
}

.marra-form fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  border: 0;
}

.marra-form legend {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 2px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--purple);
  color: #fff;
  font-weight: 900;
}

.marra-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.marra-form input,
.marra-form select,
.marra-form textarea {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-bottom: 2px solid rgba(11, 11, 17, 0.72);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  outline: 0;
  transition: border-color 220ms ease-out, background-color 220ms ease-out;
}

.marra-form textarea {
  resize: vertical;
  padding-top: 10px;
}

.marra-form input:focus,
.marra-form select:focus,
.marra-form textarea:focus {
  border-color: var(--purple);
  background: rgba(255, 255, 255, 0.54);
}

.full-field,
.form-submit {
  grid-column: 1 / -1;
}

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

.contact-form > label {
  min-width: 0;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(234, 219, 255, 0.76)),
    radial-gradient(ellipse at 95% 0%, rgba(106, 37, 245, 0.24), transparent 36%);
}

.contact-card p,
.contact-card a {
  margin: 0;
  color: var(--muted);
}

.contact-card a {
  font-weight: 800;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 140px 0 26px;
}

.footer-clouds {
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  height: 160px;
  pointer-events: none;
}

.footer-clouds span {
  position: absolute;
  display: block;
  width: clamp(94px, 13vw, 190px);
  height: clamp(48px, 7vw, 82px);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(234, 219, 255, 0.72), rgba(106, 37, 245, 0.38));
  animation: footer-cloud-float 5s ease-in-out infinite alternate;
}

.footer-clouds span::before,
.footer-clouds span::after {
  content: "";
  position: absolute;
  bottom: 24%;
  border-radius: 50%;
  background: inherit;
}

.footer-clouds span::before {
  left: 16%;
  width: 46%;
  aspect-ratio: 1;
}

.footer-clouds span::after {
  right: 12%;
  width: 58%;
  aspect-ratio: 1;
}

.footer-clouds span:nth-child(1) { left: 3%; top: 42px; animation-duration: 4.6s; }
.footer-clouds span:nth-child(2) { left: 25%; top: 12px; width: clamp(120px, 18vw, 260px); animation-delay: -1.2s; }
.footer-clouds span:nth-child(3) { left: 53%; top: 50px; animation-duration: 5.8s; animation-delay: -2s; }
.footer-clouds span:nth-child(4) { right: 4%; top: 28px; width: clamp(120px, 16vw, 220px); animation-delay: -2.7s; }
.footer-clouds span:nth-child(5) { left: 72%; top: 0; width: 86px; height: 38px; animation-duration: 4.2s; }

@keyframes footer-cloud-float {
  from { transform: translateY(-4px) rotate(-1deg); }
  to { transform: translateY(7px) rotate(1deg); }
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(200px, 1.1fr) repeat(5, minmax(120px, 1fr));
  gap: 28px;
  padding-top: 42px;
  border-top: 1px solid rgba(11, 11, 17, 0.12);
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(160px, 1fr));
  }
}

.footer-badge-link {
  display: inline-block;
  margin-top: 18px;
}

.footer-badge {
  display: block;
  height: auto;
  width: 110px;
}

@media (max-width: 640px) {
  .footer-badge {
    width: 90px;
  }
}

.footer-grid h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 15px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.6fr);
  gap: 28px;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(11, 11, 17, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.footer-brand {
  margin-bottom: 14px;
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

  .header-line {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .form-intro,
  .contact-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-self: stretch;
    max-height: 360px;
  }

  .wallet-showcase {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "left1"
      "left2"
      "right";
  }

  .wallet-main {
    min-height: 320px;
  }

  .support-row,
  .security-pill {
    grid-template-columns: 1fr;
    border-radius: 32px;
  }

  .pill-left,
  .pill-right {
    align-items: flex-start;
  }

  .pill-right {
    border-left: 0;
    border-top: 1px solid rgba(11, 11, 17, 0.12);
  }

  .service-pill {
    grid-template-columns: 1fr;
  }

  .pathway-grid,
  .purpose-grid,
  .founder-panel,
  .contact-card,
  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding-inline: 14px;
    gap: 10px;
  }

  .brand-mark {
    min-width: 64px;
    font-size: 13px;
  }

  .referral-button {
    display: none;
  }

  .menu-link {
    font-size: clamp(20px, 6vw, 26px);
  }

  .hero {
    min-height: auto;
  }

  .hero-line-second {
    gap: 10px;
  }

  .hero-headline {
    font-size: clamp(44px, 15vw, 72px);
  }

  .hero-logo {
    width: 50px;
  }

  .hero-actions p,
  .section-heading p {
    font-size: 17px;
  }

  .button-row {
    align-items: stretch;
  }

  .primary-button,
  .secondary-button,
  .button-row a {
    width: 100%;
  }

  .marra-form fieldset,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .section-pad {
    padding-block: 64px;
  }

  .sticker-track {
    animation-duration: 22s;
  }

  .cursor-glow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .cursor-glow {
    display: none;
  }
}

/* Multi-page Canva export rebuild */

.mb-background {
  position: fixed;
  inset: -8vh -8vw;
  z-index: -3;
  background-image: url("../img/canva/background.png");
  background-size: cover;
  background-position: center;
  opacity: 0.96;
  pointer-events: none;
  animation: mb-background-drift 17s ease-in-out infinite alternate;
  will-change: transform, background-position;
}

body {
  background: #fff;
}

.mb-main {
  padding-top: var(--header-height);
}

.mb-site-header {
  grid-template-columns: 170px 1fr auto;
  background: rgba(255, 255, 255, 0.62);
  border-bottom: 0;
  backdrop-filter: blur(8px);
}

.image-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.image-brand img {
  width: 175px;
  max-height: 70px;
  object-fit: contain;
}

.mb-site-header .header-line {
  max-width: 470px;
  font-size: 18px;
  line-height: 1.2;
}

.mb-site-header .referral-button,
.mb-site-header .menu-button {
  min-height: 38px;
  padding-inline: 16px;
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.menu-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.mb-page-hero,
.mb-home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.9fr);
  gap: clamp(28px, 7vw, 110px);
  align-items: center;
  min-height: clamp(520px, 64vh, 820px);
  padding-top: clamp(44px, 8vw, 118px);
}

.mb-hero-title,
.mb-home-title,
.mb-section-title,
.mb-question,
.mb-what {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.masked-heading > span {
  display: block;
  overflow: hidden;
}

.masked-heading > span > span {
  display: inline-block;
  will-change: transform, opacity;
}

.mb-hero-title {
  position: relative;
  z-index: 1;
  font-size: clamp(32px, 4.6vw, 62px);
}

.mb-404 {
  display: grid;
  justify-items: start;
  gap: 22px;
  padding-block: clamp(80px, 14vw, 160px);
}

.mb-404 p {
  margin: 0;
  max-width: 520px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted);
}

.mb-404-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.mb-hero-subtitle {
  margin: 14px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  color: var(--ink);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
}

@media (max-width: 900px) {
  .mb-hero-subtitle {
    font-size: clamp(34px, 5.5vw, 44px);
  }
}

@media (max-width: 640px) {
  .mb-hero-subtitle {
    font-size: clamp(32px, 8vw, 36px);
    line-height: 1.2;
  }
}

.mb-hero-subtitle-support {
  margin: 14px 0 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .mb-hero-subtitle-support {
    font-size: 17px;
  }
}

.mb-lead-paragraph {
  margin: 14px 0 0;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted);
}

.mb-hero-title i,
.mb-what i {
  display: block;
  width: min(48vw, 430px);
  height: 9px;
  margin-top: 16px;
  margin-left: 22%;
  border-radius: 999px;
  background: var(--ink);
  transform: rotate(-4deg);
  transform-origin: left center;
}

.mb-hero-photo {
  justify-self: end;
  width: min(100%, 560px);
  margin: 0;
  overflow: hidden;
  border-radius: 45% 55% 54% 46%;
  background: rgba(255, 255, 255, 0.7);
}

.mb-hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.mb-intro-section {
  display: grid;
  gap: clamp(34px, 5vw, 70px);
  justify-items: center;
  padding-block: clamp(30px, 7vw, 110px);
  text-align: center;
}

.mb-question {
  max-width: 980px;
  font-size: clamp(48px, 6.2vw, 92px);
}

.mb-purple-card {
  position: relative;
  width: min(100%, 1160px);
  padding: clamp(34px, 5vw, 64px);
  border-radius: 42px;
  background: var(--purple);
  color: #fff;
  transform: rotate(1.2deg);
}

.mb-purple-card::before {
  content: "";
  position: absolute;
  inset: 14px -12px -14px 12px;
  z-index: -1;
  border: 4px solid #ffbf2f;
  border-radius: inherit;
  transform: rotate(-1.4deg);
}

.mb-purple-card p {
  max-width: 980px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2.1vw, 26px);
  line-height: 1.34;
}

.mb-feature-section,
.mb-home-support,
.mb-home-services,
.mb-home-pathways,
.mb-faq,
.mb-pathway-page,
.mb-about-page {
  padding-block: clamp(52px, 8vw, 118px);
}

.faq-accordion {
  display: grid;
  gap: 16px;
  max-width: 860px;
  margin-inline: auto;
}

.faq-item-heading {
  margin: 0;
}

.faq-item:nth-child(4n+1) .faq-question {
  background: rgba(255, 242, 122, 0.35);
}

.faq-item:nth-child(4n+2) .faq-question {
  background: rgba(215, 242, 255, 0.5);
}

.faq-item:nth-child(4n+3) .faq-question {
  background: rgba(234, 219, 255, 0.5);
}

.faq-item:nth-child(4n+4) .faq-question {
  background: rgba(255, 211, 188, 0.4);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 18px 22px;
  border: 2px solid var(--ink);
  border-radius: 20px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background-color 200ms ease-out, transform 200ms ease-out;
}

.faq-question:hover {
  transform: translateY(-1px);
}

.faq-question-text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.9vw, 21px);
  font-weight: 800;
  color: var(--ink);
}

.faq-icon {
  position: relative;
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 250ms ease-out;
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 300ms ease-out, opacity 250ms ease-out;
}

.faq-answer.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer p {
  margin: 14px 22px 4px;
  overflow: hidden;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  min-height: 0;
}

@media (prefers-reduced-motion: reduce) {
  .faq-answer,
  .faq-icon::after {
    transition: none;
  }
}

.mb-what,
.mb-section-title {
  margin-bottom: clamp(36px, 5vw, 72px);
  text-align: center;
  font-size: clamp(56px, 7.4vw, 112px);
}

.mb-what i {
  width: min(38vw, 380px);
  margin-inline: auto;
}

.mb-feature-list {
  display: grid;
  gap: 28px;
}

.mb-feature-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 32px;
  border: 1px solid rgba(11, 11, 17, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 56px rgba(11, 11, 17, 0.06);
}

.mb-feature-label {
  display: inline-flex;
  width: auto;
  min-width: 0;
  padding: 10px 28px;
  border-radius: 999px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 30px);
  color: var(--ink);
}

.mb-blue {
  background: #d8e9ff;
}

.mb-red {
  background: #ff7479;
}

.mb-yellow {
  background: #fff27a;
}

.mb-feature-image {
  margin: 0;
  overflow: hidden;
  min-height: 280px;
  padding: 0;
}

.mb-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mb-home-hero {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.mb-home-art {
  width: min(100%, 1060px);
  margin: 0;
  overflow: hidden;
}

.mb-home-art img {
  width: 100%;
  object-fit: contain;
}

.mb-home-title {
  font-size: clamp(52px, 7.2vw, 104px);
}

.mb-home-intro {
  display: grid;
  grid-template-columns: minmax(170px, 0.34fr) minmax(360px, 0.66fr);
  gap: clamp(18px, 4vw, 50px);
  width: min(100%, 960px);
  align-items: stretch;
}

.mb-mini-pills {
  display: grid;
  gap: 14px;
}

.mb-mini-pills a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 12px 18px;
  border-radius: 16px 999px 999px 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  background: #f7a4f1;
}

.mb-mini-pills a:nth-child(2) {
  background: #9dc2f6;
}

.mb-mini-pills a:nth-child(3) {
  background: #fff27a;
}

.mb-outline-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
  min-height: 210px;
  padding: clamp(24px, 3vw, 32px);
  border: 2px solid var(--ink);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.7);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.45;
}

.mb-outline-card p {
  margin: 0;
  text-align: left;
}

.mb-service-area {
  font-size: 13px !important;
  color: var(--muted);
}

.referral-steps {
  margin-block: clamp(28px, 5vw, 56px);
}

.referral-steps-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.referral-steps-list li {
  display: grid;
  gap: 12px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(11, 11, 17, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.referral-step-number {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-weight: 900;
  font-family: Georgia, "Times New Roman", serif;
}

.referral-steps-list h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.referral-steps-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .referral-steps-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .referral-steps-list {
    grid-template-columns: 1fr;
  }
}

.mb-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-block: clamp(24px, 4vw, 44px);
}

.mb-audience-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 64px;
  padding: 16px 22px;
  border: 2px solid var(--ink);
  border-radius: 16px 999px 999px 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  transition: transform 220ms ease-out, background-color 220ms ease-out;
}

.mb-audience-card:hover,
.mb-audience-card:focus-visible {
  transform: translateY(-2px);
  background: var(--yellow);
}

.mb-audience-label {
  font-size: clamp(14px, 1.5vw, 17px);
}

@media (max-width: 900px) {
  .mb-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .mb-audience-grid {
    grid-template-columns: 1fr;
  }
}

.mb-outline-card div {
  display: flex;
  gap: 18px;
}

.mb-outline-card a {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #d7f2ff;
  font-size: 14px;
  font-weight: 900;
}

.mb-outline-card a:nth-child(2) {
  background: #fff1a8;
}

.mb-service-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.mb-service-links a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  align-items: center;
  gap: 20px;
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(11, 11, 17, 0.32);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 900;
}

.mb-service-links img {
  width: 210px;
  height: 160px;
  border-radius: 0 36px 0 36px;
  object-fit: cover;
}

.mb-pathway-preview {
  display: grid;
  gap: 20px;
  padding: clamp(26px, 5vw, 58px);
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(245, 235, 255, 0.78), rgba(106, 37, 245, 0.72));
  border: 1px solid rgba(11, 11, 17, 0.2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
}

.mb-pathway-preview span {
  color: rgba(11, 11, 17, 0.48);
}

.mb-pathway-preview strong {
  color: var(--ink);
}

.mb-faq details {
  max-width: 960px;
  margin-inline: auto;
}

.pathway-grid {
  align-items: stretch;
}

.pathway-card {
  border-radius: 34px;
}

.before-panel {
  max-width: var(--max-width);
  margin-top: clamp(28px, 5vw, 78px);
  margin-bottom: clamp(40px, 6vw, 90px);
  border-color: #f5dc55;
  box-shadow: inset 0 0 0 1px rgba(255, 0, 231, 0.34);
}

.before-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
}

.marra-form {
  max-width: 980px;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.marra-form legend {
  background: var(--purple);
  color: #fff;
  border-radius: 999px;
  font-family: Georgia, "Times New Roman", serif;
}

.marra-form input,
.marra-form select,
.marra-form textarea {
  border-bottom-color: rgba(11, 11, 17, 0.5);
}

.contact-card {
  max-width: 1080px;
  border-radius: 52px;
  border-color: #f5dc55;
  box-shadow: inset 0 0 0 1px rgba(255, 0, 231, 0.36);
}

.contact-card h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 42px);
}

.mb-footer {
  position: relative;
  padding-top: clamp(180px, 24vw, 280px);
  background: rgba(255, 253, 249, 0.94);
}

.mb-footer-clouds {
  position: absolute;
  top: 30px;
  left: 50%;
  width: min(100%, 1366px);
  transform: translateX(-50%);
  animation: cloud-drift 16s ease-in-out infinite;
}

@keyframes cloud-drift {
  0% {
    transform: translateX(-50%) translateX(-22px);
  }
  50% {
    transform: translateX(-50%) translateX(22px);
  }
  100% {
    transform: translateX(-50%) translateX(-22px);
  }
}

.mb-footer .footer-grid,
.mb-footer .footer-bottom {
  position: relative;
  z-index: 1;
}

@keyframes mb-background-drift {
  from {
    transform: translate3d(-1.5vw, -1vh, 0) scale(1.03);
    background-position: 48% 52%;
  }

  to {
    transform: translate3d(2.5vw, 1.5vh, 0) scale(1.08);
    background-position: 58% 46%;
  }
}

@media (max-width: 900px) {
  .mb-site-header {
    grid-template-columns: 120px 1fr;
  }

  .mb-site-header .header-line {
    display: none;
  }

  .image-brand img {
    width: 135px;
  }

  .mb-page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 56px;
  }

  .mb-hero-photo {
    justify-self: center;
    order: -1;
  }

  .mb-home-intro,
  .mb-service-links,
  .mb-service-links a {
    grid-template-columns: 1fr;
  }

  .mb-service-links img {
    width: 100%;
    height: 220px;
  }
}

@media (max-width: 640px) {
  .mb-site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .mb-site-header .referral-button {
    display: inline-flex;
  }

  .mb-site-header .header-actions {
    gap: 6px;
  }

  .mb-site-header .referral-button,
  .mb-site-header .menu-button {
    min-height: 34px;
    padding-inline: 10px;
    font-size: 10px;
  }

  .mb-hero-title,
  .mb-home-title,
  .mb-question,
  .mb-what,
  .mb-section-title {
    font-size: clamp(42px, 13vw, 64px);
  }

  .mb-hero-title i,
  .mb-what i {
    height: 6px;
  }

  .mb-purple-card {
    border-radius: 28px;
    padding: 28px 20px;
  }

  .mb-feature-row {
    border-radius: 32px;
  }

  .mb-feature-image {
    min-height: 220px;
  }
}
