@import url('https://fonts.googleapis.com/css2?family=Geist+Mono:wght@400;500&family=Noto+Sans+KR:wght@400;500;600;700;800&display=swap');
:root {
  --night: #0e1117;
  --blue: #91b8e0;
  --mint: #b8dee3;
  --yellow: #ffe8b9;
  --white: #f2f2f2;
  --muted: #a0a7b2;
  --line: #ffffff26;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: var(--night);
  color: var(--white);
  font-family: 'Noto Sans KR', Arial, sans-serif;
  word-break: keep-all;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 6px;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
figure,
p,
h1,
h2,
h3 {
  margin: 0;
}
.mono,
.eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
}
.skip {
  position: fixed;
  top: -100px;
  background: white;
  color: black;
  padding: 15px;
  z-index: 100;
}
.skip:focus {
  top: 10px;
}
.header {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5.3%;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}
.brand img {
  width: 112px;
  height: 43px;
  object-fit: contain;
  filter: invert(1);
  mix-blend-mode: screen;
}
.header nav {
  display: flex;
  gap: 37px;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
}
.header nav a {
  color: #c5c9d0;
}
.header nav a:hover {
  color: var(--blue);
}
.header-link {
  font-size: 12px;
  display: flex;
  gap: 30px;
}
.header-link span {
  color: var(--blue);
}
.hero {
  padding: 30px 5.3% 0;
  overflow: hidden;
}
.hero-top {
  display: flex;
  justify-content: space-between;
  color: var(--blue);
  font-size: 10px;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  align-items: center;
  min-height: 620px;
  gap: 10px;
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: 70px 0;
}
.eyebrow {
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 0.05em;
  margin-bottom: 27px;
}
h1 {
  font-size: clamp(42px, 4.25vw, 72px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 1.28;
}
h1 em {
  color: var(--blue);
  font-style: normal;
}
.intro {
  font-size: 15px;
  line-height: 1.95;
  color: #aab1bd;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  gap: 50px;
  align-items: center;
  padding: 16px 23px;
  background: var(--blue);
  color: var(--night);
  font-size: 13px;
  font-weight: 600;
  margin-top: 33px;
  border: 1px solid var(--blue);
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: var(--mint);
  transform: translateY(-2px);
}
.hero-art {
  position: relative;
  margin: 0 -25px 0 -25px;
}
.hero-art > img {
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
  animation: drift 9s ease-in-out infinite;
}
.hero-art figcaption {
  display: flex;
  justify-content: space-between;
  margin: 30px 35px 0;
  color: #8995a3;
  font-size: 9px;
  gap: 12px;
}
.hero-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex;
  align-items: center;
  gap: 25px;
  color: #929ba8;
  font-size: 11px;
}
.hero-bottom > span:last-child {
  margin-left: auto;
}
.scroll-line {
  height: 1px;
  width: 60px;
  background: #788697;
}
@keyframes drift {
  50% {
    transform: translateY(-10px);
  }
}
@media (min-width: 1600px) {
  .hero-layout {
    min-height: 720px;
  }
  .hero,
  .header {
    padding-left: max(5.3%, calc((100vw - 1450px) / 2));
    padding-right: max(5.3%, calc((100vw - 1450px) / 2));
  }
}
@media (max-width: 760px) {
  .header {
    height: 76px;
    padding: 0 6%;
    gap: 15px;
  }
  .brand img {
    width: 94px;
  }
  .header nav {
    gap: 15px;
    font-size: 10px;
  }
  .header-link {
    display: none;
  }
  .hero {
    padding: 25px 6% 0;
  }
  .hero-top {
    font-size: 8px;
    gap: 15px;
  }
  .hero-top span:last-child {
    text-align: right;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
  }
  .hero-copy {
    padding: 57px 0 0;
  }
  .eyebrow {
    font-size: 11px;
    margin-bottom: 22px;
  }
  h1 {
    font-size: clamp(38px, 8.4vw, 62px);
  }
  .intro {
    font-size: 14px;
    margin-top: 22px;
  }
  .button {
    margin-top: 26px;
  }
  .hero-art {
    margin: 25px -15px 30px;
  }
  .hero-art > img {
    max-height: 360px;
    object-fit: contain;
  }
  .hero-art figcaption {
    margin: 10px 20px 0;
    font-size: 8px;
  }
  .hero-bottom {
    gap: 12px;
    font-size: 9px;
  }
  .hero-bottom .mono {
    font-size: 8px;
  }
  .scroll-line {
    width: 20px;
  }
  .hero-bottom > span:last-child {
    max-width: 150px;
    text-align: right;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
.section {
  padding: 100px 7.4%;
}
.section-label {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  font-size: 10px;
  color: #647385;
  margin-bottom: 65px;
}
.section-label > span:last-child {
  text-align: right;
}
h2 {
  font-size: clamp(32px, 3.25vw, 52px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.055em;
}
.body-copy {
  font-size: 14px;
  line-height: 1.95;
  color: var(--muted);
}
.small-note {
  display: block;
  font-size: 11px;
  line-height: 1.8;
  color: #717b88;
}
.story {
  background: var(--blue);
  color: var(--night);
  padding-bottom: 45px;
}
.story .section-label {
  color: #364f67;
}
.story-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
}
.story-copy {
  padding-top: 4px;
}
.story-copy p {
  font-size: 16px;
  line-height: 1.95;
  margin-bottom: 24px;
}
.story-copy .small-note {
  color: #334e67;
  font-size: 11px;
  margin-top: 30px;
}
.story-words {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #0e111730;
  margin-top: 65px;
  padding-top: 28px;
  font-size: clamp(20px, 4.6vw, 68px);
  letter-spacing: -0.065em;
  color: #162f48;
}
.device {
  background: #f2f2f2;
  color: var(--night);
}
.device-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8%;
  align-items: center;
}
.product-figure {
  position: relative;
  background: #dedee1;
}
.product-figure img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}
.product-figure figcaption {
  position: absolute;
  bottom: 18px;
  left: 20px;
  font-size: 9px;
  color: #53545e;
}
.device-copy .eyebrow {
  color: #41678c;
  margin-bottom: 20px;
}
.device-copy h2 {
  font-size: clamp(34px, 3.7vw, 55px);
}
.device-copy .body-copy {
  color: #586271;
  margin-top: 24px;
  max-width: 370px;
}
.device-facts {
  margin: 30px 0 20px;
}
.device-facts > div {
  display: flex;
  border-bottom: 1px solid #0e111720;
  gap: 22px;
  padding: 14px 0;
  align-items: center;
  font-size: 13px;
}
.device-facts .mono {
  color: #6a87a6;
  font-size: 10px;
}
.device-copy .small-note {
  max-width: 350px;
  font-size: 10px;
}
.interaction {
  margin-top: 75px;
  padding-top: 55px;
  border-top: 1px solid #0e111729;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8%;
  align-items: center;
}
.interaction-image {
  background: #dedee1;
}
.interaction-image img {
  width: 100%;
  aspect-ratio: 1.685;
  object-fit: cover;
}
.toggle {
  display: flex;
  border: 1px solid #bcc3cc;
  padding: 4px;
  max-width: 310px;
  margin-bottom: 29px;
}
.toggle button {
  width: 50%;
  background: transparent;
  border: 0;
  padding: 11px 10px;
  color: #4b5966;
  font-size: 13px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 10px;
}
.toggle button .mono {
  font-size: 9px;
}
.toggle button[aria-pressed='true'] {
  background: var(--night);
  color: var(--white);
}
.interaction-state {
  font-size: 10px;
  color: #557ca1;
  margin-bottom: 12px;
}
.interaction h3 {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.interaction .body-copy {
  margin-top: 15px;
  color: #626a77;
  font-size: 13px;
  max-width: 360px;
}
.interaction .small-note {
  margin-top: 18px;
  font-size: 10px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
}
.section-heading > .body-copy {
  max-width: 385px;
  font-size: 13px;
  padding-bottom: 4px;
}
.journey .section-label,
.archive .section-label {
  color: #91a4ba;
}
.journey {
  padding-bottom: 80px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 65px;
  border-top: 1px solid var(--line);
}
.steps article {
  padding: 30px 30px 0;
  border-right: 1px solid var(--line);
}
.steps article:first-child {
  padding-left: 0;
}
.steps article:last-child {
  border-right: 0;
  padding-right: 0;
}
.step-number {
  font-size: 44px;
  color: var(--blue);
  font-weight: 400;
  letter-spacing: -0.09em;
}
.step-en {
  color: var(--blue);
  font-size: 10px;
  margin: 25px 0 14px;
}
.steps h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.steps article > p:last-child {
  font-size: 13px;
  line-height: 1.9;
  color: #9ba5b2;
  margin-top: 16px;
  max-width: 290px;
}
.archive {
  padding-top: 55px;
}
.archive .section-label {
  border-top: 1px solid var(--line);
  padding-top: 35px;
}
.archive h2 span {
  color: var(--blue);
}
.art-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 55px;
}
.art-frame {
  position: relative;
  background: #050709;
  padding: 30px 20px 8px;
  overflow: hidden;
}
.art-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  mix-blend-mode: screen;
  transition: transform 0.7s;
}
.art-frame:hover img {
  transform: scale(1.035);
}
.art-tag {
  color: #92a1b3;
  position: absolute;
  top: 19px;
  left: 23px;
  font-size: 9px;
}
.art-grid figcaption {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 12px;
  margin-top: 18px;
  color: #b4bcc7;
}
.art-grid figcaption .mono {
  font-size: 9px;
  color: #8d9cad;
}
.archive-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  border-top: 1px solid var(--line);
  margin-top: 48px;
  padding-top: 30px;
}
.archive-note > p {
  font-size: 20px;
  line-height: 1.8;
}
.archive-note > div > p {
  color: #a0abb8;
  font-size: 13px;
  line-height: 1.9;
}
.archive-note .small-note {
  margin-top: 16px;
  font-size: 10px;
}
.palette {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 60px;
}
.palette > div {
  background: var(--swatch);
  color: var(--night);
  padding: 19px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
}
.palette > div > span:first-child {
  font-size: 9px;
}
.palette .night-swatch {
  color: #f2f2f2;
  border: 1px solid #ffffff2b;
}
.city {
  background: var(--mint);
  color: var(--night);
}
.city .section-label {
  color: #446067;
}
.city-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 12%;
}
.city .eyebrow {
  color: #406773;
}
.city .body-copy {
  color: #425f66;
  margin-top: 25px;
}
.city-detail > p:first-child {
  font-size: 14px;
  line-height: 2;
  color: #35545c;
}
.data-flow {
  margin: 32px 0 25px;
}
.data-flow > div {
  border-top: 1px solid #0e11172b;
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.data-flow strong {
  font-weight: 500;
  font-size: 15px;
}
.data-flow .mono {
  font-size: 9px;
  color: #4c6971;
}
.data-flow > span {
  display: block;
  color: #557980;
  font-size: 18px;
}
.city .small-note {
  color: #4c6971;
  font-size: 10px;
}
.faq .section-label {
  color: #91a4ba;
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 60px;
}
.faq h2 {
  font-size: 32px;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq details:first-child {
  border-top: 1px solid var(--line);
}
.faq summary {
  font-size: 14px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary span {
  font-family: monospace;
  font-size: 19px;
  color: var(--blue);
  line-height: 1;
}
.faq details[open] summary span {
  transform: rotate(45deg);
}
.faq details p {
  color: #a0abb8;
  font-size: 13px;
  line-height: 1.95;
  padding: 20px 35px 2px 0;
}
.closing {
  position: relative;
  text-align: center;
  background: var(--blue);
  color: var(--night);
  padding: 86px 6% 105px;
  overflow: hidden;
}
.closing > .mono {
  font-size: 10px;
  color: #314d67;
}
.closing h2 {
  margin-top: 25px;
  font-size: clamp(38px, 4.4vw, 64px);
  position: relative;
  z-index: 1;
}
.closing .button {
  background: var(--night);
  color: var(--white);
  position: relative;
  z-index: 1;
}
.closing .button:hover {
  background: #26374c;
}
.closing-hum {
  position: absolute;
  font-family: Arial, sans-serif;
  font-size: clamp(170px, 28vw, 470px);
  line-height: 0.75;
  font-weight: 800;
  letter-spacing: -0.08em;
  bottom: -20px;
  left: -0.02em;
  color: #0e111710;
  pointer-events: none;
}
footer {
  padding: 30px 5.3%;
  display: flex;
  align-items: center;
  gap: 35px;
  flex-wrap: wrap;
}
footer .brand img {
  width: 90px;
}
footer p {
  font-size: 10px;
  color: #adb5c1;
}
footer > .mono {
  margin-left: auto;
  font-size: 9px;
  color: #9aa6b5;
}
footer .development {
  width: 100%;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  text-align: right;
  color: #7f8c9d;
  font-size: 9px;
  font-family: 'Geist Mono', monospace;
}
@media (max-width: 900px) {
  .section {
    padding: 75px 6%;
  }
  .section-label {
    margin-bottom: 45px;
    font-size: 9px;
  }
  .story-layout {
    gap: 40px;
  }
  .story-copy p {
    font-size: 14px;
  }
  .device-layout,
  .interaction {
    gap: 5%;
  }
  .device-copy h2 {
    font-size: 36px;
  }
  .device-copy .body-copy {
    font-size: 13px;
  }
  .section-heading {
    gap: 30px;
  }
  .section-heading > .body-copy {
    max-width: 290px;
  }
  .city-layout {
    gap: 6%;
  }
  .faq-layout {
    gap: 30px;
  }
  .steps h3 {
    font-size: 16px;
  }
  .steps article {
    padding-left: 20px;
    padding-right: 20px;
  }
  .palette > div {
    padding: 16px 12px;
  }
  .palette > div > span:first-child {
    font-size: 8px;
  }
}
@media (max-width: 600px) {
  .section {
    padding: 58px 6%;
  }
  .section-label {
    font-size: 8px;
    line-height: 1.8;
    margin-bottom: 35px;
    gap: 20px;
  }
  .section-label > span:last-child {
    max-width: 150px;
  }
  h2 {
    font-size: 33px;
  }
  .story-layout,
  .device-layout,
  .interaction,
  .city-layout,
  .faq-layout,
  .archive-note {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .story-copy p {
    font-size: 14px;
    margin-bottom: 18px;
  }
  .story-copy .small-note {
    margin-top: 24px;
  }
  .story-words {
    margin-top: 35px;
    padding-top: 20px;
    font-size: 7.2vw;
  }
  .device-copy {
    padding-top: 5px;
  }
  .device-copy h2 {
    font-size: 36px;
  }
  .device-copy .body-copy {
    max-width: none;
  }
  .device-facts {
    margin: 22px 0 15px;
  }
  .interaction {
    margin-top: 38px;
    padding-top: 35px;
    gap: 25px;
  }
  .toggle {
    max-width: 100%;
    margin-bottom: 24px;
  }
  .interaction h3 {
    font-size: 21px;
  }
  .interaction .body-copy {
    max-width: none;
  }
  .section-heading {
    display: block;
  }
  .section-heading > .body-copy {
    margin-top: 22px;
    max-width: none;
  }
  .steps {
    grid-template-columns: 1fr;
    margin-top: 35px;
  }
  .steps article,
  .steps article:first-child,
  .steps article:last-child {
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    position: relative;
  }
  .step-number {
    position: absolute;
    right: 0;
    top: 24px;
    font-size: 32px;
  }
  .step-en {
    margin: 0 0 13px;
  }
  .steps h3 {
    font-size: 20px;
  }
  .steps article > p:last-child {
    max-width: 280px;
    margin-top: 10px;
  }
  .archive {
    padding-top: 12px;
  }
  .art-grid {
    gap: 25px;
    grid-template-columns: 1fr;
    margin-top: 32px;
  }
  .art-frame {
    padding: 25px 15px 5px;
  }
  .art-grid figcaption {
    font-size: 11px;
    margin-top: 14px;
  }
  .archive-note {
    gap: 22px;
    margin-top: 30px;
    padding-top: 25px;
  }
  .archive-note > p {
    font-size: 21px;
  }
  .palette {
    margin-top: 30px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .palette > div {
    padding: 13px 7px;
    font-size: 10px;
    gap: 18px;
  }
  .palette > div > span:first-child {
    font-size: 6px;
    letter-spacing: -0.03em;
  }
  .city-detail > p:first-child {
    font-size: 13px;
  }
  .data-flow {
    margin-top: 25px;
  }
  .faq h2 {
    font-size: 30px;
  }
  .faq-layout {
    gap: 28px;
  }
  .faq summary {
    font-size: 13px;
  }
  .faq details {
    padding: 19px 0;
  }
  .faq details p {
    font-size: 12px;
    padding-right: 10px;
  }
  .closing {
    padding: 63px 6% 78px;
  }
  .closing h2 {
    font-size: 38px;
  }
  footer {
    padding: 25px 6%;
    gap: 20px;
  }
  footer p {
    font-size: 9px;
  }
  footer > .mono {
    margin-left: 0;
    width: 100%;
    font-size: 8px;
  }
  footer .development {
    text-align: left;
    font-size: 8px;
    padding-top: 15px;
  }
}
.reading-progress {
  position: fixed;
  left: 0;
  top: 0;
  height: 2px;
  background: #b8dee3;
  z-index: 40;
  width: 0;
}
.company-brand img {
  width: 90px;
  height: 44px;
  object-fit: contain;
  filter: invert(1);
  mix-blend-mode: screen;
}
.brand-divider {
  width: 1px;
  height: 23px;
  background: #ffffff35;
}
.product-brand {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 17px;
}
.product-brand span {
  font-size: 9px;
  color: #98a4b1;
}
.header {
  gap: 22px;
}
.header nav {
  margin-left: auto;
}
@media (max-width: 760px) {
  .header {
    gap: 14px;
  }
  .company-brand img {
    width: 69px;
  }
  .product-brand {
    font-size: 15px;
  }
  .product-brand span {
    display: none;
  }
  .header nav {
    gap: 14px;
  }
  .header nav a:last-child {
    display: none;
  }
}
/* HUM — motion edition */
:root {
  --night: #090d12;
  --line: #ffffff24;
  --muted: #a6b2c1;
}
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 82px;
  background: #090d12ed;
  backdrop-filter: blur(20px);
  padding-inline: 4.7%;
  border-bottom-color: #ffffff17;
}
.header nav {
  gap: 30px;
}
.header nav a {
  transition: color 0.2s;
}
.header nav a.is-active {
  color: var(--blue);
}
.header-link {
  padding: 10px 15px;
  border: 1px solid #91b8e04d;
  font-size: 11px;
  gap: 18px;
}
.company-brand img {
  width: 97px;
  height: 45px;
}
.product-brand {
  font-size: 16px;
  letter-spacing: 0.08em;
}
.product-brand span {
  font-size: 8px;
  line-height: 1.4;
  max-width: 40px;
}
.hero-v2 {
  padding: 28px 4.7% 0;
  background: radial-gradient(ellipse at 78% 40%, #14202b60, transparent 55%), var(--night);
}
.hero-top {
  font-size: 9px;
  color: #7f90a5;
}
.hero-v2 .hero-layout {
  grid-template-columns: 1.05fr 1fr;
  min-height: 660px;
  gap: 2%;
}
.hero-v2 .hero-copy {
  padding: 54px 0 55px;
}
.product-signature {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-bottom: 34px;
}
.product-signature img {
  width: 93px;
  height: 38px;
  object-fit: contain;
  filter: invert(1);
  mix-blend-mode: screen;
}
.product-signature .mono {
  font-size: 8px;
  line-height: 1.7;
  color: #7c8b9e;
  letter-spacing: 0.08em;
}
.hero-v2 h1 {
  font-size: clamp(48px, 5.5vw, 86px);
  font-weight: 500;
  line-height: 1.17;
  letter-spacing: -0.065em;
}
.hero-v2 h1 em {
  color: var(--mint);
}
.hero-v2 .intro {
  font-size: 14px;
  line-height: 1.95;
  color: #a2aebb;
  margin-top: 29px;
}
.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hero-actions .button {
  margin: 0;
  gap: 28px;
  background: var(--mint);
  border-color: var(--mint);
  font-size: 12px;
  padding: 16px 20px;
}
.hero-actions .button:hover {
  background: var(--blue);
}
.text-button {
  background: none;
  border: 0;
  color: #c3cbd5;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  padding: 10px 0;
}
.text-button > .mono {
  color: #74869b;
  font-size: 9px;
  margin-left: 4px;
}
.play-icon {
  font-size: 22px;
}
.text-button:hover {
  color: var(--mint);
}
.motion-hero {
  margin: 0;
  align-self: center;
  position: relative;
}
.orbital-label {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: #738396;
  padding: 0 10px;
}
.hero-video-wrap {
  aspect-ratio: 1;
  position: relative;
  will-change: transform;
  transition: transform 0.3s ease-out;
  perspective: 800px;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
}
.hero-art > img {
  animation: none;
}
.viewfinder {
  position: absolute;
  inset: 6%;
  pointer-events: none;
}
.viewfinder i {
  position: absolute;
  width: 13px;
  height: 13px;
  border-color: #5c768f;
  border-style: solid;
}
.viewfinder i:nth-child(1) {
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
}
.viewfinder i:nth-child(2) {
  top: 0;
  right: 0;
  border-width: 1px 1px 0 0;
}
.viewfinder i:nth-child(3) {
  bottom: 0;
  left: 0;
  border-width: 0 0 1px 1px;
}
.viewfinder i:nth-child(4) {
  bottom: 0;
  right: 0;
  border-width: 0 1px 1px 0;
}
.motion-hero figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8px 10px 0;
  padding-top: 14px;
  border-top: 1px solid #ffffff1a;
}
.motion-hero figcaption > .mono {
  font-size: 8px;
  letter-spacing: 0.1em;
}
.motion-control {
  background: transparent;
  border: 0;
  color: #a3b4c7;
  font-size: 10px;
  padding: 5px;
  display: flex;
  gap: 15px;
  align-items: center;
}
.motion-control:hover {
  color: white;
}
.hero-bottom {
  padding: 23px 0;
  color: #788a9f;
  font-size: 9px;
}
.hero-bottom > a {
  font-size: 9px;
  display: flex;
  gap: 17px;
  align-items: center;
}
.hero-caption {
  display: flex;
  gap: 20px;
  font-family: 'Geist Mono', monospace;
  font-size: 8px;
  margin: auto;
}
.hero-bottom > span:last-child {
  margin-left: 0;
}
.story {
  background: #b8dee3;
  color: #152431;
  padding-top: 95px;
}
.story .section-label {
  color: #506e78;
}
.story-words {
  font-size: clamp(26px, 5.4vw, 80px);
  color: #12303a;
}
.device {
  background: #eff1f3;
}
.product-figure {
  overflow: hidden;
}
.product-figure img {
  transition: transform 0.8s;
}
.product-figure:hover img {
  transform: scale(1.035);
}
.interaction-image {
  overflow: hidden;
}
.interaction-image img {
  transition: opacity 0.25s;
}
.device-facts > div {
  transition:
    padding-left 0.25s,
    color 0.25s;
}
.device-facts > div:hover {
  padding-left: 10px;
  color: #41678c;
}
.journey {
  background: #0c1219;
}
.steps article {
  transition: background 0.3s;
}
.steps article:hover {
  background: #91b8e008;
}
.steps article:first-child:hover {
  background: transparent;
}
.step-number {
  color: #82a6cb;
}
.lab-section {
  background: #090d12;
  padding-top: 90px;
}
.lab-section .section-label {
  border-top: 0;
  padding-top: 0;
}
.lab-section .eyebrow {
  font-size: 11px;
  margin-bottom: 22px;
  color: var(--mint);
}
.lab-section .section-heading h2 {
  font-size: clamp(38px, 4.2vw, 64px);
}
.lab-section h2 span {
  color: var(--mint);
}
.sound-lab {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  margin-top: 50px;
  border: 1px solid #91b8e02e;
  background: #0b1016;
}
.lab-stage {
  min-width: 0;
  background: #030507;
  position: relative;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #91b8e02e;
}
.stage-header {
  display: flex;
  justify-content: space-between;
  color: #8196ad;
  font-size: 9px;
  padding: 22px 25px;
  gap: 15px;
}
.lab-video-area {
  position: relative;
  aspect-ratio: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}
.lab-video-area video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  inset: 0;
  mix-blend-mode: screen;
}
.stage-loading {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  white-space: nowrap;
  background: #0a101cdd;
  color: #c9dfeb;
  padding: 8px 13px;
  border: 1px solid #ffffff25;
}
.stage-loading[hidden] {
  display: none;
}
.stage-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px 22px;
  gap: 20px;
}
.stage-small {
  display: block;
  color: #647a90;
  font-size: 8px;
  margin-bottom: 9px;
}
.stage-bottom strong {
  font-family: 'Geist Mono', monospace;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.03em;
}
.circle-button {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid #a9c3d65c;
  border-radius: 50%;
  background: transparent;
  color: #d9e8ed;
  font-size: 20px;
  transition: background 0.2s;
}
.circle-button:hover {
  background: #ffffff14;
}
.video-progress {
  height: 2px;
  background: #18242e;
}
.video-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--mint);
  transition: width 0.12s linear;
}
.lab-controls {
  padding: 29px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.control-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #8aa2b8;
  gap: 15px;
}
.control-heading .mono {
  font-size: 9px;
}
.control-heading > span:last-child {
  font-size: 10px;
  color: #a3b6c6;
}
.lab-controls h3 {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.04em;
  margin-top: 17px;
}
.control-intro {
  font-size: 12px;
  color: #8b9bad;
  line-height: 1.8;
  margin-top: 11px;
}
.fragment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 24px;
}
.fragment {
  position: relative;
  border: 1px solid #6a839333;
  background: #05090d;
  padding: 0;
  color: #8296aa;
  min-width: 0;
  aspect-ratio: 1.1;
  overflow: hidden;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s;
}
.fragment img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
  pointer-events: none;
  transition: transform 0.3s;
}
.fragment > .mono {
  position: absolute;
  left: 10px;
  bottom: 8px;
  font-size: 10px;
}
.fragment-check {
  position: absolute;
  right: 9px;
  top: 6px;
  font-size: 14px;
  color: #6b8298;
}
.fragment[aria-pressed='true'] {
  border-color: var(--mint);
  background: #17272d;
  color: #d4eef0;
}
.fragment[aria-pressed='true'] .fragment-check {
  color: var(--mint);
  transform: rotate(45deg);
}
.fragment:hover {
  border-color: #abcdd8;
  transform: translateY(-2px);
}
.fragment:hover img {
  transform: scale(1.07);
}
.selection-status {
  color: #9eb7c7;
  font-size: 11px;
  margin-top: 14px;
  min-height: 18px;
  line-height: 1.65;
}
.speed-control {
  border-top: 1px solid #ffffff1a;
  padding-top: 23px;
  margin-top: 24px;
}
.speed-control label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: #8aa2b8;
  font-size: 12px;
}
.speed-control .mono {
  font-size: 9px;
}
.speed-control input {
  width: 100%;
  accent-color: var(--mint);
  height: 24px;
  margin: 15px 0 4px;
  cursor: pointer;
}
.range-labels {
  display: flex;
  justify-content: space-between;
  color: #6c8094;
  font-size: 8px;
}
.shuffle-button {
  background: transparent;
  border: 1px solid #91b8e042;
  color: #cfdfeb;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  margin-top: 23px;
  transition: background 0.2s;
}
.shuffle-button > .mono {
  font-size: 8px;
  margin-left: auto;
  color: #7b95ac;
}
.shuffle-button > span:first-child {
  font-size: 21px;
}
.shuffle-button:hover {
  background: #91b8e018;
}
.lab-controls > .small-note {
  font-size: 9px;
  color: #667b8c;
  margin-top: 16px;
  line-height: 1.8;
}
.archive-note {
  gap: 60px;
  margin-top: 45px;
  padding-top: 35px;
}
.archive-note > p {
  font-size: 28px;
  line-height: 1.6;
}
.palette {
  margin-top: 40px;
}
.palette > div {
  transition:
    flex-grow 0.3s,
    transform 0.3s;
}
.palette > div:hover {
  transform: translateY(-6px);
}
.city {
  background: #91b8e0;
}
.city .body-copy,
.city-detail > p:first-child {
  color: #314e68;
}
.city .eyebrow {
  color: #2e5272;
}
.city .section-label {
  color: #385e7e;
}
.city .small-note {
  color: #45627d;
}
.data-flow > div {
  border-color: #183c5c35;
}
.data-flow .mono {
  color: #466885;
}
.data-flow > span {
  color: #476d8e;
}
.company-section {
  background: #f4f4f4;
  color: #090d12;
}
.company-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
  align-items: center;
}
.company-logo-wrap img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}
.company-logo-wrap > .mono {
  display: block;
  text-align: center;
  font-size: 9px;
  color: #75818c;
  margin-top: 20px;
}
.company-layout .eyebrow {
  color: #657b8d;
  font-size: 10px;
}
.company-layout h2 {
  font-size: clamp(28px, 2.7vw, 43px);
}
.company-layout .body-copy {
  color: #63707d;
  margin-top: 24px;
  font-size: 13px;
}
.company-product {
  display: flex;
  gap: 20px;
  padding-top: 25px;
  margin-top: 30px;
  border-top: 1px solid #0e11172b;
}
.company-product .mono {
  font-size: 9px;
  color: #536777;
}
.closing {
  background: var(--mint);
}
.closing-hum {
  color: #0e11170c;
}
.closing .button {
  border-color: var(--night);
}
footer {
  background: #090d12;
}
.faq {
  padding-block: 85px;
}
.section-heading,
.story-layout,
.device-layout,
.interaction,
.city-layout,
.company-layout {
  scroll-margin-top: 110px;
}
#film-dialog {
  width: min(620px, calc(100vw - 32px));
  max-height: 94dvh;
  padding: 22px;
  background: #090d12;
  color: #f2f2f2;
  border: 1px solid #6e869b50;
  overflow: auto;
}
#film-dialog::backdrop {
  background: #020609d9;
  backdrop-filter: blur(10px);
}
.film-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.film-header .mono {
  color: #7c96ad;
  font-size: 8px;
}
.film-header h2 {
  font-size: 22px;
  margin-top: 10px;
}
.film-header .circle-button {
  flex-shrink: 0;
}
#intro-film {
  width: 100%;
  max-height: 65dvh;
  aspect-ratio: 1;
  background: #000;
  object-fit: contain;
  margin-top: 20px;
}
.film-caption {
  font-size: 8px;
  color: #70869c;
  margin-top: 14px;
}
body.dialog-open {
  overflow: hidden;
}
.js-motion .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.js-motion .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 1600px) {
  .hero-v2 .hero-layout {
    min-height: 760px;
  }
  .hero-v2,
  .header {
    padding-inline: max(4.7%, calc((100vw - 1450px) / 2));
  }
  .hero-v2 h1 {
    font-size: 90px;
  }
}
@media (max-width: 1100px) {
  .header nav {
    gap: 20px;
    font-size: 11px;
  }
  .header-link {
    font-size: 10px;
    padding: 9px 12px;
  }
  .hero-v2 .hero-layout {
    min-height: 600px;
  }
  .hero-v2 h1 {
    font-size: clamp(46px, 5.5vw, 68px);
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-actions .button {
    font-size: 11px;
    gap: 22px;
  }
  .text-button {
    font-size: 10px;
  }
  .text-button > .mono {
    display: none;
  }
  .lab-controls {
    padding: 24px;
  }
  .sound-lab {
    grid-template-columns: 1.1fr 1fr;
  }
  .stage-header {
    font-size: 8px;
    padding: 20px;
  }
  .lab-controls h3 {
    font-size: 21px;
  }
  .hero-caption {
    gap: 12px;
  }
  .hero-bottom > span:last-child {
    max-width: 200px;
    text-align: right;
  }
  .brand-divider {
    display: none;
  }
}
@media (max-width: 760px) {
  .header {
    height: 72px;
    padding-inline: 5%;
    gap: 16px;
  }
  .company-brand img {
    width: 73px;
    height: 38px;
  }
  .product-brand {
    font-size: 14px;
  }
  .header nav {
    gap: 19px;
    font-size: 10px;
  }
  .header nav a:last-child {
    display: none;
  }
  .hero-v2 {
    padding: 23px 6% 0;
  }
  .hero-v2 .hero-top {
    font-size: 7px;
  }
  .hero-v2 .hero-layout {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 0;
  }
  .hero-v2 .hero-copy {
    padding: 45px 0 0;
  }
  .product-signature {
    margin-bottom: 22px;
    gap: 16px;
  }
  .product-signature img {
    width: 79px;
    height: 31px;
  }
  .product-signature .mono {
    font-size: 7px;
  }
  .hero-v2 h1 {
    font-size: clamp(46px, 9.5vw, 72px);
  }
  .hero-v2 .intro {
    font-size: 13px;
    line-height: 1.85;
    margin-top: 22px;
  }
  .hero-actions {
    margin-top: 24px;
    gap: 24px;
  }
  .hero-actions .button {
    font-size: 11px;
    padding: 14px 16px;
    gap: 18px;
  }
  .text-button {
    font-size: 10px;
  }
  .motion-hero {
    margin: 35px 0 20px;
    width: 100%;
    max-width: 500px;
    justify-self: center;
  }
  .hero-video-wrap {
    max-height: 460px;
  }
  .orbital-label {
    font-size: 7px;
    padding: 0;
  }
  .motion-hero figcaption {
    margin: 0;
    padding-top: 10px;
  }
  .motion-hero figcaption > .mono {
    font-size: 7px;
  }
  .motion-control {
    font-size: 9px;
  }
  .hero-bottom {
    padding: 17px 0;
    font-size: 8px;
  }
  .hero-bottom > a {
    font-size: 8px;
    gap: 10px;
  }
  .hero-caption {
    display: none;
  }
  .hero-bottom > span:last-child {
    font-size: 8px;
    max-width: 160px;
    margin-left: auto;
  }
  .story {
    padding-top: 60px;
  }
  .sound-lab {
    grid-template-columns: 1fr;
  }
  .lab-stage {
    border-right: 0;
    border-bottom: 1px solid #91b8e02e;
  }
  .lab-video-area {
    flex: auto;
  }
  .lab-controls {
    padding: 25px;
  }
  .fragment-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 7px;
  }
  .fragment {
    aspect-ratio: 0.85;
  }
  .fragment > .mono {
    font-size: 9px;
    left: 7px;
    bottom: 6px;
  }
  .fragment-check {
    right: 6px;
    font-size: 11px;
  }
  .control-intro br {
    display: none;
  }
  .stage-header {
    padding: 18px 20px;
    font-size: 8px;
  }
  .stage-bottom {
    padding: 15px 20px 20px;
  }
  .stage-bottom strong {
    font-size: 24px;
  }
  .stage-small {
    font-size: 7px;
  }
  .speed-control {
    margin-top: 20px;
  }
  .company-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .company-logo-wrap {
    max-width: 450px;
    margin-inline: auto;
  }
  .company-logo-wrap img {
    max-height: 185px;
    object-fit: contain;
  }
  .company-layout h2 {
    font-size: 35px;
  }
  .company-layout .body-copy {
    max-width: 500px;
  }
  .lab-section .section-heading h2 {
    font-size: 40px;
  }
  .archive-note > p {
    font-size: 24px;
  }
  .faq {
    padding-block: 60px;
  }
}
@media (max-width: 430px) {
  .header {
    gap: 14px;
  }
  .header nav {
    gap: 14px;
    font-size: 9px;
  }
  .company-brand img {
    width: 67px;
  }
  .product-brand {
    font-size: 13px;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-v2 .hero-copy {
    padding-top: 38px;
  }
  .hero-v2 h1 {
    font-size: 46px;
  }
  .hero-v2 .intro {
    font-size: 12px;
  }
  .hero-actions .button {
    padding: 13px 15px;
    font-size: 10px;
    gap: 17px;
  }
  .text-button {
    font-size: 10px;
    gap: 5px;
  }
  .play-icon {
    font-size: 20px;
  }
  .motion-hero {
    margin-top: 30px;
  }
  .hero-video-wrap {
    margin-top: 5px;
  }
  .fragment-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .fragment {
    aspect-ratio: 1.25;
  }
  .lab-controls {
    padding: 22px;
  }
  .fragment > .mono {
    left: 8px;
    bottom: 6px;
  }
  .lab-section .section-heading h2 {
    font-size: 36px;
  }
  .company-product {
    gap: 15px;
  }
  .company-product .mono {
    font-size: 8px;
  }
  .film-header h2 {
    font-size: 18px;
  }
  #film-dialog {
    padding: 16px;
  }
  .film-header .circle-button {
    width: 35px;
    height: 35px;
  }
  .company-layout h2 {
    font-size: 31px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .js-motion .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-video-wrap {
    transform: none !important;
  }
}
.hero-v2 .hero-copy {
  z-index: auto;
}
.hero-video-wrap,
.company-brand,
.product-signature {
  mix-blend-mode: screen;
}
.company-brand img {
  filter: invert(1) contrast(1.2);
}
.circle-button:disabled {
  opacity: 0.35;
  cursor: default;
}
.lab-video-area video[hidden] {
  display: none;
}
/* Arrival, signature, people, and sound ripples. */
.signature-nav {
  gap: 12px;
  mix-blend-mode: screen;
}
.signature-nav img {
  width: 78px;
  height: 32px;
  object-fit: contain;
  filter: invert(1);
}
.signature-nav > .mono {
  font-size: 8px;
  max-width: 40px;
}
.closing-signature {
  inset: auto 0 -70px;
  display: block;
  width: 100%;
  height: auto;
  line-height: 1;
  font-size: inherit;
  opacity: 0.065;
  mix-blend-mode: multiply;
  transform: rotate(-5deg);
}
.closing-signature img {
  width: min(1060px, 100%);
  height: auto;
  margin: auto;
}
.closing {
  min-height: 450px;
}
.hero-video-wrap video {
  transition: opacity 0.45s ease;
}
.hero-video-wrap video.is-changing {
  opacity: 0.12;
}
#intro-dialog {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  max-width: none;
  max-height: none;
  border: 0;
  padding: 0;
  margin: 0;
  background: #020405;
  color: var(--white);
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.65s ease;
  z-index: 100;
}
#intro-dialog[open] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#intro-dialog::backdrop {
  background: #020405;
}
#intro-dialog.is-leaving {
  opacity: 0;
  pointer-events: none;
}
.intro-top {
  position: absolute;
  top: 32px;
  left: 5%;
  right: 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}
.intro-top > .mono {
  font-size: 9px;
  color: #8299aa;
}
.intro-top button {
  display: flex;
  gap: 22px;
  align-items: center;
  border: 1px solid #a1c9d440;
  background: none;
  color: #b6ccd6;
  font-size: 11px;
  padding: 10px 14px;
}
.intro-top button:hover {
  background: #b8dee318;
}
.intro-visual {
  width: min(61vh, 540px);
  aspect-ratio: 1;
  mix-blend-mode: screen;
}
.intro-visual video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
}
.intro-wordmark {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 25px;
  margin-top: -30px;
  mix-blend-mode: screen;
}
.intro-wordmark img {
  filter: invert(1);
  width: 170px;
  height: auto;
  mix-blend-mode: screen;
}
.intro-wordmark > .mono {
  font-size: 9px;
  letter-spacing: 0.25em;
  color: #7895aa;
}
.intro-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #ffffff0b;
}
.intro-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #ffe8b9, #b8dee3, #91b8e0);
  transition: width 0.15s linear;
}
body.intro-open {
  overflow: hidden;
}
.cursor-orbit,
#ripple-layer {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 90;
}
.cursor-orbit {
  inset: auto;
  left: 0;
  top: 0;
  width: 27px;
  height: 27px;
  border: 1px solid #b8dee3bd;
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 12px #91b8e025;
  transition:
    width 0.2s,
    height 0.2s,
    opacity 0.2s,
    border-color 0.2s;
  background: #91b8e00a;
  will-change: transform;
}
.cursor-orbit > span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--mint);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px #b8dee36b;
}
.cursor-orbit.is-active {
  opacity: 1;
}
.cursor-orbit.is-link {
  width: 43px;
  height: 43px;
  border-color: var(--yellow);
  background: #ffe8b914;
}
.cursor-orbit.is-link > span {
  background: var(--yellow);
}
#ripple-layer {
  overflow: hidden;
}
.click-wave {
  position: absolute;
  width: 210px;
  height: 210px;
  margin: -105px 0 0 -105px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    transparent 28%,
    #ffe8b933 37%,
    #b8dee35c 45%,
    #91b8e044 51%,
    transparent 65%
  );
  animation: sound-ripple 1.15s cubic-bezier(0.12, 0.5, 0.2, 1) forwards;
  mix-blend-mode: screen;
}
.click-wave::after {
  content: '';
  position: absolute;
  inset: 21%;
  border: 1px solid #b8dee3a0;
  border-radius: 50%;
  box-shadow:
    0 0 20px #91b8e047,
    inset 0 0 16px #ffe8b92b;
}
.click-wave.is-light {
  mix-blend-mode: multiply;
  opacity: 0.8;
}
@keyframes sound-ripple {
  0% {
    transform: scale(0.06);
    opacity: 0.9;
  }
  65% {
    opacity: 0.55;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}
.team-section {
  background: #f4f4f4;
  color: #0e1117;
  border-top: 1px solid #0e111726;
  padding-top: 60px;
}
.team-section .section-label {
  color: #71818d;
  margin-bottom: 45px;
}
.team-heading {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: flex-end;
  margin-bottom: 60px;
}
.team-heading .eyebrow {
  font-size: 11px;
  color: #61788b;
  margin-bottom: 20px;
}
.team-heading h2 {
  font-size: clamp(32px, 3.1vw, 49px);
}
.team-aside {
  display: flex;
  gap: 20px;
  align-items: center;
}
.team-count {
  font-size: 64px;
  letter-spacing: -0.08em;
  color: #a8bac5;
  line-height: 1;
}
.team-aside p {
  font-size: 11px;
  line-height: 1.9;
  color: #6b7b89;
}
.people-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 25px;
}
.person {
  min-width: 0;
}
.person-photo {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background-color: #ddd;
  background-image: url('../assets/team/placeholder-portraits-grid.png');
  background-size: 300% 200%;
  background-position: var(--photo-x) var(--photo-y);
  filter: grayscale(1);
  transition:
    filter 0.45s,
    box-shadow 0.45s;
}
.person:hover .person-photo {
  filter: grayscale(1) contrast(1.07);
  box-shadow: inset 0 -5px 0 #91b8e0;
}
.photo-placeholder {
  position: absolute;
  left: 12px;
  top: 12px;
  font-size: 7px;
  letter-spacing: 0.1em;
  background: #f4f4f4cc;
  color: #293d4b;
  padding: 5px 7px;
}
.person-index {
  position: absolute;
  bottom: 12px;
  right: 14px;
  font-size: 10px;
  color: #fff;
  text-shadow: 0 1px 6px #000;
}
.person-info {
  border-top: 1px solid #0e11174a;
  margin-top: 16px;
  padding-top: 15px;
  position: relative;
}
.person-info h3 {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.person-info p {
  font-size: 11px;
  color: #657582;
  margin-top: 10px;
}
.person-email {
  display: block;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  color: #5f7e95;
  margin-top: 12px;
  overflow-wrap: anywhere;
  word-break: normal;
}
.person-plus {
  position: absolute;
  right: 0;
  top: 15px;
  font-size: 20px;
  color: #8c9dab;
  transition: transform 0.3s;
}
.person:hover .person-plus {
  transform: translate(3px, -3px);
  color: #4a789a;
}
.team-note {
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid #0e111724;
  font-size: 10px;
  line-height: 1.8;
  color: #7c8993;
}
@media (hover: hover) and (pointer: fine) {
  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button,
  body.has-custom-cursor summary,
  body.has-custom-cursor input[type='range'] {
    cursor: none;
  }
  body.has-custom-cursor #intro-dialog,
  body.has-custom-cursor #intro-dialog button {
    cursor: auto;
  }
}
@media (max-width: 900px) {
  .team-heading {
    gap: 25px;
  }
  .team-count {
    font-size: 48px;
  }
  .team-aside {
    gap: 15px;
  }
  .team-aside p {
    max-width: 200px;
    font-size: 10px;
  }
  .people-grid {
    gap: 35px 18px;
  }
  .person-info h3 {
    font-size: 18px;
  }
  .person-email {
    font-size: 9px;
  }
}
@media (max-width: 600px) {
  .signature-nav img {
    width: 67px;
    height: 29px;
  }
  .signature-nav > .mono {
    display: none;
  }
  .closing-signature {
    bottom: 5px;
    width: 125%;
    left: -12.5%;
    transform: rotate(-9deg);
  }
  .closing {
    min-height: 350px;
  }
  .intro-top {
    top: 24px;
    left: 6%;
    right: 6%;
  }
  .intro-top > .mono {
    font-size: 8px;
  }
  .intro-top button {
    font-size: 10px;
    padding: 9px 11px;
    gap: 13px;
  }
  .intro-visual {
    width: min(88vw, 53vh);
    margin-top: -35px;
  }
  .intro-wordmark {
    margin-top: 0;
    gap: 21px;
  }
  .intro-wordmark img {
    width: 135px;
  }
  .intro-wordmark > .mono {
    font-size: 8px;
  }
  .team-section {
    padding-top: 45px;
  }
  .team-heading {
    display: block;
    margin-bottom: 35px;
  }
  .team-heading h2 {
    font-size: 32px;
  }
  .team-aside {
    margin-top: 27px;
  }
  .team-count {
    font-size: 45px;
  }
  .team-aside p {
    max-width: none;
  }
  .people-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 15px;
  }
  .person-info {
    margin-top: 12px;
    padding-top: 12px;
  }
  .person-info h3 {
    font-size: 17px;
  }
  .person-info p {
    font-size: 10px;
    line-height: 1.6;
    margin-top: 8px;
  }
  .person-email {
    font-size: 8px;
    line-height: 1.7;
    margin-top: 9px;
  }
  .photo-placeholder {
    font-size: 5px;
    left: 7px;
    top: 7px;
    padding: 4px;
  }
  .person-plus {
    font-size: 16px;
    top: 12px;
  }
  .team-note {
    font-size: 9px;
    margin-top: 27px;
  }
  .person-index {
    font-size: 8px;
    right: 9px;
    bottom: 9px;
  }
  .cursor-orbit {
    display: none;
  }
  .click-wave {
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
  }
  .header nav {
    gap: 13px;
  }
  .header nav a:last-child {
    display: none;
  }
  .header {
    gap: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  #intro-dialog,
  .cursor-orbit,
  #ripple-layer {
    display: none !important;
  }
  .has-custom-cursor,
  .has-custom-cursor a,
  .has-custom-cursor button,
  .has-custom-cursor summary,
  .has-custom-cursor input {
    cursor: auto !important;
  }
  .person-photo {
    transition: none;
  }
}
@media (max-width: 760px) {
  .header nav a:first-child {
    display: none;
  }
  .header nav a:last-child {
    display: block;
  }
  .header nav {
    gap: 13px;
  }
  .header nav a {
    white-space: nowrap;
  }
}
/* Compact editorial team grid on laptop and desktop. */
@media (min-width: 901px) {
  .people-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 18px;
    max-width: 860px;
    margin-left: auto;
  }
  .person-photo {
    aspect-ratio: 1;
  }
  .person-info {
    margin-top: 11px;
    padding-top: 11px;
  }
  .person-info h3 {
    font-size: 16px;
  }
  .person-info p {
    font-size: 10px;
    margin-top: 7px;
  }
  .person-email {
    font-size: 9px;
    margin-top: 8px;
  }
  .person-plus {
    font-size: 16px;
    top: 10px;
  }
  .photo-placeholder {
    font-size: 6px;
    left: 8px;
    top: 8px;
    padding: 4px 5px;
  }
  .team-note {
    max-width: 860px;
    margin-left: auto;
  }
}
