:root {
  --surface-bg: #ffffff;
  --surface-ink: #11110f;
  --surface-muted: #706c63;
  --surface-green: #148e4b;
  --content-width: 728px;
  --layout-gutter: clamp(28px, 7.2vw, 144px);
  --page-bg: #ffffff;
  --page-tint: #ffffff;
  --fade-to: #ffffff;
  --sky-opacity: 0.96;
  --effects-opacity: 0;
  --sky-filter: saturate(1.34) contrast(1.04) brightness(1.05);
  --wash-a: rgba(34, 157, 255, 0.72);
  --wash-b: rgba(114, 202, 255, 0.56);
  --wash-c: rgba(207, 237, 255, 0.42);
  --wash-d: rgba(255, 255, 255, 0.98);
  --focal-a: rgba(255, 255, 255, 0.58);
  --focal-b: rgba(255, 255, 255, 0);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-feature-settings: "liga" 1, "calt" 1;
  font-kerning: normal;
  text-rendering: geometricPrecision;
}

button,
input {
  font: inherit;
}

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

.sky-surface {
  position: relative;
  min-height: 100svh;
  overflow-x: clip;
  background: var(--page-bg);
  color: var(--surface-ink);
  isolation: isolate;
  transition: background 220ms ease, color 220ms ease;
}

.site-sky {
  position: absolute;
  top: calc(env(safe-area-inset-top, 0px) * -1);
  left: 0;
  z-index: -1;
  width: 100vw;
  height: calc(clamp(520px, 61svh, 680px) + env(safe-area-inset-top, 0px));
  overflow: hidden;
  pointer-events: none;
  opacity: var(--sky-opacity);
  -webkit-mask-image:
    linear-gradient(180deg, #000 0%, #000 35%, rgba(0, 0, 0, 0.9) 49%, rgba(0, 0, 0, 0.48) 66%, rgba(0, 0, 0, 0.14) 84%, rgba(0, 0, 0, 0) 100%);
  mask-image:
    linear-gradient(180deg, #000 0%, #000 35%, rgba(0, 0, 0, 0.9) 49%, rgba(0, 0, 0, 0.48) 66%, rgba(0, 0, 0, 0.14) 84%, rgba(0, 0, 0, 0) 100%);
}

.site-sky__canvas,
.site-sky__fallback,
.site-sky__effects,
.site-sky__wash {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.site-sky__canvas {
  z-index: 1;
  filter: var(--sky-filter);
}

.site-sky__effects {
  z-index: 3;
  opacity: var(--effects-opacity);
}

.site-sky__fallback {
  z-index: 0;
  background:
    radial-gradient(58% 34% at 53% 48%, var(--focal-a), var(--focal-b) 62%),
    linear-gradient(180deg, #299dff 0%, #86d2ff 56%, var(--fade-to) 100%);
}

.site-sky__wash {
  z-index: 2;
  background:
    radial-gradient(44% 34% at 52% 18%, var(--focal-a) 0%, var(--focal-b) 70%),
    radial-gradient(82% 48% at 50% 2%, var(--wash-a) 0%, rgba(255, 255, 255, 0) 72%),
    radial-gradient(96% 58% at 50% 18%, var(--wash-b) 0%, rgba(255, 255, 255, 0) 76%),
    linear-gradient(180deg, var(--wash-a) 0%, var(--wash-b) 28%, var(--wash-c) 56%, var(--wash-d) 78%, var(--fade-to) 100%);
}

.site-sky__wash::after {
  position: absolute;
  inset: -1px 0 -80px;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0 38%, color-mix(in srgb, var(--fade-to) 18%, transparent) 55%, color-mix(in srgb, var(--fade-to) 64%, transparent) 78%, var(--fade-to) 100%);
}

.motion-toggle {
  position: relative;
  width: 26px;
  height: 14px;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid rgba(17, 17, 15, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 6px 24px rgba(17, 17, 15, 0.08);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.motion-toggle::after {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--surface-ink);
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.motion-toggle[aria-pressed="true"]::after {
  opacity: 0.56;
  transform: translateX(12px);
}

.sky-meta-control {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 41;
}

.sky-meta-trigger {
  position: relative;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--surface-ink);
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.sky-meta-trigger:hover,
.sky-meta-trigger:focus-visible {
  transform: scale(1.08);
}

.sky-meta-trigger:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 5px;
}

.sky-meta-pulse {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 14px color-mix(in srgb, currentColor 36%, transparent);
}

.sky-meta-pulse::after {
  position: absolute;
  inset: -7px;
  border: 1px solid currentColor;
  border-radius: inherit;
  content: "";
  opacity: 0.42;
  animation: sky-meta-pulse 1800ms ease-out infinite;
}

.sky-meta-trigger[aria-expanded="true"] .sky-meta-pulse::after {
  animation: none;
  opacity: 0;
}

@keyframes sky-meta-pulse {
  0% {
    opacity: 0.45;
    transform: scale(0.45);
  }

  80%,
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

.sky-meta-trigger svg,
.sky-icon-button svg,
.sky-reset-button svg,
.sky-city-search svg,
.sky-sheet-meta svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.sky-meta-backdrop {
  position: fixed;
  right: 18px;
  bottom: 50px;
  z-index: 40;
  padding: 0;
  background: transparent;
  pointer-events: none;
}

.sky-meta-backdrop[hidden] {
  display: none;
}

.sky-meta-sheet {
  display: grid;
  gap: 14px;
  width: min(342px, calc(100vw - 32px));
  padding: 16px;
  border: 1px solid rgba(247, 241, 232, 0.1);
  border-radius: 10px;
  background: rgba(13, 23, 48, 0.88);
  color: #f7f1e8;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.sky-meta-sheet__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.sky-meta-sheet__header p,
.sky-meta-sheet__header span,
.sky-search-status {
  margin: 0;
}

.sky-meta-sheet__header p {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
}

.sky-meta-sheet__header span,
.sky-search-status,
.sky-sheet-meta,
.sky-motion-control,
.sky-time-control span,
.sky-time-control output {
  color: rgba(247, 241, 232, 0.58);
  font-size: 11px;
  font-weight: 500;
}

.sky-sheet-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-transform: capitalize;
}

.sky-sheet-meta span {
  min-width: 0;
}

.sky-icon-button {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(247, 241, 232, 0.72);
  cursor: pointer;
}

.sky-city-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.sky-city-search label {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 11px;
  border: 1px solid rgba(247, 241, 232, 0.08);
  border-radius: 8px;
  background: rgba(247, 241, 232, 0.06);
  color: rgba(247, 241, 232, 0.5);
}

.sky-city-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: #f7f1e8;
  font-size: 12px;
  font-weight: 500;
  outline: 0;
}

.sky-city-search input::placeholder {
  color: rgba(247, 241, 232, 0.38);
}

.sky-city-search button,
.sky-reset-button {
  min-height: 36px;
  border: 1px solid rgba(247, 241, 232, 0.08);
  border-radius: 8px;
  background: rgba(247, 241, 232, 0.06);
  color: rgba(247, 241, 232, 0.76);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.sky-city-search button {
  padding: 0 12px;
}

.sky-time-control {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.sky-time-control input {
  grid-column: 1 / -1;
  width: 100%;
  accent-color: #1f8bff;
}

.sky-reset-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  padding: 0 12px;
}

.sky-sheet-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sky-motion-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.site-grid {
  display: grid;
  grid-template-columns:
    minmax(var(--layout-gutter), 1fr)
    minmax(0, var(--content-width))
    minmax(var(--layout-gutter), 1fr);
  width: 100%;
}

.site-stage {
  min-height: 220svh;
}

.hero-anchor {
  position: relative;
  min-height: 94svh;
  padding-top: clamp(330px, 34svh, 430px);
  padding-bottom: 140px;
  overflow: hidden;
}

.hero-layout {
  position: relative;
  align-items: start;
}

.hero-copy {
  position: relative;
  z-index: 10;
  grid-column: 2;
  max-width: var(--content-width);
}

.hero-illustration {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 0 clamp(52px, 6vw, 76px);
}

.hero-illustration img {
  display: block;
  height: auto;
}

.hero-scene {
  --scene-line: color-mix(in srgb, var(--surface-ink) 58%, transparent);
  --scene-marker: color-mix(in srgb, var(--surface-muted) 58%, transparent);
  --scene-line-thickness: 3px;
  position: relative;
  width: 100%;
  aspect-ratio: 1365 / 820;
  color: var(--scene-line);
}

.hero-dialogue {
  position: absolute;
  z-index: 8;
  color: var(--surface-ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 10px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
  text-align: center;
  transition: color 220ms ease, opacity 520ms ease, transform 520ms ease;
}

.hero-dialogue--pranshu {
  top: 11.8%;
  left: 14.2%;
  min-width: 190px;
}

.hero-dialogue--bestie {
  top: 18%;
  right: 5.4%;
  display: grid;
  justify-items: center;
  gap: 6px;
  min-width: 215px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.hero-dialogue__line {
  margin: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.hero-dialogue__line--invite {
  position: absolute;
  top: calc(100% + 30px);
  left: 50%;
  width: 100%;
  transform: translate(-50%, 12px);
}

.hero-dialogue__line--setup {
  position: absolute;
  left: 50%;
  top: 0;
  width: 100%;
  transform: translate(-50%, 12px);
}

.hero-scene:not(.is-invite) .hero-dialogue__line--intro,
.hero-scene.is-invite .hero-dialogue__line--intro,
.hero-scene.is-invite .hero-dialogue__line--invite {
  opacity: 1;
}

.hero-scene:not(.is-invite) .hero-dialogue__line--intro {
  transform: translateY(0);
}

.hero-scene.is-invite .hero-dialogue__line--intro {
  transform: translateY(-12px);
}

.hero-scene.is-invite .hero-dialogue__line--invite {
  transform: translate(-50%, 0);
}

.hero-scene.is-invite .hero-dialogue--bestie {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 180ms;
}

.hero-scene.is-yes-setup .hero-dialogue__line--setup {
  opacity: 1;
  transform: translate(-50%, 0);
}

.hero-scene.is-yes-setup .hero-dialogue__line--intro,
.hero-scene.is-yes-setup .hero-dialogue__line--invite,
.hero-scene.is-yes-setup .hero-dialogue--bestie {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-14px);
}

.hero-choice {
  appearance: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-style: italic;
  letter-spacing: inherit;
  cursor: pointer;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.hero-choice:hover,
.hero-choice:focus-visible {
  color: var(--surface-green);
  opacity: 0.86;
  transform: translateY(-1px);
}

.hero-choice[aria-pressed] {
  color: var(--surface-green);
}

.hero-choice:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 3px;
}

.hero-choice__divider {
  color: color-mix(in srgb, var(--surface-ink) 72%, transparent);
}

.hero-setup {
  position: absolute;
  z-index: 9;
  display: grid;
  justify-items: center;
  color: var(--surface-ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 10px;
  line-height: 1.25;
  letter-spacing: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: color 220ms ease, opacity 520ms ease, transform 520ms ease;
}

.hero-scene.is-yes-setup .hero-setup {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero-setup.is-collapsed:not(.is-editing) .hero-option-strip,
.hero-setup.is-collapsed:not(.is-editing) .hero-setup__question,
.hero-setup.is-collapsed:not(.is-editing) .hero-name-field,
.hero-setup.is-collapsed:not(.is-editing) .hero-drink-label {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
}

.hero-setup--bestie {
  top: 16.6%;
  right: 6.2%;
  width: 210px;
}

.hero-setup--drink {
  top: 42.2%;
  left: 41.3%;
  width: 160px;
}

.hero-option-strip {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 4px;
  margin-bottom: 5px;
  transition: opacity 220ms ease, transform 220ms ease;
}

.hero-option {
  appearance: none;
  width: 22px;
  height: 18px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  opacity: 0.5;
  cursor: pointer;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease, filter 180ms ease;
}

.hero-option img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-option.is-selected {
  opacity: 1;
  filter: saturate(1.06) contrast(1.02);
}

.hero-option:hover,
.hero-option:focus-visible {
  opacity: 1;
  transform: translateY(-3px);
}

.hero-option:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 3px;
}

.hero-option--drink {
  width: 18px;
  height: 26px;
}

.hero-option--drink:first-child {
  width: 22px;
}

.hero-setup__question {
  margin: 0 0 5px;
  color: var(--surface-muted);
  font-size: 10px;
  font-style: italic;
  font-weight: 500;
  transition: opacity 220ms ease, transform 220ms ease;
}

.hero-name-input {
  width: auto;
  max-width: 118px;
  min-width: 1ch;
  min-width: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: var(--surface-ink);
  font: inherit;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
  caret-color: var(--surface-green);
}

.hero-name-input:focus {
  outline: 0;
}

.hero-name-field {
  display: inline-grid;
  grid-template-columns: minmax(0, auto) 1px;
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-width: 120px;
}

.hero-name-caret {
  width: 1px;
  height: 11px;
  margin-left: 1px;
  border-radius: 999px;
  background: var(--surface-ink);
  animation: heroCaretBlink 1s steps(2, start) infinite;
}

.hero-name-input:focus + .hero-name-caret {
  background: var(--surface-green);
}

@keyframes heroCaretBlink {
  50% {
    opacity: 0;
  }
}

.hero-drink-label {
  margin: 0;
  color: var(--surface-ink);
  font-size: 10px;
  font-weight: 600;
}

.hero-table-drinks {
  z-index: 5;
  left: 44.0%;
  top: 55.9%;
  width: 18.8%;
  height: 7.4%;
  appearance: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  opacity: 0;
  pointer-events: auto;
  cursor: pointer;
  transform: translateY(4px) scale(0.96);
  transform-origin: center bottom;
  transition: opacity 240ms ease, transform 240ms ease;
}

.hero-scene.has-drink-selection .hero-table-drinks {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-table-drinks:focus-visible,
.hero-scene__person-trigger:focus-visible {
  outline: 1px solid var(--surface-green);
  outline-offset: 4px;
}

.hero-table-drink {
  position: absolute;
  bottom: 0;
  width: 31%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.hero-table-drink--pranshu {
  left: 1%;
}

.hero-table-drink--bestie {
  right: 1%;
  transform: scaleX(-1);
}

.hero-scene__layer {
  position: absolute;
  display: block;
  user-select: none;
  pointer-events: none;
}

.hero-scene__table {
  z-index: 1;
  left: 42.2%;
  top: 41.0%;
  width: 21.6%;
}

.hero-scene__divider {
  z-index: 0;
  left: 0;
  top: 89.2%;
  width: 100%;
  height: var(--scene-line-thickness);
  border-radius: 999px;
  background: var(--scene-line);
}

.hero-scene__person {
  z-index: 3;
  width: 52%;
  object-fit: contain;
}

.hero-scene__person--pranshu {
  left: 3.0%;
  top: 15.2%;
}

.hero-scene__person--bestie {
  right: 3.5%;
  top: 15.2%;
  display: block;
  height: auto;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.hero-scene__person-trigger {
  z-index: 6;
  right: 2.2%;
  top: 42%;
  width: 32%;
  height: 44%;
  appearance: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
}

.hero-scene__person-trigger:hover,
.hero-table-drinks:hover {
  cursor: pointer;
}

.hero-scene__person--bestie.is-swapping {
  opacity: 0.01;
}

.hero-scene__chair {
  z-index: 4;
  width: 30.4%;
}

.hero-scene__chair--pranshu {
  left: 2.8%;
  top: 46.6%;
}

.hero-scene__chair--bestie {
  right: 2.8%;
  top: 46.6%;
  transform: scaleX(-1);
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 8px;
  color: var(--surface-ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  transition: color 220ms ease;
}

.hero-meta__group {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 7px;
  white-space: nowrap;
}

.hero-meta__context {
  justify-content: flex-end;
}

.hero-meta__avatar {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.hero-meta__dot {
  width: 14px;
  height: 14px;
  border: 1.5px solid color-mix(in srgb, var(--surface-muted) 54%, transparent);
  border-radius: 999px;
}

.hero-intro {
  position: relative;
  width: fit-content;
  margin-bottom: 48px;
}

.hero-logo {
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 28px;
  background: var(--surface-ink);
  mask: url("../public/assets/logo.svg") center / contain no-repeat;
  -webkit-mask: url("../public/assets/logo.svg") center / contain no-repeat;
  transition: background 220ms ease;
}

.hero-intro h1,
.hero-intro p {
  margin: 0;
  letter-spacing: -0.03em;
}

.hero-intro h1 {
  position: relative;
  z-index: 1;
  font-family: "Inter Display", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(30px, 2.35vw, 38px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero-intro p {
  margin-top: 12px;
  color: var(--surface-muted);
  font-size: clamp(18px, 1.35vw, 23px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.03em;
  transition: color 220ms ease;
}

.paint-stroke {
  position: absolute;
  z-index: 0;
  top: 83px;
  left: 90px;
  width: 196px;
  max-width: none;
  height: auto;
  pointer-events: none;
  transform: rotate(-2deg);
  transform-origin: center;
}

.hero-body {
  display: grid;
  gap: 22px;
  color: var(--surface-ink);
  font-family: "Inter Tight", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: -0.03em;
  transition: color 220ms ease;
}

.hero-body p {
  margin: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 44px var(--layout-gutter) 54px;
  color: var(--surface-muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  transition: color 220ms ease;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--surface-ink);
  opacity: 0.82;
}

.site-footer a:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 4px;
}

.inline-sticker {
  display: inline-grid;
  place-items: center;
  position: relative;
  width: var(--sticker-slot-width, 2.2em);
  height: var(--sticker-slot-height, 1.85em);
  margin: var(--sticker-margin, -0.32em 0.12em -0.36em);
  vertical-align: var(--sticker-align, -0.48em);
  overflow: visible;
  white-space: nowrap;
}

.inline-sticker img {
  display: block;
  width: var(--sticker-art-width, 100%);
  height: var(--sticker-art-height, 100%);
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: var(--sticker-position, center);
  transform:
    translate(var(--sticker-x, 0), var(--sticker-y, 0))
    scale(var(--sticker-scale, 1))
    rotate(var(--sticker-rotate, 0deg));
  transform-origin: center;
  pointer-events: none;
}

.inline-sticker--fog {
  --sticker-slot-width: 1.75em;
  --sticker-slot-height: 1.05em;
  --sticker-align: -0.18em;
  --sticker-margin: -0.1em 0.08em -0.14em;
  --sticker-scale: 1.18;
}

.inline-sticker--spark {
  --sticker-slot-width: 1.8em;
  --sticker-slot-height: 1.8em;
  --sticker-align: -0.54em;
  --sticker-margin: -0.34em 0.1em -0.38em;
  --sticker-scale: 1.06;
}

.inline-sticker--musk {
  --sticker-slot-width: 1.9em;
  --sticker-slot-height: 1.95em;
  --sticker-align: -0.62em;
  --sticker-margin: -0.42em 0.12em -0.42em;
  --sticker-scale: 1.12;
}

.inline-sticker--bee {
  --sticker-slot-width: 1.65em;
  --sticker-slot-height: 1.95em;
  --sticker-align: -0.62em;
  --sticker-margin: -0.42em 0.1em -0.44em;
  --sticker-scale: 1.06;
}

.inline-sticker--cat {
  --sticker-slot-width: 1.95em;
  --sticker-slot-height: 1.95em;
  --sticker-align: -0.62em;
  --sticker-margin: -0.42em 0.12em -0.44em;
  --sticker-scale: 1.08;
}

.inline-sticker--minion {
  --sticker-slot-width: 2.1em;
  --sticker-slot-height: 1.7em;
  --sticker-align: -0.5em;
  --sticker-margin: -0.3em 0.1em -0.36em;
  --sticker-scale: 1.05;
}

.inline-sticker--curb {
  --sticker-slot-width: 2.2em;
  --sticker-slot-height: 2.05em;
  --sticker-align: -0.74em;
  --sticker-margin: -0.5em 0.1em -0.5em;
  --sticker-scale: 1.05;
}

.inline-sticker--football {
  --sticker-slot-width: 1.75em;
  --sticker-slot-height: 2.05em;
  --sticker-align: -0.74em;
  --sticker-margin: -0.5em 0.18em -0.5em;
  --sticker-scale: 1.08;
}

.inline-sticker--cooking {
  --sticker-slot-width: 2em;
  --sticker-slot-height: 2em;
  --sticker-align: -0.68em;
  --sticker-margin: -0.46em 0.12em -0.48em;
  --sticker-scale: 1.04;
}

.inline-sticker--hands {
  --sticker-slot-width: 3.65em;
  --sticker-slot-height: 1.2em;
  --sticker-align: -0.3em;
  --sticker-margin: -0.14em 0.12em -0.2em;
  --sticker-scale: 1.12;
}

.work-section {
  position: relative;
  min-height: auto;
  padding: 108px 0 132px;
}

.work-layout {
  position: relative;
  align-items: start;
}

.section-intro {
  position: relative;
  grid-column: 2;
  width: fit-content;
  margin-bottom: 52px;
}

.section-intro h2,
.experience-card h3,
.experience-card h4,
.experience-card p,
.experience-card time {
  margin: 0;
  letter-spacing: -0.03em;
}

.section-intro h2 {
  position: relative;
  z-index: 1;
  font-family: "Inter Display", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.section-intro h2 span {
  position: relative;
  display: inline-block;
}

.paint-stroke--section {
  top: 0.92em;
  left: -3px;
  width: calc(100% + 10px);
  height: auto;
  transform: rotate(-1.5deg);
}

.work-list {
  display: grid;
  position: relative;
  z-index: 12;
  grid-column: 2;
  gap: 56px;
}

.experience-card {
  display: grid;
  gap: 26px;
}

.experience-brand {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.brand-tile {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
}

.brand-tile img {
  display: block;
  width: 68%;
  max-width: none;
  height: 68%;
  object-fit: contain;
}

.brand-tile--intuit {
  background: #2f6df6;
}

.brand-tile--intuit img {
  filter: brightness(0) invert(1);
}

.brand-tile--tesla {
  background: #050505;
}

.brand-tile--tesla img {
  width: 62%;
  height: 62%;
  filter: brightness(0) invert(1);
}

.brand-tile--scad {
  background: #050505;
}

.brand-tile--scad img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.brand-tile--collab {
  border: 1px solid rgba(17, 17, 15, 0.16);
  background: rgba(255, 255, 255, 0.72);
}

.brand-tile--collab img {
  width: 72%;
  height: 72%;
}

.experience-card h3 {
  font-family: "Inter Display", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.experience-role {
  margin-top: 8px;
  color: var(--surface-ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.28;
}

.experience-copy {
  max-width: 64ch;
  margin-top: 12px;
  color: var(--surface-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.work-carousel {
  --carousel-duration: 5200ms;
  display: grid;
  gap: 22px;
  padding-left: 74px;
}

.work-carousel__frame {
  box-sizing: border-box;
  display: grid;
  width: 100%;
  padding: clamp(26px, 6.5vw, 66px);
  border-radius: clamp(20px, 3vw, 34px);
  background: color-mix(in srgb, var(--surface-ink) 4%, var(--page-bg));
}

.work-carousel__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid color-mix(in srgb, var(--surface-ink) 22%, transparent);
  border-radius: clamp(15px, 2vw, 25px);
  background: color-mix(in srgb, white 88%, var(--page-bg));
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--surface-ink) 7%, transparent),
    0 0 0 7px color-mix(in srgb, var(--surface-ink) 4%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  isolation: isolate;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.work-carousel__viewport.is-dragging {
  cursor: grabbing;
}

.work-carousel__slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: color-mix(in srgb, var(--surface-ink) 70%, transparent);
  font-family: "Inter Display", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(68px, 13vw, 136px);
  font-weight: 500;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-100%, 0, 0);
}

.work-carousel__slide.is-active {
  z-index: 2;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-carousel__viewport.is-dragging .work-carousel__slide {
  transition: none;
}

.work-carousel__slide.is-drag-preview {
  z-index: 1;
  opacity: 1;
}

.work-carousel__slide.is-entering {
  animation: carousel-slide-in 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.work-carousel__slide.is-leaving {
  z-index: 1;
  animation: carousel-slide-out 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.work-carousel__slide.is-entering-from-right {
  animation: carousel-slide-in-right 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.work-carousel__slide.is-leaving-to-left {
  z-index: 1;
  animation: carousel-slide-out-left 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.work-carousel__meta {
  display: grid;
  justify-items: center;
  gap: 9px;
  min-height: 31px;
}

.work-carousel__indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.work-carousel__indicator {
  position: relative;
  width: 6px;
  height: 6px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: color-mix(in srgb, var(--surface-ink) 50%, transparent);
  cursor: pointer;
  transition: width 420ms cubic-bezier(0.22, 1, 0.36, 1), background-color 240ms ease;
}

.work-carousel__indicator::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--surface-ink);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
}

.work-carousel__indicator.is-active {
  width: 40px;
  background: color-mix(in srgb, var(--surface-ink) 20%, transparent);
}

.work-carousel__indicator.is-active::after {
  animation: carousel-progress var(--carousel-duration) linear forwards;
}

.work-carousel.is-paused .work-carousel__indicator.is-active::after {
  animation-play-state: paused;
}

.work-carousel__indicator:hover {
  background: color-mix(in srgb, var(--surface-ink) 68%, transparent);
}

.work-carousel__indicator:focus-visible {
  outline: 1px solid var(--surface-ink);
  outline-offset: 4px;
}

.work-carousel__caption {
  margin: 0;
  color: var(--surface-muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

@keyframes carousel-slide-in {
  from { opacity: 0.35; transform: translate3d(-100%, 0, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes carousel-slide-out {
  from { opacity: 1; transform: translate3d(0, 0, 0); }
  to { opacity: 0.2; transform: translate3d(100%, 0, 0); }
}

@keyframes carousel-slide-in-right {
  from { opacity: 0.35; transform: translate3d(100%, 0, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes carousel-slide-out-left {
  from { opacity: 1; transform: translate3d(0, 0, 0); }
  to { opacity: 0.2; transform: translate3d(-100%, 0, 0); }
}

@keyframes carousel-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.project-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0 0 0 74px;
  list-style: none;
}

.project-list li {
  position: relative;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  border-radius: 6px;
  outline: 0;
  cursor: pointer;
}

.project-list h4 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.15;
}

.project-list p {
  margin-top: 4px;
  color: var(--surface-muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.15;
}

.project-list time {
  padding-left: 24px;
  color: var(--surface-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.15;
}

.project-tooltip {
  display: none;
}

.project-list li:focus-visible {
  outline: 1px solid color-mix(in srgb, var(--surface-muted) 38%, transparent);
  outline-offset: 5px;
}

.project-icon {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-top: -1px;
}

.project-icon img {
  display: block;
  width: 18px;
  max-width: none;
  height: 18px;
  object-fit: contain;
  transition: filter 220ms ease, opacity 220ms ease;
}

.project-icon i {
  display: block;
  color: var(--surface-ink);
  font-size: 18px;
  line-height: 1;
  transition: color 220ms ease, opacity 220ms ease;
}

body[data-phase="night"] .project-icon img {
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.project-access {
  grid-column: 2 / -1;
  display: grid;
  grid-template-rows: 0fr;
  min-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-5px);
  transition:
    grid-template-rows 380ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 240ms ease,
    transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-access[hidden] {
  display: none;
}

.project-access.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}

.project-access__content {
  overflow: hidden;
  min-height: 34px;
  padding-top: 10px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 170ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-access__content.is-leaving {
  opacity: 0;
  transform: translateY(-4px);
}

.project-access__content.is-entering {
  opacity: 0;
  transform: translateY(5px);
}

.project-access__choices {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--surface-muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.project-access__choices button {
  position: relative;
  border: 0;
  padding: 2px 0 6px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.project-access__choices button::after {
  position: absolute;
  right: -3px;
  bottom: 0;
  left: -3px;
  height: 6px;
  background: url("../public/assets/scribble.svg") center / 100% 100% no-repeat;
  content: "";
  opacity: 0;
  transform: scaleX(0.7) rotate(-1deg);
  transition: opacity 160ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-access__choices button:hover::after,
.project-access__choices button:focus-visible::after {
  opacity: 1;
  transform: scaleX(1) rotate(-1deg);
}

.project-access__choices button:focus-visible {
  outline: 0;
}

.magic-word-form {
  display: grid;
  grid-template-columns: 22px minmax(110px, 210px) auto auto;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  color: var(--surface-muted);
}

.magic-word-form__icon,
.project-contact-options i {
  display: block;
  width: 20px;
  height: 20px;
  color: currentColor;
  font-size: 20px;
  line-height: 1;
}

.magic-word-form input {
  min-width: 0;
  border: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--surface-muted) 24%, transparent);
  border-radius: 0;
  padding: 4px 0 5px;
  background: transparent;
  color: var(--surface-ink);
  font-size: 12px;
  font-weight: 500;
  outline: 0;
  transition: border-color 180ms ease;
}

.magic-word-form input:focus {
  border-color: color-mix(in srgb, var(--surface-ink) 52%, transparent);
}

.magic-word-form input::placeholder {
  color: color-mix(in srgb, var(--surface-muted) 54%, transparent);
}

.magic-word-form__check,
.magic-word-form__enter {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 24px;
  border: 0;
  border-radius: 7px;
  padding: 0 7px;
  background: var(--surface-green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.magic-word-form__check:disabled {
  cursor: wait;
  opacity: 0.5;
}

.magic-word-form__enter[hidden] {
  display: none;
}

.magic-word-form__status {
  grid-column: 2 / -1;
  min-height: 12px;
  color: var(--surface-muted);
  font-size: 10px;
  font-weight: 500;
}

.magic-word-form.is-valid input {
  border-color: var(--surface-green);
}

.magic-word-form.is-invalid input {
  border-color: #b93d32;
  animation: magic-word-no 420ms ease;
}

.project-contact-options {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--surface-muted);
  font-size: 12px;
  font-weight: 500;
}

.project-contact-options a,
.project-contact-options button {
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.project-contact-options a:hover,
.project-contact-options a:focus-visible {
  color: var(--surface-ink);
  transform: translateY(-1px);
}

.project-contact-options__email {
  opacity: 0.5;
}

@keyframes magic-word-no {
  0%, 100% { transform: translateX(0); }
  22% { transform: translateX(-5px); }
  44% { transform: translateX(4px); }
  66% { transform: translateX(-3px); }
  82% { transform: translateX(2px); }
}

.case-study-placeholder {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 32px;
}

.case-study-placeholder main {
  width: min(100%, 640px);
}

.case-study-placeholder a,
.case-study-placeholder p {
  color: var(--surface-muted);
  font-size: 13px;
}

.case-study-placeholder h1 {
  margin: 24px 0 12px;
  font-size: clamp(36px, 8vw, 72px);
  letter-spacing: -0.055em;
  text-transform: capitalize;
}

.life-section {
  position: relative;
  padding: 40px 0 190px;
}

.life-layout {
  position: relative;
  align-items: start;
}

.section-intro--life {
  margin-bottom: 70px;
}

.paint-stroke--life {
  top: 0.92em;
  left: -3px;
  width: calc(100% + 10px);
  height: auto;
  transform: rotate(-1.5deg);
}

.life-matrix {
  position: relative;
  grid-column: 2;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 520px;
  color: var(--surface-ink);
}

.matrix-axis {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: rgba(17, 17, 15, 0.72);
  pointer-events: none;
}

.matrix-axis--x {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.matrix-axis--y {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.matrix-label {
  position: absolute;
  color: var(--surface-muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.matrix-label--top {
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
}

.matrix-label--right {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.matrix-label--bottom {
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
}

.matrix-label--left {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.life-tile {
  --tile-size: 86px;
  --tile-rotate: 0deg;
  --tile-delay: 0ms;
  position: absolute;
  display: block;
  width: var(--tile-size);
  aspect-ratio: 1;
  border-radius: 14px;
  background: var(--tile-tone, #ababab);
  opacity: 0;
  transform: translateY(18px) scale(0.94) rotate(calc(var(--tile-rotate) - 5deg));
  transform-origin: center;
  transition:
    opacity 360ms ease,
    transform 560ms cubic-bezier(0.2, 0.9, 0.2, 1);
  transition-delay: var(--tile-delay);
}

.life-matrix.is-visible .life-tile {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(var(--tile-rotate));
}

.life-tile--one {
  --tile-tone: #9c9c9c;
  --tile-size: 84px;
  --tile-rotate: -28deg;
  --tile-delay: 20ms;
  top: 18%;
  left: 9%;
}

.life-tile--two {
  --tile-tone: #a7a7a7;
  --tile-size: 78px;
  --tile-rotate: 7deg;
  --tile-delay: 80ms;
  top: 19%;
  left: 46%;
  transform: translate(-50%, 18px) scale(0.94) rotate(2deg);
}

.life-matrix.is-visible .life-tile--two {
  transform: translate(-50%, 0) scale(1) rotate(var(--tile-rotate));
}

.life-tile--three {
  --tile-tone: #a1a1a1;
  --tile-size: 78px;
  --tile-rotate: 8deg;
  --tile-delay: 140ms;
  top: 33%;
  left: 29%;
}

.life-tile--four {
  --tile-tone: #969696;
  --tile-size: 82px;
  --tile-rotate: -19deg;
  --tile-delay: 200ms;
  top: 38%;
  left: 47%;
}

.life-tile--five {
  --tile-tone: #aaaaaa;
  --tile-size: 80px;
  --tile-rotate: -13deg;
  --tile-delay: 260ms;
  top: 19%;
  right: 20%;
}

.life-tile--six {
  --tile-tone: #9b9b9b;
  --tile-size: 80px;
  --tile-rotate: -13deg;
  --tile-delay: 320ms;
  top: 26%;
  right: 3%;
}

.life-tile--seven {
  --tile-tone: #a4a4a4;
  --tile-size: 76px;
  --tile-rotate: -14deg;
  --tile-delay: 380ms;
  top: 38%;
  right: 17%;
}

.life-tile--eight {
  --tile-tone: #9f9f9f;
  --tile-size: 80px;
  --tile-rotate: -13deg;
  --tile-delay: 440ms;
  bottom: 25%;
  left: 4%;
}

.life-tile--nine {
  --tile-tone: #969696;
  --tile-size: 86px;
  --tile-rotate: -28deg;
  --tile-delay: 500ms;
  bottom: 13%;
  left: 25%;
}

.life-tile--ten {
  --tile-tone: #a8a8a8;
  --tile-size: 84px;
  --tile-rotate: -13deg;
  --tile-delay: 560ms;
  bottom: 32%;
  left: 45%;
}

@media (max-width: 780px) {
  :root {
    --content-width: 100%;
    --layout-gutter: clamp(20px, 6.2vw, 32px);
  }

  .site-sky {
    height: calc(clamp(360px, 48svh, 460px) + env(safe-area-inset-top, 0px));
  }

  .hero-anchor {
    min-height: 78svh;
    padding-top: clamp(260px, 42svh, 340px);
    padding-bottom: 96px;
  }

  .sky-meta-control {
    right: 18px;
    bottom: 18px;
  }

  .sky-meta-trigger {
    width: 24px;
    height: 24px;
  }

  .sky-meta-backdrop {
    right: 16px;
    bottom: 52px;
    left: 16px;
  }

  .sky-meta-sheet {
    width: 100%;
  }

  .hero-intro {
    margin-bottom: 38px;
  }

  .hero-logo {
    width: 32px;
    height: 32px;
    margin-bottom: 24px;
  }

  .paint-stroke {
    top: 73px;
    left: 82px;
    width: 172px;
  }

  .hero-body {
    gap: 20px;
    line-height: 1.6;
  }

  .inline-sticker {
    transform: scale(0.9);
    transform-origin: center;
  }

  .hero-illustration {
    margin-bottom: 42px;
  }

  .hero-scene {
    aspect-ratio: 1365 / 900;
    --scene-line-thickness: 2px;
  }

  .hero-dialogue {
    top: 10%;
    left: 8.5%;
    font-size: 10px;
  }

  .hero-dialogue--pranshu {
    min-width: 150px;
  }

  .hero-dialogue--bestie {
    top: 13.5%;
    right: 0;
    min-width: 180px;
    gap: 4px;
  }

  .hero-setup--bestie {
    top: 11.5%;
    right: -2%;
    width: 180px;
  }

  .hero-setup--drink {
    top: 43%;
    left: 36.5%;
    width: 150px;
  }

  .hero-option-strip {
    gap: 3px;
  }

  .hero-option {
    width: 20px;
    height: 16px;
  }

  .hero-option--drink {
    width: 16px;
    height: 23px;
  }

  .hero-option--drink:first-child {
    width: 20px;
  }

  .hero-name-input {
    max-width: 104px;
  }

  .hero-table-drinks {
    left: 43.7%;
    top: 54.4%;
    width: 15.8%;
    height: 7.2%;
  }

  .hero-scene__table {
    left: 42%;
    top: 45.5%;
    width: 21.5%;
  }

  .hero-scene__divider {
    top: 88%;
  }

  .hero-scene__person {
    width: 50%;
  }

  .hero-scene__person--pranshu {
    left: 0.8%;
    top: 18%;
  }

  .hero-scene__person-trigger {
    right: 0.5%;
    top: 44%;
    width: 34%;
    height: 42%;
  }

  .hero-scene__chair {
    width: 29.5%;
  }

  .hero-scene__chair--pranshu {
    left: 2.2%;
    top: 49%;
  }

  .hero-scene__chair--bestie {
    right: 2%;
    top: 49%;
  }

  .hero-meta {
    justify-content: flex-start;
    gap: 18px;
    width: 100%;
    margin-top: 10px;
    padding-bottom: 4px;
    overflow-x: auto;
    overflow-y: hidden;
    font-size: 10px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .hero-meta::-webkit-scrollbar {
    display: none;
  }

  .hero-meta__group {
    flex: 0 0 auto;
    max-width: none;
    flex-wrap: nowrap;
  }

  .hero-meta__avatar {
    width: 18px;
    height: 18px;
  }

  .hero-meta__dot {
    width: 14px;
    height: 14px;
  }

  .work-section {
    padding: 78px 0 104px;
  }

  .section-intro {
    margin-bottom: 42px;
  }

  .paint-stroke--section {
    top: 0.92em;
    left: -2px;
    width: calc(100% + 8px);
  }

  .work-list {
    gap: 48px;
  }

  .experience-card {
    gap: 24px;
  }

  .experience-brand {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 16px;
  }

  .brand-tile {
    width: 44px;
    height: 44px;
  }

  .project-list {
    gap: 17px;
    padding-left: 62px;
  }

  .project-list li {
    grid-template-columns: 20px minmax(0, 1fr) auto;
    gap: 9px;
  }

  .project-access {
    grid-column: 1 / -1;
    padding-left: 29px;
  }

  .magic-word-form {
    grid-template-columns: 22px minmax(100px, 1fr) auto;
    width: 100%;
  }

  .magic-word-form__enter {
    grid-column: 3;
  }

  .project-list time {
    padding-left: 12px;
  }

  .work-carousel {
    gap: 18px;
    padding-left: 62px;
  }

  .work-carousel__frame {
    padding: clamp(18px, 7vw, 34px);
    border-radius: 22px;
  }

  .work-carousel__viewport {
    border-radius: 16px;
  }

  .life-section {
    padding: 20px 0 130px;
  }

  .section-intro--life {
    margin-bottom: 60px;
  }

  .paint-stroke--life {
    top: 0.92em;
    left: -2px;
    width: calc(100% + 8px);
  }

  .life-matrix {
    min-height: auto;
  }

  .life-tile {
    --tile-size: 54px;
    border-radius: 10px;
  }

  .life-tile--one {
    --tile-size: 56px;
  }

  .life-tile--two,
  .life-tile--three {
    --tile-size: 52px;
  }

  .life-tile--four,
  .life-tile--six,
  .life-tile--ten {
    --tile-size: 58px;
  }

  .life-tile--five,
  .life-tile--seven,
  .life-tile--eight {
    --tile-size: 50px;
  }

  .life-tile--nine {
    --tile-size: 60px;
  }
}

@media (max-width: 520px) {
  .project-list,
  .work-carousel {
    padding-left: 0;
  }

  .project-list li {
    grid-template-columns: 20px minmax(0, 1fr);
  }

  .project-list time {
    grid-column: 2;
    padding-left: 0;
    font-size: 12px;
  }

  .project-access {
    grid-column: 1 / -1;
    padding-left: 29px;
  }

  .project-access__choices {
    gap: 7px 12px;
  }

  .magic-word-form {
    grid-template-columns: 20px minmax(0, 1fr) auto;
  }

  .work-carousel__frame {
    padding: clamp(16px, 6vw, 24px);
  }
}

@media (min-width: 1440px) {
  :root {
    --layout-gutter: clamp(144px, 16.5vw, 340px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .work-carousel__slide,
  .work-carousel__indicator,
  .work-carousel__indicator::after {
    animation: none !important;
    transition: none !important;
  }

  .work-carousel__indicator.is-active::after {
    transform: scaleX(1);
  }
  .motion-toggle::after {
    transform: translateX(12px);
  }

  .inline-sticker img {
    opacity: 0.92;
  }

  .life-tile,
  .life-matrix.is-visible .life-tile {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(var(--tile-rotate));
    transition: none;
  }

  .life-tile--two,
  .life-matrix.is-visible .life-tile--two {
    transform: translate(-50%, 0) scale(1) rotate(var(--tile-rotate));
  }
}
