:root {
  color-scheme: light;
  --canvas: #ffffff;
  --ink: #000000;
  --muted: #a1a1aa;
  --underline: #eeeff2;
  --underline-hover: #d4d4d8;
  --glass-border: #f4f4f6;
  --glass-top: #ffffff;
  --glass-bottom: #fafafa;
  --glass-shadow:
    inset 0 2px 4px 0 #ffffff,
    inset 0 -4px 4px 0 rgba(255, 255, 255, 0.5),
    inset 0 -4px 16px 0 #ffffff,
    inset 0 4px 10px 0 rgba(110, 110, 116, 0.07),
    0 4px 14px -10px rgba(53, 53, 79, 0.4),
    0 11px 28px -10px rgba(53, 53, 79, 0.1);
  --glass-highlight:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.78), transparent 54%);
  --preview-bg: #f4f4f5;
  --preview-shadow: 0 20px 60px rgba(24, 24, 27, 0.12);
  --preview-glass-bg: rgba(255, 255, 255, 0.74);
  --preview-glass-border: rgba(255, 255, 255, 0.66);
  --preview-glass-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 12px 32px rgba(24, 24, 27, 0.16);
  --preview-meta: #71717a;
  --preview-mock: rgba(255, 255, 255, 0.68);
  --preview-mock-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  --toggle-bg: rgba(255, 255, 255, 0.74);
  --toggle-border: #e4e4e7;
  --toggle-shadow: 0 12px 32px rgba(24, 24, 27, 0.1);
  --toggle-glyph: #18181b;
  --table-border: #000000;
  --font-system: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-press: cubic-bezier(0.2, 0, 0, 1);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --canvas: #09090b;
  --ink: #f4f4f5;
  --muted: #a1a1aa;
  --underline: rgba(244, 244, 245, 0.18);
  --underline-hover: rgba(244, 244, 245, 0.44);
  --glass-border: rgba(244, 244, 245, 0.12);
  --glass-top: rgba(39, 39, 42, 0.88);
  --glass-bottom: rgba(18, 18, 20, 0.88);
  --glass-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -18px 34px rgba(0, 0, 0, 0.2),
    inset 0 12px 24px rgba(255, 255, 255, 0.035),
    0 18px 44px -24px rgba(0, 0, 0, 0.9),
    0 2px 12px rgba(0, 0, 0, 0.28);
  --glass-highlight:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.18), transparent 58%);
  --preview-bg: #18181b;
  --preview-shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
  --preview-glass-bg: rgba(12, 12, 14, 0.72);
  --preview-glass-border: rgba(244, 244, 245, 0.16);
  --preview-glass-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 16px 42px rgba(0, 0, 0, 0.36);
  --preview-meta: #a1a1aa;
  --preview-mock: rgba(244, 244, 245, 0.22);
  --preview-mock-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
  --toggle-bg: rgba(18, 18, 20, 0.74);
  --toggle-border: rgba(244, 244, 245, 0.16);
  --toggle-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
  --toggle-glyph: #f4f4f5;
  --table-border: #ffffff;
}

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

html {
  min-height: 100%;
  background: var(--canvas);
  font-family: var(--font-system);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-gutter: stable;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-system);
  font-size: 21px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration-line: underline;
  text-decoration-color: var(--underline);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  transition: text-decoration-color 180ms var(--ease-out);
}

a:hover {
  text-decoration-color: var(--underline-hover);
}

a:focus-visible {
  border-radius: 6px;
  outline: 2px solid var(--underline-hover);
  outline-offset: 4px;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

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

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

.theme-toggle {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 30;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--toggle-border);
  border-radius: 9999px;
  background: var(--toggle-bg);
  box-shadow: var(--toggle-shadow);
  color: var(--toggle-glyph);
  cursor: pointer;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    transform 180ms var(--ease-out),
    border-color 180ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .theme-toggle:hover {
    transform: translateY(-1px);
    border-color: var(--underline-hover);
  }
}

.theme-toggle:active {
  transform: scale(0.96);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--underline-hover);
  outline-offset: 4px;
}

.theme-toggle__glyph {
  position: relative;
  display: block;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  transition:
    transform 180ms var(--ease-out);
}

.theme-toggle__glyph::before,
.theme-toggle__glyph::after {
  position: absolute;
  box-sizing: border-box;
  content: "";
  border-radius: 9999px;
  transition:
    opacity 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}

.theme-toggle__glyph::before {
  z-index: 1;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: currentColor;
  opacity: 1;
  transform: rotate(-18deg) scale(1);
}

.theme-toggle__glyph::after {
  z-index: 2;
  top: 0;
  left: 7px;
  width: 16px;
  height: 16px;
  background: var(--toggle-bg);
  opacity: 1;
  transform: rotate(-18deg) scale(1);
}

html[data-theme="dark"] .theme-toggle__glyph::before,
.theme-toggle[data-theme="dark"] .theme-toggle__glyph::before {
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  background: var(--toggle-bg);
  opacity: 1;
  transform: scale(1);
}

html[data-theme="dark"] .theme-toggle__glyph::after,
.theme-toggle[data-theme="dark"] .theme-toggle__glyph::after {
  z-index: 0;
  inset: 0;
  width: 20px;
  height: 20px;
  background: currentColor;
  border-radius: 0;
  clip-path: polygon(
    50% 0,
    57% 28%,
    82% 12%,
    72% 39%,
    100% 50%,
    72% 61%,
    82% 88%,
    57% 72%,
    50% 100%,
    43% 72%,
    18% 88%,
    28% 61%,
    0 50%,
    28% 39%,
    18% 12%,
    43% 28%
  );
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.site-shell {
  position: relative;
  z-index: 1;
  width: 100%;
}

.site-stack {
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
  padding: 96px 32px;
}

.avatar-link {
  display: grid;
  width: 96px;
  height: 96px;
  margin-bottom: 32px;
  border-radius: 9999px;
  overflow: hidden;
  text-decoration: none;
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 9999px;
  object-fit: cover;
}

.intro-stack {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  max-width: 608px;
  transform-origin: left;
}

.identity {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: fit-content;
}

h1,
.identity h1 {
  width: fit-content;
  font-size: 21px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0;
}

h2,
.identity h2 {
  width: fit-content;
  font-size: 21px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0;
}

.top-links {
  display: flex;
  flex-flow: row wrap;
  column-gap: 16px;
  row-gap: 8px;
  margin-top: -22px;
}

.top-links a {
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  transform: translate3d(0, 0, 0);
  transition:
    color 180ms var(--ease-out),
    transform 160ms var(--ease-press);
}

.top-links a:active {
  transform: scale(0.97);
}

.work-zone {
  position: relative;
  z-index: 10;
  width: fit-content;
  margin-left: -16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
}

.work-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.work-item {
  position: relative;
  display: inline-flex;
  width: fit-content;
  max-width: min(608px, calc(100vw - 32px));
  flex-direction: column;
  gap: 4px;
  padding: 8px 16px;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  outline: none;
}

.work-item__inner {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  transform: translate3d(0, 0, 0);
  transition: transform 260ms cubic-bezier(0, 0, 0.2, 1);
}

.work-item__title {
  width: fit-content;
  font-size: 21px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0;
  text-decoration-line: underline;
  text-decoration-color: var(--underline);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  transition: text-decoration-color 180ms var(--ease-out);
}

.work-item:hover .work-item__title,
.work-item:focus-visible .work-item__title {
  text-decoration-color: var(--underline-hover);
}

.work-item__meta {
  color: var(--muted);
  font-size: 21px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;
}

.liquid-glass {
  position: absolute;
  top: var(--glass-y, 0);
  left: var(--glass-x, 0);
  z-index: -1;
  width: var(--glass-w, 0);
  height: var(--glass-h, 0);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  opacity: var(--glass-opacity, 0);
  background: linear-gradient(180deg, var(--glass-top), var(--glass-bottom));
  box-shadow: var(--glass-shadow);
  pointer-events: none;
  transform:
    translate3d(var(--glass-tx, 0), var(--glass-ty, 0), 0)
    rotateX(var(--glass-rx, 0deg))
    rotateY(var(--glass-ry, 0deg));
  transform-origin: 50% 50%;
  transition:
    opacity 220ms var(--ease-out),
    transform 120ms linear;
}

.liquid-glass.is-glass-traveling {
  transition:
    top 220ms var(--ease-soft),
    left 220ms var(--ease-soft),
    width 220ms var(--ease-soft),
    height 220ms var(--ease-soft),
    opacity 180ms var(--ease-out),
    transform 120ms linear;
}

.liquid-glass__highlight {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  opacity: 0.9;
  background: var(--glass-highlight);
  pointer-events: none;
}

.link-glass {
  position: fixed;
  z-index: 0;
  border-radius: 16px;
}

.link-glass-target {
  position: relative;
}

.link-glass-target.is-link-glass-active {
  z-index: 2;
}

[data-intro-root] {
  opacity: 0;
}

[data-intro-block] {
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, -14px, 0);
}

body.is-mounted [data-intro-root] {
  opacity: 1;
}

body.is-mounted [data-intro-block] {
  animation: intro-block-in 1012ms var(--ease-soft) both;
  animation-delay: var(--intro-delay, 120ms);
}

@keyframes intro-block-in {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(0, -14px, 0);
  }

  72% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 1px, 0);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

.preview-stage {
  position: fixed;
  top: 258px;
  left: calc(50vw + 138px);
  z-index: 3;
  width: 272px;
  height: 484px;
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, 16px, 0) scale(0.985);
  pointer-events: none;
  transition:
    opacity 240ms var(--ease-out),
    filter 240ms var(--ease-out),
    transform 240ms var(--ease-out);
}

.preview-stage.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.page--background .preview-stage {
  top: 50vh;
  left: calc(50vw + 180px);
  width: 320px;
  height: 440px;
  transform: translate3d(0, calc(-50% + 16px), 0) scale(0.985);
}

.page--articles .preview-stage {
  top: 50vh;
  left: calc(50vw + 180px);
  width: 320px;
  height: 440px;
  transform: translate3d(0, calc(-50% + 16px), 0) scale(0.985);
}

.page--background .preview-stage.is-visible,
.page--articles .preview-stage.is-visible {
  transform: translate3d(0, -50%, 0) scale(1);
}

.preview-card {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  background: var(--preview-bg);
  box-shadow: var(--preview-shadow);
}

.preview-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
  transform: scale(1.02);
  transition:
    filter 220ms var(--ease-out),
    transform 520ms var(--ease-soft);
}

.preview-card.is-preview-changing .preview-card__image {
  transform: scale(1.045);
}

.preview-card[data-kind="airhelp"] .preview-card__image,
.preview-card[data-kind="strategy"] .preview-card__image {
  filter: grayscale(1) contrast(1.04);
}

.preview-card[data-kind="profit"] .preview-card__image,
.preview-card[data-kind="background"] .preview-card__image {
  filter: sepia(0.2) saturate(0.82) brightness(1.04);
}

.preview-card[data-kind="ai"] .preview-card__image,
.preview-card[data-kind="articles"] .preview-card__image,
.preview-card[data-kind="connect"] .preview-card__image {
  filter: saturate(0.7) contrast(1.08) brightness(0.96);
}

.preview-card[data-kind^="company-"] {
  background: #111111;
}

.preview-card[data-kind^="company-"] .preview-card__image {
  filter: saturate(1) contrast(1.02);
}

.preview-card[data-kind="company-truecar"] {
  background: #000000;
}

.preview-card[data-kind="company-truecar"] .preview-card__image {
  padding: 32px 22px;
  object-fit: contain;
  background: #000000;
  transform: scale(0.9);
}

.preview-card.is-preview-changing[data-kind="company-truecar"] .preview-card__image {
  transform: scale(0.94);
}

.preview-card[data-kind="company-match"] {
  background: #2023f4;
}

.preview-card[data-kind="company-match"] .preview-card__image {
  padding: 30px 20px;
  object-fit: contain;
  background: #2023f4;
  transform: scale(0.92);
}

.preview-card.is-preview-changing[data-kind="company-match"] .preview-card__image {
  transform: scale(0.96);
}

.preview-card[data-kind="company-yunio"] {
  background: #ffffff;
}

.preview-card[data-kind="company-yunio"] .preview-card__image {
  padding: 34px;
  object-fit: contain;
  background: #ffffff;
  transform: scale(0.94);
}

.preview-card.is-preview-changing[data-kind="company-yunio"] .preview-card__image {
  transform: scale(0.98);
}

.preview-card[data-kind="company-iconmobile"] {
  background: #000000;
}

.preview-card[data-kind="company-iconmobile"] .preview-card__image {
  padding: 0;
  object-fit: cover;
  background: #000000;
  transform: scale(1);
}

.preview-card.is-preview-changing[data-kind="company-iconmobile"] .preview-card__image {
  transform: scale(1.04);
}

.preview-card[data-kind="company-roxy"] {
  background: #ffffff;
}

.preview-card[data-kind="company-roxy"] .preview-card__image {
  padding: 38px 26px;
  object-fit: contain;
  background: #ffffff;
  transform: scale(0.96);
}

.preview-card.is-preview-changing[data-kind="company-roxy"] .preview-card__image {
  transform: scale(1);
}

.preview-card[data-kind="company-mile-high-comics"] {
  background: #000000;
}

.preview-card[data-kind="company-mile-high-comics"] .preview-card__image {
  padding: 16px 28px 72px;
  object-fit: contain;
  background: #000000;
  transform: scale(1);
}

.preview-card.is-preview-changing[data-kind="company-mile-high-comics"] .preview-card__image {
  transform: scale(1.04);
}

.preview-card[data-kind="company-poker"] {
  background: #080807;
}

.preview-card[data-kind="company-poker"] .preview-card__image {
  object-fit: cover;
  background: #080807;
}

.preview-card[data-kind="company-verum"] {
  background: #d9dfdd;
}

.preview-card[data-kind="company-verum"] .preview-card__image {
  object-fit: cover;
  object-position: 50% 42%;
  background: #d9dfdd;
}

.preview-card__glass {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  border: 1px solid var(--preview-glass-border);
  border-radius: 10px;
  background: var(--preview-glass-bg);
  box-shadow: var(--preview-glass-shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translate3d(0, 0, 0);
  transition:
    opacity 180ms var(--ease-out),
    filter 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}

.preview-card.is-preview-changing .preview-card__glass {
  opacity: 0.76;
  filter: blur(1.5px);
  transform: translate3d(0, 2px, 0);
}

.preview-card__title {
  font-size: 21px;
  font-weight: 500;
  line-height: 30px;
}

.preview-card__meta {
  color: var(--preview-meta);
  font-size: 21px;
  line-height: 32px;
}

.preview-card__mock {
  position: absolute;
  top: 42px;
  left: 28px;
  right: 28px;
  display: grid;
  gap: 18px;
}

.preview-card__mock span {
  display: block;
  height: 16px;
  border-radius: 9999px;
  background: var(--preview-mock);
  box-shadow: var(--preview-mock-shadow);
}

.preview-card__mock span:nth-child(2) {
  width: 68%;
  justify-self: end;
}

.preview-card__mock span:nth-child(3) {
  width: 86%;
}

.preview-card__mock span:nth-child(4) {
  width: 48%;
  justify-self: end;
}

.text-page {
  gap: 32px;
}

.copy-stack {
  display: flex;
  max-width: 560px;
  flex-direction: column;
  gap: 20px;
}

.copy-stack p {
  font-size: 21px;
  line-height: 34px;
}

.text-zone {
  margin-top: 8px;
}

.next-link {
  width: fit-content;
  color: var(--muted);
}

.connect-list .work-item__meta {
  max-width: 390px;
}

.contact-page {
  width: 100%;
  max-width: 608px;
  align-items: flex-start;
}

.contact-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--ink);
  text-decoration: none;
  transform: translate3d(0, 0, 0);
  transition:
    color 180ms var(--ease-out),
    transform 160ms var(--ease-press);
}

.contact-icon:hover,
.contact-icon:focus-visible {
  color: var(--contact-icon-color, var(--ink));
}

.contact-icon:active {
  transform: scale(0.97);
}

.contact-icon__mark,
.contact-icon__svg {
  width: 25px;
  height: 25px;
}

.contact-icon__mark {
  display: block;
  background: currentColor;
  -webkit-mask: var(--contact-icon) center / contain no-repeat;
  mask: var(--contact-icon) center / contain no-repeat;
}

.contact-icon--x {
  --contact-icon: url("https://cdn.jsdelivr.net/npm/simple-icons@latest/icons/x.svg");
}

.contact-icon--linkedin {
  --contact-icon: url("https://cdn.jsdelivr.net/npm/simple-icons@latest/icons/linkedin.svg");
  --contact-icon-color: #0a66c2;
}

.contact-icon--github {
  --contact-icon: url("https://cdn.jsdelivr.net/npm/simple-icons@latest/icons/github.svg");
}

.article-page {
  gap: 32px;
  padding-bottom: 32px;
}

.article-heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.article-heading__title {
  max-width: 600px;
}

.article-heading__meta,
.article-heading__summary,
.article-back {
  font-size: 21px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0;
}

.article-heading__meta,
.article-back {
  color: var(--muted);
}

.article-heading__summary {
  max-width: 560px;
  color: var(--ink);
}

.article-body {
  display: flex;
  max-width: 608px;
  flex-direction: column;
  gap: 24px;
}

.article-body h1,
.article-body h2,
.article-body h3 {
  width: fit-content;
  padding-top: 8px;
  font-size: 21px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0;
}

.article-body h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
}

.article-body h1:first-child,
.article-body h2:first-child,
.article-body h3:first-child {
  padding-top: 0;
}

.article-body h1:has(table),
.article-body h2:has(table),
.article-body h3:has(table) {
  width: 100%;
  max-width: 608px;
}

.article-body p,
.article-body li {
  max-width: 608px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 0;
}

.article-body p:empty {
  display: none;
}

.article-body .article-heading__meta {
  margin-top: -16px;
  color: var(--muted);
  line-height: 26px;
}

.article-body .article-heading__meta,
.article-date {
  display: none;
}

.article-image {
  width: 100%;
  max-width: 608px;
  margin: 0;
}

.article-image img {
  display: block;
  width: 100%;
  max-height: 680px;
  border-radius: 8px;
  object-fit: cover;
}

.article-body ul,
.article-body ol {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.article-body a {
  color: var(--ink);
}

.article-body table {
  align-self: center;
  width: 100%;
  max-width: 608px;
  margin: 0 auto;
  border-collapse: collapse;
}

.article-body th,
.article-body td {
  border: 1px solid var(--table-border);
  border-color: var(--table-border);
  padding: 8px 10px;
  color: var(--ink);
  font-size: 21px;
  line-height: 30px;
  text-align: center;
  vertical-align: top;
}

.article-body th {
  font-weight: 500;
  text-align: center;
}

.article-nav {
  display: flex;
  flex-flow: row wrap;
  gap: 16px;
  padding-top: 16px;
}

.article-nav a {
  color: var(--muted);
  text-decoration: none;
  transform: translate3d(0, 0, 0);
  transition:
    color 180ms var(--ease-out),
    transform 160ms var(--ease-press);
}

.article-nav a:active {
  transform: scale(0.97);
}

.top-links a.is-current-page,
.top-links a.is-link-glass-active,
.article-nav a.is-current-page,
.article-nav a.is-link-glass-active {
  color: var(--ink);
}

.top-links a.is-current-page,
.article-nav a.is-current-page {
  cursor: default;
  pointer-events: none;
  text-decoration-line: underline;
  text-decoration-color: currentColor;
}

@media (min-width: 768px) {
  .site-stack {
    min-width: 512px;
  }
}

@media (min-width: 1181px) {
  .site-shell .site-stack {
    margin-right: auto;
    margin-left: max(32px, calc(50vw - 512px));
  }
}

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

@media (max-width: 767px) {
  .site-stack {
    padding: 96px 32px;
  }

  .theme-toggle {
    top: 18px;
    right: 18px;
  }

  .top-links {
    gap: 12px;
  }

  .intro-stack {
    max-width: 100%;
  }

  .work-item {
    max-width: calc(100vw - 32px);
  }
}

@media (max-width: 380px) {
  .site-stack {
    padding-right: 14px;
    padding-left: 14px;
  }

  .top-links {
    gap: 7px;
  }
}

@media (max-width: 340px) {
  .top-links {
    flex-wrap: wrap;
    column-gap: 12px;
    row-gap: 8px;
  }
}

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

  [data-intro-item],
  [data-intro-root],
  [data-intro-block] {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none !important;
  }
}


/* Root compatibility and promoted content */
.hero__title,
.article-hero__title,
.articles-entry__title,
.timeline-title {
  font-size: 21px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0;
  margin: 0;
}

.hero__subtitle,
.article-heading__summary,
.timeline-date,
.articles-entry__summary,
.article-date,
.eyebrow {
  color: var(--muted);
  font-size: 21px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;
  text-transform: none;
}

.hero__subtitle {
  font-size: 20px;
  line-height: 30px;
}

.home-copy .p1,
.home-copy p {
  margin: 0;
}

.home-ai-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  margin-top: clamp(28px, 5vw, 52px);
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.home-ai-footer__label {
  color: var(--muted);
  font-size: inherit;
  line-height: inherit;
}

.llm-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 4px;
}

.llm-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  text-decoration: none;
  background: color-mix(in srgb, var(--glass) 82%, var(--paper));
  box-shadow: 0 8px 22px rgba(24, 24, 27, 0.08);
  transform: translate3d(0, 0, 0);
  transition:
    background-color 100ms var(--ease-out),
    border-color 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out),
    transform 160ms var(--ease-press);
}

.article-body .llm-link {
  color: #000000;
}

.llm-link:hover,
.llm-link:focus-visible {
  border-color: var(--underline-hover);
  background: color-mix(in srgb, var(--glass) 65%, var(--paper));
  box-shadow: 0 10px 28px rgba(24, 24, 27, 0.12);
}

.llm-link:active {
  transform: scale(0.97);
}

.llm-logo {
  display: block;
  width: 21px;
  height: 21px;
  background: currentColor;
  opacity: 0.72;
  transform: rotate(0deg) scale(1);
  transform-origin: 50% 50%;
  transition:
    background-color 220ms var(--ease-out),
    opacity 180ms var(--ease-out),
    transform 260ms var(--ease-soft);
  -webkit-mask: var(--llm-icon) center / contain no-repeat;
  mask: var(--llm-icon) center / contain no-repeat;
}

.llm-link--chatgpt {
  --llm-icon: url("https://cdn.jsdelivr.net/npm/simple-icons@latest/icons/openai.svg");
  --llm-color: #1687ff;
  background: #f4f4f5;
}

.llm-link--gemini {
  --llm-icon: url("https://cdn.jsdelivr.net/npm/simple-icons@latest/icons/googlegemini.svg");
  --llm-color: #8e75ff;
  background: #f6f3ff;
}

.llm-link--claude {
  --llm-icon: url("https://cdn.jsdelivr.net/npm/simple-icons@latest/icons/claude.svg");
  --llm-color: #cc785c;
  background: #fff4ee;
}

.llm-link:hover,
.llm-link:focus-visible {
  color: var(--llm-color);
}

.article-body .llm-link:hover,
.article-body .llm-link:focus-visible {
  color: var(--llm-color);
}

.llm-link:hover .llm-logo,
.llm-link:focus-visible .llm-logo {
  animation: llm-logo-spin-color 560ms var(--ease-soft) both;
}

@keyframes llm-logo-spin-color {
  0% {
    opacity: 0.44;
    transform: rotate(-28deg) scale(0.82);
  }

  62% {
    opacity: 1;
    transform: rotate(372deg) scale(1.08);
  }

  100% {
    opacity: 1;
    transform: rotate(360deg) scale(1);
  }
}

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

.timeline-item,
.articles-entry {
  position: relative;
  display: flex;
  width: min(608px, calc(100vw - 32px));
  flex-direction: column;
  gap: 10px;
  padding: 8px 16px;
  color: var(--ink);
  text-decoration: none;
  outline: none;
  transform: translate3d(0, 0, 0);
  transition: transform 160ms var(--ease-press);
}

.timeline-item {
  padding: 0 16px;
}

.timeline-item + .timeline-item {
  margin-top: 16px;
}

.timeline-item:active,
.articles-entry:active {
  transform: scale(0.995);
}

.timeline-title,
.articles-entry__title {
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  transition: text-decoration-color 180ms var(--ease-out);
}

.timeline-item:hover .timeline-title,
.timeline-item:focus-visible .timeline-title,
.articles-entry:hover .articles-entry__title,
.articles-entry:focus-visible .articles-entry__title {
  text-decoration-color: var(--underline-hover);
}

.timeline-content ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 8px 0 0;
  padding-left: 18px;
}

.timeline-content li,
.article-section__content p,
.article-section__content li {
  color: var(--ink);
  font-size: 21px;
  font-weight: 400;
  line-height: 34px;
}

.articles-entry__body,
.articles-entry__meta,
.articles-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.articles-entry__image {
  display: none;
}

.articles-list {
  gap: 8px;
}

.articles-entry__meta {
  display: none;
}

.articles-archive__header {
  display: none;
}

.article-list-zone,
.timeline-zone {
  width: min(608px, calc(100vw - 32px));
}

.timeline-item {
  cursor: pointer;
}

.article-section__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.article-section__content h1,
.article-section__content h2,
.article-section__content h3 {
  width: fit-content;
  padding-top: 8px;
  font-size: 21px;
  font-weight: 500;
  line-height: 32px;
}

.article-section__content h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
}

.article-section__heading--empty,
.orbit-menu,
.orbit-scrim {
  display: none !important;
}

.pretext-fallback {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 767px) {
  .timeline-item,
  .articles-entry,
  .article-list-zone,
  .timeline-zone {
    width: calc(100vw - 32px);
  }

  .theme-toggle {
    top: 18px;
    right: 18px;
  }
}
