:root {
  color-scheme: dark;
  --bg: #030303;
  --ink: #f1f0ea;
  --muted: #8d8b84;
  --line: rgba(241, 240, 234, 0.14);
  --panel: #121211;
  --paper: #f1f0ea;
  --accent: #d8ff4f;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1480px, calc(100vw - 48px));
  --edge-pad: max(24px, calc((100vw - var(--shell)) / 2 + 24px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  letter-spacing: 0;
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

body.dialog-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0.11;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px);
  background-position: 0 0, 3px 4px;
  background-size: 7px 7px, 11px 11px;
  mix-blend-mode: overlay;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  gap: 22px;
  align-content: center;
  background: var(--bg);
  color: var(--ink);
  transition:
    opacity 600ms ease,
    visibility 600ms ease;
}

.loader span {
  font-size: 96px;
  font-weight: 900;
  line-height: 0.9;
}

.loader-bar {
  width: min(360px, 70vw);
  height: 2px;
  background: rgba(241, 240, 234, 0.18);
  overflow: hidden;
}

.loader-bar i {
  display: block;
  height: 100%;
  width: 45%;
  background: var(--paper);
  animation: loadbar 900ms ease-in-out infinite alternate;
}

body.loaded .loader {
  opacity: 0;
  visibility: hidden;
}

.cursor {
  position: fixed;
  z-index: 180;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--bg);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.cursor.visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.section-shell,
.site-header {
  width: 100%;
  margin-inline: 0;
  padding-left: var(--edge-pad);
  padding-right: var(--edge-pad);
}

.site-header {
  position: relative;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: 30px;
  padding: 28px 24px 30px;
  border-bottom: 1px solid var(--line);
}

.site-header.reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

.brand {
  width: max-content;
  font-size: 23px;
  font-weight: 850;
  line-height: 1;
}

.quick-links,
.status {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.25;
}

.quick-links span,
.status span {
  width: 100%;
  color: var(--ink);
  font-weight: 850;
}

.status strong {
  color: var(--muted);
}

.rolling-link {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  line-height: 1.1;
  vertical-align: top;
  transform: none;
}

.rolling-link::after {
  content: attr(data-label);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  color: var(--ink);
  transform: translateY(115%);
}

.rolling-link::after {
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.rolling-link:hover {
  transform: none;
  color: transparent;
}

.rolling-link:hover::after {
  transform: translateY(0);
}

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.54fr);
  align-items: start;
  gap: 64px;
  padding: 70px 24px 24px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.96) 0%, rgba(3, 3, 3, 0.72) 45%, rgba(3, 3, 3, 0.22) 100%),
    linear-gradient(180deg, transparent 0%, rgba(3, 3, 3, 0.8) 100%);
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transform: scale(1.02);
  filter: saturate(0.95) contrast(1.08);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: 72px;
  line-height: 0.98;
  font-weight: 500;
}

.hero h1 span {
  display: block;
}

.hero-image {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: min(330px, 100%);
  margin: 0;
  margin-top: 18px;
  opacity: 0.86;
}

.hero-image img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  filter: saturate(0.9) contrast(1.08);
}

.discipline-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 96px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--paper);
  color: var(--bg);
  font-weight: 900;
}

.discipline-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 24px 12px;
  text-align: center;
  line-height: 1.2;
  border-right: 1px solid rgba(3, 3, 3, 0.22);
}

.name-marquee {
  width: 100%;
  overflow: hidden;
  contain: paint;
  padding: 30px 0 20px;
  border-bottom: 1px solid var(--line);
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee 18s linear infinite;
}

.name-marquee span {
  padding-right: 60px;
  color: var(--paper);
  font-size: 270px;
  font-weight: 950;
  line-height: 0.94;
  white-space: nowrap;
}

sup {
  position: relative;
  top: -0.36em;
  font-size: 0.32em;
}

.profile,
.featured-intro,
.services,
.about,
.visual-partners,
.brand-partners,
.contact {
  padding: 72px 24px;
  border-bottom: 1px solid var(--line);
}

.culture-marquee {
  overflow: hidden;
  contain: paint;
}

.culture-marquee .marquee-track {
  animation-duration: 28s;
}

.culture-marquee span {
  padding-right: 42px;
  color: var(--paper);
  font-size: 32px;
  font-weight: 950;
  line-height: 1.18;
  white-space: nowrap;
}

.hobbies-marquee {
  position: relative;
  width: 100vw;
  margin: -22px 0 58px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 18px 0;
  border-top: 1px solid rgba(241, 240, 234, 0.1);
  border-bottom: 1px solid rgba(241, 240, 234, 0.1);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.hobbies-marquee.reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

.hobbies-marquee .marquee-track {
  padding-left: max(24px, calc((100vw - var(--shell)) / 2));
  animation-duration: 24s;
}

.hobbies-marquee span {
  padding-right: 48px;
  color: rgba(241, 240, 234, 0.92);
  font-size: 46px;
  font-weight: 950;
  line-height: 1.14;
  letter-spacing: 0;
  text-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
}

.visual-partners {
  position: relative;
  overflow: hidden;
  padding-top: 92px;
  padding-bottom: 118px;
  perspective: 1300px;
}

.visual-partners::before {
  content: "";
  position: absolute;
  inset: 14% 0 auto;
  height: 1px;
  background: var(--line);
}

.visual-partners-head {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.4fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 70px;
}

.visual-partners-head h2 {
  max-width: 920px;
  margin: 0;
  color: var(--paper);
  font-size: 92px;
  line-height: 0.9;
  font-weight: 950;
}

.visual-partners-head p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.34;
}

.interest-note {
  grid-column: 2;
  display: inline-block;
  width: fit-content;
  max-width: 460px;
  margin-top: -34px;
  color: var(--paper);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.32;
  text-decoration: none;
}

.interest-note::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 8px;
  background: var(--accent);
  transform: scaleX(0.34);
  transform-origin: left;
  transition: transform 180ms ease;
}

.interest-note:hover::after {
  transform: scaleX(1);
}

.interest-rollover {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  min-height: 560px;
  align-items: center;
  transform-style: preserve-3d;
}

.interest-card {
  position: relative;
  min-height: 420px;
  margin: 0 -20px;
  overflow: hidden;
  border: 1px solid rgba(241, 240, 234, 0.18);
  border-radius: 8px;
  background: var(--panel);
  transform:
    rotateY(calc(-22deg + var(--tilt-x, 0) * 0.55deg))
    rotateX(calc(var(--tilt-y, 0) * -0.45deg))
    translateZ(0);
  transform-style: preserve-3d;
  transition:
    flex 420ms ease,
    margin 420ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 420ms ease;
}

.interest-card:nth-child(even) {
  transform:
    rotateY(calc(18deg + var(--tilt-x, 0) * 0.55deg))
    rotateX(calc(var(--tilt-y, 0) * -0.45deg))
    translateZ(36px);
}

.interest-card:nth-child(3n) {
  transform:
    rotateY(calc(-8deg + var(--tilt-x, 0) * 0.55deg))
    rotateX(calc(var(--tilt-y, 0) * -0.45deg))
    translateY(62px)
    translateZ(72px);
}

.interest-card img {
  height: 420px;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08) brightness(0.72);
  transform: scale(1.08);
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 520ms ease;
}

.interest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 18%, rgba(3, 3, 3, 0.74) 100%),
    radial-gradient(circle at 20% 20%, rgba(216, 255, 79, 0.16), transparent 34%);
}

.interest-card span,
.interest-card p,
.interest-card b {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
}

.interest-card span {
  bottom: 112px;
  color: var(--paper);
  font-size: 34px;
  line-height: 0.9;
  font-weight: 950;
  transition: transform 220ms ease;
}

.interest-card p {
  bottom: 42px;
  margin: 0;
  color: rgba(241, 240, 234, 0.82);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.22;
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.interest-card b {
  bottom: 20px;
  color: var(--accent);
  font-size: 11px;
  text-transform: uppercase;
}

.interest-rollover:hover .interest-card {
  filter: brightness(0.72);
  margin-inline: -32px;
}

.interest-rollover .interest-card:hover {
  z-index: 4;
  filter: brightness(1);
  margin-inline: 8px;
  transform:
    rotateY(calc(var(--tilt-x, 0) * 0.5deg))
    rotateX(calc(var(--tilt-y, 0) * -0.5deg))
    translateY(-42px)
    translateZ(170px)
    scale(1.08);
}

.interest-card:hover img {
  filter: saturate(1.02) contrast(1.08) brightness(0.92);
  transform: scale(1.16);
}

.brand-partners {
  position: relative;
  overflow: hidden;
  padding-top: 86px;
  padding-bottom: 112px;
  perspective: 1200px;
}

.brand-partner-stage {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.brand-partner-stage h2 {
  position: sticky;
  top: 36px;
  margin: 0;
  color: var(--paper);
  font-size: 96px;
  line-height: 0.88;
  font-weight: 950;
}

.brand-partner-list {
  border-top: 1px solid var(--line);
}

.brand-partner-row {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(160px, 0.38fr) minmax(260px, 1fr) 170px;
  gap: 26px;
  align-items: center;
  min-height: 156px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transform:
    rotateX(calc(var(--tilt-y, 0) * -0.5deg))
    rotateY(calc(var(--tilt-x, 0) * 0.5deg))
    translateZ(0);
  transform-style: preserve-3d;
  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    background 260ms ease;
}

.brand-partner-row:hover {
  z-index: 3;
  background: rgba(241, 240, 234, 0.035);
  transform:
    rotateX(calc(var(--tilt-y, 0) * -0.65deg))
    rotateY(calc(var(--tilt-x, 0) * 0.65deg))
    translateZ(80px)
    translateX(-16px);
}

.brand-partner-row span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
}

.brand-partner-row h3 {
  margin: 0;
  color: var(--paper);
  font-size: 42px;
  line-height: 0.9;
}

.brand-partner-row p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.34;
}

.brand-partner-row img {
  aspect-ratio: 1.8;
  object-fit: cover;
  border: 1px solid rgba(241, 240, 234, 0.18);
  border-radius: 8px;
  filter: saturate(0.82) contrast(1.06) brightness(0.78);
  transform: rotateY(-18deg) translateZ(40px);
  transform-origin: center;
  transition:
    filter 320ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-partner-row:hover img {
  filter: saturate(1) contrast(1.08) brightness(0.95);
  transform: rotateY(-4deg) translateZ(120px) scale(1.08);
}

.section-kicker {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 72px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: 80px;
}

.profile-media {
  margin: 0;
}

.profile-photo-stage {
  position: relative;
  min-height: 720px;
  perspective: 1200px;
}

.profile-photo-card {
  position: relative;
  width: min(100%, 560px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
  transform:
    rotateX(calc(var(--tilt-y, 0) * -1deg))
    rotateY(calc(var(--tilt-x, 0) * 1deg))
    translate3d(0, 0, 0);
  transform-style: preserve-3d;
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms ease;
}

.profile-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 44%, rgba(3, 3, 3, 0.76) 100%),
    radial-gradient(circle at 26% 18%, rgba(216, 255, 79, 0.18), transparent 34%);
  pointer-events: none;
}

.profile-photo-card img {
  min-height: 680px;
  height: 720px;
  object-fit: cover;
  object-position: center 64%;
  filter: saturate(0.92) contrast(1.05);
}

.profile-photo-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  color: var(--paper);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.profile-photo-stage:hover .profile-photo-card {
  transform:
    rotateX(calc(var(--tilt-y, 0) * -1deg))
    rotateY(calc(var(--tilt-x, 0) * 1deg))
    translate3d(0, -14px, 44px);
}

.profile-copy h2 {
  max-width: 900px;
  margin: 0 0 24px;
  font-size: 76px;
  line-height: 0.98;
  font-weight: 650;
}

.profile-copy p {
  max-width: 720px;
  margin: 0 0 38px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.36;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 132px;
  min-height: 48px;
  padding: 14px 22px;
  border: 1px solid var(--paper);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.role-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 28px;
  margin-top: 64px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.22;
}

.logo-cloud {
  padding: 60px 24px 72px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.cloud-row {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 7vw, 118px);
  margin: 32px 0;
}

.cloud-row:nth-child(2) {
  transform: translateX(7vw);
}

.cloud-row span {
  color: var(--paper);
  font-size: 96px;
  font-weight: 950;
  line-height: 1;
  opacity: 0.92;
}

.title-marquee {
  overflow: hidden;
  contain: paint;
  margin-bottom: 52px;
}

.title-marquee .marquee-track {
  animation-duration: 20s;
}

.title-marquee h2 {
  margin: 0;
  padding-right: 38px;
  color: var(--paper);
  font-size: 138px;
  line-height: 1;
  font-weight: 950;
  white-space: nowrap;
}

.featured-copy {
  display: grid;
  grid-template-columns: minmax(320px, 680px) auto;
  align-items: end;
  justify-content: space-between;
  gap: 72px;
  padding-bottom: 18px;
}

.featured-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.34;
}

.project-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 126px;
  column-gap: 36px;
  row-gap: 48px;
  padding: 112px 24px 132px;
  border-bottom: 1px solid var(--line);
}

.project-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.project-card img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition:
    transform 550ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 550ms ease;
}

.project-card:hover img {
  transform: scale(1.1);
  filter: saturate(1.12) contrast(1.08);
}

.project-card span,
.project-card b,
.project-card em {
  position: absolute;
  z-index: 2;
  color: var(--paper);
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.38);
}

.project-card span,
.project-card b {
  bottom: 26px;
  font-size: 24px;
  line-height: 1;
}

.project-card span {
  left: 26px;
  max-width: calc(100% - 110px);
}

.project-card b {
  right: 26px;
}

.project-card em {
  left: 26px;
  right: 26px;
  bottom: 70px;
  max-width: min(620px, calc(100% - 52px));
  color: rgba(241, 240, 234, 0.78);
  font-size: 15px;
  font-style: normal;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.84)),
    radial-gradient(circle at 18% 18%, rgba(216, 255, 79, 0.12), transparent 34%);
  opacity: 0.86;
  pointer-events: none;
}

.project-card:hover em {
  opacity: 1;
  transform: translateY(0);
}

.project-large {
  grid-column: 1 / 7;
  grid-row: span 5;
}

.project-wide {
  grid-column: 8 / 13;
  grid-row: 2 / span 3;
}

.project-tall {
  grid-column: 7 / 12;
  grid-row: 6 / span 5;
}

.project-small:nth-of-type(4) {
  grid-column: 2 / 6;
  grid-row: 7 / span 3;
}

.project-small:nth-of-type(5) {
  grid-column: 5 / 9;
  grid-row: 12 / span 3;
}

.services-head {
  display: flex;
  align-items: baseline;
  gap: 22px;
  margin-bottom: 34px;
}

.services-head h2 {
  margin: 0;
  font-size: 148px;
  line-height: 0.82;
  font-weight: 950;
}

.services-head p {
  margin: 0;
  color: var(--muted);
  font-size: 34px;
  font-weight: 850;
}

.service-words {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 54px;
  color: var(--muted);
  font-size: 24px;
  font-weight: 850;
}

.service-row {
  display: grid;
  grid-template-columns: 90px minmax(220px, 0.8fr) minmax(280px, 1fr);
  gap: 30px;
  align-items: center;
  min-height: 136px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.service-row:last-child {
  border-bottom: 1px solid var(--line);
}

.service-row span {
  color: var(--muted);
  font-size: 18px;
  font-weight: 900;
}

.service-row h3 {
  margin: 0;
  font-size: 56px;
  line-height: 0.92;
  font-weight: 900;
}

.service-row p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.35;
}

.process {
  padding: 92px 24px 112px;
  border-bottom: 1px solid var(--line);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(420px, 1fr);
  gap: 72px;
  align-items: start;
}

.process-sticky {
  position: sticky;
  top: 28px;
  min-height: 720px;
}

.process-sticky h2 {
  margin: 0;
  font-size: 136px;
  line-height: 0.82;
  font-weight: 950;
}

.process-sticky p {
  max-width: 560px;
  margin: 26px 0 44px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.34;
}

.process-orbit {
  position: relative;
  min-height: 360px;
}

.process-orbit img {
  position: absolute;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
}

.orbit-main {
  left: 8%;
  top: 18px;
  width: min(520px, 78%);
  aspect-ratio: 1.45;
  border-radius: 8px;
  animation: imageFloat 9s ease-in-out infinite;
}

.orbit-mini {
  width: 190px;
  aspect-ratio: 1.5;
  border-radius: 6px;
  animation: imageFloat 7s ease-in-out infinite reverse;
}

.orbit-a {
  right: 2%;
  top: 126px;
}

.orbit-b {
  left: 0;
  bottom: 4px;
}

.process-steps {
  border-top: 1px solid var(--line);
}

.process-step {
  display: grid;
  grid-template-columns: 72px minmax(220px, 0.82fr) minmax(260px, 1fr);
  gap: 28px;
  min-height: 176px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.process-step span {
  color: var(--accent);
  font-size: 16px;
  font-weight: 950;
}

.process-step h3 {
  margin: 0;
  font-size: 42px;
  line-height: 0.96;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.38;
}

.proof {
  position: relative;
  overflow: hidden;
  padding: 86px 24px 118px;
  border-bottom: 1px solid var(--line);
}

.proof-marquee {
  overflow: hidden;
  contain: paint;
  margin: 64px 0 70px;
}

.proof-marquee .marquee-track {
  animation-duration: 18s;
}

.proof-marquee h2 {
  margin: 0;
  padding-right: 44px;
  color: var(--paper);
  font-size: 156px;
  line-height: 1;
  font-weight: 950;
  white-space: nowrap;
}

.coding-float {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
  perspective: 1400px;
}

.coding-card {
  position: relative;
  min-height: 390px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(241, 240, 234, 0.07), rgba(241, 240, 234, 0.012)),
    var(--bg);
  transform:
    rotateX(calc(var(--tilt-y, 0) * -0.55deg))
    rotateY(calc(var(--tilt-x, 0) * 0.55deg))
    translateZ(0);
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 280ms ease,
    background 280ms ease;
}

.coding-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -32% 12%;
  height: 180px;
  background: radial-gradient(circle, rgba(216, 255, 79, 0.16), transparent 62%);
  pointer-events: none;
}

.coding-card:hover {
  z-index: 3;
  border-color: rgba(216, 255, 79, 0.56);
  transform:
    rotateX(calc(var(--tilt-y, 0) * -0.65deg))
    rotateY(calc(var(--tilt-x, 0) * 0.65deg))
    translateY(-26px)
    translateZ(90px);
}

.coding-card-offset {
  margin-top: 104px;
}

.coding-card > span {
  display: block;
  margin-bottom: 26px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.coding-card p {
  position: relative;
  z-index: 1;
  margin: 26px 0 0;
  color: var(--paper);
  font-size: 25px;
  line-height: 1.15;
  font-weight: 850;
}

.streak-photo {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  min-height: 178px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(241, 240, 234, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(241, 240, 234, 0.08), rgba(241, 240, 234, 0.02)),
    #090908;
}

.streak-photo i {
  min-height: 30px;
  border-radius: 5px;
  background: rgba(241, 240, 234, 0.09);
  animation: streakPulse 2200ms ease-in-out infinite;
}

.streak-photo i:nth-child(2n) {
  animation-delay: 160ms;
}

.streak-photo i:nth-child(3n) {
  animation-delay: 320ms;
}

.streak-photo i:nth-child(5n) {
  animation-delay: 480ms;
}

.github-streak i:nth-child(3n),
.leetcode-streak i:nth-child(4n),
.gfg-streak i:nth-child(2n),
.codedex-streak i:nth-child(5n) {
  background: var(--accent);
  box-shadow: 0 0 22px rgba(216, 255, 79, 0.28);
}

.leetcode-streak i:nth-child(3n + 1) {
  background: #ffb84d;
}

.gfg-streak i:nth-child(4n + 1) {
  background: #43d17a;
}

.codedex-streak i:nth-child(3n + 2) {
  background: #7cc7ff;
}

.streak-photo b {
  grid-column: 1 / -1;
  align-self: end;
  color: var(--paper);
  font-size: 12px;
  text-transform: uppercase;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: end;
}

.about h2 {
  margin: 0;
  font-size: 94px;
  line-height: 0.92;
  font-weight: 900;
}

.about p {
  margin: 0;
  color: var(--muted);
  font-size: 24px;
  line-height: 1.34;
}

.timeline {
  padding: 72px 24px 96px;
  border-bottom: 1px solid var(--line);
}

.timeline-head {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(280px, 520px);
  align-items: end;
  gap: 40px;
  margin-bottom: 54px;
}

.timeline-head h2 {
  margin: 0;
  font-size: 138px;
  line-height: 0.84;
  font-weight: 950;
}

.timeline-head p {
  margin: 0;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.35;
}

.timeline-list {
  position: relative;
  border-top: 1px solid var(--line);
}

.timeline-item {
  display: grid;
  grid-template-columns: 96px minmax(230px, 0.58fr) minmax(360px, 1fr);
  column-gap: 42px;
  row-gap: 16px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.timeline-item span,
.credential-row span {
  display: block;
  color: var(--accent);
  font-size: 14px;
  font-weight: 950;
}

.timeline-item h3,
.credential-row h3 {
  margin: 0;
  font-size: 31px;
  line-height: 1;
}

.timeline-item p {
  max-width: 760px;
}

.timeline-item p,
.credential-row p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.42;
}

.timeline-item a,
.note-row a {
  color: var(--paper);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.12em;
}

.credential-link {
  display: table;
  width: fit-content;
  margin-top: 8px;
  color: var(--paper);
  font-size: 11px;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
}

.credential-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 3px;
  background: currentColor;
  transform: scaleX(0.42);
  transform-origin: left;
  transition: transform 180ms ease;
}

.credential-link:hover::after {
  transform: scaleX(1);
}

.timeline-item ul {
  grid-column: 3;
  margin: 16px 0 0;
  padding-left: 0;
  list-style: none;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.52;
}

.timeline-item li {
  position: relative;
  padding-left: 18px;
}

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

.timeline-item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.certifications {
  padding: 78px 24px 96px;
  border-bottom: 1px solid var(--line);
}

.credentials-head {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 44px;
}

.credentials-head h2 {
  margin: 0;
  font-size: 118px;
  line-height: 0.84;
  font-weight: 950;
}

.credentials-head sup {
  top: 0;
  color: var(--paper);
  font-size: 20px;
  font-weight: 950;
}

.credentials-table {
  border-top: 1px solid var(--line);
}

.credentials-labels,
.credential-row {
  display: grid;
  grid-template-columns: 64px minmax(210px, 0.78fr) 126px minmax(210px, 0.7fr) minmax(320px, 1fr);
  gap: 22px;
  align-items: center;
}

.credentials-labels {
  padding: 10px 0;
  color: var(--paper);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.credentials-labels span:first-child {
  grid-column: 2;
}

.credential-row {
  min-height: 148px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.credential-row h3 {
  margin: 0;
  font-size: 22px;
}

.credential-row small {
  display: block;
  margin-top: 7px;
  color: rgba(241, 240, 234, 0.54);
  font-size: 11px;
  line-height: 1.25;
}

.credential-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.credential-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid rgba(241, 240, 234, 0.16);
  border-radius: 999px;
  background: rgba(241, 240, 234, 0.035);
  color: var(--paper);
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.credential-proof span:hover {
  border-color: rgba(216, 255, 79, 0.56);
  background: rgba(216, 255, 79, 0.09);
  transform: translateY(-2px);
}

.certificate-note {
  display: grid;
  grid-template-columns: 140px minmax(280px, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.certificate-note span {
  color: var(--accent);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.certificate-note p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.4;
}

.stack-orbit {
  min-height: 1120px;
  padding: 86px 24px 96px;
  border-bottom: 1px solid var(--line);
}

.stack-stage {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(520px, 1fr);
  gap: 70px;
  align-items: center;
  min-height: 860px;
}

.stack-sticky h2 {
  margin: 0;
  font-size: 128px;
  line-height: 0.84;
  font-weight: 950;
}

.stack-sticky p {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.34;
}

.stack-space {
  position: relative;
  min-height: 680px;
  perspective: 1100px;
}

.stack-card {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.5);
  animation: orbitDrift 11s ease-in-out infinite;
}

.stack-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  padding: 26px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(241, 240, 234, 0.09), rgba(241, 240, 234, 0.018)),
    radial-gradient(circle at 18% 18%, rgba(216, 255, 79, 0.16), transparent 34%),
    var(--panel);
  transform:
    rotateX(calc(var(--tilt-y, 0) * -0.55deg))
    rotateY(calc(var(--tilt-x, 0) * 0.55deg));
  transform-style: preserve-3d;
}

.stack-panel::after {
  content: "";
  position: absolute;
  inset: auto -20% -30% 28%;
  height: 180px;
  background: radial-gradient(circle, rgba(216, 255, 79, 0.14), transparent 64%);
  pointer-events: none;
}

.stack-panel span {
  position: relative;
  z-index: 1;
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.stack-panel h3 {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 40px 0 18px;
  color: var(--paper);
  font-size: 44px;
  line-height: 0.94;
}

.stack-panel p {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 0;
  color: rgba(241, 240, 234, 0.74);
  font-size: 18px;
  line-height: 1.36;
}

.stack-card-a {
  left: 4%;
  top: 12%;
  width: 58%;
}

.stack-card-b {
  right: 0;
  top: 34%;
  width: 42%;
  animation-delay: -2s;
}

.stack-card-c {
  left: 23%;
  bottom: 5%;
  width: 48%;
  animation-delay: -4s;
}

.stack-card-d {
  right: 10%;
  bottom: -8%;
  width: 35%;
  min-height: 220px;
  animation-delay: -5.5s;
}

.stack-chip {
  position: absolute;
  display: inline-grid;
  place-items: center;
  min-width: 112px;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(3, 3, 3, 0.74);
  color: var(--paper);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  animation: chipDrift 8s ease-in-out infinite;
}

.chip-a {
  left: 0;
  bottom: 23%;
}

.chip-b {
  right: 18%;
  top: 7%;
  animation-delay: -1.5s;
}

.chip-c {
  left: 44%;
  top: 46%;
  animation-delay: -3s;
}

.chip-d {
  right: 7%;
  bottom: 18%;
  animation-delay: -4.5s;
}

.availability,
.lab-notes,
.faq-section,
.final-wrap {
  padding: 86px 24px 108px;
  border-bottom: 1px solid var(--line);
}

.availability-head {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(320px, 0.5fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 64px;
}

.availability-head h2 {
  margin: 0;
  font-size: 132px;
  line-height: 0.84;
  font-weight: 950;
}

.availability-head p {
  margin: 0;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.34;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.track-card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
}

.track-featured {
  background:
    linear-gradient(180deg, rgba(241, 240, 234, 0.08), rgba(241, 240, 234, 0.025)),
    var(--panel);
}

.track-card span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
}

.track-card h3 {
  margin: 70px 0 16px;
  font-size: 52px;
  line-height: 0.92;
}

.track-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.36;
}

.track-card ul {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  color: var(--paper);
  font-size: 15px;
  font-weight: 850;
}

.track-card li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.notes-marquee {
  overflow: hidden;
  contain: paint;
  margin: 64px 0 70px;
}

.notes-marquee .marquee-track {
  animation-duration: 17s;
}

.notes-marquee h2 {
  margin: 0;
  padding-right: 42px;
  color: var(--paper);
  font-size: 152px;
  line-height: 1;
  font-weight: 950;
  white-space: nowrap;
}

.note-list {
  display: grid;
  gap: 40px;
}

.note-row {
  display: grid;
  grid-template-columns: minmax(320px, 0.55fr) minmax(360px, 1fr);
  gap: 46px;
  align-items: end;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.note-row:nth-child(even) {
  grid-template-columns: minmax(360px, 1fr) minmax(320px, 0.55fr);
}

.note-row:nth-child(even) img {
  order: 2;
}

.note-row img {
  aspect-ratio: 1.55;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.note-row span {
  display: block;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.note-row h3 {
  margin: 0;
  font-size: 54px;
  line-height: 0.98;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.6fr) minmax(520px, 1fr);
  gap: 70px;
  align-items: start;
}

.faq-grid h2 {
  position: sticky;
  top: 36px;
  margin: 0;
  font-size: 124px;
  line-height: 0.84;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 112px;
  color: var(--paper);
  font-size: 28px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  color: var(--accent);
  font-size: 14px;
  font-weight: 950;
}

.faq-item p {
  max-width: 780px;
  margin: 0;
  padding: 0 0 30px 92px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.42;
}

.final-wrap {
  overflow: hidden;
}

.final-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.62fr) minmax(420px, 0.8fr);
  gap: 70px;
  align-items: end;
  min-height: 620px;
}

.final-copy {
  display: grid;
  gap: 8px;
}

.final-copy span {
  color: var(--muted);
  font-size: 22px;
  font-weight: 850;
}

.final-copy p {
  max-width: 760px;
  margin: 54px 0 0;
  color: var(--paper);
  font-size: 40px;
  line-height: 1.08;
  font-weight: 900;
}

.final-media img {
  aspect-ratio: 1.35;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.final-name {
  margin-top: 70px;
  color: var(--paper);
  font-size: 220px;
  line-height: 0.78;
  font-weight: 950;
  white-space: nowrap;
}

.final-katakana {
  margin-top: 18px;
  color: var(--accent);
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
}

.contact {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  background: var(--bg);
  color: var(--paper);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.98) 0%, rgba(3, 3, 3, 0.74) 46%, rgba(3, 3, 3, 0.18) 100%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.18) 0%, rgba(3, 3, 3, 0.82) 100%),
    url("./assets/generated/ai-hero.png") center / cover;
  opacity: 0.96;
  transform: scale(1.03);
}

.contact::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(241, 240, 234, 0.12);
  border-radius: 8px;
  pointer-events: none;
}

.contact > * {
  position: relative;
  z-index: 1;
}

.contact-marquee {
  overflow: hidden;
  contain: paint;
  margin-bottom: 48px;
}

.contact-marquee .marquee-track {
  animation: none;
}

.contact-marquee span {
  display: block;
  padding-right: 42px;
  font-size: 168px;
  line-height: 1;
  font-weight: 950;
  white-space: nowrap;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 50px;
  align-items: end;
}

.contact h2 {
  max-width: 900px;
  margin: 0;
  font-size: 82px;
  line-height: 0.94;
  font-weight: 900;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact .button {
  width: 100%;
  min-width: 0;
  border-color: rgba(241, 240, 234, 0.82);
  color: var(--paper);
  backdrop-filter: blur(10px);
  background: rgba(3, 3, 3, 0.18);
}

.contact .rolling-link::after {
  color: var(--paper);
}

.button span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
}

.button-highlight {
  border-color: rgba(216, 255, 79, 0.88);
  background: rgba(216, 255, 79, 0.1);
  color: var(--paper);
  box-shadow:
    0 0 0 1px rgba(216, 255, 79, 0.24),
    0 22px 68px rgba(216, 255, 79, 0.14);
}

.button-highlight::before {
  background: var(--accent);
}

.button-highlight:hover {
  color: var(--bg);
}

.button.rolling-link {
  color: inherit;
}

.button.rolling-link::after {
  content: none;
}

.button.rolling-link:hover {
  color: var(--bg);
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--paper);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button:hover::before {
  transform: scaleY(1);
}

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

.contact .button::before {
  background: var(--paper);
}

.contact .button:hover {
  color: var(--bg);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 24px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer a {
  color: var(--ink);
  font-weight: 850;
}

.hire-dialog {
  width: min(920px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  margin: auto;
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(241, 240, 234, 0.18);
  border-radius: 8px;
  background: #070706;
  color: var(--paper);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.72);
}

.hire-dialog::backdrop {
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(10px);
}

.hire-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(320px, 1fr);
  gap: 34px;
  max-height: calc(100vh - 32px);
  overflow: auto;
  padding: 34px;
  background:
    radial-gradient(circle at 14% 12%, rgba(216, 255, 79, 0.13), transparent 30%),
    linear-gradient(135deg, rgba(241, 240, 234, 0.06), rgba(241, 240, 234, 0.015));
}

.hire-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(241, 240, 234, 0.24);
  border-radius: 999px;
  background: rgba(3, 3, 3, 0.44);
  color: var(--paper);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.hire-copy span,
.hire-form label span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.hire-copy h2 {
  margin: 18px 0 22px;
  font-size: 64px;
  line-height: 0.92;
}

.hire-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.42;
}

.hire-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hire-form input,
.hire-form select,
.hire-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(241, 240, 234, 0.18);
  border-radius: 8px;
  background: rgba(3, 3, 3, 0.48);
  color: var(--paper);
  font: inherit;
  font-size: 15px;
  outline: none;
  padding: 13px 14px;
}

.hire-form textarea {
  resize: vertical;
}

.hire-form input:focus,
.hire-form select:focus,
.hire-form textarea:focus {
  border-color: rgba(216, 255, 79, 0.7);
  box-shadow: 0 0 0 3px rgba(216, 255, 79, 0.08);
}

.hire-form input[name="_honey"] {
  position: absolute;
  left: -9999px;
}

.hire-wide,
.hire-actions {
  grid-column: 1 / -1;
}

.hire-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 6px;
}

.hire-actions .button {
  width: 100%;
}

.project-detail-body {
  min-width: 320px;
}

.project-header {
  margin-bottom: 40px;
}

.project-detail-shell {
  overflow: hidden;
}

.case-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.38fr);
  gap: 58px;
  align-items: end;
  padding: 78px 24px 64px;
  border-bottom: 1px solid var(--line);
}

.case-title-block > span,
.case-summary p:first-child {
  display: block;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.case-title-block h1 {
  max-width: 1040px;
  margin: 0;
  color: var(--paper);
  font-size: 128px;
  line-height: 0.86;
  font-weight: 950;
  overflow-wrap: break-word;
}

.case-summary {
  max-width: 520px;
}

.case-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.34;
}

.case-meta {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 0.86fr) minmax(0, 1.12fr) auto;
  gap: 26px;
  align-items: end;
  padding: 32px 24px;
  border-bottom: 1px solid var(--line);
}

.case-meta div {
  display: grid;
  gap: 8px;
}

.case-meta span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.case-meta strong {
  color: var(--paper);
  font-size: 20px;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.case-github {
  min-width: 170px;
}

.case-hero-media {
  margin-top: 72px;
  margin-bottom: 92px;
}

.case-hero-media img {
  max-height: 760px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.46);
}

.case-overview,
.case-breakdown,
.case-gallery,
.more-works {
  padding: 82px 24px 96px;
  border-bottom: 1px solid var(--line);
}

.case-overview-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.68fr) minmax(360px, 0.62fr);
  gap: 64px;
  align-items: start;
}

.case-overview-grid h2 {
  max-width: 860px;
  margin: 0;
  color: var(--paper);
  font-size: 78px;
  line-height: 0.94;
}

.case-overview-grid p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.36;
}

.case-breakdown {
  display: grid;
  gap: 0;
}

.case-row {
  display: grid;
  grid-template-columns: 72px minmax(210px, 0.34fr) minmax(420px, 1fr);
  gap: 38px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.case-row:first-child {
  border-top: 1px solid var(--line);
}

.case-row span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
}

.case-row h3 {
  margin: 0;
  color: var(--paper);
  font-size: 38px;
  line-height: 0.96;
}

.case-row p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.38;
}

.case-gallery {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 34px;
  align-items: end;
}

.case-gallery img {
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.case-gallery img:first-child {
  grid-row: span 2;
  min-height: 760px;
}

.case-gallery img:not(:first-child) {
  min-height: 360px;
}

.more-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.more-project-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.more-project-card img {
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.9);
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 420ms ease;
}

.more-project-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.92) saturate(1.02);
}

.more-project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(0, 0, 0, 0.84));
}

.more-project-card span,
.more-project-card b {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
}

.more-project-card span {
  bottom: 52px;
  color: var(--paper);
  font-size: 28px;
  font-weight: 950;
}

.more-project-card b {
  bottom: 22px;
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
}

.project-contact {
  margin-top: 0;
}

.project-contact .contact-marquee {
  margin-bottom: 34px;
}

.project-contact .contact-marquee span {
  max-width: 1040px;
  font-size: 118px;
  line-height: 0.9;
  white-space: normal;
}

.project-contact .contact-grid {
  align-items: center;
}

.project-contact h2 {
  max-width: 780px;
  font-size: 66px;
  line-height: 0.98;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 42px, 0) scale(0.975);
  filter: blur(6px);
  transition:
    opacity 520ms ease,
    filter 680ms ease,
    transform 780ms cubic-bezier(0.17, 1.18, 0.32, 1);
  will-change: opacity, filter, transform;
}

body.scroll-up .reveal {
  transform: translate3d(0, -34px, 0) scale(0.975);
}

body.scroll-down .reveal {
  transform: translate3d(0, 42px, 0) scale(0.975);
}

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

.reveal.is-visible:nth-child(2n) {
  transition-duration: 860ms;
}

.reveal.is-visible:nth-child(3n) {
  transition-duration: 940ms;
}

.site-header.reveal,
.hobbies-marquee.reveal {
  opacity: 1;
  transform: none !important;
  filter: none;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes loadbar {
  from {
    transform: translateX(-90%);
  }

  to {
    transform: translateX(220%);
  }
}

@keyframes imageFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }

  50% {
    transform: translate3d(0, -18px, 0) rotate(1deg);
  }
}

@keyframes orbitDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(-6deg);
  }

  50% {
    transform: translate3d(0, -26px, 0) rotateX(4deg) rotateY(8deg);
  }
}

@keyframes chipDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -18px, 0);
  }
}

@keyframes streakPulse {
  0%,
  100% {
    opacity: 0.42;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

@media (max-width: 980px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  .site-header,
  .hero,
  .case-hero,
  .case-meta,
  .case-overview-grid,
  .case-row,
  .case-gallery,
  .more-project-grid,
  .profile-grid,
  .featured-copy,
  .visual-partners-head,
  .brand-partner-stage,
  .process-layout,
  .stack-stage,
  .availability-head,
  .faq-grid,
  .final-grid,
  .about-grid,
  .timeline-head,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    gap: 20px;
  }

  .hero {
    gap: 36px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .case-title-block h1 {
    font-size: 96px;
  }

  .case-summary p {
    max-width: 680px;
  }

  .case-meta {
    align-items: start;
  }

  .case-gallery img:first-child,
  .case-gallery img:not(:first-child) {
    min-height: 420px;
  }

  .name-marquee span {
    font-size: 188px;
  }

  .profile-copy h2,
  .contact h2 {
    font-size: 62px;
  }

  .cloud-row span {
    font-size: 72px;
  }

  .title-marquee h2,
  .proof-marquee h2,
  .notes-marquee h2,
  .process-sticky h2,
  .stack-sticky h2,
  .availability-head h2,
  .faq-grid h2,
  .services-head h2,
  .timeline-head h2 {
    font-size: 104px;
  }

  .service-row h3 {
    font-size: 44px;
  }

  .about h2,
  .credentials-head h2 {
    font-size: 74px;
  }

  .contact-marquee span {
    font-size: 118px;
  }

  .hero-image {
    justify-self: start;
  }

  .discipline-strip {
    position: static;
    grid-column: 1;
  }

  .profile-grid {
    gap: 38px;
  }

  .profile-photo-stage {
    min-height: auto;
  }

  .profile-photo-card img {
    min-height: 560px;
    height: 620px;
  }

  .project-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 260px;
    gap: 28px;
    padding-top: 86px;
    padding-bottom: 104px;
  }

  .project-large,
  .project-wide,
  .project-tall,
  .project-small:nth-of-type(4),
  .project-small:nth-of-type(5) {
    grid-column: auto;
    grid-row: span 2;
  }

  .project-large {
    grid-column: 1 / -1;
  }

  .service-row {
    grid-template-columns: 52px 1fr;
  }

  .service-row p {
    grid-column: 2;
  }

  .process-sticky {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .process-orbit {
    min-height: 300px;
  }

  .process-step {
    grid-template-columns: 52px minmax(180px, 0.8fr) minmax(260px, 1fr);
  }

  .interest-rollover,
  .coding-float {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .interest-rollover {
    min-height: auto;
    gap: 18px;
  }

  .interest-card,
  .interest-card:nth-child(even),
  .interest-card:nth-child(3n) {
    min-height: 360px;
    margin: 0;
    transform: none;
  }

  .interest-card img {
    height: 360px;
  }

  .interest-note {
    grid-column: 1;
    max-width: 620px;
    margin-top: -20px;
  }

  .hobbies-marquee {
    margin-top: -20px;
    margin-bottom: 42px;
  }

  .interest-card span {
    bottom: 126px;
  }

  .interest-card p {
    opacity: 1;
    transform: none;
  }

  .coding-card,
  .coding-card-offset {
    margin-top: 0;
  }

  .brand-partner-stage h2 {
    position: relative;
    top: auto;
    font-size: 74px;
  }

  .brand-partner-row {
    grid-template-columns: 48px 1fr 140px;
  }

  .brand-partner-row p {
    grid-column: 2 / -1;
  }

  .stack-orbit {
    min-height: auto;
  }

  .stack-stage,
  .faq-grid h2 {
    position: relative;
    top: auto;
  }

  .stack-space {
    min-height: 560px;
  }

  .stack-panel {
    min-height: 220px;
    padding: 22px;
  }

  .stack-panel h3 {
    font-size: 34px;
  }

  .stack-card-d {
    right: 4%;
    bottom: -2%;
    width: 42%;
  }

  .track-grid {
    grid-template-columns: 1fr;
  }

  .track-card {
    min-height: 420px;
  }

  .note-row,
  .note-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .note-row:nth-child(even) img {
    order: 0;
  }

  .note-row h3 {
    font-size: 42px;
  }

  .final-name {
    font-size: 132px;
  }

  .final-katakana {
    font-size: 30px;
  }

  .timeline-item,
  .credential-row {
    grid-template-columns: 72px minmax(180px, 0.72fr) minmax(300px, 1fr);
    column-gap: 28px;
  }

  .timeline-item ul {
    grid-column: 3;
  }

  .credentials-labels,
  .credential-row {
    grid-template-columns: 52px minmax(180px, 0.8fr) 90px minmax(150px, 0.7fr) minmax(190px, 0.9fr);
  }

  .credential-proof {
    justify-content: flex-start;
  }

  .credential-proof span {
    min-height: 28px;
    padding: 6px 9px;
    font-size: 10px;
  }

  .hire-panel {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 30px;
  }

  .hire-copy h2 {
    max-width: 720px;
    font-size: 54px;
  }

  .hire-copy p {
    max-width: 640px;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: 100%;
  }

  .cursor {
    display: none;
  }

  .site-header,
  .hero,
  .case-hero,
  .case-meta,
  .case-overview,
  .case-breakdown,
  .case-gallery,
  .more-works,
  .profile,
  .visual-partners,
  .brand-partners,
  .logo-cloud,
  .featured-intro,
  .project-grid,
  .services,
  .process,
  .proof,
  .stack-orbit,
  .availability,
  .lab-notes,
  .faq-section,
  .final-wrap,
  .about,
  .timeline,
  .certifications,
  .contact,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-kicker,
  .role-strip,
  .service-words,
  .discipline-strip {
    grid-template-columns: 1fr;
  }

  .section-kicker {
    gap: 8px;
    margin-bottom: 42px;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .case-title-block h1 {
    font-size: 58px;
  }

  .case-hero {
    gap: 28px;
    padding-top: 46px;
    padding-bottom: 42px;
  }

  .case-summary p,
  .case-overview-grid p,
  .case-row p {
    font-size: 18px;
  }

  .case-meta {
    gap: 22px;
  }

  .case-overview-grid h2 {
    font-size: 46px;
  }

  .case-row {
    gap: 14px;
  }

  .case-row h3 {
    font-size: 34px;
  }

  .case-hero-media {
    margin-top: 42px;
    margin-bottom: 54px;
  }

  .case-hero-media img,
  .case-gallery img:first-child,
  .case-gallery img:not(:first-child) {
    min-height: 280px;
  }

  .more-project-card {
    min-height: 280px;
  }

  .name-marquee span {
    font-size: 112px;
  }

  .profile-copy h2 {
    font-size: 42px;
  }

  .profile-photo-stage {
    min-height: auto;
  }

  .profile-photo-card {
    width: 100%;
  }

  .profile-photo-card img {
    min-height: 480px;
    height: 540px;
  }

  .loader span,
  .cloud-row span,
  .title-marquee h2,
  .proof-marquee h2,
  .notes-marquee h2,
  .process-sticky h2,
  .stack-sticky h2,
  .availability-head h2,
  .visual-partners-head h2,
  .faq-grid h2,
  .services-head h2,
  .about h2,
  .contact h2 {
    font-size: 54px;
  }

  .contact-marquee span {
    font-size: 76px;
  }

  .service-row h3 {
    font-size: 34px;
  }

  .process-layout {
    gap: 36px;
  }

  .process-sticky p {
    font-size: 18px;
  }

  .process-orbit {
    min-height: 260px;
  }

  .orbit-main {
    left: 0;
    width: 82%;
  }

  .orbit-mini {
    width: 128px;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: auto;
    padding: 24px 0;
  }

  .process-step h3 {
    font-size: 32px;
  }

  .interest-rollover,
  .coding-float {
    grid-template-columns: 1fr;
  }

  .interest-card,
  .interest-card:nth-child(even),
  .interest-card:nth-child(3n) {
    min-height: 320px;
    transform: none;
  }

  .interest-card img {
    height: 320px;
  }

  .interest-note {
    margin-top: 0;
    font-size: 13px;
  }

  .hobbies-marquee {
    margin: 8px 0 30px;
    padding: 12px 0;
  }

  .hobbies-marquee span {
    padding-right: 30px;
    font-size: 30px;
  }

  .interest-card span {
    bottom: 132px;
    font-size: 30px;
  }

  .interest-card p {
    bottom: 54px;
    font-size: 12px;
  }

  .coding-card,
  .coding-card-offset {
    min-height: 320px;
    margin-top: 0;
  }

  .coding-card p {
    font-size: 21px;
  }

  .streak-photo {
    min-height: 150px;
  }

  .brand-partner-stage h2 {
    font-size: 54px;
  }

  .brand-partner-row {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
  }

  .brand-partner-row p {
    grid-column: auto;
  }

  .brand-partner-row h3 {
    font-size: 34px;
  }

  .brand-partner-row img {
    width: 70%;
  }

  .stack-stage {
    min-height: auto;
    gap: 36px;
  }

  .stack-sticky p,
  .availability-head p {
    font-size: 18px;
  }

  .stack-space {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
  }

  .stack-card,
  .stack-card-a,
  .stack-card-b,
  .stack-card-c,
  .stack-card-d {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 210px;
    animation-duration: 9s;
  }

  .stack-panel h3 {
    margin-top: 28px;
    font-size: 30px;
  }

  .stack-panel p {
    font-size: 16px;
  }

  .stack-chip {
    position: static;
    min-width: 86px;
    min-height: 36px;
    font-size: 11px;
  }

  .track-grid {
    gap: 18px;
  }

  .track-card {
    min-height: 340px;
    padding: 22px;
  }

  .track-card h3 {
    margin-top: 42px;
    font-size: 38px;
  }

  .note-list {
    gap: 28px;
  }

  .note-row {
    gap: 18px;
    padding-bottom: 28px;
  }

  .note-row h3 {
    font-size: 30px;
  }

  .faq-grid {
    gap: 34px;
  }

  .faq-item summary {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    min-height: 86px;
    font-size: 20px;
  }

  .faq-item p {
    padding-left: 54px;
  }

  .final-grid {
    gap: 34px;
    min-height: auto;
  }

  .final-copy p {
    margin-top: 36px;
    font-size: 28px;
  }

  .final-name {
    font-size: 68px;
  }

  .final-katakana {
    font-size: 22px;
  }

  .cloud-row,
  .cloud-row:nth-child(2) {
    justify-content: flex-start;
    transform: none;
    gap: 18px;
    flex-wrap: wrap;
  }

  .project-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 340px;
    gap: 28px;
    padding-top: 72px;
    padding-bottom: 92px;
  }

  .project-large,
  .project-wide,
  .project-tall,
  .project-small:nth-of-type(4),
  .project-small:nth-of-type(5) {
    grid-column: 1;
    grid-row: span 1;
  }

  .project-card span,
  .project-card b {
    bottom: 22px;
    font-size: 21px;
  }

  .project-card span {
    left: 20px;
    max-width: calc(100% - 90px);
  }

  .project-card b {
    right: 20px;
  }

  .project-card em {
    left: 20px;
    right: 20px;
    bottom: 62px;
    font-size: 14px;
    opacity: 1;
    transform: none;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .services-head {
    flex-wrap: wrap;
  }

  .service-row p {
    grid-column: 1;
  }

  .timeline-list,
  .credentials-table {
    grid-template-columns: 1fr;
  }

  .timeline-head h2,
  .credentials-head h2 {
    font-size: 58px;
  }

  .timeline-item {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 0;
  }

  .timeline-item p,
  .timeline-item ul {
    grid-column: 1;
  }

  .timeline-item ul {
    margin-top: 4px;
  }

  .credentials-labels {
    display: none;
  }

  .credential-row {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }

  .credential-proof {
    justify-content: flex-start;
    margin-top: 10px;
  }

  .certificate-note {
    grid-template-columns: 1fr;
  }

  .contact-links {
    width: 100%;
  }

  .contact .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }

  .hire-dialog {
    width: calc(100vw - 18px);
    max-height: calc(100dvh - 18px);
  }

  .hire-panel {
    max-height: calc(100dvh - 18px);
    padding: 24px 16px 18px;
  }

  .hire-copy h2 {
    margin-top: 14px;
    font-size: 38px;
  }

  .hire-copy p {
    font-size: 15px;
  }

  .hire-close {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
  }

  .hire-form {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hire-form input,
  .hire-form select,
  .hire-form textarea {
    min-height: 48px;
  }

  .hire-actions {
    grid-template-columns: 1fr;
  }
}

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

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