:root {
  --container-page: 71rem;
  --container-readable: 42rem;
  --page-frame-max-width: var(--container-page);
  --page-px: 1.25rem;
  --nav-height: 3.5rem;
  --section-py-xs: 2.5rem;
  --section-py-sm: 3rem;
  --section-py-md: 4rem;
  --section-py-lg: 5rem;
  --space-0: 0;
  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-32: 8rem;
  --white: #fff;
  --black: #000;
  --blue-400: #41c9c1;
  --blue-600: #0055ff;
  --violet-500: #8338f5;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-300: #e5e5e5;
  --gray-500: #737373;
  --gray-700: #525252;
  --gray-900: #262626;
  --background: var(--white);
  --foreground: var(--gray-900);
  --muted-foreground: #686868;
  --border: color-mix(in oklab, var(--black) 8%, transparent);
  --accent: var(--color-hover-muted);
  --brand-primary: var(--blue-400);
  --primary: var(--brand-primary);
  --primary-foreground: var(--white);
  --program-pteam: var(--blue-400);
  --program-mentorship: var(--blue-600);
  --program-graduate: var(--violet-500);
  --program-pteam-dark: #1a1a1a;
  --program-mentorship-dark: #1a1a1a;
  --program-graduate-dark: #1a1a1a;
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --color-muted-foreground: var(--muted-foreground);
  --color-border: var(--border);
  --color-border-strong: color-mix(in oklab, var(--black) 10%, transparent);
  --color-accent: var(--accent);
  --color-primary: var(--primary);
  --color-primary-foreground: var(--primary-foreground);
  --color-hover-muted: color-mix(in oklab, var(--black) 4%, transparent);
  --color-inverted: var(--white);
  --color-inverted-muted: color-mix(in oklab, var(--white) 70%, transparent);
  --color-surface: var(--white);
  --color-surface-muted: var(--gray-50);
  --color-line-soft: color-mix(in oklab, var(--gray-300) 70%, transparent);
  --color-focus: #a1a1a1;
  --intro-dark-bg: var(--program-pteam-dark);
  --intro-light-bg: color-mix(in oklab, var(--primary) 5%, var(--white));
  --intro-light-card-bg: color-mix(in oklab, var(--intro-light-bg) 42%, #e9eaed);
  --header-light-bg: var(--white);
  --radius: .625rem;
  --radius-xs: .375rem;
  --radius-sm: .5rem;
  --radius-md: var(--radius);
  --radius-lg: .75rem;
  --radius-xl: .9rem;
  --radius-2xl: 1.125rem;
  --radius-pill: 999px;
  --border-width: 1px;
  --border-soft: 1px solid var(--color-line-soft);
  --border-subtle: 1px solid rgb(0 0 0 / .05);
  --shadow-xs: 0 1px 2px rgb(0 0 0 / .05);
  --shadow-sm: 0 1px 3px rgb(0 0 0 / .04);
  --shadow-panel: 0 16px 30px rgb(0 0 0 / .06);
  --shadow-dashboard: 0 30px 60px -20px rgb(15 23 42 / .25), 0 18px 36px -18px rgb(15 23 42 / .18), 0 2px 6px rgb(15 23 42 / .06);
  --shadow-media: 0 25px 50px -12px rgb(0 0 0 / .1);
  --text-xs: .75rem;
  --text-sm: .875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.875rem;
  --text-2xl: 2.25rem;
  --leading-tight: 1.1;
  --leading-body: 1.5;
  --z-page-frame: 55;
  --z-bottom-fade: 10;
  --z-header: 50;
  --z-menu: 60;
  --ease-out: cubic-bezier(0, 0, .2, 1);
  --ease-emphatic: cubic-bezier(.19, 1, .22, 1);
  --duration-fast: .15s;
  --duration-base: .2s;
  --duration-slow: 1s;
}

html:has(body.program-pteam),
body.program-pteam {
  --primary: var(--program-pteam);
  --intro-dark-bg: var(--program-pteam-dark);
}

html:has(body.program-mentorship),
body.program-mentorship {
  --primary: var(--program-mentorship);
  --intro-dark-bg: var(--program-mentorship-dark);
}

html:has(body.program-graduate),
body.program-graduate {
  --primary: var(--program-graduate);
  --intro-dark-bg: var(--program-graduate-dark);
}

html:has(body.event-speakers),
body.event-speakers {
  --primary: var(--program-pteam);
  --intro-dark-bg: var(--program-pteam-dark);
}

html:has(body.event-office-tours),
body.event-office-tours {
  --primary: var(--program-mentorship);
  --intro-dark-bg: var(--program-mentorship-dark);
}

html:has(body.event-case-comp),
body.event-case-comp {
  --primary: var(--program-graduate);
  --intro-dark-bg: var(--program-graduate-dark);
}

@property --header-theme {
  syntax: "<number>";
  inherits: false;
  initial-value: 1;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html {
  scrollbar-width: none;
  -ms-overflow-style: none;
  text-size-adjust: 100%;
  overscroll-behavior-y: none;
}
html::-webkit-scrollbar {
  display: none;
}
html:has(.intro-dark),
body:has(.intro-dark) {
  background: var(--intro-dark-bg);
}
body {
  margin: 0;
  background: var(--color-background);
  color: var(--color-foreground);
  font-family: Inter, "Inter Fallback", system-ui, sans-serif;
  line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}
html:has(.footer-light),
body:has(.footer-light) {
  background: var(--intro-light-bg);
}
::selection { color: var(--color-inverted); background: #3b82f6; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
button, a, [role="button"] { touch-action: manipulation; }

.frame {
  width: 100%;
  max-width: min(var(--page-frame-max-width), calc(100vw - 2rem));
  margin-inline: auto;
}
.page-frame {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: calc(100vw - 100%);
  z-index: var(--z-page-frame);
}
.page-frame > div {
  position: relative;
  height: 100%;
  width: 100%;
  max-width: min(var(--page-frame-max-width), calc(100vw - 2rem));
  margin-inline: auto;
  border-inline: 1px solid transparent;
  transition: border-color var(--duration-base) var(--ease-out);
}
.scroll-progress-line {
  position: absolute;
  top: 0;
  height: 100%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    var(--primary) 0 var(--scroll-percent-y, 0%),
    transparent var(--scroll-percent-y, 0%) 100%
  );
  pointer-events: none;
  z-index: 10;
  transform: translateX(var(--scroll-sway, 0px));
  transform-origin: top;
  will-change: transform, background;
}
.scroll-progress-line::before {
  content: "";
  position: absolute;
  pointer-events: none;
}
.scroll-progress-line::before {
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    color-mix(in oklab, var(--primary) 58%, transparent) 0 var(--scroll-trail-percent-y, 0%),
    transparent var(--scroll-trail-percent-y, 0%) 100%
  );
  opacity: var(--scroll-glow-opacity, .18);
  transform: translateX(-50%);
  filter: blur(1.5px);
}
.scroll-progress-line.right {
  right: -1px;
  transform: translateX(calc(-1 * var(--scroll-sway, 0px)));
}
.scroll-progress-line.right::before {
  transition-delay: 20ms;
}
@media (prefers-reduced-motion: reduce) {
  .scroll-progress-line {
    transform: none;
  }
  .scroll-progress-line.right {
    transform: none;
  }
  .scroll-progress-line::before {
    display: none;
  }
}
body:has(.intro-dark) .page-frame > div {
  border-inline-color: transparent;
}
body:has(.intro-dark).header-light .page-frame > div {
  border-inline-color: transparent;
}
.bottom-fade {
  pointer-events: none;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: var(--z-bottom-fade);
  height: var(--space-32);
  background: linear-gradient(to top, rgb(255 255 255 / .6), transparent);
}
body:has(.intro-dark) .bottom-fade {
  display: none;
}
.border-band {
  position: relative;
  border-bottom: var(--border-soft);
}
.border-band[id] {
  scroll-margin-top: var(--nav-height);
}
body:not(:has(.intro-dark)) .intro-light > .border-band:first-child:has(.team-grid),
body:not(:has(.intro-dark)) .intro-light > .border-band:first-child:has(.video-section),
body:not(:has(.intro-dark)) .intro-light > .border-band:first-child:has(.section-heading) {
  padding-top: var(--nav-height);
}
.intro-dark > .border-band:first-child:has(.team-grid),
.intro-dark > .border-band:first-child:has(.video-section),
.intro-dark > .border-band:first-child:has(.section-heading) {
  padding-top: var(--nav-height);
}

.site-header {
  --header-bg: var(--white);
  --header-line-light: color-mix(in oklab, var(--gray-300) 70%, transparent);
  --header-line-dark: color-mix(in oklab, var(--white) 12%, transparent);
  --header-line: var(--header-line-light);
  --logo-hover-color: var(--intro-dark-bg);
  position: fixed;
  top: 0;
  left: 0;
  right: calc(100vw - 100%);
  bottom: auto;
  z-index: var(--z-header);
  border-bottom: 0;
  background:
    linear-gradient(var(--header-line), var(--header-line)) bottom / 100% 1px no-repeat,
    var(--header-bg);
}
.site-header::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: min(var(--page-frame-max-width), calc(100vw - 2rem));
  margin-inline: auto;
  border-inline: 1px solid var(--header-line);
  box-sizing: border-box;
}
body:has(.intro-light) {
  --header-light-bg: var(--intro-light-bg);
}

body:has(.intro-dark) .site-header {
  --header-theme: 0;
  --header-bg: color-mix(
    in oklab,
    var(--intro-dark-bg) calc((1 - var(--header-theme)) * 100%),
    var(--header-light-bg) calc(var(--header-theme) * 100%)
  );
  --header-line: color-mix(
    in oklab,
    var(--header-line-dark) calc((1 - var(--header-theme)) * 100%),
    var(--header-line-light) calc(var(--header-theme) * 100%)
  );
  --logo-hover-color: color-mix(
    in oklab,
    var(--white) calc((1 - var(--header-theme)) * 100%),
    var(--intro-dark-bg) calc(var(--header-theme) * 100%)
  );
  transition: --header-theme var(--duration-base) var(--ease-out);
}
body:has(.intro-dark) .site-header.is-light {
  --header-theme: 1;
}
body:has(.intro-dark) .site-header:not(.is-light) {
  --intro-line: var(--header-line-dark);
}
body:has(.intro-dark) .site-header:not(.is-light) .nav-links a,
body:has(.intro-dark) .site-header:not(.is-light) .nav-dropdown-trigger {
  color: var(--color-inverted);
}
body:has(.intro-dark) .site-header:not(.is-light) .nav-links a:hover,
body:has(.intro-dark) .site-header:not(.is-light) .nav-dropdown.is-submenu-active .nav-dropdown-trigger {
  background: color-mix(in oklab, var(--white) 10%, transparent);
  color: var(--color-inverted);
}
body:has(.intro-dark) .site-header:not(.is-light) .nav-submenu-morph {
  border: 0;
  border-inline: 1px solid var(--header-line);
  border-bottom: 1px solid var(--header-line);
  border-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: none;
}
body:has(.intro-dark) .site-header:not(.is-light) .nav-submenu-morph a {
  color: var(--color-inverted);
}
body:has(.intro-dark) .site-header:not(.is-light) .nav-submenu-morph .nav-disabled {
  color: color-mix(in oklab, var(--white) 46%, transparent);
}
body:has(.intro-dark) .site-header:not(.is-light) .nav-submenu-morph a:hover {
  background: transparent;
  color: var(--primary);
}
body:has(.intro-dark) .site-header:not(.is-light) .icon-btn {
  color: var(--color-inverted);
}
body:has(.intro-dark) .site-header:not(.is-light) .icon-btn:hover {
  background: color-mix(in oklab, var(--white) 10%, transparent);
}
body:has(.intro-dark) .site-header:not(.is-light) .logo img {
  filter: none;
}
body:has(.intro-dark) .site-header:not(.is-light) .nav-actions .btn-outline {
  border-color: color-mix(in oklab, var(--white) 25%, transparent);
  background: transparent;
  color: var(--color-inverted);
  box-shadow: none;
}
body:has(.intro-dark) .site-header:not(.is-light) .nav-actions .btn-outline:hover {
  background: color-mix(in oklab, var(--white) 10%, transparent);
}
body:has(.intro-dark) .site-header:not(.is-light) .btn:focus-visible,
body:has(.intro-dark) .site-header:not(.is-light) .icon-btn:focus-visible {
  box-shadow: 0 0 0 2px var(--white), 0 0 0 3px var(--intro-dark-bg);
}

body:has(.intro-light):not(:has(.intro-dark)) .site-header {
  --header-bg: var(--intro-light-bg);
}

.nav {
  position: relative;
  display: flex;
  height: var(--nav-height);
  align-items: center;
  justify-content: space-between;
  overflow: visible;
  padding-inline: var(--page-px);
}
.logo {
  position: relative;
  z-index: 60;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}
.logo img {
  height: 1.5rem;
  width: auto;
}
.logo::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--logo-hover-color);
  mask: url("/assets/pmc-logo.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/pmc-logo.svg") center / contain no-repeat;
  opacity: 0;
  pointer-events: none;
}
.logo:hover img {
  opacity: 0;
}
.logo:hover::after {
  opacity: 1;
}
.program-mentorship .site-header .logo img,
.program-graduate .site-header .logo img {
  opacity: 0;
}
.program-mentorship .site-header .logo::after,
.program-graduate .site-header .logo::after {
  background-color: var(--primary);
  opacity: 1;
}
.nav-links {
  position: absolute;
  left: 50%;
  display: none;
  height: 100%;
  transform: translateX(-50%);
  align-items: stretch;
  gap: var(--space-1);
  overflow: visible;
}
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown-trigger {
  border: 0;
  background: transparent;
  border-radius: var(--radius);
  padding: .35rem .7rem;
  color: var(--muted-foreground);
  font: 500 1rem/1.2 Inter, sans-serif;
  cursor: default;
  transition: background-color .15s var(--ease-out), color .15s var(--ease-out);
}
a.nav-dropdown-trigger {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}
.nav-dropdown.is-submenu-active .nav-dropdown-trigger {
  background: var(--accent);
  color: var(--foreground);
}
.nav-submenu-morph {
  --nav-submenu-motion: .08s;
  --nav-submenu-close-speed: .2s;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  z-index: 60;
  box-sizing: border-box;
  min-width: 9rem;
  padding: .35rem .15rem;
  border: 0;
  border-inline: 1px solid var(--header-line);
  border-bottom: 1px solid var(--header-line);
  border-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  background: var(--header-bg);
  box-shadow: none;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transform: translateX(-50%);
  transform-origin: top center;
  transition:
    clip-path 0.12s var(--ease-out),
    opacity 0.12s var(--ease-out) 0.08s,
    visibility var(--nav-submenu-close-speed) step-end;
}
.nav-submenu-morph.is-open {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translateX(-50%);
  transition:
    clip-path 0.15s var(--ease-out),
    opacity 0.15s var(--ease-out),
    visibility 0s;
}
.nav-submenu-morph.is-open.is-morphing {
  transform: translateX(-50%);
  transition:
    left var(--nav-submenu-motion) var(--ease-out),
    width var(--nav-submenu-motion) var(--ease-out),
    height var(--nav-submenu-motion) var(--ease-out),
    transform 0s,
    visibility 0s;
}
.nav-submenu-morph-inner {
  position: relative;
}
.nav-submenu-morph-panel {
  display: none;
  text-align: center;
}
.nav-submenu-morph.is-measurement {
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%);
  transition: none;
  clip-path: none;
  opacity: 1;
}
.nav-submenu-morph-panel.is-measuring {
  display: block;
  position: relative;
  visibility: hidden;
  pointer-events: none;
  width: max-content;
  min-width: 100%;
}
.nav-submenu-morph-panel.is-active,
.nav-submenu-morph-panel.is-entering,
.nav-submenu-morph-panel.is-exiting {
  display: block;
}
.nav-submenu-morph-panel.is-active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
}
.nav-submenu-morph-panel.is-entering,
.nav-submenu-morph-panel.is-exiting {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition:
    opacity var(--nav-submenu-motion) var(--ease-out),
    transform var(--nav-submenu-motion) var(--ease-out);
}
.nav-submenu-morph-panel.is-entering {
  opacity: 0;
  transform: translateX(0);
}
.nav-submenu-morph-panel.is-entering.from-right { transform: translateX(.65rem); }
.nav-submenu-morph-panel.is-entering.from-left { transform: translateX(-.65rem); }
.nav-submenu-morph-panel.is-entering.is-entering-active {
  opacity: 1;
  transform: translateX(0);
}
.nav-submenu-morph-panel.is-exiting {
  opacity: 1;
  transform: translateX(0);
}
.nav-submenu-morph-panel.is-exiting.to-left {
  opacity: 0;
  transform: translateX(-.65rem);
}
.nav-submenu-morph-panel.is-exiting.to-right {
  opacity: 0;
  transform: translateX(.65rem);
}
.nav-submenu-morph a {
  display: block;
  padding: .45rem .4rem;
  color: var(--muted-foreground);
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity .12s var(--ease-out),
    transform .12s var(--ease-out),
    color .15s var(--ease-out);
}
.nav-submenu-morph:not(.is-open) a {
  opacity: 0;
  transform: translateY(-8px);
  transition-delay: 0.06s;
}
.nav-submenu-morph .nav-disabled {
  transition:
    opacity .12s var(--ease-out),
    transform .12s var(--ease-out);
}
.nav-submenu-morph:not(.is-open) .nav-disabled {
  opacity: 0 !important;
  transform: translateY(-8px);
  transition-delay: 0.06s;
}
.nav-submenu-morph .nav-disabled,
.mobile-panel .nav-disabled {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .45rem .4rem;
  border-radius: calc(var(--radius-md) - 2px);
  color: #9ca3af;
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
  cursor: default;
  opacity: .72;
  pointer-events: none;
}
.nav-disabled svg {
  width: .85rem;
  height: .85rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav-submenu-morph a:hover {
  color: var(--primary);
}
.nav-links > .nav-dropdown > a, .mobile-panel a {
  border-radius: var(--radius);
  padding: .35rem .7rem;
  color: var(--muted-foreground);
  font-weight: 500;
  transition: background-color var(--duration-fast) var(--ease-out), color var(--duration-fast) var(--ease-out);
}
.nav-links > .nav-dropdown > a:hover, .mobile-panel a:hover { background: var(--accent); color: var(--foreground); }
.nav-actions { display: none; align-items: center; gap: var(--space-2); }
.mobile-panel {
  border-top: var(--border-width) solid var(--color-border);
  padding: var(--space-3) var(--page-px) var(--space-4);
  background: var(--color-surface);
  box-shadow: var(--shadow-panel);
}
.mobile-panel a { display: block; padding-block: .7rem; }
.mobile-panel .nav-disabled {
  justify-content: flex-start;
  margin-left: 1.15rem;
  padding-block: .7rem;
}
.mobile-nav-group span {
  display: block;
  padding: .85rem .7rem .2rem;
  color: var(--muted-foreground);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.mobile-nav-group a { padding-left: 1.15rem; }
.mobile-panel > .btn,
.mobile-panel > a.btn {
  margin-top: .35rem;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 2.25rem;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  border: var(--border-width) solid transparent;
  border-radius: var(--radius-md);
  padding: .36rem .7rem;
  font: 500 var(--text-base)/1.2 Inter, sans-serif;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
}
.btn::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: calc(var(--radius-md) - 1px);
}
.btn:focus-visible, .icon-btn:focus-visible, summary:focus-visible {
  box-shadow: 0 0 0 2px var(--color-focus), 0 0 0 3px var(--color-surface);
}
.btn:active, .icon-btn:active { transform: none; }
.btn-primary {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-primary-foreground);
  box-shadow: var(--shadow-xs), 0 0 0 0 rgb(65 201 193 / .24);
}
.btn-primary:hover { background: color-mix(in oklab, var(--primary) 90%, transparent); }
.btn-accent-text { color: var(--intro-dark-bg); }
.program-mentorship .hero-actions .btn-accent-text,
.program-graduate .hero-actions .btn-accent-text { color: var(--white); }
.site-header .nav-actions .btn-primary {
  --primary: var(--brand-primary);
  --color-primary: var(--brand-primary);
  --intro-dark-bg: var(--program-pteam-dark);
}
.program-mentorship .site-header .nav-actions .btn-primary {
  --primary: var(--program-mentorship);
  --color-primary: var(--program-mentorship);
  color: var(--white);
}
.program-graduate .site-header .nav-actions .btn-primary {
  --primary: var(--program-graduate);
  --color-primary: var(--program-graduate);
  color: var(--white);
}
.btn-outline {
  border-color: var(--color-border-strong);
  background: var(--white);
  color: var(--foreground);
  box-shadow: 0 1px 2px rgb(0 0 0 / .05);
}
.btn-outline:hover { background: var(--color-hover-muted); }
.btn-ghost { color: var(--foreground); }
.btn-ghost:hover { background: var(--accent); }
.btn-secondary { background: var(--color-hover-muted); color: var(--foreground); }
.btn-secondary:hover { background: color-mix(in oklab, var(--black) 8%, transparent); }
.btn-lg { min-height: 2.25rem; padding: .72rem var(--space-4); }
.btn-xl { min-height: 2.75rem; padding-inline: .95rem; font-size: var(--text-lg); }
.icon-btn {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border: var(--border-width) solid transparent;
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
}
.icon-btn:hover { background: var(--accent); }
.icon-btn svg { width: 1.25rem; height: 1.25rem; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.hero {
  --hero-px: var(--page-px);
  --nav-height: 3.5rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--nav-height));
  margin-top: var(--nav-height);
  padding: 2rem var(--hero-px);
  text-align: center;
  overflow: visible;
  box-sizing: border-box;
  clip-path: inset(-2000px -2000px 0px -2000px);
}
.hero h1, .cta h2 {
  max-width: 36rem;
  margin: 0;
  text-wrap: balance;
  font-size: 2.25rem;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -.025em;
}
.hero h1,
.hero p,
.hero-actions {
  position: relative;
  z-index: 2;
}
.hero p {
  max-width: 28rem;
  margin: 1rem 0 0;
  color: var(--muted-foreground);
  font-size: 1.125rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-top: 2.25rem;
}
.hero-graphic {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  overflow: hidden;
  pointer-events: none;
}
.hero-image-trail {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: visible;
  pointer-events: none;
  perspective: 1200px;
}
.hero-trail-image {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(7rem, 13vw, 12.5rem);
  aspect-ratio: 4 / 3;
  height: auto;
  border-radius: .5rem;
  object-fit: cover;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.86);
  box-shadow: 0 24px 60px rgb(0 0 0 / .22);
  pointer-events: none;
  will-change: transform, opacity;
}
.hero-ring {
  display: block;
  color: var(--primary);
  width: 100%;
  max-width: none;
  height: 100%;
  aspect-ratio: auto;
  overflow: hidden;
  pointer-events: none;
}

@media (max-width: 480px) {
  .hero-graphic {
    margin-top: 4rem;
    margin-bottom: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image-trail {
    display: none;
  }
}

.intro-dark {
  --intro-line: color-mix(in oklab, var(--white) 12%, transparent);
  --cta-card-fill: var(--white);
  position: relative;
  z-index: 1;
  background: var(--intro-dark-bg);
  border-bottom: 1px solid var(--intro-line);
}
.intro-dark::before,
.intro-dark::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 2;
}
.intro-dark::before {
  width: 100%;
  max-width: min(var(--page-frame-max-width), calc(100vw - 2rem));
  margin-inline: auto;
  border-inline: 1px solid var(--intro-line);
  box-sizing: border-box;
}
.intro-dark::after {
  display: none;
}
.intro-dark .border-band {
  border-bottom-color: var(--intro-line);
}
.intro-dark .hero h1,
.intro-dark .hero p {
  color: var(--color-inverted);
}
.intro-dark .hero .btn-ghost {
  color: var(--color-inverted);
}
.intro-dark .hero .btn-ghost:hover {
  background: color-mix(in oklab, var(--white) 10%, transparent);
}
.intro-dark .hero .btn-outline {
  border-color: color-mix(in oklab, var(--white) 25%, transparent);
  background: transparent;
  color: var(--color-inverted);
  box-shadow: none;
}
.intro-dark .hero .btn-outline:hover {
  background: color-mix(in oklab, var(--white) 10%, transparent);
}
.intro-dark .logo-strip p {
  color: var(--color-inverted-muted);
}
.intro-dark .logo-strip img {
  opacity: .8;
  filter: brightness(0) invert(1);
}
.intro-dark .logo-strip img:hover {
  opacity: 1;
  filter: none;
}
.intro-dark .logo-strip img.logo-mono:hover {
  filter: brightness(0) invert(1);
}

.intro-dark.outro-dark {
  border-top: 1px solid var(--intro-line);
}
.intro-dark .section-heading h2,
.intro-dark .cta h2,
.intro-dark .faq h2 {
  color: var(--color-inverted);
}
.intro-dark .section-heading p,
.intro-dark .pricing-grid p,
.intro-dark .price span,
.intro-dark .faq p,
.intro-dark .alternating p,
.intro-dark .integrations span {
  color: var(--color-inverted-muted);
}
.intro-dark .section-heading {
  border-bottom-color: var(--intro-line);
}
.intro-dark .price strong,
.intro-dark .alternating h3,
.intro-dark .integrations h3,
.intro-dark .team-card h3,
.intro-dark .included div,
.intro-dark .faq a,
.intro-dark .accordion-trigger,
.intro-dark .accordion-content p {
  color: var(--color-inverted);
}
.intro-dark .team-card-role,
.intro-dark .team-card-bio {
  color: rgb(255 255 255 / .64);
}
.intro-dark .team-card {
  border-bottom-color: var(--intro-line);
}
.intro-dark .team-card-photo {
  background: rgb(255 255 255 / .08);
}
.intro-dark .integrations p {
  color: color-mix(in oklab, var(--white) 80%, transparent);
}
.intro-dark .pricing-grid {
  border-inline-color: transparent;
}
.intro-dark .pricing-grid article {
  border-bottom-color: var(--intro-line);
  border-inline-color: var(--intro-line);
}
.intro-dark .pricing-grid article:first-child {
  border-top-color: var(--intro-line);
}
.intro-dark .pricing-grid article:has([data-price="p-team"]) {
  border-color: var(--program-pteam);
}
.intro-dark .pricing-grid article:has([data-price="mentorship"]) {
  border-color: var(--program-mentorship);
}
.intro-dark .pricing-grid article:has([data-price="graduate"]) {
  border-color: var(--program-graduate);
}
.intro-dark .accordion-item {
  border-bottom-color: var(--intro-line);
}
.intro-dark .stripe-gap {
  border-bottom-color: var(--intro-line);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgb(255 255 255 / .04) 5px, rgb(255 255 255 / .04) 6px);
}
.intro-dark .integrations {
  border-top-color: var(--intro-line);
}
.intro-dark .integrations article {
  border-bottom-color: var(--intro-line);
}
.intro-dark .integrations b {
  border-color: var(--intro-line);
  color: var(--color-inverted-muted);
}
.intro-dark .badge {
  border-color: var(--intro-line);
  background: #1f2937;
  color: var(--color-inverted);
}
.intro-dark .price-tabs {
  background: color-mix(in oklab, var(--white) 8%, transparent);
}
.intro-dark .price-tabs button {
  color: var(--color-inverted-muted);
}
.intro-dark .price-tabs button.active {
  background: var(--white);
  color: var(--intro-dark-bg);
}

.intro-light {
  --intro-line: color-mix(in oklab, var(--gray-300) 70%, transparent);
  --cta-card-fill: var(--white);
  position: relative;
  z-index: 1;
  background: var(--intro-light-bg);
  border-bottom: 1px solid var(--intro-line);
}
.intro-light::before,
.intro-light::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 2;
}
.intro-light::before {
  width: 100%;
  max-width: min(var(--page-frame-max-width), calc(100vw - 2rem));
  margin-inline: auto;
  border-inline: 1px solid var(--intro-line);
  box-sizing: border-box;
}
.intro-light::after {
  display: none;
}
.intro-light .border-band {
  border-bottom-color: var(--intro-line);
}

.footer.footer-light {
  --footer-bg: var(--intro-light-bg);
  --footer-line: color-mix(in oklab, var(--gray-300) 70%, transparent);
  background: var(--intro-light-bg);
}
.footer.footer-dark {
  --footer-bg: var(--intro-dark-bg);
  --footer-line: color-mix(in oklab, var(--white) 12%, transparent);
  background: var(--intro-dark-bg);
  color: var(--color-inverted);
}

.product-preview { padding: var(--space-2) var(--space-3) var(--section-py-sm); }
.dashboard-card {
  display: grid;
  grid-template-columns: 13rem 1fr;
  min-height: clamp(20rem, 48vw, 40rem);
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: var(--border-subtle);
  background: var(--color-surface);
  box-shadow: var(--shadow-dashboard);
}
.dash-sidebar { border-right: var(--border-width) solid #eee; padding: var(--space-5); background: var(--color-surface-muted); }
.dash-sidebar span { margin-left: .6rem; font-weight: 600; }
.dash-dot { display: inline-block; width: .7rem; height: .7rem; border-radius: var(--radius-pill); background: var(--foreground); vertical-align: middle; }
.dash-sidebar nav { display: grid; gap: var(--space-3); margin-top: var(--space-8); }
.dash-sidebar i { height: 2rem; border-radius: var(--radius-sm); background: #ededed; }
.dash-main { padding: clamp(1rem, 2vw, 2rem); background: linear-gradient(180deg, var(--color-surface), #fbfbfb); }
.dash-top { display: flex; justify-content: space-between; gap: var(--space-4); margin-bottom: var(--space-5); }
.dash-top small { display: block; color: var(--muted-foreground); font-weight: 500; }
.dash-top strong { display: block; font-size: clamp(1.25rem, 2.5vw, 2rem); letter-spacing: -.025em; }
.dash-top button { border: var(--border-width) solid #ddd; border-radius: var(--radius-sm); background: var(--color-surface); padding: .45rem .7rem; }
.dash-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .875rem; }
.request-card {
  min-height: 10rem;
  border: var(--border-width) solid #ececec;
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
}
.request-card span { color: var(--gray-500); font-size: .75rem; font-weight: 600; }
.request-card h3 { margin: .8rem 0 .35rem; font-size: 1rem; letter-spacing: -.015em; }
.request-card p { margin: 0; color: var(--muted-foreground); font-size: .875rem; line-height: 1.4; }
.request-card b { display: block; margin-top: 1rem; color: var(--gray-700); font-variant-numeric: tabular-nums; }
.request-card.hot { border-color: var(--gray-300); background: #fcfcfc; }

.logo-strip {
  --logo-strip-px: var(--page-px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding-block: 4rem;
  padding-inline: var(--logo-strip-px);
  overflow: hidden;
}
.logo-strip p { margin: 0; color: var(--muted-foreground); font-size: var(--text-base); line-height: 1.375; font-weight: 400; }
.logo-marquee {
  width: calc(100% + 2 * var(--logo-strip-px));
  margin-inline: calc(-1 * var(--logo-strip-px));
  overflow: hidden;
}
.logo-marquee__track {
  display: flex;
  width: max-content;
  animation: logo-marquee 70s linear infinite;
}
.logo-marquee__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
}
.logo-strip img {
  height: 2.5rem;
  width: auto;
  max-width: 7.5rem;
  object-fit: contain;
  opacity: .5;
  filter: grayscale(1);
  transition: none;
}
.logo-strip img:hover { opacity: .8; filter: grayscale(0); }
.logo-grid {
  padding: 0;
}
.logo-grid ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid color-mix(in oklab, var(--gray-300) 70%, transparent);
}
.logo-grid li {
  position: relative;
  display: grid;
  min-height: 6rem;
  place-items: center;
  border-right: 1px solid color-mix(in oklab, var(--gray-300) 70%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--gray-300) 70%, transparent);
}
.logo-grid li:nth-child(2n) {
  border-right: 0;
}
.logo-grid li:nth-last-child(-n + 2) {
  border-bottom: 0;
}
.graduate-logo-grid ul,
.office-tour-logo-grid ul {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.graduate-logo-grid li:nth-child(2n),
.office-tour-logo-grid li:nth-child(2n) {
  border-right: 1px solid color-mix(in oklab, var(--gray-300) 70%, transparent);
}
.graduate-logo-grid li:nth-child(3n),
.office-tour-logo-grid li:nth-child(3n) {
  border-right: 0;
}
.graduate-logo-grid li:nth-last-child(-n + 3),
.office-tour-logo-grid li:nth-last-child(-n + 3) {
  border-bottom: 0;
}
.graduate-logo-grid li:not(:first-child) img,
.graduate-logo-grid li:not(:first-child) .logo-grid-mark,
.office-tour-logo-grid li:not(:first-child) img,
.office-tour-logo-grid li:not(:first-child) .logo-grid-mark {
  scale: 1.25;
}
.graduate-logo-grid li:nth-child(2) img,
.graduate-logo-grid li:nth-child(2) .logo-grid-mark {
  width: 9.375rem;
  height: 2.8125rem;
}

.logo-grid img,
.logo-grid-mark {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 7.5rem;
  height: 2.25rem;
  transition: none;
}
.logo-grid img {
  object-fit: contain;
  opacity: 0;
}
.logo-grid-mark {
  display: block;
  background: #9ca3af;
  opacity: .9;
  mask: var(--logo-src) center / contain no-repeat;
  -webkit-mask: var(--logo-src) center / contain no-repeat;
}
.logo-grid li:hover img,
.logo-grid li:focus-within img {
  opacity: 1;
}
.logo-grid li:hover .logo-grid-mark,
.logo-grid li:focus-within .logo-grid-mark {
  opacity: 0;
}
.logo-grid li:has(.logo-no-mask) img {
  opacity: 0.6;
  filter: grayscale(1);
}
.logo-grid li:has(.logo-no-mask):hover img,
.logo-grid li:has(.logo-no-mask):focus-within img {
  opacity: 1;
  filter: none;
}
.logo-grid li:has(.logo-no-mask) .logo-grid-mark {
  display: none;
}
@keyframes logo-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-marquee__track { animation: none; }
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  padding: var(--section-py-xs) var(--page-px);
  border-bottom: var(--border-soft);
}
.section-heading h2 {
  max-width: 32rem;
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -.025em;
  text-wrap: balance;
}
.section-heading p {
  max-width: 20rem;
  margin: 0;
  color: var(--muted-foreground);
  font-size: var(--text-base);
  line-height: 1.375;
  text-wrap: pretty;
}
.section-heading.centered { align-items: center; text-align: center; }
.section-heading:has(+ .alternating) h2,
.section-heading:has(+ .included) h2 {
  font-size: 2.25rem;
}

.flow-visual { display: none; padding: 3rem var(--page-px); }
.flow-wrap { position: relative; display: grid; grid-template-columns: 20rem 1fr 20rem; align-items: center; min-height: 26rem; }
.flow-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.flow-lines path { fill: none; stroke: var(--gray-300); stroke-width: 1.5; stroke-linecap: round; }
.flow-lines .runner {
  stroke: #22c55e;
  stroke-width: 3;
  stroke-dasharray: .25 1;
  stroke-dashoffset: .25;
  path-length: 1;
  animation: flow-run 7.2s ease-in-out infinite;
}
.flow-lines .r2 { animation-delay: .5s; }
.flow-lines .r3 { animation-delay: 1s; }
.flow-lines .r4 { animation-delay: 1.5s; }
.flow-lines .r5 { animation-delay: 2s; }
.flow-lines .r6 { animation-delay: 2.5s; }
@keyframes flow-run { 0%, 18% { opacity: 0; stroke-dashoffset: .25; } 23%, 72% { opacity: 1; } 82%, 100% { opacity: 0; stroke-dashoffset: -1; } }
.flow-col { position: relative; z-index: 1; display: grid; gap: 2.25rem; }
.bubble, .action-row {
  border: 1px solid var(--gray-300);
  border-radius: .75rem;
  background: var(--white);
  padding: 1rem;
  box-shadow: 0 1px 3px rgb(0 0 0 / .04);
  font-weight: 500;
}
.action-row { display: flex; justify-content: space-between; color: #171717; }
.action-row b { color: var(--gray-500); font-variant-numeric: tabular-nums; }
.flow-hub {
  position: relative;
  z-index: 2;
  display: flex;
  width: 5.6rem;
  height: 5.6rem;
  align-items: center;
  justify-content: center;
  justify-self: center;
  border-radius: 1.25rem;
  background: var(--white);
  box-shadow: 0 12px 30px rgb(0 0 0 / .08);
}
.flow-hub img { width: 3.2rem; height: auto; object-fit: cover; object-position: left; }

.value-grid {
  display: grid;
  grid-template-columns: 1fr;
}
.value-grid article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem var(--page-px);
  border-bottom: 1px solid color-mix(in oklab, var(--gray-300) 70%, transparent);
}
.value-grid svg { width: 2rem; height: 2rem; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.value-grid article[data-program="p-team"] svg { color: var(--program-pteam); }
.value-grid article[data-program="mentorship"] svg { color: var(--program-mentorship); }
.value-grid article[data-program="graduate"] svg { color: var(--program-graduate); }
.value-grid h3 { margin: 0; font-size: 1.125rem; font-weight: 500; }
.speaker-intro-value-grid h3 {
  position: relative;
  display: inline-block;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: 0;
}
.speaker-intro-value-grid .metric-plus {
  position: absolute;
  left: 100%;
  top: 50%;
  font-size: .72em;
  transform: translateY(-50%);
}
.speaker-intro-value-grid article {
  align-items: center;
  text-align: center;
}
.speaker-intro-value-grid article[data-program="p-team"] h3 {
  color: var(--program-pteam);
}
.speaker-intro-value-grid article[data-program="mentorship"] h3 {
  color: var(--program-mentorship);
}
.speaker-intro-value-grid article[data-program="graduate"] h3 {
  color: var(--program-graduate);
}
.value-grid p { margin: -.6rem 0 0; color: var(--muted-foreground); line-height: 1.625; }
.value-grid ul {
  margin: -.25rem 0 0;
  padding-left: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}
.value-grid li + li { margin-top: .25rem; }
body:not(:has(.intro-dark)) .value-grid { padding-top: var(--nav-height); }

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
}
.team-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 2rem var(--page-px);
  border-bottom: 1px solid color-mix(in oklab, var(--gray-300) 70%, transparent);
}
.intro-light > .border-band:last-child:has(.team-grid) .team-card:last-child {
  border-bottom: 0;
}
.team-card--has-bio { cursor: default; }
.team-card-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, color-mix(in oklab, var(--primary) 38%, #f8fafc), color-mix(in oklab, var(--primary) 28%, var(--program-mentorship)));
  isolation: isolate;
}
.team-card-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 6%;
  transform: scale(1.28);
}
.team-card-photo--custom-crop img {
  inset: auto;
  left: var(--team-image-position-x, 50%);
  top: var(--team-image-position-y, 50%);
  width: calc(var(--team-image-scale, 1.28) * 100%);
  height: calc(var(--team-image-scale, 1.28) * 100%);
  object-position: center;
  transform: translate(calc(var(--team-image-position-x, 50%) * -1), calc(var(--team-image-position-y, 50%) * -1));
  transform-origin: var(--team-image-position-x, 50%) var(--team-image-position-y, 50%);
}
.team-card-photo-base {
  z-index: 0;
  opacity: .58;
  filter: grayscale(1) contrast(1.04) brightness(1.02);
  mix-blend-mode: luminosity;
}
.team-card-photo-color {
  z-index: 1;
  opacity: .24;
  filter: saturate(.9) contrast(.98);
}
.team-card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: .12;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 10%, rgb(255 255 255 / .45), transparent 34%),
    linear-gradient(135deg, rgb(65 201 193 / .28), rgb(0 85 255 / .16));
  mix-blend-mode: soft-light;
}
@media (hover: hover) and (pointer: fine) {
  .team-card-photo.color-leak-media.is-color-revealing canvas.color-leak-canvas {
    opacity: 1;
  }
}
.team-card-bio-tooltip {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  background: transparent;
  color: var(--foreground);
  overflow: hidden;
  isolation: isolate;
  pointer-events: none;
}
.team-card-bio-tooltip::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transform: translateY(1.25rem);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  mask-image: linear-gradient(to top, var(--black) 0%, var(--black) 18%, rgba(0, 0, 0, .65) 34%, rgba(0, 0, 0, .18) 48%, transparent 62%);
  -webkit-mask-image: linear-gradient(to top, var(--black) 0%, var(--black) 18%, rgba(0, 0, 0, .65) 34%, rgba(0, 0, 0, .18) 48%, transparent 62%);
  transition:
    opacity .55s cubic-bezier(.19, 1, .22, 1),
    transform .7s cubic-bezier(.19, 1, .22, 1);
}
.team-card-bio-tooltip::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  background: linear-gradient(to top, var(--intro-light-bg) 0%, color-mix(in oklab, var(--intro-light-bg) 82%, transparent) 28%, color-mix(in oklab, var(--intro-light-bg) 34%, transparent) 44%, rgb(255 255 255 / 0) 62%);
  transition: opacity .45s cubic-bezier(.19, 1, .22, 1);
}
.team-card-bio-tooltip p {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(.5rem);
  margin: 0;
  font-size: .875rem;
  line-height: 1.625;
  transition:
    opacity .45s cubic-bezier(.19, 1, .22, 1) 60ms,
    transform .55s cubic-bezier(.19, 1, .22, 1) 60ms;
}
@media (hover: hover) and (pointer: fine) {
  .team-card-photo:hover .team-card-bio-tooltip::before,
  .team-card-photo:focus-within .team-card-bio-tooltip::before,
  .team-card-photo:hover .team-card-bio-tooltip::after,
  .team-card-photo:focus-within .team-card-bio-tooltip::after,
  .team-card-photo:hover .team-card-bio-tooltip p,
  .team-card-photo:focus-within .team-card-bio-tooltip p {
    opacity: 1;
  }
  .team-card-photo:hover .team-card-bio-tooltip::after,
  .team-card-photo:focus-within .team-card-bio-tooltip::after,
  .team-card-photo:hover .team-card-bio-tooltip p,
  .team-card-photo:focus-within .team-card-bio-tooltip p {
    transform: translateY(0);
  }
  .team-card-photo:not(.team-card-photo--custom-crop):hover img,
  .team-card-photo:not(.team-card-photo--custom-crop):focus-within img {
    transform: scale(1.28);
  }
}
.team-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  padding: 0;
  text-align: center;
}
.team-card h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.25;
}
.team-card-role {
  margin: -.35rem 0 0;
  color: var(--muted-foreground);
  font-size: .9375rem;
  line-height: 1.4;
}
.team-card-role[data-program="p-team"] { color: var(--program-pteam); }
.team-card-role[data-program="mentorship"] { color: var(--program-mentorship); }
.team-card-role[data-program="graduate"] { color: var(--program-graduate); }
.team-card--text-only .team-card-role[data-program] {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: var(--radius-xs);
  padding: var(--space-1) var(--space-2);
  color: var(--color-inverted);
  font-size: .8125rem;
  font-weight: 500;
  line-height: 1.2;
}
.team-card--text-only .team-card-role[data-program="p-team"] { background: var(--program-pteam); }
.team-card--text-only .team-card-role[data-program="mentorship"] { background: var(--program-mentorship); }
.team-card--text-only .team-card-role[data-program="graduate"] { background: var(--program-graduate); }
.team-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: auto;
  padding-top: var(--space-5);
}
.team-card-links .btn-primary {
  border-color: #0a66c2;
  background: #0a66c2;
  color: var(--color-inverted);
  box-shadow: var(--shadow-xs), 0 0 0 0 rgb(10 102 194 / .24);
}
.team-card-links .btn-primary:hover {
  background: color-mix(in oklab, #0a66c2 88%, var(--black));
}
.team-card-links .btn-primary:focus-visible {
  box-shadow: 0 0 0 2px var(--white), 0 0 0 3px #0a66c2;
}
.team-card--text-only {
  min-height: 18rem;
}
.team-card--text-only:not(:has(.team-card-bio)) {
  min-height: 9rem;
}
.team-card--text-only .team-card-body {
  min-height: 100%;
  justify-content: flex-start;
  padding-top: .5rem;
}
.team-card-bio {
  margin: .5rem 0 0;
  color: var(--muted-foreground);
  font-size: .9375rem;
  line-height: 1.625;
  text-align: left;
}

.feature-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 2.5rem var(--page-px);
}
.feature-cards article {
  --feature-card-pad: 1.5rem;
  display: flex;
  min-height: 22rem;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  border-radius: 1.125rem;
  background: var(--gray-50);
  padding: var(--feature-card-pad);
}
.feature-cards article:nth-child(-n + 2) {
  min-height: 11rem;
}
.event-feature-cards article:nth-child(-n + 2) {
  min-height: 22rem;
}
.program-mentorship .feature-cards article {
  min-height: 0;
}
.feature-cards,
.pricing-grid {
  perspective: 650px;
}
.feature-cards:has(+ .border-band .graduate-logo-grid),
.feature-cards:has(+ .border-band .mentorship-logo-grid) {
  padding-bottom: 0;
}
.intro-light .feature-cards article {
  background: var(--intro-light-card-bg);
}
.intro-light .home-feature-cards article {
  background: var(--intro-light-bg);
  border: 1px solid color-mix(in oklab, var(--gray-300) 70%, transparent);
}
.home-feature-cards article {
  position: relative;
}
.home-feature-cards h3,
.home-feature-cards p {
  position: relative;
  z-index: 2;
}
.home-feature-cards p {
  min-height: 3.8rem;
}
.feature-cards h3 { margin: 0; font-size: 1.125rem; line-height: 1.25; font-weight: 500; letter-spacing: -.025em; }
.feature-cards p { margin: 0; color: var(--muted-foreground); line-height: 1.375; }
.feature-cards ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted-foreground);
  line-height: 1.375;
}
.feature-cards li + li {
  margin-top: .35rem;
}
.home-feature-cards h3 {
  margin-top: 2.5rem;
}
.feature-cards img { width: 100%; margin: auto 0 0; }
.home-feature-cards article > .feature-card-photo {
  position: relative;
  width: calc(100% + (var(--feature-card-pad) * 2));
  aspect-ratio: 16 / 13;
  margin: -.15rem calc(var(--feature-card-pad) * -1) calc(var(--feature-card-pad) * -1);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, color-mix(in oklab, var(--primary) 38%, #f8fafc), color-mix(in oklab, var(--primary) 28%, var(--program-mentorship)));
}
.home-feature-cards article > .feature-card-photo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  object-fit: cover;
  object-position: center;
  transition:
    opacity 1s cubic-bezier(.19, 1, .22, 1),
    transform .9s cubic-bezier(.19, 1, .22, 1);
}
.home-feature-cards article > .feature-card-photo img.feature-card-photo-base {
  z-index: 0;
  opacity: .58;
  filter: grayscale(1) contrast(1.04) brightness(1.02);
  mix-blend-mode: luminosity;
}
.home-feature-cards article > .feature-card-photo img.feature-card-photo-color {
  z-index: 1;
  opacity: .24;
  filter: saturate(.9) contrast(.98);
}
.color-leak-media canvas.color-leak-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1);
  pointer-events: none;
  transition:
    opacity .9s cubic-bezier(.19, 1, .22, 1),
    transform .9s cubic-bezier(.19, 1, .22, 1);
  will-change: opacity, transform;
}
.home-feature-cards article > .feature-card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: .12;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 10%, rgb(255 255 255 / .45), transparent 34%),
    linear-gradient(135deg, rgb(65 201 193 / .28), rgb(0 85 255 / .16));
  mix-blend-mode: soft-light;
  transition:
    opacity 1s cubic-bezier(.19, 1, .22, 1);
}
.home-feature-cards article > .feature-card-photo::before {
  content: "";
  position: absolute;
  inset: -2px 0 0;
  z-index: 4;
  opacity: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, var(--intro-light-bg) 0%, var(--intro-light-bg) 18%, color-mix(in oklab, var(--intro-light-bg) 92%, transparent) 29%, color-mix(in oklab, var(--intro-light-bg) 54%, transparent) 40%, rgb(255 255 255 / 0) 54%);
}
.home-feature-cards article > .feature-card-photo.color-leak-sharp::before {
  content: none;
}
.home-feature-cards article > .feature-card-photo.color-leak-sharp img,
.home-feature-cards article > .feature-card-photo.color-leak-sharp::after {
  transition: none;
}
@media (hover: hover) and (pointer: fine) {
  .home-feature-cards article.is-color-revealing > .feature-card-photo::after {
    opacity: .04;
  }
  .home-feature-cards article.is-color-revealing > .feature-card-photo img.feature-card-photo-base {
    opacity: .5;
    transform: none;
  }
  .home-feature-cards article.is-color-revealing > .feature-card-photo img.feature-card-photo-color {
    opacity: .18;
    transform: none;
  }
  .home-feature-cards article.is-color-revealing > .feature-card-photo canvas.color-leak-canvas {
    opacity: 1;
    transform: none;
  }
  .home-feature-cards article.is-color-revealing > .feature-card-photo.color-leak-sharp::after {
    opacity: .12;
  }
  .home-feature-cards article.is-color-revealing > .feature-card-photo.color-leak-sharp img.feature-card-photo-base {
    opacity: .58;
    transform: scale(1);
  }
  .home-feature-cards article.is-color-revealing > .feature-card-photo.color-leak-sharp img.feature-card-photo-color {
    opacity: .24;
    transform: scale(1);
  }
  .home-feature-cards article.is-color-revealing > .feature-card-photo.color-leak-sharp canvas.color-leak-canvas {
    transform: scale(1);
  }
  .video-mock.color-leak-media.is-color-revealing canvas.color-leak-canvas {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-feature-cards article > .feature-card-photo img,
  .home-feature-cards article > .feature-card-photo::after,
  .color-leak-media canvas.color-leak-canvas {
    transition: none;
  }
  .color-leak-media canvas.color-leak-canvas {
    display: none;
  }
}
.feature-cards article.image-only { padding: 0; }
.feature-cards article.image-only img {
  display: block;
  flex: 1;
  height: 100%;
  min-height: 0;
  margin: 0;
  object-fit: cover;
  object-position: center;
}
.home-feature-cards article.image-only > .feature-card-photo {
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
}
.card-graphic-mouse-layer {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transform-style: preserve-3d;
}
.pricing-graphic-bg .card-graphic-mouse-layer {
  width: 88%;
  height: 100%;
  margin-inline: auto;
}
.stacked-actions { position: relative; flex: 1; min-height: 13.25rem; margin-top: .5rem; }
.stacked-actions div {
  position: absolute;
  inset-inline: 0;
  display: flex;
  align-items: center;
  gap: .875rem;
  height: 4rem;
  border-radius: .75rem;
  background: var(--white);
  padding: 1rem;
  box-shadow: 0 1px 3px rgb(0 0 0 / .04);
  font-weight: 500;
  animation: float-card 4s ease-in-out infinite;
  transition: opacity .6s var(--ease-out), filter .6s var(--ease-out), transform .6s var(--ease-out);
}
.stacked-actions div:nth-child(1) { top: 0; opacity: .35; transform: scale(.93); }
.stacked-actions div:nth-child(2) { top: 4.625rem; z-index: 1; animation-delay: -.6s; }
.stacked-actions div:nth-child(3) { top: 9.25rem; opacity: .25; transform: scale(.93); animation-delay: -1.2s; }
.stacked-actions span { display: grid; place-items: center; width: 2.25rem; height: 2.25rem; border-radius: .375rem; background: var(--gray-100); color: var(--gray-700); }
.stacked-actions b { margin-left: auto; color: var(--gray-500); font-variant-numeric: tabular-nums; }
@keyframes float-card { 50% { translate: 0 -5px; } }
.merge-demo { position: relative; flex: 1; display: grid; place-items: center; min-height: 14rem; }
.merge-demo span, .merge-demo strong {
  position: absolute;
  border-radius: .75rem;
  background: var(--white);
  padding: .85rem 1rem;
  box-shadow: 0 1px 3px rgb(0 0 0 / .04);
  font-size: .875rem;
}
.merge-demo span:nth-child(1) { top: 1rem; left: 0; }
.merge-demo span:nth-child(2) { top: 4rem; right: 0; }
.merge-demo span:nth-child(3) { bottom: 4rem; left: 1rem; }
.merge-demo strong { bottom: 0; left: 50%; translate: -50% 0; white-space: nowrap; }

.video-section { padding: var(--section-py-xs) var(--page-px); }
.video-mock {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: var(--border-width) solid var(--gray-300);
  border-radius: var(--radius-2xl);
  background:
    radial-gradient(circle at 50% 40%, rgb(255 255 255 / .85), transparent 20%),
    linear-gradient(135deg, #f8fafc, #e5e7eb 45%, var(--white));
  box-shadow: var(--shadow-media);
  display: grid;
  place-items: center;
}
.video-mock img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-overview-media {
  isolation: isolate;
  background:
    linear-gradient(135deg, color-mix(in oklab, var(--primary) 38%, #f8fafc), color-mix(in oklab, var(--primary) 28%, var(--program-mentorship)));
}
.color-leak-media {
  overflow: visible;
  border: none;
  box-shadow: none;
}
.team-card-photo.color-leak-media {
  overflow: hidden;
}
.home-feature-cards article > .feature-card-photo.color-leak-media {
  overflow: hidden;
}
.video-mock.color-leak-media img.color-leak-base,
.video-mock.color-leak-media img.color-leak-color,
.video-mock.color-leak-media::after,
.video-mock.color-leak-media::before {
  border-radius: var(--radius-2xl);
  clip-path: inset(0 round var(--radius-2xl));
}
.home-feature-cards article > .feature-card-photo.color-leak-media img.feature-card-photo-base,
.home-feature-cards article > .feature-card-photo.color-leak-media img.feature-card-photo-color,
.home-feature-cards article > .feature-card-photo.color-leak-media canvas.color-leak-canvas,
.home-feature-cards article > .feature-card-photo.color-leak-media::after {
  border-radius: 0 0 1.125rem 1.125rem;
  clip-path: inset(0 round 0 0 1.125rem 1.125rem);
}
.photo-wash::before,
.photo-wash::after,
.photo-wash-inner,
.photo-wash-outer {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: 2;
  pointer-events: none;
}
.photo-wash-inner {
  background: color-mix(in oklab, var(--intro-light-bg) 75%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.photo-wash-outer {
  background: var(--intro-light-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.video-mock.color-leak-media {
  isolation: isolate;
  background:
    linear-gradient(135deg, color-mix(in oklab, var(--primary) 38%, #f8fafc), color-mix(in oklab, var(--primary) 28%, var(--program-mentorship)));
}
.video-mock.color-leak-media .video-mock-image-base {
  z-index: 0;
  opacity: .6;
  filter: grayscale(1) contrast(1.04) brightness(1.02);
  mix-blend-mode: luminosity;
  transform: scale(1);
  transition:
    opacity var(--duration-slow) var(--ease-emphatic);
}
.video-mock.color-leak-media .video-mock-image-color {
  z-index: 1;
  opacity: .24;
  filter: saturate(.9) contrast(.98);
  transform: scale(1);
  transition:
    opacity var(--duration-slow) var(--ease-emphatic);
}
.video-mock.color-leak-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: .12;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 10%, rgb(255 255 255 / .45), transparent 34%),
    linear-gradient(135deg, rgb(65 201 193 / .28), rgb(0 85 255 / .16));
  mix-blend-mode: soft-light;
  transition:
    opacity 1s cubic-bezier(.19, 1, .22, 1);
}
.video-mock.color-leak-sharp .video-mock-image-base,
.video-mock.color-leak-sharp .video-mock-image-color,
.video-mock.color-leak-sharp::after {
  transition: none;
}
@media (hover: hover) and (pointer: fine) {
  .video-mock.color-leak-media.is-color-revealing::after {
    opacity: .04;
  }
  .video-mock.color-leak-media.is-color-revealing .video-mock-image-base {
    opacity: .5;
  }
  .video-mock.color-leak-media.is-color-revealing .video-mock-image-color {
    opacity: .18;
  }
  .video-mock.color-leak-sharp.is-color-revealing::after {
    opacity: .12;
  }
  .video-mock.color-leak-sharp.is-color-revealing .video-mock-image-base {
    opacity: .6;
  }
  .video-mock.color-leak-sharp.is-color-revealing .video-mock-image-color {
    opacity: .24;
  }
}
.alternating {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 2.5rem var(--page-px);
}
.alternating article {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.alternating article > div {
  display: flex;
  aspect-ratio: 1;
  width: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 1.125rem;
  background: var(--gray-100);
}
.alternating img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
}
.program-photo-curriculum article > div {
  position: relative;
  isolation: isolate;
  background: #eef6fb;
  box-shadow: inset 0 0 0 1px rgb(0 0 0 / .04);
}
.program-photo-curriculum article > div.color-leak-media {
  overflow: hidden;
  border-radius: 1.125rem;
  background:
    linear-gradient(135deg, color-mix(in oklab, var(--primary) 38%, #f8fafc), color-mix(in oklab, var(--primary) 28%, var(--program-mentorship)));
  box-shadow: none;
}
.program-photo-curriculum .color-leak-photo-base,
.program-photo-curriculum .color-leak-photo-color {
  position: absolute;
  inset: 0;
  max-width: none;
  max-height: none;
  object-fit: cover;
}
.program-photo-curriculum .color-leak-photo-base {
  z-index: 0;
  opacity: .58;
  filter: grayscale(1) contrast(1.04) brightness(1.02);
  mix-blend-mode: luminosity;
}
.program-photo-curriculum .color-leak-photo-color {
  z-index: 1;
  opacity: .24;
  filter: saturate(.9) contrast(.98);
}
.program-photo-curriculum article > div.color-leak-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: .12;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 10%, rgb(255 255 255 / .45), transparent 34%),
    linear-gradient(135deg, rgb(65 201 193 / .28), rgb(0 85 255 / .16));
  mix-blend-mode: soft-light;
}
@media (hover: hover) and (pointer: fine) {
  .program-photo-curriculum article > div.color-leak-media.is-color-revealing canvas.color-leak-canvas {
    opacity: 1;
  }
}
.program-folder-section {
  --folder-color: var(--primary);
  --folder-back-color: color-mix(in oklab, var(--folder-color) 88%, #000);
  display: grid;
  grid-template-columns: 1fr;
  min-height: 17rem;
  align-items: center;
  align-content: center;
  gap: 2rem;
  overflow: visible;
  padding: 3rem var(--page-px);
}
.program-folder-copy {
  max-width: 36rem;
}
.program-folder-copy h2 {
  max-width: 32rem;
  margin: 0;
  color: var(--foreground);
  font-size: var(--text-xl);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -.025em;
  text-wrap: balance;
}
.program-folder-copy p {
  max-width: 36rem;
  margin: 1rem 0 0;
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.55;
  white-space: nowrap;
}
.program-folder-slot {
  display: flex;
  justify-content: center;
  width: 100%;
}
.program-folder-section[data-program="p-team"] {
  --folder-color: var(--program-pteam);
}
.program-folder-section[data-program="mentorship"] {
  --folder-color: var(--program-mentorship);
}
.program-folder-section[data-program="graduate"] {
  --folder-color: var(--program-graduate);
}
.program-folder {
  --folder-motion-duration: .32s;
  --folder-motion-ease: cubic-bezier(.22, 1, .36, 1);
  --folder-label-scale: .8475;
  position: relative;
  width: 10rem;
  height: 8rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
  transform: scale(1.18);
  transform-origin: center;
  transition: transform var(--folder-motion-duration) var(--folder-motion-ease);
}
.program-folder-slot:hover .program-folder,
.program-folder:focus-visible {
  transform: translateY(-.5rem) scale(1.18);
}
.program-folder:focus-visible {
  outline: 2px solid color-mix(in oklab, var(--folder-color) 70%, var(--foreground));
  outline-offset: .875rem;
  border-radius: .5rem;
}
.program-folder__back {
  position: absolute;
  inset: 1.25rem 0 0;
  display: block;
  width: 100%;
  height: 6.4rem;
  border-radius: 0 .5rem .5rem .5rem;
  background: var(--folder-back-color);
}
.program-folder__back::after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 98%;
  left: 0;
  width: 3rem;
  height: 1rem;
  border-radius: .5rem .5rem 0 0;
  background: var(--folder-back-color);
}
.program-folder__paper {
  --paper-transform: translate(-50%, 10%);
  position: absolute;
  z-index: 2;
  bottom: 10%;
  left: 50%;
  display: grid;
  width: 70%;
  min-height: 5.1rem;
  place-items: center;
  gap: .35rem;
  padding: .75rem;
  border: 1px solid var(--intro-line, var(--color-line-soft));
  border-radius: .5rem;
  background: var(--intro-light-bg);
  text-align: center;
  transform: var(--paper-transform);
  transition:
    transform var(--folder-motion-duration) var(--folder-motion-ease),
    min-height var(--folder-motion-duration) var(--folder-motion-ease),
    border-color .14s ease;
  will-change: transform;
}
.program-folder__paper > span {
  display: block;
  max-width: 100%;
  color: var(--muted-foreground);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.55;
  transform: scale(var(--folder-label-scale));
  transform-origin: center;
}
.program-folder__paper-2 {
  width: 80%;
  min-height: 4.55rem;
}
.program-folder__paper-3 {
  width: 90%;
  min-height: 3.9rem;
}
.program-folder__front {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: block;
  border-radius: .5rem;
  background: var(--folder-color);
  transform-origin: bottom;
  transition: transform var(--folder-motion-duration) var(--folder-motion-ease);
}
.program-folder__front--right {
  border-radius: .5rem .5rem .5rem 0;
}
.program-folder-slot:hover .program-folder__front,
.program-folder:focus-visible .program-folder__front {
  transform: skew(15deg) scaleY(.6);
}
.program-folder-slot:hover .program-folder__front--right,
.program-folder:focus-visible .program-folder__front--right {
  transform: skew(-15deg) scaleY(.6);
}
.program-folder-slot:hover .program-folder__paper-1,
.program-folder:focus-visible .program-folder__paper-1 {
  --paper-transform: translate(-120%, -70%) rotate(-15deg);
}
.program-folder-slot:hover .program-folder__paper-2,
.program-folder:focus-visible .program-folder__paper-2 {
  min-height: 5.1rem;
  --paper-transform: translate(10%, -70%) rotate(15deg);
}
.program-folder-slot:hover .program-folder__paper-3,
.program-folder:focus-visible .program-folder__paper-3 {
  min-height: 5.1rem;
  --paper-transform: translate(-50%, -100%) rotate(5deg);
}
.program-folder-slot:hover .program-folder__paper:hover {
  z-index: 4;
  border-color: color-mix(in oklab, var(--folder-color) 36%, var(--intro-line, var(--color-line-soft)));
  transform: var(--paper-transform) scale(1.035);
  transition-duration: .14s, var(--folder-motion-duration), .14s;
  transition-timing-function: cubic-bezier(.16, 1, .3, 1), var(--folder-motion-ease), ease;
}
.alternating h3 { margin: 0; max-width: 32rem; font-size: 1.875rem; line-height: 1.25; font-weight: 500; letter-spacing: -.025em; text-wrap: balance; }
.program-photo-curriculum h3 { font-size: var(--text-xl); }
.alternating p { max-width: 32rem; margin: .5rem 0 0; color: var(--muted-foreground); }

.widget-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 2.5rem var(--page-px);
}
.widget-grid article {
  position: relative;
  display: flex;
  min-height: 14rem;
  flex-direction: column;
  justify-content: flex-end;
  gap: .5rem;
  overflow: hidden;
  border-radius: 1.125rem;
  padding: 1.5rem;
  color: var(--color-inverted);
}
.gradient::before { content: ""; position: absolute; inset: 0; background: var(--grad); }
.g1 { --grad: url("assets/noise.svg") center / cover, radial-gradient(circle at 20% 20%, #8de1dc, transparent 45%), linear-gradient(135deg, #facc15, #41c9c1 55%, #bef264); }
.g2 { --grad: radial-gradient(circle at 80% 10%, #f0abfc, transparent 42%), linear-gradient(135deg, #0f172a, #239f99); }
.g3 { --grad: radial-gradient(circle at 50% 30%, #fb7185, transparent 42%), linear-gradient(135deg, #111827, var(--gray-500)); }
.widget-grid h3, .widget-grid p, .code-card, .feedback-input, .brand-widget { position: relative; z-index: 1; }
.widget-grid h3 { margin: 0; font-size: 1.5rem; line-height: 1.2; font-weight: 500; letter-spacing: -.025em; }
.widget-grid p { max-width: 20rem; margin: 0; line-height: 1.375; }
.code-card, .feedback-input, .brand-widget {
  margin: auto;
  border-radius: .75rem;
  background: #171717;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / .15);
}
.code-card { padding: 1rem 1.25rem; font-family: "SFMono-Regular", Consolas, monospace; font-size: .8125rem; }
.code-card b { color: #fb64b6; font-weight: 400; }
.code-card em { color: #77d4ff; font-style: normal; }
.code-card mark { background: transparent; color: #ffd236; }
.feedback-input { width: min(100%, 20rem); background: var(--white); color: var(--gray-900); padding: 1rem; font-weight: 500; }
.brand-widget { display: grid; width: min(100%, 18rem); gap: .6rem; background: var(--white); padding: 1rem; }
.brand-widget i { width: 2rem; height: 2rem; border-radius: 999px; background: var(--gray-900); }
.brand-widget span { height: .75rem; border-radius: 999px; background: var(--gray-300); }
.brand-widget span:nth-child(3) { width: 68%; }
.brand-widget button { justify-self: end; border: 0; border-radius: .5rem; background: var(--gray-900); color: var(--color-inverted); padding: .45rem .8rem; }

.price-tabs {
  position: relative;
  display: inline-flex;
  gap: .125rem;
  margin-top: 1.25rem;
  border-radius: 999px;
  background: var(--gray-100);
  padding: .25rem;
}
.price-tabs button {
  position: relative;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: .55rem .85rem;
  color: var(--muted-foreground);
  font-weight: 500;
  cursor: pointer;
}
.price-tabs button.active { background: var(--white); color: var(--foreground); box-shadow: 0 1px 2px rgb(0 0 0 / .05); }
.price-tabs span {
  position: absolute;
  top: -.6rem;
  right: -.75rem;
  border-radius: .25rem;
  background: #ecfdf5;
  color: #007956;
  padding: .1rem .35rem;
  font-size: .625rem;
}
.pricing-wrap { padding-inline: var(--page-px); }
.border-band:has(.pricing-wrap) .section-heading {
  border-bottom: 0;
}
.border-band:has(.pricing-wrap) {
  border-bottom: 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-inline: 0;
}
.pricing-grid article {
  position: relative;
  z-index: 3;
  display: flex;
  min-width: 0;
  min-height: 20rem;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.5rem var(--page-px) 1.5rem;
  border: 0;
  border-bottom: 1px solid color-mix(in oklab, var(--gray-300) 70%, transparent);
  border-inline: 1px solid color-mix(in oklab, var(--gray-300) 70%, transparent);
  overflow: hidden;
}
.pricing-grid article:has(.pg-graphic) {
  perspective: 1400px;
}
.pricing-grid article > *:not(.pricing-graphic-bg) {
  position: relative;
  z-index: 2;
}
.pricing-grid article:first-child {
  border-top: 1px solid color-mix(in oklab, var(--gray-300) 70%, transparent);
}
.pricing-grid p {
  max-width: 24rem;
  margin: 0 0 1.5rem;
  color: var(--muted-foreground);
  font-size: .875rem;
  line-height: 1.625;
}
.price { display: flex; flex-wrap: wrap; align-items: end; gap: .35rem; margin: 0 0 .75rem; }
.price strong { font-size: 2.25rem; line-height: 1; font-weight: 500; letter-spacing: -.025em; transition: opacity .2s var(--ease-out), transform .2s var(--ease-out); }
.price strong { transition: opacity .4s cubic-bezier(.19, 1, .22, 1), transform .4s cubic-bezier(.19, 1, .22, 1); }
.price strong.changing { opacity: 0; transform: translateY(6px); }
.price span { color: var(--muted-foreground); font-size: 1rem; }
.pricing-grid .btn { width: auto; align-self: center; margin-top: auto; }
.pricing-grid article:has([data-price="p-team"]) .btn-primary,
.value-grid article[data-program="p-team"] .btn-primary {
  border-color: var(--program-pteam);
  background: var(--program-pteam);
}
.pricing-grid article:has([data-price="p-team"]) .btn-primary:hover,
.value-grid article[data-program="p-team"] .btn-primary:hover {
  background: color-mix(in oklab, var(--program-pteam) 90%, transparent);
}
.pricing-grid article:has([data-price="mentorship"]) .btn-primary,
.value-grid article[data-program="mentorship"] .btn-primary {
  border-color: var(--program-mentorship);
  background: var(--program-mentorship);
  color: var(--color-inverted);
}
.pricing-grid article:has([data-price="mentorship"]) .btn-primary:hover,
.value-grid article[data-program="mentorship"] .btn-primary:hover {
  background: color-mix(in oklab, var(--program-mentorship) 90%, transparent);
}
.pricing-grid article:has([data-price="graduate"]) .btn-primary,
.value-grid article[data-program="graduate"] .btn-primary {
  border-color: var(--program-graduate);
  background: var(--program-graduate);
  color: var(--color-inverted);
}
.pricing-grid article:has([data-price="graduate"]) .btn-primary:hover,
.value-grid article[data-program="graduate"] .btn-primary:hover {
  background: color-mix(in oklab, var(--program-graduate) 90%, transparent);
}
.value-grid .btn-primary {
  color: var(--foreground);
}
.pricing-grid article:has([data-price="p-team"]) {
  border-color: var(--program-pteam);
}

/* Pricing Graphics Backgrounds */
.pricing-graphic-bg {
  position: absolute;
  bottom: 1.75rem;
  left: 0;
  width: 100%;
  height: calc(55% + 1.75rem);
  pointer-events: none;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transform-origin: center bottom;
  transform-style: preserve-3d;
  will-change: transform;
  overflow: visible;
}
.pg-bottom {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.pg-group {
  transform-origin: center;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
/* P-Team Hover */
.pg-shape-1, .pg-shape-2 {
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.pg-pteam .pg-shape-1 {
  transform-origin: 160px 160px;
}
.pg-pteam .pg-shape-2 {
  transform-origin: 240px 160px;
}
article:hover .pg-pteam .pg-shape-1 {
  transform: translateX(40px) rotate(180deg);
}
article:hover .pg-pteam .pg-shape-2 {
  transform: translateX(-40px) rotate(-180deg);
}

/* Mentorship Hover */
.pg-mentor .pg-shape-1 {
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center bottom;
}
.pg-mentor .pg-shape-2 {
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: 200px 282px;
}

article:hover .pg-mentor .pg-shape-2 { transform: scale(1.2273); }

.pg-grad .pg-shape-1 { transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1); transform-origin: 200px 185px; }
.pg-grad .pg-shape-2 { transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1); transform-origin: 200px 218.25px; }

article:hover .pg-grad .pg-shape-2 { transform: scale(1.32); }
.pricing-grid article:has([data-price="mentorship"]) {
  border-color: var(--program-mentorship);
}
.pricing-grid article:has([data-price="graduate"]) {
  border-color: var(--program-graduate);
}
.badge {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  background: var(--white);
  padding: .25rem .75rem;
  box-shadow: 0 1px 2px rgb(0 0 0 / .05);
  font-size: .75rem;
  font-weight: 500;
  white-space: nowrap;
}
.stripe-gap {
  height: 6rem;
  max-width: min(var(--page-frame-max-width), calc(100vw - 2rem));
  margin-inline: auto;
  border-bottom: 1px solid color-mix(in oklab, var(--gray-300) 70%, transparent);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgb(0 0 0 / .04) 5px, rgb(0 0 0 / .04) 6px);
}

.included {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1rem;
  padding: 2.5rem var(--page-px);
}
.included div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: .5rem;
  font-size: .75rem;
  line-height: 1.375;
  font-weight: 500;
}
.included div::before {
  content: "";
  width: .5rem;
  height: .5rem;
  flex: 0 0 auto;
  border: 1px solid #239f99;
  border-radius: 999px;
  background: var(--blue-400);
}
body.program-graduate .included div::before {
  border-color: color-mix(in oklab, var(--primary) 78%, var(--black));
  background: var(--primary);
}
[data-color="blue"] { --c1: var(--blue-400); --c2: #239f99; } [data-color="purple"] { --c1: var(--blue-600); --c2: #003fd1; }
[data-color="green"] { --c1: var(--violet-500); --c2: #6423c7; } [data-color="red"] { --c1: #ff3d71; --c2: #d91f52; }
[data-color="orange"] { --c1: #ff8a00; --c2: #d66a00; } [data-color="emerald"] { --c1: #ffc247; --c2: #e09a00; }
[data-color="indigo"] { --c1: var(--blue-400); --c2: #239f99; } [data-color="teal"] { --c1: var(--blue-600); --c2: #003fd1; }
[data-color="amber"] { --c1: var(--violet-500); --c2: #6423c7; }
.integrations {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid color-mix(in oklab, var(--gray-300) 70%, transparent);
}
.integrations article {
  position: relative;
  display: flex;
  min-height: 13rem;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid color-mix(in oklab, var(--gray-300) 70%, transparent);
  padding: 1.5rem var(--page-px);
}
.integrations img { width: 3rem; height: 3rem; }
.integrations .muted-logo { opacity: .5; filter: grayscale(1); }
.integrations h3 { margin: 1rem 0 0; font-size: 1rem; font-weight: 500; letter-spacing: -.025em; }
.integrations span { color: var(--gray-500); font-size: .875rem; }
.integrations p { margin: .5rem 0 0; color: color-mix(in oklab, var(--foreground) 80%, transparent); text-wrap: balance; }
.integrations b {
  position: absolute;
  top: 1.5rem;
  right: var(--page-px);
  border: 1px solid var(--gray-300);
  border-radius: .25rem;
  padding: .1rem .35rem;
  color: var(--muted-foreground);
  font-size: .75rem;
  font-weight: 500;
}

.fold-corner-paper-section {
  --fold-paper-width: min(26rem, 40vw);
  display: grid;
  min-height: clamp(24rem, 42vw, 31rem);
  max-width: 66rem;
  grid-template-columns: minmax(16rem, .7fr) minmax(20rem, var(--fold-paper-width));
  align-items: center;
  gap: clamp(4.25rem, 7.4vw, 7.5rem);
  justify-content: center;
  margin-inline: auto;
  padding: clamp(4rem, 7vw, 5.5rem) clamp(2rem, 6vw, 5rem);
}
.fold-corner-paper-heading h2 {
  max-width: 32rem;
  margin: 0;
  font-size: 2.25rem;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -.025em;
  color: var(--white);
  text-wrap: balance;
}
.fold-corner-paper-slot {
  display: flex;
  justify-content: center;
  width: 100%;
}
.fold-corner-paper {
  --fold-x: 100%;
  --fold-y: 0%;
  --fold-corner-width: 0%;
  --fold-corner-height: 0%;
  --fold-reset-duration: .34s;
  --fold-enter-duration: .22s;
  position: relative;
  width: var(--fold-paper-width);
  aspect-ratio: 297 / 210;
  background: var(--intro-light-bg);
  clip-path: polygon(0 0, var(--fold-x) 0, 100% var(--fold-y), 100% 100%, 0 100%);
}
.fold-corner-paper.is-fold-entering {
  transition: clip-path var(--fold-enter-duration) cubic-bezier(.16, 1, .3, 1);
}
.fold-corner-paper.is-fold-resetting {
  transition: clip-path var(--fold-reset-duration) cubic-bezier(.16, 1, .3, 1);
}
.fold-corner-paper-copy {
  position: relative;
  z-index: 1;
  display: grid;
  height: 100%;
  align-content: center;
  gap: clamp(.9rem, calc(var(--fold-paper-width) * .04), 1.2rem);
  margin: 0;
  padding: clamp(1.5rem, calc(var(--fold-paper-width) * .072), 2rem);
  color: var(--foreground);
  list-style: none;
}
.fold-corner-paper-copy li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(.7rem, calc(var(--fold-paper-width) * .035), 1rem);
  align-items: start;
}
.fold-corner-paper-copy li > span {
  display: grid;
  width: clamp(1.7rem, calc(var(--fold-paper-width) * .078), 2.1rem);
  height: clamp(1.7rem, calc(var(--fold-paper-width) * .078), 2.1rem);
  place-items: center;
  border: 1px solid color-mix(in oklab, var(--primary) 24%, var(--gray-300));
  border-radius: 999px;
  background: color-mix(in oklab, var(--primary) 13%, var(--white));
  color: color-mix(in oklab, var(--primary) 74%, var(--foreground));
  font-size: clamp(.76rem, calc(var(--fold-paper-width) * .029), .88rem);
  font-weight: 500;
  line-height: 1;
}
.fold-corner-paper-copy h3 {
  margin: 0;
  color: var(--foreground);
  font-size: clamp(.95rem, calc(var(--fold-paper-width) * .043), 1.18rem);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: -.015em;
}
.fold-corner-paper-copy p {
  margin: .35rem 0 0;
  color: color-mix(in oklab, var(--foreground) 72%, transparent);
  font-size: clamp(.78rem, calc(var(--fold-paper-width) * .032), .95rem);
  line-height: 1.42;
}
.fold-corner-paper-corner {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: var(--fold-corner-width);
  height: var(--fold-corner-height);
  background: color-mix(in oklab, var(--intro-light-bg) 44%, var(--white));
}
.fold-corner-paper.is-fold-entering .fold-corner-paper-corner {
  transition:
    width var(--fold-enter-duration) cubic-bezier(.16, 1, .3, 1),
    height var(--fold-enter-duration) cubic-bezier(.16, 1, .3, 1);
}
.fold-corner-paper.is-fold-resetting .fold-corner-paper-corner {
  transition:
    width var(--fold-reset-duration) cubic-bezier(.16, 1, .3, 1),
    height var(--fold-reset-duration) cubic-bezier(.16, 1, .3, 1);
}

@media (prefers-reduced-motion: reduce) {
  .fold-corner-paper.is-fold-entering,
  .fold-corner-paper.is-fold-resetting,
  .fold-corner-paper.is-fold-entering .fold-corner-paper-corner,
  .fold-corner-paper.is-fold-resetting .fold-corner-paper-corner {
    transition: none;
  }
}

@media (max-width: 767px) {
  .fold-corner-paper-section {
    --fold-paper-width: min(24rem, calc(100vw - 4rem));
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4rem var(--page-px);
  }
  .fold-corner-paper-heading h2 {
    text-align: center;
  }
  .fold-corner-paper-slot {
    justify-content: center;
  }
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  padding: 6rem var(--page-px);
  text-align: center;
}
.cta-action-stack {
  --cta-envelope-width: min(24rem, calc(100vw - 4rem));
  --cta-envelope-base: var(--primary);
  --cta-envelope-back-fill: color-mix(in oklab, var(--cta-envelope-base) 62%, var(--black));
  --cta-envelope-body-fill: color-mix(in oklab, var(--cta-envelope-base) 54%, var(--black));
  --cta-envelope-left-fill: color-mix(in oklab, var(--cta-envelope-base) 82%, var(--white));
  --cta-envelope-right-fill: color-mix(in oklab, var(--cta-envelope-base) 72%, var(--black));
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-envelope-wrap {
  position: relative;
  width: var(--cta-envelope-width);
  height: calc(var(--cta-envelope-width) * 1.14);
}
.cta-envelope {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(var(--cta-envelope-width) * .78);
  filter: drop-shadow(0 1.75rem 2.6rem rgb(0 0 0 / .22));
}
.cta-envelope::before {
  content: "";
  position: absolute;
  top: 30%;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  background: var(--cta-envelope-body-fill);
}
.cta-envelope-back {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 30%;
  background: var(--cta-envelope-body-fill);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.cta-card {
  position: absolute;
  top: 12%;
  left: 13%;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: clamp(.45rem, calc(var(--cta-envelope-width) * .025), .75rem);
  width: 74%;
  height: 64%;
  border-radius: .25rem;
  background: var(--cta-card-fill);
  padding: 0;
  color: #919499;
  font-family: Inter, "Inter Fallback", system-ui, sans-serif;
  letter-spacing: .06em;
  text-align: center;
  text-transform: uppercase;
  transition: top .5s ease-in-out;
}
.cta-card h3 {
  max-width: 90%;
  margin: 0;
  color: var(--black);
  font-size: clamp(.75rem, calc(var(--cta-envelope-width) * .036), 1rem);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
  white-space: nowrap;
}
.cta-card form {
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 0;
}
.cta-email-field {
  --cta-email-outline-color: color-mix(in oklab, var(--cta-envelope-base) 26%, var(--gray-300));
  position: relative;
  display: block;
  width: min(78%, 18rem);
}
.cta-email-field::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: -3px;
  border: 3px solid var(--cta-email-outline-color);
  border-radius: .55rem;
  opacity: 0;
  transform: scale(.985);
  transition:
    opacity .18s var(--ease-out),
    transform .22s var(--ease-emphatic);
  will-change: opacity, transform;
}
.cta-email-field:focus-within::after {
  opacity: 1;
  transform: scale(1);
}
.cta-email-field span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.cta-email-field input {
  width: 100%;
  min-height: clamp(2rem, calc(var(--cta-envelope-width) * .08), 2.6rem);
  border: 1px solid var(--cta-email-outline-color);
  border-radius: .375rem;
  background: var(--white);
  color: var(--foreground);
  font: 400 clamp(.85rem, calc(var(--cta-envelope-width) * .032), 1rem)/1.2 Inter, "Inter Fallback", system-ui, sans-serif;
  padding: 0 clamp(2.4rem, calc(var(--cta-envelope-width) * .105), 3rem) 0 clamp(.65rem, calc(var(--cta-envelope-width) * .03), .95rem);
  outline: none;
}
.cta-email-field input::placeholder {
  color: color-mix(in oklab, var(--foreground) 42%, transparent);
}
.cta-email-field input:focus {
  border-color: var(--cta-email-outline-color);
}
.cta-email-field button {
  appearance: none;
  position: absolute;
  top: 50%;
  right: .25rem;
  display: inline-flex;
  width: clamp(1.6rem, calc(var(--cta-envelope-width) * .066), 2rem);
  height: clamp(1.6rem, calc(var(--cta-envelope-width) * .066), 2rem);
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: .25rem;
  background: transparent;
  color: color-mix(in oklab, var(--foreground) 34%, transparent);
  cursor: pointer;
  transform: translateY(-50%);
}
.cta-email-field input:not(:placeholder-shown) + button {
  color: var(--foreground);
}
.cta-email-field button:focus-visible {
  outline: 2px solid color-mix(in oklab, var(--cta-envelope-base) 72%, var(--black));
  outline-offset: 2px;
}
.cta-email-field svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (prefers-reduced-motion: reduce) {
  .cta-email-field::after {
    transition: none;
    transform: none;
  }
}
.cta-envelope-panel {
  position: absolute;
  top: 30%;
  bottom: 0;
  left: 0;
  width: 100%;
}
.cta-envelope-panel-left {
  z-index: 4;
  background: var(--cta-envelope-left-fill);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}
.cta-envelope-panel-right {
  z-index: 3;
  background: var(--cta-envelope-left-fill);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.cta-envelope:hover .cta-card,
.cta-envelope:focus-within .cta-card {
  top: -14%;
}
.faq {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.5rem var(--page-px);
}
.faq h2 { margin: 0; font-size: 1.875rem; line-height: 1.2; font-weight: 400; letter-spacing: -.025em; }
.faq p { margin: .75rem 0 0; color: var(--muted-foreground); line-height: 1.625; }
.faq a { color: var(--foreground); text-decoration: underline; text-underline-offset: 2px; }
.faq a:hover { color: var(--primary); }
.accordion-item {
  border-bottom: 1px solid var(--gray-300);
}
.accordion-heading {
  margin: 0;
}
.accordion-trigger {
  appearance: none;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: .375rem;
  border: 0;
  background: transparent;
  color: var(--foreground);
  padding: 1rem 0;
  text-align: left;
  font: inherit;
  font-size: .875rem;
  font-weight: 500;
  cursor: pointer;
}
.accordion-trigger:hover {
  color: var(--primary);
}
.accordion-trigger:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 4px;
}
.accordion-trigger span {
  min-width: 0;
}
.accordion-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  opacity: .8;
  transition: transform .2s var(--ease-out), opacity .2s var(--ease-out);
}
.accordion-item[data-expanded] .accordion-icon {
  transform: rotate(180deg);
  opacity: 1;
}
.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  transition:
    grid-template-rows .26s var(--ease-emphatic),
    opacity .18s var(--ease-out),
    visibility 0s linear .26s;
}
.accordion-item[data-expanded] .accordion-content {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  transition:
    grid-template-rows .26s var(--ease-emphatic),
    opacity .18s var(--ease-out),
    visibility 0s;
}
.accordion-content > div {
  min-height: 0;
  overflow: hidden;
}
.accordion-content p { margin: 0 0 1rem; font-size: .875rem; line-height: 1.625; }

@media (prefers-reduced-motion: reduce) {
  .accordion-icon,
  .accordion-content {
    transition: none;
  }
}

.ask-ai {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 3rem var(--page-px);
}
.ask-ai h2 { margin: 0; font-size: 1.25rem; font-weight: 500; }
.ask-ai div { display: flex; flex-wrap: wrap; gap: .5rem; }
.ask-ai a {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--color-border-strong);
  border-radius: .125rem;
  background: var(--white);
  box-shadow: 0 1px 2px rgb(0 0 0 / .05);
  transition: background-color .15s var(--ease-out), transform .15s var(--ease-out);
}
.ask-ai a:hover { background: var(--color-hover-muted); }
.ask-ai a:active { transform: scale(.97); }
.ask-ai img { width: 1.5rem; height: 1.5rem; object-fit: contain; }

.footer { position: relative; width: 100%; }
.footer > .frame {
  border-inline: 1px solid color-mix(in oklab, var(--gray-300) 70%, transparent);
  padding: 2.5rem var(--page-px) 0;
}
.footer.footer-light > .frame {
  border-inline-color: var(--footer-line);
}
.footer.footer-dark > .frame {
  border-inline-color: var(--footer-line);
}
.footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
.footer section { display: flex; flex-direction: column; gap: .65rem; }
.footer h3 { margin: 0 0 .1rem; font-size: .875rem; font-weight: 600; }
.footer a, .footer-bottom { color: var(--muted-foreground); font-size: .875rem; }
.footer a:hover { color: var(--primary); }
.footer.footer-dark a,
.footer.footer-dark .footer-bottom {
  color: var(--color-inverted-muted);
}
.footer.footer-dark h3 {
  color: var(--color-inverted);
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  text-align: center;
}
.footer-bottom div { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1.5rem; }
.footer-logo {
  --footer-logo-clip-bleed: clamp(1.5rem, 5vw, 4rem);
  position: relative;
  isolation: isolate;
  contain: layout;
  width: 100%;
  aspect-ratio: 30 / 7;
  margin-top: 3rem;
  overflow: visible;
}
.footer-logo::before,
.footer-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.footer-logo::after {
  z-index: 1;
  inset: 0 calc(-1 * var(--footer-logo-clip-bleed)) auto;
  height: 200%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  mask-image: linear-gradient(to bottom, transparent 0%, transparent 24%, rgba(0, 0, 0, .18) 31%, rgba(0, 0, 0, .72) 41%, var(--black) 50%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 24%, rgba(0, 0, 0, .18) 31%, rgba(0, 0, 0, .72) 41%, var(--black) 50%);
}
.footer-logo::before {
  z-index: 2;
  inset: 0 calc(-1 * var(--footer-logo-clip-bleed)) auto;
  height: 200%;
  background: linear-gradient(to bottom, rgb(255 255 255 / 0) 26%, color-mix(in oklab, var(--footer-bg) 18%, transparent) 33%, color-mix(in oklab, var(--footer-bg) 72%, transparent) 42%, var(--footer-bg) 50%);
}
.footer-logo img {
  display: block;
  position: absolute;
  inset: 0 auto auto -1.6667%;
  z-index: 0;
  width: 103.3334%;
  height: auto;
  opacity: .6;
}
.footer-logo-color {
  display: none;
  position: absolute;
  inset: 0 auto auto -1.6667%;
  z-index: 0;
  width: 103.3334%;
  aspect-ratio: 31 / 14;
  background: var(--primary);
  mask: url("/assets/pmc-logo-footer.svg") 0 0 / 100% 100% no-repeat;
  -webkit-mask: url("/assets/pmc-logo-footer.svg") 0 0 / 100% 100% no-repeat;
  opacity: .6;
}
.program-mentorship .footer-logo img,
.program-graduate .footer-logo img {
  opacity: 0;
}
.program-mentorship .footer-logo-color,
.program-graduate .footer-logo-color {
  display: block;
}

.cookie {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 55;
  max-width: 24rem;
  border: 1px solid var(--gray-300);
  border-radius: 1.125rem;
  background: var(--white);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
}
.cookie p { margin: 0; padding: 1.5rem; color: var(--muted-foreground); font-size: .875rem; }
.cookie div { display: flex; gap: .5rem; padding: 0 1.5rem 1.5rem; }
.cookie .btn { min-height: 2rem; font-size: .875rem; }
.cookie.is-hidden { display: none; }

.reveal { opacity: 1; transform: none; }

@media (min-width: 40rem) {
  :root { --nav-height: 4rem; }
  .nav { height: 4rem; padding-inline: 2rem; }
  .logo img { height: 1.75rem; }
  .hero { --hero-px: 2rem; --nav-height: 4rem; padding: 2rem var(--hero-px); }
  .hero p { color: var(--foreground); }
  .intro-dark .hero p { color: var(--color-inverted); }
  .product-preview { padding: 1rem 2rem 5rem; }
  .logo-strip { --logo-strip-px: 2rem; padding-block: 5rem; }
  .logo-marquee__group { gap: 3.5rem; padding-right: 3.5rem; }
  .section-heading { flex-direction: row; justify-content: space-between; gap: 2.5rem; padding: 3rem 2rem; }
  .section-heading.centered { flex-direction: column; }
  .feature-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 4rem 2rem; }
  .feature-cards article { --feature-card-pad: 2rem; aspect-ratio: 1; padding: var(--feature-card-pad); }
  .feature-cards article:nth-child(-n + 2) { aspect-ratio: 2 / 1; }
  .program-mentorship .feature-cards article { aspect-ratio: auto; }
  .event-feature-cards article:nth-child(-n + 2) { aspect-ratio: 1; }
  .home-feature-cards article:nth-child(-n + 2) { aspect-ratio: 1; }
  .video-section { padding: 4rem 2rem; }
  .program-folder-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 22rem;
    padding: 4rem 2rem;
  }
  .program-folder { transform: scale(1.55); }
  .program-folder { --folder-label-scale: .6452; }
  .program-folder-slot:hover .program-folder,
  .program-folder:focus-visible {
    transform: translateY(-.5rem) scale(1.55);
  }
  .alternating { gap: 5rem; padding: 4rem 2rem; }
  .alternating article { flex-direction: row; justify-content: flex-start; align-items: center; gap: 0; }
  .alternating article:nth-child(even) { flex-direction: row-reverse; }
  .alternating article > div { aspect-ratio: 2 / 1; width: 50%; flex: 0 0 50%; }
  .alternating article > section { display: flex; width: 50%; flex-direction: column; align-items: flex-end; padding-left: 2rem; padding-right: 0; }
  .alternating article:nth-child(even) > section { align-items: flex-start; padding-left: 0; padding-right: 2rem; }
  .alternating article > section h3,
  .alternating article > section p { width: min(100%, 32rem); max-width: none; }
  .alternating article:not(:nth-child(even)) > section h3,
  .alternating article:not(:nth-child(even)) > section p { text-align: right; }
  .alternating article:nth-child(even) > section h3,
  .alternating article:nth-child(even) > section p { text-align: left; }
  .alternating h3 { font-size: 1.875rem; }
  .program-photo-curriculum h3 { font-size: var(--text-xl); }
  .alternating p { font-size: 1.125rem; }
  .widget-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 4rem 2rem; }
  .widget-grid article { min-height: 24rem; padding: 2rem; }
  .pricing-wrap { padding-inline: 2rem; }
  .included { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; padding: 4rem 2rem; }
  .included div { flex-direction: row; align-items: center; gap: .75rem; font-size: 1rem; }
  .included div::before { width: .625rem; height: .625rem; }
  .integrations { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .integrations article { padding: 2rem; }
  .integrations article:not(:nth-child(3n)) { border-right: 1px solid color-mix(in oklab, var(--gray-300) 70%, transparent); }
  .cta {
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 8rem 2rem;
  }
  .cta h2 {
    min-width: 0;
  }
  .cta-action-stack {
    --cta-envelope-width: min(26rem, calc(100vw - 4rem));
  }
  .faq { flex-direction: row; justify-content: space-between; gap: 4rem; padding: 4rem 2rem; }
  .faq > div:first-child { width: 24rem; flex: 0 0 auto; }
  .accordion { width: 100%; max-width: 32rem; }
  .ask-ai { flex-direction: row; align-items: center; justify-content: space-between; padding: 4rem 2rem; }
  .ask-ai a { width: 2.5rem; height: 2.5rem; }
  .footer > .frame { padding: 4rem 2rem 0; }
  .footer nav { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2.5rem 1.5rem; }
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-top: 4rem;
  }
  .footer-bottom span { grid-column: 2; }
  .footer-bottom div { grid-column: 3; justify-self: end; }
  .footer-logo { margin-top: 4rem; }
}

.prose {
  padding: 7rem var(--page-px) 4rem;
}
.prose h1 {
  max-width: 42rem;
  margin: 0;
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 500;
  text-wrap: balance;
}
.prose p,
.prose li {
  max-width: 42rem;
  color: var(--muted-foreground);
  font-size: 1.075rem;
}
.prose a {
  color: var(--foreground);
  text-decoration: underline;
  text-underline-offset: .2em;
}
.prose a:hover {
  color: var(--primary);
}
.content-kicker {
  margin: 0 0 .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .75rem;
  font-weight: 700;
}
.content-excerpt {
  margin-top: 1rem;
}
.content-body {
  margin-top: 2rem;
}

@media (min-width: 48rem) {
  .nav-links, .nav-actions { display: flex; }
  .menu-toggle { display: none; }

  .hero h1, .cta h2 { font-size: 3rem; }
  .value-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mentorship-value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .value-grid article { padding: 4rem 2rem; border-bottom: 0; }
  .value-grid article:not(:last-child) { border-right: 1px solid color-mix(in oklab, var(--gray-300) 70%, transparent); }
  .logo-grid { padding: 0; }
  .logo-grid ul { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .logo-grid li { min-height: 7rem; }
  .logo-grid li:nth-child(2n) { border-right: 1px solid color-mix(in oklab, var(--gray-300) 70%, transparent); }
  .logo-grid li:nth-child(6n) { border-right: 0; }
  .logo-grid li:nth-last-child(-n + 6) { border-bottom: 0; }
  .graduate-logo-grid ul,
  .office-tour-logo-grid ul { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .graduate-logo-grid li:nth-child(2n),
  .office-tour-logo-grid li:nth-child(2n) { border-right: 1px solid color-mix(in oklab, var(--gray-300) 70%, transparent); }
  .graduate-logo-grid li:nth-child(3n),
  .office-tour-logo-grid li:nth-child(3n) { border-right: 0; }
  .graduate-logo-grid li:nth-child(6n),
  .office-tour-logo-grid li:nth-child(6n) { border-right: 0; }
  .graduate-logo-grid li:nth-last-child(-n + 6),
  .office-tour-logo-grid li:nth-last-child(-n + 6) { border-bottom: 1px solid color-mix(in oklab, var(--gray-300) 70%, transparent); }
  .graduate-logo-grid li:nth-last-child(-n + 3),
  .office-tour-logo-grid li:nth-last-child(-n + 3) { border-bottom: 0; }
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .team-card {
    padding: 4rem 2rem;
    border-right: 1px solid color-mix(in oklab, var(--gray-300) 70%, transparent);
  }
  .intro-dark .team-card {
    border-right-color: var(--intro-line);
  }
  .team-card:nth-child(2n) { border-right: 0; }
  .intro-light > .border-band:last-child:has(.team-grid) .team-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
  .flow-visual { display: block; padding: 5rem 2rem; }
  .stripe-gap { height: 10rem; }
}

@media (min-width: 64rem) {
  .team-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .team-card:nth-child(2n) { border-right: 1px solid color-mix(in oklab, var(--gray-300) 70%, transparent); }
  .team-card:nth-child(3n) { border-right: 0; }
  .intro-dark .team-card:nth-child(2n) {
    border-right-color: var(--intro-line);
  }
  .intro-dark .team-card:nth-child(3n) {
    border-right: 0;
  }
  .intro-light > .border-band:last-child:has(.team-grid) .team-card:nth-last-child(-n + 3) {
    border-bottom: 0;
  }
  .pricing-wrap { padding-inline: 0; }
  .pricing-wrap .price-tabs { margin-inline: 2rem; }
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 2.5rem;
    border-inline: 0;
  }
  .pricing-grid article {
    min-height: 28rem;
    padding: 3.5rem 1.5rem 2rem;
    border: 1px solid color-mix(in oklab, var(--gray-300) 70%, transparent);
  }
  .pricing-grid article:first-child {
    border-top: 1px solid color-mix(in oklab, var(--gray-300) 70%, transparent);
  }
  .intro-dark .pricing-grid article:has([data-price="p-team"]) {
    border-color: var(--program-pteam);
  }
  .intro-dark .pricing-grid article:has([data-price="mentorship"]) {
    border-color: var(--program-mentorship);
  }
  .intro-dark .pricing-grid article:has([data-price="graduate"]) {
    border-color: var(--program-graduate);
  }
  .intro-dark .integrations article:not(:nth-child(3n)) {
    border-right-color: var(--intro-line);
  }
}

@media (max-width: 760px) {
  .program-folder-section {
    align-items: flex-start;
  }
  .dashboard-card { grid-template-columns: 1fr; min-height: 21rem; }
  .dash-sidebar { display: none; }
  .dash-grid { grid-template-columns: 1fr; }
  .request-card:nth-child(n+2) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *:not(#reduced-motion-cascade),
  *:not(#reduced-motion-cascade)::before,
  *:not(#reduced-motion-cascade)::after {
    animation-duration: .001ms;
    animation-iteration-count: 1;
    transition-duration: .001ms;
  }
  .btn:active, .icon-btn:active { transform: none; }
}

/* --- Scroll Animation Utilities --- */
.gsap-reveal-hidden {
  visibility: hidden; /* Prevents FOUC before GSAP initializes */
}
.split-word {
  display: inline-block;
  white-space: pre-wrap; /* Preserves spaces between words */
}
.split-char {
  display: inline-block;
}

/* --- Lenis Smooth Scroll --- */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}
