@font-face {
  font-family: "Satoshi-Variable";
  src: url("assets/fonts/Satoshi-Variable.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 300 900;
}

:root {
  color-scheme: light dark;
  --dark: #151515;
  --light: #fef9e5;
  --airborne-cream: #fef9e5;
  --gap: clamp(2rem, 4.9vw, 6rem);
  --edge: 1rem;
  --identity: clamp(4.2rem, 13.7vw, 14.4rem);
  --subtitle: clamp(2rem, 6.9vw, 7rem);
  --cover-title-height: 3.75rem;
  --cover-subtitle: 1.125rem;
  --cover-footer: 0.75rem;
  --project-tile-height: 2.5rem;
  --body: clamp(0.9rem, 1vw, 1.1rem);
  --rive-title-lift: clamp(1.25rem, 2.45vw, 2.35rem);
  --rive-artboard-width: 1920;
  --rive-artboard-height: 380;
  --rive-title-width: calc(var(--cover-title-height) * 1902 / 246);
  --rive-render-width: min(var(--rive-title-width), calc(100vw - var(--edge) * 2));
  --rive-title-height: calc(var(--rive-render-width) * var(--rive-artboard-height) / var(--rive-artboard-width));
  --font-main: "Satoshi-Variable", Inter, Arial, Helvetica, sans-serif;
  --font-jp: "Noto Sans JP", "Satoshi-Variable", Inter, Arial, sans-serif;
  --font-accent: "Michroma", "Satoshi-Variable", Inter, Arial, sans-serif;
}

@media (min-width: 40rem) {
  :root {
    --edge: 1.5rem;
    --cover-title-height: 4.5rem;
    --cover-subtitle: 1.25rem;
    --cover-footer: 0.875rem;
    --project-tile-height: 3.5rem;
  }
}

@media (min-width: 48rem) {
  :root {
    --edge: 2rem;
    --cover-title-height: 6rem;
    --cover-subtitle: 1.5rem;
    --cover-footer: 1rem;
    --project-tile-height: 5rem;
  }
}

@media (min-width: 64rem) {
  :root {
    --edge: 2.5rem;
    --cover-title-height: 8rem;
    --cover-subtitle: 1.875rem;
    --cover-footer: 1.125rem;
    --project-tile-height: 6rem;
  }
}

@media (min-width: 80rem) {
  :root {
    --edge: 3rem;
    --cover-title-height: 10rem;
    --cover-subtitle: 2.25rem;
    --cover-footer: 1.25rem;
    --project-tile-height: 7rem;
  }
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 200svh;
  margin: 0;
  background: var(--dark);
  color: var(--light);
  font-family: var(--font-main);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

button {
  appearance: none;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

svg {
  display: block;
}

::selection {
  background: var(--dark);
  color: var(--light);
}

.gutter {
  width: 100%;
  padding: var(--edge);
}

.light-stage {
  min-height: 100svh;
}

.light-fixed {
  position: fixed;
  inset: 0;
  z-index: 10;
  overflow: hidden;
  background: var(--light);
  color: var(--dark);
}

.dark-stage {
  position: relative;
  z-index: 20;
  min-height: 100svh;
  margin-top: -100svh;
  background: var(--dark);
  color: var(--light);
}

.cover-screen,
.profile-screen {
  min-height: 100svh;
}

.cover-screen {
  display: flex;
  flex-direction: column;
}

.profile-screen {
  display: grid;
  height: 100svh;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.cover-header,
.profile-header {
  display: flex;
  justify-content: space-between;
  gap: var(--gap);
}

.cover-header > div,
.profile-header > div {
  width: 100%;
}

.cover-header > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.profile-header {
  margin-bottom: clamp(1.4rem, 3.8vw, 4rem);
}

.identity {
  position: relative;
  z-index: 0;
  margin: 0;
  width: fit-content;
  padding: 0.02em 0 0.08em;
  font-size: var(--identity);
  font-weight: 900;
  line-height: 0.74;
  letter-spacing: 0;
  white-space: nowrap;
  isolation: isolate;
  font-family: Impact, "Arial Black", Inter, Arial, Helvetica, sans-serif;
  font-stretch: expanded;
}

.identity-light {
  color: var(--light);
  --logo-fill: var(--airborne-cream);
  --logo-cut: var(--dark);
  --logo-texture: rgba(5, 5, 5, 0.28);
}

.identity-dark {
  color: var(--dark);
  --logo-fill: var(--dark);
  --logo-cut: var(--light);
  --logo-texture: rgba(251, 244, 230, 0.22);
}

.identity::after {
  display: none;
}

.identity.is-alive::after {
  animation: none;
}

.identity.is-split {
  display: flex;
  align-items: flex-start;
  overflow: visible;
}

.identity-gif-title {
  width: 100vw;
  max-width: none;
  margin-left: calc(var(--edge) * -1);
  padding: 0 0 clamp(0.2rem, 0.4vw, 0.45rem);
  line-height: 0;
  overflow: visible;
  white-space: normal;
}

.identity-gif,
.identity-rive {
  display: block;
  width: 100%;
  height: auto;
}

.identity-rive {
  aspect-ratio: var(--rive-artboard-width) / var(--rive-artboard-height);
  transform: translateY(calc(var(--rive-title-lift) * -1));
}

.cover-header .identity-gif-title {
  width: fit-content;
  margin-right: 0;
  margin-left: 0;
}

.profile-header .identity-gif-title {
  width: fit-content;
  margin-left: 0;
}

.profile-header .identity-rive {
  width: var(--rive-render-width);
  height: var(--rive-title-height);
}

.cover-header .identity-rive {
  width: var(--rive-render-width);
  height: var(--rive-title-height);
}

.identity-dark .identity-gif,
.identity-dark .identity-rive {
  filter: brightness(0);
}

.identity-letter-wrap {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0.055em 0.032em 0.13em;
  margin-right: 0.018em;
  line-height: 0.74;
}

.identity-letter-wrap::before,
.identity-letter-wrap::after {
  position: absolute;
  z-index: 3;
  display: block;
  background: var(--logo-cut);
  content: "";
  pointer-events: none;
  transform-origin: center;
}

.identity-letter-wrap::before {
  left: 10%;
  right: 10%;
  top: 40%;
  height: 0.105em;
  border-radius: 999px;
  opacity: 0;
  transform: translate3d(0, 0, 0) scaleX(0.86);
}

.identity-letter-wrap::after {
  left: 18%;
  right: 13%;
  top: 56%;
  height: 0.06em;
  border-radius: 999px;
  opacity: 0;
  transform: translate3d(0.02em, 0, 0) scaleX(0.62);
}

.letter-wrap-s::before,
.letter-wrap-n::before,
.letter-wrap-h::before,
.letter-wrap-k::before {
  display: none;
}

.letter-wrap-s::after,
.letter-wrap-n::after,
.letter-wrap-h::after,
.letter-wrap-k::after {
  display: none;
}

.letter-wrap-e::before {
  left: 10%;
  right: 9%;
  top: 39%;
  height: 0.12em;
  clip-path: polygon(0 22%, 68% 0, 100% 28%, 86% 72%, 12% 100%);
}

.letter-wrap-e::after {
  left: 11%;
  right: 12%;
  top: 56%;
  height: 0.09em;
  clip-path: polygon(0 34%, 70% 0, 100% 35%, 82% 72%, 0 100%);
}

.letter-wrap-z::before {
  left: 4%;
  right: 5%;
  top: 42%;
  height: 0.12em;
  transform: translate3d(0, 0, 0) skewX(-14deg) scaleX(0.92);
}

.letter-wrap-z::after {
  left: 16%;
  right: 16%;
  top: 54%;
  height: 0.055em;
  transform: translate3d(0, 0, 0) skewX(-14deg) scaleX(0.55);
}

.identity-letter {
  position: relative;
  display: inline-block;
  color: var(--logo-fill);
  filter: drop-shadow(0.012em 0.015em 0 rgba(251, 244, 230, 0.42));
  transform-origin: 50% 76%;
  will-change: transform, opacity;
}

.identity-letter.is-logo-o {
  width: 0.82em;
  color: transparent;
}

.identity-letter.is-logo-o::before,
.identity-letter.is-logo-o::after {
  content: "";
}

.identity-letter::before,
.identity-letter::after {
  position: absolute;
  inset: 0;
  display: block;
  content: attr(data-letter);
  pointer-events: none;
}

.identity-letter::before {
  z-index: 1;
  color: transparent;
  background-image:
    radial-gradient(circle at 0.045em 0.045em, var(--logo-texture) 0 0.012em, transparent 0.013em),
    linear-gradient(var(--logo-fill), var(--logo-fill));
  background-position: 0 0;
  background-size: 0.055em 0.055em, 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0.78;
  transform: translate3d(0, 0, 0);
}

.identity-letter::after {
  z-index: 2;
  color: var(--logo-fill);
  opacity: 0.1;
  transform: translate3d(-0.018em, -0.012em, 0);
}

.identity-light .identity-letter.is-logo-o {
  --logo-o-color: var(--light);
}

.identity-dark .identity-letter.is-logo-o {
  --logo-o-color: var(--dark);
}

.identity-letter.is-logo-o::before {
  inset: 0.015em 0.035em 0.075em 0.01em;
  background-image:
    radial-gradient(circle at 0.045em 0.045em, var(--logo-texture) 0 0.012em, transparent 0.013em),
    linear-gradient(var(--logo-o-color), var(--logo-o-color));
  background-size: 0.055em 0.055em, 100% 100%;
  border-radius: 50%;
  -webkit-mask: radial-gradient(ellipse 36% 36% at 50% 51%, transparent 0 56%, #000 57%);
  mask: radial-gradient(ellipse 36% 36% at 50% 51%, transparent 0 56%, #000 57%);
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg);
}

.identity-letter.is-logo-o::after {
  left: 18%;
  right: 19%;
  top: 46%;
  bottom: auto;
  height: 0.055em;
  border-radius: 999px;
  background: var(--logo-cut);
  opacity: 0;
  transform: translate3d(0.03em, 0, 0) scaleX(0.2);
}

.identity.is-alive .identity-letter.is-logo-o::before {
  animation: airborneLogoOBreath 4.8s cubic-bezier(0.62, 0, 0.18, 1) infinite;
  animation-delay: calc(var(--letter-index) * -0.22s);
}

.identity.is-alive .identity-letter.is-logo-o::after {
  animation: airborneLogoODot 4.8s cubic-bezier(0.62, 0, 0.18, 1) infinite;
  animation-delay: calc(var(--letter-index) * -0.22s);
}

.identity.is-alive .identity-letter {
  animation: airborneLetterFloat 1.65s steps(1, end) infinite;
  animation-delay: calc(var(--letter-index) * -0.22s);
}

.identity.is-alive .identity-letter-wrap::before,
.identity.is-alive .identity-letter-wrap::after {
  animation: airborneLetterCuts 1.65s steps(1, end) infinite;
  animation-delay: calc(var(--letter-index) * -0.18s);
}

.identity.is-alive .identity-letter::after {
  animation: airborneLetterFlash 4.8s cubic-bezier(0.62, 0, 0.18, 1) infinite;
  animation-delay: calc(var(--letter-index) * -0.22s);
}

.subtitle {
  margin: clamp(0.65rem, 1.4vw, 1.3rem) 0 0;
  font-size: var(--subtitle);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.075em;
}

.subtitle-light {
  color: var(--light);
  font-family: var(--font-jp);
}

.cover-header .subtitle-light {
  margin-top: calc(var(--rive-title-lift) * -1 + 0.18rem);
  margin-left: calc(var(--cover-title-height) * 0.32);
  font-family: var(--font-main);
  font-size: var(--cover-subtitle);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.subtitle-dark {
  color: var(--dark);
}

.profile-header .subtitle-dark {
  margin-top: calc(var(--rive-title-lift) * -1 + 0.18rem);
  margin-left: calc(var(--cover-title-height) * 0.32);
  font-family: var(--font-main);
  font-size: var(--cover-subtitle);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.planet-symbol {
  position: relative;
  width: clamp(9rem, 17vw, 18rem);
  aspect-ratio: 1;
  color: var(--light);
}

.planet-mark {
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: planetTilt 9s ease-in-out infinite;
  transform-origin: center;
}

.orbit,
.planet-ring,
.constellation {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  vector-effect: non-scaling-stroke;
}

.orbit {
  opacity: 0.34;
  stroke-dasharray: 8 12;
  animation: orbitSpin 18s linear infinite;
  transform-origin: 110px 110px;
}

.orbit-inner {
  opacity: 0.18;
  stroke-dasharray: 2 10;
  animation-duration: 12s;
  animation-direction: reverse;
}

.planet-core {
  animation: planetBreath 4.2s ease-in-out infinite;
  transform-origin: 110px 110px;
}

.planet-disc {
  fill: currentColor;
}

.planet-band {
  fill: var(--dark);
  animation: bandDrift 5.2s ease-in-out infinite;
}

.band-one,
.band-three {
  opacity: 0.82;
}

.band-two {
  opacity: 0.55;
  animation-delay: -1.2s;
}

.band-three {
  animation-delay: -2.4s;
}

.planet-ring {
  stroke-width: 7;
  transform: rotate(-18deg);
  transform-origin: 110px 110px;
}

.ring-back {
  opacity: 0.28;
}

.ring-front {
  stroke-dasharray: 132 346;
  stroke-linecap: round;
  animation: ringPulse 3.6s ease-in-out infinite;
}

.satellite {
  fill: currentColor;
  transform-origin: 110px 110px;
}

.satellite-one {
  animation: satelliteOrbit 7s linear infinite;
}

.satellite-two {
  opacity: 0.62;
  animation: satelliteOrbit 10s linear infinite reverse;
}

.constellation {
  opacity: 0.42;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scroll-ball {
  position: absolute;
  right: 7%;
  bottom: 4%;
  display: block;
  width: clamp(2rem, 3.4vw, 3.8rem);
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--light);
  box-shadow: 0 0 0 6px var(--dark), 0 0 0 9px var(--light);
  color: var(--dark);
  cursor: pointer;
  animation: ballPulse 1.7s ease-in-out infinite;
}

.scroll-ball:hover,
.scroll-ball:focus-visible {
  outline: 0;
  transform: scale(0.92);
}

.cover-spacer {
  flex: 1;
}

.cover-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 5.7vw, 3.4rem);
  width: 100%;
  text-align: center;
}

.cover-footer-grid {
  display: block;
  width: min(100%, 95vw);
  max-width: 112rem;
  height: clamp(8rem, 14.2vw, 17.1rem);
  color: #fbf4e6;
  overflow: visible;
}

.cover-footer-grid .line {
  fill: none;
  stroke: currentColor;
  stroke-width: 0.45;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cover-footer-grid .lines__topography .line {
  opacity: 0.68;
}

.cover-footer h3,
.section-kicker,
.profile-footer h3 {
  margin: 0;
  font-size: clamp(1.5rem, 4.2vw, 5.6rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.cover-footer h3 {
  font-family: var(--font-accent);
  font-size: var(--cover-footer);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.active-area {
  display: grid;
  grid-template-columns: minmax(8rem, 0.28fr) minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  column-gap: clamp(2rem, 5vw, 6.8rem);
  row-gap: 0.35rem;
  align-items: start;
  min-height: 0;
}

.section-kicker {
  grid-column: 1;
  margin-bottom: clamp(1rem, 2vw, 1.6rem);
}

.highlight-list {
  grid-column: 1;
}

.detail-stage {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: min(100%, 58rem);
  min-height: 0;
}

.detail-panel {
  outline: 0;
  animation: detailPanelIn 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.detail-panel[hidden] {
  display: none;
}

.detail-panel h3 {
  margin: 0 0 clamp(1.1rem, 2.4vw, 2rem);
  font-size: clamp(2.45rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(15rem, 0.82fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.about-copy {
  max-width: 36rem;
}

.about-copy p {
  margin: 0;
  font-size: clamp(0.98rem, 1.32vw, 1.28rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.018em;
}

.about-copy p + p {
  margin-top: clamp(0.8rem, 1.8vw, 1.25rem);
  opacity: 0.72;
}

.about-facts {
  display: grid;
  gap: 0.78rem;
  margin: 0;
}

.about-facts div {
  padding-top: 0.56rem;
  border-top: 2px solid currentColor;
}

.about-facts dt {
  display: inline-block;
  margin: 0 0 0.28rem;
  padding-top: 0.08em;
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.about-facts dd {
  margin: 0;
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-wrap: pretty;
}

.catalog-title-row {
  display: flex;
  align-items: flex-start;
}

.catalog-table {
  display: grid;
  gap: 0;
  width: 100%;
  margin-top: clamp(0.35rem, 1vw, 0.75rem);
  font-size: clamp(0.94rem, 1.4vw, 1.2rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.catalog-rows {
  display: grid;
}

.catalog-row {
  display: grid;
  grid-template-columns: minmax(8rem, 1fr) minmax(13rem, 2.1fr) 3.5rem 6.5rem;
  gap: clamp(0.9rem, 2.2vw, 2.4rem);
  align-items: start;
  padding: 0.45rem 0;
}

.catalog-empty {
  margin: 0.65rem 0 0;
  font-family: var(--font-accent);
  font-size: clamp(0.74rem, 1vw, 0.92rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.catalog-head {
  padding-bottom: 0.75rem;
  font-family: var(--font-accent);
  font-size: clamp(0.74rem, 1vw, 0.92rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.catalog-link {
  width: fit-content;
  max-width: 100%;
  color: #ef2d82;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
}

.rating-head {
  text-align: center;
}

.rating-star {
  color: #f2cb2d;
  filter: drop-shadow(0 0 0.45rem rgba(242, 203, 45, 0.7));
}

.catalog-row > span:nth-child(3) {
  text-align: center;
}

.catalog-pagination {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: clamp(0.7rem, 1.6vw, 1.1rem);
}

.catalog-pagination-button {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border: 2px solid currentColor;
  color: var(--dark);
  transition:
    background 160ms ease,
    color 160ms ease,
    opacity 160ms ease;
}

.catalog-pagination-button svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.catalog-pagination-button:hover:not(:disabled),
.catalog-pagination-button:focus-visible:not(:disabled) {
  background: var(--dark);
  color: var(--light);
  outline: 0;
}

.catalog-pagination-button:disabled {
  cursor: default;
  opacity: 0.28;
}

.catalog-pagination-count {
  min-width: 3rem;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: center;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
}

.project-tile {
  display: flex;
  height: var(--project-tile-height);
  min-height: 0;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 2rem);
  color: var(--dark);
}

.project-tile svg {
  width: auto;
  height: 100%;
  max-width: none;
  flex: 0 0 auto;
  fill: currentColor;
}

.project-tile .cutout {
  fill: var(--light);
}

.project-tile span {
  display: none;
}

.project-tile:nth-child(n + 5) {
  display: none;
}

.project-tile:hover,
.project-tile:focus-visible {
  outline: 0;
  opacity: 0.58;
}

.profile-footer {
  display: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--gap);
  margin-top: clamp(1.8rem, 3vw, 3rem);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem 1.1rem;
}

.socials a {
  font-size: clamp(1rem, 1.7vw, 2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.055em;
}

.socials a:hover,
.socials a:focus-visible {
  opacity: 0.58;
}

@media (min-width: 1024px) {
  .project-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  body {
    min-height: 200svh;
  }

  .light-fixed {
    overflow: hidden;
  }

  .profile-screen {
    height: 100svh;
    min-height: 100svh;
    grid-template-rows: auto minmax(0, 1fr) auto;
    padding-bottom: max(var(--edge), env(safe-area-inset-bottom));
  }

  .cover-header,
  .profile-footer {
    flex-direction: column;
  }

  .cover-header .identity-gif-title {
    width: fit-content;
    margin-right: 0;
    margin-left: 0;
  }

  .profile-header .identity-gif-title {
    width: fit-content;
    margin-left: 0;
  }

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

  .active-area {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 3vw, 1.8rem);
    min-width: 0;
  }

  .section-kicker {
    margin-bottom: 0;
  }

  .detail-stage {
    width: 100%;
    min-height: 0;
    min-width: 0;
  }

  .detail-panel {
    min-width: 0;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalog-row {
    grid-template-columns: minmax(7rem, 1fr) minmax(10rem, 1.6fr) 2.4rem 5.6rem;
    gap: clamp(0.65rem, 2.6vw, 1.2rem);
  }

  .about-copy,
  .catalog-table {
    max-width: 100%;
    min-width: 0;
  }

  .about-copy p,
  .about-facts dd,
  .catalog-row > span {
    overflow-wrap: anywhere;
  }

  .project-tile {
    height: var(--project-tile-height);
    min-height: 0;
  }

  .project-tile svg {
    max-width: none;
  }

  .profile-footer,
  .socials {
    align-items: flex-start;
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  :root {
    --edge: 1rem;
    --identity: clamp(4rem, 22vw, 6rem);
    --subtitle: clamp(2.1rem, 13vw, 4rem);
    --cover-title-height: clamp(3.35rem, 16vw, 4rem);
    --cover-subtitle: clamp(0.95rem, 4vw, 1.1rem);
    --cover-footer: 0.75rem;
    --rive-title-lift: clamp(0.9rem, 4vw, 1.2rem);
  }

  .gutter {
    padding-right: max(var(--edge), env(safe-area-inset-right));
    padding-left: max(var(--edge), env(safe-area-inset-left));
  }

  .cover-screen {
    min-height: 100dvh;
    padding-bottom: max(var(--edge), env(safe-area-inset-bottom));
  }

  .cover-footer {
    gap: clamp(1.3rem, 8vw, 2.1rem);
  }

  .cover-footer-grid {
    height: clamp(6.4rem, 28vw, 8.5rem);
  }

  .profile-header {
    margin-bottom: clamp(1rem, 5vw, 1.5rem);
  }

  .cover-header .subtitle-light,
  .profile-header .subtitle-dark {
    margin-left: clamp(1rem, 9vw, 1.35rem);
  }

  .section-kicker,
  .profile-footer h3 {
    font-size: 0.875rem;
    line-height: calc(1.25 / 0.875);
  }

  .cover-footer h3 {
    font-size: var(--cover-footer);
  }

  .highlight-list {
    width: 100%;
    flex-flow: row wrap;
    gap: 0.45rem 0.7rem;
  }

  .highlight-list button {
    min-height: 2.35rem;
    padding: 0 0.45rem;
    border-bottom-color: transparent;
  }

  .highlight-list button::before {
    display: none;
  }

  .highlight-list button:hover,
  .highlight-list button:focus-visible {
    transform: none;
  }

  .highlight-list button[aria-pressed="true"] {
    transform: none;
  }

  .highlight-list button:active {
    background: var(--dark);
    color: var(--light);
  }

  .about-copy p {
    font-size: clamp(0.9rem, 4.25vw, 1.05rem);
    line-height: 1.22;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .catalog-title-row {
    align-items: center;
  }

  .catalog-head {
    display: grid;
    padding-bottom: 0.35rem;
    font-size: 0.48rem;
    line-height: 1.25;
  }

  .catalog-row {
    grid-template-columns: minmax(4.7rem, 0.95fr) minmax(0, 1.65fr) 1.4rem 3.35rem;
    gap: 0.35rem;
    padding: 0.44rem 0;
    border-top: 1px solid rgba(21, 21, 21, 0.32);
  }

  .catalog-row > span {
    display: block;
    min-width: 0;
    text-align: left;
  }

  .catalog-link {
    width: fit-content;
    justify-self: start;
  }

  .catalog-row > span::before {
    display: none;
    content: none;
  }

  .catalog-row > span:nth-child(3) {
    text-align: center;
  }

  .catalog-row > span:nth-child(4) {
    white-space: nowrap;
  }

  .catalog-pagination {
    justify-content: flex-start;
    padding-bottom: 0.15rem;
  }

  .profile-footer {
    width: 100%;
  }

  .socials {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 380px) {
  :root {
    --edge: 0.875rem;
    --cover-title-height: clamp(2.85rem, 15.5vw, 3.35rem);
    --cover-subtitle: 0.9rem;
  }

  .detail-panel h3 {
    font-size: clamp(1.7rem, 10vw, 2.25rem);
  }

  .catalog-row > span {
    display: block;
  }
}

.section-kicker,
.highlight-list button,
.profile-footer h3 {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: calc(1 / 0.75);
  letter-spacing: 0.1em;
}

.section-kicker {
  margin-bottom: 1.25rem;
}

.highlight-list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: flex-start;
}

.highlight-list button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 0.45rem 0 0;
  border-bottom: 2px solid transparent;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.highlight-list button::before {
  width: 0.55rem;
  height: 2px;
  margin-right: 0.7rem;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.highlight-list button:hover,
.highlight-list button:focus-visible {
  transform: translateX(4px);
  border-bottom-color: currentColor;
  outline: 0;
}

.highlight-list button[aria-pressed="true"] {
  transform: translateX(4px);
  border-bottom-color: currentColor;
}

.highlight-list button:hover::before,
.highlight-list button:focus-visible::before,
.highlight-list button[aria-pressed="true"]::before {
  transform: scaleX(1);
}

.active-area .project-grid {
  display: none;
}

.profile-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  width: max-content;
  max-width: 100%;
  align-self: end;
}

.profile-footer h3 {
  width: 100%;
  margin: 0 0 0.35rem;
  text-align: left;
}

.socials {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 1.125rem;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0;
  line-height: 0;
}

.socials svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

@media (min-width: 40rem) {
  .section-kicker,
  .highlight-list button,
  .profile-footer h3 {
    font-size: 0.875rem;
    line-height: calc(1.25 / 0.875);
  }
}

@media (min-width: 48rem) {
  .section-kicker,
  .highlight-list button,
  .profile-footer h3 {
    font-size: 1rem;
    line-height: calc(1.5 / 1);
  }
}

@media (min-width: 64rem) {
  .section-kicker,
  .highlight-list button,
  .profile-footer h3 {
    font-size: 1.125rem;
    line-height: calc(1.75 / 1.125);
  }
}

@media (min-width: 80rem) {
  .section-kicker,
  .highlight-list button,
  .profile-footer h3 {
    font-size: 1.25rem;
    line-height: calc(1.75 / 1.25);
  }
}

@media (max-width: 560px) {
  :root {
    --edge: 0.75rem;
    --cover-title-height: clamp(2.85rem, 14.5vw, 3.35rem);
    --cover-subtitle: 0.82rem;
    --rive-title-lift: clamp(0.62rem, 3vw, 0.9rem);
  }

  .profile-screen {
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
    padding-top: max(0.75rem, env(safe-area-inset-top));
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
  }

  .profile-header {
    margin-bottom: 0.55rem;
  }

  .profile-header .subtitle-dark {
    margin-top: calc(var(--rive-title-lift) * -1);
    margin-left: 1.05rem;
  }

  .active-area {
    gap: 0.45rem;
    overflow: hidden;
  }

  .section-kicker {
    margin-bottom: 0;
  }

  .section-kicker,
  .profile-footer h3 {
    font-size: 0.75rem;
    line-height: calc(1 / 0.75);
  }

  .section-kicker {
    margin-bottom: 0;
  }

  .profile-footer h3 {
    white-space: nowrap;
  }

  .detail-panel h3 {
    margin-bottom: 0.45rem;
    font-size: 1.55rem;
    line-height: 0.95;
  }

  .catalog-table {
    font-size: 0.68rem;
  }

  .about-layout {
    gap: 0.5rem;
  }

  .about-copy p {
    font-size: 0.78rem;
    line-height: 1.13;
    letter-spacing: 0;
  }

  .about-copy p + p {
    margin-top: 0.4rem;
  }

  .about-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.38rem 0.6rem;
  }

  .about-facts div {
    min-width: 0;
    padding-top: 0.3rem;
    border-top-width: 1px;
  }

  .about-facts div:last-child {
    grid-column: 1 / -1;
  }

  .about-facts dt {
    margin-bottom: 0.12rem;
    font-size: 0.52rem;
    line-height: 1.35;
  }

  .about-facts dd {
    font-size: 0.66rem;
    line-height: 1.1;
  }

  .highlight-list {
    width: 100%;
    flex-flow: row wrap;
    gap: 0.2rem 0.7rem;
  }

  .highlight-list button {
    min-height: 1.85rem;
    padding: 0 0.45rem;
    border-bottom-color: transparent;
  }

  .highlight-list button::before {
    display: none;
  }

  .highlight-list button:hover,
  .highlight-list button:focus-visible,
  .highlight-list button[aria-pressed="true"] {
    border-bottom-color: currentColor;
    transform: none;
  }

  .profile-footer {
    display: flex;
    width: 100%;
    margin-top: 0.2rem;
  }

  .profile-footer h3 {
    display: block;
    margin-bottom: 0.15rem;
  }

  .socials {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.6rem;
  }

  .socials a {
    width: 1.05rem;
    height: 1.05rem;
  }
}

@media (max-width: 380px), (max-height: 760px) {
  .about-copy p {
    font-size: 0.72rem;
    line-height: 1.1;
  }

  .about-facts dd {
    font-size: 0.62rem;
  }

  .profile-footer {
    margin-top: 0.25rem;
  }
}

@keyframes planetTilt {
  0%,
  100% {
    transform: rotate(-2deg);
  }

  50% {
    transform: rotate(4deg);
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes satelliteOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes planetBreath {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.045);
  }
}

@keyframes bandDrift {
  0%,
  100% {
    transform: translateX(-7px);
  }

  50% {
    transform: translateX(7px);
  }
}

@keyframes ringPulse {
  0%,
  100% {
    stroke-dasharray: 132 346;
    opacity: 1;
  }

  50% {
    stroke-dasharray: 190 288;
    opacity: 0.76;
  }
}

@keyframes ballPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(8px) scale(0.92);
  }
}

@keyframes detailPanelIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes airborneLetterFloat {
  0%,
  18%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1, 1);
  }

  24% {
    transform: translate3d(-0.018em, 0.006em, 0) rotate(-0.35deg) scale(1.018, 0.988);
  }

  32% {
    transform: translate3d(0.012em, -0.012em, 0) rotate(0.25deg) scale(0.992, 1.025);
  }

  39% {
    transform: translate3d(0, 0.006em, 0) rotate(0deg) scale(1.006, 0.998);
  }
}

@keyframes airborneLetterCuts {
  0%,
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scaleX(0.82);
  }

  18% {
    opacity: 1;
    transform: translate3d(-0.035em, 0.004em, 0) scaleX(0.94);
  }

  34% {
    opacity: 1;
    transform: translate3d(0.04em, -0.004em, 0) scaleX(0.64);
  }

  52% {
    opacity: 0.9;
    transform: translate3d(-0.018em, 0.006em, 0) scaleX(0.76);
  }

  70% {
    opacity: 1;
    transform: translate3d(0.026em, 0, 0) scaleX(0.9);
  }
}

@keyframes airborneLetterFlash {
  0%,
  38%,
  100% {
    opacity: 0;
  }

  45% {
    opacity: 0.34;
  }

  56% {
    opacity: 0.08;
  }
}

@keyframes airborneLogoSweep {
  0%,
  58%,
  100% {
    opacity: 0;
    transform: translate3d(-130%, 0, 0) skewX(-13deg);
  }

  66% {
    opacity: 0.12;
  }

  84% {
    opacity: 0;
    transform: translate3d(680%, 0, 0) skewX(-13deg);
  }
}

@keyframes airborneLogoOBreath {
  0%,
  18%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

  24% {
    transform: translate3d(-0.012em, 0, 0) rotate(-1.5deg) scale(1.025, 0.98);
  }

  32% {
    transform: translate3d(0.012em, -0.008em, 0) rotate(1.2deg) scale(0.988, 1.026);
  }
}

@keyframes airborneLogoODot {
  0%,
  16%,
  100% {
    opacity: 0;
    transform: translate3d(0.03em, 0, 0) scaleX(0.2);
  }

  23% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scaleX(0.78);
  }

  35% {
    opacity: 0;
    transform: translate3d(-0.06em, 0, 0) scaleX(0.16);
  }
}

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