:root {
  --canvas: #f6f7f3;
  --canvas-deep: #eef0ea;
  --surface: rgba(255, 255, 255, 0.66);
  --surface-solid: #ffffff;
  --surface-muted: #e9ece4;
  --ink: #172420;
  --ink-soft: #50605a;
  --ink-faint: #83908a;
  --line: rgba(23, 36, 32, 0.13);
  --line-strong: rgba(23, 36, 32, 0.22);
  --accent: #bbf45d;
  --accent-deep: #9bd33e;
  --purple: #8d5cff;
  --nav-bg: rgba(246, 247, 243, 0.76);
  --shadow: 0 22px 60px rgba(31, 46, 40, 0.09);
  --shadow-soft: 0 12px 32px rgba(31, 46, 40, 0.07);
  --hero-glow: rgba(190, 246, 94, 0.3);
  --card-shadow: 0 28px 52px rgba(32, 42, 38, 0.13);
}

html[data-theme="dark"] {
  --canvas: #111a17;
  --canvas-deep: #0d1512;
  --surface: rgba(30, 43, 38, 0.7);
  --surface-solid: #1b2924;
  --surface-muted: #21312b;
  --ink: #f0f4ed;
  --ink-soft: #b4c0b8;
  --ink-faint: #82928a;
  --line: rgba(239, 245, 236, 0.13);
  --line-strong: rgba(239, 245, 236, 0.22);
  --accent: #c8ff72;
  --accent-deep: #b4e95f;
  --purple: #9a71ff;
  --nav-bg: rgba(17, 26, 23, 0.77);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.23);
  --shadow-soft: 0 12px 32px rgba(0, 0, 0, 0.18);
  --hero-glow: rgba(168, 234, 87, 0.16);
  --card-shadow: 0 28px 52px rgba(0, 0, 0, 0.26);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--canvas);
  font-family: "Manrope", "Avenir Next", Avenir, sans-serif;
  -webkit-font-smoothing: antialiased;
  transition: background-color 260ms ease, color 260ms ease;
}

button, a { font: inherit; }
a { color: inherit; }
button { color: inherit; }

.page-noise {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.13;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.page-orb { position: absolute; z-index: -2; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.page-orb-one { width: 40rem; height: 40rem; top: 3rem; right: -24rem; background: radial-gradient(circle, var(--hero-glow), transparent 68%); }
.page-orb-two { width: 32rem; height: 32rem; top: 105rem; left: -25rem; background: radial-gradient(circle, rgba(141, 92, 255, 0.1), transparent 68%); }

.skip-link {
  position: fixed;
  z-index: 100;
  left: 1rem;
  top: -4rem;
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  color: var(--canvas);
  background: var(--ink);
  transition: top 160ms ease;
}
.skip-link:focus { top: 1rem; }

.section-shell { width: min(1180px, calc(100% - 4rem)); margin-inline: auto; }

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1260px, calc(100% - 3rem));
  min-height: 5.7rem;
  margin: 0 auto;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: background-color 230ms ease, border-color 230ms ease, width 230ms ease;
}
.site-header.is-scrolled { width: min(1260px, calc(100% - 1.5rem)); border-color: var(--line); background: var(--nav-bg); }

.brand { display: inline-flex; align-items: center; width: fit-content; gap: 0.6rem; color: var(--ink); text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 2rem; height: 2rem; color: var(--ink); }
.brand-mark svg { width: 100%; height: 100%; stroke: currentColor; stroke-width: 2.7; stroke-linecap: round; stroke-linejoin: round; }
.brand-name { font-size: 1.06rem; font-weight: 800; letter-spacing: -0.07em; }
.brand-name i { font-style: normal; font-weight: 500; }

.site-nav { justify-self: center; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { position: relative; color: var(--ink-soft); font-size: 0.79rem; font-weight: 700; letter-spacing: -0.02em; text-decoration: none; transition: color 160ms ease; }
.nav-links a::after { position: absolute; right: 0; bottom: -0.45rem; left: 0; height: 1px; background: var(--ink); content: ""; transform: scaleX(0); transform-origin: right; transition: transform 180ms ease; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--ink); }
.nav-links a:hover::after, .nav-links a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 0.75rem; }
.theme-toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  background: var(--surface);
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}
.theme-toggle:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.theme-toggle:focus-visible, .menu-toggle:focus-visible { outline: 2px solid var(--accent-deep); outline-offset: 3px; }
.theme-toggle svg { position: absolute; width: 1rem; height: 1rem; fill: none; stroke: var(--ink); stroke-width: 1.65; stroke-linecap: round; transition: opacity 180ms ease, transform 220ms ease; }
.moon-icon { opacity: 0; transform: rotate(-40deg) scale(0.6); }
html[data-theme="dark"] .sun-icon { opacity: 0; transform: rotate(40deg) scale(0.6); }
html[data-theme="dark"] .moon-icon { opacity: 1; transform: rotate(0) scale(1); }

.header-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 0.65rem;
  border: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}
.header-cta { min-height: 2.55rem; padding: 0 1rem 0 1.1rem; border-radius: 999px; color: #142119; background: var(--accent); }
.header-cta svg, .button svg { width: 1rem; height: 1rem; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.header-cta:hover, .button:hover { transform: translateY(-2px); }
.header-cta:hover { box-shadow: 0 8px 18px rgba(111, 159, 43, 0.24); }
.menu-toggle { display: none; }

.hero { display: grid; grid-template-columns: minmax(0, 0.93fr) minmax(390px, 0.87fr); align-items: center; min-height: calc(100svh - 5.7rem); padding-top: 5.8rem; padding-bottom: 4.2rem; gap: clamp(2rem, 5vw, 6.3rem); }
.eyebrow { display: flex; align-items: center; gap: 0.7rem; margin: 0 0 1.35rem; color: var(--ink-soft); font-family: "DM Mono", monospace; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.02em; text-transform: uppercase; }
.eyebrow span, .closing-topline > span { width: 0.48rem; height: 0.48rem; border-radius: 50%; background: var(--accent-deep); box-shadow: 0 0 0 4px rgba(182, 237, 83, 0.14); }

h1, h2, h3, p { margin-top: 0; }
h1, h2 { margin-bottom: 0; font-weight: 800; letter-spacing: -0.078em; line-height: 0.97; }
h1 { max-width: 700px; font-size: clamp(3.35rem, 6.15vw, 5.75rem); }
h1 em, h2 em { color: var(--ink-soft); font-style: normal; font-weight: 500; }
.hero-intro { max-width: 30.8rem; margin: 2rem 0 0; color: var(--ink-soft); font-size: 1.05rem; font-weight: 500; letter-spacing: -0.035em; line-height: 1.68; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; margin-top: 2.1rem; }
.button { min-height: 3.25rem; padding: 0 1.35rem; border-radius: 999px; }
.button-primary { color: #142119; background: var(--accent); }
.button-primary:hover { box-shadow: 0 12px 24px rgba(111, 159, 43, 0.25); }
.button-text { padding-inline: 0; color: var(--ink); background: transparent; }
.button-text span { margin-left: 0.05rem; font-size: 1.15rem; font-weight: 500; transition: transform 160ms ease; }
.button-text:hover span { transform: translateY(3px); }

.proof-strip { display: flex; align-items: flex-start; gap: clamp(1.1rem, 3vw, 2.2rem); margin-top: clamp(3.2rem, 6vw, 5.4rem); }
.proof-strip > div { position: relative; display: grid; gap: 0.3rem; }
.proof-strip > div:not(:last-child)::after { position: absolute; top: 0.25rem; right: clamp(-1.15rem, -1.75vw, -0.6rem); width: 1px; height: 2rem; background: var(--line); content: ""; }
.proof-strip strong { font-size: clamp(0.9rem, 1.5vw, 1.13rem); font-weight: 800; letter-spacing: -0.06em; white-space: nowrap; }
.proof-strip strong span { color: var(--accent-deep); }
.proof-strip small { color: var(--ink-faint); font-size: 0.62rem; font-weight: 700; letter-spacing: -0.02em; }

.hero-visual { position: relative; width: min(100%, 29rem); min-height: 33rem; justify-self: end; }
.hero-visual::before { position: absolute; inset: 5% 0 7% 4%; border: 1px solid var(--line); border-radius: 2rem; background: var(--surface); box-shadow: var(--shadow); content: ""; transform: rotate(4.5deg); }
.hero-visual::after { position: absolute; z-index: -1; width: 73%; height: 73%; right: 4%; bottom: 4%; border-radius: 50%; background: radial-gradient(circle, rgba(148, 102, 255, 0.26), transparent 68%); content: ""; }
.hero-panel { position: absolute; overflow: hidden; border: 7px solid #17231f; border-radius: 1.86rem; box-shadow: 0 28px 42px rgba(16, 27, 23, 0.28); }
.hero-panel::after { position: absolute; top: 0.52rem; left: 50%; width: 35%; height: 0.92rem; border-radius: 0 0 0.8rem 0.8rem; background: #17231f; content: ""; transform: translateX(-50%); }
.product-screen { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.panel-ask { z-index: 2; right: 11%; bottom: 0; width: 13.5rem; height: 28rem; transform: rotate(4deg); }
.panel-crypto { z-index: 1; top: 2.3rem; left: 7%; width: 12.4rem; height: 25.5rem; transform: rotate(-7.5deg); }
.hero-product-pills { position: absolute; z-index: 4; top: 5.3rem; right: -0.9rem; display: grid; gap: 0.6rem; }
.hero-product-pills div { display: flex; align-items: center; gap: 0.42rem; padding: 0.34rem 0.8rem 0.34rem 0.35rem; border: 1px solid rgba(255,255,255,0.42); border-radius: 999px; color: #fff; background: rgba(23, 36, 32, 0.84); box-shadow: 0 8px 18px rgba(26, 36, 31, 0.2); font-family: "DM Mono", monospace; font-size: 0.5rem; line-height: 1.1; }
.hero-product-pills img { width: 1.65rem; height: 1.65rem; border-radius: 0.45rem; object-fit: cover; }
.visual-label { position: absolute; z-index: 5; color: var(--ink-soft); font-family: "DM Mono", monospace; font-size: 0.56rem; letter-spacing: -0.02em; }
.label-top { top: -0.1rem; left: 0.4rem; display: flex; align-items: center; gap: 0.43rem; }
.label-top span { width: 0.38rem; height: 0.38rem; border-radius: 50%; background: var(--accent-deep); }
.label-bottom { right: 0.25rem; bottom: -1.7rem; color: var(--ink-faint); }
.label-bottom span { margin-left: 0.25rem; color: var(--ink); }

.marquee-band { position: relative; width: 100%; overflow: hidden; padding: 1.1rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.marquee-track { display: flex; width: max-content; align-items: center; gap: 2.25rem; color: var(--ink-soft); font-family: "DM Mono", monospace; font-size: 0.62rem; font-weight: 500; letter-spacing: 0.02em; text-transform: uppercase; animation: scroll-band 32s linear infinite; }
.marquee-track b { color: var(--accent-deep); font-size: 0.75rem; }
@keyframes scroll-band { to { transform: translateX(-50%); } }

.work-section { padding-top: clamp(6rem, 12vw, 10.5rem); padding-bottom: clamp(5.7rem, 11vw, 9.8rem); }
.section-heading { margin-bottom: 3.9rem; }
.heading-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.63fr); align-items: end; gap: 3rem; }
h2 { font-size: clamp(2.8rem, 5.2vw, 4.75rem); }
.heading-row > p { max-width: 28rem; margin: 0 0 0.15rem; color: var(--ink-soft); font-size: 0.95rem; font-weight: 500; letter-spacing: -0.035em; line-height: 1.65; }

.work-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.project-card { overflow: hidden; border: 1px solid var(--line); border-radius: 1.6rem; background: var(--surface); box-shadow: 0 0 0 rgba(0,0,0,0); transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease; }
.project-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-soft); transform: translateY(-5px); }
.project-art { position: relative; display: flex; align-items: center; justify-content: center; height: 25.5rem; overflow: hidden; }
.project-ask .project-art { background: linear-gradient(127deg, #754cf1 0%, #a66cff 45%, #6bd9dd 100%); }
.project-crypto .project-art { background: linear-gradient(130deg, #090a18 0%, #181864 45%, #3c31c2 100%); }
.project-voice .project-art { background: linear-gradient(126deg, #fffaf0 0%, #f9efcb 100%); }
.project-menu .project-art { background: linear-gradient(135deg, #22312b 0%, #2e5a45 100%); }
.art-kicker { position: absolute; z-index: 4; top: 1.35rem; left: 1.4rem; color: rgba(255, 255, 255, 0.84); font-family: "DM Mono", monospace; font-size: 0.58rem; text-transform: uppercase; }
.project-voice .art-kicker { color: #90640b; }
.art-kicker span { margin-left: 0.25rem; color: var(--accent); }
.project-phone { position: absolute; z-index: 2; bottom: -1rem; width: 15rem; border: 0.48rem solid #17231f; border-bottom: 0; border-radius: 2rem 2rem 0 0; box-shadow: 0 -8px 36px rgba(5, 5, 22, 0.2); }
.project-phone::after { content: ""; }
.project-ask .project-phone { transform: rotate(-4deg); }
.project-crypto .project-phone { width: 14.6rem; transform: rotate(5deg); }
.art-orbit { position: absolute; border: 1px solid rgba(255,255,255,0.24); border-radius: 50%; }
.orbit-one { top: 15%; right: -16%; width: 20rem; height: 20rem; }
.orbit-two { bottom: -28%; left: -11%; width: 14rem; height: 14rem; }
.art-stat { position: absolute; z-index: 3; right: 1.35rem; bottom: 1.2rem; display: grid; gap: 0.05rem; padding: 0.6rem 0.75rem; border: 1px solid rgba(255,255,255,0.4); border-radius: 0.7rem; color: #fff; background: rgba(24, 20, 53, 0.33); backdrop-filter: blur(8px); }
.art-stat strong { font-family: "DM Mono", monospace; font-size: 0.78rem; }
.art-stat span { font-size: 0.53rem; font-weight: 700; opacity: 0.85; }
.market-lines { position: absolute; top: 17%; right: -4%; display: flex; align-items: end; gap: 0.35rem; height: 8rem; opacity: 0.33; transform: rotate(-7deg); }
.market-lines i { display: block; width: 0.35rem; border-radius: 0.35rem; background: #80ff7e; }
.market-lines i:nth-child(1) { height: 23%; }.market-lines i:nth-child(2) { height: 53%; }.market-lines i:nth-child(3) { height: 36%; }.market-lines i:nth-child(4) { height: 84%; }.market-lines i:nth-child(5) { height: 63%; }

.project-info { padding: 1.5rem 1.6rem 1.45rem; }
.project-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.app-lockup { display: flex; align-items: center; gap: 0.8rem; }
.app-lockup > img { width: 2.9rem; height: 2.9rem; flex: 0 0 auto; border-radius: 0.76rem; object-fit: cover; box-shadow: 0 4px 12px rgba(15, 27, 23, 0.14); }
.app-lockup h3 { margin: 0; font-size: 1.04rem; font-weight: 800; letter-spacing: -0.065em; line-height: 1.02; }
.app-lockup p { margin: 0.24rem 0 0; color: var(--ink-faint); font-family: "DM Mono", monospace; font-size: 0.55rem; line-height: 1.25; }
.project-number { color: var(--ink-faint); font-family: "DM Mono", monospace; font-size: 0.6rem; }
.project-description { max-width: 28rem; min-height: 3.8em; margin: 1.4rem 0 1.45rem; color: var(--ink-soft); font-size: 0.82rem; font-weight: 600; letter-spacing: -0.03em; line-height: 1.6; }
.project-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1.05rem; border-top: 1px solid var(--line); }
.platforms, .store-links { display: flex; flex-wrap: wrap; align-items: center; gap: 0.38rem; }
.platforms span { padding: 0.3rem 0.48rem; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); font-family: "DM Mono", monospace; font-size: 0.52rem; }
.store-links { justify-content: flex-end; gap: 0.72rem; }
.store-links a { color: var(--ink); font-size: 0.66rem; font-weight: 800; letter-spacing: -0.04em; text-decoration: none; white-space: nowrap; }
.store-links a span { color: var(--accent-deep); }
.store-links a:hover { text-decoration: underline; text-underline-offset: 0.25rem; }

.voice-composition { position: relative; z-index: 2; display: grid; place-items: center; width: 14.5rem; height: 14.5rem; border-radius: 2.6rem; background: rgba(255,255,255,0.35); box-shadow: inset 0 0 0 1px rgba(135, 95, 7, 0.09), 0 18px 38px rgba(165, 126, 43, 0.15); transform: rotate(-6deg); }
.voice-composition > img { position: relative; z-index: 2; width: 8.5rem; height: 8.5rem; border-radius: 2.2rem; box-shadow: 0 15px 26px rgba(147, 85, 8, 0.22); }
.sound-wave { position: absolute; display: flex; align-items: center; gap: 0.29rem; height: 6rem; }
.sound-wave-one { top: -1.8rem; right: -2.8rem; transform: rotate(28deg); }
.sound-wave-two { bottom: -1.8rem; left: -2.8rem; transform: rotate(28deg); }
.sound-wave i { width: 0.35rem; border-radius: 999px; background: #ff9800; }
.sound-wave i:nth-child(1), .sound-wave i:nth-child(7) { height: 20%; }.sound-wave i:nth-child(2), .sound-wave i:nth-child(6) { height: 45%; }.sound-wave i:nth-child(3), .sound-wave i:nth-child(5) { height: 74%; }.sound-wave i:nth-child(4) { height: 100%; }
.menu-composition { position: relative; width: 16rem; height: 14rem; }
.menu-product-screen { position: absolute; z-index: 3; bottom: -1.8rem; left: 50%; width: 9.8rem; border: 0.35rem solid rgba(255,255,255,0.76); border-radius: 1.1rem 1.1rem 0 0; box-shadow: 0 18px 28px rgba(3, 12, 7, 0.3); transform: translateX(-50%) rotate(-4deg); }
.menu-product-icon { position: absolute; z-index: 5; top: 1.2rem; right: -0.45rem; width: 3.4rem; height: 3.4rem; border: 0.22rem solid rgba(255,255,255,0.86); border-radius: 0.95rem; box-shadow: 0 12px 20px rgba(3, 12, 7, 0.24); }
.menu-card { position: absolute; width: 8.7rem; height: 11.2rem; padding: 1.1rem; border: 1px solid rgba(226, 255, 234, 0.18); border-radius: 1.1rem; background: rgba(245, 253, 237, 0.12); backdrop-filter: blur(6px); }
.menu-card span { display: block; height: 0.48rem; margin-bottom: 0.7rem; border-radius: 999px; background: rgba(237, 255, 235, 0.6); }
.menu-card span:nth-child(2) { width: 76%; }.menu-card span:nth-child(3) { width: 45%; }
.menu-card-back { top: 0; left: -0.7rem; transform: rotate(-15deg); }.menu-card-front { right: -0.3rem; bottom: -0.3rem; transform: rotate(12deg); }

.capabilities-section { padding: clamp(5.6rem, 11vw, 9.6rem) 0; color: #eaf2ea; background: #16241f; }
.capabilities-inner { display: grid; grid-template-columns: minmax(17rem, 0.85fr) minmax(25rem, 1.15fr); gap: clamp(3rem, 8vw, 9rem); }
.capabilities-section .eyebrow { color: #abc0b4; }
.capabilities-section .eyebrow span { background: var(--accent); }
.capabilities-copy h2 { color: #f1f7ef; }
.capabilities-copy h2 em { color: #a7b9ae; }
.capabilities-copy > p:not(.eyebrow) { max-width: 26rem; margin: 1.6rem 0 2rem; color: #a9b8af; font-size: 0.94rem; font-weight: 500; letter-spacing: -0.03em; line-height: 1.65; }
.button-secondary { color: #16241f; background: var(--accent); }
.capability-list { border-top: 1px solid rgba(233,244,234,0.16); }
.capability-list article { display: grid; grid-template-columns: 2.25rem 1fr auto; gap: 1rem; padding: 1.35rem 0; border-bottom: 1px solid rgba(233,244,234,0.16); transition: padding 200ms ease; }
.capability-list article:hover { padding-inline: 0.55rem; }
.capability-index { padding-top: 0.22rem; color: #81968a; font-family: "DM Mono", monospace; font-size: 0.57rem; }
.capability-list h3 { margin: 0; color: #f1f7ef; font-size: 0.98rem; font-weight: 700; letter-spacing: -0.045em; }
.capability-list p { max-width: 26rem; margin: 0.35rem 0 0; color: #9caf9f; font-size: 0.76rem; font-weight: 500; letter-spacing: -0.02em; line-height: 1.55; }
.capability-arrow { align-self: center; color: var(--accent); font-size: 1.12rem; }

.approach-section { padding-top: clamp(6rem, 11vw, 9.5rem); padding-bottom: clamp(6.5rem, 12vw, 10.8rem); }
.approach-heading { margin-bottom: 3.4rem; }
.process-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; padding: 0; border-top: 1px solid var(--line-strong); list-style: none; }
.process-list li { position: relative; min-height: 20rem; padding: 1.4rem 1.5rem 1.5rem 0; border-right: 1px solid var(--line); }
.process-list li:not(:first-child) { padding-left: 1.5rem; }
.process-list li:last-child { border-right: 0; }
.process-number { color: var(--ink-faint); font-family: "DM Mono", monospace; font-size: 0.58rem; }
.process-icon { display: grid; place-items: center; width: 3.15rem; height: 3.15rem; margin-top: 3.6rem; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: var(--surface); }
.process-icon svg { width: 1.45rem; height: 1.45rem; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.process-list h3 { margin: 2rem 0 0.58rem; font-size: 1rem; font-weight: 800; letter-spacing: -0.055em; }
.process-list p { margin: 0; color: var(--ink-soft); font-size: 0.76rem; font-weight: 500; letter-spacing: -0.02em; line-height: 1.55; }

.closing-section { position: relative; overflow: hidden; color: #142119; background: var(--accent); }
.closing-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(23rem, 0.82fr); align-items: center; gap: clamp(3rem, 8vw, 8.5rem); padding-top: clamp(5.6rem, 10vw, 8.8rem); padding-bottom: clamp(5.6rem, 10vw, 8.8rem); }
.closing-topline { display: inline-flex; align-items: center; gap: 0.65rem; font-family: "DM Mono", monospace; font-size: 0.61rem; font-weight: 500; text-transform: uppercase; }
.closing-topline > span { background: #18261f; box-shadow: 0 0 0 4px rgba(24, 38, 31, 0.12); }
.closing-inner h2 { margin: 1.7rem 0 0; color: #142119; font-size: clamp(3rem, 6vw, 5.6rem); }
.closing-inner h2 em { color: #4e7438; }
.closing-copy > p { max-width: 24rem; margin: 1.4rem 0 0; color: #305039; font-size: 1rem; font-weight: 600; letter-spacing: -0.035em; line-height: 1.55; }
.button-light { color: #f5f8f2; background: #17261e; }
.button-light:hover { box-shadow: 0 14px 26px rgba(18, 37, 27, 0.24); }
.contact-form { display: grid; width: 100%; padding: clamp(1.35rem, 3vw, 2rem); border: 1px solid rgba(20, 33, 25, 0.12); border-radius: 1.45rem; color: #17261e; background: rgba(250, 252, 247, 0.94); box-shadow: 0 24px 42px rgba(24, 49, 31, 0.17); text-align: left; }
.form-content { display: grid; gap: 1rem; }
.form-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding-bottom: 0.2rem; }
.form-heading h3 { margin: 0; color: #17261e; font-size: 1.08rem; font-weight: 800; letter-spacing: -0.06em; }
.form-heading p { margin: 0; color: #627168; font-family: "DM Mono", monospace; font-size: 0.58rem; }
.form-success { display: none; place-items: center; min-height: 24rem; padding: 1rem; text-align: center; }
.contact-form.is-success .form-content { display: none; }
.contact-form.is-success .form-success { display: grid; }
.success-icon { display: grid; place-items: center; width: 3.3rem; height: 3.3rem; margin-bottom: 0.1rem; border-radius: 50%; color: #f6faef; background: #284b35; box-shadow: 0 0 0 0.45rem rgba(131, 184, 67, 0.17); }
.success-icon svg { width: 1.45rem; height: 1.45rem; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.form-success h3 { margin: 1rem 0 0; color: #17261e; font-size: clamp(1.45rem, 2.2vw, 1.85rem); font-weight: 800; letter-spacing: -0.065em; }
.form-success p { max-width: 19rem; margin: 0.75rem 0 0; color: #56675d; font-size: 0.83rem; font-weight: 600; letter-spacing: -0.025em; line-height: 1.6; }
.form-error, .form-field-error { display: none; }
[data-fs-error][data-fs-active] { display: block; color: #a52b27; font-family: "DM Mono", monospace; font-size: 0.58rem; line-height: 1.45; }
.form-error[data-fs-active] { padding: 0.62rem 0.7rem; border: 1px solid rgba(165, 43, 39, 0.22); border-radius: 0.6rem; background: #fff4f2; }
[data-fs-field][aria-invalid="true"] { border-color: #b44f46; background: #fff9f8; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.85rem; }
.form-field { display: grid; gap: 0.42rem; }
.form-field label { color: #34443b; font-family: "DM Mono", monospace; font-size: 0.58rem; font-weight: 500; letter-spacing: 0.01em; text-transform: uppercase; }
.form-field label > span, .form-actions p span { color: #739e32; }
.form-field label small { margin-left: 0.25rem; color: #829087; font-size: 0.53rem; text-transform: none; }
.form-field input, .form-field textarea { width: 100%; border: 1px solid rgba(23, 38, 30, 0.17); border-radius: 0.65rem; outline: none; color: #17261e; background: #fff; font-family: "Manrope", "Avenir Next", Avenir, sans-serif; font-size: 0.82rem; font-weight: 600; transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease; }
.form-field input { min-height: 3rem; padding: 0 0.75rem; }
.form-field textarea { min-height: 6.1rem; padding: 0.76rem; resize: vertical; }
.form-field input:focus, .form-field textarea:focus { border-color: #81b333; background: #fcfff8; box-shadow: 0 0 0 3px rgba(144, 198, 67, 0.18); }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 0.2rem; }
.form-actions .button { min-height: 3rem; padding-inline: 1.1rem; cursor: pointer; }
.form-actions .button[disabled] { cursor: wait; opacity: 0.7; transform: none; }
.form-actions p { margin: 0; color: #718077; font-family: "DM Mono", monospace; font-size: 0.52rem; line-height: 1.45; text-align: right; }

.site-footer { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: end; gap: 1rem; padding-top: 2.4rem; padding-bottom: 2.4rem; }
.site-footer > p { margin: 0; color: var(--ink-faint); font-family: "DM Mono", monospace; font-size: 0.58rem; line-height: 1.6; text-align: center; }
.footer-meta { display: flex; justify-content: flex-end; align-items: center; gap: 1.1rem; color: var(--ink-faint); font-family: "DM Mono", monospace; font-size: 0.56rem; }
.footer-meta a { color: var(--ink-soft); text-decoration: none; }.footer-meta a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 0.2rem; }

.reveal { animation: rise-in 700ms both cubic-bezier(.2,.75,.3,1); }
.work-grid .reveal:nth-child(2) { animation-delay: 75ms; }.work-grid .reveal:nth-child(3) { animation-delay: 110ms; }.work-grid .reveal:nth-child(4) { animation-delay: 150ms; }
@keyframes rise-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1020px) {
  .site-header { grid-template-columns: 1fr auto; }.site-nav { order: 3; }.header-actions { grid-column: 2; grid-row: 1; }
  .nav-links { position: fixed; z-index: 20; top: 4.85rem; left: 0.75rem; right: 0.75rem; display: grid; gap: 0; padding: 0.5rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--surface-solid); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(-0.6rem) scale(0.98); transform-origin: top; transition: opacity 180ms ease, transform 180ms ease; }
  .nav-links.is-open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
  .nav-links a { padding: 0.92rem 0.85rem; border-radius: 0.6rem; }.nav-links a:hover, .nav-links a:focus-visible { background: var(--surface-muted); }.nav-links a::after { display: none; }
  .menu-toggle { display: grid; gap: 0.26rem; place-content: center; width: 2.55rem; height: 2.55rem; padding: 0; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; background: var(--surface); }
  .menu-toggle span { display: block; width: 0.95rem; height: 1px; background: var(--ink); transition: transform 180ms ease; }.menu-toggle.is-open span:first-child { transform: translateY(0.14rem) rotate(45deg); }.menu-toggle.is-open span:last-child { transform: translateY(-0.14rem) rotate(-45deg); }
  .hero { grid-template-columns: 1fr minmax(20rem, 0.8fr); gap: 2rem; }.hero-visual { min-height: 29rem; }.panel-ask { right: 4%; width: 11.8rem; height: 24rem; }.panel-crypto { top: 3.3rem; left: 0; width: 10.8rem; height: 22rem; }.hero-product-pills { right: -1.4rem; }
  .capabilities-inner { gap: 4rem; }
}

@media (max-width: 780px) {
  .section-shell { width: min(calc(100% - 2.5rem), 38rem); }
  .site-header { display: block; width: calc(100% - 1.5rem); min-height: 4.85rem; }.site-header.is-scrolled { width: calc(100% - 1.5rem); }
  .site-header > .brand { position: absolute; top: 1.36rem; left: 0; }.site-nav { position: absolute; top: 1.15rem; right: 0; margin: 0; }.header-actions { position: absolute; top: 1.15rem; right: 3.1rem; margin: 0; gap: 0.42rem; }.header-cta { display: none; }
  .hero { grid-template-columns: minmax(0, 1fr); min-height: unset; padding-top: 4.7rem; padding-bottom: 5.3rem; }.hero-copy { min-width: 0; max-width: 35rem; }.hero-intro { max-width: 100%; overflow-wrap: break-word; }.hero-visual { width: min(25.5rem, 91%); min-height: 28.5rem; margin: 1.7rem auto 0; justify-self: center; }.panel-ask { right: 9%; }.panel-crypto { left: 5%; }.hero-product-pills { right: -0.8rem; }.label-bottom { right: 0; }
  .proof-strip { gap: 1.6rem; }.proof-strip > div:not(:last-child)::after { right: -0.8rem; }
  .heading-row { grid-template-columns: 1fr; gap: 1.4rem; }.section-heading { margin-bottom: 2.7rem; }
  .work-grid { grid-template-columns: 1fr; }.project-art { height: 23rem; }.project-description { min-height: unset; }
  .capabilities-inner { grid-template-columns: 1fr; gap: 3rem; }.capability-list article { grid-template-columns: 1.8rem 1fr auto; }
  .process-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }.process-list li { min-height: 17rem; border-bottom: 1px solid var(--line); }.process-list li:nth-child(2) { border-right: 0; }.process-list li:nth-child(3) { padding-left: 0; }.process-list li:nth-child(4) { border-right: 0; }.process-icon { margin-top: 2.5rem; }
  .closing-inner { grid-template-columns: 1fr; gap: 2.5rem; }.closing-copy { text-align: center; }.closing-copy > p { margin-inline: auto; }
  .site-footer { grid-template-columns: 1fr; align-items: start; gap: 1.35rem; }.site-footer > p { text-align: left; }.footer-meta { justify-content: space-between; }
}

@media (max-width: 500px) {
  .section-shell { width: calc(100% - 2rem); }
  h1 { font-size: clamp(3.1rem, 15.2vw, 4.3rem); }.hero-intro { font-size: 0.96rem; }.hero-actions { gap: 1.05rem; }.proof-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }.proof-strip > div:not(:last-child)::after { right: -0.42rem; }.proof-strip strong { font-size: 0.77rem; }.proof-strip small { font-size: 0.52rem; line-height: 1.35; }
  .hero-visual { min-height: 25.3rem; }.hero-visual::before { border-radius: 1.55rem; }.panel-ask { width: 10.5rem; height: 21.5rem; }.panel-crypto { top: 3.1rem; width: 9.6rem; height: 19.5rem; }.hero-product-pills { top: 5.3rem; right: -1.1rem; }.hero-product-pills div { padding-right: 0.5rem; }.label-top { font-size: 0.48rem; }.label-bottom { bottom: -1.35rem; font-size: 0.48rem; }
  .marquee-track { gap: 1.5rem; }.work-section { padding-top: 5.7rem; }.project-info { padding: 1.3rem; }.project-art { height: 20.5rem; }.project-phone { width: 12.6rem; }.project-crypto .project-phone { width: 12.1rem; }.project-footer { align-items: flex-start; flex-direction: column; }.store-links { justify-content: flex-start; }.voice-composition { width: 12.5rem; height: 12.5rem; }.voice-composition > img { width: 7.1rem; height: 7.1rem; }.menu-composition { transform: scale(0.83); }
  .capabilities-section { padding-block: 5.5rem; }.capability-list article { gap: 0.55rem; }.capability-list p { font-size: 0.71rem; }.capability-arrow { font-size: 0.95rem; }.process-list { grid-template-columns: 1fr; }.process-list li, .process-list li:not(:first-child) { min-height: unset; padding: 1.25rem 0 2.2rem; border-right: 0; }.process-list li:nth-child(3) { padding-left: 0; }.process-icon { margin-top: 2rem; }.process-list h3 { margin-top: 1.5rem; }
  .closing-inner { padding-inline: 0.3rem; }.closing-inner h2 { font-size: clamp(2.85rem, 13.8vw, 4rem); }.closing-copy > p { font-size: 0.92rem; }.form-row { grid-template-columns: 1fr; gap: 1rem; }.form-heading { align-items: flex-start; flex-direction: column; gap: 0.35rem; }.form-success { min-height: 19rem; }.form-field input, .form-field textarea { font-size: 1rem; }.form-actions { align-items: stretch; flex-direction: column; }.form-actions .button { width: 100%; }.form-actions p { text-align: left; }
  .footer-meta { align-items: flex-start; flex-direction: column; gap: 0.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }.marquee-track, .reveal { animation: none; }.reveal { opacity: 1; transform: none; } *, *::before, *::after { transition-duration: 0.01ms !important; }
}
