:root {
  --black: #050505;
  --deep-black: #000;
  --white: #f7f7f4;
  --pure-white: #fff;
  --silver: #b7b7b2;
  --muted: #80807c;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(5, 5, 5, 0.18);
  --header-height: 88px;
  --shell: min(1380px, calc(100vw - 96px));
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
  --mouse-x: 50vw;
  --mouse-y: 50vh;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #777 #080808;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 430;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-loading,
body.menu-open,
body.modal-open {
  overflow: hidden;
}

::selection {
  background: var(--white);
  color: var(--black);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #080808;
}

::-webkit-scrollbar-thumb {
  border: 2px solid #080808;
  border-radius: 999px;
  background: #777;
}

img,
svg {
  display: block;
}

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-150%);
  border-radius: 100px;
  background: var(--white);
  color: var(--black);
  font-size: 12px;
  font-weight: 750;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 150px 0;
}

.section--light {
  background: var(--white);
  color: var(--black);
}

.section--dark {
  background: var(--black);
  color: var(--white);
}

.page-loader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-items: center;
  background: #000;
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
}

.page-loader::before,
.page-loader::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.page-loader::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 28%),
    repeating-linear-gradient(90deg, transparent 0 calc(10% - 1px), rgba(255, 255, 255, 0.035) calc(10% - 1px) 10%);
}

.page-loader::after {
  background: linear-gradient(100deg, transparent 40%, rgba(255, 255, 255, 0.08), transparent 60%);
  transform: translateX(-100%);
  animation: loader-sweep 1.6s ease-in-out infinite;
}

.page-loader__inner {
  position: relative;
  z-index: 1;
  width: min(440px, calc(100vw - 64px));
  text-align: center;
}

.page-loader__inner img {
  width: 72%;
  margin: 0 auto 38px;
}

.page-loader__track {
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.page-loader__track span {
  display: block;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  background: #fff;
  animation: load-line 1.25s var(--ease-in-out) forwards;
}

.page-loader__inner small {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.32em;
}

body.is-ready .page-loader {
  visibility: hidden;
  opacity: 0;
}

@keyframes load-line {
  to { transform: translateX(0); }
}

@keyframes loader-sweep {
  55%, 100% { transform: translateX(100%); }
}

.cursor-light {
  position: fixed;
  z-index: 9990;
  top: 0;
  left: 0;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.13;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0, rgba(255, 255, 255, 0.12) 23%, transparent 68%);
  transform: translate3d(calc(var(--mouse-x) - 50%), calc(var(--mouse-y) - 50%), 0);
  mix-blend-mode: screen;
  transition: opacity 0.4s ease;
}

.cursor-dot {
  position: fixed;
  z-index: 9991;
  top: 0;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid #fff;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.35);
  transform: translate3d(calc(var(--mouse-x) - 50%), calc(var(--mouse-y) - 50%), 0);
  transition: width 0.25s ease, height 0.25s ease, background 0.25s ease;
}

body.is-hovering .cursor-dot {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
}

.scroll-progress {
  position: fixed;
  z-index: 1001;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--white);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.75);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-height);
  padding: 0 48px;
  border-bottom: 1px solid transparent;
  transition: height 0.45s var(--ease-out), background 0.45s ease, border-color 0.45s ease;
}

.site-header.is-scrolled {
  height: 72px;
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(4, 4, 4, 0.76);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  z-index: 2;
  width: 142px;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  content: "";
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  overflow: hidden;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 100px;
  color: var(--white);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: border-color 0.35s ease, color 0.35s ease, background 0.35s ease, transform 0.25s var(--ease-out);
}

.button::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  content: "";
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.32), transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.75s var(--ease-out);
}

.button:hover::before {
  transform: translateX(120%);
}

.button span,
.button svg {
  position: relative;
  z-index: 1;
}

.button svg,
.inline-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
  transition: transform 0.35s var(--ease-out);
}

.button:hover svg,
.inline-link:hover svg {
  transform: translate(3px, -3px);
}

.button--header {
  min-height: 46px;
  padding-inline: 20px;
}

.button--header:hover {
  border-color: #fff;
  background: #fff;
  color: #050505;
}

.button--light {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.button--light:hover {
  background: #fff;
  box-shadow: 0 0 34px rgba(255, 255, 255, 0.18);
}

.button--large {
  min-height: 66px;
  padding: 0 30px;
  font-size: 11px;
}

.menu-toggle {
  position: relative;
  z-index: 1002;
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.header-tools {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 16px;
}

.language-switch {
  --language-cell: 42px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, var(--language-cell));
  padding: 3px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 10px 30px rgba(0, 0, 0, 0.25);
  isolation: isolate;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.language-switch__indicator {
  position: absolute;
  z-index: -1;
  top: 3px;
  left: 3px;
  width: var(--language-cell);
  height: 34px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.2), 0 4px 14px rgba(0, 0, 0, 0.3);
  transform: translateX(0);
  transition: transform 0.42s var(--ease-out), box-shadow 0.35s ease;
}

.language-switch[data-active="en"] .language-switch__indicator {
  transform: translateX(var(--language-cell));
}

.language-switch button {
  position: relative;
  z-index: 1;
  display: grid;
  width: var(--language-cell);
  height: 34px;
  place-items: center;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 8px;
  font-weight: 760;
  letter-spacing: 0.14em;
  transition: color 0.3s ease, transform 0.3s var(--ease-out);
}

.language-switch button:hover:not(.is-active) {
  color: #fff;
  transform: translateY(-1px);
}

.language-switch button.is-active {
  color: #050505;
}

.language-switch button:focus-visible {
  outline: 1px solid #fff;
  outline-offset: -3px;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  width: 16px;
  height: 1px;
  background: #fff;
  transition: top 0.35s ease, transform 0.35s ease;
}

.menu-toggle span:first-child { top: 16px; }
.menu-toggle span:last-child { top: 23px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 20px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 20px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  padding: 110px 32px 38px;
  visibility: hidden;
  opacity: 0;
  background: #030303;
  transition: opacity 0.45s ease, visibility 0.45s;
}

.mobile-menu__glow {
  position: absolute;
  top: -20%;
  left: 22%;
  width: 80vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 62%);
  filter: blur(30px);
}

.mobile-menu nav {
  position: relative;
  z-index: 1;
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: clamp(32px, 9vw, 58px);
  font-weight: 520;
  letter-spacing: -0.05em;
}

.mobile-menu nav a span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.2em;
}

.mobile-menu nav a b {
  font-weight: inherit;
}

.mobile-menu > p {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.22em;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  align-items: center;
  padding: calc(var(--header-height) + 64px) 0 90px;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 72% 38%, rgba(255, 255, 255, 0.07), transparent 28%),
    linear-gradient(180deg, #050505, #010101);
}

.hero::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  content: "";
  opacity: 0.24;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero__grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.5;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero__beam {
  position: absolute;
  z-index: -1;
  height: 140%;
  pointer-events: none;
  opacity: 0.22;
  filter: blur(28px);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform-origin: top;
}

.hero__beam--one {
  top: -10%;
  right: 11%;
  width: 7%;
  transform: rotate(22deg);
  animation: beam-one 9s ease-in-out infinite alternate;
}

.hero__beam--two {
  top: 2%;
  right: 30%;
  width: 3%;
  opacity: 0.12;
  transform: rotate(-11deg);
  animation: beam-two 12s ease-in-out infinite alternate;
}

@keyframes beam-one {
  to { transform: rotate(16deg) translateX(80px); opacity: 0.34; }
}

@keyframes beam-two {
  to { transform: rotate(-5deg) translateX(-60px); opacity: 0.2; }
}

.hero__halo {
  position: absolute;
  z-index: -1;
  top: 12%;
  right: -3vw;
  width: min(58vw, 850px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.85;
  transform: translate3d(calc(var(--parallax-x, 0) * 0.35px), calc(var(--parallax-y, 0) * 0.35px), 0);
  transition: transform 0.2s linear;
}

.hero__halo::before,
.hero__halo::after,
.hero__halo i {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.hero__halo::before {
  inset: 8%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow:
    0 0 80px rgba(255, 255, 255, 0.08),
    inset 0 0 80px rgba(255, 255, 255, 0.035);
}

.hero__halo::after {
  inset: 21%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at 48% 42%, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.015) 45%, transparent 70%);
  box-shadow: 0 0 100px rgba(255, 255, 255, 0.08);
}

.hero__halo i:nth-child(1) {
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-color: rgba(255, 255, 255, 0.5);
  animation: orbit 18s linear infinite;
}

.hero__halo i:nth-child(2) {
  inset: 14%;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  animation: orbit 24s linear infinite reverse;
}

.hero__halo i:nth-child(3) {
  top: 10%;
  right: 22%;
  width: 7px;
  height: 7px;
  background: #fff;
  box-shadow: 0 0 22px 8px rgba(255, 255, 255, 0.42);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes pulse { 50% { opacity: 0.35; transform: scale(0.6); } }

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 18px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.24em;
}

.eyebrow__pulse {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.75);
}

.eyebrow__pulse::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  content: "";
  animation: signal 2s ease-out infinite;
}

@keyframes signal {
  to { opacity: 0; transform: scale(1.75); }
}

.hero__title {
  width: min(1100px, 90%);
  margin-top: 34px;
  font-size: clamp(56px, 7.3vw, 124px);
  font-weight: 520;
  line-height: 0.89;
  letter-spacing: -0.075em;
}

.title-line {
  display: block;
  overflow: hidden;
  padding: 0.03em 0 0.09em;
}

.title-line > span {
  display: block;
  transform: translateY(120%);
}

body.is-ready .title-line > span {
  animation: title-in 1.15s var(--ease-out) forwards;
}

body.is-ready .title-line:nth-child(1) > span { animation-delay: 0.12s; }
body.is-ready .title-line:nth-child(2) > span { animation-delay: 0.22s; }
body.is-ready .title-line:nth-child(3) > span { animation-delay: 0.32s; }

@keyframes title-in { to { transform: translateY(0); } }

.title-line--outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.82);
}

.hero__lower {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-top: 56px;
}

.hero__lower > p {
  width: min(490px, 46vw);
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.85;
}

.hero__lower strong {
  color: #fff;
  font-weight: 620;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 600;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.text-link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
  transition: transform 0.3s var(--ease-out);
}

.text-link:hover {
  border-color: #fff;
  color: #fff;
}

.text-link:hover svg { transform: translate(3px, -3px); }

.hero__signature {
  position: absolute;
  z-index: 0;
  right: 3.8vw;
  bottom: 8vh;
  width: min(27vw, 490px);
  opacity: 0.08;
  filter: blur(0.15px);
  transform: rotate(-90deg) translateX(100%);
  transform-origin: right bottom;
}

.hero__signature img { width: 100%; }

.hero__rail {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 22px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.2em;
}

.hero__rail i {
  width: 70px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.hero__rail i::after {
  display: block;
  width: 45%;
  height: 100%;
  content: "";
  background: #fff;
  animation: scroll-line 2.3s ease-in-out infinite;
}

.hero__rail span:last-child { margin-left: auto; }

@keyframes scroll-line {
  from { transform: translateX(-110%); }
  to { transform: translateX(260%); }
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 440px);
  gap: 40px;
  align-items: start;
  margin-bottom: 100px;
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
}

.section-intro--dark {
  border-color: var(--line-dark);
}

.section-number {
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.16em;
}

.section-number span {
  color: var(--muted);
}

.section-intro > p {
  color: rgba(5, 5, 5, 0.58);
  font-size: 13px;
  line-height: 1.8;
}

.section-intro--dark > p {
  color: rgba(255, 255, 255, 0.52);
}

.manifesto__title {
  max-width: 1180px;
  font-size: clamp(50px, 6vw, 100px);
  font-weight: 510;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.manifesto__title span {
  display: block;
  color: rgba(5, 5, 5, 0.28);
  font-style: italic;
  font-weight: 420;
}

.manifesto__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) 1.7fr;
  gap: 9vw;
  margin-top: 110px;
}

.manifesto__statement > p {
  max-width: 450px;
  color: rgba(5, 5, 5, 0.65);
  font-size: 15px;
  line-height: 1.9;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.35);
  font-size: 11px;
  font-weight: 650;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.value-card {
  min-height: 290px;
  padding: 20px 26px 28px;
  border-top: 1px solid var(--line-light);
  border-right: 1px solid var(--line-light);
  transition: background 0.45s ease, color 0.45s ease, transform 0.45s var(--ease-out);
}

.value-card:first-child { border-left: 1px solid var(--line-light); }

.value-card:hover {
  z-index: 1;
  background: #050505;
  color: #fff;
  transform: translateY(-10px);
}

.value-card > span {
  color: rgba(5, 5, 5, 0.42);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.16em;
  transition: color 0.45s ease;
}

.value-card h3 {
  margin-top: 100px;
  font-size: clamp(24px, 2.1vw, 36px);
  font-weight: 510;
  letter-spacing: -0.05em;
}

.value-card p {
  margin-top: 14px;
  color: rgba(5, 5, 5, 0.54);
  font-size: 11px;
  line-height: 1.7;
  transition: color 0.45s ease;
}

.value-card:hover > span,
.value-card:hover p { color: rgba(255, 255, 255, 0.56); }

.press-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.press-card__link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
  transition: transform 0.35s var(--ease-out);
}

.press-card:hover .press-card__link svg { transform: translate(3px, -3px); }

.marquee {
  overflow: hidden;
  padding: 21px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #050505;
}

.marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  animation: marquee 34s linear infinite;
}

.marquee__track span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.24em;
}

.marquee__track i {
  width: 4px;
  height: 4px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  transform: rotate(45deg);
}

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

.services {
  overflow: hidden;
  padding-bottom: 120px;
}

.services__glow {
  position: absolute;
  top: 10%;
  right: -24%;
  width: 70vw;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.2;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.26), transparent 64%);
  filter: blur(36px);
}

.services__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 90px;
}

.services__heading h2,
.worlds__head h2,
.approach__heading h2 {
  font-size: clamp(50px, 6vw, 96px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.068em;
}

.services__heading h2 em,
.approach__heading h2 em {
  color: rgba(255, 255, 255, 0.36);
  font-weight: 400;
}

.services__heading > span {
  padding-bottom: 9px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.22em;
}

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

.service-card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(340px, 1fr) minmax(260px, 0.75fr) 42px;
  gap: 28px;
  align-items: center;
  min-height: 162px;
  overflow: hidden;
  padding: 30px 12px;
  border-bottom: 1px solid var(--line-dark);
  outline: 0;
  transition: padding 0.45s var(--ease-out), border-color 0.35s ease;
}

.service-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background:
    radial-gradient(480px circle at var(--mx) var(--my), rgba(255, 255, 255, 0.12), transparent 52%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent 45%);
  transition: opacity 0.4s ease;
}

.service-card:hover,
.service-card:focus-visible {
  padding-right: 22px;
  padding-left: 22px;
  border-color: rgba(255, 255, 255, 0.34);
}

.service-card:hover::before,
.service-card:focus-visible::before { opacity: 1; }

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

.service-card__index {
  align-self: start;
  padding-top: 7px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.18em;
}

.service-card__main h3 {
  font-size: clamp(23px, 2.35vw, 39px);
  font-weight: 480;
  letter-spacing: -0.045em;
}

.service-card__main p {
  max-width: 670px;
  margin-top: 11px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  line-height: 1.75;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.service-card__tags span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 99px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 7px;
  font-weight: 650;
  letter-spacing: 0.13em;
}

.service-card__arrow {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.52);
  transition: background 0.4s ease, color 0.4s ease, transform 0.4s var(--ease-out);
}

.service-card__arrow svg,
.back-to-top svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.service-card:hover .service-card__arrow,
.service-card:focus-visible .service-card__arrow {
  background: #fff;
  color: #050505;
  transform: rotate(45deg);
}

.worlds {
  padding-top: 60px;
  background: #080808;
}

.worlds__head {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 10vw;
  align-items: end;
  margin-bottom: 80px;
}

.worlds__head p {
  padding-bottom: 8px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.8;
}

.world-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.world-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 44%),
    #050505;
  isolation: isolate;
}

.world-card--wide { grid-column: 1 / -1; min-height: 620px; }

.world-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0.18;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.world-card__number {
  position: relative;
  z-index: 3;
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.world-card__light {
  position: absolute;
  z-index: -1;
  top: 35%;
  left: 50%;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.23;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.08) 34%, transparent 66%);
  filter: blur(20px);
  transform: translate(-50%, -50%);
  transition: opacity 0.6s ease, transform 1.2s var(--ease-out);
}

.world-card:hover .world-card__light {
  opacity: 0.38;
  transform: translate(-50%, -50%) scale(1.16);
}

.world-card__content {
  position: absolute;
  z-index: 3;
  right: 34px;
  bottom: 34px;
  left: 34px;
}

.world-card__content small {
  display: block;
  margin-bottom: 17px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.world-card__content h3 {
  font-size: clamp(31px, 3.3vw, 56px);
  font-weight: 480;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.world-card__content p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.world-card__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(52vw, 690px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -62%) rotate(-18deg) scaleY(0.45);
  box-shadow: 0 0 80px rgba(255, 255, 255, 0.04), inset 0 0 80px rgba(255, 255, 255, 0.03);
}

.world-card__orbit::before,
.world-card__orbit::after,
.world-card__orbit i {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.world-card__orbit::before {
  inset: 14%;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.world-card__orbit::after {
  inset: 29%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
}

.world-card__orbit i:first-child {
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #fff;
  box-shadow: 0 0 28px 10px rgba(255, 255, 255, 0.42);
  animation: orbit-dot 7s ease-in-out infinite alternate;
}

.world-card__orbit i:last-child {
  right: 12%;
  bottom: 14%;
  width: 4px;
  height: 4px;
  background: #fff;
  box-shadow: 0 0 18px 5px rgba(255, 255, 255, 0.36);
}

@keyframes orbit-dot { to { left: 72%; opacity: 0.4; } }

.world-card__monogram {
  position: absolute;
  top: 42%;
  left: 50%;
  color: transparent;
  font-size: min(39vw, 500px);
  font-weight: 500;
  line-height: 0.7;
  letter-spacing: -0.1em;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.22);
  transform: translate(-52%, -50%);
  text-shadow: 0 0 60px rgba(255, 255, 255, 0.07);
}

.world-card--inverse {
  border-color: #e9e9e5;
  background: #ededE9;
  color: #050505;
}

.world-card--inverse::after { opacity: 0.2; filter: invert(1); }
.world-card--inverse .world-card__number { color: rgba(5, 5, 5, 0.48); }
.world-card--inverse .world-card__content small,
.world-card--inverse .world-card__content p { color: rgba(5, 5, 5, 0.5); }

.world-card__rings {
  position: absolute;
  top: 38%;
  left: 50%;
  width: min(36vw, 460px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.world-card__rings i {
  position: absolute;
  inset: calc(var(--i, 0) * 13%);
  border: 1px solid rgba(5, 5, 5, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 40px rgba(5, 5, 5, 0.025);
}

.world-card__rings i:nth-child(1) { --i: 0; border-top-color: rgba(5, 5, 5, 0.7); animation: orbit 18s linear infinite; }
.world-card__rings i:nth-child(2) { --i: 1; border-right-color: rgba(5, 5, 5, 0.5); animation: orbit 14s linear infinite reverse; }
.world-card__rings i:nth-child(3) { --i: 2; background: radial-gradient(circle at 40% 35%, rgba(255, 255, 255, 0.8), rgba(5, 5, 5, 0.04)); }

.approach {
  overflow: hidden;
}

.approach__heading {
  margin-bottom: 90px;
}

.approach__heading h2 em {
  color: rgba(5, 5, 5, 0.28);
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.process-item {
  position: relative;
  display: grid;
  grid-template-columns: 90px 0.75fr 1fr 20px;
  gap: 32px;
  align-items: center;
  min-height: 142px;
  padding: 24px 12px;
  border-bottom: 1px solid var(--line-light);
  transition: color 0.4s ease, padding 0.5s var(--ease-out), background 0.4s ease;
}

.process-item:hover {
  padding-right: 28px;
  padding-left: 28px;
  background: #050505;
  color: #fff;
}

.process-item__number {
  color: rgba(5, 5, 5, 0.4);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  transition: color 0.4s ease;
}

.process-item h3 {
  font-size: clamp(24px, 2.3vw, 37px);
  font-weight: 510;
  letter-spacing: -0.05em;
}

.process-item p {
  max-width: 510px;
  color: rgba(5, 5, 5, 0.55);
  font-size: 11px;
  line-height: 1.8;
  transition: color 0.4s ease;
}

.process-item i {
  position: relative;
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
}

.process-item i::before,
.process-item i::after {
  position: absolute;
  background: currentColor;
  content: "";
}

.process-item i::before { top: 7px; left: 0; width: 16px; height: 1px; }
.process-item i::after { top: 0; right: 0; width: 1px; height: 8px; }
.process-item:hover .process-item__number,
.process-item:hover p { color: rgba(255, 255, 255, 0.54); }

.press {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #090909;
  isolation: isolate;
}

.press__glow {
  position: absolute;
  z-index: -1;
  top: -26%;
  right: -12%;
  width: min(62vw, 860px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.13;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.04) 34%, transparent 68%);
  filter: blur(38px);
}

.press__heading {
  display: grid;
  grid-template-columns: 1.25fr 0.55fr;
  gap: 10vw;
  align-items: end;
  margin-bottom: 82px;
}

.press__heading h2 {
  font-size: clamp(54px, 6.7vw, 108px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.074em;
}

.press__heading h2 em {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
}

.press__heading > p {
  padding-bottom: 8px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.85;
}

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

.press-empty {
  grid-column: 1 / -1;
  display: grid;
  min-height: 310px;
  place-content: center;
  padding: 56px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    rgba(255, 255, 255, 0.02);
  background-size: 70px 70px;
  text-align: center;
}

.press-empty > span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.press-empty h3 {
  margin-top: 28px;
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 470;
  letter-spacing: -0.05em;
}

.press-empty p {
  max-width: 570px;
  margin: 17px auto 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  line-height: 1.75;
}

.press-card {
  display: flex;
  min-height: 560px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 0.4s ease, background 0.4s ease, transform 0.5s var(--ease-out);
}

.press-card:hover {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-8px);
}

.press-card__media {
  position: relative;
  aspect-ratio: 1.35;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(135deg, #1a1a1a, #050505);
}

.press-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.42));
  pointer-events: none;
}

.press-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.5s ease, transform 0.8s var(--ease-out);
}

.press-card__media.is-missing img { display: none; }
.press-card:hover .press-card__media img { filter: grayscale(0.55); transform: scale(1.035); }

.press-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px 26px 28px;
}

.press-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.press-card__content h3 {
  margin-top: 38px;
  font-size: clamp(25px, 2.2vw, 35px);
  font-weight: 470;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.press-card__content > p {
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  line-height: 1.75;
}

.press-card__link { margin-top: auto; }

.contact {
  display: flex;
  min-height: 88vh;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.contact::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  opacity: 0.26;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.contact__aura {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 70%;
  width: min(72vw, 950px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 90px rgba(255, 255, 255, 0.08),
    inset 0 0 100px rgba(255, 255, 255, 0.035);
  transform: translate(-50%, -50%);
}

.contact__aura::before,
.contact__aura::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.contact__aura::before {
  inset: 13%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: orbit 23s linear infinite;
}

.contact__aura::after {
  inset: 30%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.13), transparent 67%);
  filter: blur(8px);
}

.contact__logo {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 145vw;
  opacity: 0.035;
  transform: translate(-50%, -50%);
}

.contact__logo img { width: 100%; }

.contact__inner {
  position: relative;
  z-index: 2;
}

.contact h2 {
  max-width: 1100px;
  margin-top: 42px;
  font-size: clamp(57px, 7.4vw, 120px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.contact h2 em {
  color: transparent;
  font-weight: 400;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.72);
}

.contact__inner > p {
  max-width: 540px;
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.8;
}

.contact__actions {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-top: 36px;
}

.contact__actions > span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer {
  padding: 55px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #000;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-bottom: 46px;
}

.brand--footer { width: 160px; }

.site-footer__nav {
  display: flex;
  gap: 28px;
}

.site-footer__nav a,
.site-footer__nav button {
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.site-footer__nav a:hover,
.site-footer__nav button:hover { color: #fff; }

.back-to-top {
  display: grid;
  width: 44px;
  height: 44px;
  justify-self: end;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease-out);
}

.back-to-top:hover {
  background: #fff;
  color: #050505;
  transform: translateY(-4px);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.32);
  font-size: 7px;
  font-weight: 650;
  letter-spacing: 0.16em;
}

.contact-modal {
  position: fixed;
  z-index: 5000;
  inset: 0;
  display: flex;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.45s ease, visibility 0.45s;
}

.contact-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.contact-modal__panel {
  position: relative;
  width: min(740px, 100%);
  height: 100%;
  margin-left: auto;
  overflow-y: auto;
  padding: 80px 70px 54px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  background:
    radial-gradient(circle at 90% 5%, rgba(255, 255, 255, 0.1), transparent 30%),
    #070707;
  transform: translateX(100%);
  transition: transform 0.75s var(--ease-out);
}

.contact-modal.is-open .contact-modal__panel { transform: translateX(0); }

.contact-modal__panel::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.25;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.contact-modal__close {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 26px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: background 0.3s ease;
}

.contact-modal__close:hover { background: rgba(255, 255, 255, 0.1); }

.contact-modal__close span {
  position: absolute;
  top: 22px;
  left: 14px;
  width: 17px;
  height: 1px;
  background: #fff;
}

.contact-modal__close span:first-child { transform: rotate(45deg); }
.contact-modal__close span:last-child { transform: rotate(-45deg); }

.contact-modal__head,
.project-form {
  position: relative;
  z-index: 1;
}

.contact-modal__head > span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.contact-modal__head h2 {
  margin-top: 24px;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 510;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.contact-modal__head h2 em {
  color: rgba(255, 255, 255, 0.38);
  font-weight: 420;
}

.contact-modal__head p {
  max-width: 480px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  line-height: 1.75;
}

.project-form {
  display: grid;
  gap: 24px;
  margin-top: 46px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.project-form label {
  display: grid;
  gap: 10px;
}

.project-form label > span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.project-form input,
.project-form textarea,
.project-form select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 12px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.project-form input,
.project-form select { height: 52px; }
.project-form textarea { resize: vertical; min-height: 90px; padding: 14px 0; }

.project-form input::placeholder,
.project-form textarea::placeholder { color: rgba(255, 255, 255, 0.28); }

.project-form input:focus,
.project-form textarea:focus,
.project-form select:focus {
  border-color: #fff;
  box-shadow: 0 1px 0 #fff;
}

.project-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #999 50%), linear-gradient(135deg, #999 50%, transparent 50%);
  background-position: calc(100% - 14px) 23px, calc(100% - 9px) 23px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.project-form option { background: #0a0a0a; color: #fff; }
.project-form .is-invalid { border-color: #fff; box-shadow: 0 1px 0 #fff; }

.button--form {
  width: 100%;
  min-height: 60px;
  margin-top: 6px;
}

.form-note {
  color: rgba(255, 255, 255, 0.3);
  font-size: 8px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.toast {
  position: fixed;
  z-index: 7000;
  right: 26px;
  bottom: 26px;
  display: flex;
  width: min(410px, calc(100vw - 40px));
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  visibility: hidden;
  opacity: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(8, 8, 8, 0.94);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.45);
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s var(--ease-out), visibility 0.35s;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.toast.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.toast__icon {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #050505;
}

.toast__icon::before {
  width: 9px;
  height: 5px;
  border-bottom: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
  content: "";
  transform: translateY(-1px) rotate(-45deg);
}

.toast p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  line-height: 1.55;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

@media (max-width: 1200px) {
  :root {
    --shell: min(100% - 64px, 1180px);
  }

  .site-header { padding-inline: 32px; }
  .desktop-nav { gap: 17px; }
  .desktop-nav a { font-size: 9px; }
  .button--header { display: none; }
  .hero__title { width: 100%; }
  .service-card { grid-template-columns: 55px minmax(300px, 1fr) minmax(210px, 0.6fr) 42px; }
  .manifesto__layout { gap: 5vw; }
}

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
    --shell: calc(100vw - 48px);
  }

  .cursor-light,
  .cursor-dot { display: none; }

  .site-header { grid-template-columns: 1fr auto; padding-inline: 24px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; justify-self: end; }
  .header-tools { grid-column: 2; }
  .mobile-menu { display: flex; }
  .brand { width: 128px; }
  .section { padding: 110px 0; }

  .hero {
    min-height: 920px;
    align-items: flex-start;
    padding-top: 160px;
  }

  .hero__title { margin-top: 44px; font-size: clamp(55px, 10.2vw, 90px); }
  .hero__halo { top: 17%; right: -30%; width: 100vw; opacity: 0.55; }
  .hero__lower { display: block; margin-top: 58px; }
  .hero__lower > p { width: min(560px, 100%); }
  .hero__actions { margin-top: 30px; }
  .hero__signature { display: none; }

  .section-intro { grid-template-columns: 1fr 1fr; margin-bottom: 75px; }
  .manifesto__layout { grid-template-columns: 1fr; margin-top: 75px; }
  .manifesto__statement { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; }
  .inline-link { margin-top: 0; white-space: nowrap; }
  .values { margin-top: 20px; }
  .value-card { min-height: 260px; }
  .value-card h3 { margin-top: 80px; }

  .service-card {
    grid-template-columns: 42px 1fr 40px;
    gap: 20px;
  }

  .service-card__tags { display: none; }
  .worlds__head { grid-template-columns: 1fr; gap: 30px; }
  .worlds__head p { max-width: 520px; }
  .world-card { min-height: 470px; }
  .world-card--wide { min-height: 540px; }
  .world-card__orbit { width: 80vw; }
  .world-card__monogram { font-size: 44vw; }

  .process-item { grid-template-columns: 55px 0.75fr 1fr 18px; gap: 20px; }
  .press__heading { grid-template-columns: 1fr; gap: 30px; }
  .press__heading > p { max-width: 530px; }
  .press-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact { min-height: 780px; }
  .contact__aura { left: 76%; width: 105vw; }
}

@media (max-width: 680px) {
  :root { --shell: calc(100vw - 36px); }
  .site-header { padding-inline: 18px; }
  .brand { width: 115px; }
  .header-tools { gap: 10px; }
  .language-switch { --language-cell: 36px; }
  .language-switch__indicator,
  .language-switch button { height: 30px; }
  .language-switch button { font-size: 7px; }
  .section { padding: 88px 0; }

  .mobile-menu { padding: 100px 25px 30px; }
  .mobile-menu nav a { gap: 13px; padding: 10px 0; font-size: clamp(25px, 7.6vw, 38px); }

  .page-loader__inner img { width: 82%; }
  .hero { min-height: 820px; padding-top: 138px; padding-bottom: 74px; }
  .hero__grid { background-size: 58px 58px; }
  .hero__beam--one { right: 8%; width: 15%; }
  .hero__beam--two { display: none; }
  .hero__halo { top: 18%; right: -55%; width: 130vw; }
  .eyebrow { font-size: 7px; letter-spacing: 0.2em; }
  .hero__title { margin-top: 35px; font-size: clamp(46px, 14.6vw, 72px); line-height: 0.91; letter-spacing: -0.073em; }
  .title-line--outline {
    font-size: 0.8em;
    letter-spacing: -0.085em;
    -webkit-text-stroke-width: 0.8px;
  }
  .hero__lower { margin-top: 42px; }
  .hero__lower > p { font-size: 12px; line-height: 1.75; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .hero__actions .button { width: 100%; }
  .text-link { margin-left: 5px; }
  .hero__rail { bottom: 16px; }
  .hero__rail span:last-child { display: none; }

  .section-intro { grid-template-columns: 1fr; gap: 20px; margin-bottom: 58px; }
  .section-intro > p { max-width: 430px; font-size: 11px; }
  .manifesto__title { font-size: clamp(42px, 12.8vw, 64px); }
  .manifesto__layout { margin-top: 58px; }
  .manifesto__statement { display: block; }
  .manifesto__statement > p { font-size: 12px; }
  .inline-link { margin-top: 26px; }
  .values { grid-template-columns: 1fr; }
  .value-card,
  .value-card:first-child { min-height: auto; padding: 22px 18px 26px; border-right: 0; border-bottom: 1px solid var(--line-light); border-left: 0; }
  .value-card h3 { margin-top: 50px; font-size: 30px; }
  .value-card p { max-width: 330px; }
  .value-card:hover { transform: translateY(0); }

  .marquee { padding-block: 17px; }
  .marquee__track { gap: 21px; }
  .marquee__track span { font-size: 8px; }

  .services { padding-bottom: 80px; }
  .services__heading { display: block; margin-bottom: 55px; }
  .services__heading h2,
  .worlds__head h2,
  .approach__heading h2 { font-size: clamp(42px, 12vw, 64px); }
  .services__heading > span { display: block; margin-top: 26px; }
  .service-card { grid-template-columns: 29px 1fr 34px; min-height: 150px; gap: 12px; padding-inline: 4px; }
  .service-card:hover,
  .service-card:focus-visible { padding-inline: 8px; }
  .service-card__main h3 { font-size: 23px; line-height: 1.08; }
  .service-card__main p { margin-top: 9px; font-size: 9px; }
  .service-card__index { font-size: 7px; }
  .service-card__arrow { width: 31px; height: 31px; font-size: 12px; }

  .worlds { padding-top: 40px; }
  .worlds__head { margin-bottom: 55px; }
  .world-grid { grid-template-columns: 1fr; gap: 10px; }
  .world-card,
  .world-card--wide { grid-column: auto; min-height: 460px; padding: 20px; }
  .world-card__content { right: 22px; bottom: 25px; left: 22px; }
  .world-card__content h3 { font-size: 34px; }
  .world-card__orbit { width: 118vw; transform: translate(-50%, -68%) rotate(-18deg) scaleY(0.5); }
  .world-card__monogram { font-size: 85vw; }
  .world-card__rings { width: 76vw; }

  .approach__heading { margin-bottom: 60px; }
  .process-item { grid-template-columns: 34px 1fr 18px; gap: 12px; min-height: 155px; padding: 24px 4px; }
  .process-item p { grid-column: 2 / 4; max-width: none; margin-top: -7px; font-size: 9px; }
  .process-item i { grid-column: 3; grid-row: 1; }
  .process-item:hover { padding-inline: 10px; }

  .press__heading { margin-bottom: 55px; }
  .press__heading h2 { font-size: clamp(48px, 14vw, 72px); }
  .press__heading > p { font-size: 10px; }
  .press-grid { grid-template-columns: 1fr; gap: 10px; }
  .press-empty { min-height: 270px; padding: 38px 23px; background-size: 52px 52px; }
  .press-empty h3 { font-size: 32px; }
  .press-card { min-height: 520px; }
  .press-card:hover { transform: none; }

  .contact { min-height: 720px; }
  .contact::before { background-size: 62px 62px; }
  .contact__aura { top: 44%; left: 90%; width: 150vw; }
  .contact h2 { margin-top: 35px; font-size: clamp(50px, 15vw, 78px); }
  .contact__inner > p { margin-top: 32px; font-size: 11px; }
  .contact__actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .contact__actions .button { width: 100%; }

  .site-footer { padding-top: 42px; }
  .site-footer__top { grid-template-columns: 1fr auto; gap: 36px; }
  .brand--footer { width: 135px; }
  .site-footer__nav { grid-column: 1 / -1; grid-row: 2; flex-wrap: wrap; justify-content: flex-start; gap: 12px 22px; }
  .site-footer__nav a,
  .site-footer__nav button { font-size: 7px; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; gap: 10px; }

  .contact-modal__panel { padding: 72px 24px 44px; border-left: 0; }
  .contact-modal__head h2 { font-size: 44px; }
  .form-row { grid-template-columns: 1fr; gap: 24px; }
  .project-form { margin-top: 36px; }
  .toast { right: 20px; bottom: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .title-line > span { transform: none; }
}

@media (hover: none), (pointer: coarse) {
  .cursor-light,
  .cursor-dot { display: none; }
  .magnetic { transform: none !important; }
}
