@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #090909;
  --paper: #ffffff;
  --soft: #f3f3f0;
  --line: #d8d8d3;
  --muted: #666761;
  --signal: #c7ff3d;
  --signal-dark: #9ed700;
  --max: 1260px;
  --radius: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { display: block; max-width: 100%; }
.wrap { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.mono { font-family: "DM Mono", monospace; text-transform: uppercase; letter-spacing: .09em; font-size: .78rem; }
.kicker { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.kicker::before { content: ""; width: 30px; height: 3px; background: currentColor; border-radius: 999px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(9,9,9,.12);
}
.nav { height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: -.025em; line-height: .9; }
.brand-mark { position: relative; width: 46px; height: 46px; overflow: hidden; flex: 0 0 46px; border: 1px solid #cfcfcf; border-radius: 13px; background: white; }
.brand-mark img { position: absolute; width: 126px; max-width: none; left: -12px; top: -28px; }
.brand-copy { display: grid; font-size: .82rem; letter-spacing: .03em; }
.navlinks { display: flex; align-items: center; gap: 30px; font-size: .92rem; font-weight: 600; }
.navlinks > a:not(.nav-cta) { position: relative; }
.navlinks > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--ink); transition: right .2s ease; }
.navlinks > a:hover::after, .navlinks > a[aria-current="page"]::after { right: 0; }
.nav-cta, .button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; border-radius: 999px; padding: 0 22px; font-weight: 800; border: 2px solid var(--ink); transition: transform .2s ease, background .2s ease, color .2s ease; }
.nav-cta, .button.dark { color: white; background: var(--ink); }
.button.signal { color: var(--ink); background: var(--signal); }
.button.light { color: var(--ink); background: white; }
.button.outline { color: inherit; background: transparent; border-color: currentColor; }
.nav-cta:hover, .button:hover { transform: translateY(-2px); }
.menu-button { display: none; width: 48px; height: 48px; border: 2px solid var(--ink); border-radius: 14px; background: white; color: var(--ink); cursor: pointer; }

.hero { background: var(--ink); color: white; overflow: hidden; }
.hero-grid { min-height: auto; display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: 72px; padding-block: 80px; }
.hero h1, .page-hero h1 { margin: 20px 0 28px; font-size: clamp(4rem, 8.4vw, 8.8rem); line-height: .87; letter-spacing: -.075em; max-width: 920px; }
.hero h1 .outlined { color: transparent; -webkit-text-stroke: 2px white; text-stroke: 2px white; }
.hero p { max-width: 670px; color: #c8c8c3; font-size: clamp(1.08rem, 1.5vw, 1.28rem); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.logo-stage { position: relative; min-height: 560px; display: grid; place-items: center; }
.logo-card { width: min(100%, 540px); aspect-ratio: 1.22; overflow: hidden; background: white; border: 1px solid #303030; border-radius: 25%; box-shadow: 30px 30px 0 var(--signal); transform: rotate(2deg); transition: transform .35s ease; }
.logo-card:hover { transform: rotate(0deg) translateY(-5px); }
.logo-card img { width: 100%; height: 100%; object-fit: cover; }
.orbit { position: absolute; inset: 4% 1% 8% 2%; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; transform: rotate(-16deg); pointer-events: none; }
.orbit::after { content: ""; position: absolute; width: 14px; height: 14px; right: 16%; top: 2%; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 7px rgba(199,255,61,.15); }
.signal-strip { border-top: 1px solid #2d2d2d; background: #111; color: #bdbdb7; overflow: hidden; }
.signal-track { display: flex; justify-content: space-between; gap: 38px; padding-block: 20px; white-space: nowrap; }
.signal-track span { display: inline-flex; align-items: center; gap: 36px; }
.signal-track span::after { content: "●"; color: var(--signal); font-size: .7rem; }

section { padding: 118px 0; }
.section-heading { display: grid; grid-template-columns: .45fr 1.55fr; gap: 56px; align-items: start; margin-bottom: 60px; }
.section-heading h2 { margin: 0; font-size: clamp(2.75rem, 6vw, 6.4rem); line-height: .92; letter-spacing: -.065em; }
.section-heading p { margin: 24px 0 0; max-width: 660px; color: var(--muted); font-size: 1.07rem; }
.services { background: var(--soft); }
.service-list { border-top: 2px solid var(--ink); }
.service-row { display: grid; grid-template-columns: 74px 1fr 1fr 54px; gap: 26px; padding: 34px 0; border-bottom: 1px solid #bbbdb5; align-items: start; }
.service-row h3 { margin: 0; font-size: clamp(1.5rem, 2.2vw, 2.25rem); letter-spacing: -.045em; line-height: 1.08; }
.service-row p { margin: 0; color: var(--muted); max-width: 500px; }
.service-row .arrow { width: 44px; height: 44px; display: grid; place-items: center; border: 2px solid var(--ink); border-radius: 50%; font-size: 1.1rem; transition: background .2s ease, transform .2s ease; }
.service-row:hover .arrow { background: var(--signal); transform: rotate(45deg); }

.statement { background: var(--signal); border-block: 2px solid var(--ink); }
.statement .wrap { display: grid; grid-template-columns: 1fr 3fr; gap: 50px; }
.statement h2 { margin: 0; max-width: 1100px; font-size: clamp(3rem, 7vw, 7.4rem); line-height: .91; letter-spacing: -.07em; }
.statement h2 em { font-style: normal; color: white; -webkit-text-stroke: 2px var(--ink); text-shadow: 4px 4px 0 var(--ink); }

.work { background: white; }
.work-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.case { grid-column: span 6; border: 2px solid var(--ink); border-radius: var(--radius); overflow: hidden; background: white; transition: transform .25s ease, box-shadow .25s ease; }
.case:nth-child(3) { grid-column: 3 / span 8; }
.case:hover { transform: translate(-5px,-5px); box-shadow: 9px 9px 0 var(--ink); }
.case-art { min-height: 320px; position: relative; overflow: hidden; background: var(--ink); border-bottom: 2px solid var(--ink); }
.case-art::before, .case-art::after { content: ""; position: absolute; border: 18px solid white; border-radius: 50%; }
.case-art::before { width: 360px; height: 360px; left: -95px; top: -150px; }
.case-art::after { width: 220px; height: 220px; right: -40px; bottom: -110px; border-color: var(--signal); }
.case:nth-child(2) .case-art { background: var(--signal); }
.case:nth-child(2) .case-art::before { border-color: var(--ink); border-radius: 28%; transform: rotate(24deg); }
.case:nth-child(2) .case-art::after { border-color: white; }
.case:nth-child(3) .case-art { background: white; }
.case:nth-child(3) .case-art::before { width: 90%; height: 90%; inset: 5%; border-color: var(--ink); border-radius: 28px; transform: rotate(-5deg); }
.case:nth-child(3) .case-art::after { width: 70%; height: 70%; inset: 15%; border-color: var(--signal-dark); border-radius: 28px; transform: rotate(7deg); }
.case-num { position: absolute; inset: auto auto 22px 24px; color: white; z-index: 2; }
.case:nth-child(2) .case-num, .case:nth-child(3) .case-num { color: var(--ink); }
.case-copy { padding: 28px; }
.case-meta { display: flex; justify-content: space-between; gap: 16px; color: var(--muted); }
.case h3 { margin: 14px 0 0; max-width: 560px; font-size: clamp(1.55rem, 2.4vw, 2.35rem); line-height: 1.08; letter-spacing: -.045em; }
.case p { color: var(--muted); }

.process { background: var(--ink); color: white; }
.process .section-heading p { color: #aaa; }
.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #464646; border-left: 1px solid #464646; }
.step { min-height: 330px; padding: 28px; border-right: 1px solid #464646; border-bottom: 1px solid #464646; display: flex; flex-direction: column; }
.step-num { width: 44px; height: 44px; display: grid; place-items: center; color: var(--ink); background: var(--signal); border-radius: 14px; }
.step h3 { margin: auto 0 10px; font-size: 1.55rem; letter-spacing: -.03em; }
.step p { margin: 0; color: #aaa; }

.cta { padding: 0; background: var(--ink); color: white; }
.cta-panel { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: end; padding: 80px; background: var(--signal); color: var(--ink); border-radius: 44px 44px 0 0; }
.cta h2 { margin: 0; font-size: clamp(3.2rem, 7vw, 7.2rem); line-height: .88; letter-spacing: -.07em; }
.cta p { font-size: 1.1rem; max-width: 500px; }

.page-hero { position: relative; overflow: hidden; background: var(--ink); color: white; padding: 105px 0 110px; }
.page-hero h1 { max-width: 1120px; }
.page-hero p { max-width: 780px; color: #bdbdb7; font-size: 1.2rem; }
.page-hero .big-e { position: absolute; right: 2vw; top: 85px; font-size: min(22vw, 20rem); line-height: .8; color: transparent; -webkit-text-stroke: 2px #333; pointer-events: none; }
.page-hero .wrap { position: relative; z-index: 1; }
.split { display: grid; grid-template-columns: .58fr 1.42fr; gap: 64px; }
.big-copy { margin: 0; font-size: clamp(2.15rem, 4.8vw, 5rem); line-height: .99; letter-spacing: -.055em; }
.prose { max-width: 780px; color: var(--muted); font-size: 1.05rem; }
.prose h3 { color: var(--ink); margin: 42px 0 10px; font-size: 1.45rem; letter-spacing: -.03em; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.pill { border: 2px solid var(--ink); border-radius: 999px; padding: 10px 15px; font-weight: 700; }
.fit-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 56px; }
.fit-card { padding: 28px; min-height: 210px; background: var(--soft); border: 2px solid var(--ink); border-radius: 24px; }
.fit-card:nth-child(2), .fit-card:nth-child(3) { background: var(--signal); }
.fit-card h3 { margin: 48px 0 8px; font-size: 1.45rem; }
.fit-card p { margin: 0; color: var(--muted); }

.contact-section { background: var(--soft); }
.contact-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 26px; }
.contact-card, .form-card { border: 2px solid var(--ink); border-radius: 30px; padding: 36px; background: white; }
.contact-card { background: var(--signal); display: flex; flex-direction: column; }
.contact-card h2 { margin: 0 0 16px; font-size: clamp(2.5rem, 5vw, 4.8rem); line-height: .95; letter-spacing: -.055em; }
.contact-card .contact-details { margin-top: auto; padding-top: 50px; }
.contact-card a { text-decoration: underline; text-underline-offset: 4px; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form .full { grid-column: 1 / -1; }
.form label { display: block; margin-bottom: 7px; font-weight: 700; font-size: .88rem; }
.form input, .form select, .form textarea { width: 100%; border: 2px solid var(--ink); border-radius: 14px; background: white; color: var(--ink); padding: 14px 15px; }
.form textarea { min-height: 170px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { outline: 4px solid rgba(199,255,61,.7); outline-offset: 1px; }
.form button { cursor: pointer; }
.form-status { min-height: 24px; margin: 0; color: var(--muted); }

footer { background: var(--ink); color: white; padding: 64px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .6fr .7fr; gap: 52px; }
footer .brand-mark { border-color: #555; }
.footer-note { max-width: 390px; color: #999; margin-top: 20px; }
.footer-col { display: grid; gap: 10px; align-content: start; }
.footer-col b { color: var(--signal); margin-bottom: 8px; }
.footer-col a:hover { color: var(--signal); }
.copyright { display: flex; justify-content: space-between; gap: 20px; margin-top: 70px; padding-top: 22px; border-top: 1px solid #3c3c3c; color: #818181; font-size: .84rem; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 920px) {
  .wrap { width: min(100% - 32px, var(--max)); }
  .menu-button { display: grid; place-items: center; }
  .navlinks { position: fixed; inset: 84px 0 auto; min-height: calc(100svh - 84px); padding: 36px 24px; background: white; flex-direction: column; align-items: stretch; gap: 10px; transform: translateX(100%); visibility: hidden; transition: transform .25s ease, visibility .25s ease; }
  .navlinks.open { transform: translateX(0); visibility: visible; }
  .navlinks > a { padding: 16px 4px; border-bottom: 1px solid var(--line); font-size: 1.3rem; }
  .navlinks .nav-cta { margin-top: 14px; color: white; padding-inline: 24px; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; gap: 30px; padding-block: 66px 72px; }
  .hero h1, .page-hero h1 { font-size: clamp(3.65rem, 15vw, 7rem); }
  .logo-stage { min-height: 430px; }
  .logo-card { max-width: 430px; }
  .section-heading, .statement .wrap, .split, .cta-panel, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .section-heading { gap: 22px; }
  .service-row { grid-template-columns: 55px 1fr 48px; }
  .service-row p { grid-column: 2 / -1; }
  .case, .case:nth-child(3) { grid-column: 1 / -1; }
  .step-grid { grid-template-columns: repeat(2,1fr); }
  .cta-panel { padding: 58px 32px; }
  .page-hero .big-e { display: none; }
}

@media (max-width: 600px) {
  section { padding: 82px 0; }
  .nav { height: 74px; }
  .brand-mark { width: 42px; height: 42px; flex-basis: 42px; }
  .brand-mark img { width: 116px; left: -11px; top: -26px; }
  .navlinks { top: 74px; min-height: calc(100svh - 74px); }
  .hero h1 .outlined { -webkit-text-stroke-width: 1.5px; }
  .logo-stage { min-height: 330px; }
  .logo-card { box-shadow: 14px 14px 0 var(--signal); }
  .service-row { grid-template-columns: 42px 1fr; gap: 14px; }
  .service-row p { grid-column: 2; }
  .service-row .arrow { grid-column: 2; width: 40px; height: 40px; }
  .case-art { min-height: 245px; }
  .step-grid, .fit-grid, .form { grid-template-columns: 1fr; }
  .step { min-height: 260px; }
  .form .full { grid-column: auto; }
  .contact-card, .form-card { padding: 26px; }
  .copyright { flex-direction: column; }
}
