@font-face {
  font-family: 'The Seasons';
  src: url('../assets/fonts/the-seasons.woff2') format('woff2'),
       url('../assets/fonts/the-seasons.woff') format('woff'),
       url('../assets/fonts/the-seasons.ttf') format('truetype');
  font-weight: 300 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #09090b;
  --panel: #111114;
  --panel-2: #17171b;
  --paper: #f1efe8;
  --muted: #aaa8a1;
  --line: rgba(255,255,255,.12);
  --violet: #8f5cff;
  --lime: #c7ff54;
  --orange: #ff744d;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--lime); color: var(--ink); }

.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 999; padding: .8rem 1rem; background: var(--lime); color: var(--ink); font-weight: 700; border-radius: .2rem; }
.skip-link:focus { top: 1rem; }
.shell { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.site-header { position: fixed; inset: 0 0 auto; z-index: 100; border-bottom: 1px solid transparent; transition: background .3s, border-color .3s; }
.site-header.scrolled { background: rgba(9,9,11,.78); border-color: var(--line); backdrop-filter: blur(18px); }
.nav-wrap { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .72rem; font-weight: 850; letter-spacing: .09em; }
.brand-mark { width: 18px; height: 18px; display: inline-block; border: 4px solid var(--paper); border-radius: 50%; box-shadow: inset 4px 0 0 var(--violet); }
.desktop-nav { display: flex; gap: 2rem; margin-left: auto; }
.desktop-nav a { color: #cccac3; font-size: .9rem; transition: color .2s; }
.desktop-nav a:hover { color: white; }
.nav-cta { margin-left: 1rem; padding: .7rem 1rem; border: 1px solid var(--line); border-radius: 999px; font-size: .86rem; font-weight: 700; transition: background .2s, color .2s; }
.nav-cta:hover { background: var(--paper); color: var(--ink); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 12px; }
.menu-toggle span { display: block; height: 1px; margin: 6px 0; background: white; transition: transform .25s; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-nav { display: none; }

.hero { position: relative; min-height: 100vh; padding: 150px 0 0; overflow: hidden; background: radial-gradient(circle at 60% 22%, rgba(105,67,200,.12), transparent 30%); }
.hero-grid { position: absolute; inset: 80px 0 0; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to bottom, black, transparent 76%); }
.orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.orb-one { width: 440px; height: 440px; right: -250px; top: 120px; background: radial-gradient(circle at 35% 30%, #b99cff, #6330dd 32%, rgba(61,31,130,.1) 70%); opacity: .28; filter: blur(10px); }
.orb-two { width: 260px; height: 260px; left: -160px; bottom: 80px; background: var(--lime); opacity: .08; filter: blur(30px); }
.hero-inner { position: relative; z-index: 2; }
.kicker, .eyebrow { margin: 0; text-transform: uppercase; letter-spacing: .18em; font-size: .69rem; font-weight: 750; color: #c5c3bd; }
.kicker span { color: var(--violet); margin: 0 .45rem; }
.hero-title { max-width: 1100px; margin: 3.2rem 0 2rem; font-size: clamp(3.6rem, 8.3vw, 8.25rem); font-weight: 560; letter-spacing: -.07em; line-height: .89; }
.hero-title .word-cycle { font-family: Georgia, serif; font-weight: 400; font-style: italic; color: var(--violet); white-space: nowrap; }
.hero-bottom { display: grid; grid-template-columns: 1fr 1.1fr; align-items: end; gap: 4rem; margin-left: 38%; }
.hero-bottom > p { max-width: 470px; margin: 0; color: #b7b5af; font-size: clamp(1rem, 1.5vw, 1.22rem); }
.hero-actions { display: flex; align-items: center; gap: 2rem; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 2.5rem; padding: .85rem 1.2rem; border: 1px solid transparent; border-radius: .2rem; font-weight: 750; cursor: pointer; transition: transform .2s, background .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--lime); color: var(--ink); box-shadow: 0 0 0 rgba(199,255,84,0); }
.button-primary:hover { box-shadow: 0 10px 32px rgba(199,255,84,.16); }
.text-link { display: inline-flex; gap: .6rem; align-items: center; padding-bottom: .25rem; border-bottom: 1px solid #666; font-size: .9rem; }
.signal-card { position: relative; margin-top: 6rem; border: 1px solid var(--line); border-bottom: 0; border-radius: 1.2rem 1.2rem 0 0; background: linear-gradient(145deg, rgba(28,28,34,.92), rgba(14,14,17,.95)); overflow: hidden; transform-style: preserve-3d; }
.signal-top { height: 54px; display: flex; justify-content: space-between; align-items: center; padding: 0 1.3rem; border-bottom: 1px solid var(--line); color: #88878a; font: 700 .61rem/1 monospace; letter-spacing: .12em; }
.status { display: inline-flex; align-items: center; gap: .45rem; }
.status i { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px var(--lime); }
.signal-visual { position: relative; min-height: 360px; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle, rgba(143,92,255,.16), transparent 38%); }
.ring { position: absolute; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.ring-one { width: 180px; animation: pulse 4s ease-in-out infinite; }
.ring-two { width: 290px; animation: pulse 4s 1s ease-in-out infinite; }
.ring-three { width: 440px; animation: pulse 4s 2s ease-in-out infinite; }
.signal-core { position: relative; width: 110px; aspect-ratio: 1; display: grid; place-items: center; background: var(--violet); color: white; border-radius: 50%; font: 500 3.5rem/1 Georgia, serif; font-style: italic; box-shadow: 0 0 70px rgba(143,92,255,.55); }
.chip { position: absolute; padding: .45rem .65rem; border: 1px solid var(--line); background: rgba(9,9,11,.7); border-radius: .25rem; font: 700 .57rem/1 monospace; letter-spacing: .12em; }
.chip-one { left: 15%; top: 28%; }.chip-two { right: 16%; top: 39%; }.chip-three { left: 25%; bottom: 22%; }
.signal-stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.signal-stats div { display: flex; align-items: baseline; gap: .8rem; padding: 1.35rem; border-right: 1px solid var(--line); }
.signal-stats div:last-child { border-right: 0; }
.signal-stats strong { font-size: 1.5rem; letter-spacing: -.04em; }.signal-stats span { color: #8e8d90; font-size: .72rem; }
.marquee { position: relative; z-index: 3; overflow: hidden; border-block: 1px solid var(--line); background: var(--paper); color: var(--ink); transform: rotate(-1.2deg) scale(1.02); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 2.2rem; padding: .8rem 0; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; animation: marquee 24s linear infinite; }
.marquee-track i { color: var(--violet); font-style: normal; }

.section { padding: 9rem 0; }
.section-head { display: grid; grid-template-columns: .8fr 2.2fr 1fr; gap: 2.5rem; align-items: end; margin-bottom: 4.5rem; }
.section-index { display: block; color: #6f6e72; font: 600 .67rem/1 monospace; margin-bottom: 1.2rem; }
.section-head h2, .ai-copy h2 { margin: 0; font-size: clamp(2.6rem, 5vw, 5.15rem); line-height: .97; letter-spacing: -.055em; font-weight: 560; }
h2 em { color: var(--violet); font-family: Georgia, serif; font-weight: 400; }
.section-intro { margin: 0; color: #9d9ba0; font-size: .95rem; }
.bento-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.service-card { position: relative; min-height: 440px; padding: 2rem; background: var(--panel); border: 1px solid var(--line); border-radius: .55rem; overflow: hidden; }
.service-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(125deg, transparent 55%, rgba(255,255,255,.035)); pointer-events: none; }
.service-wide { grid-column: 1 / -1; min-height: 550px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem; align-items: center; }
.service-icon { width: 44px; height: 44px; display: grid; place-items: center; position: absolute; top: 1.6rem; right: 1.6rem; border-radius: 50%; background: white; color: black; font-size: 1.3rem; }
.service-icon.lime { background: var(--lime); }.service-icon.violet { background: var(--violet); color: white; }.service-icon.orange { background: var(--orange); }
.tag { color: #747378; font: 700 .62rem/1 monospace; letter-spacing: .14em; }
.service-card h3 { max-width: 520px; margin: 1.1rem 0; font-size: clamp(1.8rem, 3.1vw, 3.1rem); line-height: 1; letter-spacing: -.045em; font-weight: 570; }
.service-card p { max-width: 470px; margin: 0; color: #9e9da1; }
.pill-list, .project-meta ul { display: flex; flex-wrap: wrap; gap: .45rem; list-style: none; padding: 0; margin: 2rem 0 0; }
.pill-list li, .project-meta li { padding: .43rem .75rem; border: 1px solid var(--line); border-radius: 999px; color: #aaa9ad; font-size: .68rem; }
.browser-art { position: relative; margin: 6rem -5rem -5rem 0; min-height: 380px; background: #e9e6dc; border-radius: .5rem .5rem 0 0; color: #121214; transform: rotate(3deg); box-shadow: 0 30px 70px rgba(0,0,0,.3); }
.browser-bar { height: 36px; display: flex; gap: .35rem; align-items: center; padding: 0 .7rem; border-bottom: 1px solid #c8c5bb; }
.browser-bar i { width: 6px; height: 6px; border-radius: 50%; background: #aaa69c; }
.browser-content { position: absolute; inset: 36px 0 0; overflow: hidden; display: grid; place-items: center; }
.art-label { position: absolute; left: 1rem; top: 1rem; font: 800 .64rem/1 monospace; letter-spacing: .08em; }
.art-orb { width: 180px; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 30% 20%, #f5e2ff, #9565ec 38%, #26124e 74%); box-shadow: 40px 40px 0 #c7ff54; }
.art-lines { position: absolute; inset: auto 1rem 1rem; display: grid; gap: .4rem; }.art-lines i { height: 2px; background: #171719; }.art-lines i:nth-child(2) { width: 65%; }.art-lines i:nth-child(3) { width: 35%; }
.brand-art { position: absolute; inset: auto 2rem 2rem; height: 150px; display: flex; align-items: end; gap: .5rem; }
.brand-art span { font: 400 7rem/.75 Georgia, serif; color: var(--lime); margin-right: auto; }.brand-art i { width: 26px; border-radius: 999px; background: var(--lime); }.brand-art i:nth-of-type(1) { height: 35%; }.brand-art i:nth-of-type(2) { height: 55%; opacity: .8; }.brand-art i:nth-of-type(3) { height: 75%; opacity: .6; }.brand-art i:nth-of-type(4) { height: 100%; opacity: .4; }
.node-art { position: absolute; inset: auto 2rem 1rem; height: 170px; background-image: radial-gradient(rgba(255,255,255,.18) 1px, transparent 1px); background-size: 18px 18px; }
.node-art i { position: absolute; width: 42px; aspect-ratio: 1; background: var(--panel-2); border: 1px solid var(--violet); border-radius: .35rem; box-shadow: 0 0 25px rgba(143,92,255,.2); }.node-art i:nth-child(1) { left: 3%; top: 50%; }.node-art i:nth-child(2) { left: 37%; top: 12%; }.node-art i:nth-child(3) { right: 28%; bottom: 5%; }.node-art i:nth-child(4) { right: 3%; top: 22%; }
.node-art span { position: absolute; height: 1px; background: linear-gradient(90deg, var(--violet), transparent); transform-origin: left; }.node-art span:nth-of-type(1) { width: 145px; left: 9%; top: 58%; transform: rotate(-29deg); }.node-art span:nth-of-type(2) { width: 150px; left: 42%; top: 29%; transform: rotate(35deg); }.node-art span:nth-of-type(3) { width: 100px; right: 7%; top: 46%; transform: rotate(119deg); }
.service-row { grid-column: 1 / -1; min-height: 220px; display: grid; grid-template-columns: 1fr 1fr .5fr; align-items: center; gap: 3rem; }
.service-row .service-icon { position: static; margin-bottom: 2rem; }.service-row h3 { margin-bottom: 0; }.metric { text-align: right; }.metric strong { display: block; color: var(--orange); font-size: 3.5rem; line-height: 1; letter-spacing: -.06em; }.metric span { color: #858488; font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; }

.work-section { background: var(--paper); color: var(--ink); }
.work-section .eyebrow { color: #555359; }.work-section .section-intro { color: #555359; }.work-section h2 em { color: #6f42d5; }.section-link { justify-self: end; }
.project-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 5rem 1.2rem; }
.project:nth-child(3) { grid-column: 1 / -1; width: calc(50% - .6rem); margin-left: auto; }
.project-media { display: block; position: relative; overflow: hidden; aspect-ratio: 1.3; border-radius: .35rem; }
.project-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .5s; }
.project-media:hover img { transform: scale(1.035); filter: saturate(1.15); }
.project-purple { background: #7450dc; }.project-lime { background: #c7ff54; }.project-orange { background: #ff744d; }
.project-number { position: absolute; top: 1rem; left: 1rem; color: rgba(255,255,255,.7); font: 700 .65rem/1 monospace; }
.view-project { position: absolute; right: 1rem; bottom: 1rem; padding: .65rem .8rem; background: rgba(9,9,11,.86); color: white; border-radius: .2rem; font-size: .72rem; transform: translateY(10px); opacity: 0; transition: .25s; }
.project-media:hover .view-project { transform: translateY(0); opacity: 1; }
.project-meta { display: flex; justify-content: space-between; align-items: start; margin-top: 1.2rem; border-top: 1px solid #c9c6bc; padding-top: 1rem; }
.project-meta h3 { margin: 0; font-size: 1.65rem; letter-spacing: -.04em; }.project-meta p { margin: .2rem 0 0; color: #67646a; font-size: .8rem; }.project-meta ul { margin: 0; }.project-meta li { border-color: #c7c4bb; color: #5b595d; }

.ai-section { position: relative; overflow: hidden; background: #6f46de; color: white; }
.ai-section::before { content: ""; position: absolute; width: 600px; height: 600px; left: -200px; bottom: -420px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.025); }
.ai-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 7rem; align-items: center; }
.ai-copy .section-index, .ai-copy .eyebrow { color: rgba(255,255,255,.65); }.ai-copy .eyebrow { margin-bottom: 3rem; }.ai-copy h2 em { color: var(--lime); }.ai-copy > p:not(.eyebrow) { max-width: 510px; margin: 2rem 0; color: rgba(255,255,255,.72); }.button-light { background: white; color: var(--ink); }
.automation-map { position: relative; min-height: 610px; padding: 4.5rem 3rem 2rem; border: 1px solid rgba(255,255,255,.25); border-radius: .6rem; background: rgba(12,8,28,.36); background-image: radial-gradient(rgba(255,255,255,.18) 1px, transparent 1px); background-size: 18px 18px; box-shadow: 0 40px 100px rgba(34,16,86,.35); }
.map-header { position: absolute; inset: 0 0 auto; height: 48px; display: flex; justify-content: space-between; align-items: center; padding: 0 1rem; border-bottom: 1px solid rgba(255,255,255,.17); color: rgba(255,255,255,.7); font: 700 .6rem/1 monospace; letter-spacing: .1em; background: rgba(20,10,55,.45); }
.flow-node { position: absolute; display: flex; align-items: center; gap: .8rem; min-width: 210px; padding: .8rem; border: 1px solid rgba(255,255,255,.25); border-radius: .35rem; background: #17131f; box-shadow: 0 12px 26px rgba(0,0,0,.22); }
.node-icon { width: 34px; aspect-ratio: 1; display: grid; place-items: center; border-radius: .2rem; background: #2a2338; color: var(--lime); }.flow-node strong, .flow-node small { display: block; }.flow-node strong { font-size: .76rem; }.flow-node small { color: #85808e; font-size: .6rem; margin-top: .15rem; }
.flow-start { top: 90px; left: 50%; transform: translateX(-50%); }.flow-ai { top: 245px; left: 50%; transform: translateX(-50%); border-color: var(--lime); }.flow-crm { left: 8%; top: 425px; }.flow-mail { right: 8%; top: 425px; }
.node-badge { margin-left: auto; color: var(--lime); font: 700 .56rem/1 monospace; }
.flow-line { position: absolute; left: 50%; width: 1px; height: 64px; background: rgba(255,255,255,.25); }.line-a { top: 154px; }.line-b { top: 308px; }.flow-line i { position: absolute; width: 5px; height: 16px; left: -2px; background: var(--lime); border-radius: 99px; animation: dataflow 2.2s linear infinite; }
.flow-split { position: absolute; left: 20%; right: 20%; top: 372px; height: 35px; border-top: 1px solid rgba(255,255,255,.25); border-inline: 1px solid rgba(255,255,255,.25); }
.map-result { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); text-align: center; }.map-result span { display: block; color: var(--lime); font-size: 2rem; font-weight: 700; }.map-result small { color: rgba(255,255,255,.6); }

.process-section { background: var(--ink); }
.process-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.process-item { display: grid; grid-template-columns: .25fr .75fr 1.25fr .2fr; align-items: center; gap: 2rem; padding: 2.4rem 0; border-bottom: 1px solid var(--line); }
.step { color: #66656a; font: 600 .72rem/1 monospace; }.process-item h3 { margin: 0; font-size: 2rem; letter-spacing: -.04em; }.process-item p { max-width: 560px; margin: 0; color: #8f8e93; }.step-symbol { justify-self: end; color: var(--violet); font-size: 2rem; transition: transform .25s; }.process-item:hover .step-symbol { transform: rotate(12deg) scale(1.15); }

.testimonial-section { padding-top: 3rem; background: var(--ink); }
.testimonial { position: relative; display: grid; grid-template-columns: .25fr 1.5fr .55fr; gap: 3rem; padding: 5rem; background: var(--panel); border: 1px solid var(--line); border-radius: .55rem; }
.quote-mark { color: var(--violet); font: 8rem/.65 Georgia, serif; }.testimonial blockquote { grid-column: 2 / -1; max-width: 850px; margin: 0; font: 400 clamp(1.8rem, 3.2vw, 3.45rem)/1.12 Georgia, serif; letter-spacing: -.025em; }.quote-author { grid-column: 2; display: flex; align-items: center; gap: .8rem; margin-top: 2rem; }.avatar { width: 42px; aspect-ratio: 1; display: grid; place-items: center; background: var(--lime); color: var(--ink); border-radius: 50%; font-size: .66rem; font-weight: 800; }.quote-author strong, .quote-author small { display: block; }.quote-author strong { font-size: .78rem; }.quote-author small { margin-top: .15rem; color: #76757a; font-size: .65rem; }.quote-metric { align-self: end; text-align: right; }.quote-metric strong { display: block; color: var(--lime); font-size: 2.2rem; }.quote-metric span { color: #77767a; font-size: .64rem; text-transform: uppercase; letter-spacing: .1em; }

.contact-section { position: relative; overflow: hidden; padding: 10rem 0; background: var(--paper); color: var(--ink); }
.contact-glow { position: absolute; width: 480px; height: 480px; left: -180px; bottom: -180px; background: var(--violet); opacity: .1; filter: blur(80px); border-radius: 50%; }
.contact-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 9rem; }
.contact-copy .kicker { color: #4c4a50; }.contact-copy h2 { margin: 2rem 0; font-size: clamp(3.1rem, 6vw, 6.5rem); line-height: .86; letter-spacing: -.065em; font-weight: 570; }.contact-copy h2 em { color: #6f42d5; }.contact-copy > p:not(.kicker) { max-width: 480px; color: #5f5c61; }.email-link { display: inline-flex; gap: 1rem; margin-top: 2rem; padding-bottom: .3rem; border-bottom: 1px solid #aaa69f; font-weight: 700; }
.contact-form { display: grid; gap: 1.6rem; padding: 2rem; background: #e8e5dc; border-radius: .5rem; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }.contact-form label { display: grid; gap: .5rem; color: #504e52; font-size: .7rem; font-weight: 750; }.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid #bdb9b0; border-radius: 0; padding: .72rem 0; background: transparent; color: var(--ink); outline: none; resize: vertical; transition: border-color .2s; }.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: #6f42d5; }.contact-form input::placeholder, .contact-form textarea::placeholder { color: #9a9690; }.contact-form select { appearance: none; background-image: linear-gradient(45deg,transparent 50%,#555 50%),linear-gradient(135deg,#555 50%,transparent 50%); background-position: calc(100% - 10px) 50%,calc(100% - 5px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }.contact-form .button { width: 100%; justify-content: space-between; border: 0; margin-top: .4rem; }.form-note { margin: -.7rem 0 0; text-align: center; color: #77736f; font-size: .66rem; }.error-message { min-height: .8rem; color: #bc351e; font-size: .61rem; }.contact-form [aria-invalid="true"] { border-color: #bc351e; }.submit-button.success { background: #141416; color: white; }

.site-footer { background: #050506; padding: 5rem 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1.3fr .8fr .5fr .5fr; gap: 3rem; align-items: start; }.footer-brand { font-size: 1.5rem; }.footer-top p { margin: 0; color: #77767b; font-size: .8rem; }.footer-top nav, .socials { display: grid; gap: .7rem; }.footer-top nav a, .socials a { color: #949398; font-size: .77rem; }.footer-top a:hover { color: white; }.footer-bottom { display: flex; justify-content: space-between; margin-top: 5rem; padding-top: 1.3rem; border-top: 1px solid var(--line); color: #55545a; font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }.reveal.is-visible { opacity: 1; transform: none; }
@keyframes pulse { 0%,100% { transform: scale(.92); opacity: .3; } 50% { transform: scale(1.03); opacity: .9; } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes dataflow { from { transform: translateY(-15px); } to { transform: translateY(64px); } }

@media (max-width: 980px) {
  .shell { width: min(calc(100% - 36px), var(--max)); }
  .desktop-nav, .nav-cta { display: none; }.menu-toggle { display: block; }
  .mobile-nav { position: fixed; inset: 80px 0 auto; display: grid; background: rgba(9,9,11,.98); border-bottom: 1px solid var(--line); padding: 1rem 18px 2rem; transform: translateY(-130%); transition: transform .32s ease; z-index: -1; }.mobile-nav.open { transform: translateY(0); }.mobile-nav a { padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 1.15rem; }
  .hero-bottom { margin-left: 20%; grid-template-columns: 1fr; gap: 1.5rem; }.hero-actions { flex-wrap: wrap; }
  .section-head { grid-template-columns: .5fr 2fr; }.section-head .section-intro, .section-link { grid-column: 2; justify-self: start; }
  .ai-grid, .contact-grid { grid-template-columns: 1fr; gap: 5rem; }.automation-map { max-width: 680px; width: 100%; margin: auto; }
  .contact-copy { max-width: 720px; }.contact-copy h2 { font-size: clamp(4rem, 10vw, 7rem); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }.nav-wrap { min-height: 68px; }.mobile-nav { inset: 68px 0 auto; }
  .hero { padding-top: 120px; }.hero-title { margin-top: 2.2rem; font-size: clamp(3.4rem, 15vw, 5.4rem); }.hero-title br { display: none; }.hero-title .word-cycle { white-space: normal; display: block; }
  .hero-bottom { margin-left: 0; }.hero-actions { align-items: stretch; flex-direction: column; }.hero-actions .button { width: 100%; justify-content: space-between; }.hero-actions .text-link { align-self: flex-start; }
  .signal-card { margin-top: 4rem; }.signal-visual { min-height: 300px; }.ring-three { width: 350px; }.chip-one { left: 5%; }.chip-two { right: 5%; }.signal-stats { grid-template-columns: 1fr; }.signal-stats div { border-right: 0; border-bottom: 1px solid var(--line); }.signal-stats div:last-child { border-bottom: 0; }
  .section { padding: 6.5rem 0; }.section-head { display: block; }.section-head h2 { margin: 1.2rem 0 1.8rem; }.section-intro { max-width: 480px; }
  .bento-grid { grid-template-columns: 1fr; }.service-wide { grid-column: auto; display: block; min-height: 710px; }.browser-art { min-height: 310px; margin: 4rem -5rem -4rem 2rem; }.service-card { min-height: 430px; }.service-row { grid-column: auto; min-height: 470px; display: flex; flex-direction: column; align-items: flex-start; gap: 1.5rem; }.metric { text-align: left; margin-top: auto; }
  .project-list { grid-template-columns: 1fr; gap: 4rem; }.project:nth-child(3) { grid-column: auto; width: auto; margin: 0; }.project-meta { display: block; }.project-meta ul { margin-top: 1rem; }.view-project { opacity: 1; transform: none; }
  .ai-grid { gap: 4rem; }.automation-map { min-height: 650px; padding-inline: 1rem; }.flow-start,.flow-ai { min-width: 200px; }.flow-crm,.flow-mail { left: 50%; right: auto; transform: translateX(-50%); }.flow-crm { top: 410px; }.flow-mail { top: 510px; }.flow-split { display: none; }.line-b { height: 165px; }.map-result { bottom: 8px; }.map-result span { font-size: 1.5rem; }
  .process-item { grid-template-columns: .2fr 1fr; gap: .7rem 1.2rem; }.process-item p { grid-column: 2; }.step-symbol { display: none; }
  .testimonial { display: block; padding: 2.2rem; }.quote-mark { font-size: 6rem; }.testimonial blockquote { margin-top: -.5rem; }.quote-metric { margin-top: 2rem; text-align: left; }
  .contact-section { padding: 7rem 0; }.contact-copy h2 { font-size: clamp(3.4rem, 15vw, 5.4rem); }.contact-form { padding: 1.3rem; }.form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }.footer-top .footer-brand, .footer-top p { grid-column: 1 / -1; }.footer-bottom { gap: 1rem; flex-wrap: wrap; }
}

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

:focus-visible { outline: 2px solid var(--lime); outline-offset: 4px; }

/* Multi-page layouts */
.desktop-nav a.active, .desktop-nav a[aria-current="page"] { color: white; }
.desktop-nav a.active::after, .desktop-nav a[aria-current="page"]::after { content: ""; display: block; width: 100%; height: 1px; margin-top: .3rem; background: var(--lime); }
.inner-page .site-header { background: rgba(9,9,11,.88); border-color: var(--line); backdrop-filter: blur(18px); }
.page-hero { position: relative; min-height: 760px; display: flex; align-items: end; overflow: hidden; padding: 150px 0 7rem; background: var(--ink); }
.page-hero::after { content: ""; position: absolute; inset: 80px 0 0; opacity: .16; 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: 96px 96px; mask-image: linear-gradient(to bottom, black, transparent); }
.page-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .55fr 2.45fr; gap: 2rem; align-items: start; }
.page-hero h1 { grid-column: 2; margin: 0; font-size: clamp(4rem, 8.7vw, 8.8rem); font-weight: 560; letter-spacing: -.072em; line-height: .86; }
.page-hero h1 em { color: var(--violet); font-family: Georgia,serif; font-weight: 400; }
.page-lede { grid-column: 2; max-width: 580px; margin: 2.2rem 0 0; color: #aaa8ae; font-size: clamp(1rem,1.7vw,1.25rem); }
.page-orb { position: absolute; width: 520px; aspect-ratio: 1; right: -250px; top: 80px; border-radius: 50%; background: radial-gradient(circle at 32% 30%,#bb9cff,#6840d3 34%,rgba(50,25,105,.2) 70%); opacity: .35; filter: blur(10px); }
.mini-cta { padding: 8rem 0; background: #141417; text-align: center; }
.mini-cta p { margin: 0 0 1rem; color: #85848a; text-transform: uppercase; letter-spacing: .15em; font-size: .66rem; }
.mini-cta h2 { max-width: 850px; margin: 0 auto 2.5rem; font-size: clamp(2.8rem,5.5vw,5.4rem); line-height: .95; letter-spacing: -.055em; font-weight: 560; }

/* Services page */
.service-index { padding-block: 4rem; }
.service-index-row { display: grid; grid-template-columns: .2fr 1.2fr 1fr .15fr; gap: 2rem; align-items: center; min-height: 110px; border-bottom: 1px solid var(--line); }
.service-index-row:first-child { border-top: 1px solid var(--line); }
.service-index-row > span { color: #66656b; font: 600 .67rem/1 monospace; }
.service-index-row a { font-size: clamp(1.5rem,2.5vw,2.5rem); letter-spacing: -.035em; }
.service-index-row p { color: #85848a; }
.service-index-row i { justify-self: end; color: var(--violet); font-size: 1.5rem; font-style: normal; transition: transform .2s; }
.service-index-row:hover i { transform: translate(5px,5px); }
.capability-block { padding: 9rem 0; scroll-margin-top: 75px; }
.paper-block { background: var(--paper); color: var(--ink); }
.dark-block { background: #101012; }
.violet-block { background: #6f46de; }
.capability-grid { display: grid; grid-template-columns: 1.05fr .75fr; gap: 3rem 7rem; }
.capability-title { grid-column: 1; }
.capability-copy { grid-column: 2; padding-top: 3rem; }
.cap-number { color: #79777c; font: 600 .7rem/1 monospace; }
.capability-title .eyebrow { margin: 1.5rem 0 2.5rem; }
.paper-block .eyebrow { color: #555258; }
.capability-title h2 { margin: 0; font-size: clamp(2.8rem,5vw,5rem); line-height: .95; letter-spacing: -.055em; font-weight: 560; }
.capability-title h2 em { color: var(--violet); }
.violet-block .capability-title h2 em { color: var(--lime); }
.capability-copy > p { margin: 0 0 2.5rem; color: #959399; font-size: 1.03rem; }
.paper-block .capability-copy > p { color: #5f5c62; }
.violet-block .capability-copy > p { color: rgba(255,255,255,.75); }
.cap-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid currentColor; border-color: rgba(128,126,132,.35); }
.cap-list li { display: flex; align-items: center; gap: 1.1rem; padding: .9rem 0; border-bottom: 1px solid rgba(128,126,132,.35); font-size: .84rem; }
.cap-list span { color: #8a888d; font: 600 .58rem/1 monospace; }
.capability-art { position: relative; grid-column: 1 / -1; height: 480px; margin-top: 3rem; overflow: hidden; border-radius: .5rem; }
.strategy-art { display: grid; place-items: center; background: #d9d5ca; background-image: radial-gradient(#96928a 1px,transparent 1px); background-size: 22px 22px; }
.radar { position: relative; width: 330px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid #8b8780; border-radius: 50%; box-shadow: 0 0 0 70px rgba(70,67,65,.1),0 0 0 140px rgba(70,67,65,.06); }
.radar::before,.radar::after { content: ""; position: absolute; background: #8b8780; }.radar::before { width: 1px; height: 200%; }.radar::after { width: 200%; height: 1px; }
.radar i { position: absolute; width: 145px; aspect-ratio: 1; border-radius: 50%; background: rgba(143,92,255,.22); border: 1px solid #6f42d5; }.radar i:nth-child(1) { transform: translate(-95px,-30px); }.radar i:nth-child(2) { transform: translate(80px,-30px); background: rgba(199,255,84,.35); border-color: #719d20; }.radar i:nth-child(3) { transform: translate(0,85px); background: rgba(255,116,77,.3); border-color: #c34f33; }.radar span { position: relative; z-index: 2; padding: .6rem .8rem; background: var(--ink); color: white; font: 700 .6rem/1 monospace; letter-spacing: .12em; }
.axis-labels { position: absolute; inset: 1.5rem; display: flex; justify-content: space-between; align-items: end; color: #6d6964; font: 700 .58rem/1 monospace; letter-spacing: .12em; }.axis-labels b:nth-child(2) { align-self: start; }
.type-art { display: flex; align-items: center; justify-content: center; gap: .7vw; background: #1a1a1e; }
.type-art > span { display: grid; place-items: center; width: 13%; aspect-ratio: .72; background: #25252a; color: var(--lime); font: 400 clamp(4rem,10vw,9rem)/1 Georgia,serif; transition: transform .25s,background .25s; }.type-art > span:nth-child(even) { transform: translateY(35px); color: var(--violet); }.type-art:hover > span:nth-child(odd) { transform: translateY(-18px); }.type-art:hover > span:nth-child(even) { transform: translateY(18px); }.type-art small { position: absolute; left: 1.5rem; bottom: 1.5rem; color: #77767a; font: 700 .58rem/1 monospace; letter-spacing: .12em; }
.interface-art { background: #e2ded3; border: 1px solid #c5c1b7; color: var(--ink); padding: 1.5rem; }
.mini-nav { display: flex; gap: .5rem; height: 50px; border-bottom: 1px solid #bdb8ae; }.mini-nav i { width: 8px; height: 8px; border-radius: 50%; background: #aaa59b; }.mini-copy { display: flex; flex-direction: column; justify-content: end; height: calc(100% - 50px); }.mini-copy b { font-size: clamp(4rem,10vw,9rem); line-height: .72; letter-spacing: -.08em; }.mini-copy span { display: block; width: 42%; height: 2px; margin-top: 1.5rem; background: #88837a; }.mini-copy span:last-child { width: 25%; margin-top: .6rem; }.cursor { position: absolute; right: 23%; top: 35%; padding: .6rem .8rem; background: var(--violet); color: white; border-radius: .2rem; font-size: 1.5rem; box-shadow: 18px 18px 0 var(--lime); }
.automation-art { display: flex; align-items: center; justify-content: center; gap: 1.5rem; background: rgba(18,10,45,.48); background-image: radial-gradient(rgba(255,255,255,.18) 1px,transparent 1px); background-size: 20px 20px; }
.automation-art div { min-width: 150px; padding: 1.2rem; border: 1px solid rgba(255,255,255,.3); background: #181321; text-align: center; font: 700 .65rem/1 monospace; letter-spacing: .1em; }.automation-art .ai-box { min-width: 210px; padding-block: 2rem; border-color: var(--lime); color: var(--lime); font-size: 1.2rem; }.automation-art i { display: block; width: 90px; height: 1px; background: linear-gradient(90deg,rgba(255,255,255,.2),var(--lime)); }.automation-art span { position: absolute; bottom: 2rem; color: var(--lime); font: 700 .65rem/1 monospace; letter-spacing: .12em; }
.engagement-section { background: var(--ink); }
.engagement-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.engagement-card { min-height: 390px; display: flex; flex-direction: column; padding: 2rem; border: 1px solid var(--line); background: var(--panel); }.engagement-card.featured { background: var(--paper); color: var(--ink); }.engagement-card > span { color: #77767b; font: 700 .62rem/1 monospace; letter-spacing: .13em; }.engagement-card h3 { margin: 3rem 0 1rem; font-size: 2rem; line-height: 1; letter-spacing: -.04em; }.engagement-card p { color: #89888e; }.engagement-card.featured p { color: #666368; }.engagement-card a { margin-top: auto; align-self: flex-start; border-bottom: 1px solid currentColor; font-size: .78rem; font-weight: 700; }

/* Work page */
.work-page { background: var(--paper); color: var(--ink); }
.work-page .site-header { color: var(--paper); }
.work-page-hero { background: var(--paper); color: var(--ink); }
.work-page-hero::after { background-image: linear-gradient(rgba(20,20,22,.07) 1px,transparent 1px),linear-gradient(90deg,rgba(20,20,22,.07) 1px,transparent 1px); }
.work-page-hero .kicker,.work-page-hero .page-lede { color: #5d5a60; }
.work-page-hero h1 em { color: #6f42d5; }
.work-catalog { padding: 1rem 0 9rem; }
.filter-bar { position: sticky; top: 80px; z-index: 10; display: flex; flex-wrap: wrap; gap: .6rem; padding: 1rem 0; background: rgba(241,239,232,.88); backdrop-filter: blur(12px); border-bottom: 1px solid #cbc7bd; }
.filter-bar button { padding: .55rem .9rem; border: 1px solid #c2beb5; border-radius: 999px; background: transparent; color: #656268; cursor: pointer; font-size: .72rem; }.filter-bar button.active { background: var(--ink); color: white; border-color: var(--ink); }
.case-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 6rem 1.2rem; padding-top: 4rem; }
.case-card { transition: opacity .25s,transform .25s; }.case-card.hidden { display: none; }.case-feature { grid-column: 1/-1; }.case-image { position: relative; aspect-ratio: 1.3; overflow: hidden; border-radius: .35rem; }.case-feature .case-image { aspect-ratio: 1.9; }.case-image img { height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }.case-card:hover img { transform: scale(1.025); }.case-image > span { position: absolute; top: 1rem; left: 1rem; padding: .5rem .6rem; background: rgba(9,9,11,.78); color: white; font: 700 .58rem/1 monospace; }
.case-info { display: grid; grid-template-columns: 1fr auto; gap: 2rem; padding: 1.2rem 0; border-bottom: 1px solid #c8c4bb; }.case-info p { margin: 0 0 .7rem; color: #6b686d; font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; }.case-info h2 { max-width: 740px; margin: 0; font-size: clamp(1.6rem,2.7vw,2.9rem); line-height: 1; letter-spacing: -.045em; font-weight: 570; }.case-result { min-width: 110px; text-align: right; }.case-result strong { display: block; color: #6f42d5; font-size: 1.8rem; }.case-result span { color: #77747a; font-size: .62rem; }.case-card ul { display: flex; gap: .5rem; list-style: none; padding: 0; margin: .8rem 0 0; }.case-card li { padding: .4rem .7rem; border: 1px solid #c7c3ba; border-radius: 99px; color: #6d6a6f; font-size: .62rem; }
.case-generated { display: grid; place-items: center; }.case-blue { background: #276bf1; }.shape-system { position: relative; width: 70%; aspect-ratio: 1.6; display: grid; place-items: center; }.shape-system i { position: absolute; width: 45%; aspect-ratio: 1; border: 3px solid rgba(255,255,255,.85); border-radius: 50%; }.shape-system i:nth-child(1) { left: 0; }.shape-system i:nth-child(2) { right: 0; }.shape-system i:nth-child(3) { border-radius: 0; transform: rotate(45deg); }.shape-system b { position: relative; z-index: 2; color: white; font-size: clamp(3rem,8vw,6rem); letter-spacing: -.08em; }.case-cream { background: #d9d0bd; }.editorial-system { width: 80%; height: 75%; padding: 2rem; border: 1px solid #6f685d; display: flex; flex-direction: column; justify-content: space-between; }.editorial-system b { font: 400 clamp(3rem,8vw,7rem)/.7 Georgia,serif; }.editorial-system i { display: block; width: 70%; height: 12px; background: #ff744d; }.editorial-system small { letter-spacing: .15em; }
.outcomes-strip { padding: 7rem 0; background: #151518; color: white; }.outcomes-strip .eyebrow { margin-bottom: 3rem; }.outcome-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); }.outcome-grid div { padding: 2rem 1rem 1rem 0; border-right: 1px solid var(--line); }.outcome-grid div:last-child { border-right: 0; padding-left: 1rem; }.outcome-grid strong { display: block; color: var(--lime); font-size: clamp(2.5rem,4vw,4.5rem); letter-spacing: -.06em; }.outcome-grid span { color: #77767b; font-size: .7rem; }

/* About page */
.about-hero { min-height: 840px; }.about-word { position: absolute; left: -2vw; right: -2vw; bottom: -7vw; color: rgba(255,255,255,.025); font-size: 25vw; font-weight: 900; line-height: 1; letter-spacing: -.1em; }
.manifesto { background: var(--paper); color: var(--ink); }.manifesto-grid { display: grid; grid-template-columns: .55fr 2.45fr; gap: 2rem; }.manifesto .eyebrow { color: #555259; }.manifesto h2 { max-width: 1000px; margin: 0; font-size: clamp(2.7rem,5vw,5.2rem); line-height: 1; letter-spacing: -.055em; font-weight: 560; }.manifesto div > p { max-width: 680px; margin: 2rem 0 0; color: #5d5a60; font-size: 1.05rem; }
.studio-facts { padding: 0 0 9rem; background: var(--paper); color: var(--ink); }.fact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 1rem; }.fact-main,.fact-copy { min-height: 570px; padding: 2rem; border: 1px solid #c9c5bc; }.fact-main > span { color: #6f6c72; font: 700 .62rem/1 monospace; letter-spacing: .12em; }.team-art { position: relative; height: calc(100% - 2rem); overflow: hidden; display: flex; align-items: center; justify-content: center; gap: -1rem; }.face { width: 150px; aspect-ratio: .75; display: grid; place-items: center; border-radius: 80px 80px 20px 20px; color: rgba(255,255,255,.9); font: 400 5rem/1 Georgia,serif; box-shadow: 0 20px 30px rgba(0,0,0,.14); }.face-a { background: #6f46de; transform: rotate(-8deg) translateX(25px); }.face-b { background: #ff744d; transform: rotate(5deg) translateY(-18px); }.face-c { background: #1e7adb; transform: rotate(-4deg) translateY(18px); }.face-d { background: #9dbf35; transform: rotate(8deg) translateX(-25px); }.team-art p { position: absolute; inset: auto 0 0; margin: 0; font: 800 .65rem/1.5 monospace; letter-spacing: .12em; }.fact-copy { display: flex; flex-direction: column; background: #17171a; color: white; }.fact-copy h2 { margin: 0; font-size: clamp(2.6rem,4.6vw,4.6rem); line-height: .9; letter-spacing: -.055em; font-weight: 560; }.fact-copy > p { max-width: 500px; color: #929196; }.fact-copy dl { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; margin: auto 0 0; background: var(--line); }.fact-copy dl div { padding: 1.2rem 0; background: #17171a; }.fact-copy dt { color: var(--lime); font-size: 2rem; font-weight: 700; }.fact-copy dd { margin: .3rem 0 0; color: #77767a; font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; }
.principles { background: #101012; }.principle-grid { display: grid; grid-template-columns: repeat(2,1fr); }.principle-grid article { min-height: 320px; padding: 2rem; border: 1px solid var(--line); margin: -1px 0 0 -1px; }.principle-grid article > span { color: var(--violet); font: 700 .65rem/1 monospace; }.principle-grid h3 { max-width: 440px; margin: 4rem 0 1rem; font-size: clamp(1.8rem,3vw,3rem); line-height: 1; letter-spacing: -.04em; }.principle-grid p { max-width: 500px; color: #838287; }
.culture-banner { overflow: hidden; background: var(--lime); color: var(--ink); }.culture-track { width: max-content; display: flex; gap: 2rem; align-items: center; padding: 1rem 0; animation: marquee 25s linear infinite; }.culture-track span { font-size: 2rem; font-weight: 800; letter-spacing: -.03em; }.culture-track i { color: var(--violet); font-style: normal; }
.about-quote { background: var(--paper); color: var(--ink); }.about-quote blockquote { max-width: 1050px; margin: 0; font: 400 clamp(2.4rem,5vw,5rem)/1.05 Georgia,serif; letter-spacing: -.03em; }.about-quote p { margin: 2rem 0 0; color: #6e6b71; }

/* Contact page */
.contact-page-main { position: relative; overflow: hidden; min-height: 100vh; padding: 160px 0 8rem; background: #6f46de; }.contact-page-main::before { content: ""; position: absolute; width: 700px; height: 700px; left: -350px; bottom: -400px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 100px rgba(255,255,255,.03),0 0 0 200px rgba(255,255,255,.03); }.contact-page-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: start; }.contact-page-copy .kicker { color: rgba(255,255,255,.65); }.contact-page-copy h1 { margin: 3rem 0 2rem; font-size: clamp(4rem,7.3vw,7.6rem); line-height: .83; letter-spacing: -.07em; font-weight: 560; }.contact-page-copy h1 em { color: var(--lime); font-family: Georgia,serif; font-weight: 400; }.contact-page-copy > p:not(.kicker) { max-width: 500px; color: rgba(255,255,255,.74); font-size: 1.05rem; }.direct-contact { margin-top: 5rem; }.direct-contact span,.direct-contact a { display: block; }.direct-contact span { color: rgba(255,255,255,.5); font-size: .67rem; text-transform: uppercase; letter-spacing: .12em; }.direct-contact a { margin-top: .7rem; font-size: 1.15rem; font-weight: 700; }.contact-page-form { background: #f1efe8; box-shadow: 0 40px 100px rgba(32,14,80,.32); }.form-progress { display: flex; justify-content: space-between; padding-bottom: 1rem; border-bottom: 1px solid #c9c5bc; color: #77747a; font: 700 .58rem/1 monospace; letter-spacing: .1em; }.contact-details { padding: 7rem 0; background: var(--paper); color: var(--ink); }.details-grid { display: grid; grid-template-columns: 1.6fr repeat(3,.6fr); gap: 3rem; }.details-grid h2 { margin: 1.5rem 0 0; font-size: clamp(2.5rem,4vw,4.2rem); line-height: .95; letter-spacing: -.05em; font-weight: 560; }.details-grid > div > span { color: #77747a; font: 700 .6rem/1 monospace; letter-spacing: .12em; }.details-grid > div > p { color: #5f5c62; font-size: .78rem; line-height: 1.8; }

@media (max-width: 980px) {
  .page-hero-grid,.manifesto-grid { grid-template-columns: .4fr 2fr; }.capability-grid { gap: 3rem; }.capability-art { height: 420px; }.engagement-grid { grid-template-columns: 1fr; }.engagement-card { min-height: 300px; }
  .case-grid { gap-top: 4rem; }.case-info { grid-template-columns: 1fr; }.case-result { text-align: left; }.outcome-grid { grid-template-columns: repeat(2,1fr); }.outcome-grid div:nth-child(2) { border-right: 0; }
  .fact-grid { grid-template-columns: 1fr; }.contact-page-grid { grid-template-columns: 1fr; gap: 5rem; }.contact-page-copy { max-width: 800px; }.details-grid { grid-template-columns: repeat(3,1fr); }.details-grid > div:first-child { grid-column: 1/-1; }
}

@media (max-width: 700px) {
  .page-hero { min-height: 680px; padding-bottom: 5rem; }.page-hero-grid,.manifesto-grid { display: block; }.page-hero h1 { margin-top: 2rem; font-size: clamp(3.7rem,16vw,5.6rem); }.page-lede { margin-top: 2rem; }.service-index-row { grid-template-columns: .2fr 1fr .1fr; gap: .7rem; min-height: 92px; }.service-index-row p { display: none; }
  .capability-block { padding: 6.5rem 0; }.capability-grid { display: block; }.capability-copy { padding-top: 2.5rem; }.capability-art { height: 360px; margin-top: 3rem; }.radar { width: 210px; }.radar i { width: 100px; }.radar i:nth-child(1) { transform: translate(-58px,-22px); }.radar i:nth-child(2) { transform: translate(52px,-22px); }.radar i:nth-child(3) { transform: translate(0,55px); }.type-art { height: 310px; }.type-art > span { font-size: 3.3rem; }.automation-art { flex-direction: column; gap: .7rem; }.automation-art i { width: 1px; height: 30px; }.automation-art div,.automation-art .ai-box { min-width: 190px; padding: .9rem; }.automation-art span { bottom: 1rem; }.mini-copy b { font-size: 4rem; }
  .case-grid { grid-template-columns: 1fr; }.case-feature { grid-column: auto; }.case-feature .case-image { aspect-ratio: 1.3; }.filter-bar { top: 68px; overflow-x: auto; flex-wrap: nowrap; }.filter-bar button { flex: 0 0 auto; }.outcome-grid { grid-template-columns: 1fr; }.outcome-grid div { border-right: 0; border-bottom: 1px solid var(--line); padding-left: 0!important; }
  .about-hero { min-height: 700px; }.manifesto h2 { margin-top: 2rem; }.team-art { gap: 0; }.face { width: 90px; font-size: 3rem; }.fact-main,.fact-copy { min-height: 490px; padding: 1.3rem; }.principle-grid { grid-template-columns: 1fr; }.principle-grid article { min-height: 280px; }.principle-grid h3 { margin-top: 3rem; }
  .contact-page-main { padding: 130px 0 6rem; }.contact-page-copy h1 { font-size: clamp(3.8rem,16vw,5.8rem); }.direct-contact { margin-top: 3rem; }.details-grid { grid-template-columns: 1fr; }.details-grid > div:first-child { grid-column: auto; }.mini-cta { padding: 6rem 0; }
}
