:root {
  --orange: #ff3300;
  --orange-bright: #ff5a33;
  --orange-pale: #ffe5dd;
  --ink: #101010;
  --muted: #66645f;
  --paper: #f6f4ee;
  --white: #ffffff;
  --line: rgba(16, 16, 16, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --shell: min(1380px, calc(100vw - 64px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
  font-synthesis: none;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { color: var(--white); background: var(--orange); }
h1, h2, h3 { overflow-wrap: normal; word-break: normal; text-wrap: balance; }

.shell { width: var(--shell); margin-inline: auto; }
.section { position: relative; padding: clamp(92px, 10vw, 160px) 0; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-140%);
}
.skip-link:focus { transform: translateY(0); }

.scroll-progress { position: fixed; inset: 0 0 auto; z-index: 1500; height: 3px; pointer-events: none; }
.scroll-progress span { display: block; width: 100%; height: 100%; background: var(--orange); transform: scaleX(0); transform-origin: left; }

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  background: var(--white);
  transition: opacity 0.65s var(--ease), visibility 0.65s var(--ease);
}
.page-loader.is-hidden { opacity: 0; visibility: hidden; }
.loader-lockup { display: grid; width: min(260px, 68vw); gap: 18px; text-align: center; }
.loader-lockup img { width: 100%; }
.loader-lockup p { margin: 0; color: var(--muted); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.loader-track { height: 4px; overflow: hidden; background: #dedbd3; }
.loader-track span { display: block; width: 36%; height: 100%; background: var(--orange); animation: loaderMove 1s var(--ease) infinite; }
@keyframes loaderMove { from { transform: translateX(-110%); } to { transform: translateX(390%); } }

.site-header { position: fixed; top: 14px; left: 0; right: 0; z-index: 1000; transition: transform 0.45s var(--ease); }
.site-header.is-hidden { transform: translateY(-140%); }
.nav-shell {
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  width: var(--shell);
  min-height: 72px;
  margin: 0 auto;
  padding: 9px 10px 9px 22px;
  border: 1px solid rgba(16, 16, 16, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(16, 16, 16, 0.08);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
}
.brand { width: 156px; }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(22px, 3vw, 44px); }
.desktop-nav a { position: relative; color: #4f4e4b; font-size: 0.88rem; font-weight: 750; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -9px; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: right; transition: transform 0.3s var(--ease); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: inline-flex; align-items: center; gap: 18px; min-height: 50px; padding: 0 16px; border: 1px solid var(--ink); border-radius: 10px; color: var(--white); background: var(--ink); font-size: 0.84rem; font-weight: 800; transition: color 0.3s ease, background 0.3s ease; }
.nav-cta:hover { background: var(--orange); border-color: var(--orange); }
.nav-cta span { font-size: 1rem; }
.menu-toggle { display: none; width: 48px; height: 48px; border: 0; border-radius: 10px; background: var(--ink); }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--white); transition: transform 0.3s ease; }
.menu-toggle.is-active span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle.is-active span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu { position: fixed; inset: 0; z-index: 900; display: grid; align-content: center; padding: 110px 32px 46px; color: var(--ink); background: var(--white); opacity: 0; visibility: hidden; transform: translateY(-18px); transition: opacity 0.4s ease, transform 0.4s var(--ease), visibility 0.4s; }
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { display: grid; grid-template-columns: 48px 1fr; align-items: baseline; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: clamp(1.9rem, 8vw, 3.4rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; }
.mobile-menu nav a span { color: var(--orange); font-size: 0.75rem; letter-spacing: 0; }
.mobile-menu > p { margin: 34px 0 0; color: var(--muted); }

.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; min-height: 58px; padding: 0 20px; border: 1px solid transparent; border-radius: 10px; font-size: 0.9rem; font-weight: 800; transition: transform 0.3s var(--ease), box-shadow 0.3s ease, color 0.3s ease, background 0.3s ease; }
.button:hover, .button:focus-visible { transform: translateY(-3px); }
.button-primary { color: var(--white); background: var(--orange); box-shadow: 0 18px 42px rgba(255, 51, 0, 0.22); }
.button-primary:hover { box-shadow: 0 24px 52px rgba(255, 51, 0, 0.3); }
.button-secondary { border-color: rgba(16, 16, 16, 0.18); background: rgba(255, 255, 255, 0.82); }
.button-secondary:hover { border-color: var(--ink); }
.button-dark { color: var(--white); background: var(--ink); }
.text-link { display: inline-flex; align-items: center; gap: 12px; padding-bottom: 5px; border-bottom: 2px solid var(--orange); font-weight: 800; }

.hero { position: relative; min-height: 100svh; overflow: hidden; isolation: isolate; background: linear-gradient(135deg, #fff 0%, #f9f7f1 72%, #fff0eb 100%); }
#sparkCanvas, .hero-grid { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
#sparkCanvas { z-index: -1; }
.hero-grid { z-index: -2; opacity: 0.52; background-image: linear-gradient(rgba(16,16,16,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(16,16,16,.045) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to bottom, #000 70%, transparent 100%); }
.hero-layout { display: grid; grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr); gap: clamp(28px, 4vw, 70px); align-items: center; min-height: 100svh; padding-top: 132px; padding-bottom: 118px; }
.hero-copy { position: relative; z-index: 2; min-width: 0; }
.eyebrow, .section-index { margin: 0; color: #5f5e5a; font-size: 0.74rem; font-weight: 850; letter-spacing: 0.15em; text-transform: uppercase; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.signal-square { width: 12px; height: 12px; background: var(--orange); transform: rotate(45deg); box-shadow: 6px 6px 0 var(--orange-pale); }
.hero h1 { max-width: 690px; margin: 0; font-size: clamp(3.65rem, 5.25vw, 6.3rem); font-weight: 700; letter-spacing: 0; line-height: 1.055; }
.hero-line { display: block; overflow: hidden; padding-right: .08em; padding-bottom: .05em; }
.hero-line i { display: block; font-style: normal; transform: translateY(112%); animation: heroRise 1s var(--ease) forwards; }
.hero-line:nth-child(2) i { animation-delay: .08s; }
.hero-line:nth-child(3) i { animation-delay: .16s; }
.hero-line em { color: var(--orange); font-style: normal; }
@keyframes heroRise { to { transform: translateY(0); } }
.hero-lead { max-width: 650px; margin: 30px 0 0; color: var(--muted); font-size: clamp(1.08rem, 1.5vw, 1.35rem); line-height: 1.62; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 640px; margin-top: 42px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hero-proof div { display: grid; gap: 1px; padding: 16px 14px 16px 0; }
.hero-proof div + div { padding-left: 20px; border-left: 1px solid var(--line); }
.hero-proof strong { font-size: 0.92rem; }
.hero-proof span { color: var(--muted); font-size: 0.76rem; }

.hero-visual { position: relative; min-width: 0; min-height: clamp(610px, 49vw, 760px); isolation: isolate; }
#heroVisualCanvas { position: absolute; inset: -8%; z-index: -3; width: 116%; height: 116%; pointer-events: none; }
.visual-crosshair { position: absolute; inset: 8%; z-index: -2; opacity: .32; }
.visual-crosshair i { position: absolute; display: block; background: rgba(16,16,16,.18); }
.visual-crosshair i:first-child { left: 50%; top: 0; width: 1px; height: 100%; }
.visual-crosshair i:last-child { left: 0; top: 50%; width: 100%; height: 1px; }
.visual-crosshair::before, .visual-crosshair::after { content: ""; position: absolute; left: 50%; top: 50%; width: 58%; aspect-ratio: 1; border: 1px solid rgba(16,16,16,.11); transform: translate(-50%,-50%) rotate(45deg); }
.visual-crosshair::after { width: 36%; border-color: rgba(255,51,0,.3); animation: crosshairTurn 11s linear infinite; }
@keyframes crosshairTurn { to { transform: translate(-50%,-50%) rotate(405deg); } }
.visual-beam { position: absolute; z-index: -1; display: block; background: var(--orange); transform-origin: center; transition: translate .25s linear; }
.visual-beam-a { left: 5%; top: 15%; width: 74%; height: 72px; transform: rotate(-37deg); animation: visualBeamA 6s ease-in-out infinite alternate; }
.visual-beam-b { right: -8%; bottom: 22%; width: 68%; height: 46px; transform: rotate(31deg); background: var(--ink); animation: visualBeamB 7.5s ease-in-out infinite alternate; }
.visual-beam-c { left: 43%; top: 5%; width: 48px; height: 88%; transform: rotate(39deg); background: rgba(255,51,0,.18); animation: visualBeamC 9s ease-in-out infinite alternate; }
@keyframes visualBeamA { to { transform: rotate(-29deg) translate(24px,18px); } }
@keyframes visualBeamB { to { transform: rotate(39deg) translate(-20px,-10px); } }
@keyframes visualBeamC { to { transform: rotate(28deg) translateY(18px); } }
.visual-mark { position: absolute; left: 50%; top: 48%; z-index: 4; width: min(48%, 330px); transform: translate(-50%,-50%); filter: drop-shadow(18px 22px 0 rgba(255,51,0,.17)); transition: translate .25s linear; animation: visualMarkFloat 4.6s ease-in-out infinite alternate; }
.visual-mark img { width: 100%; }
@keyframes visualMarkFloat { to { transform: translate(-50%,calc(-50% - 16px)) rotate(2deg); } }
.visual-word { position: absolute; z-index: 1; color: transparent; font-size: clamp(3rem,5.4vw,6.5rem); font-weight: 700; letter-spacing: .03em; line-height: 1; -webkit-text-stroke: 1px rgba(16,16,16,.26); transition: translate .25s linear; user-select: none; }
.visual-word-a { left: 1%; top: 6%; }
.visual-word-b { right: 0; top: 40%; color: rgba(255,51,0,.14); -webkit-text-stroke: 1px rgba(255,51,0,.28); }
.visual-word-c { left: 10%; bottom: 5%; color: rgba(16,16,16,.08); }
.visual-signal { position: absolute; z-index: 5; display: grid; gap: 2px; min-width: 128px; padding: 3px 0 3px 13px; border-left: 3px solid var(--orange); transition: translate .25s linear; }
.visual-signal span { color: var(--orange); font-size: .62rem; font-weight: 800; letter-spacing: .08em; }
.visual-signal strong { font-size: .82rem; font-weight: 700; }
.signal-a { left: 2%; top: 31%; }
.signal-b { right: 1%; top: 18%; }
.signal-c { right: 8%; bottom: 8%; }
.visual-spark-field { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.visual-spark-field i { position: absolute; display: block; width: 13px; height: 13px; background: var(--orange); transform: rotate(45deg); animation: fieldSpark 2.4s ease-in-out infinite alternate; }
.visual-spark-field i:nth-child(1) { left: 18%; top: 15%; }
.visual-spark-field i:nth-child(2) { right: 13%; top: 8%; width: 8px; height: 8px; background: var(--ink); animation-delay: -.3s; }
.visual-spark-field i:nth-child(3) { left: 7%; top: 57%; width: 7px; height: 7px; animation-delay: -.6s; }
.visual-spark-field i:nth-child(4) { right: 4%; top: 56%; width: 18px; height: 18px; background: var(--ink); animation-delay: -.9s; }
.visual-spark-field i:nth-child(5) { left: 35%; bottom: 6%; animation-delay: -1.2s; }
.visual-spark-field i:nth-child(6) { right: 30%; bottom: 18%; width: 7px; height: 7px; animation-delay: -1.5s; }
.visual-spark-field i:nth-child(7) { left: 49%; top: 18%; width: 9px; height: 9px; background: var(--ink); animation-delay: -1.8s; }
.visual-spark-field i:nth-child(8) { right: 20%; bottom: 38%; width: 6px; height: 6px; animation-delay: -2.1s; }
@keyframes fieldSpark { to { transform: rotate(135deg) scale(.55); opacity: .35; } }
.visual-caption { position: absolute; left: 2%; bottom: 0; margin: 0; color: rgba(16,16,16,.48); font-size: .62rem; font-weight: 800; letter-spacing: .13em; }

.hero-kinetic { min-width: 0; }
.kinetic-stage { position: relative; min-height: clamp(560px, 62vw, 720px); overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; color: var(--white); background: var(--ink); box-shadow: 0 34px 80px rgba(16,16,16,.2); }
.kinetic-grid, .motion-grid-lines { position: absolute; inset: 0; opacity: .5; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 64px 64px; }
.beam { position: absolute; width: 95%; height: 82px; background: var(--orange); transform-origin: center; animation: beamFloat 7s ease-in-out infinite alternate; }
.beam-one { top: 25%; left: -34%; transform: rotate(-36deg); }
.beam-two { right: -48%; bottom: 28%; height: 54px; transform: rotate(-36deg); animation-delay: -2.3s; }
.beam-three { left: 30%; bottom: -20%; width: 30%; height: 68%; transform: rotate(44deg); background: #fff; opacity: .11; animation-delay: -4s; }
@keyframes beamFloat { from { translate: -12px -10px; } to { translate: 18px 16px; } }
.mark-tile { position: absolute; left: 21%; top: 27%; z-index: 3; display: grid; place-items: center; width: 58%; aspect-ratio: 1.35; padding: 12%; border: 1px solid rgba(16,16,16,.12); border-radius: 14px; background: var(--white); box-shadow: 18px 22px 0 rgba(255,51,0,.88); transition: translate .35s var(--ease); }
.mark-tile img { width: 100%; }
.kinetic-label { position: absolute; z-index: 4; display: grid; gap: 4px; min-width: 176px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.25); border-radius: 9px; background: rgba(16,16,16,.82); box-shadow: 0 12px 28px rgba(0,0,0,.25); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); transition: translate .35s var(--ease); }
.kinetic-label span { color: var(--orange-bright); font-size: .65rem; font-weight: 850; }
.kinetic-label strong { font-size: .8rem; }
.label-a { top: 11%; left: 7%; }
.label-b { top: 16%; right: 5%; }
.label-c { right: 8%; bottom: 11%; }
.stage-caption { position: absolute; left: 20px; bottom: 16px; margin: 0; color: rgba(255,255,255,.5); font-size: .62rem; font-weight: 800; letter-spacing: .12em; }
.spark-stack { position: absolute; left: 8%; bottom: 11%; z-index: 5; display: grid; grid-template-columns: repeat(2, 18px); gap: 7px; transform: rotate(45deg); }
.spark-stack i { display: block; width: 18px; height: 18px; background: var(--orange); animation: sparkPulse 1.8s ease-in-out infinite alternate; }
.spark-stack i:nth-child(2) { background: #fff; animation-delay: -.4s; }
.spark-stack i:nth-child(3) { background: #fff; animation-delay: -.8s; }
.spark-stack i:nth-child(4) { animation-delay: -1.2s; }
@keyframes sparkPulse { to { transform: scale(.62); opacity: .48; } }
.hero-ticker { position: absolute; inset: auto 0 0; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.8); }
.hero-ticker > div { display: flex; width: max-content; align-items: center; gap: 28px; padding: 13px 0; animation: tickerMove 25s linear infinite; }
.hero-ticker span { font-size: .74rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.hero-ticker i { color: var(--orange); font-style: normal; }
@keyframes tickerMove { to { transform: translateX(-50%); } }

.section-index { display: flex; gap: 14px; align-items: center; }
.section-index span { color: var(--orange); }
.manifesto { color: var(--white); background: var(--ink); }
.manifesto-grid { display: grid; grid-template-columns: 180px minmax(0,1fr) 300px; gap: clamp(28px, 5vw, 80px); align-items: start; }
.manifesto .section-index { color: rgba(255,255,255,.58); }
.manifesto-copy { max-width: 960px; margin: -10px 0 0; font-size: clamp(2.5rem, 5vw, 5.5rem); font-weight: 700; line-height: 1.12; letter-spacing: -.01em; }
.manifesto-copy .word { color: rgba(255,255,255,.18); transition: color .4s ease; }
.manifesto-copy .word.is-lit { color: var(--white); }
.manifesto-copy .word.is-orange { color: var(--orange-bright); }
.manifesto-note { margin: 4px 0 0; color: rgba(255,255,255,.66); font-size: 1rem; line-height: 1.7; }

.frequency-field { position: relative; min-height: 860px; overflow: hidden; color: var(--white); background: #171717; isolation: isolate; }
#frequencyCanvas, .frequency-lines { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
#frequencyCanvas { z-index: -1; }
.frequency-lines { z-index: -2; opacity: .42; background-image: linear-gradient(rgba(255,255,255,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.055) 1px,transparent 1px); background-size: 78px 78px; }
.frequency-field::before { content: ""; position: absolute; z-index: -1; left: -12%; top: 27%; width: 74%; height: 96px; background: var(--orange); transform: rotate(-28deg); animation: frequencyBeam 7s ease-in-out infinite alternate; }
.frequency-field::after { content: ""; position: absolute; z-index: -1; right: -14%; bottom: 18%; width: 68%; height: 58px; background: rgba(255,255,255,.12); transform: rotate(31deg); animation: frequencyBeamAlt 9s ease-in-out infinite alternate; }
@keyframes frequencyBeam { to { transform: rotate(-21deg) translate(35px,20px); } }
@keyframes frequencyBeamAlt { to { transform: rotate(38deg) translate(-30px,-16px); } }
.frequency-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(50px,8vw,120px); align-items: center; min-height: 800px; padding-top: 90px; padding-bottom: 130px; }
.frequency-copy { position: relative; z-index: 3; }
.frequency-copy .section-index { color: rgba(255,255,255,.65); }
.frequency-copy h2 { max-width: 690px; margin: 22px 0 26px; font-size: clamp(3rem,5vw,5.5rem); font-weight: 700; letter-spacing: -.01em; line-height: 1.1; }
.frequency-copy h2 em { color: var(--orange-bright); font-style: normal; }
.frequency-copy > p:not(.section-index) { max-width: 550px; margin: 0; color: rgba(255,255,255,.68); font-size: 1.05rem; }
.frequency-spectrum { position: relative; min-height: 610px; perspective: 1100px; }
.spectrum-word { position: absolute; z-index: 2; font-size: clamp(3.4rem,6.3vw,7.5rem); font-weight: 700; letter-spacing: .025em; line-height: 1; white-space: nowrap; text-shadow: 0 16px 35px rgba(0,0,0,.35); animation: spectrumDrift 8s ease-in-out infinite alternate; }
.spectrum-one { left: 2%; top: 4%; color: rgba(255,255,255,.92); }
.spectrum-two { right: -2%; top: 28%; color: var(--orange-bright); animation-delay: -2s; }
.spectrum-three { left: -5%; top: 52%; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.55); animation-delay: -4s; }
.spectrum-four { right: 8%; bottom: 3%; color: rgba(255,255,255,.2); animation-delay: -6s; }
@keyframes spectrumDrift { to { transform: translate3d(20px,-14px,35px); } }
.spectrum-bars { position: absolute; inset: 8% 3% 7%; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 8px; transform: rotate(-8deg); opacity: .66; }
.spectrum-bars i { display: block; flex: 1; max-width: 24px; height: 16%; background: rgba(255,255,255,.13); animation: spectrumPulse 1.5s ease-in-out infinite alternate; }
.spectrum-bars i:nth-child(2) { height: 35%; animation-delay: -.12s; }
.spectrum-bars i:nth-child(3) { height: 58%; background: rgba(255,51,0,.55); animation-delay: -.24s; }
.spectrum-bars i:nth-child(4) { height: 82%; animation-delay: -.36s; }
.spectrum-bars i:nth-child(5) { height: 48%; animation-delay: -.48s; }
.spectrum-bars i:nth-child(6) { height: 70%; background: rgba(255,51,0,.55); animation-delay: -.6s; }
.spectrum-bars i:nth-child(7) { height: 94%; animation-delay: -.72s; }
.spectrum-bars i:nth-child(8) { height: 62%; animation-delay: -.84s; }
.spectrum-bars i:nth-child(9) { height: 40%; background: rgba(255,51,0,.55); animation-delay: -.96s; }
.spectrum-bars i:nth-child(10) { height: 75%; animation-delay: -1.08s; }
.spectrum-bars i:nth-child(11) { height: 50%; animation-delay: -1.2s; }
.spectrum-bars i:nth-child(12) { height: 24%; background: rgba(255,51,0,.55); animation-delay: -1.32s; }
@keyframes spectrumPulse { to { transform: scaleY(.55); opacity: .42; } }
.spectrum-readout { position: absolute; right: 0; top: 4%; z-index: 4; display: grid; gap: 4px; padding-left: 13px; border-left: 3px solid var(--orange); }
.spectrum-readout span { color: rgba(255,255,255,.58); font-size: .62rem; font-weight: 800; letter-spacing: .12em; }
.spectrum-readout strong { font-size: 1.6rem; font-weight: 700; }
.frequency-ribbon { position: absolute; inset: auto 0 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); background: var(--orange); }
.frequency-ribbon > div { display: flex; width: max-content; align-items: center; gap: 24px; padding: 15px 0; font-size: .78rem; font-weight: 800; letter-spacing: .14em; white-space: nowrap; animation: frequencyRibbon 20s linear infinite; }
.frequency-ribbon i { color: var(--ink); font-style: normal; }
@keyframes frequencyRibbon { to { transform: translateX(-50%); } }

.services { background: var(--paper); }
.section-header { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 52px; }
.section-header h2 { max-width: 820px; margin: 16px 0 0; font-size: clamp(2.7rem, 5vw, 5.3rem); font-weight: 700; line-height: 1.1; letter-spacing: -.01em; }
.section-header > p { max-width: 420px; margin: 0; color: var(--muted); font-size: 1.06rem; }
.service-list { display: grid; gap: 24px; }
.service-card { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; min-height: 610px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--white); transition: transform .3s var(--ease), box-shadow .3s ease; }
.service-card:hover { box-shadow: 0 28px 70px rgba(16,16,16,.12); }
.service-copy { position: relative; z-index: 5; display: flex; flex-direction: column; align-items: flex-start; padding: clamp(32px, 5vw, 68px); }
.card-number { margin: 0 0 auto; color: var(--orange); font-size: .7rem; font-weight: 850; letter-spacing: .14em; }
.service-copy h3 { max-width: 520px; margin: 70px 0 22px; font-size: clamp(2.4rem, 4.15vw, 4.8rem); font-weight: 700; line-height: 1.1; letter-spacing: -.01em; }
.service-copy > p:not(.card-number) { max-width: 490px; margin: 0; color: var(--muted); font-size: 1rem; }
.service-copy ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 0; padding: 0; list-style: none; }
.service-copy li { padding: 8px 10px; border: 1px solid var(--line); border-radius: 7px; font-size: .72rem; font-weight: 750; }
.card-link { margin-top: auto; padding-top: 42px; font-size: .84rem; font-weight: 850; }
.brand-art, .web-art, .product-art { position: relative; min-width: 0; overflow: hidden; }
.brand-art { color: var(--white); background: var(--orange); }
.brand-art::before, .brand-art::after { content: ""; position: absolute; background: var(--ink); }
.brand-art::before { right: -10%; top: 8%; width: 76%; height: 70px; transform: rotate(-24deg); }
.brand-art::after { left: -12%; bottom: 9%; width: 72%; height: 52px; transform: rotate(29deg); }
.brand-word { position: absolute; z-index: 2; font-size: clamp(4.2rem, 7vw, 8.2rem); font-weight: 700; letter-spacing: .01em; line-height: 1; animation: wordDrift 7s ease-in-out infinite alternate; }
.word-one { top: 14%; left: 7%; }
.word-two { top: 42%; right: -2%; color: var(--ink); animation-delay: -2s; }
.word-three { bottom: 7%; left: 12%; animation-delay: -4s; }
@keyframes wordDrift { to { translate: 18px -12px; } }
.art-corner { position: absolute; top: 18px; right: 20px; z-index: 3; color: rgba(255,255,255,.72); font-size: .65rem; font-weight: 850; }
.web-art { background: #efece4; }
.web-art::before { content: ""; position: absolute; left: 17%; top: -16%; width: 80px; height: 132%; background: var(--orange); transform: rotate(34deg); }
.browser-card { position: absolute; width: 70%; aspect-ratio: 1.22; overflow: hidden; border: 1px solid rgba(16,16,16,.16); border-radius: 12px; background: var(--white); box-shadow: 0 26px 55px rgba(16,16,16,.16); }
.browser-back { top: 11%; left: 6%; transform: rotate(-7deg); background: var(--orange-pale); }
.browser-middle { top: 17%; right: 4%; transform: rotate(7deg); background: var(--ink); }
.browser-front { z-index: 3; left: 14%; bottom: 6%; padding: 18px; }
.browser-nav { display: flex; align-items: center; gap: 7px; height: 28px; border-bottom: 1px solid var(--line); }
.browser-nav i { width: 8px; height: 8px; background: var(--orange); transform: rotate(45deg); }
.browser-nav span { width: 28%; height: 4px; background: #d8d6d0; }
.browser-nav b { width: 18px; height: 6px; margin-left: auto; background: var(--ink); }
.browser-front strong { display: block; margin: 32px 0 24px; font-size: clamp(2.2rem, 4.5vw, 5rem); font-weight: 700; line-height: 1.06; letter-spacing: 0; }
.browser-front strong em { color: var(--orange); font-style: normal; }
.browser-ui { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 7px; }
.browser-ui i { height: 54px; background: #e9e7e0; }
.browser-ui i:first-child { background: var(--ink); }
.pointer-arrow { position: absolute; z-index: 5; right: 9%; bottom: 8%; display: grid; place-items: center; width: 66px; height: 66px; border-radius: 12px; color: var(--white); background: var(--orange); font-size: 1.8rem; animation: pointerHop 1.8s ease-in-out infinite alternate; }
@keyframes pointerHop { to { transform: translate(10px,-12px); } }
.product-art { color: var(--white); background: var(--ink); }
.product-art::before { content: ""; position: absolute; top: -12%; right: 4%; width: 36%; height: 130%; background: var(--orange); transform: rotate(24deg); }
.dashboard { position: absolute; z-index: 2; inset: 13% 6% 17% 8%; display: grid; grid-template-columns: 70px 1fr; overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; background: #181818; box-shadow: 0 30px 65px rgba(0,0,0,.42); transform: rotate(-3deg); }
.dash-nav { display: grid; align-content: start; justify-content: center; gap: 15px; padding-top: 25px; border-right: 1px solid var(--line-light); }
.dash-nav i { width: 18px; height: 18px; border: 1px solid rgba(255,255,255,.38); transform: rotate(45deg); }
.dash-nav i:first-child { background: var(--orange); border-color: var(--orange); }
.dash-main { padding: clamp(24px, 4vw, 52px); }
.dash-main > span { color: rgba(255,255,255,.62); font-size: .72rem; font-weight: 750; }
.dash-main > strong { display: block; margin: 6px 0 30px; font-size: clamp(3.5rem, 6vw, 7rem); font-weight: 700; letter-spacing: 0; line-height: 1.08; }
.bars { display: flex; align-items: end; gap: 8px; height: 110px; padding: 14px; border: 1px solid var(--line-light); }
.bars i { flex: 1; height: 28%; background: rgba(255,255,255,.28); animation: barMove 1.8s ease-in-out infinite alternate; }
.bars i:nth-child(2) { height: 52%; animation-delay: -.3s; }
.bars i:nth-child(3) { height: 38%; animation-delay: -.6s; }
.bars i:nth-child(4) { height: 73%; background: var(--orange); animation-delay: -.9s; }
.bars i:nth-child(5) { height: 58%; animation-delay: -1.2s; }
.bars i:nth-child(6) { height: 86%; animation-delay: -1.5s; }
@keyframes barMove { to { scale: 1 .72; transform-origin: bottom; } }
.dash-blocks { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 9px; }
.dash-blocks b { height: 54px; background: rgba(255,255,255,.08); }
.product-note { position: absolute; z-index: 4; right: 7%; bottom: 5%; padding: 14px 16px; border: 1px solid var(--line-light); border-radius: 9px; background: rgba(16,16,16,.9); font-size: .76rem; }

.approach { overflow: hidden; color: var(--white); background: var(--ink); }
.section-header-light .section-index, .section-header-light > p { color: rgba(255,255,255,.62); }
.approach-board { display: grid; grid-template-columns: 380px minmax(0,1fr); min-height: 700px; overflow: hidden; border: 1px solid var(--line-light); border-radius: 18px; }
.approach-nav { display: grid; grid-template-rows: repeat(4,1fr); border-right: 1px solid var(--line-light); }
.approach-step { display: grid; grid-template-columns: 48px 1fr; grid-template-rows: auto auto; align-content: center; gap: 4px 10px; padding: 24px 28px; border: 0; border-bottom: 1px solid var(--line-light); text-align: left; background: transparent; cursor: pointer; transition: color .3s ease, background .3s ease; }
.approach-step:last-child { border-bottom: 0; }
.approach-step span { grid-row: 1/3; color: var(--orange-bright); font-size: .72rem; font-weight: 850; }
.approach-step strong { font-size: 1.15rem; }
.approach-step small { color: rgba(255,255,255,.5); font-size: .78rem; }
.approach-step.is-active { color: var(--ink); background: var(--orange); }
.approach-step.is-active span, .approach-step.is-active small { color: var(--ink); }
.approach-stage { position: relative; overflow: hidden; background: #141414; }
.approach-stage::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.055) 1px,transparent 1px); background-size: 72px 72px; }
.approach-scene { position: absolute; inset: 0; z-index: 2; display: grid; align-content: start; padding: clamp(38px, 6vw, 82px); opacity: 0; visibility: hidden; transform: translateX(35px); transition: opacity .45s ease, transform .55s var(--ease), visibility .45s; }
.approach-scene.is-active { opacity: 1; visibility: visible; transform: translateX(0); }
.approach-scene > span { color: var(--orange-bright); font-size: .68rem; font-weight: 850; letter-spacing: .15em; }
.approach-scene h3 { max-width: 650px; margin: 18px 0; font-size: clamp(2.7rem, 4.7vw, 5.1rem); font-weight: 700; line-height: 1.1; letter-spacing: -.01em; }
.approach-scene > p { max-width: 570px; margin: 0; color: rgba(255,255,255,.68); font-size: 1.04rem; }
.scene-art { position: absolute; right: 6%; bottom: 6%; width: 46%; height: 42%; }
.scene-art i, .scene-art b { position: absolute; display: block; }
.art-discover i { left: 0; width: 100%; height: 2px; background: rgba(255,255,255,.35); transform-origin: left; animation: lineScan 3s ease-in-out infinite alternate; }
.art-discover i:nth-child(1) { top: 16%; transform: rotate(12deg); }
.art-discover i:nth-child(2) { top: 48%; transform: rotate(-18deg); animation-delay: -.7s; }
.art-discover i:nth-child(3) { top: 76%; transform: rotate(7deg); animation-delay: -1.4s; }
.art-discover b { right: 14%; top: 28%; width: 92px; height: 92px; border: 14px solid var(--orange); transform: rotate(45deg); }
@keyframes lineScan { to { scale: .54 1; opacity: .55; } }
.art-define i { width: 32%; height: 32%; border: 2px solid rgba(255,255,255,.42); transform: rotate(45deg); }
.art-define i:nth-child(1) { left: 4%; top: 34%; }
.art-define i:nth-child(2) { left: 34%; top: 15%; }
.art-define i:nth-child(3) { right: 5%; bottom: 12%; }
.art-define b { left: 38%; top: 29%; width: 36%; height: 36%; background: var(--orange); transform: rotate(45deg); animation: defineTurn 5s ease-in-out infinite alternate; }
@keyframes defineTurn { to { transform: rotate(135deg) scale(.72); } }
.art-build i { width: 62%; height: 44%; border: 1px solid var(--line-light); background: #202020; box-shadow: 12px 12px 0 rgba(255,51,0,.55); }
.art-build i:nth-child(1) { left: 0; top: 2%; }
.art-build i:nth-child(2) { left: 16%; top: 20%; }
.art-build i:nth-child(3) { left: 32%; top: 38%; }
.art-build b { right: 5%; top: 12%; width: 70px; height: 70px; background: var(--orange); clip-path: polygon(0 0,100% 50%,0 100%); animation: pointerHop 2s ease-in-out infinite alternate; }
.art-launch i { left: 0; bottom: 0; width: 16%; background: rgba(255,255,255,.2); animation: launchBars 2s ease-in-out infinite alternate; }
.art-launch i:nth-child(1) { height: 22%; }
.art-launch i:nth-child(2) { left: 22%; height: 40%; animation-delay: -.4s; }
.art-launch i:nth-child(3) { left: 44%; height: 67%; animation-delay: -.8s; }
.art-launch b { right: 5%; bottom: 0; width: 34%; height: 96%; background: var(--orange); clip-path: polygon(45% 0,100% 100%,0 100%); animation: launchBars 2s ease-in-out infinite alternate -1.2s; }
@keyframes launchBars { to { transform: translateY(-14px); } }

.motion-lab { background: var(--white); }
.motion-grid { display: grid; grid-template-columns: .68fr 1.32fr; gap: clamp(40px, 7vw, 100px); align-items: center; }
.motion-copy h2 { margin: 18px 0 24px; font-size: clamp(2.8rem, 4.7vw, 5.1rem); font-weight: 700; line-height: 1.1; letter-spacing: -.01em; }
.motion-copy > p:not(.section-index) { max-width: 520px; margin: 0; color: var(--muted); font-size: 1.04rem; }
.motion-notes { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.motion-notes span { padding: 8px 10px; border: 1px solid var(--line); border-radius: 7px; font-size: .7rem; font-weight: 800; }
.motion-canvas { position: relative; min-height: 660px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; color: var(--white); background: var(--ink); cursor: crosshair; box-shadow: 0 28px 66px rgba(16,16,16,.2); }
.motion-canvas:focus-visible { outline: 4px solid var(--orange-pale); outline-offset: 4px; }
.motion-canvas > p { position: absolute; left: 18px; bottom: 15px; margin: 0; color: rgba(255,255,255,.44); font-size: .62rem; font-weight: 850; letter-spacing: .13em; }
.motion-word { position: absolute; z-index: 2; font-size: clamp(3.2rem, 5.5vw, 6.2rem); font-weight: 700; letter-spacing: .01em; line-height: 1.05; pointer-events: none; }
.word-clarity { left: 7%; top: 10%; color: var(--white); }
.word-character { right: -5%; top: 40%; color: var(--orange); }
.word-momentum { left: 12%; bottom: 12%; color: rgba(255,255,255,.22); }
.motion-symbol { --mx: 0px; --my: 0px; --mr: 0deg; position: absolute; z-index: 4; left: 50%; top: 48%; display: grid; place-items: center; width: 44%; aspect-ratio: 1.42; padding: 9%; border: 1px solid rgba(16,16,16,.16); border-radius: 14px; background: var(--white); box-shadow: 16px 18px 0 rgba(255,51,0,.82); transform: translate(calc(-50% + var(--mx)), calc(-50% + var(--my))) rotate(var(--mr)); transition: transform .12s linear; }
.motion-symbol img { width: 100%; }
.motion-pointer { position: absolute; z-index: 7; left: 50%; top: 50%; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 10px; color: var(--white); background: var(--orange); font-size: .62rem; font-weight: 900; letter-spacing: .08em; transform: translate(-50%,-50%) rotate(45deg); pointer-events: none; transition: left .1s linear, top .1s linear; }
.motion-pointer::after { content: "MOVE"; transform: rotate(-45deg); }
.motion-pointer { font-size: 0; }

.principles { background: var(--paper); }
.principle-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.principle { position: relative; min-height: 340px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.5); transition: color .3s ease, background .3s ease, transform .3s var(--ease); }
.principle:hover { z-index: 2; color: var(--white); background: var(--orange); transform: translateY(-8px); }
.principle > span { color: var(--orange); font-size: .68rem; font-weight: 850; }
.principle:hover > span { color: var(--white); }
.principle h3 { margin: 70px 0 16px; font-size: clamp(1.5rem, 2vw, 2rem); line-height: 1.12; letter-spacing: 0; }
.principle p { margin: 0; color: var(--muted); font-size: .9rem; }
.principle:hover p { color: rgba(255,255,255,.82); }
.principle i { position: absolute; right: 24px; bottom: 20px; font-style: normal; }

.search-ready { overflow: hidden; color: var(--white); background: var(--orange); }
.search-ready::before { content: ""; position: absolute; left: -5%; top: -20%; width: 42%; height: 150%; background: rgba(255,255,255,.11); transform: rotate(24deg); }
.search-grid { position: relative; display: grid; grid-template-columns: .76fr 1.24fr; gap: clamp(50px,8vw,120px); align-items: center; }
.search-copy .section-index { color: rgba(255,255,255,.74); }
.search-copy .section-index span { color: var(--white); }
.search-copy h2 { max-width: 650px; margin: 20px 0 24px; font-size: clamp(3rem,4.7vw,5.1rem); font-weight: 700; line-height: 1.1; letter-spacing: -.01em; }
.search-copy > p:not(.section-index) { max-width: 550px; margin: 0 0 28px; color: rgba(255,255,255,.82); }
.search-copy .text-link { border-color: var(--white); }
.search-system { position: relative; min-height: 590px; border: 1px solid rgba(255,255,255,.35); border-radius: 18px; background: var(--white); box-shadow: 22px 24px 0 rgba(16,16,16,.9); }
.search-system::after { content: ""; position: absolute; inset: 0; opacity: .52; background-image: linear-gradient(rgba(16,16,16,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(16,16,16,.055) 1px,transparent 1px); background-size: 54px 54px; }
.search-bar, .search-card { position: absolute; z-index: 2; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 18px 42px rgba(16,16,16,.11); }
.search-bar { top: 8%; left: 6%; right: 6%; display: grid; grid-template-columns: 54px 1fr auto; align-items: center; min-height: 74px; padding: 10px 18px; font-weight: 800; }
.search-bar img { width: 34px; }
.search-bar i { color: var(--orange); font-style: normal; }
.search-card-main { left: 10%; right: 10%; top: 28%; padding: 26px; }
.search-card-main small { color: var(--orange); font-weight: 850; letter-spacing: .12em; }
.search-card-main strong { display: block; margin-top: 10px; font-size: 2.1rem; }
.search-card-main p { margin: 2px 0 0; color: var(--muted); }
.search-card-a, .search-card-b, .search-card-c { display: grid; gap: 5px; min-width: 190px; padding: 18px; }
.search-card-a span, .search-card-b span, .search-card-c span { color: var(--orange); font-size: .65rem; font-weight: 850; }
.search-card-a { left: 8%; bottom: 12%; }
.search-card-b { left: 38%; bottom: 21%; }
.search-card-c { right: 6%; bottom: 8%; }

.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: .66fr 1.34fr; gap: clamp(50px,8vw,120px); }
.faq-heading h2 { margin: 18px 0 30px; font-size: clamp(2.8rem,4.5vw,4.8rem); font-weight: 700; line-height: 1.1; letter-spacing: -.01em; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding: 25px 0; cursor: pointer; list-style: none; font-size: clamp(1.1rem,1.7vw,1.45rem); font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { position: relative; width: 20px; height: 20px; flex: 0 0 auto; }
.faq-list summary i::before, .faq-list summary i::after { content: ""; position: absolute; left: 2px; top: 9px; width: 16px; height: 2px; background: var(--orange); transition: transform .25s ease; }
.faq-list summary i::after { transform: rotate(90deg); }
.faq-list details[open] summary i::after { transform: rotate(0); }
.faq-list details p { max-width: 740px; margin: -5px 0 26px; color: var(--muted); }

.contact { overflow: hidden; color: var(--white); background: var(--orange); }
.contact::before { content: ""; position: absolute; left: 10%; bottom: -38%; width: 40%; height: 105%; background: rgba(255,255,255,.1); transform: rotate(42deg); }
.contact-grid { position: relative; display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px,8vw,120px); align-items: start; }
.contact-copy { position: sticky; top: 130px; }
.contact-copy .section-index { color: rgba(255,255,255,.75); }
.contact-copy .section-index span { color: var(--white); }
.contact-copy h2 { margin: 20px 0 26px; font-size: clamp(3rem,4.8vw,5.2rem); font-weight: 700; line-height: 1.1; letter-spacing: -.01em; }
.contact-copy h2 em { color: var(--ink); font-style: normal; }
.contact-copy > p:not(.section-index) { max-width: 520px; margin: 0; color: rgba(255,255,255,.82); }
.contact-email { display: inline-flex; gap: 12px; margin-top: 32px; padding-bottom: 6px; border-bottom: 2px solid var(--white); font-weight: 850; }
.contact-form { padding: clamp(28px,4vw,54px); border: 1px solid rgba(255,255,255,.3); border-radius: 18px; color: var(--ink); background: var(--white); box-shadow: 20px 22px 0 rgba(16,16,16,.92); }
.form-heading { display: grid; gap: 9px; margin-bottom: 30px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.form-heading span { color: var(--orange); font-size: .68rem; font-weight: 850; letter-spacing: .13em; }
.form-heading strong { font-size: clamp(1.5rem,2vw,2rem); }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.field { display: grid; gap: 8px; }
.field-full { grid-column: 1/-1; }
.field label { font-size: .76rem; font-weight: 800; }
.field label span { color: var(--muted); font-weight: 500; }
.field input:not([type="checkbox"]), .field select, .field textarea { width: 100%; border: 1px solid #cfccc4; border-radius: 8px; color: var(--ink); background: #faf9f6; outline: 0; transition: border-color .2s ease, box-shadow .2s ease; }
.field input:not([type="checkbox"]), .field select { min-height: 52px; padding: 0 14px; }
.field textarea { min-height: 140px; padding: 14px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,51,0,.12); }
.field.has-error input, .field.has-error select, .field.has-error textarea, .field.has-error .consent label { border-color: #bd1e00; }
.consent label { display: flex; align-items: flex-start; gap: 10px; padding: 13px; border: 1px solid #cfccc4; border-radius: 8px; font-weight: 500; cursor: pointer; }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--orange); }
.form-actions { display: flex; align-items: center; gap: 18px; margin-top: 24px; }
.form-actions button { border: 0; cursor: pointer; }
.form-actions button:disabled { cursor: wait; opacity: .6; }
.form-status { min-height: 24px; font-size: .82rem; font-weight: 750; }
.form-status.success { color: #08743a; }
.form-status.error { color: #a92209; }
.form-fine { margin: 16px 0 0; color: var(--muted); font-size: .72rem; }
.form-fine a { text-decoration: underline; text-underline-offset: 3px; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.site-footer { padding: 90px 0 24px; color: var(--white); background: var(--ink); }
.footer-top { display: flex; justify-content: space-between; align-items: end; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid var(--line-light); }
.footer-top img { width: min(430px,48vw); }
.footer-top p { margin: 0; color: rgba(255,255,255,.64); font-size: 1rem; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr) auto; gap: 38px; padding: 50px 0; }
.footer-links > div { display: grid; align-content: start; gap: 9px; }
.footer-links > div > span { margin-bottom: 8px; color: rgba(255,255,255,.4); font-size: .68rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.footer-links a { color: rgba(255,255,255,.75); font-size: .86rem; }
.footer-links a:hover { color: var(--white); }
.back-top { display: grid; place-items: center; width: 54px; height: 54px; border: 1px solid var(--line-light); border-radius: 10px; color: var(--white) !important; background: rgba(255,255,255,.06); font-size: 1.4rem !important; }
.footer-base { display: flex; justify-content: space-between; gap: 24px; padding-top: 20px; border-top: 1px solid var(--line-light); }
.footer-base p { margin: 0; color: rgba(255,255,255,.45); font-size: .72rem; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .72s ease var(--reveal-delay,0ms), transform .86s var(--ease) var(--reveal-delay,0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Supporting pages */
.sub-page { background: var(--paper); }
.sub-hero { position: relative; overflow: hidden; padding: 170px 0 92px; background: var(--white); }
.sub-hero::before { content: ""; position: absolute; right: -4%; top: 28%; width: 40%; height: 120px; background: var(--orange); transform: rotate(-22deg); }
.sub-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 360px; gap: 70px; align-items: end; }
.sub-hero h1 { max-width: 980px; margin: 20px 0 0; font-size: clamp(3.4rem,6vw,6.5rem); font-weight: 700; line-height: 1.1; letter-spacing: -.01em; }
.sub-hero h1 em { color: var(--orange); font-style: normal; }
.sub-intro { padding: 24px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.94); }
.sub-intro strong { display: block; margin-bottom: 8px; }
.sub-intro p { margin: 0; color: var(--muted); }
.page-section { padding: 100px 0; }
.page-section.white { background: var(--white); }
.page-section.dark { color: var(--white); background: var(--ink); }
.content-grid { display: grid; grid-template-columns: 380px 1fr; gap: clamp(50px,8vw,120px); }
.content-grid h2 { margin: 15px 0 0; font-size: clamp(2.4rem,4.2vw,4.5rem); font-weight: 700; line-height: 1.1; letter-spacing: -.01em; }
.body-copy { max-width: 820px; }
.body-copy > p { margin: 0 0 22px; color: var(--muted); font-size: 1.08rem; }
.dark .body-copy > p { color: rgba(255,255,255,.7); }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 48px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.dark .feature-grid { border-color: var(--line-light); }
.feature { min-height: 250px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.dark .feature { border-color: var(--line-light); }
.feature span { color: var(--orange); font-size: .68rem; font-weight: 850; }
.feature h3 { margin: 52px 0 12px; font-size: 1.4rem; }
.feature p { margin: 0; color: var(--muted); font-size: .9rem; }
.dark .feature p { color: rgba(255,255,255,.62); }
.page-cta { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; padding: clamp(34px,6vw,72px); border-radius: 16px; color: var(--white); background: var(--orange); box-shadow: 18px 20px 0 var(--ink); }
.page-cta h2 { max-width: 900px; margin: 12px 0 0; font-size: clamp(2.5rem,4.7vw,4.9rem); font-weight: 700; line-height: 1.1; letter-spacing: -.01em; }
.page-cta .button { color: var(--white); background: var(--ink); }
.legal-copy { max-width: 860px; margin: 0 auto; padding: 170px 0 100px; }
.legal-copy h1 { margin: 18px 0 32px; font-size: clamp(3rem,5.4vw,5.6rem); font-weight: 700; line-height: 1.1; letter-spacing: -.01em; }
.legal-copy h2 { margin: 40px 0 12px; }
.legal-copy p, .legal-copy li { color: var(--muted); }

@media (max-width: 1120px) {
  :root { --shell: min(100% - 44px, 1080px); }
  .hero-layout { grid-template-columns: 1fr; padding-top: 150px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: min(900px,100%); min-height: 680px; margin: 0 auto; }
  .manifesto-grid { grid-template-columns: 140px 1fr; }
  .manifesto-note { grid-column: 2; max-width: 620px; }
  .frequency-layout { grid-template-columns: 1fr; gap: 25px; }
  .frequency-copy { max-width: 720px; }
  .frequency-spectrum { min-height: 590px; }
  .service-card { grid-template-columns: 1fr; }
  .service-copy { min-height: 520px; }
  .brand-art, .web-art, .product-art { min-height: 650px; }
  .motion-grid, .search-grid, .contact-grid { grid-template-columns: 1fr; }
  .motion-copy { max-width: 760px; }
  .motion-canvas { min-height: 640px; }
  .contact-copy { position: static; max-width: 760px; }
  .principle-grid { grid-template-columns: repeat(2,1fr); }
  .sub-hero-inner { grid-template-columns: 1fr; }
  .sub-intro { max-width: 600px; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 30px, 760px); }
  .section { padding: 88px 0; }
  .nav-shell { grid-template-columns: 1fr auto; min-height: 66px; padding-left: 16px; }
  .brand { width: 138px; }
  .desktop-nav, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .hero-layout { padding-top: 126px; padding-bottom: 102px; }
  .hero h1 { max-width: 700px; font-size: clamp(3.4rem,12vw,5.7rem); line-height: 1.07; letter-spacing: 0; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof div + div { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .hero-visual { min-height: 570px; }
  .visual-mark { width: min(45%,280px); }
  .visual-word { font-size: clamp(3rem,11vw,5.2rem); }
  .frequency-field { min-height: 1040px; }
  .frequency-layout { min-height: 980px; padding-top: 90px; padding-bottom: 150px; }
  .frequency-spectrum { min-height: 570px; }
  .spectrum-word { font-size: clamp(3rem,10vw,5.6rem); }
  .manifesto-grid { grid-template-columns: 1fr; }
  .manifesto-note { grid-column: auto; }
  .section-header { display: grid; }
  .section-header > p { max-width: 650px; }
  .service-copy { min-height: 480px; padding: 30px; }
  .service-copy h3 { margin-top: 60px; }
  .brand-art, .web-art, .product-art { min-height: 540px; }
  .approach-board { grid-template-columns: 1fr; min-height: 930px; }
  .approach-nav { grid-template-columns: repeat(4,1fr); grid-template-rows: auto; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .approach-step { grid-template-columns: 1fr; padding: 16px 12px; border-right: 1px solid var(--line-light); border-bottom: 0; }
  .approach-step span { grid-row: auto; }
  .approach-step small { display: none; }
  .approach-stage { min-height: 700px; }
  .approach-scene { padding: 34px; }
  .scene-art { width: 70%; height: 36%; }
  .motion-canvas { min-height: 560px; }
  .motion-symbol { width: 58%; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle { min-height: 280px; }
  .faq-grid, .content-grid { grid-template-columns: 1fr; }
  .footer-top { display: grid; }
  .footer-top img { width: min(330px,80vw); }
  .footer-links { grid-template-columns: repeat(2,1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .feature-grid { grid-template-columns: 1fr; }
  .page-cta { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  :root { --shell: calc(100% - 24px); }
  .site-header { top: 8px; }
  .hero-layout { padding-top: 112px; }
  .hero h1 { font-size: clamp(3rem,14.5vw,4.35rem); line-height: 1.08; letter-spacing: 0; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-visual { min-height: 480px; }
  .visual-crosshair { inset: 7%; }
  .visual-mark { width: min(52%,230px); }
  .visual-word { font-size: 2.9rem; }
  .visual-signal { min-width: 106px; }
  .visual-signal strong { font-size: .72rem; }
  .signal-a { top: 26%; }
  .signal-b { top: 16%; }
  .visual-caption { font-size: .52rem; }
  .manifesto-copy { font-size: 2.35rem; line-height: 1.13; }
  .frequency-field { min-height: 920px; }
  .frequency-layout { min-height: 860px; padding-top: 70px; padding-bottom: 130px; }
  .frequency-copy h2 { font-size: 2.75rem; }
  .frequency-spectrum { min-height: 440px; }
  .spectrum-word { font-size: 2.7rem; }
  .spectrum-three { left: -2%; }
  .section-header h2, .motion-copy h2, .search-copy h2, .contact-copy h2 { font-size: 2.8rem; }
  .service-copy { min-height: 440px; padding: 24px; }
  .service-copy h3 { font-size: 2.6rem; }
  .brand-art, .web-art, .product-art { min-height: 420px; }
  .brand-word { font-size: 4.1rem; }
  .browser-card { width: 82%; }
  .browser-front { left: 9%; }
  .browser-front strong { font-size: 2.5rem; }
  .dashboard { inset: 10% 4% 18%; grid-template-columns: 48px 1fr; }
  .dash-main { padding: 20px 15px; }
  .approach-board { min-height: 850px; }
  .approach-nav { grid-template-columns: repeat(2,1fr); }
  .approach-step { border-bottom: 1px solid var(--line-light); }
  .approach-stage { min-height: 650px; }
  .approach-scene { padding: 28px 22px; }
  .approach-scene h3 { font-size: 2.65rem; }
  .scene-art { width: 82%; height: 32%; }
  .motion-canvas { min-height: 480px; }
  .motion-word { font-size: 3rem; }
  .motion-symbol { width: 68%; }
  .search-system { min-height: 540px; box-shadow: 12px 14px 0 var(--ink); }
  .search-card-a, .search-card-b, .search-card-c { min-width: 155px; padding: 13px; }
  .search-card-a { left: 5%; }
  .search-card-b { left: 35%; }
  .search-card-c { right: 4%; }
  .contact-form { padding: 22px; box-shadow: 12px 14px 0 var(--ink); }
  .form-actions { display: grid; }
  .footer-links { grid-template-columns: 1fr; }
  .back-top { width: 50px !important; }
  .footer-base { display: grid; }
  .sub-hero { padding-top: 130px; }
  .sub-hero h1 { font-size: 3.2rem; }
  .page-section { padding: 78px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-line i { transform: none; }
}
