:root {
  --ink: #080909;
  --ink-2: #111313;
  --ink-3: #1b1e1d;
  --bone: #f1efe8;
  --bone-2: #dedbd1;
  --muted: #a6a59f;
  --volt: #c9ff38;
  --signal: #ff4938;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(8, 9, 9, 0.17);
  --title: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Manrope", Arial, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
  --header-height: 92px;
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  scrollbar-color: var(--volt) var(--ink);
  scrollbar-width: thin;
}


body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

::selection {
  background: var(--volt);
  color: var(--ink);
}

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

::-webkit-scrollbar-track {
  background: var(--ink);
}

::-webkit-scrollbar-thumb {
  border: 2px solid var(--ink);
  background: var(--volt);
}

img,
video,
canvas {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  border: 0;
  background: none;
}

:focus-visible {
  outline: 3px solid var(--volt);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--volt);
  color: var(--ink);
  font-weight: 800;
  transition: transform 0.2s;
}

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

.shell {
  width: min(100% - 48px, 1460px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(96px, 12vw, 190px);
}

.section--bone {
  background: var(--bone);
  color: var(--ink);
  color-scheme: light;
}

.page-progress {
  position: fixed;
  z-index: 1001;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.04);
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--volt), #fff66e);
}

.grain {
  position: fixed;
  z-index: 998;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  opacity: 0.055;
  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='.9'/%3E%3C/svg%3E");
  animation: grain-shift 0.25s steps(2) infinite;
}

@keyframes grain-shift {
  0% { transform: translate(1%, -1%); }
  25% { transform: translate(-1%, 1%); }
  50% { transform: translate(2%, 1%); }
  75% { transform: translate(-1%, -2%); }
  100% { transform: translate(1%, 2%); }
}

.spotlight {
  position: fixed;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  background: radial-gradient(480px circle at var(--pointer-x, 50%) var(--pointer-y, 30%), rgba(201, 255, 56, 0.15), transparent 70%);
}

.cursor {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  display: grid;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(241, 239, 232, 0.7);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  place-items: center;
  transform: translate3d(-50%, -50%, 0);
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), background-color 0.35s, border-color 0.35s, opacity 0.25s;
}

.cursor span {
  opacity: 0;
  color: var(--ink);
  font-family: var(--title);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: opacity 0.2s;
}

.cursor.is-visible {
  opacity: 1;
}

.cursor.is-active {
  width: 76px;
  height: 76px;
  border-color: var(--volt);
  background: var(--volt);
}

.cursor.is-active span {
  opacity: 1;
}

.loader {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  overflow: hidden;
  pointer-events: none;
  place-items: center;
}

.loader__panel {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50.5%;
  background: #050606;
  transition: transform 1.05s var(--ease-in-out) 0.18s;
}

.loader__panel--top { top: 0; }
.loader__panel--bottom { bottom: 0; }

.loader__brand {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(78vw, 420px);
  text-align: center;
  place-items: center;
  transition: opacity 0.35s ease, transform 0.65s var(--ease-out);
}

.loader__monogram {
  color: var(--volt);
  font-family: var(--title);
  font-size: clamp(4rem, 14vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.8;
}

.loader__line {
  width: 100%;
  height: 1px;
  margin: 24px 0 18px;
  transform-origin: left;
  background: var(--volt);
  animation: loader-line 0.85s var(--ease-out) both;
}

.loader__copy {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

@keyframes loader-line {
  from { transform: scaleX(0); }
}

body.is-loaded .loader__panel--top { transform: translateY(-101%); }
body.is-loaded .loader__panel--bottom { transform: translateY(101%); }
body.is-loaded .loader__brand { opacity: 0; transform: scale(0.88); }
body.is-loaded .loader { visibility: hidden; transition: visibility 0s 1.3s; }
body.skip-loader .loader { display: none; }
body.skip-loader .hero__eyebrow,
body.skip-loader .hero__lead,
body.skip-loader .hero__actions,
body.skip-loader .hero-stack,
body.skip-loader .hero__line > span { transition-delay: 0.04s; }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background-color 0.35s, border-color 0.35s, transform 0.45s var(--ease-out);
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(8, 9, 9, 0.76);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-header.is-hidden {
  transform: translateY(-105%);
}

.site-header__inner {
  display: flex;
  width: min(100% - 48px, 1460px);
  height: var(--header-height);
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  width: 218px;
  flex: 0 0 auto;
  align-items: center;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
}

.desktop-nav a {
  position: relative;
  color: #d2d1cb;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

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

.button {
  position: relative;
  display: inline-flex;
  min-height: 58px;
  padding: 0 24px;
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.35s, background-color 0.35s, border-color 0.35s, transform 0.25s;
}

.button::before {
  position: absolute;
  inset: 0;
  content: "";
  transform: translateY(105%);
  background: var(--bone);
  transition: transform 0.45s var(--ease-out);
}

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

.button:hover::before { transform: translateY(0); }
.button:active { transform: scale(0.98); }

.button--small {
  min-height: 46px;
  padding: 0 18px;
  gap: 18px;
  font-size: 10px;
}

.button--volt {
  background: var(--volt);
  color: var(--ink);
}

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

.button--outline {
  border-color: rgba(241, 239, 232, 0.5);
  color: var(--bone);
}

.button--outline:hover {
  border-color: var(--bone);
  color: var(--ink);
}

.button--full { width: 100%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--bone);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: gap 0.3s var(--ease-out), border-color 0.3s;
}

.text-link:hover { gap: 28px; border-color: var(--volt); }
.text-link--dark { color: var(--ink); border-color: rgba(8, 9, 9, 0.35); }

.menu-toggle,
.mobile-menu,
.mobile-dock,
.mobile-stories,
.hero__mobile-signal {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 40%, rgba(201, 255, 56, 0.09), transparent 24%),
    linear-gradient(110deg, #080909 0%, #080909 58%, #0d0f0e 100%);
}

#energy-field,
.hero__grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#energy-field { opacity: 0.52; }

.hero__grid {
  opacity: 0.29;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, #000 0%, transparent 75%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 34px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 1fr auto;
  column-gap: 24px;
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 3;
  grid-column: 1 / span 8;
  padding-bottom: 62px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 38px;
  height: 2px;
  background: var(--volt);
}

.hero__eyebrow {
  margin-bottom: 30px;
  color: #d7d5ce;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease 1.15s, transform 0.6s var(--ease-out) 1.15s;
}

body.is-loaded .hero__eyebrow { opacity: 1; transform: none; }

.hero__title {
  max-width: 1100px;
  margin: 0;
  font-family: var(--title);
  font-size: clamp(4.2rem, 8.5vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.052em;
  line-height: 0.77;
  text-transform: uppercase;
}

.hero__line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.09em;
}

.hero__line > span {
  display: block;
  transform: translateY(112%);
  transition: transform 1.05s var(--ease-out);
}

.hero__line:nth-child(1) > span { transition-delay: 0.78s; }
.hero__line:nth-child(2) > span { transition-delay: 0.85s; }
.hero__line:nth-child(3) > span { transition-delay: 0.92s; }
.hero__line:nth-child(4) > span { transition-delay: 0.99s; }
body.is-loaded .hero__line > span { transform: translateY(0); }

.hero__line--accent {
  width: fit-content;
  padding-right: 0.12em;
  color: var(--volt);
  font-style: italic;
  font-weight: 900;
}

.hero__lead {
  max-width: 560px;
  margin: 30px 0 0;
  color: #b6b4ae;
  font-size: clamp(0.94rem, 1.2vw, 1.1rem);
  line-height: 1.75;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease 1.15s, transform 0.65s var(--ease-out) 1.15s;
}

.hero__actions {
  display: flex;
  margin-top: 35px;
  align-items: center;
  gap: 28px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease 1.25s, transform 0.65s var(--ease-out) 1.25s;
}

body.is-loaded .hero__lead,
body.is-loaded .hero__actions { opacity: 1; transform: none; }

.hero-stack {
  position: absolute;
  z-index: 2;
  top: 17%;
  right: -2%;
  width: clamp(360px, 34vw, 560px);
  aspect-ratio: 0.82;
  opacity: 0;
  transform: translateX(60px) rotate(2deg);
  transition: opacity 1s ease 1.08s, transform 1.15s var(--ease-out) 1.08s;
}

body.is-loaded .hero-stack { opacity: 1; transform: rotate(2deg); }

.hero-stack__halo {
  position: absolute;
  inset: 8% -3% -2% 10%;
  border: 1px solid rgba(201, 255, 56, 0.35);
  background: rgba(201, 255, 56, 0.04);
  filter: blur(0.2px);
  transform: rotate(-5deg);
}

.hero-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
  will-change: transform;
}

.hero-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(140deg, transparent 55%, rgba(201, 255, 56, 0.12));
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card--back {
  top: 3%;
  right: 3%;
  width: 66%;
  aspect-ratio: 1;
  transform: translate3d(calc(var(--card-x, 0px) + var(--scroll-x, 0px)), calc(var(--card-y, 0px) + var(--scroll-y, 0px)), 0) rotate(calc(9deg + var(--scroll-r, 0deg)));
  filter: saturate(0.25) brightness(0.57);
}

.hero-card--mid {
  top: 21%;
  left: 0;
  width: 62%;
  aspect-ratio: 0.84;
  transform: translate3d(calc(var(--card-x, 0px) + var(--scroll-x, 0px)), calc(var(--card-y, 0px) + var(--scroll-y, 0px)), 0) rotate(calc(-7deg + var(--scroll-r, 0deg)));
  filter: saturate(0.6) brightness(0.7);
}

.hero-card--front {
  right: 3%;
  bottom: 3%;
  width: 76%;
  aspect-ratio: 0.91;
  transform: translate3d(calc(var(--card-x, 0px) + var(--scroll-x, 0px)), calc(var(--card-y, 0px) + var(--scroll-y, 0px)), 0) rotate(calc(1.5deg + var(--scroll-r, 0deg)));
  clip-path: polygon(0 0, 92% 0, 100% 8%, 100% 100%, 8% 100%, 0 92%);
}

.hero-card--front::before {
  position: absolute;
  z-index: 2;
  top: -40%;
  left: -85%;
  width: 42%;
  height: 190%;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), rgba(201, 255, 56, 0.16), transparent);
  filter: blur(4px);
  transform: rotate(17deg);
  animation: hero-scan 6.5s var(--ease-in-out) 2s infinite;
}

@keyframes hero-scan {
  0%, 48% { transform: translateX(0) rotate(17deg); }
  72%, 100% { transform: translateX(560%) rotate(17deg); }
}

.hero-card--front figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  padding: 14px 18px;
  justify-content: space-between;
  background: rgba(8, 9, 9, 0.86);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #d3d1cb;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-card--front figcaption span:first-child { color: var(--volt); }

.hero-stack__stamp {
  position: absolute;
  z-index: 4;
  top: 2%;
  left: 3%;
  display: grid;
  width: 92px;
  height: 92px;
  border: 1px solid var(--volt);
  border-radius: 50%;
  background: rgba(8, 9, 9, 0.88);
  color: var(--volt);
  font-family: var(--title);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 0.9;
  text-align: center;
  place-items: center;
  transform: rotate(-12deg);
}

.hero-stack__open {
  position: absolute;
  z-index: 6;
  right: 7%;
  bottom: -17px;
  display: flex;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(201, 255, 56, 0.6);
  cursor: pointer;
  align-items: center;
  gap: 22px;
  background: rgba(8, 9, 9, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: var(--bone);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s, background-color 0.3s, transform 0.35s var(--ease-out);
}

.hero-stack__open b { color: var(--volt); font-size: 1rem; }
.hero-stack__open:hover { background: var(--volt); color: var(--ink); transform: translateY(-4px); }
.hero-stack__open:hover b { color: var(--ink); }

.hero__proof {
  z-index: 3;
  display: flex;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  grid-row: 2;
  grid-column: 1 / span 9;
  gap: clamp(30px, 5vw, 80px);
}

.hero__proof div { display: grid; }
.hero__proof strong {
  color: var(--bone);
  font-family: var(--title);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
}

.hero__proof span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-cue {
  z-index: 3;
  display: grid;
  justify-self: end;
  grid-row: 2;
  grid-column: 11 / 13;
  align-items: end;
  grid-template-columns: auto auto;
  gap: 14px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 50px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.scroll-cue i::after {
  display: block;
  width: 100%;
  height: 48%;
  content: "";
  background: var(--volt);
  animation: scroll-cue 1.7s var(--ease-in-out) infinite;
}

@keyframes scroll-cue {
  from { transform: translateY(-110%); }
  to { transform: translateY(220%); }
}

.marquee {
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-block: 1px solid #99c522;
  background: var(--volt);
  color: var(--ink);
}

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

.marquee span {
  padding-inline: 22px;
  font-family: var(--title);
  font-size: clamp(1.4rem, 2.3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.marquee i { font-style: normal; }

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

.section-kicker {
  color: #a0a19b;
}

.section--bone .section-kicker {
  color: #54564f;
}

.section-kicker span {
  display: grid;
  width: 32px;
  height: 32px;
  border: 1px solid currentColor;
  border-radius: 50%;
  place-items: center;
  letter-spacing: 0;
}

.display-title {
  margin: 0;
  font-family: var(--title);
  font-size: clamp(3.6rem, 7.2vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.84;
  text-transform: uppercase;
}

.display-title em {
  color: var(--volt);
  font-style: italic;
  font-weight: 800;
}

.display-title--dark { color: var(--ink); }
.display-title--dark em { color: #516c00; }

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.manifesto__layout {
  display: grid;
  margin-top: 44px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: end;
}

.manifesto__layout .display-title { grid-column: 1 / 9; }

.manifesto__aside {
  grid-column: 10 / 13;
  padding-bottom: 10px;
}

.manifesto__aside p {
  margin: 0 0 28px;
  color: #42433f;
  line-height: 1.8;
}

.service-grid {
  display: grid;
  margin-top: 92px;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(8, 9, 9, 0.22);
}

.service-card {
  position: relative;
  min-height: 390px;
  padding: 28px;
  overflow: hidden;
  background: var(--ink);
  color: var(--bone);
  transition: background-color 0.35s, color 0.35s, transform 0.2s ease;
  transform-style: preserve-3d;
}

.service-card::before {
  position: absolute;
  inset: auto -30% -70% 30%;
  width: 110%;
  aspect-ratio: 1;
  border: 1px solid rgba(201, 255, 56, 0.2);
  border-radius: 50%;
  content: "";
  transition: transform 0.7s var(--ease-out), background-color 0.35s;
}

.service-card:hover {
  z-index: 2;
  background: var(--volt);
  color: var(--ink);
}

.service-card:hover::before {
  transform: scale(1.2) translate(-10%, -20%);
  background: rgba(255, 255, 255, 0.16);
}

.service-card__number {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.service-card__icon {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--volt);
  place-items: center;
  transition: color 0.35s, border-color 0.35s, transform 0.35s var(--ease-out);
}

.service-card:hover .service-card__icon {
  border-color: rgba(8, 9, 9, 0.4);
  color: var(--ink);
  transform: rotate(45deg);
}

.service-card h3 {
  position: absolute;
  right: 28px;
  bottom: 94px;
  left: 28px;
  margin: 0;
  font-family: var(--title);
  font-size: clamp(2rem, 2.7vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-transform: uppercase;
}

.service-card p {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  transition: color 0.35s;
}

.service-card:hover p { color: rgba(8, 9, 9, 0.7); }

.method {
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 34%, rgba(201, 255, 56, 0.09), transparent 28%),
    var(--ink);
}

.method::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  content: "";
  background: var(--line);
}

.method__shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 10vw, 180px);
}

.method__intro {
  position: sticky;
  top: 160px;
  height: fit-content;
}

.method__intro .display-title { margin-top: 44px; }

.method__lead {
  max-width: 410px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.method-steps {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-steps::before,
.method-steps::after {
  position: absolute;
  z-index: 0;
  top: 84px;
  right: 34px;
  bottom: 84px;
  width: 1px;
  content: "";
  pointer-events: none;
  background: var(--line);
}

.method-steps::after {
  background: var(--volt);
  transform: scaleY(var(--method-progress, 0));
  transform-origin: top;
  transition: transform 0.8s var(--ease-out);
}

.method-step {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 280px;
  padding: 64px 82px 52px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 62px 1fr;
  gap: 25px;
  align-items: start;
}

.method-step.is-active h3 { color: var(--volt); transform: translateX(8px); }
.method-step h3 { transition: color 0.45s, transform 0.55s var(--ease-out); }
.method-step.is-active .method-step__mark { border-color: var(--volt); background: var(--volt); color: var(--ink); transform: rotate(90deg) scale(1.08); }

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

.method-step__index {
  color: var(--volt);
  font-family: var(--title);
  font-size: 1.5rem;
  font-weight: 700;
}

.method-step h3 {
  margin: 0 0 18px;
  font-family: var(--title);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-transform: uppercase;
}

.method-step p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.8;
}

.method-step__mark {
  position: absolute;
  top: 62px;
  right: 10px;
  display: grid;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #6b6d69;
  font-size: 12px;
  place-items: center;
  transition: color 0.35s, transform 0.6s var(--ease-out), border-color 0.35s;
}

.method-step:hover .method-step__mark {
  border-color: var(--volt);
  color: var(--volt);
  transform: rotate(90deg) scale(1.08);
}

.results {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #0b0c0c;
}

.results__word {
  position: absolute;
  z-index: 0;
  top: 10px;
  right: -2vw;
  color: transparent;
  font-family: var(--title);
  font-size: min(32vw, 31rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.75;
  opacity: 0.08;
  -webkit-text-stroke: 1px var(--bone);
}

.results .shell { position: relative; z-index: 1; }

.results__head {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 24px;
  align-items: end;
}

.results__head .display-title { margin-top: 40px; }

.results__intro {
  padding-bottom: 7px;
}

.results__intro > p {
  margin: 0 0 34px;
  color: var(--muted);
  line-height: 1.8;
}

.results__facts {
  display: grid;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.results__facts span {
  display: grid;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.results__facts b {
  margin-bottom: 4px;
  color: var(--bone);
  font-family: var(--title);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
}

.results-grid {
  display: grid;
  margin-top: 90px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.result-card {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 360px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #050606;
  cursor: pointer;
  text-align: left;
  grid-column: span 4;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.7s var(--ease-out), border-color 0.35s;
  content-visibility: auto;
  contain-intrinsic-size: 500px 500px;
}

.result-card.is-ready { opacity: 1; transform: none; }
.result-card.is-extra { display: none; }
.results-grid.is-expanded .result-card.is-extra { display: block; }
.result-card--wide { grid-column: span 8; }
.result-card--tall { min-height: 600px; grid-column: span 4; }

.result-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(8, 9, 9, 0.92), transparent 32%);
  pointer-events: none;
}

.result-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.8s var(--ease-out), filter 0.5s;
}

.result-card:hover { border-color: rgba(201, 255, 56, 0.65); }
.result-card:hover img { transform: scale(1.035); filter: saturate(1.1); }

.result-card__meta {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 17px;
  left: 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  pointer-events: none;
}

.result-card__meta span:first-child {
  color: var(--bone);
  font-family: var(--title);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.result-card__meta span:last-child {
  color: var(--volt);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.results__more {
  display: flex;
  margin-top: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.results__more p {
  margin: 0;
  color: #72736f;
  font-size: 10px;
  letter-spacing: 0.07em;
}

.button__count { color: var(--volt); }
.button--outline:hover .button__count { color: var(--ink); }

.motion-story {
  position: relative;
  display: grid;
  min-height: min(900px, 100svh);
  overflow: hidden;
  background: #050606;
  place-items: center;
}

.motion-story::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 9, 9, 0.95) 0%, rgba(8, 9, 9, 0.54) 48%, rgba(8, 9, 9, 0.68) 100%),
    linear-gradient(to top, var(--ink), transparent 22%, transparent 75%, var(--ink));
}

.motion-story__media {
  position: absolute;
  inset: 0;
}

.motion-story__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.65) contrast(1.14) brightness(0.75);
}

.motion-story__play {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 12%;
  display: grid;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  cursor: pointer;
  background: rgba(8, 9, 9, 0.25);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  place-items: center;
  transform: translateY(-50%);
  transition: background-color 0.35s, color 0.35s, transform 0.35s var(--ease-out);
}

.motion-story__play:hover {
  background: var(--volt);
  color: var(--ink);
  transform: translateY(-50%) scale(1.07);
}

.motion-story__play.is-playing span { font-size: 0; }
.motion-story__play.is-playing span::after { content: "Ⅱ"; font-size: 17px; }

.motion-story__copy {
  position: relative;
  z-index: 2;
}

.motion-story__copy h2 {
  max-width: 950px;
  margin: 35px 0 28px;
  font-family: var(--title);
  font-size: clamp(4rem, 8.5vw, 9rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.82;
  text-transform: uppercase;
}

.motion-story__copy h2 em { color: var(--volt); font-style: italic; }

.motion-story__copy > p:last-child {
  max-width: 520px;
  margin: 0;
  color: #b0afa9;
}

.credentials { overflow: hidden; }

.credentials__head {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 24px;
  align-items: end;
}

.credentials__head .display-title { margin-top: 40px; }

.credentials__summary {
  display: grid;
  padding: 24px;
  border: 1px solid var(--line-dark);
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: center;
}

.credentials__summary strong {
  color: #516c00;
  font-family: var(--title);
  font-size: 6.6rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.credentials__summary p {
  margin: 0;
  color: #4f514c;
  font-size: 12px;
  line-height: 1.7;
}

.certificate-stage {
  position: relative;
  margin-top: 82px;
  padding: 55px 0 72px;
  border-block: 1px solid var(--line-dark);
  background:
    linear-gradient(90deg, rgba(8, 9, 9, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(8, 9, 9, 0.035) 1px, transparent 1px),
    #e7e4da;
  background-size: 40px 40px;
}

.certificate-stage__rail {
  display: flex;
  padding-inline: max(24px, calc((100vw - clamp(290px, 29vw, 430px)) / 2));
  overflow-x: auto;
  overflow-y: hidden;
  gap: clamp(26px, 3.5vw, 56px);
  scroll-behavior: smooth;
  scroll-padding-inline: max(24px, calc((100vw - clamp(290px, 29vw, 430px)) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.certificate-stage__rail::-webkit-scrollbar { display: none; }

.certificate-stage__progress {
  width: min(calc(100% - 48px), 1460px);
  height: 2px;
  margin: 44px auto 0;
  overflow: hidden;
  background: rgba(8, 9, 9, 0.13);
}

.certificate-stage__progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0.0833);
  transform-origin: left;
  background: #516c00;
  transition: transform 0.2s linear;
}

.cert-card {
  position: relative;
  width: clamp(290px, 29vw, 430px);
  flex: 0 0 auto;
  padding: 16px 16px 22px;
  border: 1px solid rgba(8, 9, 9, 0.16);
  cursor: pointer;
  background: #faf9f5;
  box-shadow: 0 20px 45px rgba(21, 20, 16, 0.12);
  color: var(--ink);
  scroll-snap-align: center;
  scroll-snap-stop: always;
  text-align: left;
  transform: rotate(var(--rotation, -1.5deg));
  transition: transform 0.55s var(--ease-out), box-shadow 0.4s;
  content-visibility: auto;
  contain-intrinsic-size: 430px 620px;
}

.cert-card:nth-child(3n + 2) { --rotation: 1.3deg; }
.cert-card:nth-child(3n) { --rotation: -0.5deg; }

.cert-card:hover {
  z-index: 3;
  box-shadow: 0 28px 65px rgba(21, 20, 16, 0.22);
  transform: rotate(0) translateY(-12px);
}

.cert-card__image {
  display: grid;
  height: clamp(360px, 42vw, 560px);
  overflow: hidden;
  border: 1px solid rgba(8, 9, 9, 0.1);
  background: #fff;
  place-items: center;
}

.cert-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cert-card__meta {
  display: grid;
  padding-top: 18px;
  grid-template-columns: 36px 1fr;
  gap: 13px;
  align-items: start;
}

.cert-card__meta > span {
  color: #686961;
  font-family: var(--title);
  font-size: 0.9rem;
  font-weight: 700;
}

.cert-card__copy strong {
  display: block;
  margin: 0 0 5px;
  font-family: var(--title);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.cert-card__copy small {
  display: block;
  margin: 0;
  color: #5b5d56;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.certificate-controls {
  display: flex;
  margin-top: 28px;
  align-items: center;
  justify-content: space-between;
}

.certificate-controls p {
  margin: 0;
  color: #686960;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.certificate-controls > div {
  display: flex;
  align-items: center;
  gap: 17px;
}

.certificate-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-dark);
  cursor: pointer;
  color: var(--ink);
  place-items: center;
  transition: color 0.3s, background-color 0.3s;
}

.certificate-controls button:hover { background: var(--ink); color: var(--volt); }

#cert-position {
  min-width: 62px;
  font-family: var(--title);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.about {
  background:
    radial-gradient(circle at 20% 50%, rgba(201, 255, 56, 0.08), transparent 28%),
    #0b0c0c;
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.about__visual {
  position: relative;
  min-height: 680px;
  grid-column: 1 / 6;
}

.about__credential-visual {
  position: absolute;
  z-index: 2;
  right: 2%;
  bottom: 0;
  left: 7%;
  height: 70%;
  display: flex;
  padding: clamp(26px, 4vw, 56px);
  overflow: hidden;
  border: 1px solid var(--line);
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(145deg, rgba(201, 255, 56, 0.2), transparent 45%),
    repeating-linear-gradient(0deg, transparent 0 59px, rgba(255, 255, 255, 0.06) 60px),
    repeating-linear-gradient(90deg, transparent 0 59px, rgba(255, 255, 255, 0.06) 60px),
    #111313;
  clip-path: polygon(0 0, 88% 0, 100% 12%, 100% 100%, 12% 100%, 0 88%);
}

.about__credential-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(145deg, transparent 45%, rgba(201, 255, 56, 0.1));
}

.about__credential-visual > span {
  position: absolute;
  top: 7%;
  right: 8%;
  color: transparent;
  font-family: var(--title);
  font-size: clamp(9rem, 18vw, 17rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.8;
  opacity: 0.45;
  -webkit-text-stroke: 1px var(--volt);
}

.about__credential-visual strong {
  position: relative;
  z-index: 1;
  color: var(--bone);
  font-family: var(--title);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.82;
  text-transform: uppercase;
}

.about__credential-visual small {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  color: var(--volt);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about__monogram {
  position: absolute;
  top: 0;
  left: 0;
  color: transparent;
  font-family: var(--title);
  font-size: clamp(13rem, 25vw, 25rem);
  font-weight: 900;
  letter-spacing: -0.11em;
  line-height: 0.75;
  opacity: 0.3;
  -webkit-text-stroke: 1px var(--volt);
}

.about__ring {
  position: absolute;
  z-index: 4;
  top: 26%;
  right: -9%;
  display: grid;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--volt);
  color: var(--ink);
  place-items: center;
  animation: ring-spin 14s linear infinite;
}

.about__ring::after {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(8, 9, 9, 0.45);
  border-radius: 50%;
  content: "DC";
  font-family: var(--title);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 64px;
  text-align: center;
  animation: ring-counter 14s linear infinite;
}

.about__ring svg {
  position: absolute;
  inset: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  overflow: visible;
}

.about__ring text {
  fill: var(--ink);
  font-family: var(--body);
  font-size: 6.3px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

@keyframes ring-spin { to { transform: rotate(360deg); } }
@keyframes ring-counter { to { transform: rotate(-360deg); } }

.about__copy { grid-column: 7 / 13; }
.about__copy .display-title { margin-top: 40px; }

.about__lead {
  max-width: 700px;
  margin: 38px 0 24px;
  color: var(--bone);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.55;
}

.about__copy > p:not(.about__lead) {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.about__statement {
  max-width: 700px;
  margin: 42px 0 36px;
  padding-left: 24px;
  border-left: 3px solid var(--volt);
  color: #dad8d1;
  font-family: var(--title);
  font-size: clamp(1.6rem, 2.7vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-transform: uppercase;
}

.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about__tags span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  color: #b8b7b0;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact {
  min-height: 900px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--ink);
}

.contact__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
}

.contact__copy .display-title { margin-top: 40px; }

.contact__copy > p {
  max-width: 560px;
  margin: 34px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.contact__channels {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.contact__channels:not([hidden]) { display: block; }

.contact__channels a {
  display: flex;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  font-family: var(--title);
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact__channels a:hover span { color: var(--volt); transform: translate(3px, -3px); }
.contact__channels a span { transition: color 0.3s, transform 0.3s; }

.contact-form {
  padding: clamp(26px, 3.5vw, 52px);
  border: 1px solid var(--line);
  background: rgba(17, 19, 19, 0.72);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.field { position: relative; margin-bottom: 30px; }

.field label {
  display: block;
  margin-bottom: 9px;
  color: #d9d7d0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--bone);
  font-size: 0.95rem;
  transition: border-color 0.25s;
}

.field input,
.field select { height: 52px; }
.field textarea { padding: 14px 0; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--volt); }
.field ::placeholder { color: #71736f; }
.field select option { background: var(--ink); color: var(--bone); }

.form-note {
  margin: 15px 0 0;
  color: #a2a39c;
  font-size: 10px;
  line-height: 1.5;
}

.form-success {
  display: none;
  margin-top: 18px;
  padding: 12px 14px;
  border-left: 2px solid var(--volt);
  background: rgba(201, 255, 56, 0.08);
  color: #d9d8d1;
  font-size: 12px;
}

.form-success.is-visible { display: block; }

.contact__orb {
  position: absolute;
  border: 1px solid rgba(201, 255, 56, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.contact__orb::before,
.contact__orb::after {
  position: absolute;
  border: inherit;
  border-radius: inherit;
  content: "";
}

.contact__orb::before { inset: 12%; }
.contact__orb::after { inset: 28%; background: rgba(201, 255, 56, 0.03); }
.contact__orb--one { top: -20vw; left: -10vw; width: 55vw; height: 55vw; }
.contact__orb--two { right: -20vw; bottom: -24vw; width: 58vw; height: 58vw; }

.site-footer {
  border-top: 1px solid var(--line);
  background: #050606;
}

.site-footer__top {
  display: flex;
  min-height: 160px;
  align-items: center;
  justify-content: space-between;
}

.site-footer__top img { width: 220px; }

.site-footer__top a {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer__top a span { color: var(--volt); font-size: 1.2rem; }

.site-footer__bottom {
  display: grid;
  padding-block: 18px 25px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.site-footer__bottom p {
  margin: 0;
  color: #999a94;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-footer__bottom p:nth-child(2) { text-align: center; }
.site-footer__bottom p:last-child { text-align: right; }

.lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: rgba(5, 6, 6, 0.97);
  color: var(--bone);
}

.lightbox::backdrop { background: rgba(0, 0, 0, 0.85); }

.lightbox[open] {
  display: grid;
  grid-template-columns: 90px 1fr 90px;
  grid-template-rows: 78px 1fr;
}

.lightbox__topbar {
  display: flex;
  padding: 0 26px;
  border-bottom: 1px solid var(--line);
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
}

.lightbox__position {
  color: var(--muted);
  font-family: var(--title);
  font-size: 1.1rem;
  font-weight: 700;
}

.lightbox__close {
  display: flex;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lightbox__close span { color: var(--bone); font-size: 1.8rem; font-weight: 300; }

.lightbox__nav {
  display: grid;
  cursor: pointer;
  color: var(--bone);
  font-size: 1.4rem;
  place-items: center;
  transition: color 0.3s, background-color 0.3s;
}

.lightbox__nav:hover { background: rgba(255, 255, 255, 0.04); color: var(--volt); }
.lightbox__nav:disabled { opacity: 0; pointer-events: none; }
.lightbox__nav--prev { grid-column: 1; grid-row: 2; }
.lightbox__nav--next { grid-column: 3; grid-row: 2; }

.lightbox__figure {
  display: grid;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 24px 28px 18px;
  grid-column: 2;
  grid-row: 2;
  grid-template-rows: 1fr auto;
  gap: 16px;
  place-items: center;
  touch-action: pan-y pinch-zoom;
}

.lightbox__figure img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  opacity: 1;
  transform: translateX(var(--swipe-x, 0)) scale(1);
  transition: opacity 0.25s ease, transform 0.38s var(--ease-out);
}

.lightbox__figure img.is-changing { opacity: 0; transform: translateX(var(--swipe-x, 0)) scale(0.985); }
.lightbox__figure.is-swiping img { transition: none; }

.lightbox__figure figcaption {
  min-height: 24px;
  color: #b2b1ab;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.toast {
  position: fixed;
  z-index: 1500;
  right: 22px;
  bottom: 22px;
  max-width: min(420px, calc(100vw - 44px));
  padding: 14px 18px;
  border-left: 3px solid var(--volt);
  background: var(--bone);
  color: var(--ink);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 0.3s, transform 0.45s var(--ease-out);
}

.toast.is-visible { opacity: 1; transform: none; }

@supports (animation-timeline: view()) {
  .results__word {
    animation: proof-drift linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 100%;
  }
  .about__monogram {
    animation: monogram-drift linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
  .contact__orb--one {
    animation: orb-drift linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 100%;
  }
}

@keyframes proof-drift {
  from { transform: translate3d(8vw, -3vh, 0) rotate(2deg); }
  to { transform: translate3d(-7vw, 8vh, 0) rotate(-3deg); }
}

@keyframes monogram-drift {
  from { transform: translateY(12%) rotate(-3deg); }
  to { transform: translateY(-8%) rotate(2deg); }
}

@keyframes orb-drift {
  from { transform: translate3d(-8%, -4%, 0) scale(0.92); }
  to { transform: translate3d(16%, 8%, 0) scale(1.08); }
}

@media (max-width: 1180px) {
  .desktop-nav { gap: 22px; }
  .brand { width: 192px; }
  .hero__copy { grid-column: 1 / span 9; }
  .hero-stack { right: -9%; width: 430px; opacity: 0.74; }
  .hero__title { font-size: clamp(4rem, 9.1vw, 7.4rem); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .method__shell { gap: 75px; }
  .about__visual { grid-column: 1 / 7; }
  .about__copy { grid-column: 7 / 13; }
}

@media (max-width: 960px) {
  :root { --header-height: 78px; }
  .shell,
  .site-header__inner { width: min(100% - 36px, 1460px); }
  .desktop-nav,
  .header-cta { display: none; }
  .brand { width: 180px; }
  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 48px;
    height: 48px;
    cursor: pointer;
    place-items: center;
  }
  .menu-toggle span {
    position: absolute;
    width: 25px;
    height: 1px;
    background: var(--bone);
    transition: transform 0.4s var(--ease-out), top 0.4s var(--ease-out);
  }
  .menu-toggle span:first-child { top: 19px; }
  .menu-toggle span:last-child { top: 28px; }
  .menu-toggle[aria-expanded="true"] span:first-child { top: 24px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { top: 24px; transform: rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    min-height: 100dvh;
    padding: calc(100px + env(safe-area-inset-top)) 30px calc(34px + env(safe-area-inset-bottom));
    overflow-y: auto;
    flex-direction: column;
    justify-content: center;
    background: rgba(8, 9, 9, 0.985);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.4s, transform 0.5s var(--ease-out), visibility 0s 0.5s;
  }
  .mobile-menu::before {
    position: absolute;
    right: -8vw;
    bottom: 3vh;
    color: transparent;
    content: "DC";
    font-family: var(--title);
    font-size: min(54vw, 24rem);
    font-weight: 900;
    letter-spacing: -0.1em;
    opacity: 0.09;
    pointer-events: none;
    -webkit-text-stroke: 1px var(--volt);
  }
  .mobile-menu.is-open { opacity: 1; pointer-events: auto; visibility: visible; transform: none; transition-delay: 0s; }
  .mobile-menu a {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    align-items: center;
    gap: 20px;
    font-family: var(--title);
    font-size: clamp(3.3rem, 12vw, 6.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(-24px);
    transition: color 0.3s, opacity 0.55s var(--ease-out), transform 0.6s var(--ease-out);
  }
  .mobile-menu.is-open a { opacity: 1; transform: none; }
  .mobile-menu.is-open a:nth-child(1) { transition-delay: 0.08s; }
  .mobile-menu.is-open a:nth-child(2) { transition-delay: 0.14s; }
  .mobile-menu.is-open a:nth-child(3) { transition-delay: 0.2s; }
  .mobile-menu.is-open a:nth-child(4) { transition-delay: 0.26s; }
  .mobile-menu a:last-child { color: var(--volt); }
  .mobile-menu a span { color: var(--volt); font-family: var(--body); font-size: 9px; letter-spacing: 0.12em; }
  .hero__content {
    padding-top: calc(var(--header-height) + 70px);
    align-items: start;
  }
  .hero__copy { grid-column: 1 / 13; padding-bottom: 420px; }
  .hero__title { font-size: clamp(4rem, 13vw, 7.2rem); }
  .hero__lead { max-width: 520px; }
  .hero-stack { top: auto; right: -4%; bottom: 115px; width: 390px; height: 390px; }
  .hero-stack__stamp { width: 76px; height: 76px; font-size: 14px; }
  .hero__proof { grid-column: 1 / 11; }
  .scroll-cue { grid-column: 11 / 13; }
  .manifesto__layout .display-title { grid-column: 1 / 10; }
  .manifesto__aside { grid-column: 10 / 13; }
  .method::before { display: none; }
  .method__shell { grid-template-columns: 1fr; gap: 75px; }
  .method__intro { position: static; }
  .method-steps { max-width: 720px; margin-left: auto; }
  .results__head,
  .credentials__head { grid-template-columns: 1fr; gap: 50px; }
  .results__intro { max-width: 600px; }
  .credentials__summary { max-width: 580px; }
  .result-card { grid-column: span 6; }
  .result-card--wide { grid-column: span 12; }
  .result-card--tall { grid-column: span 6; }
  .about__grid { gap: 55px; }
  .about__visual { min-height: 570px; grid-column: 1 / 7; }
  .about__copy { grid-column: 7 / 13; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__copy { max-width: 790px; }
  .contact-form { max-width: 720px; }
}

@media (max-width: 720px) {
  html { scroll-padding-top: calc(var(--header-height) + env(safe-area-inset-top) + 18px); }
  .shell,
  .site-header__inner { width: min(100% - 28px, 1460px); }
  .section { padding-block: 88px; }
  .grain { display: none; }
  .cursor,
  .spotlight { display: none; }
  .site-header.is-scrolled { background: rgba(8, 9, 9, 0.92); -webkit-backdrop-filter: none; backdrop-filter: none; }
  .site-header__inner { height: calc(var(--header-height) + env(safe-area-inset-top)); padding-top: env(safe-area-inset-top); }
  .brand { width: 165px; }

  .mobile-dock {
    position: fixed;
    z-index: 990;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 12px;
    display: grid;
    min-height: 62px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    grid-template-columns: repeat(5, 1fr);
    background: rgba(8, 9, 9, 0.94);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.42);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.65s var(--ease-out), opacity 0.4s ease;
  }
  body.is-loaded .mobile-dock { transform: none; opacity: 1; transition-delay: 1s; }
  body.is-menu-open .mobile-dock,
  body.is-lightbox-open .mobile-dock,
  body.is-contact-visible .mobile-dock { pointer-events: none; transform: translateY(125%); opacity: 0; transition-delay: 0s; }
  .mobile-dock a {
    position: relative;
    display: grid;
    min-width: 0;
    min-height: 50px;
    border-radius: 15px;
    color: #8e9089;
    place-items: center;
    align-content: center;
    gap: 1px;
    transition: color 0.3s, background-color 0.3s, transform 0.25s;
  }
  .mobile-dock a::after {
    position: absolute;
    top: 4px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    content: "";
    background: var(--volt);
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.3s, transform 0.4s var(--ease-out);
  }
  .mobile-dock a[aria-current="page"] { background: rgba(255, 255, 255, 0.06); color: var(--bone); }
  .mobile-dock a[aria-current="page"]::after { opacity: 1; transform: scale(1); }
  .mobile-dock a:active { transform: scale(0.93); }
  .mobile-dock a > span { font-size: 16px; line-height: 1; }
  .mobile-dock small { font-size: 8px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; }
  .mobile-dock__cta { background: var(--volt) !important; color: var(--ink) !important; }
  .mobile-dock__cta::after { background: var(--ink) !important; }

  .hero { min-height: 100svh; }
  .hero::after {
    position: absolute;
    top: 24%;
    right: -24%;
    color: transparent;
    content: "DC";
    font-family: var(--title);
    font-size: 58vw;
    font-weight: 900;
    letter-spacing: -0.12em;
    line-height: 0.75;
    opacity: 0.07;
    pointer-events: none;
    -webkit-text-stroke: 1px var(--volt);
  }
  .hero__content {
    display: flex;
    min-height: 100svh;
    padding-top: calc(112px + env(safe-area-inset-top));
    padding-bottom: 28px;
    flex-direction: column;
    align-items: stretch;
  }
  .hero__eyebrow { margin-bottom: 24px; font-size: 9px; }
  .hero__title { font-size: clamp(3.65rem, 18vw, 6.2rem); line-height: 0.78; }
  .hero__line:nth-child(4) { font-size: 0.72em; letter-spacing: -0.04em; line-height: 0.9; white-space: nowrap; }
  .hero__lead { margin-top: 24px; font-size: 0.9rem; }
  .hero__actions { margin-top: 28px; align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero__actions .button { width: 100%; }
  .hero__copy { width: 100%; padding-bottom: 0; }
  .hero-stack {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: min(96vw, 390px);
    height: clamp(310px, 85vw, 370px);
    margin: 38px -24px 12px auto;
    flex: 0 0 auto;
  }
  body.is-loaded .hero-stack { transform: none; }
  .hero-card--back { width: 59%; }
  .hero-card--mid { width: 58%; }
  .hero-card--front { width: 75%; }
  .hero-card { will-change: auto; }
  .hero-stack__stamp { top: -3%; left: 0; width: 68px; height: 68px; font-size: 12px; }
  .hero-stack__open { right: 5%; bottom: -11px; min-height: 44px; padding-inline: 13px; gap: 16px; }
  .hero__mobile-signal {
    display: flex;
    margin: 22px 0 0;
    align-items: center;
    gap: 11px;
    color: #6f716c;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  .hero__mobile-signal i { height: 1px; flex: 1; background: linear-gradient(90deg, var(--volt), rgba(201, 255, 56, 0.08)); }
  .hero__proof { width: 100%; margin-top: 22px; padding-top: 19px; gap: 0; justify-content: space-between; }
  .hero__proof strong { font-size: 1.7rem; }
  .hero__proof span { font-size: 8.5px; }
  .scroll-cue { display: none; }
  .marquee__track { padding: 12px 0; }
  .display-title { font-size: clamp(3.35rem, 16vw, 5.6rem); }
  .manifesto__layout { display: block; margin-top: 32px; }
  .manifesto__aside { margin-top: 34px; }
  .manifesto__aside p { max-width: 500px; }
  .service-grid {
    display: flex;
    margin: 65px -14px 0;
    padding: 0 14px 10px;
    overflow-x: auto;
    gap: 12px;
    background: transparent;
    scroll-padding-inline: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    touch-action: auto;
  }
  .service-grid::-webkit-scrollbar { display: none; }
  .service-card { width: min(82vw, 340px); min-width: min(82vw, 340px); min-height: 350px; border: 1px solid var(--line); scroll-snap-align: center; }
  .service-card:active { transform: scale(0.985); }
  .method__intro .display-title { margin-top: 33px; }
  .method-steps::before,
  .method-steps::after { right: 20px; }
  .method-step { min-height: 0; padding: 42px 58px 42px 0; grid-template-columns: 42px 1fr; gap: 13px; }
  .method-step h3 { font-size: 2.25rem; }
  .method-step__mark { top: 40px; right: 0; width: 40px; height: 40px; }
  .results__head .display-title,
  .credentials__head .display-title { margin-top: 32px; }
  .results__facts { gap: 5px; }
  .mobile-stories { display: block; margin: 58px -14px 0; }
  .mobile-stories__head,
  .mobile-stories__foot { display: flex; padding-inline: 14px; align-items: center; justify-content: space-between; }
  .mobile-stories__head { margin-bottom: 16px; }
  .mobile-stories__head > span,
  .mobile-stories__foot > span:first-child {
    color: #898b85;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  .mobile-stories__head strong { color: var(--volt); font-family: var(--title); font-size: 1.1rem; letter-spacing: 0.04em; }
  .mobile-stories__track {
    display: flex;
    padding: 0 max(14px, calc((100vw - min(82vw, 330px)) / 2)) 8px;
    overflow-x: auto;
    gap: 12px;
    scroll-padding-inline: max(14px, calc((100vw - min(82vw, 330px)) / 2));
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    touch-action: auto;
  }
  .mobile-stories__track::-webkit-scrollbar { display: none; }
  .mobile-story {
    position: relative;
    width: min(82vw, 330px);
    min-width: min(82vw, 330px);
    aspect-ratio: 0.82;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    cursor: pointer;
    background: #050606;
    color: var(--bone);
    scroll-snap-align: center;
    scroll-snap-stop: always;
    text-align: left;
    clip-path: polygon(0 0, 91% 0, 100% 9%, 100% 100%, 9% 100%, 0 91%);
  }
  .mobile-story::after { position: absolute; inset: 0; content: ""; background: linear-gradient(to top, rgba(5, 6, 6, 0.94), transparent 52%); pointer-events: none; }
  .mobile-story img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.65s var(--ease-out); }
  .mobile-story:active img { transform: scale(1.025); }
  .mobile-story__number {
    position: absolute;
    z-index: 2;
    top: 15px;
    left: 15px;
    display: grid;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(201, 255, 56, 0.62);
    border-radius: 50%;
    background: rgba(8, 9, 9, 0.7);
    color: var(--volt);
    font-family: var(--title);
    font-size: 1.05rem;
    place-items: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
  .mobile-story__meta { position: absolute; z-index: 2; right: 18px; bottom: 19px; left: 18px; display: grid; }
  .mobile-story__meta strong { font-family: var(--title); font-size: 2.05rem; letter-spacing: -0.03em; line-height: 0.9; text-transform: uppercase; }
  .mobile-story__meta small { margin-top: 9px; color: var(--volt); font-size: 8px; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
  .mobile-stories__foot { margin-top: 15px; gap: 18px; }
  .mobile-stories__progress { display: block; height: 2px; flex: 1; overflow: hidden; background: rgba(255, 255, 255, 0.14); }
  .mobile-stories__progress i { display: block; width: 100%; height: 100%; transform: scaleX(0.0909); transform-origin: left; background: var(--volt); transition: transform 0.18s linear; }

  .results-grid { display: none; margin-top: 58px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .results-grid.is-expanded { display: grid; }
  .result-card,
  .result-card--tall { width: 100%; min-height: 0; aspect-ratio: 0.84; margin: 0; grid-column: span 1; }
  .result-card--wide { width: 100%; min-height: 0; aspect-ratio: 1.18; margin: 0; grid-column: span 2; }
  .result-card__meta { right: 11px; bottom: 10px; left: 11px; }
  .result-card__meta span:first-child { font-size: 1.05rem; }
  .result-card__meta span:last-child { font-size: 7px; }
  .results__more { align-items: stretch; flex-direction: column; }
  .results__more .button { width: 100%; }
  .results__more p { text-align: center; }
  .motion-story { min-height: 760px; align-items: end; }
  .motion-story::after { background: linear-gradient(to top, rgba(8, 9, 9, 0.98) 0%, rgba(8, 9, 9, 0.55) 62%, rgba(8, 9, 9, 0.36) 100%); }
  .motion-story__media video { filter: none; }
  .motion-story__copy { padding-bottom: 70px; }
  .motion-story__copy h2 { font-size: clamp(3.65rem, 17vw, 6rem); }
  .motion-story__play { top: 26%; right: 24px; width: 82px; height: 82px; }
  .credentials__summary { padding: 18px; grid-template-columns: 82px 1fr; }
  .credentials__summary strong { font-size: 5rem; }
  .certificate-stage { margin-top: 55px; padding: 36px 0 50px; }
  .certificate-stage__rail { padding-inline: max(18px, calc((100vw - min(82vw, 350px)) / 2)); gap: 20px; }
  .certificate-stage__rail { overscroll-behavior-x: contain; touch-action: auto; }
  .cert-card { width: min(82vw, 350px); }
  .cert-card:not(.is-active) { opacity: 0.72; transform: rotate(var(--rotation, -1.5deg)) scale(0.95); }
  .cert-card.is-active { opacity: 1; transform: rotate(0) scale(1); box-shadow: 0 28px 70px rgba(21, 20, 16, 0.22); }
  .cert-card__image { height: min(112vw, 500px); }
  .certificate-stage__progress { width: calc(100% - 36px); margin-top: 28px; }
  .certificate-controls p { display: none; }
  .certificate-controls { justify-content: center; }
  .about__grid { display: flex; flex-direction: column; }
  .about__visual { width: 100%; min-height: 500px; }
  .about__ring { right: 0; width: 115px; height: 115px; }
  .about__ring::after { width: 51px; height: 51px; font-size: 1.4rem; line-height: 51px; }
  .about__copy { width: 100%; }
  .contact { min-height: 0; }
  .contact__grid { gap: 55px; }
  .contact-form { padding: 24px 18px; background: rgba(17, 19, 19, 0.94); -webkit-backdrop-filter: none; backdrop-filter: none; }
  .field input,
  .field select,
  .field textarea { font-size: 16px; }
  .site-footer__top { min-height: 125px; }
  .site-footer__top img { width: 175px; }
  .site-footer__bottom { padding-bottom: 32px; grid-template-columns: 1fr; }
  .site-footer__bottom p,
  .site-footer__bottom p:nth-child(2),
  .site-footer__bottom p:last-child { text-align: left; }
  .lightbox[open] { position: fixed; display: grid; grid-template-columns: 1fr; grid-template-rows: calc(68px + env(safe-area-inset-top)) 1fr; }
  .lightbox__topbar { min-height: calc(68px + env(safe-area-inset-top)); padding: env(safe-area-inset-top) 16px 0; grid-column: 1; grid-row: 1; }
  .lightbox__figure { padding: 12px 10px calc(16px + env(safe-area-inset-bottom)); grid-column: 1; grid-row: 2; }
  .lightbox__nav {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 46px;
    height: 64px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(8, 9, 9, 0.72);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transform: translateY(-50%);
  }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .toast { right: 14px; bottom: calc(88px + env(safe-area-inset-bottom)); left: 14px; max-width: none; }
  .loader__panel { transition-duration: 0.7s; transition-delay: 0.05s; }
  body.is-loaded .loader { transition-delay: 0.85s; }
}

@media (max-width: 420px) {
  .hero__title { font-size: clamp(3.15rem, 17.5vw, 4.7rem); }
  .hero-stack { width: 310px; height: 300px; margin-right: -20px; }
  .hero__proof span { max-width: 78px; }
  .button { min-height: 54px; padding-inline: 18px; }
  .display-title { font-size: clamp(3rem, 15.2vw, 4.5rem); }
  .method-step { grid-template-columns: 34px 1fr; }
  .method-step h3 { font-size: 1.95rem; padding-right: 20px; }
  .method-step__index { font-size: 1.2rem; }
  .lightbox[open] { grid-template-columns: 1fr; }
}

@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
  .hero-card { will-change: auto; }
  .button:hover::before { transform: translateY(105%); }
  .button:active::before { transform: translateY(0); }
  .button--outline:active { color: var(--ink); }
  .service-card:hover { background: var(--ink); color: var(--bone); }
  .service-card:hover p { color: var(--muted); }
  .result-card:hover img { transform: none; filter: none; }
  .cert-card:hover { box-shadow: 0 20px 45px rgba(21, 20, 16, 0.12); transform: rotate(var(--rotation, -1.5deg)); }
  .cert-card.is-active,
  .cert-card.is-active:hover { opacity: 1; transform: rotate(0) scale(1); box-shadow: 0 28px 70px rgba(21, 20, 16, 0.22); }
  .service-card:hover .service-card__icon { border-color: var(--line); color: var(--volt); transform: none; }
}

@media (max-width: 960px), (pointer: coarse) {
  #energy-field { display: none; }
}

@media (max-height: 600px) and (orientation: landscape) and (max-width: 960px) {
  .hero { min-height: max(100svh, 600px); }
  .hero__content {
    display: grid;
    min-height: max(100svh, 600px);
    padding-top: calc(82px + env(safe-area-inset-top));
    padding-bottom: 20px;
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
    grid-template-rows: 1fr auto;
    column-gap: 20px;
    align-items: center;
  }
  .hero__copy { padding-bottom: 0; grid-column: 1; grid-row: 1; }
  .hero__title { font-size: clamp(3.05rem, 8vw, 4.7rem); }
  .hero__line:nth-child(4) { font-size: 0.69em; white-space: nowrap; }
  .hero__lead { max-width: 440px; margin-top: 18px; }
  .hero__actions { margin-top: 20px; flex-direction: row; gap: 18px; }
  .hero__actions .button { width: auto; }
  .hero-stack {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: min(38vw, 330px);
    height: min(36vw, 300px);
    margin: 0 0 0 auto;
    grid-column: 2;
    grid-row: 1;
  }
  body.is-loaded .hero-stack { transform: none; }
  .hero-stack__stamp { width: 58px; height: 58px; font-size: 10px; }
  .hero-stack__open { right: 2%; bottom: -8px; }
  .hero__mobile-signal,
  .scroll-cue,
  .mobile-dock { display: none; }
  .hero__proof { width: 100%; padding-top: 14px; grid-column: 1 / -1; grid-row: 2; }
  .mobile-menu { justify-content: flex-start; }
  .mobile-menu a { font-size: clamp(2.5rem, 9vw, 4.4rem); }
  .field input,
  .field select,
  .field textarea { font-size: 16px; }
  .lightbox[open] { position: fixed; display: grid; grid-template-columns: 1fr; grid-template-rows: calc(62px + env(safe-area-inset-top)) 1fr; }
  .lightbox__topbar {
    min-height: calc(62px + env(safe-area-inset-top));
    padding: env(safe-area-inset-top) calc(16px + env(safe-area-inset-right)) 0 calc(16px + env(safe-area-inset-left));
    grid-column: 1;
    grid-row: 1;
  }
  .lightbox__figure { padding: 8px calc(12px + env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom)) calc(12px + env(safe-area-inset-left)); grid-column: 1; grid-row: 2; }
  .lightbox__nav { position: absolute; z-index: 5; top: 50%; width: 46px; height: 58px; background: rgba(8, 9, 9, 0.78); transform: translateY(-50%); }
  .lightbox__nav--prev { left: calc(8px + env(safe-area-inset-left)); }
  .lightbox__nav--next { right: calc(8px + env(safe-area-inset-right)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .loader { display: none; }
  .hero__eyebrow,
  .hero__lead,
  .hero__actions,
  .hero-stack,
  .hero__line > span,
  .reveal,
  .result-card {
    opacity: 1 !important;
    transform: none !important;
  }
  .grain,
  #energy-field { display: none; }
}

.no-js .loader { display: none; }
.no-js .reveal,
.no-js .result-card { opacity: 1; transform: none; }
.no-js .contact-form { display: none; }
.no-js .mobile-dock { opacity: 1; transform: none; }
.no-js .menu-toggle { display: none; }
.no-script-note {
  max-width: 560px;
  padding: 18px;
  border-left: 3px solid var(--volt);
  background: rgba(201, 255, 56, 0.08);
  color: var(--bone);
}
.no-js .results-grid::after {
  display: block;
  content: "Attiva JavaScript per esplorare la galleria completa.";
  color: var(--muted);
}
.no-js .results-grid { display: block; }
