:root {
  --bg: #181818;
  --panel: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.1);
  --text: #ffffff;
  --muted: #afafaf;
  --soft: #e3ecf4;
  --accent: #f27300;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

@font-face {
  font-family: "DM Sans Local";
  src:
    url("../fonts/dm-sans-latin.woff2") format("woff2"),
    url("../fonts/dm-sans-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #1e1e1e;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.04), transparent 34%),
    linear-gradient(180deg, #171717 0%, #111111 100%);
  color: var(--text);
  font-family: "DM Sans Local", "Neue Montreal", "Inter", sans-serif;
}

body.is-loading {
  overflow: hidden;
}

body.has-cal-modal {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 3px 3px, 3px 3px;
  mix-blend-mode: soft-light;
}

.site-shell {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 1.5rem 1.5rem;
}

.signature-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #111111;
  transition:
    opacity 420ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.signature-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.signature-loader__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: min(16rem, 44vw);
  transition:
    opacity 420ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.signature-loader.is-hidden .signature-loader__inner {
  opacity: 0;
  transform: translateY(3rem);
}

.signature-loader__image {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
  opacity: 0;
  transform: translateY(0.25rem);
  animation: loader-signature-in 320ms ease-out 80ms forwards;
}

.signature-loader__bar {
  position: relative;
  width: min(7rem, 22vw);
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.signature-loader__bar-fill {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  border-radius: inherit;
  background: #ffffff;
  animation: loader-bar-fill 1.2s cubic-bezier(0.22, 1, 0.36, 1) 220ms forwards;
}

.topbar {
  --nav-offset: 15rem;
  position: fixed;
  left: 50%;
  top: 1.5rem;
  transform: translate(-50%, var(--nav-offset));
  z-index: 20;
  width: 12.75rem;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 0.75rem 0.75rem;
  border-radius: 0.5rem;
  background: rgba(24, 24, 24, 0.72);
  backdrop-filter: blur(75px);
  border: 0;
  box-shadow: none;
  font-size: 0.75rem;
  will-change: transform;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.topbar__meta,
.topbar__link {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.brand,
.topbar__meta {
  display: flex;
  align-items: center;
  font-family: "DM Sans Local", "Neue Montreal", sans-serif;
  line-height: 1;
}

.brand {
  justify-content: center;
  width: 100%;
  min-width: 0;
  padding: 0 0 0.55rem;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
  border-right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand__signature-image {
  display: block;
  width: 3.08rem;
  height: auto;
  flex-shrink: 0;
}

#date-label,
.topbar__link {
  font-family: "DM Sans Local", "Neue Montreal", sans-serif;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.topbar__meta {
  width: 100%;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 0;
  color: rgba(255, 255, 255, 0.95);
  border-right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.spark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.4375rem;
  color: rgba(255, 255, 255, 0.98);
  font-family: "DM Sans Local", "Neue Montreal", sans-serif;
  font-size: 0.45rem;
  font-style: normal;
  line-height: 1;
}

#time-label {
  font-weight: 500;
}

.topbar__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.96);
}

.marquee {
  margin-top: 0;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  gap: 0.5rem;
  width: max-content;
  animation: drift 44s linear infinite;
}

.marquee__card {
  --card-shift: 0px;
  position: relative;
  width: clamp(18rem, 42vw, 42.7rem);
  height: min(40.8vw, 38.125rem);
  min-height: 14rem;
  margin: 0;
  overflow: hidden;
  border-radius: 0.3rem;
  background: #f5f3ea;
  box-shadow: var(--shadow);
  transform: translate3d(0, var(--card-shift), 0);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.marquee__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 10%, rgba(0, 0, 0, 0.24) 82%),
    linear-gradient(180deg, rgba(255, 216, 0, 0.18), rgba(0, 180, 255, 0.06));
  mix-blend-mode: multiply;
  opacity: 0.16;
}

.shader-mount {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.shader-mount > * {
  width: 100%;
  height: 100%;
}

.content-column {
  display: flex;
  flex-direction: column;
  gap: 5.5rem;
  width: 33.4375rem;
  margin: 0 auto;
  padding-block: 5.5rem;
}

.intro,
.copy-block,
.experience,
.talks,
.programs,
.philosophy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.reveal-on-scroll {
  opacity: 0.001;
  transform: translate3d(0, 1.1rem, 0);
  filter: blur(10px);
  transition:
    opacity 820ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    transform 820ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    filter 820ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

h1,
h2 {
  margin: 0;
  font-family: "DM Sans Local", "Neue Montreal", "Inter", sans-serif;
}

h1 {
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-wrap: balance;
  font-size: 2.25rem;
}

h2 {
  color: var(--soft);
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.1px;
  line-height: 1.86;
  text-transform: none;
}

h3,
p,
.eyebrow,
.program-row span,
.idea-card small,
.idea-card strong {
  margin: 0;
}

.lede,
.copy-block p,
.section-heading p {
  color: var(--muted);
  font-family: "DM Sans Local", "Neue Montreal", "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.53;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@keyframes loader-signature-in {
  from {
    opacity: 0;
    transform: translateY(0.25rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loader-bar-fill {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.social-row {
  display: flex;
  align-items: center;
  width: 14rem;
  filter: saturate(0.8);
}

.social-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  overflow: clip;
  background: #ffffff;
  text-decoration: none;
  position: relative;
}

.social-chip__inner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: clip;
  transform: translate(-50%, -50%);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.social-chip--linkedin .social-chip__inner {
  background-image: url("https://app.paper.design/file-assets/01KMNY5G4G0HBR44WZRTBAFKC0/01KNN2M9159PKTRN5R7AATQK1X.png");
}

.social-chip--youtube .social-chip__inner {
  background-color: #df2821;
  background-image: url("https://app.paper.design/file-assets/01KMNY5G4G0HBR44WZRTBAFKC0/01KNN3KYM7PH6FWHFHJ738JRXV.png");
}

.social-chip--x .social-chip__inner {
  background-image: url("https://app.paper.design/file-assets/01KMNY5G4G0HBR44WZRTBAFKC0/01KNN3RN123YJX0GX504EHPNVJ.png");
}

.social-chip--tiktok .social-chip__inner {
  background-image: url("https://app.paper.design/file-assets/01KMNY5G4G0HBR44WZRTBAFKC0/01KNN4FPZMGB3AKWYHDGC87EMS.avif");
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  width: fit-content;
  min-height: 2.25rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  background: #262626;
  color: var(--text);
  font-family: "DM Sans Local", "Neue Montreal", "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transform: translateY(0);
  transition:
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 220ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 220ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.pill-button__icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  background-image: url("https://2607815040-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FpmUOqZjfGqNkiPmqgnMv%2Fuploads%2F9Qaq1hlaTcqKfrc9k4OG%2Fimage.png?alt=media&token=1ffe8530-19ff-4aea-b020-a99cdc224ce1");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.pill-button--light {
  background: rgba(238, 238, 238, 0.94);
  color: #232323;
}

.pill-button--light .pill-button__icon {
  background-image: url("https://2607815040-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FpmUOqZjfGqNkiPmqgnMv%2Fuploads%2FWIZxsSWIHr9tS5JyNxfv%2Fimage.png?alt=media&token=8c767397-829e-46d4-a670-929749474e35");
}

.pill-button:hover {
  transform: translateY(-2px);
  background: #2f2f2f;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 26px rgba(0, 0, 0, 0.22);
}

.pill-button:hover .pill-button__icon {
  transform: translateX(1px) scale(1.04);
}

.pill-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.3);
  outline-offset: 3px;
}

.pill-button:active {
  transform: translateY(0);
}

.pill-button--light:hover {
  background: #ffffff;
  border-color: rgba(35, 35, 35, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.18);
}

.experience-list,
.idea-list {
  display: flex;
  flex-direction: column;
}

.experience-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.25rem 0 1.15rem;
}

.experience-item__main {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.experience-item__main img {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.5rem;
  object-fit: cover;
  background: #fff;
}

.experience-item h3,
.program-row h3 {
  font-family: "DM Sans Local", "Neue Montreal", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
}

.experience-item p,
.program-row p {
  color: #919191;
  font-family: "DM Sans Local", "Neue Montreal", "Inter", sans-serif;
  font-size: 0.9375rem;
  letter-spacing: 0;
  line-height: 1.4;
}

.experience-item p {
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.53;
}

.experience-item__link {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.76);
  font-family: "DM Sans Local", "Neue Montreal", "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
  transition: color 180ms ease, opacity 180ms ease, text-decoration-color 180ms ease;
}

.experience-item__link::after {
  content: "↗";
  font-size: 0.72rem;
  line-height: 1;
  opacity: 0.7;
}

.experience-item__link:hover,
.experience-item__link:focus-visible {
  color: rgba(255, 255, 255, 0.96);
  opacity: 1;
}

.program-row p {
  font-weight: 400;
  line-height: 1.53;
}

.expand-button {
  width: 1.7rem;
  height: 1.7rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  color: #f0f0f0;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.expand-button[aria-expanded="true"] {
  transform: rotate(45deg);
  background: rgba(242, 115, 0, 0.8);
}

.experience-item__details {
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  font-family: "DM Sans Local", "Neue Montreal", "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.53;
  opacity: 0;
  transition:
    max-height 220ms ease,
    opacity 220ms ease;
}

.experience-item.is-open .experience-item__details {
  max-height: 8rem;
  opacity: 1;
}

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

.talks-grid img {
  width: 100%;
  min-height: 15.75rem;
  border-radius: 0.25rem;
  object-fit: cover;
}

.talks-grid__wide {
  grid-column: 1 / -1;
}

.program-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.program-row {
  display: grid;
  grid-template-columns: 1fr 3.4rem;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0;
  color: var(--soft);
  cursor: pointer;
  transition: opacity 180ms ease;
}

.program-row:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.22);
  outline-offset: 0.3rem;
  border-radius: 0.35rem;
}

.program-row__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: #f0f0f0;
  border: 1px solid rgba(24, 24, 24, 0.08);
  border-radius: 0.5rem;
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
  transition:
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.program-row__main {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.program-row__copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.program-row img {
  width: 1.84rem;
  height: 1.84rem;
  object-fit: contain;
}

.program-row span {
  color: var(--soft);
  font-family: "DM Sans Local", "Neue Montreal", sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: right;
}

.program-row.is-soft {
  opacity: 0.8;
}

.program-row.is-faded {
  opacity: 0.6;
}

.program-row.is-fainter {
  opacity: 0.38;
}

.program-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
  scrollbar-width: none;
}

.program-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.program-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.44);
  backdrop-filter: blur(2px) saturate(0.84);
}

.program-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: min(35rem, calc(100vw - 2rem));
  max-height: calc(100vh - 4rem);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 48px;
  border-radius: 1.75rem;
  background: linear-gradient(
    180deg,
    #2b2b2b 0%,
    #2b2b2b 84%,
    #292929 100%
  );
  color: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.03);
  transform: translateY(1rem) scale(0.985);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
  scrollbar-width: none;
}

.program-modal.is-open .program-modal__dialog {
  transform: translateY(0) scale(1);
}

.program-modal__close-row {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  padding: 48px 48px 0;
  z-index: 3;
}

.program-modal__close {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  min-width: 2.35rem;
  min-height: 2.35rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.6);
  font-family: inherit;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.program-modal__chips {
  position: absolute;
  top: 48px;
  left: 48px;
  right: auto;
  display: flex;
  gap: 0.55rem;
  width: max-content;
  z-index: 2;
}

.program-modal__chip {
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  padding: 0.3rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  font-family: "DM Sans Local", "Neue Montreal", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.2;
}

.program-modal__heading {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  padding-top: 2.5rem;
}

.program-modal__heading h3,
.program-modal__heading p,
.program-modal__body p {
  margin: 0;
}

.program-modal__heading h3 {
  font-family: "DM Sans Local", "Neue Montreal", sans-serif;
  font-size: clamp(2rem, 5vw, 3.05rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.program-modal__heading p {
  width: 100%;
  color: rgba(255, 255, 255, 0.3);
  font-family: "DM Sans Local", "Neue Montreal", sans-serif;
  font-size: clamp(1.5rem, 3.75vw, 2.1rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}

.program-modal__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.program-modal__body p,
.program-modal__richtext {
  color: rgba(255, 255, 255, 0.74);
  font-family: "DM Sans Local", "Neue Montreal", "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  width: 100%;
}

.program-modal__media {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 1.15rem;
  background: linear-gradient(180deg, rgba(186, 143, 90, 0.84), rgba(74, 56, 37, 0.94));
}

.program-modal__media img,
.program-modal__media video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.program-modal__link {
  display: inline-flex;
  align-items: center;
  width: 100%;
  color: rgba(255, 255, 255, 0.92);
  font-family: "DM Sans Local", "Neue Montreal", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.program-modal::-webkit-scrollbar,
.program-modal__dialog::-webkit-scrollbar {
  display: none;
}

.idea-list {
  gap: 1rem;
}

.idea-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(222, 223, 223, 0.1);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.01);
}

.idea-card div {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.idea-card > span {
  font-family: "DM Sans Local", "Neue Montreal", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4;
}

.idea-card small {
  color: #c3c3c5;
  font-family: "DM Sans Local", "Neue Montreal", sans-serif;
  font-size: 0.875rem;
  line-height: 1.43;
}

.idea-card strong {
  padding: 0.18rem 0.8rem;
  border-radius: 999px;
  background: var(--accent);
  font-family: "DM Sans Local", "Neue Montreal", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
}

.site-footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 27rem;
  padding: 7rem 0 2rem;
}

.site-footer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.site-footer__button {
  min-height: 3.5rem;
  padding: 0.875rem 1.6rem;
  border-color: rgba(35, 35, 35, 0.08);
  box-shadow: none;
}

.site-footer__meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.32);
  font-family: "DM Sans Local", "Neue Montreal", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
}

.site-footer__meta-left {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.site-footer__email,
.site-footer__handle {
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
}

.site-footer__copyright {
  color: rgba(255, 255, 255, 0.24);
}

@keyframes drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.25rem));
  }
}

@media (max-width: 960px) {
  .site-shell {
    gap: 4.5rem;
    padding: 0 1rem 1rem;
  }

  .content-column {
    width: min(100%, 33.4375rem);
    gap: 4.5rem;
  }

  .topbar {
    --nav-offset: 10rem;
    width: 21.75rem;
    max-width: 44rem;
    justify-content: space-between;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .program-row {
    grid-template-columns: 2.2rem 1fr auto;
  }

  .program-row p {
    grid-column: 2 / 3;
    margin-top: -0.4rem;
  }

  .program-row span {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    align-self: start;
  }

  .program-modal__dialog {
    width: min(32rem, calc(100vw - 1.2rem));
    max-height: calc(100vh - 2rem);
    padding: 40px;
    border-radius: 1.35rem;
  }

  .program-modal__close-row {
    padding: 40px 40px 0;
  }

  .program-modal__chips {
    top: 40px;
    left: 40px;
  }

  .program-modal__heading {
    padding-top: 2.25rem;
  }

  .program-modal__body {
    max-width: none;
  }

  .site-footer {
    min-height: 22rem;
    padding-top: 5rem;
  }
}

@media (max-width: 640px) {
  .marquee__card {
    width: 82vw;
    height: 56vw;
  }

  .content-column {
    width: 100%;
  }

  .topbar {
    --nav-offset: 7rem;
    width: min(21.75rem, calc(100% - 1rem));
    gap: 0.35rem;
    padding: 1rem 0.75rem;
  }

  .brand__signature-image {
    width: 2.9rem;
  }

  #date-label,
  #time-label,
  .topbar__link {
    font-size: 0.68rem;
  }

  h1 {
    font-size: 2.2rem;
    line-height: 1.08;
  }

  .social-row a {
    width: 3.1rem;
    height: 3.1rem;
  }

  .idea-card,
  .experience-item {
    align-items: start;
  }

  .idea-card {
    grid-template-columns: 1fr;
  }

  .idea-card {
    flex-direction: column;
    align-items: start;
  }

  .program-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    align-items: start;
    padding: 0.25rem 0 1.15rem;
  }

  .program-row__main {
    align-items: center;
    gap: 1rem;
  }

  .program-row span {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
    text-align: right;
    align-self: start;
    white-space: nowrap;
  }

  .program-modal {
    padding: 0.75rem;
  }

  .program-modal__dialog {
    gap: 1rem;
    padding: 32px;
    max-height: calc(100vh - 1.5rem);
  }

  .program-modal__close-row {
    padding: 32px 32px 0;
  }

  .program-modal__chips {
    top: 32px;
    left: 32px;
  }

  .program-modal__heading {
    padding-top: 2.25rem;
  }

  .program-modal__chip {
    font-size: 0.75rem;
  }

  .program-modal__heading h3 {
    font-size: 1.85rem;
  }

  .program-modal__heading p {
    font-size: 1.5rem;
  }

  .site-footer {
    min-height: 18rem;
    padding-top: 4rem;
  }

  .site-footer__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    font-size: 0.875rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }

  .marquee__card {
    transform: none;
    transition: none;
  }

  .reveal-on-scroll,
  .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}
