:root {
  --ink: #07110f;
  --ink-2: #101b18;
  --paper: #f2f3ed;
  --white: #fbfcf7;
  --lime: #bafa47;
  --blue: #6178ff;
  --coral: #ff765b;
  --muted: #9ca5a0;
  --line: rgba(7, 17, 15, 0.14);
  --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--body); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--lime); color: var(--ink); }

.site-header {
  position: fixed; z-index: 100; top: 18px; left: 50%; transform: translateX(-50%);
  width: min(1180px, calc(100% - 40px)); height: 64px; padding: 0 10px 0 18px;
  display: flex; align-items: center; justify-content: space-between;
  color: var(--white); background: rgba(7, 17, 15, .76); border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(18px); border-radius: 6px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 13px; letter-spacing: .14em; }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; background: var(--lime); color: var(--ink); border-radius: 2px; font-size: 17px; letter-spacing: -.08em; }
.nav { display: flex; align-items: center; gap: 30px; font-size: 13px; }
.nav > a:not(.nav-cta) { color: #dce1dc; transition: color .25s ease; }
.nav > a:not(.nav-cta):hover { color: var(--lime); }
.nav-cta { padding: 13px 16px; background: var(--white); color: var(--ink); font-weight: 700; border-radius: 3px; }
.nav-cta span { color: var(--blue); margin-left: 8px; }
.menu-button { display: none; }

.hero { position: relative; min-height: 850px; height: 100svh; padding: 160px max(5vw, 28px) 70px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 5vw; color: var(--white); background: var(--ink); overflow: hidden; }
.hero:before { content: ""; position: absolute; width: 600px; height: 600px; left: -420px; bottom: -280px; border-radius: 50%; background: var(--blue); filter: blur(100px); opacity: .18; }
.hero-grid { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 58px 58px; mask-image: linear-gradient(to bottom, black, transparent 85%); }
.hero-copy { position: relative; z-index: 3; max-width: 760px; }
.eyebrow, .kicker { display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow { color: #dce3dd; margin-bottom: 30px; }
.eyebrow span { width: 8px; height: 8px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 0 6px rgba(186,250,71,.12); }
.hero h1, .section h2, .manifesto h2, .contact h2 { margin: 0; font-family: var(--display); font-weight: 800; letter-spacing: -.065em; line-height: .9; text-transform: uppercase; }
.hero h1 { font-size: clamp(64px, 7.2vw, 118px); }
.hero h1 em { color: var(--lime); font-style: normal; }
.hero-copy > p { max-width: 620px; margin: 32px 0; color: #bcc7c0; font-size: clamp(17px, 1.35vw, 21px); line-height: 1.6; }
.hero-actions { display: flex; align-items: center; gap: 26px; }
.button { min-height: 54px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: space-between; gap: 34px; border: 0; border-radius: 3px; font-size: 13px; font-weight: 800; cursor: pointer; transition: transform .25s ease, box-shadow .25s ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--lime); color: var(--ink); box-shadow: 0 14px 45px rgba(186,250,71,.13); }
.button-primary span { font-size: 20px; }
.text-link { padding: 14px 0; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,.25); }
.text-link span { color: var(--lime); margin-left: 10px; }
.hero-proof { display: flex; align-items: center; gap: 13px; margin-top: 42px; color: #849088; font-size: 9px; letter-spacing: .14em; }
.hero-proof i { width: 3px; height: 3px; background: #849088; border-radius: 50%; }

.hero-visual { position: relative; z-index: 2; height: min(620px, 67vh); min-height: 520px; perspective: 1100px; }
.product-window { position: absolute; z-index: 3; inset: 11% 2% 6% 7%; display: grid; grid-template-rows: 48px 1fr 54px; background: #ecf0e9; color: var(--ink); border: 1px solid #fff; box-shadow: 0 50px 110px rgba(0,0,0,.42); transform: rotateY(-8deg) rotateZ(2.5deg); animation: windowFloat 7s ease-in-out infinite; }
.window-bar, .window-footer { display: flex; align-items: center; justify-content: space-between; padding: 0 17px; border-bottom: 1px solid var(--line); font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.window-bar:before { content: "● ● ●"; color: var(--coral); letter-spacing: 5px; }
.window-id { margin-right: auto; margin-left: 20px; }
.live { display: flex; align-items: center; gap: 7px; }
.live i { width: 7px; height: 7px; background: #43c565; border-radius: 50%; animation: blink 1.6s ease infinite; }
.window-canvas { position: relative; overflow: hidden; background-color: #dfe5dc; background-image: linear-gradient(rgba(7,17,15,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(7,17,15,.08) 1px, transparent 1px); background-size: 30px 30px; }
.canvas-label { position: absolute; left: 16px; top: 16px; font-size: 8px; font-weight: 800; letter-spacing: .16em; }
.core { position: absolute; z-index: 3; left: 50%; top: 50%; width: 170px; height: 170px; transform: translate(-50%,-50%); display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--ink); color: var(--white); border-radius: 50%; box-shadow: 0 20px 50px rgba(7,17,15,.28); }
.core span { position: absolute; top: 20px; font-size: 9px; color: var(--lime); }
.core strong { font-family: var(--display); font-size: 38px; letter-spacing: -.05em; }
.core small { font-size: 7px; letter-spacing: .16em; color: #9eaaa2; }
.pulse-ring { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(7,17,15,.3); border-radius: 50%; transform: translate(-50%,-50%); animation: pulse 4s ease-out infinite; }
.ring-a { width: 260px; height: 260px; }
.ring-b { width: 360px; height: 360px; animation-delay: -2s; }
.signal { position: absolute; z-index: 4; width: 13px; height: 13px; border-radius: 50%; border: 3px solid var(--paper); animation: signal 4s linear infinite; }
.signal-a { background: var(--blue); left: 18%; top: 31%; }
.signal-b { background: var(--coral); right: 15%; bottom: 24%; animation-delay: -2s; }
.window-footer { border-top: 1px solid var(--line); border-bottom: 0; }
.progress { flex: 1; height: 4px; margin: 0 14px; background: rgba(7,17,15,.14); }
.progress i { display: block; width: 78%; height: 100%; background: var(--blue); animation: progress 3s ease-in-out infinite alternate; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.orbit-one { width: 650px; height: 650px; left: -5%; top: -8%; }
.orbit-two { width: 460px; height: 460px; right: -3%; bottom: -4%; }
.float-chip { position: absolute; z-index: 6; padding: 12px 15px; display: flex; gap: 9px; background: var(--white); color: var(--ink); border-radius: 2px; box-shadow: 0 16px 36px rgba(0,0,0,.26); font-size: 10px; font-weight: 800; text-transform: uppercase; animation: chipFloat 5s ease-in-out infinite; }
.float-chip b { color: var(--blue); }
.chip-one { left: 0; top: 20%; transform: rotate(-5deg); }
.chip-two { right: -1%; bottom: 19%; background: var(--lime); transform: rotate(4deg); animation-delay: -2s; }
.hero-stamp { position: absolute; z-index: 7; right: 2%; top: 4%; width: 116px; height: 116px; display: flex; align-items: center; justify-content: center; gap: 7px; background: var(--blue); border-radius: 50%; animation: spin 20s linear infinite; }
.hero-stamp span { font-size: 31px; font-weight: 900; letter-spacing: -.08em; }
.hero-stamp small { font-size: 7px; font-weight: 700; line-height: 1.5; letter-spacing: .1em; }
.scroll-note { position: absolute; z-index: 4; bottom: 25px; left: 50%; display: flex; align-items: center; gap: 13px; transform: translateX(-50%); color: #768179; font-size: 8px; letter-spacing: .2em; }
.scroll-note i { display: block; width: 50px; height: 1px; background: #768179; }

.ticker { overflow: hidden; padding: 19px 0; background: var(--lime); border-bottom: 1px solid var(--ink); }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 28px; animation: marquee 28s linear infinite; font-family: var(--display); font-size: 16px; font-weight: 900; letter-spacing: .04em; }
.ticker-track b { font-size: 13px; }

.section { padding: 130px max(5vw, 28px); }
.section-intro { display: grid; grid-template-columns: .45fr 1fr .55fr; align-items: end; gap: 40px; margin-bottom: 64px; }
.kicker { align-self: start; padding-top: 8px; color: #53605a; }
.section h2 { font-size: clamp(53px, 6.3vw, 94px); }
.section h2 span { color: transparent; -webkit-text-stroke: 1.5px var(--ink); }
.section-intro > p { margin: 0 0 7px; color: #59625e; font-size: 16px; line-height: 1.65; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service-card { position: relative; min-height: 560px; padding: 24px; display: flex; flex-direction: column; border: 1px solid var(--ink); overflow: hidden; transition: transform .35s ease, box-shadow .35s ease; }
.service-card:hover { z-index: 2; transform: translateY(-10px) rotate(-.3deg); box-shadow: 12px 12px 0 var(--ink); }
.service-card.lime { background: var(--lime); }
.service-card.blue { background: var(--blue); color: var(--white); }
.service-card.coral { background: var(--coral); }
.card-top { display: flex; justify-content: space-between; font-size: 10px; letter-spacing: .12em; }
.card-top b { padding: 6px 8px; border: 1px solid currentColor; }
.card-graphic { position: relative; height: 205px; margin: 36px -24px 30px; display: grid; place-items: center; border-top: 1px solid currentColor; border-bottom: 1px solid currentColor; overflow: hidden; }
.card-graphic:before, .card-graphic:after, .card-graphic i { content: ""; position: absolute; border: 1px solid currentColor; border-radius: 50%; opacity: .34; }
.card-graphic:before { width: 260px; height: 260px; }
.card-graphic:after { width: 165px; height: 165px; }
.card-graphic i { width: 9px; height: 9px; background: currentColor; border: 0; animation: dotOrbit 5s linear infinite; }
.card-graphic i:nth-child(1) { transform: translate(80px, -55px); }
.card-graphic i:nth-child(2) { transform: translate(-100px, 35px); animation-delay: -1.5s; }
.card-graphic i:nth-child(3) { transform: translate(70px, 70px); animation-delay: -3s; }
.card-graphic strong { position: relative; z-index: 2; display: grid; place-items: center; width: 108px; height: 108px; background: var(--ink); color: var(--white); border-radius: 50%; font-size: 25px; letter-spacing: -.05em; }
.service-card h3 { margin: 0 0 16px; font-family: var(--display); font-size: clamp(31px, 2.7vw, 43px); line-height: .98; letter-spacing: -.045em; text-transform: uppercase; }
.service-card p { margin: 0; max-width: 390px; font-size: 14px; line-height: 1.55; opacity: .78; }
.card-note { margin-top: auto; padding-top: 22px; display: flex; justify-content: space-between; border-top: 1px solid currentColor; font-size: 10px; font-weight: 800; letter-spacing: .07em; }
.card-note span { font-size: 17px; }

.manifesto { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 780px; background: var(--ink); color: var(--white); }
.manifesto-art { position: relative; min-height: 680px; overflow: hidden; background: var(--blue); }
.manifesto-art:before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 48px 48px; }
.big-type { position: absolute; z-index: 2; left: 50%; top: 50%; transform: translate(-50%,-52%); font-family: var(--display); font-size: clamp(180px, 29vw, 430px); font-weight: 900; letter-spacing: -.14em; line-height: 1; white-space: nowrap; }
.big-type span { color: var(--lime); }
.art-label { position: absolute; z-index: 4; left: 25px; bottom: 25px; font-size: 9px; font-weight: 800; letter-spacing: .17em; line-height: 1.6; }
.art-orb { position: absolute; z-index: 3; right: -70px; bottom: -100px; width: 300px; height: 300px; background: var(--lime); border-radius: 50%; mix-blend-mode: screen; animation: orb 7s ease-in-out infinite; }
.manifesto-copy { padding: 110px clamp(36px, 6vw, 100px); display: flex; flex-direction: column; justify-content: center; }
.kicker.light { color: #8f9b93; }
.manifesto h2 { margin: 35px 0; font-size: clamp(58px, 6.5vw, 98px); }
.manifesto .lead { max-width: 620px; color: var(--lime); font-size: 22px; line-height: 1.45; }
.manifesto-copy > p:not(.lead) { max-width: 600px; color: #aeb8b1; line-height: 1.75; }
.principles { margin-top: 42px; border-top: 1px solid rgba(255,255,255,.18); }
.principles div { padding: 17px 0; display: grid; grid-template-columns: 55px 1fr; border-bottom: 1px solid rgba(255,255,255,.18); font-size: 13px; }
.principles b { color: var(--lime); font-size: 10px; }

.process { background: var(--white); }
.process-intro { grid-template-columns: .45fr 1.55fr; }
.steps { border-top: 1px solid var(--ink); display: grid; grid-template-columns: repeat(4, 1fr); }
.step { min-height: 360px; padding: 20px; border-right: 1px solid var(--ink); transition: background .3s ease, color .3s ease; }
.step:last-child { border-right: 0; }
.step:hover { background: var(--ink); color: var(--white); }
.step-number { font-size: 10px; font-weight: 800; }
.step-icon { width: 58px; height: 58px; margin: 74px 0 38px; display: grid; place-items: center; background: var(--lime); color: var(--ink); border-radius: 50%; font-size: 28px; }
.step h3 { margin: 0 0 15px; font-family: var(--display); font-size: 35px; text-transform: uppercase; letter-spacing: -.04em; }
.step p { margin: 0; max-width: 250px; color: #66706a; font-size: 13px; line-height: 1.6; }
.step:hover p { color: #b6c0ba; }

.contact { padding: 130px max(5vw, 28px); display: grid; grid-template-columns: 1.05fr .95fr; gap: 8vw; background: var(--blue); color: var(--white); }
.contact h2 { margin: 38px 0 26px; font-size: clamp(60px, 7.3vw, 110px); }
.contact h2 em { color: var(--lime); font-style: normal; }
.contact-heading > p { max-width: 560px; color: #d8ddff; font-size: 18px; line-height: 1.55; }
.contact-meta { margin-top: 80px; display: flex; align-items: center; gap: 11px; font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.contact-meta i { width: 9px; height: 9px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 0 7px rgba(186,250,71,.16); animation: blink 1.6s ease infinite; }
.contact-form { align-self: center; padding: clamp(25px, 4vw, 55px); background: var(--white); color: var(--ink); box-shadow: 18px 18px 0 var(--ink); transform: rotate(1deg); }
.contact-form label { display: block; margin-bottom: 26px; }
.contact-form label > span { display: block; margin-bottom: 10px; font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.contact-form input, .contact-form textarea { width: 100%; padding: 10px 0 14px; background: transparent; border: 0; border-bottom: 1px solid #aeb5b0; border-radius: 0; outline: none; color: var(--ink); resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 2px 0 var(--blue); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #89918c; }
.form-button { width: 100%; margin-top: 10px; }
.form-feedback { margin: 13px 0 0; color: #45524b; font-size: 12px; text-align: center; }
.form-feedback.success { padding: 12px; background: rgba(186,250,71,.3); color: #18300d; }
.form-feedback.error { padding: 12px; background: rgba(255,118,91,.18); color: #792414; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

footer { min-height: 230px; padding: 55px max(5vw, 28px) 35px; display: grid; grid-template-columns: 1fr 1fr auto; align-items: start; gap: 50px; background: var(--ink); color: var(--white); }
.footer-brand { align-self: start; }
footer > p { margin: 0; color: #99a39d; font-size: 13px; line-height: 1.55; }
.footer-links { display: flex; gap: 25px; font-size: 12px; }
.footer-links a:hover { color: var(--lime); }
.copyright { grid-column: 1 / -1; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.14); color: #6f7a73; font-size: 9px; letter-spacing: .14em; }

@keyframes windowFloat { 0%,100% { transform: rotateY(-8deg) rotateZ(2.5deg) translateY(0); } 50% { transform: rotateY(-4deg) rotateZ(1.2deg) translateY(-16px); } }
@keyframes chipFloat { 0%,100% { translate: 0 0; } 50% { translate: 0 -16px; } }
@keyframes pulse { 0% { scale: .72; opacity: 0; } 40% { opacity: .8; } 100% { scale: 1.18; opacity: 0; } }
@keyframes signal { 0%,100% { scale: .8; } 50% { scale: 1.35; box-shadow: 0 0 0 10px rgba(97,120,255,.15); } }
@keyframes blink { 0%,100% { opacity: .35; } 50% { opacity: 1; } }
@keyframes progress { from { width: 56%; } to { width: 84%; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes dotOrbit { 50% { margin: 18px; } }
@keyframes orb { 50% { transform: translate(-35px,-20px) scale(1.08); } }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr 1fr; gap: 20px; padding-left: 36px; padding-right: 36px; }
  .hero h1 { font-size: clamp(60px, 8.5vw, 88px); }
  .section-intro { grid-template-columns: 1fr 2fr; }
  .section-intro > p { grid-column: 2; }
  .service-card { min-height: 535px; }
  .manifesto { grid-template-columns: .9fr 1.1fr; }
  .contact { gap: 50px; }
}

@media (max-width: 780px) {
  .site-header { top: 10px; width: calc(100% - 20px); height: 58px; padding-left: 12px; }
  .brand-mark { width: 32px; height: 32px; }
  .menu-button { position: relative; z-index: 103; width: 42px; height: 42px; display: grid; place-content: center; gap: 6px; background: var(--lime); border: 0; border-radius: 2px; }
  .menu-button span { display: block; width: 18px; height: 2px; background: var(--ink); }
  .nav { position: fixed; z-index: 102; top: -10px; left: -10px; right: -10px; padding: 100px 30px 38px; display: flex; flex-direction: column; align-items: stretch; gap: 0; background: var(--ink); border-bottom: 1px solid rgba(255,255,255,.15); transform: translateY(-120%); transition: transform .35s ease; }
  .nav.open { transform: translateY(0); }
  .nav > a:not(.nav-cta) { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-family: var(--display); font-size: 25px; text-transform: uppercase; }
  .nav-cta { margin-top: 18px; text-align: center; }
  .hero { min-height: 980px; height: auto; padding: 125px 20px 65px; display: block; }
  .hero h1 { font-size: clamp(55px, 17vw, 82px); line-height: .88; }
  .hero-copy > p { margin: 25px 0; font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 10px; }
  .button { width: 100%; }
  .text-link { align-self: flex-start; }
  .hero-proof { margin-top: 26px; font-size: 8px; gap: 8px; }
  .hero-visual { height: 410px; min-height: 410px; margin-top: 32px; }
  .product-window { inset: 10% 1% 4% 2%; grid-template-rows: 38px 1fr 42px; transform: rotateY(0) rotateZ(1.5deg); }
  .window-id { display: none; }
  .window-bar:before { font-size: 7px; }
  .core { width: 120px; height: 120px; }
  .core strong { font-size: 29px; }
  .ring-a { width: 185px; height: 185px; }
  .ring-b { width: 265px; height: 265px; }
  .hero-stamp { width: 84px; height: 84px; right: 0; top: 0; }
  .hero-stamp span { font-size: 24px; }
  .hero-stamp small { font-size: 5px; }
  .chip-one { top: 18%; left: -2%; }
  .chip-two { bottom: 12%; right: -1%; }
  .scroll-note { display: none; }
  .ticker { padding: 15px 0; }
  .ticker-track { font-size: 13px; }
  .section { padding: 86px 20px; }
  .section-intro, .process-intro { display: block; margin-bottom: 42px; }
  .kicker { margin-bottom: 27px; }
  .section h2 { font-size: clamp(40px, 11.5vw, 60px); }
  .section-intro > p { margin-top: 25px; }
  .service-grid { grid-template-columns: 1fr; gap: 10px; }
  .service-card { min-height: 510px; }
  .service-card:hover { transform: translateY(-4px); box-shadow: 6px 6px 0 var(--ink); }
  .manifesto { display: block; }
  .manifesto-art { min-height: 430px; }
  .big-type { font-size: 57vw; }
  .art-orb { width: 200px; height: 200px; }
  .manifesto-copy { padding: 82px 20px; }
  .manifesto h2 { font-size: 12.2vw; }
  .manifesto .lead { font-size: 19px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step { min-height: 310px; border-bottom: 1px solid var(--ink); }
  .step:nth-child(2) { border-right: 0; }
  .step-icon { margin: 45px 0 28px; }
  .contact { padding: 86px 20px 100px; display: block; }
  .contact h2 { font-size: 15.2vw; }
  .contact-meta { margin: 42px 0; }
  .contact-form { padding: 28px 20px; box-shadow: 9px 9px 0 var(--ink); transform: none; }
  footer { padding: 50px 20px 30px; grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 1 / -1; order: 3; }
  .copyright { order: 4; }
}

@media (max-width: 430px) {
  .hero { min-height: 940px; }
  .hero h1 { font-size: 16.5vw; }
  .hero-proof { flex-wrap: wrap; }
  .window-footer span { display: none; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 280px; border-right: 0; }
  .step-icon { margin: 35px 0 24px; }
  footer { grid-template-columns: 1fr; }
  .footer-links { grid-column: auto; }
  .copyright { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
