@font-face {
  font-family: 'DM Sans';
  src: url('/assets/fonts/dm-sans-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('/assets/fonts/jetbrains-mono-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #0b0b0d;
  --surface: #111113;
  --surface-raised: #171719;
  --line: #28282c;
  --text: #f3f2ef;
  --muted: #a3a2a8;
  --subtle: #7e7c84;
  --accent: #e8dcc4;
  --accent-bright: #f6efdf;
  --mono: 'JetBrains Mono', monospace;
  --header-height: 88px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
::selection {
  color: #101010;
  background: #f0e7d5;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button:disabled {
  cursor: default;
}
button,
svg {
  flex-shrink: 0;
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
  border-radius: 3px;
}
button {
  border: 0;
}
img,
svg {
  display: block;
  max-width: 100%;
}
figure,
p,
h1,
h2,
h3,
h4 {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-weight: 650;
  line-height: 1.15;
}
button[hidden],
[hidden] {
  display: none !important;
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.container {
  width: min(1240px, calc(100% - 112px));
  margin-inline: auto;
}
.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mono,
.eyebrow,
.small-label {
  font-family: var(--mono);
}
.accent-text {
  color: var(--accent);
}
.muted-heading {
  color: var(--muted);
}
.eyebrow {
  font-size: 11px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 1.6px;
}
.status-dot {
  display: inline-block;
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px #e8dcc440;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  min-height: 51px;
  padding: 13px 21px;
  border: 1px solid #f0e7d5;
  border-radius: 6px;
  background: var(--accent);
  color: #1b1914;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.4;
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #f6efdf;
  box-shadow: 0 4px 28px #e8dcc420;
  transform: translateY(-2px);
}
.button .icon {
  width: 18px;
  height: 18px;
  stroke-width: 1.9;
}
.button-small {
  min-height: 41px;
  padding: 9px 15px;
  font-size: 13px;
  gap: 21px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s;
}
.text-link:hover {
  color: var(--accent);
}
.text-link .icon {
  width: 17px;
  height: 17px;
  transition: transform 0.2s;
}
.text-link:hover .icon {
  transform: translateX(3px);
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 22px;
  color: #181611;
  background: var(--accent);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: #0b0b0ded;
  border-bottom: 1px solid #ffffff08;
  backdrop-filter: blur(18px);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 36px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-symbol {
  width: 37px;
  height: 37px;
  color: var(--accent);
}
.brand-name {
  display: flex;
  flex-direction: column;
  font-size: 28px;
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: -1px;
}
.brand-name > span {
  margin-top: 7px;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.9px;
}
.desktop-nav {
  display: flex;
  gap: 31px;
  align-items: center;
  margin-left: auto;
}
.desktop-nav > a {
  padding: 10px 0;
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}
.desktop-nav > a:hover,
.desktop-nav > a[aria-current='location'] {
  color: var(--text);
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.menu-toggle > span {
  display: block;
  width: 19px;
  height: 1px;
  background: var(--text);
  transition: transform 0.2s;
}
.menu-toggle[aria-expanded='true'] > span:first-child {
  transform: translateY(4px) rotate(45deg);
}
.menu-toggle[aria-expanded='true'] > span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* The factory engine: a native vector illustration. */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 44%, #bcb09a0c, transparent 50%),
    radial-gradient(ellipse at 12% 6%, #e8dcc408, transparent 45%);
}
.hero-grid {
  position: absolute;
  z-index: -1;
  inset: 0 0 0 45%;
  background-image:
    linear-gradient(#b6ad9c06 1px, transparent 1px),
    linear-gradient(90deg, #b6ad9c06 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse at 60% 50%, black, transparent 70%);
}
.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  min-height: 678px;
  padding-top: 55px;
  padding-bottom: 56px;
  gap: 5px;
}
.hero-copy {
  z-index: 2;
  position: relative;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #ded2bb;
  margin-bottom: 28px;
  font-size: 10px;
  letter-spacing: 1.65px;
}
h1 {
  font-size: clamp(48px, 5.15vw, 75px);
  line-height: 1.065;
  letter-spacing: -3.7px;
  font-weight: 650;
}
h1 .accent-text {
  white-space: nowrap;
}
.hero-description {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  margin-top: 27px;
  letter-spacing: -0.15px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}
.hero-actions .text-link {
  font-size: 12px;
  gap: 10px;
}
.hero-footnote {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  font-size: 11px;
  color: var(--subtle);
}
.hero-footnote > span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #87838a;
}
.factory-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1.04;
  min-width: 0;
  isolation: isolate;
  transform: translate(12px, 2px);
}
.factory-engine {
  width: 110%;
  max-width: none;
  position: absolute;
  top: 0;
  left: -5%;
}
.visual-orbit {
  position: absolute;
  border: 1px solid #ffffff03;
  border-radius: 50%;
  z-index: -1;
  top: 15%;
  left: 15%;
  width: 70%;
  height: 70%;
}
.orbit-two {
  top: 6%;
  left: 6%;
  width: 88%;
  height: 88%;
  border-style: dashed;
  border-color: #ffffff04;
}
.visual-coordinate {
  position: absolute;
  font-family: var(--mono);
  color: #827e76;
  letter-spacing: 1.4px;
  font-size: 8px;
}
.coordinate-top {
  top: 5%;
  left: 32%;
}
.floating-core {
  animation: levitate 6s ease-in-out infinite;
}
.circuit-signals {
  stroke-dasharray: 12 230;
  animation: signal 10s linear infinite;
  opacity: 0.6;
}
.engine-label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: linear-gradient(120deg, #202024f7, #151517f7);
  border: 1px solid #474047;
  border-radius: 7px;
  box-shadow: 0 10px 40px #0005;
  white-space: nowrap;
  font-size: 10px;
  color: #dad5d1;
}
.engine-label small {
  display: block;
  margin-bottom: 3px;
  color: #aaa393;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 1px;
  font-weight: 500;
}
.label-icon {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 1px solid #6d655380;
  border-radius: 5px;
  background: #e8dcc40a;
  color: #eee3ce;
}
.label-icon .icon {
  width: 17px;
  height: 17px;
  stroke-width: 1.2;
}
.label-dot {
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  margin-left: 5px;
}
.label-ai {
  top: 15%;
  left: 0;
}
.label-tech {
  top: 38%;
  right: -1%;
}
.label-creative {
  left: 0;
  bottom: 13%;
}
.visual-caption {
  position: absolute;
  bottom: 1%;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 8px;
  color: #918b80;
  letter-spacing: 1.1px;
}
.visual-caption .status-dot {
  width: 4px;
  height: 4px;
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 23px;
  border-top: 1px solid var(--line);
  color: var(--subtle);
  font-size: 10px;
  letter-spacing: 0.9px;
}
.hero-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0;
}
.hero-location .icon {
  width: 14px;
  height: 14px;
}
.tiny-plus {
  font-family: var(--mono);
  font-size: 18px;
  color: var(--accent);
  margin-left: 34px;
}

/* Services */
.section {
  padding-block: 105px;
}
.services-section {
  background: var(--surface);
  border-block: 1px solid #202024;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 55px;
  margin-bottom: 43px;
}
.section-index {
  color: #bcb8b3;
  margin-bottom: 20px;
  font-size: 10px;
  letter-spacing: 1.45px;
}
.section-index > span {
  color: var(--accent);
  margin-right: 11px;
}
h2 {
  font-size: clamp(32px, 3.2vw, 46px);
  letter-spacing: -1.7px;
  line-height: 1.13;
}
.section-intro {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  max-width: 337px;
  padding-bottom: 3px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 25px 23px 69px;
  border: 1px solid #303035;
  border-radius: 8px;
  background: linear-gradient(135deg, #1c1c1f80, #151517);
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s;
}
.service-card:hover,
.service-card:focus-within {
  border-color: #756b56;
  background: #1e1d1a;
  transform: translateY(-4px);
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 31px;
}
.service-icon {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  background: #e8dcc409;
  color: var(--accent);
  border: 1px solid #aaa08838;
  border-radius: 7px;
}
.service-icon svg {
  width: 27px;
  height: 27px;
  stroke: currentColor;
  stroke-width: 1.3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card-number {
  font-size: 10px;
  color: #8e8a91;
}
.service-card h3 {
  font-size: 18px;
  letter-spacing: -0.5px;
  line-height: 1.3;
  margin-bottom: 15px;
}
.service-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
  margin-bottom: 25px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  font-family: var(--mono);
  font-size: 8px;
  color: #bbb4af;
  letter-spacing: -0.1px;
}
.service-tags > span {
  padding: 4px 7px;
  border: 1px solid #393437;
  background: #ffffff03;
  border-radius: 3px;
}
.card-link {
  position: absolute;
  bottom: 18px;
  right: 17px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  border: 1px solid #383438;
  color: #a49c97;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.card-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.card-link .icon {
  width: 17px;
  height: 17px;
}
.idea-note {
  display: flex;
  align-items: center;
  gap: 23px;
  padding: 29px 2px 0;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}
.idea-note-icon {
  width: 38px;
  height: 38px;
  color: var(--accent);
}
.idea-note-icon svg {
  width: 33px;
  height: 33px;
  stroke: currentColor;
  stroke-width: 1;
  fill: none;
}
.idea-note p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
}
.idea-note strong {
  font-weight: 500;
  color: #d6d2ce;
}
.idea-note .text-link {
  margin-left: auto;
  white-space: nowrap;
  font-size: 12px;
}

/* About & method */
.about-section {
  padding-block: 117px 90px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: center;
}
.about-statement h2 {
  font-size: clamp(37px, 3.9vw, 55px);
  line-height: 1.13;
  letter-spacing: -2px;
}
.statement-signature {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 31px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.5px;
  color: #929097;
}
.signature-line {
  width: 30px;
  height: 1px;
  background: var(--accent);
}
.small-label {
  color: var(--accent);
  font-size: 9px;
  letter-spacing: 1.5px;
}
.about-copy {
  padding-top: 21px;
}
.about-copy p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  margin-top: 19px;
}
.about-copy .about-lead {
  color: #dedbd7;
  font-size: 23px;
  letter-spacing: -0.5px;
  line-height: 1.5;
  margin-top: 15px;
  margin-bottom: 21px;
}
.about-copy strong {
  color: #eeeae6;
  font-weight: 550;
}
.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  margin-top: 26px;
  font-size: 10px;
  color: #cac5bf;
}
.about-values > span {
  display: flex;
  gap: 8px;
  align-items: center;
}
.about-values i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  padding-top: 29px;
  border-top: 1px solid var(--line);
  gap: 24px;
}
.process-step {
  display: flex;
  align-items: center;
  gap: 13px;
}
.process-number {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  align-self: flex-start;
  padding-top: 3px;
}
.process-step h3 {
  font-size: 14px;
  font-weight: 550;
}
.process-step p {
  margin-top: 6px;
  font-size: 10px;
  color: var(--subtle);
}
.process-step > .icon {
  width: 15px;
  height: 15px;
  color: #555158;
  margin-left: auto;
}
.process-end {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-left: auto;
}

/* Two ways of creating */
.model-section {
  background: var(--surface);
  border-block: 1px solid #202024;
}
.model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 23px;
}
.model-card {
  position: relative;
  overflow: hidden;
  padding: 35px 38px 36px;
  border: 1px solid #343135;
  border-radius: 9px;
  background: #151517;
}
.model-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.model-card-top > .icon {
  color: #a9a09b;
}
.pill {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 1.4px;
  border: 1px solid #454137;
  border-radius: 4px;
  padding: 6px 9px;
  color: #cfc6b5;
}
.model-card h3 {
  font-size: 49px;
  letter-spacing: -2px;
  font-weight: 650;
}
.model-card > p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 455px;
  margin-top: 16px;
}
.model-card .model-subtitle {
  font-size: 17px;
  letter-spacing: -0.2px;
  color: #e0dbd6;
  margin-top: 14px;
  margin-bottom: 21px;
}
.b2b-card {
  background: radial-gradient(ellipse at 5% 0, #e8dcc408, transparent 65%), #151517;
}
.b2b-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-block: 30px 32px;
}
.b2b-tags > span {
  font-size: 10px;
  padding: 5px 10px;
  border: 1px solid #353337;
  border-radius: 4px;
  color: #b1aaa4;
}
.b2b-card > .text-link {
  font-size: 12px;
  color: #e4d8c0;
}
.studios-card {
  background: radial-gradient(ellipse at 100% 100%, #e8dcc40a, transparent 70%), #151517;
}
.brain-hit {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid #383034;
  margin-top: 29px;
  padding-top: 24px;
}
.brain-hit-art {
  position: relative;
  isolation: isolate;
  width: 123px;
  height: 122px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #e8dcc4;
  border-radius: 5px;
  color: #242119;
  transform: rotate(-3deg);
}
.brain-hit-art::before {
  content: '';
  position: absolute;
  inset: -80%;
  z-index: -1;
  background: repeating-conic-gradient(from 8deg, #1716100d 0 10deg, transparent 10deg 20deg);
}
.brain-hit-art > span {
  position: relative;
  font-size: 31px;
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -2px;
  transform: rotate(-5deg);
}
.brain-hit-art > span > span {
  font-size: 50px;
  letter-spacing: -3px;
}
.brain-hit-art i {
  position: absolute;
  font-size: 37px;
  font-style: normal;
  right: -19px;
  bottom: -4px;
  color: #fff8e9;
  -webkit-text-stroke: 1px #242018;
}
.brain-hit-copy .small-label {
  font-size: 7px;
  letter-spacing: 1px;
}
.brain-hit-copy h4 {
  font-size: 19px;
  margin-top: 7px;
  letter-spacing: -0.3px;
}
.brain-hit-copy p {
  font-size: 11px;
  line-height: 1.75;
  color: var(--muted);
  margin-top: 7px;
  max-width: 238px;
}
.brain-platforms {
  display: block;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.4px;
  color: #d8d0c1;
  margin-top: 13px;
}
.brain-platforms > span {
  color: var(--accent);
  padding-inline: 8px;
}

/* Location */
.location-section {
  padding-block: 60px;
  border-bottom: 1px solid #242126;
  background: radial-gradient(ellipse at 75% 55%, #e8dcc403, transparent 50%);
}
.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.location-copy {
  padding-block: 25px;
}
.location-copy h2 {
  font-size: 43px;
  margin-bottom: 24px;
}
.location-copy > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 400px;
  margin-top: 15px;
}
.location-tag {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.8px;
  color: #c7c0b3;
  flex-wrap: wrap;
}
.location-tag > span:not(.status-dot) {
  color: #656055;
}
.globe-art {
  position: relative;
  max-width: 470px;
  width: 100%;
  justify-self: center;
}
.globe-art > svg {
  width: 100%;
}
.globe-caption {
  display: block;
  text-align: center;
  font-size: 8px;
  letter-spacing: 1.1px;
  color: #8d877d;
  margin-top: -12px;
}

/* Contact */
.contact-section {
  padding-block: 110px;
  background: radial-gradient(ellipse at 22% 70%, #c4b69a10, transparent 55%);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
}
.contact-copy h2 {
  font-size: clamp(38px, 4vw, 57px);
  letter-spacing: -2.3px;
  line-height: 1.1;
  margin-bottom: 25px;
}
.contact-copy > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 422px;
  margin-top: 14px;
}
.contact-copy > p.contact-last-line {
  color: #d8d1c4;
  font-size: 13px;
}
.contact-card {
  padding: 30px 32px 0;
  border: 1px solid #4c4538;
  border-radius: 9px;
  background: linear-gradient(125deg, #201e19, #141415);
  box-shadow: 0 25px 80px #0002;
}
.contact-card-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 21px;
  color: var(--accent);
}
.contact-card-icon > svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-card h3 {
  font-size: 32px;
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.contact-card > p:not(.copy-status) {
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
}
.contact-button {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 25px;
  font-size: 13px;
}
.email-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 13px;
  font-size: 12px;
  color: #c5bdaf;
}
.email-row > a {
  padding-block: 6px;
}
.email-row > a:hover {
  color: var(--accent);
}
.copy-email {
  display: grid;
  place-items: center;
  background: transparent;
  padding: 6px;
  border-radius: 4px;
  min-width: 32px;
  min-height: 32px;
  color: #a69f91;
}
.copy-email:hover {
  color: var(--accent);
  background: #ffffff06;
}
.copy-email .icon {
  width: 14px;
  height: 14px;
}
.copy-status {
  font-size: 10px;
  text-align: center;
  color: #d8ccb3;
  min-height: 19px;
  line-height: 1.5;
}
.contact-address {
  display: flex;
  align-items: center;
  gap: 7px;
  border-top: 1px solid #37332a;
  margin-top: 12px;
  padding-block: 17px;
  font-size: 10px;
  color: #b6ae9f;
}
.contact-address .icon {
  width: 14px;
  height: 14px;
}
.contact-address > span {
  margin-left: auto;
  color: #999183;
  font-size: 9px;
}

/* Footer */
.site-footer {
  border-top: 1px solid #272226;
  background: #101011;
  padding-top: 43px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 42px;
  padding-bottom: 35px;
}
.footer-top .brand-symbol {
  width: 30px;
  height: 30px;
}
.footer-top .brand-name {
  font-size: 24px;
}
.footer-top .brand-name > span {
  font-size: 6px;
  letter-spacing: 1.65px;
  margin-top: 6px;
}
.footer-top > p {
  font-size: 11px;
  line-height: 1.9;
  color: #b3acaa;
}
.footer-top > p > span {
  color: var(--subtle);
}
.back-to-top {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-left: auto;
  font-size: 11px;
  color: #c2bbaf;
}
.back-to-top:hover {
  color: var(--accent);
}
.back-to-top .icon {
  width: 16px;
  height: 16px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-block: 20px;
  border-top: 1px solid #282429;
  color: #8c8581;
  font-size: 9px;
}
.social-platforms {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
  font-size: 10px;
}
.footer-origin {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 1px;
}
.footer-origin .status-dot {
  width: 4px;
  height: 4px;
}

/* Motion enhances an otherwise fully visible, usable page. */
.reveal.is-pending {
  opacity: 0;
  transform: translateY(18px);
}
.reveal {
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.service-card.reveal {
  transition:
    opacity 0.65s ease,
    transform 0.3s ease,
    border-color 0.25s,
    background 0.25s;
}
.services-grid > .reveal:nth-child(2) {
  transition-delay: 50ms;
}
.services-grid > .reveal:nth-child(3) {
  transition-delay: 100ms;
}
.services-grid > .reveal:nth-child(4) {
  transition-delay: 150ms;
}
@keyframes levitate {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}
@keyframes signal {
  to {
    stroke-dashoffset: -484;
  }
}

@media (min-width: 1550px) {
  .hero-layout {
    min-height: 720px;
  }
  .factory-visual {
    transform: translate(8px, 2px);
  }
  h1 {
    font-size: 79px;
  }
}
@media (max-width: 1180px) {
  .container {
    width: calc(100% - 72px);
  }
  .header-inner {
    gap: 27px;
  }
  .desktop-nav {
    gap: 24px;
  }
  h1 {
    font-size: clamp(48px, 5.3vw, 65px);
    letter-spacing: -3px;
  }
  .hero-layout {
    min-height: 620px;
    grid-template-columns: 1.15fr 1fr;
  }
  .hero-actions {
    gap: 17px;
  }
  .hero-actions .button {
    padding-inline: 16px;
    font-size: 12px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .hero-description {
    font-size: 15px;
  }
  .engine-label {
    padding: 9px 10px;
    font-size: 9px;
    gap: 8px;
  }
  .label-icon {
    width: 26px;
    height: 26px;
  }
  .engine-label small {
    font-size: 6px;
  }
  .label-tech {
    right: -2%;
  }
  .label-creative {
    left: 1%;
    bottom: 12%;
  }
  .visual-caption {
    font-size: 6.5px;
  }
  .service-card {
    padding: 22px 18px 65px;
  }
  .service-card h3 {
    font-size: 16px;
  }
  .service-card p {
    font-size: 12px;
  }
  .service-tags {
    font-size: 7px;
    gap: 5px;
  }
  .about-grid {
    gap: 65px;
  }
  .model-card {
    padding: 30px;
  }
  .model-card h3 {
    font-size: 43px;
  }
  .contact-layout {
    gap: 60px;
  }
  .section-intro {
    max-width: 300px;
  }
  .process {
    gap: 18px;
  }
  .process-step {
    gap: 8px;
  }
  .process-step p {
    font-size: 9px;
  }
}
@media (max-width: 960px) {
  :root {
    --header-height: 78px;
  }
  .container {
    width: calc(100% - 56px);
  }
  .header-inner {
    gap: 22px;
  }
  .desktop-nav {
    gap: 19px;
  }
  .desktop-nav > a {
    font-size: 12px;
  }
  .brand-name {
    font-size: 25px;
  }
  .brand-symbol {
    width: 33px;
  }
  .brand-name > span {
    font-size: 7px;
    letter-spacing: 1.6px;
  }
  .header-cta {
    font-size: 11px;
    padding-inline: 12px;
    gap: 14px;
  }
  .hero-layout {
    grid-template-columns: 1.2fr 1fr;
    min-height: 585px;
    padding-block: 54px;
  }
  h1 {
    font-size: clamp(44px, 5.6vw, 54px);
    letter-spacing: -2.6px;
  }
  .hero-eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 19px;
    margin-top: 23px;
  }
  .hero-footnote {
    font-size: 9px;
    margin-top: 22px;
  }
  .engine-label {
    padding: 8px;
    gap: 6px;
    font-size: 8px;
  }
  .engine-label small {
    font-size: 5.5px;
    letter-spacing: 0.6px;
  }
  .label-icon {
    width: 23px;
    height: 23px;
  }
  .label-icon .icon {
    width: 14px;
    height: 14px;
  }
  .label-dot {
    display: none;
  }
  .label-tech {
    right: -3%;
    top: 38%;
  }
  .label-ai {
    left: -1%;
    top: 15%;
  }
  .label-creative {
    left: -3%;
    bottom: 9%;
  }
  .coordinate-top {
    font-size: 6px;
  }
  .visual-caption {
    font-size: 5.5px;
    letter-spacing: 0.6px;
    bottom: -3%;
  }
  .hero-bottom {
    font-size: 8px;
    letter-spacing: 0.4px;
  }
  .hero-location {
    font-size: 9px;
  }
  .tiny-plus {
    margin-left: 14px;
  }
  .section {
    padding-block: 78px;
  }
  .section-heading {
    gap: 35px;
  }
  .section-intro {
    max-width: 265px;
    font-size: 12px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .service-card {
    padding: 25px 24px 58px;
  }
  .service-card h3 {
    font-size: 20px;
  }
  .service-card p {
    font-size: 13px;
  }
  .service-tags {
    font-size: 8px;
  }
  .card-top {
    margin-bottom: 24px;
  }
  .idea-note {
    gap: 15px;
  }
  .idea-note p {
    font-size: 10px;
  }
  .idea-note .text-link {
    font-size: 10px;
  }
  .about-grid {
    gap: 45px;
  }
  .about-statement h2 {
    font-size: 38px;
  }
  .about-copy p {
    font-size: 12px;
  }
  .about-copy .about-lead {
    font-size: 20px;
  }
  .statement-signature {
    font-size: 6px;
    gap: 10px;
  }
  .about-values {
    gap: 14px;
    font-size: 8px;
  }
  .process {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 55px;
    margin-top: 55px;
  }
  .process-step p {
    font-size: 10px;
  }
  .process-step {
    gap: 15px;
  }
  .process-step:nth-child(2) > .icon {
    visibility: hidden;
  }
  .model-card {
    padding: 25px;
  }
  .model-card h3 {
    font-size: 36px;
  }
  .model-card .model-subtitle {
    font-size: 14px;
  }
  .model-card > p {
    font-size: 12px;
  }
  .brain-hit {
    gap: 14px;
  }
  .brain-hit-art {
    width: 90px;
    height: 103px;
  }
  .brain-hit-art > span {
    font-size: 25px;
  }
  .brain-hit-art > span > span {
    font-size: 43px;
  }
  .brain-hit-art i {
    right: -10px;
    font-size: 28px;
  }
  .brain-hit-copy .small-label {
    font-size: 6px;
    letter-spacing: 0.5px;
  }
  .brain-hit-copy p {
    font-size: 10px;
  }
  .brain-hit-copy h4 {
    font-size: 17px;
  }
  .b2b-tags {
    margin-block: 25px;
  }
  .b2b-tags > span {
    font-size: 9px;
    padding-inline: 7px;
  }
  .location-layout {
    gap: 45px;
  }
  .location-copy h2 {
    font-size: 36px;
  }
  .location-copy > p:not(.eyebrow) {
    font-size: 12px;
  }
  .location-tag {
    font-size: 7px;
    gap: 10px;
  }
  .globe-caption {
    font-size: 6px;
  }
  .contact-layout {
    gap: 42px;
    grid-template-columns: 1.1fr 1fr;
  }
  .contact-copy h2 {
    font-size: 41px;
  }
  .contact-copy > p:not(.eyebrow) {
    font-size: 12px;
  }
  .contact-copy .section-index {
    font-size: 7px;
    letter-spacing: 1px;
  }
  .contact-card {
    padding: 25px 23px 0;
  }
  .contact-button {
    font-size: 11px;
    padding-inline: 14px;
  }
  .contact-address {
    font-size: 8px;
  }
  .contact-address > span {
    font-size: 7px;
  }
  .email-row {
    font-size: 10px;
  }
  .footer-origin {
    font-size: 6px;
  }
  .footer-top {
    gap: 30px;
  }
  .footer-top > p {
    font-size: 10px;
  }
  .social-platforms {
    font-size: 9px;
    gap: 13px;
  }
}
@media (max-width: 700px) {
  :root {
    --header-height: 73px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    gap: 14px;
  }
  .desktop-nav {
    display: none;
  }
  .header-cta {
    margin-left: auto;
    font-size: 11px;
    padding: 8px 12px;
    min-height: 38px;
    gap: 15px;
  }
  .menu-toggle {
    display: flex;
    width: 38px;
    height: 38px;
  }
  .brand-symbol {
    width: 29px;
    height: 32px;
  }
  .brand-name {
    font-size: 23px;
  }
  .brand-name > span {
    font-size: 6px;
    letter-spacing: 1.5px;
    margin-top: 6px;
  }
  .brand {
    gap: 6px;
  }
  .mobile-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    height: calc(100dvh - var(--header-height));
    background: #101011;
    overflow-y: auto;
    padding: 25px 25px 55px;
    border-top: 1px solid var(--line);
  }
  .mobile-nav > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -0.5px;
  }
  .mobile-nav > a > span {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--accent);
  }
  .mobile-nav > a:last-child {
    color: var(--accent);
  }
  .hero-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-block: 49px 23px;
    min-height: 0;
    align-items: stretch;
  }
  .hero-eyebrow {
    font-size: 8px;
    letter-spacing: 1.2px;
    margin-bottom: 23px;
  }
  h1 {
    font-size: clamp(42px, 8.8vw, 62px);
    letter-spacing: -2.5px;
    line-height: 1.08;
  }
  .hero-description {
    font-size: 14px;
    line-height: 1.8;
    margin-top: 23px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 22px;
    margin-top: 25px;
  }
  .hero-actions .button {
    font-size: 11px;
    min-height: 47px;
    padding-inline: 14px;
    gap: 15px;
  }
  .hero-actions .text-link {
    font-size: 10px;
    gap: 7px;
  }
  .hero-actions .text-link > .icon {
    width: 14px;
  }
  .hero-footnote {
    font-size: 9px;
    margin-top: 21px;
  }
  .factory-visual {
    width: min(100%, 430px);
    align-self: center;
    margin-top: 19px;
    transform: none;
    aspect-ratio: 1.15;
  }
  .factory-engine {
    width: 100%;
    left: 0;
    top: -2%;
  }
  .coordinate-top {
    top: 6%;
    left: 37%;
    font-size: 6px;
  }
  .label-ai {
    top: 16%;
    left: 1%;
  }
  .label-tech {
    right: 0;
    top: 44%;
  }
  .label-creative {
    left: 2%;
    bottom: 10%;
  }
  .engine-label {
    padding: 9px 10px;
    gap: 8px;
    font-size: 8px;
  }
  .engine-label small {
    font-size: 5.5px;
  }
  .label-icon {
    width: 25px;
    height: 25px;
  }
  .visual-caption {
    bottom: -3%;
    font-size: 6px;
    letter-spacing: 0.9px;
  }
  .visual-orbit {
    top: 10%;
  }
  .hero-bottom {
    margin-top: 19px;
    padding-block: 18px;
    font-size: 7px;
    letter-spacing: 0.25px;
  }
  .hero-bottom > .mono {
    max-width: 210px;
    line-height: 1.9;
  }
  .hero-location {
    max-width: 119px;
    line-height: 1.6;
    gap: 5px;
    font-size: 8px;
  }
  .tiny-plus {
    display: none;
  }
  .hero-location > .icon {
    width: 12px;
    flex-shrink: 0;
  }
  .section {
    padding-block: 66px;
  }
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 29px;
  }
  .section-index {
    font-size: 8px;
    letter-spacing: 1.25px;
    margin-bottom: 16px;
  }
  .section-index > span {
    margin-right: 7px;
  }
  h2 {
    font-size: 34px;
    letter-spacing: -1.3px;
  }
  .section-intro {
    font-size: 13px;
    max-width: 450px;
    line-height: 1.8;
  }
  .services-grid {
    gap: 12px;
  }
  .service-card {
    padding: 20px 17px 61px;
  }
  .card-top {
    margin-bottom: 25px;
  }
  .service-icon {
    width: 37px;
    height: 37px;
  }
  .service-icon svg {
    width: 24px;
    height: 24px;
  }
  .card-number {
    font-size: 8px;
  }
  .service-card h3 {
    font-size: 17px;
    margin-bottom: 12px;
  }
  .service-card p {
    font-size: 12px;
    line-height: 1.75;
    margin-bottom: 20px;
  }
  .service-tags {
    font-size: 7px;
    gap: 5px;
  }
  .service-tags > span {
    padding: 3px 6px;
  }
  .card-link {
    right: 13px;
    bottom: 14px;
  }
  .idea-note {
    position: relative;
    align-items: flex-start;
    gap: 13px;
    padding-top: 23px;
    flex-wrap: wrap;
    margin-top: 25px;
  }
  .idea-note-icon {
    width: 27px;
    height: 27px;
  }
  .idea-note-icon svg {
    width: 26px;
    height: 26px;
  }
  .idea-note p {
    flex: 1;
    font-size: 11px;
  }
  .idea-note p br {
    display: none;
  }
  .idea-note p strong {
    display: block;
    margin-top: 4px;
  }
  .idea-note .text-link {
    margin-left: 40px;
    font-size: 11px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .about-statement h2 {
    font-size: 43px;
    letter-spacing: -1.6px;
  }
  .statement-signature {
    font-size: 7px;
    margin-top: 23px;
  }
  .about-copy {
    padding-top: 0;
  }
  .small-label {
    font-size: 8px;
  }
  .about-copy .about-lead {
    font-size: 22px;
  }
  .about-copy p {
    font-size: 13px;
    margin-top: 16px;
  }
  .about-values {
    font-size: 9px;
    gap: 21px;
  }
  .process {
    margin-top: 37px;
    gap: 25px 24px;
    padding-top: 27px;
  }
  .process-number {
    font-size: 9px;
  }
  .process-step {
    gap: 9px;
  }
  .process-step h3 {
    font-size: 12px;
  }
  .process-step p {
    font-size: 8px;
    max-width: 132px;
    line-height: 1.6;
  }
  .process-step > .icon {
    display: none;
  }
  .process-end {
    display: none;
  }
  .model-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .model-card {
    padding: 27px;
  }
  .model-card h3 {
    font-size: 43px;
  }
  .model-card-top {
    margin-bottom: 26px;
  }
  .model-card .model-subtitle {
    font-size: 17px;
  }
  .model-card > p {
    font-size: 13px;
  }
  .b2b-tags {
    gap: 7px;
  }
  .b2b-tags > span {
    font-size: 9px;
    padding: 5px 8px;
  }
  .brain-hit {
    gap: 23px;
  }
  .brain-hit-art {
    width: 114px;
    height: 118px;
  }
  .brain-hit-art > span {
    font-size: 30px;
  }
  .brain-hit-art > span > span {
    font-size: 48px;
  }
  .brain-hit-art i {
    font-size: 35px;
  }
  .brain-hit-copy .small-label {
    font-size: 6px;
    letter-spacing: 0.6px;
  }
  .brain-hit-copy h4 {
    font-size: 20px;
  }
  .brain-hit-copy p {
    font-size: 11px;
  }
  .location-section {
    padding-block: 50px 39px;
  }
  .location-layout {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .location-copy {
    padding-block: 0;
  }
  .location-copy h2 {
    font-size: 35px;
  }
  .location-copy > p:not(.eyebrow) {
    font-size: 13px;
    max-width: 430px;
  }
  .location-tag {
    font-size: 8px;
    gap: 12px;
  }
  .globe-art {
    max-width: 330px;
  }
  .globe-caption {
    font-size: 6px;
    letter-spacing: 1px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-copy .section-index {
    font-size: 7px;
    letter-spacing: 0.9px;
  }
  .contact-copy h2 {
    font-size: 44px;
    letter-spacing: -1.8px;
  }
  .contact-copy > p:not(.eyebrow) {
    font-size: 13px;
  }
  .contact-card {
    padding: 27px 26px 0;
  }
  .contact-card h3 {
    font-size: 32px;
  }
  .contact-card > p:not(.copy-status) {
    font-size: 13px;
  }
  .contact-button {
    font-size: 13px;
    min-height: 51px;
  }
  .email-row {
    font-size: 12px;
    margin-top: 15px;
  }
  .contact-address {
    font-size: 10px;
    padding-block: 19px;
  }
  .contact-address > span {
    font-size: 9px;
  }
  .site-footer {
    padding-top: 31px;
  }
  .footer-top {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 22px 20px;
    padding-bottom: 27px;
  }
  .footer-top > .brand {
    flex: 1;
  }
  .footer-top > p {
    order: 3;
    width: 100%;
    font-size: 11px;
  }
  .back-to-top {
    font-size: 10px;
    margin-top: 5px;
    gap: 6px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 18px;
    padding-block: 22px;
    font-size: 8px;
  }
  .social-platforms {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 24px;
    font-size: 10px;
  }
  .footer-origin {
    margin-left: auto;
    font-size: 6px;
  }
}
@media (max-width: 380px) {
  .container {
    width: calc(100% - 32px);
  }
  h1 {
    font-size: clamp(34px, 10.5vw, 40px);
    letter-spacing: -2.3px;
  }
  .hero-eyebrow {
    font-size: 7px;
  }
  .hero-description {
    font-size: 12px;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-actions .button {
    font-size: 10px;
    padding-inline: 11px;
    gap: 10px;
  }
  .hero-actions .text-link {
    font-size: 9px;
    gap: 4px;
  }
  .hero-footnote {
    font-size: 8px;
  }
  .hero-bottom > .mono {
    max-width: 168px;
    font-size: 6px;
  }
  .engine-label {
    padding: 8px;
    font-size: 7px;
    gap: 6px;
  }
  .engine-label small {
    font-size: 5px;
  }
  .visual-caption {
    font-size: 5px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card h3 {
    font-size: 20px;
  }
  .service-card p {
    font-size: 13px;
  }
  .service-tags {
    font-size: 8px;
  }
  .service-card {
    padding: 23px 23px 59px;
  }
  .service-card .card-top {
    margin-bottom: 19px;
  }
  .brain-hit {
    gap: 15px;
  }
  .brain-hit-art {
    width: 92px;
    height: 103px;
  }
  .brain-hit-art > span {
    font-size: 25px;
  }
  .brain-hit-art > span > span {
    font-size: 43px;
  }
  .brain-hit-copy p {
    font-size: 10px;
  }
  .contact-copy h2 {
    font-size: 40px;
  }
  .contact-address {
    font-size: 9px;
  }
  .contact-address > span {
    font-size: 8px;
  }
  .contact-copy .section-index {
    font-size: 6px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal.is-pending {
    opacity: 1;
    transform: none;
  }
}
@media print {
  .site-header,
  .factory-visual,
  .globe-art,
  .back-to-top,
  .copy-email,
  .skip-link {
    display: none;
  }
  body {
    background: white;
    color: #111;
  }
  .section,
  .location-section,
  .contact-section {
    padding-block: 25px;
    background: white;
  }
  .container {
    width: 100%;
  }
  .hero-layout {
    min-height: 0;
    padding: 25px 0;
    display: block;
  }
  .hero-bottom {
    display: none;
  }
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 28px;
  }
  .reveal.is-pending {
    opacity: 1;
    transform: none;
  }
  .service-card,
  .model-card,
  .contact-card {
    break-inside: avoid;
    background: white;
  }
  .accent-text {
    color: #625847;
  }
  .muted-heading,
  p {
    color: #555 !important;
  }
  .section-heading {
    margin-bottom: 20px;
  }
  .contact-layout,
  .about-grid {
    gap: 30px;
  }
  .site-footer {
    background: white;
  }
  .service-tags,
  .b2b-tags {
    color: #555;
  }
}
