/* NAMI · Sora / Inter · black / white / electric cyan */
:root {
  --ink: #080808;
  --surface: #101010;
  --line: #2b2b2b;
  --paper: #f0f0ed;
  --white: #fff;
  --cyan: #00afff;
  --muted: #adadad;
  --gutter: clamp(22px, 5vw, 80px);
  --display: "Sora", sans-serif;
  --body: "Inter", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--ink);
  color: white;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
::selection {
  background: var(--cyan);
  color: var(--ink);
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
button,
input {
  border-radius: 0;
}
button {
  touch-action: manipulation;
}
img {
  display: block;
  max-width: 100%;
}
canvas {
  display: block;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
}
h2 {
  font-size: clamp(34px, 4.9vw, 74px);
  line-height: 1.13;
  letter-spacing: -0.055em;
}
h2 em {
  font-weight: 400;
  font-style: normal;
  color: var(--muted);
}
h3 {
  line-height: 1.2;
  letter-spacing: -0.035em;
}
p {
  color: var(--muted);
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 6px;
}
a,
button {
  scroll-margin-block: 100px;
}
.cyan {
  color: var(--cyan);
}
.eyebrow {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: inherit;
}
.section-pad {
  padding: clamp(84px, 10vw, 150px) var(--gutter);
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  column-gap: 32px;
  row-gap: 32px;
  margin-bottom: 70px;
}
.section-heading > .eyebrow {
  grid-column: 1/-1;
}
.section-heading h2 {
  grid-column: 1/2;
  min-width: 0;
  white-space: nowrap;
}
.section-intro {
  grid-column: 2;
  justify-self: end;
  align-self: end;
  max-width: 330px;
  font-size: 1rem;
  line-height: 1.8;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 20px;
  z-index: 100;
  background: var(--cyan);
  color: black;
  padding: 12px 20px;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.reading-progress {
  height: 3px;
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  pointer-events: none;
}
.reading-progress span {
  height: 100%;
  width: 100%;
  display: block;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
}
.site-header {
  height: 96px;
  position: fixed;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
  z-index: 50;
  gap: 40px;
  transition:
    height 0.35s,
    background 0.35s,
    border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  height: 76px;
  background: rgba(8, 8, 8, 0.96);
  border-color: var(--line);
}
.brand {
  width: 118px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-height: 44px;
}
.brand img {
  width: 118px;
  height: auto;
  max-height: 60px;
  object-fit: contain;
}
.desktop-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.desktop-nav a,
.header-contact {
  font-size: 0.875rem;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 26px;
}
.desktop-nav a {
  position: relative;
}
.desktop-nav a::after {
  content: "";
  height: 1px;
  position: absolute;
  bottom: 7px;
  left: 0;
  right: 0;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease);
}
.desktop-nav a:hover::after,
.desktop-nav a[aria-current]::after {
  transform: scaleX(1);
}
.header-contact {
  border-bottom: 1px solid #777;
  margin-left: 28px;
  font-weight: 600;
  transition: border-color 0.18s var(--ease);
}
.header-contact:hover {
  border-color: var(--cyan);
}
.header-contact span {
  font-size: 25px;
  color: var(--cyan);
  transition: transform 0.18s var(--ease);
}
.header-contact:hover span {
  transform: translate(2px, -2px);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  padding: 12px 6px;
}
.menu-toggle span {
  display: block;
  height: 1px;
  background: white;
  margin: 6px 0;
  transition: transform 0.3s;
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}
.mobile-menu {
  position: fixed;
  inset: 76px 0 0;
  background: var(--ink);
  z-index: 45;
  padding: 40px var(--gutter);
  overflow-y: auto;
}
.mobile-menu[hidden] {
  display: none;
}
.mobile-menu a {
  display: flex;
  gap: 25px;
  align-items: center;
  font-family: var(--display);
  font-size: clamp(25px, 6vw, 40px);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu small {
  font: 14px var(--body);
  color: var(--cyan);
}
.mobile-menu p {
  font-size: 13px;
  margin-top: 36px;
}
.hero-track {
  height: 145svh;
  min-height: 1080px;
}
.hero-sticky {
  position: sticky;
  top: 0;
  min-height: 740px;
  height: 100svh;
  max-height: 1200px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 130px var(--gutter) 24px;
  background: var(--ink);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  pointer-events: none;
  background-image: linear-gradient(to right, #777 1px, transparent 1px);
  background-size: calc((100% - var(--gutter) * 2) / 4) 100%;
  background-position: var(--gutter) 0;
  mask-image: linear-gradient(transparent, #000 30%, #000 70%, transparent);
}
.hero-top {
  display: flex;
  justify-content: space-between;
  position: relative;
  color: #aaa;
}
.hero-top > span:last-child {
  color: white;
}
.tiny-plus {
  display: inline-block;
  color: var(--cyan);
  margin-left: 25px;
}
.hero-composition {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 355px;
  margin: 25px 0 15px;
}
.hero-composition h1 {
  width: 100%;
  font-size: clamp(85px, 12.2vw, 190px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 600;
  position: relative;
  z-index: 2;
  transform-origin: left center;
  will-change: transform;
}
.hero-line {
  display: block;
}
.second-line {
  margin-top: 0.06em;
  white-space: nowrap;
}
.text-plus {
  color: var(--cyan);
  font-weight: 400;
}
.period {
  color: var(--cyan);
}
.hero-object {
  position: absolute;
  right: 7%;
  top: -1%;
  width: 35%;
  height: 86%;
  z-index: 3;
  pointer-events: none;
}
.hero-object canvas {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.object-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: clamp(180px, 24vw, 400px);
  line-height: 1;
  color: var(--cyan);
  transform: rotate(-18deg);
}
.hero-object.is-rendered .object-fallback {
  visibility: hidden;
}
.object-caption {
  position: absolute;
  right: -16%;
  top: 28%;
  font-size: 12px;
  letter-spacing: 0.065em;
  line-height: 1.65;
  color: #bbb;
  z-index: 3;
}
.object-axis {
  color: #888;
  position: absolute;
  font-size: 22px;
  font-weight: 300;
}
.axis-a {
  left: 0;
  top: 7%;
}
.axis-b {
  right: 1%;
  bottom: 5%;
}
.hero-side-label {
  position: absolute;
  right: -20px;
  bottom: 22px;
  writing-mode: vertical-rl;
  color: #888;
  font-size: 12px;
}
.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  gap: 40px;
  padding: 0 0 40px;
}
.hero-statement {
  font-size: clamp(19px, 1.8vw, 26px);
  color: white;
  letter-spacing: -0.045em;
  font-family: var(--display);
  line-height: 1.45;
}
.hero-description {
  max-width: 420px;
  margin-left: auto;
}
.hero-description p {
  font-size: 1rem;
  line-height: 1.65;
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 12px 0;
  border-bottom: 1px solid #777;
  font-size: 0.9375rem;
  font-weight: 500;
  min-height: 46px;
  color: white;
}
.hero-description .text-link {
  margin-top: 16px;
}
.text-link span {
  font-size: 25px;
  color: var(--cyan);
  transition: transform 0.18s var(--ease);
}
.text-link:hover span {
  transform: translate(3px, -3px);
}
.hero-foot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.hero-foot a {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.hero-foot a span {
  color: var(--cyan);
  font-size: 20px;
}
.hero-foot > span:last-child {
  color: #999;
}
.hero-scroll-cue {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #999;
}
.hero-scroll-cue i {
  width: 5px;
  height: 19px;
  border: 1px solid var(--cyan);
  display: block;
}
.services {
  background: var(--surface);
  position: relative;
  z-index: 4;
  border-top: 1px solid var(--line);
}
.service-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service {
  background: var(--surface);
  padding: 30px 36px 32px;
  position: relative;
  overflow: hidden;
}
.service-top {
  display: flex;
  justify-content: space-between;
  color: #aaa;
}
.service-top > span:last-child {
  font-size: 25px;
  color: white;
  line-height: 1;
}
.service-graphic {
  height: 170px;
  position: relative;
  margin-bottom: 20px;
  margin-top: 10px;
  transition: transform 0.45s var(--ease);
}
.service h3 {
  font-size: clamp(24px, 2.3vw, 34px);
  margin-bottom: 14px;
}
.service p {
  max-width: 440px;
  font-size: 1rem;
}
.service-tags {
  margin-top: 28px;
  font-size: 12px;
  color: #bbb;
  letter-spacing: 0.04em;
}
.service-tags span {
  color: #555;
  margin: 0 12px;
}
.type-composition > span {
  font-family: var(--display);
  font-size: 140px;
  line-height: 1.2;
  letter-spacing: -0.11em;
}
.type-composition .serif {
  font-family: Georgia, serif;
  font-style: italic;
  color: var(--cyan);
  padding-right: 20px;
}
.type-composition .baseline {
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  background: #454545;
}
.type-composition small {
  position: absolute;
  right: 0;
  bottom: 38px;
  font-size: 11px;
  letter-spacing: 0.09em;
  color: #999;
}
.code-composition {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
.code-bracket {
  font-family: var(--display);
  font-size: 95px;
  font-weight: 400;
  color: #ccc;
  letter-spacing: -0.09em;
}
.code-lines {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 110px;
}
.code-lines i {
  height: 7px;
  width: 80%;
  background: #555;
  transition: width 0.4s;
}
.code-lines i:nth-child(2) {
  width: 100%;
  background: var(--cyan);
}
.code-lines i:last-child {
  width: 50%;
}
.node-composition {
  display: flex;
  align-items: center;
  justify-content: center;
}
.node-composition span {
  font-size: 12px;
  letter-spacing: 0.06em;
  border: 1px solid #505050;
  padding: 15px;
}
.node-composition i {
  height: 1px;
  background: #666;
  width: 35px;
}
.node-composition b {
  font-size: 70px;
  font-weight: 400;
  color: var(--cyan);
  width: 80px;
  text-align: center;
  transition: transform 0.5s;
}
.graphic-composition {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.graphic-composition > span {
  font-family: var(--display);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.065em;
  font-weight: 700;
}
.graphic-composition i {
  font-style: normal;
  -webkit-text-stroke: 1px #aaa;
  color: transparent;
}
.graphic-composition b {
  font-size: 140px;
  font-weight: 400;
  color: var(--cyan);
  line-height: 1;
}
.service:hover .type-composition > span {
  letter-spacing: -0.065em;
}
.type-composition > span {
  transition: letter-spacing 0.4s;
}
.service:hover .code-lines i:first-child {
  width: 100%;
}
.service:hover .code-lines i:last-child {
  width: 85%;
}
.service:hover .node-composition b {
  transform: rotate(90deg);
}
.service:hover .graphic-composition b {
  transform: rotate(15deg);
}
.graphic-composition b {
  transition: transform 0.45s;
}
.service:hover .service-top {
  color: var(--cyan);
}
.manifesto {
  background: var(--ink);
  border-block: 1px solid var(--line);
}
.manifesto-sticky {
  padding: 55px var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 730px;
}
.manifesto-meta {
  display: flex;
  justify-content: space-between;
  color: #aaa;
}
.manifesto-counter {
  color: var(--cyan);
}
.manifesto-scenes {
  padding: 60px 0;
}
.manifesto-scene {
  padding: 36px 0;
}
.manifesto-scene h2,
.manifesto-scene h3 {
  font-size: clamp(38px, 8.2vw, 126px);
  font-family: var(--display);
  line-height: 1.05;
  letter-spacing: -0.06em;
  font-weight: 600;
}
.manifesto-scene p {
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1.65;
  max-width: 600px;
  margin-top: 40px;
}
.manifesto-scene p strong {
  font-weight: 400;
  color: white;
}
.outline-word {
  color: transparent;
  -webkit-text-stroke: 1px #aaa;
}
.manifesto-footer {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #aaa;
}
.connection-line {
  height: 1px;
  position: relative;
  background: #3b3b3b;
  flex: 1;
}
.connection-line i {
  position: absolute;
  inset: 0;
  background: var(--cyan);
  transform: scaleX(0.1);
  transform-origin: left;
}
.connection-line b {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--ink);
  color: var(--cyan);
  font-size: 32px;
  font-weight: 400;
  padding: 0 10px;
}
.motion-ready .manifesto {
  height: 285svh;
}
.motion-ready .manifesto-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 680px;
  padding-top: 115px;
}
.motion-ready .manifesto-scenes {
  display: grid;
  flex: 1;
  align-items: center;
  padding: 40px 0;
}
.motion-ready .manifesto-scene {
  grid-area: 1/1;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
}
.motion-ready .manifesto-scene:first-child {
  opacity: 1;
  visibility: visible;
}
.work {
  background: var(--paper);
  color: var(--ink);
}
.work h2 em {
  color: #656565;
}
.work p {
  color: #575757;
}
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px 34px;
}
.project-two {
  padding-top: 120px;
}
.project-three {
  grid-column: 1/-1;
}
.project-open {
  display: block;
  width: 100%;
  border: 0;
  background: none;
  text-align: left;
  padding: 0;
  transition: transform 0.12s var(--ease);
}
.project-open:active {
  transform: scale(0.985);
}
.project-visual {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1/1.1;
}
.project-stamp {
  position: absolute;
  top: 22px;
  left: 22px;
  font-size: 11px;
  letter-spacing: 0.08em;
  z-index: 3;
}
.visual-one {
  background: #bfc3c7;
  color: #111;
}
.project-poster {
  position: absolute;
  background: #e8ebed;
  color: #0d0d0d;
  padding: 8%;
  width: 67%;
  height: 76%;
  top: 13%;
  left: 17%;
  transform: rotate(-8deg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.7s var(--ease);
  box-shadow: 16px 24px 0 #08080815;
}
.poster-meta {
  font-size: 11px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.poster-display {
  font-family: var(--display);
  font-size: clamp(25px, 4.3vw, 65px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.08em;
}
.poster-display i {
  font-style: normal;
  -webkit-text-stroke: 1px #111;
  color: transparent;
}
.poster-bottom {
  font-size: 9px;
  letter-spacing: 0.04em;
  border-top: 1px solid black;
  padding-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.poster-bottom b {
  font-size: 22px;
}
.project-action {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: white;
  color: #111;
  padding: 13px 17px;
  font-size: 12px;
  letter-spacing: 0.035em;
  transform: translateY(3px);
  transition:
    background 0.3s,
    transform 0.3s;
  z-index: 4;
}
.project-open:hover .project-action {
  transform: translateY(0);
  background: var(--cyan);
}
.project-open:hover .project-poster {
  transform: rotate(-3deg) scale(1.025);
}
.project-info {
  padding-top: 21px;
}
.project-info h3 {
  font-size: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.project-info h3 span {
  font-size: 22px;
  font-family: var(--body);
  font-weight: 400;
}
.project-info p {
  font-size: 14px;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.project-info p span {
  font-size: 11px;
  letter-spacing: 0.035em;
  align-self: center;
  white-space: nowrap;
}
.visual-two {
  background: #16252d;
  color: white;
}
.system-composition {
  display: block;
  position: absolute;
  top: 28%;
  left: 10%;
  right: 10%;
  transform: rotate(-5deg);
  transition: transform 0.6s var(--ease);
}
.system-label,
.system-end {
  font-size: 11px;
  letter-spacing: 0.1em;
  display: block;
}
.system-label {
  margin-bottom: 24px;
}
.system-row {
  display: flex;
  align-items: center;
  gap: 18px;
  border-top: 1px solid #ffffff80;
  padding: 17px 0;
}
.system-row i {
  font-style: normal;
  font-size: 12px;
}
.system-row b {
  font-size: clamp(19px, 2.7vw, 41px);
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.065em;
}
.system-row > span {
  font-size: 24px;
  margin-left: auto;
}
.system-end {
  margin-top: 26px;
}
.project-open:hover .system-composition {
  transform: rotate(0);
}
.visual-three {
  aspect-ratio: 2.4;
  background: #161616;
  color: white;
}
.brand-exploration {
  padding: 9% 11%;
  display: flex;
  align-items: center;
  gap: 4%;
  font-family: var(--display);
  font-size: clamp(30px, 4.8vw, 75px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.06em;
}
.brand-exploration-last {
  font-size: clamp(100px, 17vw, 265px);
  letter-spacing: -0.085em;
}
.brand-grid-plus {
  position: absolute;
  right: 4%;
  top: 10%;
  font-size: 70px;
  color: #777;
  font-weight: 300;
  transition: transform 0.6s;
}
.project-open:hover .brand-grid-plus {
  transform: rotate(90deg);
}
.process {
  border-bottom: 1px solid var(--line);
}
.process-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 10%;
}
.process-fixed {
  position: sticky;
  top: 115px;
  align-self: start;
}
.process-fixed h2 {
  font-size: clamp(32px, 4.2vw, 62px);
  margin: 30px 0;
}
.process-diagram {
  border: 1px solid var(--line);
  max-width: 470px;
  height: 280px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.diagram-top {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #aaa;
}
.diagram-count {
  color: var(--cyan);
}
.diagram-art {
  flex: 1;
  position: relative;
  display: grid;
  place-items: center;
}
.diagram-cross {
  font-size: 165px;
  line-height: 1;
  font-family: var(--display);
  font-weight: 300;
  color: var(--cyan);
  transition:
    transform 0.65s var(--ease),
    opacity 0.45s;
}
.diagram-wire {
  position: absolute;
  inset: 26px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  opacity: 0;
  transform: scale(0.75);
  transition:
    transform 0.55s var(--ease),
    opacity 0.3s;
}
.diagram-wire i {
  border: 1px solid var(--cyan);
}
.diagram-wire i:first-child {
  grid-column: 1/-1;
}
.diagram-wire i:last-child {
  grid-column: 1/-1;
  height: 12px;
}
.diagram-code {
  position: absolute;
  font-family: monospace;
  font-size: clamp(17px, 1.8vw, 25px);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.4s,
    transform 0.5s;
}
.diagram-code span {
  color: var(--cyan);
  padding-left: 20px;
}
.diagram-launch {
  position: absolute;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(27px, 2.8vw, 43px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.4s,
    transform 0.5s;
}
.diagram-launch span {
  color: var(--cyan);
  font-size: 0.72em;
}
.diagram-progress {
  height: 2px;
  background: #333;
  width: 100%;
}
.diagram-progress i {
  display: block;
  background: var(--cyan);
  width: 25%;
  height: 100%;
  transition: width 0.4s;
}
.process-diagram[data-step="1"] .diagram-cross {
  opacity: 0;
  transform: scale(0.65) rotate(45deg);
}
.process-diagram[data-step="1"] .diagram-wire {
  opacity: 1;
  transform: scale(1);
}
.process-diagram[data-step="2"] .diagram-cross,
.process-diagram[data-step="3"] .diagram-cross {
  opacity: 0;
  transform: scale(0.5);
}
.process-diagram[data-step="2"] .diagram-code,
.process-diagram[data-step="3"] .diagram-launch {
  opacity: 1;
  transform: none;
}
.process-nav {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.process-nav a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-bottom: 1px solid #444;
  font-size: 14px;
  color: #aaa;
  transition:
    color 0.3s,
    border-color 0.3s;
}
.process-nav a[aria-current] {
  color: var(--cyan);
  border-color: var(--cyan);
}
.process-step {
  min-height: 70svh;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  position: relative;
  padding: 90px 0 100px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 140px;
}
.step-number {
  font-size: 14px;
  color: #888;
  margin-top: 5px;
}
.process-step .eyebrow {
  font-size: 12px;
  color: #999;
  margin-bottom: 30px;
}
.process-step h3 {
  font-size: clamp(32px, 3.8vw, 58px);
  margin-bottom: 22px;
  color: #c1c1c1;
  transition: color 0.4s;
}
.process-step p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.85;
}
.step-deliverable {
  font-size: 14px;
  color: #ddd;
  display: block;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.process-step.is-active .step-number {
  color: var(--cyan);
}
.process-step.is-active h3 {
  color: white;
}
.process-step:last-child {
  min-height: 62svh;
}
.team {
  background: var(--surface);
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  transition: grid-template-columns 0.65s var(--ease);
}
.person {
  min-width: 0;
}
.person-portrait {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: #050505;
}
.person-portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 40%;
  transition: transform 0.8s var(--ease);
}
.person-portrait::after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, #000e);
  pointer-events: none;
}
.portrait-meta {
  position: absolute;
  top: 26px;
  left: 26px;
  font-size: 12px;
  z-index: 2;
}
.portrait-label {
  position: absolute;
  bottom: 24px;
  left: 26px;
  z-index: 2;
  font-family: var(--display);
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: -0.06em;
}
.portrait-label > span {
  font-size: 16px;
  letter-spacing: 0.015em;
}
.person-info {
  padding: 30px 4px;
}
.person-info h3 {
  font-size: clamp(24px, 2.3vw, 34px);
}
.person-role {
  font-size: 14px;
  color: #e0e0e0;
  margin: 12px 0 20px;
}
.person-info > p:not(.person-role) {
  font-size: 16px;
  max-width: 510px;
  line-height: 1.8;
}
.person-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}
.person-skills span {
  font-size: 11px;
  letter-spacing: 0.03em;
  border: 1px solid #444;
  padding: 5px 9px;
  color: #bbb;
}
.santiago-placeholder {
  background-color: #171717;
  background-image:
    linear-gradient(#303030 1px, transparent 1px),
    linear-gradient(90deg, #303030 1px, transparent 1px);
  background-size: 70px 70px;
}
.sdp {
  position: absolute;
  top: 100px;
  left: 6%;
  right: 6%;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(100px, 13vw, 200px);
  line-height: 1;
  letter-spacing: -0.11em;
  color: white;
  transform: rotate(-10deg);
}
.sdp > span:first-child {
  color: transparent;
  -webkit-text-stroke: 1px var(--cyan);
}
.sdp-plus {
  position: absolute;
  right: 5px;
  top: 140px;
  font-size: 130px;
  font-weight: 300;
  color: var(--cyan);
}
.portrait-pending {
  position: absolute;
  left: 26px;
  top: 68px;
  color: #aaa;
  font-size: 12px;
}
.why {
  background: var(--paper);
  color: var(--ink);
}
.why-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 10%;
  margin-top: 48px;
}
.why-layout h2 {
  font-size: clamp(30px, 4.4vw, 66px);
}
.why h2 em {
  color: #666;
}
.why-reasons article {
  display: flex;
  gap: 22px;
  padding: 27px 0;
  border-top: 1px solid #aaa;
}
.why-reasons article > span {
  font-size: 13px;
  color: #555;
  padding-top: 4px;
}
.why-reasons h3 {
  font-size: 23px;
  margin-bottom: 12px;
}
.why-reasons p {
  color: #555;
  font-size: 16px;
  max-width: 330px;
}
.contact {
  background: var(--cyan);
  color: var(--ink);
}
.contact-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.contact-question {
  font-family: var(--display);
  color: var(--ink);
  font-size: clamp(20px, 3vw, 40px);
  margin-top: 70px;
  letter-spacing: -0.05em;
}
.contact h2 {
  font-size: clamp(44px, 8.4vw, 130px);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.07em;
  margin-top: 20px;
}
.contact h2 > span {
  color: white;
}
.contact-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  background: var(--ink);
  color: white;
  padding: 19px 26px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 42px;
  min-height: 64px;
  transition:
    background 0.22s var(--ease),
    color 0.22s var(--ease),
    transform 0.14s var(--ease);
}
.contact-cta > span {
  font-size: 28px;
  line-height: 1;
  color: var(--cyan);
  transition: color 0.22s var(--ease);
}
.contact-cta:hover {
  background: white;
  color: black;
}
.contact-cta:hover > span {
  color: black;
}
.contact-cta:active {
  transform: scale(0.98);
}
.magnetic {
  transition: transform 0.15s var(--ease);
}
.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  border-top: 1px solid #007aaf;
  margin-top: 85px;
  padding-top: 34px;
  gap: 35px;
}
.contact-details > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}
.contact-details .eyebrow {
  font-size: 12px;
  margin-bottom: 6px;
}
.contact-details a,
.copy-phone {
  font-size: clamp(16px, 1.65vw, 24px);
  letter-spacing: -0.03em;
  min-height: 44px;
  display: flex;
  align-items: center;
  overflow-wrap: anywhere;
}
.copy-phone {
  border: 0;
  background: none;
  padding: 0;
  gap: 18px;
}
.copy-phone > span {
  font-size: 21px;
}
.copy-feedback {
  font-size: 12px;
  min-height: 20px;
  color: #123d50;
}
.contact a:focus-visible,
.contact button:focus-visible {
  outline-color: black;
}
.contact-details a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.project-dialog {
  background: #111;
  color: white;
  border: 1px solid #444;
  width: min(720px, calc(100% - 32px));
  padding: clamp(28px, 5vw, 65px);
  max-height: 85svh;
  overflow-y: auto;
}
.project-dialog::backdrop {
  background: #000c;
  backdrop-filter: blur(5px);
}
.dialog-close {
  position: absolute;
  top: 15px;
  right: 15px;
  border: 1px solid #555;
  background: none;
  width: 44px;
  height: 44px;
  font-size: 20px;
}
.project-dialog > .eyebrow {
  padding-right: 25px;
  font-size: 12px;
  margin-top: 10px;
}
.project-dialog h2 {
  font-size: clamp(34px, 5vw, 60px);
  margin-top: 26px;
}
.dialog-category {
  color: white;
  margin-top: 12px;
  font-size: 17px;
}
.dialog-description {
  margin-top: 25px;
  font-size: 17px;
  line-height: 1.85;
}
.dialog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 25px 0;
}
.dialog-tags span {
  border: 1px solid #444;
  padding: 6px 12px;
  font-size: 13px;
}
.dialog-note {
  font-size: 14px;
  border-top: 1px solid #444;
  padding-top: 22px;
  line-height: 1.75;
}
.project-dialog .text-link {
  margin-top: 20px;
}
.cursor-hint {
  position: fixed;
  top: 0;
  left: 0;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cyan);
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.02em;
  pointer-events: none;
  z-index: 70;
  opacity: 0;
  transform: translate(-100px, -100px);
  transition: opacity 0.2s;
  will-change: transform;
}
/* Content is visible without JavaScript; motion only enhances the page. */
.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.9s var(--ease);
}
.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
.reveal-ready .solutions-grid > article[data-reveal] {
  transition-delay: calc((var(--stagger-index, 0)) * 70ms);
}
.reveal-ready .why-reasons > article[data-reveal] {
  transition-delay: calc((var(--stagger-index, 0)) * 80ms);
}
.solutions-grid > article:nth-child(1) { --stagger-index: 0; }
.solutions-grid > article:nth-child(2) { --stagger-index: 1; }
.solutions-grid > article:nth-child(3) { --stagger-index: 2; }
.solutions-grid > article:nth-child(4) { --stagger-index: 3; }
.solutions-grid > article:nth-child(5) { --stagger-index: 4; }
.solutions-grid > article:nth-child(6) { --stagger-index: 5; }
.why-reasons > article:nth-child(1) { --stagger-index: 0; }
.why-reasons > article:nth-child(2) { --stagger-index: 1; }
.why-reasons > article:nth-child(3) { --stagger-index: 2; }
@media (hover: hover) and (pointer: fine) and (min-width: 1000px) {
  .team-grid:has(.person-francisco:hover) {
    grid-template-columns: 1.12fr 0.88fr;
  }
  .team-grid:has(.person-santiago:hover) {
    grid-template-columns: 0.88fr 1.12fr;
  }
  .person:hover .person-portrait img {
    transform: scale(1.035);
  }
}
@media (min-width: 1700px) {
  .section-pad {
    padding-inline: max(var(--gutter), calc((100vw - 1500px) / 2));
  }
  .hero-sticky {
    padding-inline: max(var(--gutter), calc((100vw - 1500px) / 2));
  }
  .hero-composition h1 {
    font-size: 190px;
  }
}
@media (max-width: 1100px) {
  .hero-track {
    min-height: 1000px;
  }
  .hero-sticky {
    min-height: 720px;
    padding-top: 125px;
  }
  .hero-composition h1 {
    font-size: 12vw;
  }
  .hero-object {
    right: 6%;
    width: 37%;
    top: 2%;
    height: 78%;
  }
  .object-caption {
    font-size: 10px;
    right: -10%;
  }
  .hero-foot > span:last-child {
    display: none;
  }
  .section-heading {
    grid-template-columns: 1.6fr 1fr;
    gap: 24px;
  }
  .section-heading h2 {
    white-space: normal;
  }
  .service {
    padding: 25px;
  }
  .service-tags {
    font-size: 11px;
  }
  .service-tags span {
    margin: 0 5px;
  }
  .person-portrait {
    height: 480px;
  }
  .process-layout {
    gap: 7%;
  }
  .process-diagram {
    height: 250px;
  }
  .process-step {
    gap: 14px;
  }
  .contact-details {
    gap: 20px;
  }
  .contact-details a {
    font-size: 17px;
  }
}
@media (max-width: 800px) {
  .site-header {
    height: 76px;
    gap: 15px;
  }
  .brand,
  .brand img {
    width: 96px;
  }
  .desktop-nav {
    display: none;
  }
  .header-contact {
    margin-left: auto;
    gap: 17px;
    font-size: 13px;
  }
  .menu-toggle {
    display: block;
  }
  .hero-track {
    height: auto;
    min-height: 0;
  }
  .hero-sticky {
    position: relative;
    min-height: 760px;
    height: auto;
    padding-top: 114px;
    padding-bottom: 22px;
  }
  .hero-top {
    font-size: 10px;
    gap: 20px;
  }
  .hero-top > span:last-child {
    max-width: 140px;
    text-align: right;
  }
  .tiny-plus {
    margin-left: 5px;
  }
  .hero-composition {
    min-height: 350px;
    margin-top: 28px;
    margin-bottom: 15px;
    align-items: flex-end;
    padding-bottom: 15px;
  }
  .hero-composition h1 {
    font-size: 12.8vw;
    line-height: 1.03;
    letter-spacing: -0.065em;
  }
  .hero-object {
    width: 45%;
    height: 80%;
    right: 5%;
    top: -25px;
  }
  .object-caption {
    font-size: 10px;
    right: -12%;
    top: 18%;
  }
  .hero-side-label {
    display: none;
  }
  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-bottom: 30px;
  }
  .hero-statement {
    font-size: 22px;
  }
  .hero-description {
    margin: 0;
    max-width: 420px;
  }
  .hero-description p {
    font-size: 15px;
  }
  .hero-description .text-link {
    margin-top: 12px;
  }
  .hero-foot {
    font-size: 10px;
    gap: 12px;
    padding-top: 12px;
  }
  .hero-scroll-cue {
    display: none;
  }
  .hero-foot a {
    gap: 30px;
  }
  .section-heading {
    display: block;
    margin-bottom: 45px;
  }
  .section-heading h2 {
    margin-top: 25px;
  }
  .section-intro {
    max-width: 100%;
    margin-top: 25px;
  }
  .service-graphic {
    height: 135px;
  }
  .type-composition > span {
    font-size: 110px;
  }
  .type-composition small {
    display: none;
  }
  .code-bracket {
    font-size: 65px;
  }
  .code-composition {
    gap: 13px;
  }
  .code-lines {
    width: 65px;
    gap: 11px;
  }
  .node-composition span {
    font-size: 10px;
    padding: 10px;
  }
  .node-composition b {
    font-size: 50px;
    width: 50px;
  }
  .node-composition i {
    width: 15px;
  }
  .graphic-composition > span {
    font-size: 38px;
  }
  .graphic-composition b {
    font-size: 100px;
  }
  .service-tags {
    line-height: 1.8;
  }
  .service p {
    font-size: 15px;
  }
  .manifesto-sticky {
    min-height: 0;
    padding: 80px var(--gutter);
  }
  .manifesto-scenes {
    padding: 20px 0;
  }
  .manifesto-scene h2,
  .manifesto-scene h3 {
    font-size: 8.8vw;
  }
  .manifesto-scene p {
    font-size: 17px;
    margin-top: 30px;
  }
  .motion-ready .manifesto {
    height: 240svh;
  }
  .motion-ready .manifesto-sticky {
    min-height: 540px;
    padding-top: 110px;
    padding-bottom: 45px;
  }
  .manifesto-meta {
    font-size: 11px;
    gap: 20px;
  }
  .manifesto-footer {
    font-size: 12px;
    gap: 15px;
  }
  .work-grid {
    gap: 45px 20px;
  }
  .project-two {
    padding-top: 60px;
  }
  .project-info p {
    display: block;
    font-size: 13px;
  }
  .project-info p > span {
    display: block;
    margin-top: 7px;
  }
  .project-stamp {
    font-size: 9px;
    left: 14px;
    top: 14px;
  }
  .poster-meta {
    font-size: 9px;
  }
  .poster-bottom {
    font-size: 7px;
  }
  .project-action {
    font-size: 10px;
    padding: 9px 11px;
    right: 13px;
    bottom: 13px;
  }
  .system-composition {
    top: 25%;
  }
  .system-label,
  .system-end {
    font-size: 8px;
  }
  .system-row {
    gap: 10px;
    padding: 12px 0;
  }
  .system-row b {
    font-size: 22px;
  }
  .system-row i {
    font-size: 10px;
  }
  .system-end {
    margin-top: 12px;
  }
  .process-layout {
    display: block;
  }
  .process-fixed {
    position: static;
  }
  .process-fixed h2 {
    font-size: 40px;
    margin-bottom: 40px;
  }
  .process-diagram,
  .process-nav {
    display: none;
  }
  .process-step {
    min-height: 0;
    padding: 36px 0 50px;
    margin: 0;
    gap: 25px;
  }
  .process-step h3 {
    font-size: 34px;
    color: white;
  }
  .process-step .eyebrow {
    margin-bottom: 15px;
  }
  .process-step p:not(.eyebrow) {
    font-size: 16px;
  }
  .process-step:last-child {
    min-height: 0;
    padding-bottom: 0;
  }
  .step-deliverable {
    margin-top: 22px;
    padding-top: 16px;
  }
  .process-step .step-number {
    color: var(--cyan);
  }
  .team-grid {
    gap: 20px;
  }
  .person-portrait {
    height: 380px;
  }
  .portrait-meta {
    left: 18px;
    top: 20px;
    font-size: 10px;
  }
  .portrait-label {
    left: 18px;
    bottom: 18px;
    font-size: 37px;
  }
  .portrait-label > span {
    font-size: 12px;
  }
  .portrait-pending {
    font-size: 10px;
    left: 18px;
    top: 48px;
  }
  .sdp {
    top: 110px;
    font-size: 14vw;
  }
  .sdp-plus {
    font-size: 90px;
    top: 90px;
  }
  .person-role {
    font-size: 13px;
    line-height: 1.6;
    min-height: 42px;
  }
  .person-info > p:not(.person-role) {
    font-size: 15px;
  }
  .person-skills {
    gap: 6px;
  }
  .person-skills span {
    font-size: 10px;
  }
  .why-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-layout h2 {
    font-size: 42px;
  }
  .why-reasons p {
    max-width: none;
  }
  .contact-top {
    font-size: 10px;
  }
  .contact-question {
    margin-top: 45px;
    font-size: 24px;
  }
  .contact h2 {
    font-size: 8.9vw;
  }
  .contact-details {
    margin-top: 60px;
    grid-template-columns: 1fr 1fr;
  }
  .contact-details > div:last-child {
    grid-column: 1/-1;
  }
  .contact-details a,
  .copy-phone {
    font-size: 20px;
  }
  .contact-cta {
    font-size: 13px;
    padding: 15px 20px;
    gap: 28px;
  }
  .cursor-hint {
    display: none;
  }
}
@media (max-width: 540px) {
  :root {
    --gutter: 22px;
  }
  .hero-sticky {
    min-height: 780px;
  }
  .hero-top > span:first-child {
    max-width: 190px;
  }
  .hero-composition {
    min-height: 290px;
  }
  .hero-object {
    height: 87%;
    width: 60%;
    right: 2%;
    top: -18px;
  }
  .object-caption {
    right: -1%;
    top: 10%;
    font-size: 9px;
  }
  .hero-composition h1 {
    font-size: 12.3vw;
  }
  .hero-line:first-child {
    font-size: 1.18em;
  }
  .hero-line.second-line {
    margin-top: 0.11em;
  }
  .hero-statement {
    font-size: 20px;
  }
  .hero-description p {
    font-size: 16px;
  }
  .hero-grid {
    background-size: calc((100% - var(--gutter) * 2) / 2) 100%;
  }
  .hero-foot a {
    font-size: 11px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service {
    padding: 24px;
  }
  .service-graphic {
    height: 150px;
    margin: 5px 0 15px;
  }
  .service-top {
    font-size: 11px;
  }
  .service h3 {
    font-size: 28px;
  }
  .service p {
    font-size: 16px;
  }
  .service-tags {
    font-size: 11px;
    margin-top: 23px;
  }
  .type-composition > span {
    font-size: 128px;
  }
  .code-bracket {
    font-size: 80px;
  }
  .code-lines {
    width: 90px;
  }
  .graphic-composition > span {
    font-size: 47px;
  }
  .graphic-composition b {
    font-size: 130px;
  }
  .node-composition span {
    font-size: 11px;
    padding: 13px;
  }
  .node-composition i {
    width: 25px;
  }
  .node-composition b {
    font-size: 65px;
    width: 70px;
  }
  .manifesto-scene h2,
  .manifesto-scene h3 {
    font-size: 9vw;
    letter-spacing: -0.055em;
  }
  .manifesto-scene p {
    font-size: 16px;
  }
  .manifesto-meta {
    font-size: 10px;
  }
  .manifesto-meta > span:first-child {
    max-width: 165px;
  }
  .manifesto-scenes {
    padding-block: 32px;
  }
  .motion-ready .manifesto {
    height: 230svh;
  }
  .motion-ready .manifesto-sticky {
    min-height: 500px;
  }
  .work-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .project-two {
    padding-top: 0;
  }
  .project-three {
    grid-column: auto;
  }
  .project-visual {
    aspect-ratio: 1/1.06;
  }
  .project-info h3 {
    font-size: 25px;
  }
  .project-info p {
    font-size: 14px;
  }
  .project-info p > span {
    font-size: 11px;
  }
  .poster-display {
    font-size: 12vw;
  }
  .poster-meta {
    font-size: 11px;
  }
  .poster-bottom {
    font-size: 8px;
  }
  .project-stamp {
    font-size: 10px;
    left: 20px;
    top: 20px;
  }
  .system-row b {
    font-size: 7vw;
  }
  .system-label,
  .system-end {
    font-size: 10px;
  }
  .system-composition {
    top: 27%;
  }
  .system-row {
    padding: 18px 0;
  }
  .project-action {
    font-size: 11px;
    padding: 12px 14px;
  }
  .brand-exploration {
    display: block;
    padding: 25% 10% 0;
    font-size: 12vw;
  }
  .brand-exploration-last {
    display: block;
    font-size: 29vw;
    margin-top: 15px;
  }
  .brand-grid-plus {
    top: 23%;
    right: 10%;
    font-size: 100px;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .person-portrait {
    height: 490px;
  }
  .person-info {
    padding-top: 25px;
  }
  .person-info h3 {
    font-size: 29px;
  }
  .person-info > p:not(.person-role) {
    font-size: 16px;
  }
  .person-role {
    min-height: 0;
    font-size: 14px;
  }
  .portrait-meta {
    font-size: 11px;
    left: 24px;
    top: 25px;
  }
  .portrait-label {
    font-size: 55px;
    left: 24px;
    bottom: 25px;
  }
  .portrait-label > span {
    font-size: 14px;
  }
  .portrait-pending {
    top: 61px;
    left: 24px;
    font-size: 11px;
  }
  .sdp {
    top: 120px;
    font-size: 29vw;
  }
  .sdp-plus {
    top: 115px;
    font-size: 120px;
  }
  .why-layout h2 {
    font-size: clamp(30px, 8vw, 42px);
  }
  .why-reasons h3 {
    font-size: 24px;
  }
  .contact-top > span:last-child {
    display: none;
  }
  .contact h2 {
    font-size: 10.3vw;
    letter-spacing: -0.065em;
  }
  .contact-details {
    grid-template-columns: 1fr;
    gap: 27px;
    margin-top: 50px;
  }
  .contact-details > div:last-child {
    grid-column: auto;
  }
  .contact-details a,
  .copy-phone {
    font-size: 22px;
  }
  .contact .eyebrow {
    font-size: 11px;
  }
  .contact-cta {
    width: 100%;
    font-size: 12px;
    justify-content: space-between;
    margin-top: 35px;
  }
  .project-dialog .text-link {
    font-size: 14px;
    gap: 20px;
  }
}
@media (max-width: 360px) {
  :root {
    --gutter: 18px;
  }
  .header-contact {
    font-size: 12px;
    gap: 10px;
  }
  .hero-sticky {
    min-height: 770px;
  }
  .hero-top {
    font-size: 9px;
  }
  .hero-top > span:first-child {
    max-width: 165px;
  }
  .hero-composition {
    min-height: 250px;
  }
  .hero-object {
    top: -10px;
  }
  .hero-statement {
    font-size: 18px;
  }
  .person-portrait {
    height: 420px;
  }
  .portrait-label {
    font-size: 47px;
  }
  .sdp-plus {
    top: 95px;
  }
  .contact-details a,
  .copy-phone {
    font-size: 19px;
  }
  .node-composition i {
    width: 15px;
  }
  .node-composition span {
    font-size: 10px;
    padding: 10px;
  }
  .service {
    padding: 20px;
  }
}
@media (max-height: 750px) and (min-width: 801px) {
  .hero-sticky {
    height: 740px;
  }
  .motion-ready .manifesto-sticky {
    min-height: 630px;
    padding-top: 100px;
    padding-bottom: 30px;
  }
  .manifesto-scene h2,
  .manifesto-scene h3 {
    font-size: min(7.2vw, 96px);
  }
  .manifesto-scene p {
    margin-top: 24px;
    font-size: 18px;
  }
  .process-fixed {
    top: 95px;
  }
  .process-fixed h2 {
    font-size: 42px;
    margin: 20px 0;
  }
  .process-diagram {
    height: 220px;
  }
  .process-diagram .diagram-cross {
    font-size: 130px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .hero-track {
    height: auto;
    min-height: 0;
  }
  .hero-sticky {
    position: relative;
  }
  .hero-composition h1 {
    transform: none !important;
  }
  .hero-object {
    transform: none !important;
  }
  .motion-ready .manifesto {
    height: auto;
  }
  .motion-ready .manifesto-sticky {
    position: relative;
    height: auto;
    min-height: 0;
    padding: 70px var(--gutter);
  }
  .motion-ready .manifesto-scenes {
    display: block;
  }
  .motion-ready .manifesto-scene {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    padding: 40px 0;
  }
  .manifesto-counter {
    display: none;
  }
  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .cursor-hint {
    display: none;
  }
  .team-grid {
    transition: none;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.visual-two .system-row:last-of-type {
  color: var(--cyan);
}

/* Closing signature: original NAMI outlines, no font-dependent SVG text. */
.person-santiago-portrait img {
  object-position: center top;
}
.footer-v2 {
  padding: clamp(40px, 5vw, 76px) var(--gutter) 24px;
  background: var(--ink);
  overflow: hidden;
}
.closing-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: end;
}
.closing-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #b8b8b8;
  font-size: 11px;
}
.closing-kicker > span {
  font-size: 25px;
  line-height: 1;
  color: var(--cyan);
}
.closing-message {
  margin-top: 20px;
  color: #fff;
  font: 500 clamp(27px, 3.2vw, 48px)/1.2 var(--display);
  letter-spacing: -0.055em;
}
.closing-message em {
  font-style: normal;
  color: var(--cyan);
}
.closing-links {
  width: 100%;
  max-width: 390px;
  justify-self: end;
}
.closing-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 54px;
  border-bottom: 1px solid #373737;
  font-size: 14px;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.closing-links a:first-child {
  border-top: 1px solid #373737;
}
.closing-links a > span:last-child {
  font-size: 24px;
  color: var(--cyan);
  transition: transform 0.25s var(--ease);
}
.closing-links a:hover {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}
.closing-links a:hover > span:last-child {
  transform: translate(3px, -3px);
}
.closing-signature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  align-items: end;
  gap: clamp(30px, 6vw, 90px);
  margin: clamp(40px, 5vw, 72px) 0 38px;
}
.closing-signature > img {
  width: 100%;
  height: auto;
  min-width: 0;
}
.closing-signoff {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  padding: 8px 0;
}
.closing-signoff .eyebrow {
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 0.09em;
  color: #a8a8a8;
}
.closing-plus {
  display: block;
  font: 300 clamp(65px, 8vw, 120px)/0.8 var(--body);
  color: var(--cyan);
}
.closing-bottom {
  border-top: 1px solid #373737;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #b8b8b8;
  font-size: 10px;
}
.closing-location {
  display: flex;
  align-items: center;
  gap: 22px;
}
.closing-location .local-clock {
  color: #b8b8b8;
  white-space: nowrap;
}
.closing-back {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  color: #fff;
  white-space: nowrap;
}
.closing-back > span {
  width: 42px;
  height: 42px;
  border: 1px solid #555;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 23px;
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s,
    transform 0.25s;
}
.closing-back:hover > span {
  background: var(--cyan);
  color: var(--ink);
  border-color: var(--cyan);
  transform: translateY(-3px);
}
@media (prefers-reduced-motion: no-preference) {
  .footer-v2.is-in-view .closing-signature > img {
    animation: signature-arrive 1s var(--ease) both;
  }
  .footer-v2.is-in-view .closing-plus {
    animation: signature-turn 1.2s var(--ease) both;
  }
  @keyframes signature-arrive {
    from {
      opacity: 0.3;
      transform: translateY(22px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes signature-turn {
    from {
      transform: rotate(-90deg);
    }
    to {
      transform: rotate(0);
    }
  }
}
@media (max-width: 800px) {
  .closing-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .closing-signature {
    grid-template-columns: minmax(0, 1fr) 135px;
    gap: 28px;
  }
  .closing-signoff .eyebrow {
    font-size: 8px;
  }
  .closing-location {
    flex-direction: column;
    gap: 2px;
    align-items: center;
  }
}
@media (max-width: 540px) {
  .closing-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .closing-message {
    font-size: clamp(27px, 7.6vw, 40px);
  }
  .closing-links {
    max-width: none;
  }
  .closing-links a {
    min-height: 54px;
  }
  .closing-signature {
    grid-template-columns: 1fr;
    gap: 22px;
    margin: 38px 0 26px;
  }
  .closing-signoff {
    flex-direction: row;
    align-items: center;
    padding: 0;
  }
  .closing-signoff .eyebrow {
    font-size: 9px;
  }
  .closing-plus {
    font-size: 44px;
  }
  .closing-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px 16px;
    padding-top: 18px;
  }
  .closing-location {
    grid-row: 2;
    align-items: flex-start;
    gap: 3px;
    font-size: 9px;
  }
  .closing-back {
    grid-column: 2;
    grid-row: 1/3;
    font-size: 9px;
    gap: 9px;
  }
}

/* Commercial clarity: keep the editorial identity and native scroll. */
.hero-bottom { grid-template-columns: 1.4fr 1fr; }
.hero-statement { max-width: 680px; }
.hero-sticky { min-height: 860px; max-height: none; }
.solutions { border-top: 1px solid var(--line); background: var(--surface); }
.solutions-heading { display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px 60px; }
.solutions-heading > .eyebrow { grid-column: 1 / -1; }
.solutions-heading h2 { font-size: clamp(34px, 4.2vw, 64px); }
.solutions-heading > p:last-child { max-width: 380px; align-self: end; justify-self: end; }
.solutions-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 64px; margin-top: 56px; }
.solutions-grid article { display: flex; gap: 22px; padding: 28px 0 32px; border-top: 1px solid #424242; min-width: 0; }
.solution-number { color: var(--cyan); font-size: .875rem; padding-top: 3px; }
.solutions-grid h3 { font-size: clamp(20px, 1.8vw, 26px); margin-bottom: 12px; }
.solutions-grid p { font-size: 1rem; max-width: 440px; }
.solutions-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 24px; }
.solutions-bottom > p { font-size: .9375rem; }
.contact-intro { color: #103346; font-size: 1.0625rem; max-width: 620px; margin-top: 28px; }
.phone-entry { display: flex; flex-direction: column; align-items: flex-start; }
.phone-entry + .phone-entry { margin-top: 20px; }
.phone-name { font-size: .875rem; color: #103346; }
.copy-feedback { font-size: .875rem; }
.contact-details .eyebrow { font-size: .875rem; }
.contact-details .phone-number { font-size: inherit; }
.whatsapp-float { position: fixed; z-index: 40; right: max(22px, env(safe-area-inset-right)); bottom: calc(22px + env(safe-area-inset-bottom)); display: inline-flex; align-items: center; gap: 12px; padding: 15px 22px 15px 18px; min-height: 54px; border: 1px solid var(--line); border-radius: 0; background: var(--ink); color: white; box-shadow: 0 14px 34px #0007; font-size: .8125rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; opacity: 0; transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), transform .14s var(--ease); animation: whatsapp-float-in .38s var(--ease) .2s forwards; }
@keyframes whatsapp-float-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.whatsapp-float svg { color: var(--cyan); flex-shrink: 0; transition: color .25s var(--ease); }
.whatsapp-float:hover { background: var(--cyan); border-color: var(--cyan); color: var(--ink); }
.whatsapp-float:hover svg { color: var(--ink); }
.whatsapp-float:active { transform: scale(.96); }
.whatsapp-float[hidden], body.menu-open .whatsapp-float, body:has(dialog[open]) .whatsapp-float { display: none; }
@media (max-height: 900px) and (min-width: 801px) {
  .hero-track { height: auto; min-height: 0; }
  .hero-sticky { position: relative; height: auto; min-height: 0; }
  .hero-composition { min-height: 310px; }
}
@media (max-width: 800px) {
  .hero-sticky { min-height: 0; }
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-statement { max-width: 620px; }
  .hero-description p { font-size: 1rem; }
  .solutions-heading { grid-template-columns: 1fr; gap: 25px; }
  .solutions-heading > p:last-child { justify-self: start; max-width: 560px; }
  .solutions-grid { column-gap: 30px; margin-top: 36px; }
  .solutions-grid article { gap: 14px; }
  .solutions-bottom { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 540px) {
  .solutions-grid { grid-template-columns: 1fr; }
  .solutions-grid article { padding-block: 24px; }
  .solutions-bottom .text-link { gap: 20px; }
  .whatsapp-float { right: max(16px, env(safe-area-inset-right)); bottom: calc(16px + env(safe-area-inset-bottom)); width: 52px; min-height: 52px; padding: 0; justify-content: center; gap: 0; }
  .whatsapp-float > span { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float { transition: none; animation: none; opacity: 1; }
}
