:root {
  --ink: #050505;
  --ink-soft: #0c0d0a;
  --panel: #12140f;
  --paper: #f5f5f2;
  --white: #fff;
  --muted: #979b91;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: rgba(5, 5, 5, 0.18);
  --lime: #cfff27;
  --lime-deep: #9ec719;
  --fast: 180ms;
  --normal: 380ms;
  --slow: 760ms;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pad: clamp(1.25rem, 4.5vw, 5.5rem);
  --radius: 1.35rem;
  --header-h: 5.5rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); color-scheme: dark; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button, a, input, textarea, select { touch-action: manipulation; }
button, a { -webkit-tap-highlight-color: transparent; }
section[id] { scroll-margin-top: var(--header-h); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { color: var(--ink); background: var(--lime); }
:focus-visible { outline: 2px solid var(--lime); outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-160%);
  transition: transform var(--fast) ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-h);
  padding: 0 var(--pad);
  border-bottom: 1px solid transparent;
  transition: background var(--normal) ease, border-color var(--normal) ease, min-height var(--normal) ease;
}
.site-header.is-scrolled {
  min-height: 4.7rem;
  background: rgba(5, 5, 5, 0.86);
  border-color: var(--line-dark);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 0.8rem; width: max-content; }
.brand-mark { position: relative; display: inline-block; width: 2.2rem; height: 1.35rem; }
.brand-mark i { position: absolute; top: 0; width: 1.35rem; aspect-ratio: 1; border-radius: 50%; background: var(--lime); box-shadow: 0 0 1.4rem rgba(207, 255, 39, 0.3); }
.brand-mark i:first-child { left: 0; }
.brand-mark i:last-child { right: 0; background: color-mix(in srgb, var(--lime), #3f5500 38%); mix-blend-mode: screen; }
.brand-name { font-family: "Bricolage Grotesque", sans-serif; font-size: 1.25rem; font-weight: 700; letter-spacing: -0.055em; }
.brand-name span { color: var(--lime); font-weight: 400; }
.desktop-nav { display: flex; gap: clamp(1.5rem, 3vw, 3rem); }
.desktop-nav a, .header-contact { position: relative; font-size: 0.86rem; font-weight: 600; }
.desktop-nav a::after, .header-contact::after, .text-link::after, .menu-panel__social a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -0.35rem; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform var(--normal) var(--ease);
}
.desktop-nav a:hover::after, .header-contact:hover::after, .text-link:hover::after, .menu-panel__social a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 1.5rem; }
.header-contact { color: var(--lime); }
.menu-toggle { display: none; position: relative; width: 3rem; height: 3rem; border: 1px solid var(--line-dark); border-radius: 50%; background: transparent; color: inherit; cursor: pointer; }
.menu-toggle span { position: absolute; left: 0.8rem; width: 1.3rem; height: 1px; background: currentColor; transition: transform var(--normal) var(--ease), top var(--normal) var(--ease); }
.menu-toggle span:first-child { top: 1.22rem; }
.menu-toggle span:last-child { top: 1.7rem; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 1.47rem; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 1.47rem; transform: rotate(-45deg); }

.menu-panel { position: fixed; z-index: 90; inset: 0; visibility: hidden; background: var(--ink); clip-path: inset(0 0 100% 0); transition: clip-path var(--slow) var(--ease), visibility 0s var(--slow); overscroll-behavior: contain; }
.menu-panel.is-open { visibility: visible; clip-path: inset(0); transition: clip-path var(--slow) var(--ease); }
.menu-panel__inner { display: grid; grid-template-rows: auto 1fr auto; min-height: 100svh; padding: calc(var(--header-h) + 2rem) var(--pad) 2rem; }
.menu-panel__inner > p { color: var(--muted); font-size: 0.75rem; }
.menu-panel nav { display: grid; align-content: center; width: min(64rem, 100%); }
.menu-panel nav a { display: flex; justify-content: space-between; align-items: center; padding: 0.32em 0; font-family: "Bricolage Grotesque", sans-serif; font-size: clamp(2.8rem, 8vw, 7rem); line-height: 1; letter-spacing: -0.065em; transition: color var(--fast) ease, padding var(--normal) var(--ease); }
.menu-panel nav a:hover { color: var(--lime); padding-left: 0.12em; }
.menu-panel__social { display: flex; gap: 2rem; }
.menu-panel__social a { position: relative; font-size: 0.9rem; }

.hero { position: relative; min-height: 100svh; overflow: hidden; background: radial-gradient(circle at 78% 58%, rgba(119, 151, 23, 0.12), transparent 36%), var(--ink); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: 0.23; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 7.5vw 7.5vw; mask-image: linear-gradient(to bottom, black, transparent 86%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 0.93fr 1.07fr; align-items: center; min-height: 100svh; padding: calc(var(--header-h) + 2rem) var(--pad) 5rem; }
.hero-copy { position: relative; z-index: 3; padding-top: 2rem; }
.hero-signature { display: flex; gap: 0.9rem; align-items: center; margin: 0 0 1.8rem; color: #bfc1ba; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.hero-signature span { color: var(--lime); }
.hero h1, .manifesto h2, .services h2, .site-feature h2, .portfolio h2, .process h2, .why h2, .experimental h2, .contact h2 {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-wrap: balance;
}
.hero h1 { font-size: clamp(3.6rem, 6.2vw, 7.2rem); }
.hero h1 span { display: block; }
.hero-accent { color: var(--lime); }
.hero-intro { width: min(36rem, 88%); margin: 2rem 0 0; color: #c7c9c3; font-size: clamp(1rem, 1.3vw, 1.2rem); line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2.2rem; }
.button { position: relative; display: inline-flex; min-height: 3.6rem; align-items: center; justify-content: center; padding: .9rem 1.6rem; border: 1px solid transparent; border-radius: 999px; font-size: .95rem; font-weight: 700; cursor: pointer; transition: color var(--fast), background var(--fast), border-color var(--fast), transform var(--fast), box-shadow var(--fast); overflow: hidden; }
.button:active { transform: scale(0.985); }
.button--lime { color: var(--ink); background: var(--lime); }
.button--lime b { background: var(--ink); color: var(--lime); }
.button--lime:hover { background: #dcff62; }
.button--ghost { color: var(--white); border-color: var(--line-dark); background: rgba(255,255,255,.03); }
.button--ghost b { color: var(--white); background: rgba(255,255,255,.08); }
.button--ghost:hover { border-color: rgba(255,255,255,.5); }
.fx-pulse { animation: morazPulse 2.4s ease-in-out infinite; }
@keyframes morazPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(207,255,39,.28); }
  50% { box-shadow: 0 0 0 .72rem rgba(207,255,39,0); }
}
.fx-pulse:hover, .fx-pulse:focus-visible { animation-play-state: paused; }

.hero-visual { position: absolute; z-index: 0; inset: 0; height: auto; min-height: 0; perspective: none; pointer-events: none; }
.hero-visual__halo { position: absolute; inset: 18% 4% 5% 22%; border-radius: 50%; background: radial-gradient(circle, rgba(207,255,39,.18), transparent 64%); filter: blur(24px); }
.hero-visual__frame { position: absolute; inset: 0; overflow: hidden; border-radius: 0; transform-style: preserve-3d; will-change: transform; }
.hero-visual__frame::after { content: ""; position: absolute; inset: 0; border-radius: 0; background: linear-gradient(90deg, rgba(5,5,5,.88) 0%, rgba(5,5,5,.7) 34%, rgba(5,5,5,.24) 70%, rgba(5,5,5,.08) 100%), linear-gradient(0deg, rgba(5,5,5,.72) 0%, transparent 34%, rgba(5,5,5,.18) 100%); pointer-events: none; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; filter: saturate(1.03) contrast(1.04); transform: scale(1.035); will-change: transform; }
body:not(.gsap-ready) .hero-visual img { animation: symbolDrift 8s ease-in-out infinite alternate; }
@keyframes symbolDrift { to { transform: translateY(-9px) rotate(1.4deg) scale(1.075); } }
.hero-visual__shine { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at var(--mx, 40%) var(--my, 35%), rgba(255,255,255,.16), transparent 18%); mix-blend-mode: screen; opacity: .7; }
.hero-visual__caption { position: absolute; right: 1.2rem; bottom: 1rem; margin: 0; color: #f5f5f2; font-size: .8rem; font-weight: 600; letter-spacing: .03em; text-shadow: 0 2px 12px #000; }
.scroll-cue { position: absolute; z-index: 4; bottom: 1.6rem; left: var(--pad); display: flex; align-items: center; gap: 0.8rem; color: #888c82; font-size: 0.72rem; }
.scroll-cue i { position: relative; width: 3.2rem; height: 1px; overflow: hidden; background: rgba(255,255,255,.18); }
.scroll-cue i::after { content: ""; position: absolute; inset: 0; background: var(--lime); transform: translateX(-100%); animation: scrollLine 1.9s ease-in-out infinite; }
@keyframes scrollLine { 50%, 100% { transform: translateX(100%); } }

.section-editorial { position: relative; color: var(--ink); background: var(--paper); }
.section-dark { position: relative; color: var(--white); background: var(--ink); }
.section-index { display: inline-flex; align-items: center; width: max-content; padding: .55rem .9rem; border-radius: 999px; color: var(--ink); background: var(--lime); font-size: .9rem; font-weight: 700; letter-spacing: .015em; text-transform: none; }
.section-index--dark { color: var(--lime); background: rgba(207,255,39,.1); }

.manifesto { padding: 7rem var(--pad) 0; overflow: hidden; }
.manifesto-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 5vw; align-items: end; min-height: 31rem; padding: 5rem 0 6rem; }
.manifesto h2 { font-size: clamp(4rem, 8vw, 9rem); }
.manifesto h2 em, .services h2 em, .site-feature h2 em, .portfolio h2 em, .process h2 em, .why h2 em, .experimental h2 em, .contact h2 em { color: var(--lime-deep); font-style: normal; }
.manifesto-copy { align-self: center; width: min(34rem, 100%); }
.manifesto-copy p { color: #54574f; }
.manifesto-copy .lead { margin: 0 0 1.5rem; color: var(--ink); font-family: "Bricolage Grotesque", sans-serif; font-size: clamp(1.45rem, 2.2vw, 2.3rem); line-height: 1.25; letter-spacing: -.04em; }
.js-fill-text [data-fill-word] { color: rgba(5,5,5,.22); transition: color .2s linear; }
.section-dark .js-fill-text [data-fill-word] { color: rgba(255,255,255,.25); }
.fx-curtain { position: relative; display: inline-block; overflow: hidden; vertical-align: bottom; }
.fx-curtain > span { display: inline-block; }
body.gsap-ready .fx-curtain:not(.is-running) > span { opacity: 0; }
.fx-curtain::after { position: absolute; inset: 0; content: ""; background: var(--lime); transform: scaleX(0); transform-origin: left; pointer-events: none; }
.fx-curtain.is-running::after { animation: curtainWipe .9s cubic-bezier(.76,0,.24,1) both; }
.fx-curtain.is-running > span { animation: curtainReveal .01s linear .45s both; }
@keyframes curtainWipe {
  0% { transform: scaleX(0); transform-origin: left; }
  48% { transform: scaleX(1); transform-origin: left; }
  52% { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}
@keyframes curtainReveal { to { opacity: 1; } }
.manifesto-marquee { margin-inline: calc(var(--pad) * -1); overflow: hidden; white-space: nowrap; }
.manifesto-marquee div { width: max-content; padding: 1.35rem var(--pad); font: 600 clamp(1.3rem, 2.2vw, 2rem) "Bricolage Grotesque", sans-serif; animation: marquee 18s linear infinite; }
.manifesto-marquee span { color: var(--lime-deep); margin: 0 .7em; }
.manifesto-marquee i { margin-left: 8vw; color: #777b72; font-style: normal; }
@keyframes marquee { to { transform: translateX(-26%); } }

.services { padding: 8rem var(--pad); }
.services-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 8vw; align-items: end; padding: 4rem 0 6rem; }
.services h2 { font-size: clamp(3.7rem, 7vw, 7.8rem); }
.services-heading > p { width: min(29rem, 100%); margin: 0 0 1rem; color: #60635c; font-size: 1.05rem; }
.services-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
.service-row { position: relative; display: grid; grid-template-columns: 1fr; align-content: start; gap: .9rem; min-height: 15rem; padding: 1.5rem; overflow: hidden; border: 1px solid rgba(5,5,5,.08); border-radius: 1.5rem; color: var(--ink); background: rgba(255,255,255,.42); transition: transform var(--normal) var(--ease), color var(--fast), background var(--fast), box-shadow var(--normal); }
.service-row::after { content: ""; position: absolute; right: -2.6rem; bottom: -4rem; width: 9rem; aspect-ratio: 1; border-radius: 50%; background: rgba(207,255,39,.26); filter: blur(1px); transition: transform var(--slow) var(--ease), background var(--normal); }
.service-row:nth-child(3n + 2)::after { width: 6rem; right: 1.5rem; bottom: -3.5rem; }
.service-row:hover, .service-row:focus-visible { color: var(--white); background: var(--ink); transform: translateY(-5px); box-shadow: 0 1.5rem 3rem rgba(5,5,5,.12); }
.service-row:hover::after, .service-row:focus-visible::after { background: rgba(207,255,39,.48); transform: scale(1.24); }
.service-row__tag { position: relative; z-index: 1; width: max-content; padding: .42rem .75rem; border-radius: 999px; color: #263500; background: var(--lime); font-size: .88rem; font-weight: 700; }
.service-row h3 { position: relative; z-index: 1; margin: .65rem 0 0; font: 600 clamp(1.85rem, 3vw, 3.3rem) "Bricolage Grotesque", sans-serif; letter-spacing: -.04em; line-height: 1; }
.service-row p { position: relative; z-index: 1; max-width: 29rem; margin: 0; color: #555950; font-size: .96rem; transition: color var(--fast); }
.service-row:hover p, .service-row:focus-visible p { color: #d9dbd5; }

.site-feature { display: grid; grid-template-columns: .8fr 1.2fr; gap: 5vw; align-items: center; min-height: 56rem; padding: 8rem var(--pad); overflow: hidden; }
.site-feature__copy { position: relative; z-index: 3; }
.site-feature .section-index { margin-bottom: 4rem; }
.site-feature h2 { font-size: clamp(3.5rem, 5.5vw, 6.4rem); }
.site-feature__copy > p { width: min(31rem, 100%); margin: 2rem 0; color: #a8aca3; font-size: 1.05rem; }
.site-feature ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem 1.5rem; padding: 0; margin: 2rem 0 3rem; list-style: none; }
.site-feature li { position: relative; padding-left: 1.2rem; color: #d9dbd5; font-size: .88rem; }
.site-feature li::before { content: ""; position: absolute; left: 0; top: .62em; width: .42rem; aspect-ratio: 1; border-radius: 50%; background: var(--lime); }
.text-link { position: relative; display: inline-flex; gap: 1rem; color: var(--lime); font-weight: 700; }
.text-link span { transition: transform var(--normal) var(--ease); }
.text-link:hover span { transform: rotate(-45deg); }
.device-stage { position: relative; min-height: 38rem; perspective: 1200px; }
.device-stage::before { content: ""; position: absolute; inset: 7% -20% -18% 8%; background: radial-gradient(circle, rgba(207,255,39,.15), transparent 62%); filter: blur(12px); }
.device-laptop { position: absolute; inset: 8% 3% 9% 3%; overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: 1.5rem; background: #10110d; box-shadow: 0 3rem 8rem rgba(0,0,0,.65); transform: rotateY(-10deg) rotateX(3deg); }
.device-laptop::after { content: ""; position: absolute; inset: auto -5% -1.6rem; height: 1.7rem; border-radius: 0 0 2rem 2rem; background: linear-gradient(#64665f, #171814 55%); }
.device-bar { display: flex; align-items: center; gap: .35rem; height: 2.5rem; padding: 0 1rem; background: #141611; }
.device-bar i { width: .5rem; aspect-ratio: 1; border-radius: 50%; background: #4f5349; }
.device-bar span { margin-left: .7rem; color: #7f8379; font-size: .58rem; }
.device-laptop img { width: 100%; height: calc(100% - 2.5rem); object-fit: contain; object-position: center; background: #f4f5f5; }
.device-phone { position: absolute; z-index: 2; right: -2%; bottom: 1%; width: 27%; aspect-ratio: .52; padding: .55rem; overflow: hidden; border: 2px solid #565950; border-radius: 2.2rem; background: #0a0b08; box-shadow: 0 2rem 5rem rgba(0,0,0,.75); transform: rotate(4deg); }
.device-phone img { width: 100%; height: 100%; border-radius: 1.7rem; object-fit: cover; object-position: center top; }
.device-phone__island { position: absolute; z-index: 2; top: .9rem; left: 50%; width: 36%; height: .65rem; border-radius: 1rem; background: #050505; transform: translateX(-50%); }
.device-badge { position: absolute; z-index: 3; top: 2%; left: 0; padding: .8rem 1rem; color: var(--ink); background: var(--lime); border-radius: 0 1rem 1rem 1rem; font-size: .75rem; box-shadow: 0 1rem 3rem rgba(0,0,0,.35); }
.device-badge strong { font-size: .9rem; }

.portfolio { padding: 8rem var(--pad); }
.portfolio-heading { display: flex; justify-content: space-between; gap: 3rem; align-items: end; padding: 4rem 0 3rem; }
.portfolio h2 { font-size: clamp(4rem, 7vw, 8rem); }
.portfolio-heading p { margin: 1.6rem 0 0; color: #969a90; }
.portfolio-filters { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 2.2rem; }
.portfolio-filter { padding: .65rem 1rem; border: 1px solid var(--line-dark); border-radius: 999px; color: #aeb2a7; background: transparent; font-size: .75rem; cursor: pointer; transition: background var(--fast), color var(--fast), border-color var(--fast); }
.portfolio-filter:hover, .portfolio-filter[aria-pressed="true"] { color: var(--ink); background: var(--lime); border-color: var(--lime); }
.portfolio-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 4.5rem 1.25rem; }
.project-card { grid-column: span 6; min-width: 0; opacity: 1; transition: opacity var(--normal), transform var(--normal); }
.project-card:nth-child(4n + 2), .project-card:nth-child(4n + 3) { padding-top: 5rem; }
.project-card[hidden] { display: none; }
.project-card__link { display: block; }
.project-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #151611; border-radius: var(--radius); }
.project-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.45)); opacity: 0; transition: opacity var(--normal); }
.project-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform var(--slow) var(--ease), filter var(--slow); will-change: transform; }
.project-card__badge { position: absolute; z-index: 2; top: 1rem; left: 1rem; padding: .5rem .75rem; border-radius: 999px; color: var(--ink); background: var(--lime); font-size: .68rem; font-weight: 700; }
.project-card:hover .project-card__media img, .project-card:focus-within .project-card__media img { transform: scale(1.04); filter: saturate(1.08); }
.project-card:hover .project-card__media::after, .project-card:focus-within .project-card__media::after { opacity: 1; }
.project-card__info { display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: start; padding: 1.2rem .15rem 0; }
.project-card__info h3 { margin: 0; font: 600 clamp(1.5rem, 2.5vw, 2.4rem) "Bricolage Grotesque", sans-serif; letter-spacing: -.04em; }
.project-card__info p { margin: .45rem 0 0; color: #8e9288; font-size: .84rem; line-height: 1.55; }
.project-card__cta { display: inline-flex; align-items: center; justify-content: center; min-height: 2.9rem; padding: 0 1.2rem; border: 1px solid rgba(207,255,39,.48); border-radius: 999px; color: var(--ink); background: var(--lime); font-size: .78rem; font-weight: 700; white-space: nowrap; transition: transform var(--normal) var(--ease), background var(--fast); }
.project-card:hover .project-card__cta { background: #e1ff83; transform: translateY(-2px); }
.project-card__category { display: block; margin-top: .7rem; color: var(--lime); font-size: .68rem; }

.process { padding: 8rem var(--pad); }
.process-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; padding-top: 5rem; }
.process-sticky { position: sticky; top: 8rem; align-self: start; }
.process h2 { font-size: clamp(3.4rem, 5vw, 6rem); }
.process-sticky > p { width: min(27rem, 100%); color: #9da198; margin: 1.8rem 0 2.5rem; }
.process-steps { --progress: 0; position: relative; display: grid; gap: 1.3rem; margin: 0; padding: .2rem 0 .2rem 2.5rem; list-style: none; }
.process-steps::before, .process-steps::after { position: absolute; top: 1.2rem; bottom: 1.2rem; left: .38rem; width: 2px; content: ""; }
.process-steps::before { background: rgba(207,255,39,.26); }
.process-steps::after { background: var(--lime); box-shadow: 0 0 1rem rgba(207,255,39,.48); transform: scaleY(var(--progress)); transform-origin: top; }
.process-steps li { position: relative; display: block; min-height: 0; padding: .8rem 0 1.2rem; color: var(--white); transition: color var(--normal); }
.process-steps li::before { position: absolute; z-index: 2; top: .95rem; left: -2.49rem; width: .78rem; height: .78rem; border: 2px solid rgba(255,255,255,.42); border-radius: 50%; background: var(--ink); content: ""; transition: border-color var(--normal), background var(--normal), box-shadow var(--normal), transform var(--normal); }
.process-steps li.is-active::before { border-color: var(--lime); background: var(--lime); box-shadow: 0 0 .9rem rgba(207,255,39,.62); transform: scale(1.16); }
.process-step__kicker { display: block; color: #d4eca0; font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; transition: color var(--normal); }
.process-steps h3 { margin: .2rem 0 .2rem; color: rgba(255,255,255,.42); font: 700 clamp(1.9rem, 3.2vw, 3rem) "Bricolage Grotesque", sans-serif; letter-spacing: -.035em; line-height: 1.02; transition: color var(--normal); }
.process-steps li.is-active h3 { color: var(--white); }
.process-steps p { width: min(29rem, 100%); margin: 0; color: #afb3a9; font-size: .95rem; }

.why { padding: 8rem var(--pad); }
.why-heading { padding: 4rem 0 6rem; }
.why h2 { width: min(76rem, 100%); font-size: clamp(3.6rem, 6.2vw, 7rem); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.why-grid article { min-height: 19rem; padding: 1.5rem; border: 1px solid rgba(5,5,5,.08); border-radius: 1.5rem; background: rgba(255,255,255,.38); transition: transform var(--normal) var(--ease), background var(--normal), box-shadow var(--normal); }
.why-grid article:hover { transform: translateY(-6px) rotate(-.5deg); background: white; box-shadow: 0 1.4rem 3rem rgba(5,5,5,.1); }
.why-chip { display: inline-flex; align-items: center; min-height: 2.1rem; padding: .35rem .8rem; border-radius: 999px; color: var(--ink); background: var(--lime); font-size: .88rem; font-weight: 700; }
.why-grid h3 { margin: 4.5rem 0 .8rem; font: 600 clamp(1.45rem, 2vw, 2.1rem) "Bricolage Grotesque", sans-serif; letter-spacing: -.03em; }
.why-grid p { margin: 0; color: #454940; font-size: .94rem; }

.experimental { position: relative; display: grid; place-items: center; min-height: 46rem; padding: 8rem var(--pad); overflow: hidden; text-align: center; background: #090a07; }
.experimental::before { content: ""; position: absolute; inset: 0; opacity: .18; background: repeating-linear-gradient(90deg, transparent 0 8%, rgba(255,255,255,.05) 8% calc(8% + 1px)); }
.experimental > *:not(.experimental-orb) { position: relative; z-index: 2; }
.experimental > p { margin: 0 0 1.5rem; color: var(--lime); font-size: .75rem; font-weight: 700; }
.experimental h2 { max-width: 72rem; font-size: clamp(3.6rem, 7vw, 8rem); }
.experimental .button { margin-top: 2.6rem; }
.experimental-orb { position: absolute; inset: 0; display: grid; place-items: center; filter: blur(.2px); }
.experimental-orb i { position: absolute; width: clamp(17rem, 31vw, 35rem); aspect-ratio: 1; border-radius: 50%; opacity: .3; }
.experimental-orb i:first-child { background: radial-gradient(circle at 35% 30%, #edffae, var(--lime) 16%, #384700 68%, #050505 72%); transform: translateX(-28%); }
.experimental-orb i:last-child { border: 1px solid var(--lime); background: radial-gradient(circle at 30% 24%, rgba(255,255,255,.25), rgba(207,255,39,.12) 24%, rgba(0,0,0,.7) 68%); transform: translateX(28%); }

.contact { padding: 8rem var(--pad) 5rem; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 8vw; padding-top: 4rem; }
.contact h2 { font-size: clamp(3.8rem, 6.5vw, 7.4rem); }
.contact-copy > p { width: min(31rem, 100%); margin: 2rem 0 3rem; color: #9ca097; }
.contact-direct { display: grid; width: min(30rem, 100%); grid-template-columns: 1fr 1fr; gap: .8rem; }
.contact-direct a { display: grid; gap: .45rem; padding: 1rem; border: 1px solid rgba(255,255,255,.12); border-radius: 1rem; background: linear-gradient(140deg, rgba(255,255,255,.08), rgba(255,255,255,.025)); transition: transform var(--normal) var(--ease), border-color var(--fast), background var(--fast); }
.contact-direct a:hover { transform: translateY(-4px); border-color: var(--lime); background: rgba(207,255,39,.08); }
.contact-direct small { color: var(--lime); font-size: .76rem; font-weight: 700; }
.contact-direct strong { font: 600 1.1rem "Bricolage Grotesque", sans-serif; }
.contact-form { align-self: start; padding: 2rem; border: 1px solid var(--line-dark); border-radius: 1.6rem; background: #0c0d0a; }
.form-row { display: grid; gap: 1rem; margin-bottom: 1.4rem; }
.form-row--split { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.contact-form label { display: grid; gap: .55rem; }
.contact-form label > span { color: #d8dbd2; font-size: .9rem; font-weight: 600; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; min-height: 3.2rem; padding: .7rem 0; border: 0; border-bottom: 1px solid #373a33; border-radius: 0; color: white; background: transparent; outline: none; transition: border-color var(--fast); }
.contact-form textarea { resize: vertical; min-height: 7rem; }
.contact-form select { appearance: auto; }
.contact-form option { color: var(--ink); background: white; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--lime); }
.contact-form input:focus-visible, .contact-form textarea:focus-visible, .contact-form select:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }
.contact-form select { color: white; background-color: #0c0d0a; }
.contact-form [aria-invalid="true"] { border-color: #ff7777; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #969b90; }
.consent { grid-template-columns: auto 1fr; align-items: start; gap: .7rem !important; margin: 1rem 0 1.6rem; }
.consent input { width: 1rem; min-height: 1rem; margin-top: .15rem; accent-color: var(--lime); }
.consent span { font-weight: 400 !important; line-height: 1.45; }
.form-footer { display: flex; align-items: center; gap: 1.2rem; }
.form-status { flex: 1; margin: 0; color: #777b72; font-size: .7rem; }
.form-status.is-error { color: #ff9191; }
.form-status.is-working { color: var(--lime); }

.site-footer { padding: 4.5rem var(--pad) 2rem; color: var(--white); background: #080907; }
.site-footer__top { display: flex; justify-content: space-between; align-items: end; padding-bottom: 3rem; }
.site-footer .brand-mark i { background: var(--lime); box-shadow: 0 0 1.6rem rgba(207,255,39,.3); }
.site-footer .brand-mark i:last-child { background: #8ba900; }
.site-footer .brand-name { font-size: clamp(2rem, 4vw, 4.5rem); color: var(--white); }
.site-footer .brand-name span { color: var(--lime); font-weight: 500; }
.site-footer__top p { margin: 0; color: #d8dbd2; font-size: .9rem; font-weight: 600; }
.site-footer__bottom { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: center; padding-top: 1.5rem; color: #afb3a9; font-size: .82rem; }
.site-footer__bottom p { margin: 0; }
.site-footer__bottom nav { display: flex; gap: 1.5rem; }
.site-footer__bottom > a { justify-self: end; color: var(--lime); }

.contact-dock { position: fixed; z-index: 70; right: 1.3rem; bottom: 1.2rem; display: grid; justify-items: end; gap: .55rem; }
.contact-bubble { display: flex; align-items: center; gap: .7rem; min-height: 3.25rem; padding: .25rem; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(12,13,10,.9); box-shadow: 0 .8rem 2.5rem rgba(0,0,0,.32); backdrop-filter: blur(14px); transition: transform var(--normal) var(--ease), border-color var(--fast); }
.contact-bubble svg { width: 2.7rem; height: 2.7rem; padding: .65rem; border-radius: 50%; fill: none; stroke: currentColor; stroke-width: 1.8; }
.contact-bubble__label { max-width: 0; overflow: hidden; white-space: nowrap; opacity: 0; font-size: .72rem; font-weight: 700; transition: max-width var(--normal) var(--ease), opacity var(--normal), margin var(--normal); }
.contact-bubble:hover, .contact-bubble:focus-visible { transform: translateX(-.2rem); border-color: var(--lime); }
.contact-bubble:hover .contact-bubble__label, .contact-bubble:focus-visible .contact-bubble__label { max-width: 10rem; margin-left: .75rem; opacity: 1; }
.contact-bubble--whatsapp { position: relative; color: var(--ink); background: var(--lime); border-color: var(--lime); }
.contact-bubble--instagram svg { color: white; background: #21231d; }
.contact-bubble--whatsapp { animation: morazPulse 2.4s ease-in-out infinite; }
.contact-bubble--whatsapp:hover, .contact-bubble--whatsapp:focus-visible { animation-play-state: paused; }
.cursor-label { position: fixed; z-index: 150; top: 0; left: 0; display: grid; place-items: center; width: 4.5rem; aspect-ratio: 1; border-radius: 50%; color: var(--ink); background: var(--lime); font-size: .75rem; font-weight: 800; pointer-events: none; opacity: 0; transform: translate(-50%, -50%) scale(.75); }
.noscript { position: fixed; z-index: 300; inset: auto 1rem 1rem; padding: 1rem; color: var(--ink); background: var(--lime); }
body.motion-fallback-ready [data-motion-reveal] { opacity: 0; transform: translate3d(0, 1rem, 0); transition: opacity .62s var(--ease), transform .62s var(--ease); }
body.motion-fallback-ready [data-motion-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .header-contact { display: none; }
  .hero-grid { grid-template-columns: 1fr; align-content: center; padding-top: calc(var(--header-h) + 4rem); }
  .hero-copy { width: min(48rem, 100%); }
  .hero-visual { height: auto; min-height: 0; margin: 0; }
  .hero-visual__frame { inset: 0; }
  .hero-visual img { object-position: 55% center; }
  .manifesto-grid, .services-heading, .site-feature, .process-layout, .contact-grid { grid-template-columns: 1fr; }
  .manifesto-grid { gap: 3rem; }
  .site-feature { min-height: auto; }
  .device-stage { min-height: 40rem; }
  .process-sticky { position: static; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  :root { --pad: 1.15rem; --header-h: 4.7rem; --radius: 1rem; }
  .site-header { min-height: var(--header-h); }
  .brand-name { font-size: 1.05rem; }
  .brand-mark { width: 1.9rem; height: 1.15rem; }
  .brand-mark i { width: 1.15rem; }
  .menu-toggle { width: 2.7rem; height: 2.7rem; }
  .menu-toggle span { left: .72rem; width: 1.2rem; }
  .menu-toggle span:first-child { top: 1.08rem; }
  .menu-toggle span:last-child { top: 1.52rem; }
  .menu-toggle[aria-expanded="true"] span:first-child, .menu-toggle[aria-expanded="true"] span:last-child { top: 1.3rem; }
  .menu-panel nav a { font-size: clamp(2.7rem, 15vw, 4.8rem); }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); min-height: 100svh; padding-top: 7.5rem; padding-bottom: 3rem; }
  .hero-copy { width: 100%; min-width: 0; }
  .hero-signature { gap: .55rem; margin-bottom: 1.3rem; font-size: .61rem; letter-spacing: .08em; }
  .hero h1 { max-width: 100%; font-size: clamp(2.45rem, 10.6vw, 3.25rem); }
  .hero-intro { width: 100%; margin-top: 1.4rem; font-size: .96rem; }
  .hero-actions { display: grid; grid-template-columns: minmax(0, 1fr); width: 100%; min-width: 0; margin-top: 1.6rem; }
  .hero-actions > .button { width: 100%; min-width: 0; justify-content: center; text-align: center; white-space: normal; }
  .hero-visual { height: auto; min-height: 0; margin: 0; }
  .hero-visual__frame { inset: 0; border-radius: 0; }
  .hero-visual__frame::after { background: linear-gradient(180deg, rgba(5,5,5,.52) 0%, rgba(5,5,5,.34) 52%, rgba(5,5,5,.7) 100%), linear-gradient(90deg, rgba(5,5,5,.44), rgba(5,5,5,.04)); }
  .hero-visual img { object-position: 70% center; }
  .hero-visual__caption, .scroll-cue { display: none; }
  .manifesto, .services, .site-feature, .portfolio, .process, .why, .contact { padding-top: 5rem; padding-bottom: 5rem; }
  .manifesto-grid { min-height: auto; padding: 3.5rem 0 4rem; }
  .manifesto h2, .services h2, .portfolio h2, .why h2, .contact h2 { font-size: clamp(3.2rem, 16vw, 5rem); }
  .manifesto-copy .lead { font-size: 1.35rem; }
  .manifesto-marquee div { font-size: 1.1rem; }
  .services-heading { gap: 2rem; padding: 3.5rem 0; }
  .services-list { grid-template-columns: 1fr; gap: .8rem; }
  .service-row { min-height: 13rem; padding: 1.25rem; }
  .service-row p { font-size: .92rem; }
  .site-feature { gap: 3rem; }
  .site-feature .section-index { margin-bottom: 3rem; }
  .site-feature h2, .process h2, .experimental h2 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .site-feature ul { grid-template-columns: 1fr; }
  .device-stage { min-height: 25rem; }
  .device-laptop { inset: 7% 0 9%; transform: rotateY(-4deg) rotateX(2deg); }
  .device-phone { right: -2%; width: 30%; }
  .device-badge { top: 0; }
  .portfolio-heading { align-items: start; flex-direction: column; padding: 3.5rem 0 2rem; }
  .portfolio-grid { grid-template-columns: 1fr; gap: 3rem; }
  .project-card { grid-column: auto; }
  .project-card:nth-child(4n + 2), .project-card:nth-child(4n + 3) { padding-top: 0; }
  .project-card__info p { font-size: .78rem; }
  .process-layout { padding-top: 3.5rem; gap: 4rem; }
  .why-heading { padding: 3.5rem 0 4rem; }
  .why-grid { grid-template-columns: 1fr; }
  .why-grid article { min-height: 14rem; padding: 1.25rem; }
  .why-grid h3 { margin-top: 2.5rem; }
  .experimental { min-height: 38rem; padding-block: 6rem; }
  .experimental-orb i { width: 23rem; }
  .contact-grid { gap: 4rem; }
  .contact-form { padding: 1.2rem; border-radius: 1.15rem; }
  .form-row--split { grid-template-columns: 1fr; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .button { width: 100%; justify-content: center; }
  .site-footer__top { align-items: start; flex-direction: column; gap: 2rem; }
  .site-footer__bottom { grid-template-columns: 1fr auto; }
  .site-footer__bottom nav { display: none; }
  .contact-dock { right: .7rem; bottom: .7rem; }
  .contact-bubble--instagram { display: none; }
  .contact-bubble__label { display: none; }
  .cursor-label { display: none; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: clamp(2.35rem, 10.6vw, 2.7rem); }
  .hero-visual { height: 24rem; }
  .services h2, .manifesto h2, .portfolio h2, .why h2, .contact h2 { font-size: 3rem; }
  .project-card__info { grid-template-columns: 1fr auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-visual__frame, .hero-visual img { transform: none !important; animation: none !important; }
  .js-fill-text [data-fill-word], .section-dark .js-fill-text [data-fill-word] { color: inherit !important; }
  .process-steps { --progress: 1; }
  .process-steps li::before { border-color: var(--lime); background: var(--lime); }
  .process-steps h3 { color: var(--white); }
  .cursor-label { display: none !important; }
  body.motion-fallback-ready [data-motion-reveal] { transform: none !important; transition: opacity .24s ease !important; }
}
