@font-face {
  font-family: "Arizona Flare";
  src: url("https://diaryofadesigner.co/_next/static/media/ABCArizonaFlare_Regular_Trial-s.p.0dcigcf-k4cao.otf") format("opentype");
  font-display: swap;
  font-weight: 400 500;
}

@font-face {
  font-family: "Arizona Flare";
  src: url("https://diaryofadesigner.co/_next/static/media/ABCArizonaFlare_Bold_Trial-s.p.12bvhn7o3ppfw.otf") format("opentype");
  font-display: swap;
  font-weight: 600 800;
}

@font-face {
  font-family: "Arizona Sans";
  src: url("https://diaryofadesigner.co/_next/static/media/ABCArizonaSans_Medium_Trial-s.p.0qd4yt94-yt1c.otf") format("opentype");
  font-display: swap;
  font-weight: 400 500;
}

@font-face {
  font-family: "Arizona Sans";
  src: url("https://diaryofadesigner.co/_next/static/media/ABCArizonaSans_Bold_Trial-s.p.0yjbb.he.eb06.otf") format("opentype");
  font-display: swap;
  font-weight: 600 800;
}

:root {
  --background: #f5f4f0;
  --foreground: #141414;
  --muted: color-mix(in srgb, var(--foreground) 48%, transparent);
  --soft: #e7e4df;
  --paper: #faf9f7;
  --line: color-mix(in srgb, var(--foreground) 14%, transparent);
  --ring: color-mix(in srgb, var(--foreground) 38%, transparent);
  --column: 640px;
  --content-column: 592px;
  --header-height: 56px;
  --ease-super-out: cubic-bezier(0.16, 1, 0.3, 1);
  --font-flare: "Arizona Flare", Georgia, "Times New Roman", serif;
  --font-sans: "Arizona Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0 0 8px;
  background: var(--background);
  color: var(--foreground);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow: hidden;
  font-family: var(--font-flare);
  font-feature-settings: "kern";
}

.home-load-overlay {
  position: fixed;
  z-index: 100;
  inset: 0;
  background: var(--background);
  opacity: 1;
  pointer-events: none;
  transition: opacity 520ms var(--ease-super-out);
}

html[data-home-reveal="title-type"] .home-load-overlay,
html[data-home-reveal="dissolve-in"] .home-load-overlay,
html[data-home-reveal="icon-pop"] .home-load-overlay,
html[data-home-reveal="chrome-in"] .home-load-overlay,
html[data-home-reveal="done"] .home-load-overlay {
  opacity: 0;
}

.home-reveal-chrome {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1200ms var(--ease-super-out), transform 1200ms var(--ease-super-out);
}

html[data-home-reveal="chrome-in"] .home-reveal-chrome,
html[data-home-reveal="done"] .home-reveal-chrome {
  opacity: 1;
  transform: translateY(0);
}

.home-welcome-after {
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  transition:
    opacity 1200ms var(--ease-super-out) var(--stagger-delay, 0ms),
    transform 1200ms var(--ease-super-out) var(--stagger-delay, 0ms),
    visibility 0s linear var(--stagger-delay, 0ms);
}

html[data-home-reveal="dissolve-in"] .home-welcome-after,
html[data-home-reveal="icon-pop"] .home-welcome-after,
html[data-home-reveal="chrome-in"] .home-welcome-after,
html[data-home-reveal="done"] .home-welcome-after {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.home-load-icons-hidden {
  opacity: 0;
  visibility: hidden;
}

html[data-home-reveal="icon-pop"] .home-load-icons-hidden,
html[data-home-reveal="chrome-in"] .home-load-icons-hidden,
html[data-home-reveal="done"] .home-load-icons-hidden {
  opacity: 1;
  visibility: visible;
}

body,
.snap-feed,
.snap-section {
  width: 100%;
  max-width: 100vw;
}

body::selection {
  background: color-mix(in srgb, var(--foreground) 22%, transparent);
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
}

svg {
  display: block;
  fill: currentColor;
}

.site-header {
  position: fixed;
  z-index: 40;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(0, var(--content-column)) 1fr;
  grid-template-rows: var(--header-height);
  align-items: start;
  height: var(--header-height);
  padding: 0 24px;
  background:
    linear-gradient(
      to bottom,
      var(--background) 0%,
      color-mix(in srgb, var(--background) 98%, transparent) 24%,
      color-mix(in srgb, var(--background) 68%, transparent) 62%,
      transparent 100%
    );
  pointer-events: none;
}

.book-mark,
.chat-button,
.header-center {
  pointer-events: auto;
}

.book-mark {
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  margin-top: 16px;
  width: 24px;
  height: 24px;
  align-self: start;
}

.book-mark svg,
.book-mark img {
  width: 24px;
  height: 24px;
}

.header-meta,
.header-center,
.chat-button,
.timeline,
.section-actions,
.muted,
.work-list,
blockquote {
  font-family: var(--font-sans);
}

.header-meta {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  max-width: min(100%, 310px);
  min-width: 0;
  height: 36px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  overflow: hidden;
  white-space: nowrap;
}

.header-meta > span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.dot {
  width: 2px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.header-center {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  align-self: start;
  margin-top: 10px;
  width: 100%;
  min-width: 0;
  height: 36px;
}

.header-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 200ms ease-out, transform 300ms var(--ease-super-out);
}

.header-panel-date {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.is-reading .header-panel-date {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
}

body.is-reading .header-panel-title {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header-title-group,
.header-actions {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  height: 36px;
}

.header-center strong {
  min-width: 0;
  overflow: hidden;
  font-size: 12px;
  font-weight: 800;
  line-height: 36px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-center span,
.header-actions > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 36px;
  white-space: nowrap;
}

.mobile-only {
  display: none;
}

.header-panel .book-mark {
  margin-top: 0;
}

.chat-button,
.primary-action,
.secondary-action {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  transition: transform 300ms ease-out, opacity 300ms ease-out, background-color 300ms ease-out;
  overflow: hidden;
}

.chat-button {
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: var(--muted);
  box-shadow: none;
  cursor: default;
  transition:
    opacity 260ms cubic-bezier(0.16, 1, 0.3, 1),
    color 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-button-flat {
  background: transparent;
}

.mobile-chat-clone {
  position: fixed;
  z-index: 60;
  top: 10px;
  right: auto;
  left: min(calc(100vw - 52px), 338px);
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--foreground);
  color: var(--background);
  overflow: hidden;
}

.mobile-chat-clone svg {
  width: 20px;
  height: 20px;
}

.mobile-chat-clone span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.chat-button svg,
.primary-action svg,
.secondary-action svg {
  width: 20px;
  height: 20px;
}

.chat-button svg {
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-4px) scale(1.04);
  opacity: 0.9;
}

.chat-button:hover {
  opacity: 1;
  color: var(--foreground);
}

.primary-action:focus-visible,
.secondary-action:focus-visible,
.chat-button:focus-visible,
.mobile-chat-clone:focus-visible,
.reader-stack:focus-visible,
.profile-card:focus-visible,
.timeline button:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 4px;
}

.primary-action:active,
.secondary-action:active,
.timeline button:active {
  transform: scale(0.97);
}

.ripple {
  position: absolute;
  z-index: -1;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: color-mix(in srgb, currentColor 22%, transparent);
  opacity: 0.36;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 520ms var(--ease-super-out);
}

.snap-feed {
  height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
}

.snap-feed::-webkit-scrollbar {
  display: none;
}

.snap-section {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.page-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: var(--column);
  min-height: 100dvh;
  margin: 0 auto;
  padding: 96px 24px 112px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

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

h1 {
  min-height: 32px;
  font-size: 24px;
  font-weight: 650;
  line-height: 1.18;
}

html[data-home-reveal="title-type"] h1::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.9em;
  margin-left: 0.12em;
  background: currentColor;
  vertical-align: -0.08em;
  animation: caretBlink 760ms steps(1, end) infinite;
}

h2 {
  max-width: 580px;
  margin-top: 12px;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 650;
  line-height: 0.98;
}

h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
}

.muted {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.italic {
  font-style: italic;
}

.copy-stack {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  color: var(--foreground);
  font-size: 18px;
  line-height: 1.38;
}

.copy-stack + .copy-stack {
  margin-top: 18px;
}

#welcome .section-heading + .copy-stack {
  margin-top: 16px;
  font-size: 16px;
}

#welcome .section-heading + .copy-stack + .copy-stack {
  font-size: 16px;
}

.signature {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  margin-top: 24px;
  color: var(--foreground);
  font-family: "Daniel", "Bradley Hand", "Comic Sans MS", "Marker Felt", cursive;
  min-height: 46px;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  transform: translateY(0.08em);
}

.reader-stack {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 240px;
  height: 72px;
  cursor: pointer;
  border: 0;
  padding: 0;
  background: transparent;
  transform: translateY(-16px);
  transition: opacity 300ms ease-out;
}

.reader-card {
  position: relative;
  width: 78px;
  height: 64px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--foreground) 20%, transparent), transparent 52%),
    var(--soft);
  box-shadow: inset 0 0 0 1px var(--line);
  transform: rotate(-5deg);
  transition: transform 520ms var(--ease-super-out), box-shadow 520ms var(--ease-super-out);
  animation: readerPop 800ms var(--ease-super-out) both;
}

.reader-card::after {
  content: attr(data-reader);
  position: absolute;
  top: -30px;
  left: 50%;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--foreground);
  color: var(--background);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px) scale(0.96);
  transition: opacity 180ms ease-out, transform 300ms var(--ease-super-out);
}

.reader-card:nth-child(2) {
  z-index: 2;
  height: 72px;
  margin-left: -18px;
  background:
    linear-gradient(140deg, color-mix(in srgb, var(--foreground) 22%, transparent), transparent 48%),
    #dedbd4;
  transform: translateY(-4px);
  animation-delay: 120ms;
}

.reader-card:nth-child(3) {
  margin-left: -18px;
  transform: rotate(5deg);
  animation-delay: 240ms;
}

.reader-stack:hover .reader-card:nth-child(1),
.reader-stack.is-open .reader-card:nth-child(1) {
  transform: translateX(-14px) translateY(-2px) rotate(-9deg);
}

.reader-stack:hover .reader-card:nth-child(2),
.reader-stack.is-open .reader-card:nth-child(2) {
  transform: translateY(-12px) scale(1.04);
}

.reader-stack:hover .reader-card:nth-child(3),
.reader-stack.is-open .reader-card:nth-child(3) {
  transform: translateX(14px) translateY(-2px) rotate(9deg);
}

.reader-stack:hover .reader-card::after,
.reader-stack.is-open .reader-card::after {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.stack-folder {
  all: unset;
  position: relative;
  flex: 0 0 198px;
  width: 198px;
  height: 182px;
  cursor: pointer;
  transform: translateY(0);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.stack-folder:hover,
.stack-folder:focus-visible {
  transform: translateY(-3px);
}

.stack-folder:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 6px;
  border-radius: 22px;
}

.stack-folder-card {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: 28px;
  background: #f4f0ff;
  overflow: visible;
  box-shadow: 0 22px 44px color-mix(in srgb, var(--foreground) 6%, transparent);
}

.stack-folder-back,
.stack-folder-front {
  position: absolute;
  left: 28px;
  right: 28px;
  display: block;
  background: linear-gradient(180deg, #cf82ff 0%, #b742f4 100%);
  box-shadow: 0 16px 28px color-mix(in srgb, #8c22d8 20%, transparent);
  transition:
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.stack-folder-back {
  bottom: 26px;
  height: 108px;
  border-radius: 18px 18px 8px 8px;
  transform-origin: center bottom;
  z-index: 2;
}

.stack-folder-front {
  bottom: 26px;
  height: 88px;
  border-radius: 8px 18px 18px 18px;
  color: white;
  font-family: var(--font-sans);
  transform-origin: center 92%;
  z-index: 5;
  background: linear-gradient(180deg, #d487ff 0%, #a823ef 100%);
}

.stack-folder-front::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 76px;
  height: 30px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(180deg, #d284ff 0%, #c163fa 100%);
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.stack-folder-front::after {
  content: "";
  position: absolute;
  top: -16px;
  left: 58px;
  right: 0;
  height: 24px;
  border-radius: 0 16px 0 22px;
  border-top: 2px solid color-mix(in srgb, white 44%, transparent);
  background: linear-gradient(180deg, #d587ff 0%, #b941f4 100%);
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.stack-folder:hover .stack-folder-back,
.stack-folder:focus-visible .stack-folder-back {
  box-shadow: 0 24px 34px color-mix(in srgb, #8c22d8 22%, transparent);
  transform: translateY(-8px) rotate(-1deg);
}

.stack-folder:hover .stack-folder-front,
.stack-folder:focus-visible .stack-folder-front {
  transform: translateY(18px) rotate(-2deg);
}

.stack-folder:hover .stack-folder-front::before,
.stack-folder:focus-visible .stack-folder-front::before,
.stack-folder:hover .stack-folder-front::after,
.stack-folder:focus-visible .stack-folder-front::after {
  transform: translateY(-4px);
}

.stack-folder-front > span {
  position: relative;
  z-index: 1;
  display: block;
  margin-left: 24px;
}

.stack-folder-front > span:first-child {
  margin-top: 44px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.stack-folder-front > span:last-child {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.stack-app {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 900;
  opacity: 0.82;
  box-shadow: 0 12px 18px color-mix(in srgb, var(--foreground) 16%, transparent);
  transform: translate(var(--closed-x), var(--closed-y)) rotate(var(--closed-rotate)) scale(0.84);
  transition:
    opacity 360ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 660ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 660ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.stack-app-framer {
  top: 70px;
  left: 34px;
  --closed-x: 8px;
  --closed-y: 34px;
  --closed-rotate: -8deg;
  background: linear-gradient(145deg, #21c7ff 0%, #006eff 100%);
  color: white;
  transition-delay: 30ms;
}

.stack-app-miro {
  top: 58px;
  left: 70px;
  --closed-x: 6px;
  --closed-y: 42px;
  --closed-rotate: 7deg;
  background: #ffd72f;
  transition-delay: 70ms;
}

.stack-app-sketch {
  top: 50px;
  left: 108px;
  width: 46px;
  height: 36px;
  --closed-x: -8px;
  --closed-y: 48px;
  --closed-rotate: 12deg;
  border-radius: 6px 6px 14px 14px;
  background: linear-gradient(135deg, #ffd938 0 36%, #fff1a7 36% 58%, #ff9a00 58% 100%);
  clip-path: polygon(18% 0, 82% 0, 100% 42%, 50% 100%, 0 42%);
  transition-delay: 110ms;
}

.stack-app-figma {
  top: 78px;
  left: 88px;
  --closed-x: 0;
  --closed-y: 34px;
  --closed-rotate: -12deg;
  background: #151515;
  transition-delay: 150ms;
}

.stack-app-figma i {
  width: 11px;
  height: 11px;
  border-radius: 999px;
}

.stack-app-figma i:nth-child(1) { background: #ff7262; }
.stack-app-figma i:nth-child(2) { background: #1abcfe; }
.stack-app-figma i:nth-child(3) { background: #a259ff; }
.stack-app-figma i:nth-child(4) { background: #0acf83; }

.stack-app-notion {
  top: 74px;
  right: 34px;
  --closed-x: -10px;
  --closed-y: 36px;
  --closed-rotate: 10deg;
  border: 4px solid white;
  border-radius: 9px;
  background: white;
  font-family: Georgia, serif;
  font-size: 22px;
  transition-delay: 190ms;
}

.stack-folder:hover .stack-app,
.stack-folder:focus-visible .stack-app {
  opacity: 1;
  box-shadow: 0 14px 22px color-mix(in srgb, var(--foreground) 20%, transparent);
}

.stack-folder:hover .stack-app-framer,
.stack-folder:focus-visible .stack-app-framer {
  transform: translate(-12px, -34px) rotate(-8deg) scale(1);
}

.stack-folder:hover .stack-app-miro,
.stack-folder:focus-visible .stack-app-miro {
  transform: translate(-6px, -52px) rotate(7deg) scale(1);
}

.stack-folder:hover .stack-app-sketch,
.stack-folder:focus-visible .stack-app-sketch {
  transform: translate(6px, -62px) rotate(12deg) scale(1);
}

.stack-folder:hover .stack-app-figma,
.stack-folder:focus-visible .stack-app-figma {
  transform: translate(2px, -38px) rotate(-10deg) scale(1);
}

.stack-folder:hover .stack-app-notion,
.stack-folder:focus-visible .stack-app-notion {
  transform: translate(12px, -42px) rotate(9deg) scale(1);
}

.profile-card {
  position: relative;
  flex: 0 0 auto;
  width: 96px;
  height: 96px;
  margin-right: 16px;
  border: 0;
  border-radius: 22%;
  padding: 0;
  background: var(--soft);
  box-shadow: 0 0 0 4px var(--background);
  cursor: pointer;
  overflow: visible;
  transform: translate(-16px, -12px) rotate(4deg);
  transition: transform 300ms var(--ease-super-out), box-shadow 300ms ease-out;
}

.profile-card::after {
  content: "Hello!";
  position: absolute;
  z-index: 0;
  top: -4px;
  right: -10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: auto;
  padding: 12px 12px 4px;
  border-radius: 14px 14px 14px 4px;
  background: var(--foreground);
  color: var(--background);
  font-family: "Daniel", "Bradley Hand", "Comic Sans MS", "Marker Felt", cursive;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 14px 24px color-mix(in srgb, var(--foreground) 10%, transparent);
  transform: translate(-18px, 12px) scale(0.76);
  transform-origin: left bottom;
  transition:
    opacity 180ms ease-out,
    transform 360ms var(--ease-super-out);
}

.profile-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.profile-card:hover,
.profile-card.is-lifted {
  box-shadow: 0 0 0 4px var(--background), 0 16px 32px color-mix(in srgb, var(--foreground) 14%, transparent);
  transform: translate(-16px, -28px) rotate(-2deg) scale(1.2);
}

.profile-card:hover::after,
.profile-card.is-lifted::after {
  opacity: 1;
  transform: translate(34px, -16px) rotate(-2deg) scale(1);
}

.hairline {
  display: flex;
  justify-content: space-between;
  height: 2px;
  margin-top: 22px;
  color: color-mix(in srgb, var(--foreground) 24%, transparent);
}

.hairline::before {
  content: "";
  flex: 1;
  height: 2px;
  margin: 0;
  background: repeating-linear-gradient(
    to right,
    color-mix(in srgb, var(--foreground) 28%, transparent) 0 2px,
    transparent 2px 8px
  );
}

.hairline span {
  display: none;
}

.section-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin-top: 22px;
}

.primary-action {
  padding: 0 16px;
  background: var(--foreground);
  color: var(--background);
}

.resume-action {
  min-height: 44px;
  padding: 0 18px;
  background: var(--foreground);
  color: var(--background);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  box-shadow: none;
  transition:
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 320ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.resume-action:hover {
  opacity: 1;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--foreground) 10%, transparent);
  transform: translateY(-3px) scale(1.035);
}

.resume-action:active {
  box-shadow: none;
  transform: translateY(0) scale(0.98);
}

.secondary-action {
  gap: 6px;
  padding: 0 14px;
  background: transparent;
}

.copy-email-slot {
  display: inline-flex;
  justify-content: flex-start;
  min-width: 140px;
}

.copy-email-action {
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid color-mix(in srgb, var(--foreground) 14%, transparent);
  background: color-mix(in srgb, var(--background) 92%, white 8%);
  color: color-mix(in srgb, var(--foreground) 78%, transparent);
  cursor: pointer;
  box-shadow: 0 1px 0 color-mix(in srgb, var(--foreground) 5%, transparent);
  transition:
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 260ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 260ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 260ms cubic-bezier(0.16, 1, 0.3, 1),
    color 260ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.copy-email-action .copy-email-icon {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  fill: currentColor;
  transform: translateX(0);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.copy-email-icon-copy,
.copy-email-icon-check {
  transform-origin: 50% 50%;
  transition:
    opacity 220ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.copy-email-icon-check {
  opacity: 0;
  transform: scale(0.72) rotate(-14deg);
}

.copy-email-action:hover {
  opacity: 1;
  color: var(--foreground);
  border-color: color-mix(in srgb, var(--foreground) 24%, transparent);
  background: color-mix(in srgb, var(--background) 82%, white 18%);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--foreground) 7%, transparent);
  transform: translateY(-2px) scale(1.015);
}

.copy-email-action:hover svg {
  transform: translateX(-1px) rotate(-2deg);
}

.copy-email-action:active,
.copy-email-action.is-pressing {
  box-shadow: 0 2px 8px color-mix(in srgb, var(--foreground) 6%, transparent);
  transform: translateY(0) scale(0.98);
}

.copy-email-action.is-copied .copy-email-icon-copy {
  opacity: 0;
  transform: scale(0.72) rotate(14deg);
}

.copy-email-action.is-copied .copy-email-icon-check {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.chat-button.copy-email-action {
  gap: 4px;
  min-height: 44px;
  padding-right: 4px;
  padding-left: 4px;
  border: 0;
  background: transparent;
  color: var(--muted);
  box-shadow: none;
  cursor: pointer;
  transform: none;
}

.chat-button.copy-email-action:hover,
.chat-button.copy-email-action:active,
.chat-button.copy-email-action.is-pressing {
  border-color: transparent;
  background: transparent;
  color: var(--foreground);
  box-shadow: none;
  transform: none;
}

.chat-button.copy-email-action:hover svg,
.chat-button.copy-email-action:active svg,
.chat-button.copy-email-action.is-pressing svg {
  transform: none;
}

.chat-button.copy-email-action:hover .copy-email-label,
.chat-button.copy-email-action:active .copy-email-label,
.chat-button.copy-email-action.is-pressing .copy-email-label {
  color: var(--foreground);
}

.mobile-chat-clone.copy-email-action {
  width: 36px;
  min-height: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: var(--foreground);
  color: var(--background);
  box-shadow: none;
}

.mobile-chat-clone.copy-email-action:hover,
.mobile-chat-clone.copy-email-action:active,
.mobile-chat-clone.copy-email-action.is-pressing {
  border-color: transparent;
  background: var(--foreground);
  color: var(--background);
  box-shadow: none;
  transform: none;
}

.mobile-chat-clone.copy-email-action:hover svg,
.mobile-chat-clone.copy-email-action:active svg,
.mobile-chat-clone.copy-email-action.is-pressing svg {
  transform: none;
}

.project-section p:not(.project-eyebrow),
.thank-section p {
  max-width: 620px;
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.42;
}

#thank-you .thank-divider {
  width: 100%;
  margin-top: 24px;
}

#thank-you .thank-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin-top: 24px;
}

#thank-you .social-links {
  display: flex;
  align-items: center;
  gap: 14px;
  align-self: flex-start;
  margin-top: 0;
}

#thank-you .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: color-mix(in srgb, var(--foreground) 48%, transparent);
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--foreground) 14%, transparent);
  border-radius: 50%;
  box-shadow: none;
  text-decoration: none;
  transition:
    color 240ms var(--ease-super-out),
    opacity 240ms var(--ease-super-out),
    border-color 240ms var(--ease-super-out),
    background-color 240ms var(--ease-super-out),
    box-shadow 240ms var(--ease-super-out),
    transform 240ms var(--ease-super-out);
}

#thank-you .social-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 240ms var(--ease-super-out);
}

#thank-you .social-link:hover,
#thank-you .social-link:focus-visible {
  color: var(--foreground);
  background: color-mix(in srgb, var(--background) 82%, white 18%);
  border-color: color-mix(in srgb, var(--foreground) 24%, transparent);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--foreground) 7%, transparent);
  transform: translateY(-2px) scale(1.015);
}

#thank-you .social-link:hover svg,
#thank-you .social-link:focus-visible svg {
  transform: none;
}

#thank-you .social-link:active {
  transform: translateY(-1px) scale(0.97);
}

.project-column {
  gap: 14px;
}

#project-01 .project-header,
#project-02 .project-header,
#project-02-copy .project-header,
#project-03 .project-header,
#project-01 .project-number,
#project-02 .project-number,
#project-02-copy .project-number,
#project-03 .project-number {
  display: none;
}

.project-module {
  display: block;
}

.project-copy {
  min-width: 0;
}

.project-eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 14px;
  font-style: italic;
  font-weight: 700;
}

.project-copy h2 {
  margin: 0;
  max-width: 540px;
  font-size: 24px;
  line-height: 32px;
}

.project-copy > p:not(.project-eyebrow) {
  max-width: 540px;
  margin-top: 18px;
}

#project-01 .project-module,
#project-02 .project-module,
#project-02-copy .project-module,
#project-03 .project-module,
#project-01 .project-copy,
#project-02 .project-copy,
#project-02-copy .project-copy,
#project-03 .project-copy {
  width: 100%;
}

#project-01 .project-copy h2,
#project-02 .project-copy h2,
#project-02-copy .project-copy h2,
#project-03 .project-copy h2,
#project-01 .project-copy > p:not(.project-eyebrow),
#project-02 .project-copy > p:not(.project-eyebrow),
#project-02-copy .project-copy > p:not(.project-eyebrow),
#project-03 .project-copy > p:not(.project-eyebrow) {
  max-width: 100%;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  font-family: var(--font-sans);
}

.project-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.project-feature-grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  width: 100%;
  margin-top: 28px;
}

.project-feature-card {
  position: relative;
  min-width: 0;
  height: 180px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--foreground) 9%, transparent), transparent 54%),
    radial-gradient(circle at 72% 22%, color-mix(in srgb, var(--paper) 82%, transparent), transparent 34%),
    var(--soft);
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--foreground) 12%, transparent),
    0 1px 2px color-mix(in srgb, var(--foreground) 5%, transparent);
  overflow: hidden;
}

.project-feature-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-feature-card-square {
  aspect-ratio: 1;
}

#project-02-copy .project-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#project-02-copy .project-feature-link {
  display: grid;
  gap: 10px;
  min-width: 0;
  color: var(--foreground);
  text-decoration: none;
}

#project-02-copy .project-feature-card {
  display: block;
  width: 100%;
}

#project-02-copy .project-feature-card-square {
  aspect-ratio: auto;
}

#project-02-copy .project-feature-link:hover .project-feature-card,
#project-02-copy .project-feature-link:focus-visible .project-feature-card {
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--foreground) 18%, transparent),
    0 16px 32px color-mix(in srgb, var(--foreground) 10%, transparent);
  transform: translateY(-4px) scale(1.025);
}

#project-02-copy .project-feature-link:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 4px;
  border-radius: 18px;
}

#project-02-copy .project-feature-link:hover .project-feature-open-icon,
#project-02-copy .project-feature-link:focus-visible .project-feature-open-icon {
  opacity: 1;
  transform: rotate(0deg);
}

#project-02-copy .project-feature-caption {
  display: grid;
  gap: 2px;
  font-family: var(--font-sans);
  line-height: 1.3;
}

#project-02-copy .project-feature-caption strong {
  color: var(--foreground);
  font-size: 13px;
  font-weight: 700;
}

#project-02-copy .project-feature-caption span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.project-feature-card-wide {
  cursor: pointer;
  text-decoration: none;
  transition: transform 360ms var(--ease-super-out), box-shadow 360ms var(--ease-super-out);
}

.project-feature-card-wide:hover,
.project-feature-card-wide:focus-visible {
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--foreground) 18%, transparent),
    0 16px 32px color-mix(in srgb, var(--foreground) 10%, transparent);
  transform: translateY(-4px) scale(1.025);
}

.project-feature-card-wide:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 4px;
}

.project-feature-card-wide::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: color-mix(in srgb, white 92%, var(--background) 8%);
  box-shadow: 0 14px 28px color-mix(in srgb, var(--foreground) 16%, transparent);
  opacity: 0;
  transform: translate(-10px, 10px) scale(0.62);
  transition: opacity 180ms ease-out, transform 360ms var(--ease-super-out);
}

.project-feature-card-wide::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 29px;
  left: 29px;
  width: 20px;
  height: 20px;
  border-top: 3px solid var(--foreground);
  border-right: 3px solid var(--foreground);
  background: linear-gradient(
    135deg,
    transparent 0 43%,
    var(--foreground) 43% 53%,
    transparent 53% 100%
  );
  opacity: 0;
  transform: translate(-13px, 13px) scale(0.62);
  transition: opacity 180ms ease-out, transform 360ms var(--ease-super-out);
}

.project-feature-card-wide:hover::before,
.project-feature-card-wide:focus-visible::before {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.project-feature-card-wide:hover::after,
.project-feature-card-wide:focus-visible::after {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

#project-01 .project-feature-card-wide::before,
#project-01 .project-feature-card-wide::after,
#project-02 .project-feature-card-wide::before,
#project-02 .project-feature-card-wide::after,
#project-02-copy .project-feature-card-wide::before,
#project-02-copy .project-feature-card-wide::after {
  display: none;
}

#project-01 .project-feature-open-icon,
#project-02 .project-feature-open-icon,
#project-02-copy .project-feature-open-icon {
  position: absolute;
  z-index: 4;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--foreground);
  opacity: 0;
  pointer-events: none;
  transform: rotate(-45deg);
  transform-origin: 50% 50%;
  transition:
    opacity 360ms var(--ease-super-out),
    transform 360ms var(--ease-super-out);
  will-change: opacity, transform;
}

#project-01 .project-feature-open-icon img,
#project-02 .project-feature-open-icon img,
#project-02-copy .project-feature-open-icon img {
  display: block;
  width: 12px;
  height: 12px;
}

#project-01 .project-feature-card-wide:hover .project-feature-open-icon,
#project-01 .project-feature-card-wide:focus-visible .project-feature-open-icon,
#project-02 .project-feature-card-wide:hover .project-feature-open-icon,
#project-02 .project-feature-card-wide:focus-visible .project-feature-open-icon,
#project-02-copy .project-feature-card-wide:hover .project-feature-open-icon,
#project-02-copy .project-feature-card-wide:focus-visible .project-feature-open-icon {
  opacity: 1;
  transform: rotate(0deg);
}

#project-02 .project-feature-card-wide::before {
  opacity: 0;
  transform: translate(-18px, 18px) rotate(-14deg) scale(0.76);
  transform-origin: 50% 50%;
  transition:
    opacity 260ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 480ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 480ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

#project-02 .project-feature-card-wide::after {
  opacity: 0;
  transform: translate(-19px, 19px) rotate(-36deg) scale(0.76);
  transform-origin: 50% 50%;
  transition:
    opacity 240ms cubic-bezier(0.16, 1, 0.3, 1) 40ms,
    transform 500ms cubic-bezier(0.16, 1, 0.3, 1) 40ms;
  will-change: opacity, transform;
}

#project-02 .project-feature-card-wide:hover::before,
#project-02 .project-feature-card-wide:focus-visible::before {
  opacity: 1;
  transform: translate(0, 0) rotate(0deg) scale(1);
}

#project-02 .project-feature-card-wide:hover::after,
#project-02 .project-feature-card-wide:focus-visible::after {
  opacity: 1;
  transform: translate(0, 0) rotate(0deg) scale(1);
}

.project-feature-placeholder {
  position: absolute;
  inset: 28px;
  border: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent);
  border-radius: 14px;
  opacity: 0.84;
}

.project-feature-placeholder::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--foreground) 10%, transparent);
}

.project-visual-viewport {
  position: relative;
  width: 100vw;
  margin-top: 28px;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.project-visual-viewport::before,
.project-visual-viewport::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: max(0px, calc((100vw - var(--column)) / 2 + 8px));
  pointer-events: none;
}

.project-visual-viewport::before {
  left: 0;
  background: linear-gradient(to right, var(--background) 0%, color-mix(in srgb, var(--background) 92%, transparent) 42%, transparent 100%);
}

.project-visual-viewport::after {
  right: 0;
  background: linear-gradient(to left, var(--background) 0%, color-mix(in srgb, var(--background) 92%, transparent) 42%, transparent 100%);
}

.project-visual-row {
  display: flex;
  gap: 32px;
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 8px max(24px, calc((100vw - var(--column)) / 2 + 24px)) 14px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.project-visual-row::-webkit-scrollbar {
  display: none;
}

.project-visual-card {
  all: unset;
  display: grid;
  gap: 10px;
  flex: 0 0 213px;
  width: 213px;
  color: var(--foreground);
  cursor: pointer;
}

.project-visual {
  position: relative;
  display: block;
  flex: 0 0 213px;
  width: 213px;
  height: 160px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--foreground) 10%, transparent), transparent 54%),
    radial-gradient(circle at 72% 22%, color-mix(in srgb, var(--paper) 82%, transparent), transparent 34%),
    var(--soft);
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--foreground) 12%, transparent),
    0 1px 2px color-mix(in srgb, var(--foreground) 5%, transparent);
  transition: transform 360ms var(--ease-super-out), box-shadow 360ms var(--ease-super-out), background-color 360ms ease-out;
  overflow: hidden;
}

.project-visual::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent);
  opacity: 0.84;
}

.project-visual::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: color-mix(in srgb, var(--foreground) 10%, transparent);
}

.project-visual video,
.project-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-visual-has-media::before,
.project-visual-has-media::after {
  display: none;
}

.project-visual-card:hover .project-visual,
.project-visual-card:focus-visible .project-visual,
.project-visual-card.is-lifted .project-visual {
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--foreground) 18%, transparent),
    0 16px 32px color-mix(in srgb, var(--foreground) 10%, transparent);
  transform: translateY(-4px) scale(1.025);
}

.project-visual-card:active .project-visual {
  transform: translateY(-1px) scale(0.99);
}

.project-visual-card:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 4px;
  border-radius: 18px;
}

.project-visual-caption {
  display: grid;
  gap: 2px;
  font-family: var(--font-sans);
  line-height: 1.3;
}

.project-visual-caption strong {
  color: var(--foreground);
  font-size: 13px;
  font-weight: 700;
}

.project-visual-caption span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.project-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 0;
  background: repeating-linear-gradient(
    to right,
    color-mix(in srgb, var(--foreground) 28%, transparent) 0 2px,
    transparent 2px 8px
  ) left top / 100% 2px no-repeat;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
}

.project-stats strong {
  display: block;
  margin-bottom: 3px;
  color: var(--foreground);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.work-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.work-list article {
  display: grid;
  grid-template-columns: 44px 120px 1fr;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.work-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.work-list span {
  color: var(--muted);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.work-list p {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.45;
}

blockquote {
  margin: 28px 0 0;
  padding-left: 18px;
  border-left: 2px solid var(--line);
  color: var(--muted);
  font-size: 16px;
  font-style: italic;
  line-height: 1.5;
}

.script-title {
  margin: 0;
  font-size: clamp(42px, 8vw, 84px);
  font-style: italic;
  font-weight: 650;
  line-height: 0.88;
}

#thank-you .thank-mark {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  min-height: 46px;
  margin: 0 0 8px;
  color: var(--foreground);
  font-family: "Daniel", "Bradley Hand", "Comic Sans MS", "Marker Felt", cursive;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  transform: translateY(0.08em);
}

#thank-you .thank-mark + .muted {
  margin-top: 0;
  font-size: 14px;
}

.timeline {
  position: fixed;
  z-index: 30;
  top: calc(50% - 56px);
  left: 24px;
  width: 240px;
  transform: translateY(-50%);
}

.timeline ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline button {
  all: unset;
  display: grid;
  grid-template-columns: 45px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 28px;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  transition: color 260ms ease-out, transform 260ms var(--ease-super-out);
}

.timeline button span:not(.line) {
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 260ms ease-out, transform 260ms var(--ease-super-out);
}

.timeline .line {
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--foreground) 16%, transparent);
  transition: width 360ms var(--ease-super-out), background-color 360ms ease-out;
}

.timeline button:hover .line,
.timeline button.is-active .line {
  width: 45px;
  background: color-mix(in srgb, var(--foreground) 42%, transparent);
}

.timeline button:hover {
  color: var(--foreground);
}

.timeline button:hover span:not(.line),
.timeline button:focus-visible span:not(.line) {
  opacity: 1;
  transform: translateX(0);
}

.timeline button.is-flashing {
  animation: timelineFlash 520ms var(--ease-super-out);
}

.header-center strong.is-swapping {
  animation: textSwap 420ms var(--ease-super-out);
}

.footer-note {
  position: absolute;
  right: max(24px, calc((100vw - var(--column)) / 2 + 6px));
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  pointer-events: auto;
  transition: color 200ms ease-out, transform 300ms var(--ease-super-out);
}

.footer-note svg {
  width: 20px;
  height: 20px;
}

.footer-note:hover {
  color: var(--foreground);
  transform: translateY(-2px);
}

.snap-section .page-column > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 900ms var(--ease-super-out), transform 900ms var(--ease-super-out);
}

.snap-section.is-visible .page-column > * {
  opacity: 1;
  transform: translateY(0);
}

.snap-section.is-visible .page-column > *:nth-child(2) {
  transition-delay: 80ms;
}

.snap-section.is-visible .page-column > *:nth-child(3) {
  transition-delay: 160ms;
}

.snap-section.is-visible .page-column > *:nth-child(4) {
  transition-delay: 240ms;
}

.snap-section.is-visible .page-column > *:nth-child(5) {
  transition-delay: 320ms;
}

#welcome .home-welcome-after {
  transition-delay:
    var(--stagger-delay, 0ms),
    var(--stagger-delay, 0ms),
    var(--stagger-delay, 0ms);
}

html[data-home-reveal="title-type"] #welcome .home-welcome-after,
html[data-home-reveal="title-type"] #welcome .home-load-icons-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
}

html[data-home-reveal="dissolve-in"] #welcome .home-welcome-after,
html[data-home-reveal="icon-pop"] #welcome .home-welcome-after,
html[data-home-reveal="chrome-in"] #welcome .home-welcome-after,
html[data-home-reveal="done"] #welcome .home-welcome-after {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

html[data-home-reveal="icon-pop"] #welcome .home-load-icons-hidden,
html[data-home-reveal="chrome-in"] #welcome .home-load-icons-hidden,
html[data-home-reveal="done"] #welcome .home-load-icons-hidden {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

html[data-home-reveal="icon-pop"] #welcome .reader-stack.home-load-icons-hidden,
html[data-home-reveal="chrome-in"] #welcome .reader-stack.home-load-icons-hidden,
html[data-home-reveal="done"] #welcome .reader-stack.home-load-icons-hidden {
  transform: translateY(-16px);
}

html[data-home-reveal="icon-pop"] #welcome .profile-card.home-load-icons-hidden,
html[data-home-reveal="chrome-in"] #welcome .profile-card.home-load-icons-hidden,
html[data-home-reveal="done"] #welcome .profile-card.home-load-icons-hidden {
  transform: translate(-16px, -12px) rotate(4deg);
}

html[data-home-reveal="icon-pop"] #welcome .profile-card.home-load-icons-hidden:hover,
html[data-home-reveal="chrome-in"] #welcome .profile-card.home-load-icons-hidden:hover,
html[data-home-reveal="done"] #welcome .profile-card.home-load-icons-hidden:hover,
html[data-home-reveal="icon-pop"] #welcome .profile-card.home-load-icons-hidden.is-lifted,
html[data-home-reveal="chrome-in"] #welcome .profile-card.home-load-icons-hidden.is-lifted,
html[data-home-reveal="done"] #welcome .profile-card.home-load-icons-hidden.is-lifted {
  transform: translate(-16px, -28px) rotate(-2deg) scale(1.2);
}

@keyframes arrowStem {
  0% {
    transform: scaleY(1);
  }
  72% {
    transform: scaleY(1.68);
  }
  100% {
    transform: scaleY(1);
  }
}

@keyframes arrowCap {
  0% {
    transform: translateY(0);
  }
  72% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes ripple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

@keyframes readerPop {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.94);
  }
}

@keyframes timelineFlash {
  0% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes textSwap {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes caretBlink {
  0%,
  48% {
    opacity: 1;
  }
  49%,
  100% {
    opacity: 0;
  }
}

@media (max-width: 1080px) {
  .header-meta,
  .timeline {
    display: none;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr);
  }

  .header-center {
    grid-column: 1;
  }

  .book-mark:not(.mobile-only) {
    display: none;
  }

  .mobile-only {
    display: inline-flex;
  }

  .header-panel {
    padding: 0 52px 0 0;
  }
}

@media (max-width: 760px), ((max-height: 900px) and (max-width: 900px)) {
  .site-header {
    padding: 0 16px;
  }

  .header-actions > span {
    display: none;
  }

  .header-panel {
    padding: 0;
  }

  .header-title-group {
    padding-right: 48px;
  }

  .header-actions {
    position: absolute;
    top: 0;
    right: 0;
    height: 36px;
  }

  .chat-button {
    width: 36px;
    min-height: 36px;
    padding: 0;
    overflow: hidden;
  }

  .chat-button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .header-actions .chat-button {
    display: none;
  }

  .mobile-chat-clone {
    display: inline-flex;
  }

  .page-column {
    width: 100vw;
    max-width: 100vw;
    padding: 82px 24px 110px;
  }

  .copy-stack,
  .project-section p,
  .thank-section p,
  h2 {
    max-width: min(342px, calc(100vw - 48px));
  }

  .section-heading {
    align-items: flex-start;
  }

  h1 {
    font-size: 22px;
  }

  h2 {
    font-size: clamp(30px, 11vw, 46px);
  }

  .copy-stack,
  .project-section p,
  .thank-section p {
    font-size: 17px;
  }

  .project-feature-grid {
    grid-template-columns: 1fr;
  }

  .project-feature-card {
    height: auto;
    min-height: 180px;
  }

  .project-feature-card-square {
    width: min(180px, 100%);
  }

  #project-02-copy .project-feature-card-square {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .project-feature-card-wide {
    aspect-ratio: 16 / 9;
  }

  .reader-stack {
    position: absolute;
    top: 76px;
    right: -58px;
    width: 180px;
    height: 58px;
    opacity: 0.72;
  }

  .reader-card {
    width: 60px;
    height: 50px;
    border-radius: 18px;
  }

  .reader-card:nth-child(2) {
    height: 58px;
  }

  .stack-folder {
    width: 150px;
    height: 138px;
    flex-basis: 150px;
    margin-right: -24px;
    transform: translateY(-4px);
  }

  .stack-folder:hover,
  .stack-folder:focus-visible {
    transform: translateY(-7px);
  }

  .stack-folder-card {
    transform: scale(0.76);
    transform-origin: top right;
    width: 198px;
    height: 182px;
  }

  .profile-card {
    width: 72px;
    height: 72px;
    margin-right: -24px;
    pointer-events: none;
    transform: translate(-8px, -10px) rotate(4deg);
  }

  .profile-card::after {
    display: none;
  }

  .profile-card:hover,
  .profile-card.is-lifted {
    transform: translate(-8px, -10px) rotate(4deg);
  }

  .footer-note {
    display: none;
  }

  .section-actions {
    display: none;
  }

  .work-list article {
    grid-template-columns: 34px 1fr;
  }

  .work-list p {
    grid-column: 2;
  }
}

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