
:root {
  --ink: #12141b;
  --muted: #626978;
  --bg: #f7f7f4;
  --bg-soft: #eef0f3;
  --bg-panel: #ffffff;
  --line: #d8dce4;
  --line-strong: #c4c9d3;
  --violet: #7d3fd6;
  --cyan: #20c8e8;
  --pink: #f41079;
  --yellow: #ffd528;
  --green: #84d94a;
  --max: 1180px;
  --radius: 20px;
  --shadow: 0 10px 0 rgba(20, 24, 34, .08), 0 24px 52px rgba(25, 30, 45, .10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(125,63,214,.06), transparent 22rem),
    radial-gradient(circle at 92% 18%, rgba(32,200,232,.07), transparent 18rem),
    linear-gradient(180deg, rgba(255,255,255,.5), rgba(255,255,255,0) 16rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .38;
  background-image:
    linear-gradient(rgba(18,20,27,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,20,27,.025) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  z-index: -1;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(to bottom, rgba(18,20,27,.012), rgba(18,20,27,.012) 1px, transparent 1px, transparent 5px);
  opacity: .26;
  z-index: -1;
}
::selection { background: var(--pink); color: white; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.skip-link { position: fixed; top: 10px; left: 10px; transform: translateY(-160%); z-index: 1000; padding: .75rem 1rem; border-radius: 10px; background: var(--ink); color: white; }
.skip-link:focus { transform: none; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .75rem; margin: 0 0 1rem;
  color: #5b348f; text-transform: uppercase; letter-spacing: .18em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .77rem; font-weight: 800;
}
.eyebrow::before {
  content: ''; width: 18px; height: 8px; background: var(--pink);
  box-shadow: 10px 0 0 var(--cyan), 20px 0 0 var(--green);
}
h1, h2, h3 {
  font-family: 'Arial Black', 'Helvetica Neue', sans-serif;
  letter-spacing: -.045em;
  line-height: .98;
  margin: 0;
  text-transform: uppercase;
}
h1 { font-size: clamp(3.5rem, 9vw, 7.7rem); max-width: 980px; text-shadow: 3px 3px 0 rgba(125,63,214,.08); }
h2 { font-size: clamp(2.45rem, 5vw, 4.75rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 2rem); }
p { margin: 0 0 1.25rem; }
.lede { max-width: 760px; color: #363b47; font-size: clamp(1.08rem, 2vw, 1.3rem); line-height: 1.65; }
.muted { color: var(--muted); }
.kicker { font-size: clamp(1.35rem, 3vw, 2.1rem); color: #2d3340; max-width: 900px; line-height: 1.35; }
.site-header {
  position: sticky; top: 0; z-index: 100; backdrop-filter: blur(14px);
  background: rgba(247,247,244,.88); border-bottom: 2px solid transparent; transition: border-color .25s ease, background .25s ease;
}
.site-header.scrolled { border-color: rgba(32,200,232,.38); background: rgba(247,247,244,.96); }
.nav { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand {
  display: inline-flex; align-items: center; gap: .9rem; white-space: nowrap; padding: .45rem .8rem;
  border: 1px solid var(--line); border-radius: 16px;
  background: rgba(255,255,255,.82); box-shadow: 0 6px 0 rgba(18,20,27,.06);
}
.brand-logo { height: 58px; width: auto; filter: drop-shadow(0 8px 18px rgba(0,0,0,.10)); }
.brand-wordmark { display: none; }
.nav-links { display: flex; align-items: center; gap: .6rem; }
.nav-links a {
  color: #303542; font-size: .88rem; text-transform: uppercase; letter-spacing: .08em;
  padding: .72rem .9rem; border: 1px solid transparent; border-radius: 12px;
  background: transparent; transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.nav-links a:hover, .nav-links a[aria-current='page'] {
  color: var(--ink); border-color: rgba(125,63,214,.20); background: rgba(125,63,214,.07); transform: translateY(-1px);
}
.nav-links a[aria-current='page']::after { display: none; }
.menu-toggle { display: none; border: 1px solid var(--line); border-radius: 12px; background: white; color: var(--ink); width: 48px; height: 48px; padding: 9px; }
.menu-toggle span { display: block; height: 2px; margin: 6px 0; background: currentColor; }
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}
.button {
  display: inline-flex; justify-content: center; align-items: center; gap: .65rem; min-height: 54px; padding: .82rem 1.28rem;
  border: 1px solid rgba(0,0,0,.10); border-radius: 14px;
  background: linear-gradient(180deg, var(--pink), #ce0e6d);
  box-shadow: 0 6px 0 rgba(128,8,69,.34), 0 14px 26px rgba(30,35,50,.13);
  color: white; font-weight: 900; letter-spacing: .02em; text-transform: uppercase; transition: transform .15s ease, box-shadow .15s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 8px 0 rgba(128,8,69,.34), 0 18px 30px rgba(30,35,50,.16); }
.button:active { transform: translateY(3px); box-shadow: 0 3px 0 rgba(128,8,69,.34); }
.button.secondary { color: var(--ink); background: white; border-color: var(--line-strong); box-shadow: 0 6px 0 rgba(18,20,27,.08), 0 12px 24px rgba(25,30,45,.08); }
.button.small { min-height: 44px; padding: .58rem .92rem; border-radius: 12px; font-size: .86rem; }
.hero { min-height: calc(100vh - 88px); display: grid; align-items: center; padding: 74px 0 60px; position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
  align-items: center;
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}
.hero h1 .accent { color: #147c94; text-shadow: 3px 3px 0 rgba(32,200,232,.12); }
.hero-copy .lede {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.hero-logo {
  max-width: min(380px, 86vw);
  margin: 0 auto 1.2rem;
}
.hero-copy .intro-panel {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-top: 1rem;
}
.retro-chip {
  border: 1px solid var(--line); background: rgba(255,255,255,.88); box-shadow: 0 4px 0 rgba(18,20,27,.06);
  border-radius: 12px; padding: .45rem .72rem; color: #342649; font: 700 .74rem/1.2 ui-monospace, SFMono-Regular, Menlo, monospace; text-transform: uppercase; letter-spacing: .08em;
}
.hero-art {
  position: relative; aspect-ratio: .92; border-radius: 28px; overflow: hidden; border: 2px solid rgba(32,200,232,.18);
  background: linear-gradient(180deg, rgba(125,63,214,.04), rgba(32,200,232,.03)), var(--bg-panel);
  box-shadow: var(--shadow); display: grid; place-items: center; padding: 1.2rem;
}
.hero-art img { width: 100%; height: 100%; object-fit: contain; }
.marquee { overflow: hidden; border-top: 2px solid var(--line); border-bottom: 2px solid var(--line); background: linear-gradient(180deg, rgba(32,200,232,.08), rgba(125,63,214,.04)); }
.marquee-track { display: flex; width: max-content; animation: crawl 28s linear infinite; }
.marquee span { padding: 1rem 1.5rem; color: #222734; text-transform: uppercase; letter-spacing: .18em; font: 800 .74rem/1 ui-monospace, SFMono-Regular, Menlo, monospace; }
.marquee b { color: var(--pink); margin-right: 2.7rem; }
@keyframes crawl { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .marquee-track { animation: none; } .reveal { opacity: 1 !important; transform: none !important; } }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; }
.section-head p { max-width: 520px; margin: 0; color: var(--muted); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.card {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-panel); box-shadow: 0 8px 0 rgba(18,20,27,.05), 0 18px 34px rgba(30,35,50,.07); overflow: hidden;
}
.card::before { content: ''; position: absolute; inset: 8px; border: 1px solid rgba(18,20,27,.04); border-radius: 12px; pointer-events: none; }
.card-pad { padding: 1.6rem; }
.card:hover { border-color: rgba(244,16,121,.28); }
.card-number { color: #6a438f; font: 800 .72rem/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .14em; }
.service-card { min-height: 300px; display: flex; flex-direction: column; }
.service-card h3 { margin: auto 0 .85rem; }
.service-card p { color: #555d6d; margin-bottom: 0; }
.project-card { min-height: 470px; display: flex; flex-direction: column; }
.project-visual { min-height: 250px; display: grid; place-items: center; background: #eef0f3; overflow: hidden; position: relative; }
.project-visual img { width: 100%; height: 100%; object-fit: cover; }
.project-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,20,27,.12), transparent 55%); }
.project-card .meta { color: #117b91; text-transform: uppercase; letter-spacing: .12em; font: 800 .7rem/1 ui-monospace, SFMono-Regular, Menlo, monospace; margin-bottom: .8rem; }
.project-card h3 { margin-bottom: .7rem; }
.project-card p { color: #596171; }
.feature {
  display: grid; grid-template-columns: 1.1fr .9fr; border: 2px solid rgba(32,200,232,.18); border-radius: 30px; overflow: hidden;
  background: radial-gradient(circle at 85% 10%, rgba(32,200,232,.06), transparent 21rem), radial-gradient(circle at 10% 90%, rgba(244,16,121,.05), transparent 26rem), #ffffff;
  box-shadow: var(--shadow);
}
.feature-copy { padding: clamp(2rem, 6vw, 5rem); }
.feature-copy h2 { max-width: 660px; }
.feature-copy p { color: #505867; max-width: 650px; }
.feature-art {
  min-height: 560px; border-left: 1px solid var(--line); position: relative; overflow: hidden;
  display: grid; place-items: center; background: linear-gradient(180deg, rgba(125,63,214,.03), rgba(32,200,232,.02)), #f1f3f7;
}
.feature-art img {
  width: min(96%, 780px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(20,24,34,.12));
}
.tag-row { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.4rem 0 0; }
.tag { border: 1px solid var(--line); border-radius: 12px; padding: .45rem .72rem; color: #413651; background: #fafafa; font: 700 .72rem/1 ui-monospace, SFMono-Regular, Menlo, monospace; }
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: white; box-shadow: 0 8px 0 rgba(18,20,27,.05), 0 18px 28px rgba(30,35,50,.06); }
.stat { padding: 1.5rem; min-height: 145px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-size: clamp(1.65rem, 3vw, 2.5rem); letter-spacing: -.04em; color: #5a348a; }
.stat span { color: var(--muted); font-size: .9rem; }
.page-hero { padding: 112px 0 76px; }
.page-hero h1 { font-size: clamp(3.5rem, 9vw, 7rem); }
.page-hero .lede { margin-top: 1.5rem; }
.work-list { display: grid; gap: 1rem; }
.work-row { display: grid; grid-template-columns: 1.25fr .75fr .7fr; gap: 2rem; align-items: center; min-height: 106px; padding: 1.2rem 1.35rem; border-top: 1px solid var(--line); background: rgba(255,255,255,.72); }
.work-row:last-child { border-bottom: 1px solid var(--line); }
.work-row h3 { font-size: 1.45rem; }
.work-row p { margin: 0; color: var(--muted); }
.work-row .year { text-align: right; font: .8rem ui-monospace, SFMono-Regular, Menlo, monospace; color: #6a438f; }
.process { counter-reset: steps; }
.process-item { counter-increment: steps; display: grid; grid-template-columns: 78px 1fr; gap: 1.4rem; padding: 2rem 0; border-top: 1px solid var(--line); }
.process-item:last-child { border-bottom: 1px solid var(--line); }
.process-item::before {
  content: '0' counter(steps); color: var(--ink); background: var(--yellow); width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  font: 900 .92rem/1 ui-monospace, SFMono-Regular, Menlo, monospace; box-shadow: 0 6px 0 rgba(92,77,9,.18);
}
.process-item p { color: #555d6d; max-width: 720px; margin-bottom: 0; }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 4rem; align-items: start; }
.portrait-card { position: sticky; top: 110px; min-height: 520px; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(160deg, rgba(125,63,214,.05), rgba(32,200,232,.04)), white; display: grid; place-items: center; overflow: hidden; padding: 2rem; box-shadow: var(--shadow); }
.portrait-card img { width: min(100%, 420px); height: auto; object-fit: contain; filter: drop-shadow(0 18px 30px rgba(0,0,0,.12)); }
.about-copy h2 { font-size: clamp(2.2rem, 4vw, 4rem); margin-bottom: 1.4rem; }
.about-copy p { color: #4e5666; font-size: 1.04rem; }
.quote { margin: 2.4rem 0; padding: 1.4rem 1.4rem 1.4rem 1.5rem; border: 1px solid rgba(255,213,40,.42); border-left: 8px solid var(--yellow); border-radius: 18px; background: white; color: var(--ink); font-size: 1.25rem; line-height: 1.45; font-weight: 800; box-shadow: 0 8px 0 rgba(18,20,27,.05); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 4rem; align-items: start; }
.contact-meta { display: grid; gap: 1.2rem; margin-top: 2rem; }
.contact-meta a { color: #117b91; }
.contact-meta div { padding-bottom: 1.2rem; border-bottom: 1px solid var(--line); }
.contact-meta span { display: block; color: #6a438f; font-size: .85rem; margin-bottom: .25rem; text-transform: uppercase; letter-spacing: .08em; }
.form { border: 1px solid var(--line); border-radius: 26px; background: white; padding: clamp(1.4rem, 4vw, 2.4rem); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .45rem; margin-bottom: 1rem; }
.field label { font-size: .86rem; color: #46395a; text-transform: uppercase; letter-spacing: .06em; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--line); border-radius: 14px; background: #fafafa; color: var(--ink); padding: .9rem 1rem; outline: none; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(244,16,121,.12); }
.field textarea { min-height: 170px; resize: vertical; }
.cta { border: 1px solid var(--line); border-radius: 30px; padding: clamp(2rem, 6vw, 5rem); background: radial-gradient(circle at 83% 18%, rgba(32,200,232,.05), transparent 23rem), radial-gradient(circle at 10% 84%, rgba(244,16,121,.05), transparent 30rem), white; box-shadow: var(--shadow); }
.cta h2 { max-width: 880px; }
.cta p { color: #505867; max-width: 650px; margin-top: 1.2rem; }
.site-footer { padding: 44px 0; border-top: 2px solid var(--line); background: #11131b; color: white; }
.footer-grid { display: flex; justify-content: space-between; gap: 2rem; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand img { height: 54px; width: auto; }
.footer-copy p { margin: 0; color: #c7cbd5; font-size: .84rem; }
.footer-links { display: flex; gap: .7rem; flex-wrap: wrap; }
.footer-links a { padding: .6rem .75rem; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; background: rgba(255,255,255,.04); text-transform: uppercase; font-size: .75rem; letter-spacing: .08em; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in-view { opacity: 1; transform: none; }
@media (max-width: 980px) {
  .hero-grid, .feature, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 520px; width: 100%; margin: 0 auto; }
  .feature-art { min-height: 420px; border-left: 0; border-top: 1px solid var(--line); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .portrait-card { position: relative; top: 0; min-height: 420px; }
}
@media (max-width: 760px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 80px 0; }
  .section-sm { padding: 54px 0; }
  .menu-toggle { display: block; }
  .nav-links { position: absolute; top: 88px; left: 14px; right: 14px; display: grid; gap: .45rem; padding: .65rem; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.98); box-shadow: var(--shadow); transform: translateY(-14px); opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: .95rem; }
  .hero { min-height: auto; padding-top: 56px; }
  .hero-grid { gap: 3rem; }
  .hero-logo { max-width: 300px; }
  .brand-logo { height: 44px; }
  .float-chip.two { right: -3%; }
  .float-chip.one, .float-chip.three { left: -3%; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .section-head { align-items: start; flex-direction: column; }
  .project-card { min-height: auto; }
  .work-row { grid-template-columns: 1fr; gap: .45rem; padding: 1.3rem 0; }
  .work-row .year { text-align: left; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 480px) {
  h1 { font-size: 3rem; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .feature-art { min-height: 330px; }
  .footer-brand img { height: 44px; }
}


.hero-copy .button-row {
  justify-content: center;
}


.contact-hero {
  text-align: center;
}

.contact-hero h1,
.contact-hero .lede {
  margin-left: auto;
  margin-right: auto;
}

.contact-hero .eyebrow {
  justify-content: center;
}
