:root {
  --about-bg: #100f10;
  --about-surface: rgba(22, 21, 23, 0.9);
  --about-surface-strong: #181618;
  --about-border: #f0efeb;
  --about-border-soft: rgba(240, 239, 235, 0.32);
  --about-block-border: rgba(240, 239, 235, 0.28);
  --about-text: #f0efeb;
  --about-muted: #7b7673;
  --about-accent: #6b3aff;
  --about-accent-end: #9c3aff;
  --about-accent-fill: linear-gradient(127.45deg, #6b3aff 28.52%, #9c3aff 87.8%);
  --about-accent-soft: rgba(107, 58, 255, 0.16);
  --about-cyan: #b79cff;
  --about-header-inline: clamp(20px, 4vw, 130px);
  --about-header-gap: clamp(10px, 1.2vw, 18px);
  --about-header-side: minmax(0, 420px);
  --about-header-center: minmax(140px, 216px);
  --about-pill-radius: 44px;
  --about-page-margin: 130px;
  --about-page-max-content-width: 1640px;
  --about-page-content-width: min(
    calc(100vw - var(--about-page-margin) * 2),
    var(--about-page-max-content-width)
  );
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body.page-about {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 6% 2%, rgba(107, 58, 255, 0.22), transparent 32%),
    radial-gradient(circle at 92% 10%, rgba(156, 58, 255, 0.12), transparent 26%),
    #100f10;
  color: var(--about-text);
  font-family: "Actor", sans-serif;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-about a {
  color: inherit;
  text-decoration: none;
}

.page-about .concepts-shell__header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 40;
  display: grid;
  grid-template-columns: var(--about-header-side) var(--about-header-center) var(--about-header-side);
  align-items: center;
  justify-content: space-between;
  width: min(100vw, 2440px);
  padding: 14px var(--about-header-inline);
  pointer-events: none;
  transform: translateX(-50%);
}

.page-about .concepts-shell__header::before {
  content: "";
  position: absolute;
  inset: 0 50% 0 auto;
  width: 100vw;
  background: rgba(16, 15, 16, 0.82);
  pointer-events: none;
  transform: translateX(50%);
  z-index: -1;
}

.page-about .concepts-shell__nav {
  display: flex;
  align-items: center;
  gap: var(--about-header-gap);
  width: 100%;
  min-width: 0;
  pointer-events: auto;
}

.page-about .concepts-shell__mobile-toggle,
.page-about .concepts-shell__mobile-panel {
  display: none;
}

.page-about .concepts-shell__mobile-toggle {
  pointer-events: auto;
}

.page-about .concepts-shell__nav-button,
.page-about .concepts-shell__brand,
.page-about .concepts-shell__cta {
  display: inline-flex;
  align-items: center;
  color: inherit;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
  white-space: nowrap;
  transition:
    color 280ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 280ms cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 280ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms ease,
    box-shadow 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.page-about .concepts-shell__nav-button {
  justify-content: flex-start;
  gap: 16px;
  height: 40px;
  padding: 0;
  color: var(--about-muted);
}

.page-about .concepts-shell__nav-button:hover,
.page-about .concepts-shell__nav-button:focus-visible,
.page-about .concepts-shell__brand:hover,
.page-about .concepts-shell__brand:focus-visible {
  transform: none;
}

.page-about .concepts-shell__nav-button:hover,
.page-about .concepts-shell__nav-button:focus-visible {
  color: var(--about-text);
}

.page-about .concepts-shell__nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.page-about .concepts-shell__nav-icon--grid {
  background: none;
}

.page-about .concepts-shell__nav-icon svg {
  display: block;
}

.page-about .concepts-shell__brand {
  justify-self: center;
  justify-content: center;
  width: 100%;
  max-width: 216px;
  height: 40px;
  color: var(--about-text);
  font-size: 20px;
  line-height: 20px;
  pointer-events: auto;
}

.page-about .concepts-shell__brand-text {
  display: inline-block;
  min-width: max-content;
  text-align: center;
}

.page-about .concepts-shell__actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  min-width: 0;
  pointer-events: auto;
}

.page-about .concepts-shell__cta {
  justify-content: center;
  gap: 0;
  width: 164px;
  min-width: 164px;
  height: 40px;
  padding: 0 22px;
  border-radius: 56px;
  background: var(--about-accent);
  color: var(--about-text);
  box-shadow: -1px -1px 10px rgba(107, 58, 255, 0.21);
}

.page-about .concepts-shell__cta::after {
  content: "\2192";
  display: inline-block;
  width: 22px;
  margin-left: -22px;
  opacity: 0;
  transform: translateX(-6px);
  white-space: nowrap;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  transition:
    opacity 280ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    margin-left 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.page-about .concepts-shell__cta:hover,
.page-about .concepts-shell__cta:focus-visible {
  transform: none;
}

.page-about .concepts-shell__cta:hover::after,
.page-about .concepts-shell__cta:focus-visible::after {
  margin-left: 8px;
  opacity: 1;
  transform: translateX(0);
}

.page-about .concepts-shell__cta:active {
  transform: scale(0.985);
}

.page-about .concepts-shell__nav-button:focus-visible,
.page-about .concepts-shell__brand:focus-visible,
.page-about .concepts-shell__cta:focus-visible,
.page-about .about-download:focus-visible,
.page-about .about-secondary:focus-visible {
  outline: 2px solid rgba(240, 239, 235, 0.88);
  outline-offset: 3px;
}

.about-page {
  counter-reset: about-section;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: var(--about-page-content-width);
  margin: 0 auto;
  padding: 108px 0 120px;
}

.about-hero,
.about-strip,
.about-grid,
.about-experience {
  position: relative;
}

.about-reveal {
  --reveal-delay: 0ms;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(30px) scale(0.985);
  transform-origin: center;
}

.about-reveal.is-revealed {
  opacity: 1;
  filter: blur(0);
  transform: translate(var(--magnet-x, 0px), var(--magnet-y, 0px)) translateY(0) scale(1);
  animation: about-block-reveal 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay) backwards;
  /* only once revealed - before that the transform belongs to the reveal */
  transition:
    transform 300ms cubic-bezier(0.5, 1, 0.89, 1),
    box-shadow 300ms ease;
}

@keyframes about-block-reveal {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(30px) scale(0.985);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.82fr);
  gap: 40px;
  padding: 48px;
  background: var(--about-accent-fill);
  overflow: hidden;
}

.about-hero .about-kicker,
.about-hero .about-label {
  color: var(--about-text);
}

/* Section labels read as a numbered index: accent chip, label, trailing rule.
   Specificity has to clear `.about-block p`, which also matches them. */
.page-about .about-section-label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  row-gap: 12px;
  margin-bottom: 22px;
  color: var(--about-text);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.18em;
  counter-increment: about-section;
}

.page-about .about-section-label::before {
  content: counter(about-section, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: var(--about-accent);
  color: var(--about-text);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.page-about .about-section-label::after {
  content: "";
  height: 1px;
  min-width: 40px;
  flex: 1 1 40px;
  background: linear-gradient(
    90deg,
    var(--about-accent) 0%,
    rgba(107, 58, 255, 0) 100%
  );
}

.about-kicker,
.about-section-label,
.about-label {
  margin: 0;
  color: var(--about-muted);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-hero h1,
.about-heading h2,
.about-block--statement h2 {
  margin: 0;
  font-family: "Roboto Flex", "Inter", sans-serif;
  font-weight: 400;
  font-variation-settings: "opsz" 96, "wght" 400, "wdth" 100, "slnt" 0;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.about-hero h1 {
  margin-top: 18px;
  max-width: 7ch;
  font-size: clamp(52px, 8vw, 120px);
}

.about-hero__lede {
  max-width: 580px;
  margin: 28px 0 0;
  color: var(--about-text);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.about-hero__ribbons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.about-hero__ribbons span,
.about-tags span,
.about-tools span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--about-border-soft);
  background: transparent;
  border-radius: var(--about-pill-radius);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1;
  transition:
    border-color 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background-color 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-hero__ribbons span {
  border-color: var(--about-border);
}

.about-tags span:hover,
.about-tools span:hover {
  border-color: var(--about-border);
  background: rgba(240, 239, 235, 0.08);
}

.about-hero__panel {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 28px;
  background: rgba(16, 15, 16, 0.28);
}

.about-hero__panel-block {
  display: grid;
  gap: 10px;
}

.about-hero__panel-block > a,
.about-inline-links a,
.about-inline-links span,
.about-small-copy {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

.about-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.about-inline-links a,
.about-inline-links span {
  color: var(--about-text);
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--about-border);
  border-radius: var(--about-pill-radius);
  background: transparent;
  transition: background-color 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-inline-links a:hover,
.about-inline-links a:focus-visible {
  background: rgba(240, 239, 235, 0.16);
}

.about-hero__panel-block p,
.about-block p,
.about-role__content p {
  margin: 0;
  color: rgba(240, 239, 235, 0.82);
  font-size: 16px;
  line-height: 1.68;
}

.about-hero__panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.about-download,
.about-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--about-pill-radius);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1;
  transition:
    transform 220ms ease,
    background-color 260ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms cubic-bezier(0.22, 1, 0.36, 1),
    color 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.page-about a.about-download {
  background: var(--about-text);
  color: #100f10;
  gap: 10px;
}

.page-about a.about-download span,
.page-about a.about-download svg {
  display: block;
  color: #100f10;
}

.page-about a.about-download svg {
  flex: 0 0 auto;
}

.page-about a.about-download svg path:nth-of-type(-n + 2) {
  transform-box: fill-box;
  transform-origin: center;
}

.page-about a.about-download:hover svg path:nth-of-type(-n + 2),
.page-about a.about-download:focus-visible svg path:nth-of-type(-n + 2) {
  animation: about-download-arrow 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes about-download-arrow {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  28% {
    transform: translateY(1.5px) scale(0.97);
    opacity: 1;
  }

  46% {
    transform: translateY(-3px) scale(1.03);
    opacity: 0.92;
  }

  68% {
    transform: translateY(1px) scale(0.99);
    opacity: 1;
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.about-secondary {
  border: 1px solid var(--about-border);
  color: var(--about-text);
  gap: 0;
  transition: background-color 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-secondary:hover,
.about-secondary:focus-visible {
  background: rgba(240, 239, 235, 0.16);
}

.about-secondary::after {
  content: "\2192";
  display: inline-block;
  width: 18px;
  margin-left: -18px;
  opacity: 0;
  transform: translateX(-6px);
  font-size: 16px;
  line-height: 1;
  transition:
    opacity 260ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    margin-left 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-download:hover,
.about-secondary:hover,
.about-download:focus-visible,
.about-secondary:focus-visible {
  transform: none;
}

.about-download:active,
.about-secondary:active {
  transform: translateY(1px);
}

.about-secondary:hover::after,
.about-secondary:focus-visible::after {
  margin-left: 8px;
  opacity: 1;
  transform: translateX(0);
}

.about-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.about-strip__item {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 200px;
  padding: 32px;
  border: 1px solid var(--about-block-border);
  background: #100f10;
}

.about-strip__value {
  color: var(--about-cyan);
  font-family: "Roboto Flex", "Inter", sans-serif;
  font-size: clamp(44px, 5vw, 84px);
  font-variation-settings: "opsz" 96, "wght" 400, "wdth" 100, "slnt" 0;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.about-strip__label {
  max-width: 28ch;
  color: rgba(240, 239, 235, 0.82);
  font-size: 16px;
  line-height: 1.55;
}

.about-grid {
  display: grid;
  gap: 24px;
}

.about-grid--manifesto {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-grid--skills {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-grid--bottom {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}

.about-block {
  min-width: 0;
  padding: 32px;
  border: 1px solid var(--about-block-border);
  background: #100f10;
}

.about-block--statement {
  background:
    linear-gradient(160deg, var(--about-accent-soft), transparent 52%),
    #100f10;
}

.about-block--statement h2 {
  margin-top: 18px;
  font-size: clamp(32px, 3vw, 40px);
}

.about-block--statement p:last-child {
  margin-top: 22px;
}

.about-tags,
.about-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.about-list,
.about-bullets {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.about-list li,
.about-bullets li {
  position: relative;
  padding-left: 18px;
  color: rgba(240, 239, 235, 0.82);
  font-size: 16px;
  line-height: 1.7;
}

.about-list li + li,
.about-bullets li + li {
  margin-top: 10px;
}

.about-list li::before,
.about-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--about-cyan);
}

.about-experience {
  padding: 32px;
  border: 1px solid var(--about-block-border);
  background: #100f10;
}

.about-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 40px;
}

/* grid gap already spaces this one, margins do not collapse here */
.page-about .about-heading .about-section-label {
  margin-bottom: 0;
}

.about-heading h2 {
  font-size: clamp(32px, 3vw, 40px);
}

.about-timeline {
  display: grid;
  gap: 16px;
}

.about-role,
.about-role__content {
  min-width: 0;
}

.about-role {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(240, 239, 235, 0.16);
}

.about-role:first-child {
  padding-top: 0;
  border-top: 0;
}

.about-role__meta {
  display: grid;
  gap: 8px;
}

.about-role__period {
  color: var(--about-cyan);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-role__company {
  color: rgba(240, 239, 235, 0.92);
  font-size: 16px;
  line-height: 1.45;
}

.about-role__content h3 {
  margin: 0 0 12px;
  font-family: "Roboto Flex", "Inter", sans-serif;
  font-size: clamp(32px, 3vw, 40px);
  font-weight: 400;
  font-variation-settings: "opsz" 96, "wght" 400, "wdth" 100, "slnt" 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-block--wide {
  border-color: transparent;
  background: var(--about-accent-fill);
}

.page-about .about-block--wide .about-section-label {
  color: var(--about-text);
}

.page-about .about-block--wide .about-section-label::before {
  background: var(--about-text);
  color: #100f10;
}

/* the three narrow blocks share a row - keep their label height identical
   by always dropping the rule under the label. Below 561px the grid is a
   single column, so the rule behaves like every other label again. */
@media (min-width: 561px) {
  .page-about .about-grid--bottom .about-block:not(.about-block--wide) .about-section-label::after {
    flex-basis: 100%;
  }
}

.page-about .about-block--wide .about-section-label::after {
  background: linear-gradient(
    90deg,
    var(--about-text) 0%,
    rgba(240, 239, 235, 0) 100%
  );
}

.about-block--wide .about-tools span {
  border-color: var(--about-border);
}

.about-block--wide .about-tools span:hover {
  background: rgba(240, 239, 235, 0.16);
}

.about-small-copy {
  margin-top: 14px;
  color: rgba(240, 239, 235, 0.82);
}

@media (min-width: 1800px) {
  :root {
    --about-header-inline: 220px;
  }
}

@media (min-width: 2200px) {
  :root {
    --about-header-inline: 400px;
  }
}

@media (max-width: 1180px) {
  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-hero__panel {
    border-left: 0;
    border-top: 0;
  }

  .about-grid--bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 2200px) {
  body.page-about {
    --about-page-margin: 400px;
  }
}

@media (min-width: 1800px) and (max-width: 2199px) {
  body.page-about {
    --about-page-margin: 220px;
  }
}

@media (min-width: 1180px) and (max-width: 1359px) {
  body.page-about {
    --about-page-margin: 130px;
  }
}

@media (max-width: 1100px) {
  .about-page {
    width: 100%;
    padding: 104px 24px 40px;
  }

  .about-hero {
    padding: 32px;
  }

  .about-hero__panel {
    padding: 20px;
  }

  .about-block,
  .about-experience,
  .about-strip__item {
    padding: 24px;
  }
}

@media (max-width: 900px) {
  .page-about .concepts-shell__header {
    --about-header-inline: 18px;
    --about-header-gap: 10px;
    --about-header-side: minmax(0, 1fr);
    --about-header-center: auto;
    grid-template-columns: minmax(0, 1fr) auto auto;
    column-gap: 16px;
    padding: 12px 18px;
  }

  .page-about .concepts-shell__brand {
    width: auto;
    max-width: none;
    font-size: 16px;
  }

  .page-about .concepts-shell__nav {
    overflow: visible;
  }

  .about-page {
    padding: 96px 24px 40px;
  }

  .page-about .concepts-shell__cta {
    width: 145px;
    min-width: 145px;
    padding: 0 22px;
  }

  .about-strip,
  .about-grid--manifesto,
  .about-grid--skills {
    grid-template-columns: 1fr;
  }

  .about-role {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
}

@media (max-width: 620px) {
  .about-page {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (max-width: 560px) {
  .page-about .concepts-shell__header {
    grid-template-columns: 40px minmax(0, 1fr) auto;
    align-items: center;
    justify-items: stretch;
    row-gap: 10px;
    padding: 12px 16px;
  }

  .page-about .concepts-shell__mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    padding: 0;
    background: transparent;
    color: #7b7673;
  }

  .page-about .concepts-shell__mobile-toggle-lines {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    width: 18px;
    margin-right: -2px;
  }

  .page-about .concepts-shell__mobile-toggle-lines span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: currentColor;
  }

  .page-about .concepts-shell__mobile-toggle-arrow {
    position: relative;
    width: 24px;
    height: 24px;
  }

  .page-about .concepts-shell__mobile-toggle-arrow::before,
  .page-about .concepts-shell__mobile-toggle-arrow::after {
    content: "";
    position: absolute;
    top: 11px;
    width: 8px;
    height: 1.5px;
    background: currentColor;
    transition: transform 220ms ease;
  }

  .page-about .concepts-shell__mobile-toggle-arrow::before {
    left: 6px;
    transform: rotate(45deg);
  }

  .page-about .concepts-shell__mobile-toggle-arrow::after {
    right: 5px;
    transform: rotate(-45deg);
  }

  .page-about .concepts-shell__header.is-mobile-open .concepts-shell__mobile-toggle-arrow::before {
    transform: rotate(-45deg);
  }

  .page-about .concepts-shell__header.is-mobile-open .concepts-shell__mobile-toggle-arrow::after {
    transform: rotate(45deg);
  }

  .page-about .concepts-shell__brand {
    order: 0;
    justify-self: center;
    align-self: center;
    height: 40px;
    font-size: 20px;
  }

  .page-about .concepts-shell__nav {
    display: none;
  }

  .page-about .concepts-shell__actions {
    width: auto;
    justify-content: flex-end;
  }

  .page-about .concepts-shell__cta {
    width: 145px;
    min-width: 145px;
    padding: 0 22px;
  }

  .page-about .concepts-shell__mobile-panel {
    display: grid;
    grid-column: 1 / 2;
    align-self: start;
    gap: 20px;
    width: 162px;
    margin-top: 8px;
    padding: 16px;
    background: #100f10;
    pointer-events: auto;
  }

  .page-about .concepts-shell__mobile-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    height: 40px;
    padding: 0 16px;
    color: #7b7673;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
  }

  .page-about .concepts-shell__mobile-link[aria-current="page"] {
    border-radius: 44px;
    background: #f0efeb;
    color: #100f10;
  }

  .page-about .concepts-shell__mobile-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
  }

  .about-page {
    padding: 152px 16px 32px;
  }

  .about-hero {
    padding: 18px;
  }

  .about-hero__panel {
    padding: 16px;
  }

  .about-hero__panel .about-inline-links a {
    padding: 0 14px;
  }

  .about-block,
  .about-experience,
  .about-strip__item {
    padding: 20px;
  }

  .about-grid--bottom {
    grid-template-columns: 1fr;
  }

  .about-strip__item {
    min-height: 0;
  }
}

/* ---- Magic Bento hover, at half strength ------------------------------- */
/* Ported from React Bits' Magic Bento with the reference link's settings:
   magnetism and spotlight on, stars, tilt and the click ripple off, radius
   250. Every alpha is half of the reference's and the purple is ours. The
   blocks themselves are untouched - this only layers a glow over them. */
.about-block,
.about-strip__item,
.about-experience {
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-intensity: 0;
  --glow-radius: 320px;
  position: relative;
}

.about-block .about-reveal,
.about-strip__item .about-reveal,
.about-experience .about-reveal {
  --magnet-x: 0px;
  --magnet-y: 0px;
}

/* a ring, not a wash: the gradient is masked down to the padding box so it
   only lights the border */
.about-block::after,
.about-strip__item::after,
.about-experience::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 6px;
  border-radius: inherit;
  background: radial-gradient(
    var(--glow-radius) circle at var(--glow-x) var(--glow-y),
    rgba(107, 58, 255, calc(var(--glow-intensity) * 0.4)) 0%,
    rgba(107, 58, 255, calc(var(--glow-intensity) * 0.3)) 15%,
    rgba(107, 58, 255, calc(var(--glow-intensity) * 0.2)) 30%,
    rgba(107, 58, 255, calc(var(--glow-intensity) * 0.1)) 44%,
    rgba(107, 58, 255, calc(var(--glow-intensity) * 0.04)) 54%,
    rgba(107, 58, 255, 0) 62%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.about-block:hover,
.about-strip__item:hover,
.about-experience:hover {
  box-shadow:
    0 4px 20px rgba(46, 24, 78, 0.2),
    0 0 30px rgba(107, 58, 255, 0.1);
}

.about-magic-spotlight {
  position: fixed;
  left: 0;
  top: 0;
  width: 940px;
  height: 940px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  z-index: 200;
  mix-blend-mode: screen;
  will-change: transform, opacity;
  background: radial-gradient(
    circle,
    rgba(107, 58, 255, 0.16) 0%,
    rgba(107, 58, 255, 0.131) 6%,
    rgba(107, 58, 255, 0.106) 12%,
    rgba(107, 58, 255, 0.084) 18%,
    rgba(107, 58, 255, 0.065) 24%,
    rgba(107, 58, 255, 0.048) 30%,
    rgba(107, 58, 255, 0.034) 36%,
    rgba(107, 58, 255, 0.023) 42%,
    rgba(107, 58, 255, 0.014) 48%,
    rgba(107, 58, 255, 0.007) 54%,
    rgba(107, 58, 255, 0.003) 60%,
    rgba(107, 58, 255, 0.001) 65%,
    rgba(107, 58, 255, 0) 70%
  );
  filter: blur(28px);
  transition:
    transform 120ms cubic-bezier(0.5, 1, 0.89, 1),
    opacity 140ms linear;
}

@media (max-width: 768px), (prefers-reduced-motion: reduce) {
  .about-magic-spotlight,
  .about-block::after,
  .about-strip__item::after,
  .about-experience::after {
    display: none;
  }
}
