:root {
  --ink: #050d2e;
  --navy: #081444;
  --navy-soft: #0b1a52;
  --paper: #f3f1ea;
  --paper-soft: #d9d5ca;
  --blue: #2f5fb3;
  --cyan: #8fb2de;
  --lime: #d9d5ca;
  --coral: #6f83b8;
  --violet: #a7afca;
  --line: rgba(243, 238, 228, 0.16);
  --line-dark: rgba(13, 15, 18, 0.14);
  --mono: "SFMono-Regular", "Cascadia Mono", "Roboto Mono", Consolas, monospace;
  --sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(47, 95, 179, 0.28), transparent 34%),
    linear-gradient(245deg, rgba(217, 213, 202, 0.12), transparent 30%),
    linear-gradient(180deg, #081444 0%, #050d2e 54%, #07113c 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000, transparent 75%);
}

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

.cursor {
  position: fixed;
  width: 18px;
  height: 18px;
  border: 1px solid var(--lime);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 100;
  mix-blend-mode: difference;
}

body.is-pointer-active .cursor {
  width: 54px;
  height: 54px;
  background: rgba(143, 178, 222, 0.18);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(20px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(5, 13, 46, 0.9), rgba(5, 13, 46, 0));
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand-logo {
  width: 124px;
  height: auto;
  display: block;
}

.nav {
  gap: 26px;
  color: rgba(243, 238, 228, 0.72);
  font-size: 0.94rem;
}

.nav a:hover {
  color: var(--paper);
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 48px;
  align-items: center;
  padding: 140px clamp(20px, 4vw, 56px) 96px;
}

.hero-copy {
  max-width: 920px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--paper-soft);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 15ch;
  margin-bottom: 30px;
  font-size: clamp(3.8rem, 7.2vw, 8rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2.4rem, 5.5vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.lead {
  max-width: 690px;
  color: rgba(243, 238, 228, 0.76);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--paper);
  background: var(--blue);
  box-shadow: 0 18px 54px rgba(47, 95, 179, 0.28);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--paper);
}

.hero-stage {
  position: relative;
  min-height: 600px;
  perspective: 1000px;
}

.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  inset: 6% 2%;
  pointer-events: none;
}

.hero-stage::before {
  background:
    linear-gradient(118deg, transparent 18%, rgba(143, 178, 222, 0.28) 18.3%, transparent 18.7%),
    linear-gradient(34deg, transparent 34%, rgba(243, 241, 234, 0.16) 34.3%, transparent 34.7%),
    linear-gradient(154deg, transparent 56%, rgba(47, 95, 179, 0.34) 56.3%, transparent 56.7%),
    linear-gradient(82deg, transparent 68%, rgba(143, 178, 222, 0.22) 68.3%, transparent 68.7%);
  opacity: 0.9;
  filter: drop-shadow(0 0 20px rgba(143, 178, 222, 0.22));
}

.hero-stage::after {
  inset: 10% 0 4%;
  border: 1px solid rgba(143, 178, 222, 0.18);
  border-radius: 28px;
  background:
    repeating-linear-gradient(90deg, rgba(143, 178, 222, 0.09) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(0deg, rgba(143, 178, 222, 0.06) 0 1px, transparent 1px 92px);
  mask-image: radial-gradient(circle at 52% 50%, #000 0 46%, transparent 74%);
  animation: stageDrift 8s ease-in-out infinite alternate;
}

.stage-card {
  position: absolute;
  width: min(420px, 80vw);
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(143, 178, 222, 0.28);
  border-radius: 14px;
  background: rgba(243, 238, 228, 0.1);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.32), 0 0 40px rgba(47, 95, 179, 0.14);
  backdrop-filter: blur(18px);
}

.stage-card span,
.project-meta p,
.system-row span {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: rgba(243, 238, 228, 0.62);
  text-transform: uppercase;
}

.stage-card strong {
  display: block;
  margin: 42px 0 18px;
  font-size: 2.1rem;
}

.stage-card p {
  color: rgba(243, 238, 228, 0.72);
  line-height: 1.5;
}

.stage-card-a {
  top: 30px;
  right: 20px;
  z-index: 4;
  background: linear-gradient(135deg, rgba(217, 213, 202, 0.16), rgba(47, 95, 179, 0.2));
}

.stage-card-b {
  top: 235px;
  left: 10px;
  z-index: 3;
  background: linear-gradient(135deg, rgba(143, 178, 222, 0.18), rgba(47, 95, 179, 0.12));
}

.stage-card-c {
  right: 80px;
  bottom: 26px;
  z-index: 5;
  background: linear-gradient(135deg, rgba(167, 175, 202, 0.2), rgba(243, 241, 234, 0.06));
}

.stage-card-d {
  left: 140px;
  bottom: -70px;
  width: min(360px, 76vw);
  min-height: 210px;
  z-index: 2;
  background: linear-gradient(135deg, rgba(47, 95, 179, 0.22), rgba(217, 213, 202, 0.08));
}

.orbital {
  position: absolute;
  border: 1px solid rgba(143, 178, 222, 0.42);
  border-radius: 999px;
  animation: spin 18s linear infinite;
  box-shadow:
    0 0 34px rgba(143, 178, 222, 0.16),
    inset 0 0 28px rgba(47, 95, 179, 0.12);
}

.orbital-one {
  width: 480px;
  height: 180px;
  top: 180px;
  right: 40px;
  transform: rotate(-24deg);
}

.orbital-two {
  width: 360px;
  height: 520px;
  bottom: 20px;
  left: 30px;
  animation-duration: 26s;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--navy);
}

.marquee-track {
  display: flex;
  gap: 38px;
  width: max-content;
  padding: 22px 0;
  font-family: var(--mono);
  font-size: 1rem;
  text-transform: uppercase;
  animation: marquee 24s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
}

.section {
  padding: 120px clamp(20px, 4vw, 56px);
}

.section-head {
  max-width: 1060px;
  margin-bottom: 56px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 18px;
}

.project-card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(243, 238, 228, 0.06);
  transition: transform 260ms ease, border-color 260ms ease;
  color: inherit;
}

.project-card:hover {
  transform: translateY(-12px);
  border-color: rgba(243, 238, 228, 0.42);
}

.project-card-featured {
  grid-column: span 2;
}

.project-card-featured .project-visual {
  height: 420px;
}

.project-card-featured .project-meta h3 {
  font-size: clamp(2.5rem, 5vw, 5.8rem);
  max-width: 8ch;
}

.archive-section {
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 14px;
}

.archive-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(243, 241, 234, 0.14);
  border-radius: 10px;
  color: inherit;
  background: rgba(243, 241, 234, 0.045);
}

.archive-card img {
  width: 100%;
  height: 190px;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: transform 700ms ease, filter 700ms ease;
}

.archive-card span {
  display: block;
  padding: 18px 18px 7px;
  font-size: 1.05rem;
  font-weight: 900;
}

.archive-card p {
  padding: 0 18px 18px;
  color: rgba(243, 241, 234, 0.68);
  font-size: 0.92rem;
  line-height: 1.42;
}

.scroll-story {
  height: 210svh;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.logo-strip {
  padding: 78px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: rgba(243, 241, 234, 0.035);
}

.logo-strip-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  padding: 0 clamp(20px, 4vw, 56px) 34px;
}

.logo-strip-head h2 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 5vw, 6rem);
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: marquee 34s linear infinite;
}

.logo-track span {
  min-width: 210px;
  height: 92px;
  display: grid;
  place-items: center;
  padding: 0 28px;
  border: 1px solid rgba(243, 241, 234, 0.16);
  border-radius: 10px;
  color: rgba(243, 241, 234, 0.82);
  background: rgba(5, 13, 46, 0.44);
  font-family: var(--mono);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  box-shadow: inset 0 0 40px rgba(143, 178, 222, 0.06);
}

.scroll-pin {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 80px clamp(20px, 4vw, 56px);
}

.story-screen {
  --story-progress: 0;
  position: absolute;
  width: min(82vw, 1260px);
  height: min(72vh, 720px);
  border: 1px solid rgba(243, 241, 234, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transform:
    scale(calc(1.08 - (var(--story-progress) * 0.24)))
    translateY(calc(var(--story-progress) * -42px));
  opacity: calc(1 - (var(--story-progress) * 0.12));
  background: rgba(243, 241, 234, 0.07);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.28);
  transition: transform 80ms linear, opacity 80ms linear;
}

.story-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, transparent 30%, rgba(5, 13, 46, 0.22) 80%),
    linear-gradient(180deg, rgba(5, 13, 46, 0.02), rgba(5, 13, 46, 0.38));
}

.story-img {
  position: absolute;
  width: 46%;
  height: 46%;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(243, 241, 234, 0.2);
  border-radius: 14px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.story-img-a {
  left: 4%;
  top: 7%;
  width: 52%;
  height: 54%;
}

.story-img-b {
  right: 5%;
  top: 11%;
  width: 38%;
  height: 34%;
}

.story-img-c {
  left: 18%;
  bottom: 8%;
  width: 36%;
  height: 30%;
}

.story-img-d {
  right: 9%;
  bottom: 7%;
  width: 42%;
  height: 40%;
}

.story-copy {
  --story-progress: 0;
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin-left: auto;
  margin-right: 3vw;
  padding: clamp(26px, 4vw, 58px);
  border: 1px solid rgba(243, 241, 234, 0.18);
  border-radius: 14px;
  background: rgba(5, 13, 46, 0.74);
  backdrop-filter: blur(16px);
  opacity: calc((var(--story-progress) - 0.22) * 1.8);
  transform: translateY(calc((1 - var(--story-progress)) * 80px));
  transition: transform 80ms linear, opacity 80ms linear;
}

.story-copy h2 {
  font-size: clamp(2.4rem, 4.6vw, 5.7rem);
}

.story-copy p:last-child {
  max-width: 640px;
  color: rgba(243, 241, 234, 0.72);
  font-size: 1.1rem;
  line-height: 1.65;
}

.project-visual {
  position: relative;
  height: 330px;
  overflow: hidden;
  background: #15191f;
}

.has-screen {
  background: var(--navy);
}

.screen-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.02);
  transition: transform 700ms ease, filter 700ms ease;
}

.screen-image-top {
  object-position: center top;
}

.screen-glass {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 13, 46, 0.02), rgba(5, 13, 46, 0.36)),
    linear-gradient(90deg, rgba(5, 13, 46, 0.22), transparent 42%);
}

.project-card:hover .screen-image,
.archive-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04);
}

.visual-valpadana {
  background: linear-gradient(135deg, #0b1a52, #23498d);
}

.visual-anthea {
  background: linear-gradient(135deg, #081444, #2f5fb3);
}

.visual-food {
  background: linear-gradient(135deg, #13235e, #6f83b8);
}

.visual-samgha {
  background: linear-gradient(135deg, #050d2e, #2b3670);
}

.visual-clever {
  background:
    radial-gradient(circle at 22% 42%, rgba(217, 213, 202, 0.18), transparent 20%),
    radial-gradient(circle at 78% 34%, rgba(143, 178, 222, 0.22), transparent 22%),
    linear-gradient(135deg, #081444, #132d67);
}

.visual-guller {
  background: linear-gradient(135deg, #0b1a52, #081444 58%, #3f4f8c);
}

.visual-decorfood {
  background: linear-gradient(135deg, #0e0e0d, #293043);
}

.browser-dot {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 78px;
  height: 16px;
  border-radius: 999px;
  background: var(--paper);
  opacity: 0.8;
}

.mock-line,
.mock-tile {
  position: absolute;
  left: 24px;
  border-radius: 8px;
  background: rgba(243, 238, 228, 0.84);
}

.mock-line {
  top: 84px;
  width: 54%;
  height: 22px;
}

.mock-line.wide {
  top: 122px;
  width: 78%;
}

.mock-tile {
  bottom: 34px;
  width: 46%;
  height: 110px;
}

.mock-tile.small {
  left: auto;
  right: 24px;
  width: 32%;
}

.pulse-ring {
  position: absolute;
  inset: 70px;
  border: 2px solid var(--paper-soft);
  border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
}

.lead-pill {
  position: absolute;
  top: 72px;
  left: 44px;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--paper-soft);
  font-family: var(--mono);
}

.lead-pill.second {
  top: 158px;
  left: 120px;
  background: var(--cyan);
}

.lead-pill.third {
  top: 238px;
  left: 66px;
  background: var(--blue);
  color: var(--paper);
}

.social-frame {
  position: absolute;
  bottom: 36px;
  width: 104px;
  height: 220px;
  border: 8px solid rgba(243, 238, 228, 0.82);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(47, 95, 179, 0.95), rgba(217, 213, 202, 0.7));
}

.social-frame.one {
  left: 34px;
  transform: rotate(-8deg);
}

.social-frame.two {
  left: 130px;
  bottom: 58px;
  transform: rotate(5deg);
}

.social-frame.three {
  left: 226px;
  transform: rotate(-2deg);
}

.data-node {
  position: absolute;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(243, 238, 228, 0.86);
}

.data-node.a {
  top: 46px;
  left: 46px;
}

.data-node.b {
  top: 150px;
  right: 52px;
  background: var(--cyan);
}

.data-node.c {
  bottom: 30px;
  left: 104px;
  background: var(--blue);
}

.data-link {
  position: absolute;
  inset: 90px 70px;
  border: 2px dashed rgba(243, 238, 228, 0.48);
  transform: rotate(18deg);
}

.map-dot {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 24px rgba(217, 213, 202, 0.12);
}

.map-dot.eu {
  left: 54px;
  top: 82px;
}

.map-dot.us {
  right: 52px;
  top: 54px;
  background: var(--cyan);
}

.map-dot.asia {
  right: 110px;
  bottom: 48px;
  background: var(--coral);
}

.map-route {
  position: absolute;
  inset: 84px 60px;
  border: 2px dashed rgba(243, 238, 228, 0.46);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.brand-block {
  position: absolute;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--paper);
  font-weight: 900;
}

.brand-block.big {
  left: 32px;
  bottom: 38px;
  width: 170px;
  height: 170px;
  border-radius: 24px;
  font-size: 6rem;
}

.brand-block.small {
  right: 46px;
  top: 56px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: var(--cyan);
  font-size: 4rem;
}

.brand-block.line {
  right: 44px;
  bottom: 56px;
  width: 180px;
  height: 26px;
  border-radius: 999px;
  background: var(--blue);
}

.project-meta {
  padding: 24px;
}

.project-meta h3 {
  margin-bottom: 14px;
  font-size: 2rem;
  line-height: 1;
}

.project-meta span {
  color: rgba(243, 238, 228, 0.68);
  line-height: 1.45;
}

.systems-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: start;
  background: var(--paper);
  color: var(--ink);
}

.systems-section .eyebrow {
  color: var(--blue);
}

.systems-list {
  display: grid;
  gap: 12px;
}

.system-row {
  display: grid;
  grid-template-columns: 60px minmax(160px, 0.7fr) minmax(220px, 1fr);
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark);
}

.system-row span {
  color: rgba(13, 15, 18, 0.42);
}

.system-row h3 {
  font-size: clamp(1.5rem, 2vw, 2.4rem);
}

.system-row p {
  color: rgba(13, 15, 18, 0.68);
  line-height: 1.55;
}

.case-section {
  display: grid;
  gap: 0;
}

.case-section-head {
  max-width: 1040px;
  margin-bottom: 54px;
}

.case-row {
  display: grid;
  grid-template-columns: 86px minmax(260px, 0.7fr) minmax(300px, 1fr);
  gap: 28px;
  align-items: start;
  padding: 38px 0;
  border-top: 1px solid var(--line);
}

.case-row:last-child {
  border-bottom: 1px solid var(--line);
}

.case-row span {
  font-family: var(--mono);
  color: rgba(243, 241, 234, 0.5);
}

.case-row h3 {
  font-size: clamp(2.2rem, 4vw, 5.4rem);
  line-height: 0.9;
}

.case-row p {
  max-width: 720px;
  color: rgba(243, 241, 234, 0.72);
  font-size: clamp(1.05rem, 1.3vw, 1.3rem);
  line-height: 1.6;
}

.contact-section {
  padding-bottom: 90px;
}

.contact-shell {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
  padding: clamp(24px, 4vw, 56px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 18%, rgba(52, 103, 202, 0.34), transparent 34%),
    linear-gradient(135deg, rgba(243, 238, 228, 0.09), rgba(34, 87, 255, 0.15));
}

.contact-shell h2 {
  max-width: 9ch;
}

.contact-copy {
  display: grid;
  align-content: space-between;
  gap: 28px;
}

.contact-copy p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(243, 241, 234, 0.72);
  font-size: clamp(1.05rem, 1.25vw, 1.28rem);
  line-height: 1.6;
}

.contact-direct {
  display: grid;
  gap: 8px;
}

.contact-direct a {
  color: var(--paper);
  font-size: clamp(1.5rem, 2.7vw, 3rem);
  font-weight: 900;
}

.contact-direct span {
  color: rgba(243, 241, 234, 0.56);
  font-family: var(--mono);
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(243, 241, 234, 0.16);
  border-radius: 14px;
  background: rgba(5, 13, 46, 0.64);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.26);
}

.form-trap {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field span {
  color: rgba(243, 241, 234, 0.66);
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(243, 241, 234, 0.18);
  border-radius: 10px;
  padding: 16px 15px;
  color: var(--paper);
  background: rgba(243, 241, 234, 0.08);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 150px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(143, 178, 222, 0.78);
  background: rgba(243, 241, 234, 0.12);
  box-shadow: 0 0 0 4px rgba(143, 178, 222, 0.14);
}

.privacy-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(243, 241, 234, 0.7);
  font-size: 0.92rem;
  line-height: 1.45;
}

.privacy-check input {
  width: 20px;
  height: 20px;
  accent-color: var(--blue);
}

.privacy-check a {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-submit {
  justify-self: start;
  border: 0;
}

.site-footer {
  padding: 0 clamp(20px, 4vw, 56px) 36px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(170px, 0.65fr));
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(36px, 6vw, 78px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.footer-logo {
  width: 132px;
  height: auto;
  display: block;
  margin-bottom: 24px;
}

.footer-brand p,
.footer-col p,
.footer-bottom {
  color: rgba(243, 241, 234, 0.62);
  line-height: 1.55;
}

.footer-brand p {
  max-width: 520px;
  font-size: 1.08rem;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col span {
  margin-bottom: 8px;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.footer-col a {
  color: rgba(243, 241, 234, 0.72);
}

.footer-col a:hover {
  color: var(--paper);
}

.footer-company p {
  margin-bottom: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  font-size: 0.92rem;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

.footer-bottom a {
  color: rgba(243, 241, 234, 0.72);
}

.footer-link-button {
  appearance: none;
  border: 0;
  padding: 0;
  color: rgba(243, 241, 234, 0.72);
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.footer-link-button:hover {
  color: var(--paper);
}

.cookie-banner {
  position: fixed;
  inset: auto clamp(16px, 3vw, 40px) clamp(16px, 3vw, 40px);
  z-index: 100;
}

.cookie-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 0.8fr);
  gap: 22px;
  align-items: end;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(243, 241, 234, 0.2);
  border-radius: 16px;
  background: rgba(5, 13, 46, 0.96);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(18px);
}

.cookie-copy h2 {
  max-width: none;
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.cookie-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(243, 241, 234, 0.72);
  line-height: 1.55;
}

.cookie-copy a {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-options {
  display: grid;
  gap: 10px;
}

.cookie-toggle {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(243, 241, 234, 0.14);
  border-radius: 10px;
  background: rgba(243, 241, 234, 0.06);
}

.cookie-toggle input {
  width: 20px;
  height: 20px;
  accent-color: var(--blue);
}

.cookie-toggle span {
  color: var(--paper);
  font-weight: 850;
}

.cookie-toggle small {
  grid-column: 2;
  color: rgba(243, 241, 234, 0.58);
}

.cookie-toggle-disabled {
  opacity: 0.78;
}

.cookie-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-actions .btn-ghost {
  color: var(--paper);
  background: rgba(243, 241, 234, 0.08);
  border-color: rgba(243, 241, 234, 0.22);
}

.cookie-actions .btn-ghost:hover {
  background: rgba(243, 241, 234, 0.14);
}

.policy-main {
  padding: 150px clamp(20px, 4vw, 56px) 80px;
}

.policy-hero {
  max-width: 1100px;
  margin-bottom: 60px;
}

.policy-hero h1 {
  max-width: 9ch;
  font-size: clamp(4rem, 10vw, 10rem);
}

.policy-hero p {
  max-width: 760px;
  color: rgba(243, 241, 234, 0.72);
  font-size: clamp(1.05rem, 1.3vw, 1.28rem);
  line-height: 1.6;
}

.policy-updated {
  font-family: var(--mono);
  text-transform: uppercase;
}

.policy-content {
  display: grid;
  gap: 18px;
  max-width: 1040px;
}

.policy-content article {
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(243, 241, 234, 0.05);
}

.policy-content h2 {
  margin-bottom: 14px;
  font-size: clamp(1.5rem, 2.4vw, 2.6rem);
  line-height: 1.05;
}

.policy-content p {
  color: rgba(243, 241, 234, 0.72);
  line-height: 1.62;
}

.policy-content a {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.project-page .site-header {
  position: absolute;
}

.project-hero {
  min-height: 72svh;
  display: grid;
  align-content: end;
  padding: 140px clamp(20px, 4vw, 56px) 70px;
}

.project-hero h1 {
  max-width: 9ch;
  font-size: clamp(5rem, 12vw, 13rem);
}

.project-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 18px;
  padding: 0 clamp(20px, 4vw, 56px) 120px;
}

.project-detail-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.project-facts {
  display: grid;
  align-content: end;
  gap: 12px;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(243, 241, 234, 0.07);
}

.project-facts p {
  margin: 0;
  color: rgba(243, 241, 234, 0.72);
  line-height: 1.5;
}

.project-facts strong {
  display: block;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.project-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0 clamp(20px, 4vw, 56px) 80px;
}

.project-content article {
  min-height: 420px;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(243, 241, 234, 0.07);
}

.project-content h2 {
  font-size: clamp(2.4rem, 4vw, 5rem);
}

.project-content p,
.project-content li {
  color: rgba(243, 241, 234, 0.72);
  font-size: 1.08rem;
  line-height: 1.65;
}

.project-content ul {
  display: grid;
  gap: 12px;
  padding-left: 20px;
}

.project-next {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 0 clamp(20px, 4vw, 56px) 70px;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

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

@keyframes spin {
  to {
    rotate: 360deg;
  }
}

@keyframes stageDrift {
  from {
    transform: translate3d(-8px, 10px, 0) rotate(-1deg);
    opacity: 0.62;
  }
  to {
    transform: translate3d(10px, -8px, 0) rotate(1deg);
    opacity: 0.95;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.48;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .hero,
  .systems-section,
  .case-section,
  .contact-shell,
  .footer-main,
  .project-detail-grid,
  .project-content {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 520px;
  }

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

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

  .project-card-featured {
    grid-column: span 1;
  }

  .case-row {
    grid-template-columns: 64px 1fr;
  }

  .case-row p {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .cursor {
    display: none;
  }

  .site-header {
    position: absolute;
  }

  .nav {
    display: none;
  }

  .hero {
    padding-top: 110px;
    padding-bottom: 72px;
    gap: 34px;
  }

  h1 {
    width: min(330px, calc(100vw - 40px));
    max-width: min(330px, calc(100vw - 40px));
    font-size: clamp(2.5rem, 10vw, 2.9rem);
    line-height: 0.98;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .project-hero {
    min-height: 62svh;
    padding: 120px 20px 48px;
  }

  .project-hero h1 {
    width: min(350px, calc(100vw - 40px));
    max-width: min(350px, calc(100vw - 40px));
    font-size: clamp(3.4rem, 16vw, 4.8rem);
    line-height: 0.95;
  }

  .project-detail-grid,
  .project-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .project-detail-visual {
    min-height: 420px;
  }

  .lead {
    width: min(330px, calc(100vw - 40px));
    max-width: min(330px, calc(100vw - 40px));
    font-size: 0.98rem;
  }

  .hero-stage {
    min-height: auto;
    display: grid;
    gap: 12px;
    perspective: none;
  }

  .hero-stage::before,
  .hero-stage::after {
    display: none;
  }

  .stage-card {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: auto;
    padding: 18px;
    border-radius: 12px;
  }

  .stage-card-a,
  .stage-card-b,
  .stage-card-c,
  .stage-card-d {
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
  }

  .stage-card strong {
    margin: 26px 0 10px;
    font-size: 1.55rem;
  }

  .stage-card p {
    font-size: 0.95rem;
  }

  .stage-card-d {
    width: 100%;
  }

  .orbital {
    display: none;
  }

  .section {
    padding: 82px 20px;
  }

  .logo-strip {
    padding: 58px 0;
  }

  .logo-strip-head {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0 20px 24px;
  }

  .logo-strip-head .eyebrow {
    margin-bottom: 8px;
  }

  .logo-strip-head h2 {
    max-width: 300px;
    font-size: clamp(1.82rem, 9vw, 2.55rem);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .logo-track {
    gap: 10px;
  }

  .logo-track span {
    min-width: 172px;
    height: 74px;
    padding: 0 18px;
    font-size: 0.76rem;
  }

  .scroll-story {
    height: auto;
  }

  .scroll-pin {
    position: relative;
    display: block;
    height: auto;
    min-height: auto;
    padding: 82px 20px;
  }

  .story-screen {
    position: relative;
    width: calc(100vw - 40px);
    height: 390px;
    top: auto;
    transform: none;
  }

  .story-img {
    border-radius: 10px;
  }

  .story-img-a {
    left: 4%;
    top: 7%;
    width: 66%;
    height: 38%;
  }

  .story-img-b {
    right: 4%;
    top: 28%;
    width: 58%;
    height: 30%;
  }

  .story-img-c {
    left: 7%;
    bottom: 10%;
    width: 52%;
    height: 30%;
  }

  .story-img-d {
    right: 6%;
    bottom: 4%;
    width: 50%;
    height: 28%;
  }

  .story-copy {
    margin-top: 16px;
    opacity: 1;
    transform: none;
    padding: 24px;
  }

  .story-copy h2 {
    font-size: clamp(1.9rem, 9.4vw, 2.55rem);
    line-height: 1;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-card-featured {
    grid-column: span 1;
  }

  .project-card-featured .project-visual {
    height: 330px;
  }

  .project-card {
    min-height: 500px;
  }

  .archive-grid {
    grid-template-columns: 1fr;
  }

  .case-section-head {
    margin-bottom: 28px;
  }

  .case-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 30px 0;
  }

  .case-row p {
    grid-column: auto;
  }

  .case-row h3 {
    font-size: clamp(2.2rem, 12vw, 3.7rem);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-direct a {
    font-size: clamp(1.35rem, 8vw, 2.3rem);
  }

  .footer-bottom {
    display: grid;
  }

  .footer-bottom div {
    flex-wrap: wrap;
  }

  .cookie-banner {
    inset: auto 12px 12px;
  }

  .cookie-panel {
    grid-template-columns: 1fr;
    max-height: calc(100svh - 24px);
    overflow: auto;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .policy-main {
    padding: 110px 20px 56px;
  }

  .policy-hero h1 {
    width: min(330px, calc(100vw - 40px));
    max-width: min(330px, calc(100vw - 40px));
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

  .system-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

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