:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.82);
  --surface-tint: linear-gradient(135deg, rgba(115, 80, 244, 0.04) 0%, rgba(0, 179, 255, 0.04) 100%);
  --surface-tint-purple: linear-gradient(135deg, rgba(115, 80, 244, 0.05) 0%, rgba(0, 179, 255, 0.05) 100%);
  --surface-tint-blue: linear-gradient(135deg, rgba(0, 179, 255, 0.05) 0%, rgba(115, 80, 244, 0.05) 100%);
  --surface-tint-pink: linear-gradient(135deg, rgba(242, 1, 255, 0.05) 0%, rgba(115, 80, 244, 0.05) 100%);
  --text-strong: #2a1555;
  --text-main: #52525b;
  --text-body: #5f6470;
  --text-soft: #9296a2;
  --border: rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 16px 36px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 24px 60px rgba(115, 80, 244, 0.14);
  --shadow-glass: 0 16px 48px rgba(24, 24, 38, 0.08);
  --purple: #7350f4;
  --purple-deep: #5a5ff0;
  --violet: #a040f8;
  --pink: #f201ff;
  --blue: #00b3ff;
  --dark: #0a0a0f;
  --container-wide: 1440px;
  --container-narrow: 980px;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-main);
  font-family: "Inter", sans-serif;
  letter-spacing: 0.01em;
}

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

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

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

.page {
  min-height: 100vh;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
}

.site-header__inner,
.container,
.hero__content,
.site-footer__inner {
  width: min(calc(100% - 2rem), var(--container-wide));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}

.site-logo {
  width: 9rem;
  aspect-ratio: 1480 / 1024;
  flex-shrink: 0;
}

.site-logo img {
  width: 100%;
  height: 100%;
}

.site-nav {
  display: none;
}

.site-nav__link,
.site-nav__cta {
  font-family: "Albert Sans", sans-serif;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 2rem 0 6rem;
}

.hero__media,
.hero__wash {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__wash {
  background:
    linear-gradient(180deg, rgba(250, 250, 250, 0.08) 0%, rgba(250, 250, 250, 0.26) 36%, rgba(250, 250, 250, 0.86) 100%),
    radial-gradient(circle at 78% 14%, rgba(242, 1, 255, 0.1), transparent 28%);
}

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

.hero__copy {
  max-width: 42rem;
  padding: 0 0.5rem;
}

.hero__copy h1,
.section-heading h2,
.bio__meta h3,
.track-card h3,
.expertise-panel h3,
.timeline-item__content h3 {
  margin: 0;
  font-family: "Albert Sans", sans-serif;
  letter-spacing: 0.02em;
  color: var(--text-strong);
}

.hero__copy h1 {
  font-size: clamp(2.7rem, 5vw, 4.15rem);
  line-height: 1.08;
  margin-bottom: 1.8rem;
}

.hero__copy p,
.section-heading__lead,
.contact-block__lead {
  font-size: clamp(1.125rem, 2vw, 1.4rem);
  line-height: 1.75;
  color: rgba(17, 24, 39, 0.92);
  margin: 0;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: bounce 1.6s infinite;
  color: rgba(107, 114, 128, 0.75);
  z-index: 1;
}

.scroll-indicator svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding: 6rem 0;
  background: var(--surface);
}

.section--alt {
  background: var(--bg);
}

.container--narrow {
  width: min(calc(100% - 2rem), var(--container-narrow));
}

.section-heading {
  margin-bottom: 4rem;
}

.section-heading--center {
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-heading__rule {
  width: 4rem;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink) 0%, var(--blue) 100%);
}

.section-heading__lead,
.section-heading__sublead {
  max-width: 52rem;
  margin-inline: auto;
  color: var(--text-body);
}

.section-heading__lead {
  margin-top: 2rem;
}

.section-heading__sublead {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-top: 1rem;
}

.prose {
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--text-body);
}

.prose p {
  margin: 0 0 2rem;
  text-align: justify;
}

.prose .no-justify,
.prose .no-justify p,
.audience-list-wrap p,
.services-intro-card p {
  text-align: left;
}

.prose strong,
.accent-underline,
.services-intro-card strong {
  text-decoration: underline;
  text-decoration-color: var(--purple);
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

.prose h1 strong,
.prose h2 strong,
.prose h3 strong,
.prose h4 strong,
.prose h5 strong,
.prose h6 strong,
.prose li strong {
  text-decoration: none;
}

.definition-card,
.track-card,
.expertise-panel,
.services-intro-card,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.definition-card {
  width: 100%;
  padding: 1.25rem;
  margin: 0 0 2rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.625rem;
  color: #a0a5b3;
  font-family: "Albert Sans", sans-serif;
}

.eyebrow--purple {
  color: var(--purple);
}

.eyebrow--blue {
  color: var(--blue);
}

.eyebrow--pink {
  color: var(--pink);
}

.definition-card__term {
  margin-bottom: 0.25rem;
  color: #1f2937;
}

.definition-card__term span {
  color: #9ca3af;
  font-size: 0.9rem;
}

.definition-card__type,
.definition-card__origin {
  color: #9ca3af;
  font-size: 0.9rem;
}

.definition-card__text {
  color: var(--text-body);
  font-size: 0.95rem;
}

.definition-card__example {
  padding: 0.9rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 0.9rem;
  background: var(--surface-tint);
}

.definition-card__example p:last-child {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-body);
  font-style: italic;
}

.audience-list-wrap {
  clear: both;
  margin-top: 0.5rem;
}

.dot-list,
.arrow-list,
.middot-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dot-list li,
.arrow-list li,
.middot-list li {
  display: flex;
  align-items: flex-start;
}

.dot-list {
  display: grid;
  gap: 0.85rem;
}

.dot-list li {
  gap: 0.8rem;
}

.dot {
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.65rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot--purple {
  background: var(--purple);
}

.dot--violet {
  background: var(--violet);
}

.dot--blue {
  background: var(--blue);
}

.dot--pink {
  background: var(--pink);
}

.logo-divider {
  display: flex;
  justify-content: center;
  padding: 0.25rem 0 1.75rem;
  background: var(--surface);
}

.logo-divider--alt {
  background: var(--bg);
}

.logo-divider img {
  width: 3.5rem;
  height: 3.5rem;
  opacity: 0.5;
}

.bio {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.bio__portrait-wrap {
  position: relative;
}

.bio__portrait-glow {
  position: absolute;
  inset: -0.25rem;
  border-radius: 999px;
  opacity: 0.6;
  filter: blur(4px);
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 50%, var(--blue) 100%);
}

.bio__portrait {
  position: relative;
  width: 14rem;
  height: 14rem;
  object-fit: cover;
  border-radius: 999px;
  border: 4px solid var(--surface);
  box-shadow: var(--shadow-md);
}

.bio__meta {
  text-align: center;
}

.bio__meta h3 {
  font-size: 2rem;
  font-weight: 600;
}

.bio__meta p {
  margin: 0.35rem 0 0;
  color: var(--text-soft);
  font-size: 1.125rem;
}

.bio__link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #71717a;
  transition: color 180ms ease;
}

.bio__link:hover {
  color: var(--purple);
}

.bio__link i {
  width: 1.25rem;
  font-size: 1.1rem;
  text-align: center;
  flex-shrink: 0;
}

.track-grid,
.expertise-grid {
  display: grid;
  gap: 1.25rem;
}

.track-grid {
  margin: 3rem 0;
}

.track-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.track-card:hover {
  box-shadow: 0 20px 52px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

.track-card__topline {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  transition: height 180ms ease;
}

.track-card:hover .track-card__topline {
  height: 4px;
}

.track-card--pink .track-card__topline {
  background: linear-gradient(90deg, var(--pink) 0%, var(--purple) 100%);
}

.track-card--blue .track-card__topline {
  background: linear-gradient(90deg, var(--purple) 0%, var(--blue) 100%);
}

.track-card--cyan .track-card__topline {
  background: linear-gradient(90deg, var(--blue) 0%, var(--pink) 100%);
}

.track-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
  font-weight: 500;
}

.track-card p:last-child {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
}

.expertise-panel {
  padding: 2rem;
}

.expertise-panel h3 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.expertise-group h4 {
  margin: 0 0 1rem;
  color: #374151;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: "Albert Sans", sans-serif;
}

.services-intro-card {
  padding: 2rem;
  margin-bottom: 4rem;
}

.services-intro-card__rows {
  display: grid;
  gap: 0.8rem;
}

.services-intro-card__row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.services-intro-card__row p {
  margin: 0;
  color: #4b5563;
  line-height: 1.7;
}

.services-intro-card__bullet {
  font-size: 1.1rem;
  line-height: 1.35;
}

.services-intro-card__bullet--purple {
  color: var(--purple);
}

.services-intro-card__bullet--blue {
  color: var(--blue);
}

.timeline {
  display: grid;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  padding-bottom: 4rem;
}

.timeline-item--last {
  padding-bottom: 0;
}

.timeline-item__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-item__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
}

.timeline-item__icon svg {
  width: 1.7rem;
  height: 1.7rem;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.timeline-item__icon--pink-purple {
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
}

.timeline-item__icon--purple-blue {
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
}

.timeline-item__icon--blue-purple {
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
}

.timeline-item__line {
  width: 2px;
  flex: 1;
  min-height: 2.5rem;
  margin-top: 0.65rem;
}

.timeline-item__line--purple-blue {
  background: linear-gradient(180deg, var(--purple) 0%, var(--purple-deep) 50%, var(--blue) 100%);
}

.timeline-item__line--blue-purple {
  background: linear-gradient(180deg, var(--blue) 0%, var(--purple-deep) 50%, var(--purple) 100%);
}

.timeline-item__line--purple-pink {
  background: linear-gradient(180deg, var(--purple) 0%, var(--violet) 50%, var(--pink) 100%);
}

.timeline-item__content {
  padding-top: 0.3rem;
}

.timeline-item__content h3 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.timeline-item__content > p {
  margin: 0 0 1rem;
  line-height: 1.8;
  color: #4b5563;
}

.timeline-item__subhead {
  font-size: 1rem;
}

.timeline-item__subhead--purple {
  color: var(--purple);
}

.timeline-item__subhead--blue {
  color: var(--blue);
}

.timeline-item__for {
  color: #a0a5b3;
  font-size: 0.92rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.timeline-item__for--pink {
  color: var(--pink);
}

.timeline-item__block {
  margin: 1.5rem 0;
}

.arrow-list {
  display: grid;
  gap: 0.65rem;
  color: #374151;
}

.arrow-list li {
  gap: 0.6rem;
}

.arrow-list li::before {
  content: "→";
  margin-top: 0.02rem;
}

.arrow-list--purple li::before {
  color: var(--purple);
}

.arrow-list--blue li::before {
  color: var(--blue);
}

.arrow-list--pink li::before {
  color: var(--pink);
}

.outcome-box {
  border-radius: 1rem;
  padding: 1.25rem;
}

.outcome-box--purple {
  background: var(--surface-tint-purple);
}

.outcome-box--blue {
  background: var(--surface-tint-blue);
}

.outcome-box--purple-pink,
.outcome-box--pink {
  background: var(--surface-tint-pink);
}

.middot-list {
  display: grid;
  gap: 0.45rem;
  font-size: 0.95rem;
  color: #374151;
}

.middot-list li {
  gap: 0.5rem;
}

.middot-list li::before {
  content: "·";
}

.middot-list--purple li::before {
  color: var(--purple);
}

.middot-list--blue li::before {
  color: var(--blue);
}

.middot-list--pink li::before {
  color: var(--pink);
}

.outcome-box__note {
  margin: 1rem 0 0;
  color: var(--text-body);
  font-size: 0.82rem;
  font-style: italic;
}

.contact-block {
  text-align: center;
}

.contact-block__lead {
  max-width: 52rem;
  margin: 0 auto 3.5rem;
  color: var(--text-body);
}

.contact-card {
  padding: 3rem;
  background: var(--surface-tint);
}

.contact-card__top {
  margin-bottom: 2rem;
}

.contact-card__email {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--purple);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
  transition: opacity 180ms ease;
}

.contact-card__email:hover {
  opacity: 0.8;
}

.contact-card__email svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card__foot {
  padding-top: 2rem;
  border-top: 1px solid rgba(209, 213, 219, 0.5);
}

.contact-card__foot p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.site-footer {
  background: var(--dark);
  padding: 2.5rem 0;
}

.site-footer__inner {
  text-align: center;
}

.site-footer__inner p {
  margin: 0;
  font-size: 0.9rem;
  font-family: "Albert Sans", sans-serif;
  color: #6b7280;
}

.site-footer__inner p + p {
  margin-top: 0.3rem;
  font-size: 0.78rem;
  font-family: "Inter", sans-serif;
}

@keyframes bounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, -0.35rem);
  }
}

@media (min-width: 768px) {
  .site-header {
    position: fixed;
  }

  .site-header__inner {
    justify-content: space-between;
  }

  .site-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
  }

  .site-nav__link {
    padding: 0.7rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: var(--surface-soft);
    color: #4b5563;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-glass);
  }

  .site-nav__link:hover {
    color: var(--purple);
    border-color: rgba(115, 80, 244, 0.4);
    background: var(--surface);
  }

  .site-nav__link.is-active {
    background: var(--purple);
    color: #fff;
    border-color: var(--purple);
    box-shadow: 0 18px 42px rgba(115, 80, 244, 0.22);
  }

  .site-nav__cta {
    padding: 0.72rem 1.45rem;
    border-radius: 999px;
    border: 2.5px solid transparent;
    background-image:
      linear-gradient(var(--surface), var(--surface)),
      linear-gradient(135deg, var(--pink) 0%, var(--purple) 50%, var(--blue) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    color: var(--purple);
  }

  .site-nav__cta:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 18px 42px rgba(115, 80, 244, 0.18);
  }

  .site-nav__cta.is-active {
    color: #fff;
    background:
      linear-gradient(135deg, var(--pink) 0%, var(--purple) 50%, var(--blue) 100%);
    box-shadow: 0 22px 46px rgba(115, 80, 244, 0.25);
  }

  .definition-card {
    float: right;
    width: 16rem;
    margin: 0 0 1rem 1.5rem;
  }

  .bio {
    flex-direction: row;
    justify-content: center;
    text-align: left;
  }

  .bio__meta {
    text-align: left;
  }

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

  .expertise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 2.5rem;
  }

  .timeline-item {
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-bottom: 6.5rem;
  }

  .hero__copy {
    max-width: 48rem;
  }
}

@media (max-width: 767px) {
  .hero {
    padding-bottom: 5.5rem;
  }

  .section,
  .logo-divider {
    padding-left: 0;
    padding-right: 0;
  }

  .section-heading {
    margin-bottom: 3rem;
  }

  .track-card,
  .expertise-panel,
  .services-intro-card,
  .contact-card {
    padding: 1.5rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    padding-bottom: 3rem;
  }

  .timeline-item__rail {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .timeline-item__line {
    height: 2px;
    width: 100%;
    min-height: 0;
    margin-top: 0;
  }

  .timeline-item--last .timeline-item__rail {
    margin-bottom: 0.5rem;
  }
}
