/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }

/* Font variables */
:root {
  --font-geist-sans: 'Geist', Arial, Helvetica, sans-serif;
  --font-geist-mono: 'Geist Mono', 'Courier New', monospace;
}

/* ─── BASE (globals) ──────────────────────────────────────────── */

:root {
  --ink: #121212;
  --paper: #f2f0e9;
  --paper-deep: #e4e0d5;
  --lime: #d8ff3e;
  --orange: #ff5d35;
  --blue: #3d63ff;
  --line: rgba(18, 18, 18, 0.18);
  --muted: #605e58;
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist-sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
::selection { background: var(--lime); color: var(--ink); }

.shell { width: min(100% - 48px, 1400px); margin-inline: auto; }
.site-header {
  min-height: 98px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}
.brand { display: flex; gap: 11px; align-items: center; width: max-content; }
.brand > span, .footer-brand > span {
  width: 39px; height: 39px; display: grid; place-items: center;
  background: var(--ink); color: var(--paper); font-weight: 900;
  font-size: 13px; letter-spacing: -0.06em;
}
.brand strong { font-size: 12px; line-height: .9; letter-spacing: .02em; }
.desktop-nav { display: flex; gap: clamp(28px, 4vw, 64px); }
.desktop-nav a, .header-cta { font-size: 13px; font-weight: 700; }
.desktop-nav a { position: relative; padding-block: 10px; }
.desktop-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 3px; height: 2px;
  background: var(--orange); transition: right .25s ease;
}
.desktop-nav a:hover::after { right: 0; }
.header-cta { justify-self: end; border-bottom: 1px solid var(--ink); padding: 8px 0; }
.header-cta span { color: var(--orange); padding-left: 9px; }
.mobile-menu { display: none; }

.eyebrow {
  display: flex; align-items: center; gap: 11px; margin: 0;
  font-family: var(--font-geist-mono);
  text-transform: uppercase; letter-spacing: .09em; font-size: 10px; font-weight: 700;
}
.eyebrow > span:first-child { width: 25px; height: 2px; background: var(--orange); display: inline-block; flex-shrink: 0; }
.eyebrow-light { color: var(--paper); }
.eyebrow-light > span:first-child { background: var(--lime); }
.micro {
  font: 700 10px/1.2 var(--font-geist-mono);
  letter-spacing: .08em; text-transform: uppercase; margin: 0;
}
h1, h2, h3, p { overflow-wrap: anywhere; }

.hero {
  min-height: 690px;
  display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(480px, .94fr);
  gap: clamp(30px, 6vw, 92px); align-items: center; padding-block: 68px 88px;
}
.hero-copy { position: relative; z-index: 2; }
.hero h1, .page-hero h1, .contact-title h1 {
  font-size: clamp(66px, 8.3vw, 132px); line-height: .78; letter-spacing: -.085em;
  margin: 36px 0 44px; font-weight: 900; text-transform: uppercase;
}
h1 em, h2 em { font-family: Georgia, "Times New Roman", serif; font-weight: 400; text-transform: none; }
.hero h1 em { color: var(--orange); margin-left: .5ch; white-space: nowrap; }
.hero-deck { font-size: 19px; line-height: 1.5; max-width: 620px; margin: 0; }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 36px; }
.button {
  min-height: 52px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center;
  gap: 25px; font: 800 11px/1 var(--font-geist-mono); text-transform: uppercase; letter-spacing: .05em;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-3px); }
.button-dark { color: var(--paper); background: var(--ink); }
.button-dark span { color: var(--lime); }
.button-light { color: var(--ink); background: var(--lime); }
.button-outline { border: 1px solid var(--ink); }
.button-outline:hover { background: var(--ink); color: var(--paper); }
.text-link { font-size: 13px; font-weight: 800; padding: 8px 0; border-bottom: 1px solid var(--ink); }
.text-link span { color: var(--orange); margin-left: 14px; }

.hero-art {
  aspect-ratio: 1 / .92; position: relative; overflow: hidden; background: var(--lime);
  box-shadow: 14px 14px 0 var(--ink);
}
.hero-grid {
  position: absolute; inset: 0; opacity: .24;
  background-image: linear-gradient(var(--ink) 1px, transparent 1px), linear-gradient(90deg, var(--ink) 1px, transparent 1px);
  background-size: 52px 52px;
}
.hero-orbit { position: absolute; border: 2px solid var(--ink); border-radius: 50%; }
.hero-orbit::after { content: ""; width: 12px; height: 12px; background: var(--orange); border: 2px solid var(--ink); border-radius: 50%; position: absolute; }
.hero-orbit-one { width: 57%; aspect-ratio: 1; right: -11%; top: 13%; }
.hero-orbit-one::after { top: 22%; left: -1%; }
.hero-orbit-two { width: 36%; aspect-ratio: 1; left: 6%; bottom: -10%; }
.hero-orbit-two::after { right: 6%; top: 3%; background: var(--blue); }
.hero-stamp {
  position: absolute; right: 6%; top: 6%; width: 86px; aspect-ratio: 1; border-radius: 50%;
  background: var(--orange); border: 2px solid var(--ink); display: grid; place-content: center;
  text-align: center; font: 800 9px/1.25 var(--font-geist-mono); transform: rotate(9deg);
}
.hero-twenty {
  position: absolute; left: 5%; top: 13%; font-size: clamp(130px, 18vw, 260px); line-height: .8;
  letter-spacing: -.12em; font-weight: 950; z-index: 2;
}
.hero-twenty span { font-size: .28em; vertical-align: top; color: var(--orange); letter-spacing: 0; }
.hero-caption {
  position: absolute; left: 9%; bottom: 18%; z-index: 3; font-size: clamp(25px, 3.2vw, 48px);
  line-height: .86; font-weight: 950; letter-spacing: -.06em; transform: rotate(-5deg);
}
.hero-ticket {
  position: absolute; right: -43px; bottom: 14%; background: var(--blue); color: white;
  border: 2px solid var(--ink); padding: 11px 18px; font: 700 8px/1 var(--font-geist-mono);
  letter-spacing: .08em; transform: rotate(-90deg); z-index: 4;
}

.ticker { overflow: hidden; background: var(--ink); color: var(--paper); padding: 16px 0; white-space: nowrap; }
.ticker div { font: 700 12px/1 var(--font-geist-mono); letter-spacing: .1em; width: max-content; animation: ticker 26s linear infinite; }
.ticker b { color: var(--lime); padding: 0 23px; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding-block: 128px; }
.section-intro {
  display: grid; grid-template-columns: 1.2fr .8fr; column-gap: 90px; row-gap: 34px;
  align-items: end; margin-bottom: 64px;
}
.section-intro .eyebrow { grid-column: 1 / -1; }
.section-intro h2, .proof-copy h2, .ai-copy h2, .values-title h2, .ai-section-head h2, .fit-section h2 {
  font-size: clamp(44px, 5.7vw, 86px); line-height: .92; letter-spacing: -.065em; margin: 0; font-weight: 800;
}
.section-intro-side { max-width: 470px; justify-self: end; }
.section-intro-side p { font-size: 16px; line-height: 1.55; margin: 0 0 24px; }

.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 64px 24px; }
.project-card-wide { grid-column: 1 / -1; }
.project-card { min-width: 0; }
.project-visual { position: relative; overflow: hidden; border: 1px solid var(--ink); }
.project-card-wide .project-visual { aspect-ratio: 1.9 / 1; }
.project-card:not(.project-card-wide) .project-visual { aspect-ratio: 1.08 / 1; }
.project-info { display: grid; grid-template-columns: 1.2fr .8fr; gap: 30px; padding-top: 18px; }
.project-info h3 { font-size: 25px; line-height: 1.1; letter-spacing: -.035em; margin: 8px 0 0; }
.project-info > p { color: var(--muted); font-size: 12px; line-height: 1.5; text-align: right; margin: 0; align-self: end; }

.visual-dental { background: var(--blue); color: white; }
.visual-dental::before { content: ""; position: absolute; width: 28%; aspect-ratio: 1; background: var(--lime); right: 10%; top: 16%; transform: rotate(45deg); }
.dental-word {
  position: absolute; z-index: 3; left: 7%; top: 15%; font-size: clamp(36px, 6vw, 94px);
  font-weight: 900; letter-spacing: -.07em; line-height: .79;
}
.dental-word em { font-family: Georgia, serif; font-weight: 400; color: var(--lime); }
.dental-ring { position: absolute; border-radius: 50%; border: 2px solid white; opacity: .7; }
.ring-one { width: 30%; aspect-ratio: 1; right: 9%; bottom: -12%; }
.ring-two { width: 18%; aspect-ratio: 1; right: 25%; bottom: -8%; }
.dental-label { position: absolute; right: 4%; top: 5%; text-align: right; font: 700 9px/1.25 var(--font-geist-mono); color: var(--ink); z-index: 4; }
.dental-arrow { position: absolute; right: 5%; bottom: 6%; color: var(--lime); font-size: 42px; z-index: 3; }
.visual-web { background: #ffb4bf; }
.visual-web::after { content: ""; position: absolute; width: 290px; aspect-ratio: 1; border-radius: 50%; background: var(--orange); right: -90px; bottom: -120px; }
.browser-frame {
  position: absolute; z-index: 2; left: 8%; top: 12%; width: 68%; height: 66%;
  background: var(--paper); border: 2px solid var(--ink); box-shadow: 12px 12px 0 var(--ink); padding: 13px 19px;
}
.browser-bar { border-bottom: 1px solid var(--ink); padding-bottom: 10px; font-size: 9px; letter-spacing: 8px; }
.browser-frame strong { display: block; font-size: clamp(30px, 4vw, 62px); line-height: .8; letter-spacing: -.07em; margin: 12% 0 8%; }
.browser-frame em { font-family: Georgia, serif; font-weight: 400; color: var(--blue); }
.browser-frame > span { background: var(--lime); border: 1px solid var(--ink); padding: 7px 10px; font: 700 8px/1 var(--font-geist-mono); }
.web-card { position: absolute; z-index: 3; right: 5%; top: 12%; width: 24%; background: var(--blue); color: white; border: 2px solid var(--ink); padding: 13px; font: 700 9px/1.6 var(--font-geist-mono); transform: rotate(6deg); }
.web-card strong { font-size: 15px; }
.web-card.card-two { top: auto; bottom: 9%; background: var(--lime); color: var(--ink); transform: rotate(-4deg); }
.visual-campaign { background: var(--orange); }
.visual-campaign::before { content: ""; position: absolute; inset: -50%; background: repeating-conic-gradient(from 0deg, transparent 0deg 11deg, rgba(18,18,18,.13) 11deg 14deg); animation: rotate 30s linear infinite; }
@keyframes rotate { to { transform: rotate(1turn); } }
.campaign-burst { position: absolute; z-index: 1; left: 8%; top: 12%; font-size: clamp(60px, 9vw, 130px); line-height: .72; font-weight: 950; letter-spacing: -.09em; }
.campaign-phone { position: absolute; z-index: 3; right: 8%; top: 12%; width: 29%; height: 70%; background: var(--ink); color: white; border: 5px solid var(--paper); border-radius: 25px; padding: 14% 18px 20px; display: flex; flex-direction: column; justify-content: space-between; transform: rotate(5deg); }
.campaign-phone span { font-size: clamp(24px, 3vw, 44px); font-weight: 900; line-height: .8; color: var(--lime); }
.campaign-phone small { font: 700 7px/1 var(--font-geist-mono); }
.campaign-mail { position: absolute; z-index: 4; left: 11%; bottom: 12%; background: var(--paper); border: 2px solid var(--ink); padding: 14px 18px; font: 800 9px/1.4 var(--font-geist-mono); transform: rotate(-3deg); }
.visual-brand { background: var(--lime); }
.brand-shape { position: absolute; left: 8%; top: 5%; font-size: clamp(180px, 25vw, 350px); line-height: .9; font-weight: 950; letter-spacing: -.15em; color: var(--blue); }
.brand-type { position: absolute; z-index: 2; right: 6%; bottom: 8%; font-size: clamp(28px, 4vw, 54px); font-weight: 900; line-height: .8; text-align: right; letter-spacing: -.06em; }
.brand-dot { position: absolute; right: 10%; top: 10%; width: 20%; aspect-ratio: 1; background: var(--orange); border: 2px solid var(--ink); border-radius: 50%; }

.proof-section { background: var(--ink); color: var(--paper); padding-block: 110px; overflow: hidden; }
.proof-grid { display: grid; grid-template-columns: .72fr 1.4fr .62fr; align-items: center; gap: 7vw; }
.proof-number { font-size: clamp(150px, 22vw, 350px); line-height: .7; letter-spacing: -.13em; font-weight: 950; color: var(--lime); transform: rotate(-5deg); }
.proof-number span { font-size: .2em; vertical-align: top; color: var(--orange); }
.proof-copy h2 { margin: 32px 0; }
.proof-copy h2 em { color: var(--lime); }
.proof-copy > p { font-size: 17px; line-height: 1.55; max-width: 620px; color: #c8c5bc; margin: 0 0 32px; }
.proof-notes { border-top: 1px solid rgba(255,255,255,.25); }
.proof-notes div { display: grid; grid-template-columns: 32px 1fr; gap: 13px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.25); }
.proof-notes strong { color: var(--orange); font: 700 10px/1 var(--font-geist-mono); }
.proof-notes span { font-size: 12px; font-weight: 700; line-height: 1.15; text-transform: uppercase; }

.capability-list { border-top: 1px solid var(--ink); }
.capability-row { display: grid; grid-template-columns: 55px 1fr 1.1fr .9fr; gap: 24px; align-items: center; padding: 32px 0; border-bottom: 1px solid var(--ink); }
.capability-number { font: 700 10px/1 var(--font-geist-mono); color: var(--orange); align-self: start; }
.capability-row h3 { font-size: clamp(24px, 2.6vw, 39px); line-height: 1; letter-spacing: -.04em; margin: 0; }
.capability-row > p { font-size: 14px; line-height: 1.55; color: var(--muted); margin: 0; max-width: 430px; }
.tag-list { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px; }
.tag-list span { border: 1px solid var(--line); border-radius: 99px; padding: 7px 10px; font: 700 8px/1 var(--font-geist-mono); text-transform: uppercase; }
.section-button { margin-top: 42px; }

.ai-callout { min-height: 530px; display: grid; grid-template-columns: .8fr 1.1fr .35fr; gap: 7vw; align-items: center; background: var(--lime); padding-inline: clamp(28px, 5vw, 80px); position: relative; overflow: hidden; }
.ai-callout::after { content: ""; position: absolute; width: 280px; aspect-ratio: 1; border: 2px solid var(--ink); border-radius: 50%; right: -120px; bottom: -130px; }
.ai-mark { font-size: clamp(70px, 10vw, 150px); line-height: .63; letter-spacing: -.09em; font-weight: 950; }
.ai-mark span { color: var(--orange); }
.ai-copy { position: relative; z-index: 2; }
.ai-copy h2 { margin: 30px 0; }
.ai-copy p:last-child { font-size: 17px; line-height: 1.55; max-width: 580px; }
.ai-side-note { writing-mode: vertical-rl; transform: rotate(180deg); font: 700 9px/1 var(--font-geist-mono); letter-spacing: .15em; justify-self: end; }

.closing-cta { min-height: 580px; padding-block: 130px; position: relative; display: flex; flex-direction: column; justify-content: center; border-bottom: 1px solid var(--line); }
.closing-cta h2 { font-size: clamp(52px, 7vw, 110px); line-height: .86; letter-spacing: -.075em; margin: 38px 0 0; font-weight: 900; }
.closing-cta h2 em { color: var(--orange); }
.round-link {
  position: absolute; right: 5%; bottom: 14%; width: 148px; aspect-ratio: 1; border-radius: 50%;
  display: grid; place-content: center; background: var(--blue); color: white; border: 2px solid var(--ink);
  font: 800 12px/1.05 var(--font-geist-mono); transform: rotate(-8deg);
  transition: transform .25s ease, background .25s ease;
}
.round-link:hover { transform: rotate(0) scale(1.05); background: var(--orange); color: var(--ink); }
.round-link span { color: var(--lime); }

.footer { background: var(--ink); color: var(--paper); padding: 66px 0 24px; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr .7fr; gap: 50px; align-items: start; padding-bottom: 65px; }
.footer-brand { display: flex; align-items: center; gap: 13px; font-size: 13px; }
.footer-brand > span { background: var(--lime); color: var(--ink); }
.footer-top > p { font-size: 14px; line-height: 1.6; color: #aaa79f; margin: 0; }
.footer nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 30px; }
.footer nav a { font-size: 13px; font-weight: 700; }
.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.2); padding-top: 20px; color: #88857e; font: 600 9px/1 var(--font-geist-mono); text-transform: uppercase; letter-spacing: .08em; }
.footer-bottom a { color: var(--paper); }

/* Interior pages */
.page-hero { padding-block: 95px 120px; border-bottom: 1px solid var(--ink); }
.page-hero h1 { font-size: clamp(72px, 10vw, 150px); margin: 48px 0 0; }
.page-hero h1 em { color: var(--blue); margin-left: .3ch; }
.about-intro { display: grid; grid-template-columns: 1.1fr .7fr; gap: 11vw; align-items: start; margin-top: 92px; }
.about-intro p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--muted); }
.about-intro .large-copy { font-size: clamp(24px, 2.7vw, 39px); line-height: 1.25; letter-spacing: -.035em; font-weight: 650; color: var(--ink); }
.about-poster { background: var(--blue); color: white; padding-block: 78px; overflow: hidden; }
.about-poster-inner { display: grid; grid-template-columns: .8fr 1.3fr .65fr; align-items: center; gap: 5vw; }
.poster-left { display: flex; flex-direction: column; gap: 14px; }
.poster-left span { width: max-content; background: var(--lime); color: var(--ink); border: 2px solid var(--ink); padding: 8px 12px; font: 900 clamp(16px,2.2vw,32px)/1 var(--font-geist-mono); transform: rotate(-3deg); }
.poster-left span:nth-child(2) { background: var(--orange); transform: rotate(2deg); margin-left: 20%; }
.poster-left span:nth-child(3) { background: var(--paper); transform: rotate(-1deg); margin-left: 6%; }
.poster-center { font-size: clamp(180px, 27vw, 420px); line-height: .65; letter-spacing: -.15em; font-weight: 950; color: var(--lime); }
.poster-center span { font-size: .18em; color: var(--orange); vertical-align: top; letter-spacing: 0; }
.poster-right strong { display: block; font-size: clamp(42px, 6vw, 86px); line-height: .7; letter-spacing: -.06em; color: var(--orange); transform: rotate(90deg); margin-bottom: 60px; }
.poster-right p { font: 700 11px/1.4 var(--font-geist-mono); }
.story-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: 8vw; }
.story-heading { position: sticky; top: 60px; align-self: start; }
.story-heading h2 { font-size: clamp(54px, 6vw, 90px); line-height: .88; letter-spacing: -.07em; margin: 34px 0 0; }
.story-heading h2 em { color: var(--orange); }
.chapter-list { border-top: 1px solid var(--ink); }
.chapter-list article { display: grid; grid-template-columns: 50px .7fr 1.3fr; gap: 25px; border-bottom: 1px solid var(--ink); padding: 33px 0 38px; }
.chapter-list article > span { color: var(--orange); font: 700 10px/1 var(--font-geist-mono); }
.chapter-list h3 { margin: 0; font-size: 25px; letter-spacing: -.035em; }
.chapter-list p { margin: 0; font-size: 14px; line-height: 1.65; color: var(--muted); }
.values-section { background: var(--ink); color: var(--paper); padding-block: 120px; }
.values-title { display: grid; grid-template-columns: .55fr 1.45fr; align-items: start; margin-bottom: 85px; }
.values-title h2 em { color: var(--lime); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.25); }
.values-grid article { padding: 24px 25px 10px 0; border-right: 1px solid rgba(255,255,255,.25); min-height: 240px; }
.values-grid article + article { padding-left: 25px; }
.values-grid article:last-child { border-right: 0; }
.values-grid strong { color: var(--orange); font: 700 10px/1 var(--font-geist-mono); }
.values-grid h3 { font-size: 25px; line-height: 1.05; margin: 60px 0 16px; letter-spacing: -.035em; }
.values-grid p { color: #aaa79f; font-size: 13px; line-height: 1.55; }

.work-hero-meta { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 40px; margin-top: 85px; }
.work-hero-meta > p { font-size: 22px; line-height: 1.45; max-width: 600px; margin: 0; }
.work-hero-meta > div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.work-hero-meta span { border: 1px solid var(--ink); border-radius: 99px; padding: 8px 13px; font: 700 8px/1 var(--font-geist-mono); }
.case-list { padding-block: 130px 50px; }
.case-study { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(45px, 8vw, 130px); align-items: center; padding-bottom: 150px; }
.case-study.case-reverse { grid-template-columns: .75fr 1.25fr; }
.case-reverse .case-visual-wrap { order: 2; }
.case-reverse .case-copy { order: 1; }
.case-visual-wrap .project-visual { aspect-ratio: 1.25 / 1; }
.case-note { display: block; text-align: right; margin-top: 12px; font: 700 9px/1 var(--font-geist-mono); text-transform: uppercase; }
.case-copy h2 { font-size: clamp(38px, 4vw, 64px); line-height: .97; letter-spacing: -.06em; margin: 25px 0 30px; }
.case-copy > p:not(.micro) { font-size: 15px; line-height: 1.65; color: var(--muted); }
.contribution-list { border-top: 1px solid var(--ink); margin-top: 38px; padding-top: 15px; display: grid; gap: 10px; }
.contribution-list strong { color: var(--orange); font: 700 9px/1 var(--font-geist-mono); margin-bottom: 6px; }
.contribution-list span { font-size: 12px; border-bottom: 1px solid var(--line); padding-bottom: 9px; }
.portfolio-note { margin-bottom: 80px; background: var(--paper-deep); border: 1px solid var(--line); padding: 25px; display: grid; grid-template-columns: 60px 1fr; align-items: center; }
.portfolio-note > span { font-size: 55px; color: var(--orange); }
.portfolio-note p { margin: 0; font-size: 13px; line-height: 1.55; max-width: 780px; }

.services-hero .hero-deck { margin-top: 70px; margin-left: auto; }
.service-pillars { padding-block: 40px 120px; }
.service-pillar { display: grid; grid-template-columns: 1fr .8fr .75fr; gap: 5vw; padding: 50px 0; border-bottom: 1px solid var(--ink); align-items: start; }
.service-title { display: grid; grid-template-columns: 40px 1fr; gap: 15px; }
.service-title > span { color: var(--orange); font: 700 10px/1 var(--font-geist-mono); }
.service-title h2 { margin: 0; font-size: clamp(30px, 3.7vw, 56px); line-height: .95; letter-spacing: -.055em; }
.service-lead { margin: 0; font-size: 19px; line-height: 1.45; }
.service-items { display: grid; border-top: 1px solid var(--ink); }
.service-items span { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.ai-section { background: var(--blue); color: white; padding-block: 120px; }
.ai-section-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 10vw; }
.ai-section-head h2 { margin-top: 37px; }
.ai-section-head h2 em { color: var(--lime); }
.ai-process { border-top: 1px solid rgba(255,255,255,.4); }
.ai-process article { display: grid; grid-template-columns: 40px .7fr 1.3fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.4); }
.ai-process span { color: var(--lime); font: 700 10px/1 var(--font-geist-mono); }
.ai-process h3 { margin: 0; font-size: 22px; }
.ai-process p { color: #d7dcff; margin: 0; font-size: 13px; line-height: 1.55; }
.fit-section { padding-block: 130px; display: grid; grid-template-columns: .7fr 1.3fr; gap: 10vw; }
.fit-section h2 { margin-top: 38px; }
.fit-list { border-top: 1px solid var(--ink); }
.fit-list p { display: grid; grid-template-columns: 45px 1fr; gap: 20px; margin: 0; padding: 24px 0; border-bottom: 1px solid var(--ink); font-size: 19px; line-height: 1.35; }
.fit-list span { color: var(--orange); font: 700 10px/1 var(--font-geist-mono); }

.contact-page { background: var(--lime); }
.contact-page .site-header { border-color: rgba(18,18,18,.35); }
.contact-hero { display: grid; grid-template-columns: 1.15fr .85fr; gap: 8vw; padding-block: 95px 105px; align-items: center; }
.contact-title h1 { margin: 48px 0 0; }
.contact-title h1 em { color: var(--blue); }
.contact-panel { background: var(--ink); color: var(--paper); padding: clamp(35px, 5vw, 70px); position: relative; box-shadow: 14px 14px 0 var(--blue); }
.contact-panel-number { position: absolute; right: 22px; top: 16px; color: var(--lime); font-size: 34px; }
.contact-panel h2 { font-size: clamp(30px, 3.4vw, 50px); line-height: 1; letter-spacing: -.05em; margin: 0 0 28px; }
.contact-panel > p { color: #aaa79f; font-size: 14px; line-height: 1.6; }
.contact-links { border-top: 1px solid rgba(255,255,255,.3); margin-top: 35px; }
.contact-links a { display: flex; justify-content: space-between; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.3); font-weight: 750; font-size: 14px; }
.contact-links a span { color: var(--lime); }
.contact-marquee { overflow: hidden; background: var(--blue); color: white; padding: 20px 0; white-space: nowrap; font: 900 clamp(22px, 3vw, 42px)/1 var(--font-geist-mono); letter-spacing: -.04em; }
.contact-marquee span { display: block; width: max-content; animation: ticker 25s linear infinite; }
.contact-details { padding-block: 100px; display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 8vw; }
.contact-details h2 { font-size: clamp(40px, 5vw, 72px); letter-spacing: -.06em; margin: 15px 0 25px; }
.contact-details p:not(.micro) { font-size: 14px; line-height: 1.7; }
.contact-page .footer { margin-top: 0; }

/* ─── RESPONSIVE (globals) ────────────────────────────────────── */

@media (max-width: 1000px) {
  .shell { width: min(100% - 34px, 1400px); }
  .hero { grid-template-columns: 1fr; }
  .hero-art { max-width: 760px; width: 100%; margin-left: auto; }
  .project-card-wide .project-visual { aspect-ratio: 1.45 / 1; }
  .proof-grid { grid-template-columns: .6fr 1.4fr; }
  .proof-notes { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); }
  .proof-notes div { border-top: 1px solid rgba(255,255,255,.25); }
  .capability-row { grid-template-columns: 40px 1fr 1fr; }
  .tag-list { grid-column: 2 / -1; justify-content: flex-start; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid article:nth-child(2) { border-right: 0; }
  .values-grid article:nth-child(3), .values-grid article:nth-child(4) { border-top: 1px solid rgba(255,255,255,.25); }
  .case-study, .case-study.case-reverse { grid-template-columns: 1fr 1fr; gap: 50px; }
  .service-pillar { grid-template-columns: 1fr 1fr; }
  .service-items { grid-column: 2; }
  .contact-hero { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 28px, 1400px); }
  .site-header { min-height: 78px; grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .mobile-menu { display: block; justify-self: end; }
  .mobile-menu summary { list-style: none; width: 42px; height: 42px; border: 1px solid var(--ink); display: grid; align-content: center; gap: 7px; padding: 0 10px; cursor: pointer; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary i { display: block; height: 2px; background: var(--ink); }
  .mobile-menu nav { position: absolute; top: 77px; left: 0; right: 0; background: var(--ink); color: var(--paper); padding: 24px 17px; display: grid; z-index: 20; }
  .mobile-menu nav a { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.2); font-size: 22px; font-weight: 750; }
  .hero { min-height: 0; padding-block: 58px 80px; gap: 66px; }
  .hero h1, .page-hero h1, .contact-title h1 { font-size: clamp(55px, 18vw, 92px); line-height: .8; margin: 31px 0 35px; }
  .hero h1 em { margin-left: 0; }
  .hero-deck { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-art { aspect-ratio: 1 / 1.08; box-shadow: 8px 8px 0 var(--ink); }
  .hero-twenty { font-size: 43vw; }
  .hero-caption { font-size: 9vw; bottom: 15%; }
  .hero-stamp { width: 70px; }
  .ticker { padding: 13px 0; }
  .section { padding-block: 88px; }
  .section-intro { grid-template-columns: 1fr; gap: 28px; margin-bottom: 46px; }
  .section-intro .eyebrow { grid-column: auto; }
  .section-intro h2, .proof-copy h2, .ai-copy h2, .values-title h2, .ai-section-head h2, .fit-section h2 { font-size: 48px; }
  .section-intro-side { justify-self: start; }
  .project-grid { grid-template-columns: 1fr; gap: 50px; }
  .project-card-wide { grid-column: auto; }
  .project-card-wide .project-visual, .project-card:not(.project-card-wide) .project-visual { aspect-ratio: 1 / 1; }
  .project-info { grid-template-columns: 1fr; gap: 12px; }
  .project-info > p { text-align: left; }
  .dental-word { font-size: 11vw; }
  .browser-frame { width: 72%; }
  .campaign-phone { width: 34%; }
  .proof-section { padding-block: 85px; }
  .proof-grid { grid-template-columns: 1fr; gap: 55px; }
  .proof-number { font-size: 58vw; }
  .proof-notes { grid-column: auto; grid-template-columns: 1fr; }
  .capability-row { grid-template-columns: 35px 1fr; align-items: start; }
  .capability-row > p, .tag-list { grid-column: 2; }
  .ai-callout { width: 100%; min-height: 0; grid-template-columns: 1fr; padding: 72px 28px; gap: 55px; }
  .ai-mark { font-size: 31vw; }
  .ai-side-note { display: none; }
  .closing-cta { min-height: 580px; padding-block: 90px 210px; justify-content: flex-start; }
  .closing-cta h2 { font-size: 15vw; }
  .round-link { width: 132px; right: 4%; bottom: 60px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 15px; }

  .page-hero { padding-block: 70px 85px; }
  .about-intro, .work-hero-meta { grid-template-columns: 1fr; gap: 35px; margin-top: 65px; }
  .work-hero-meta > div { justify-content: flex-start; }
  .about-poster { padding-block: 65px; }
  .about-poster-inner { grid-template-columns: 1fr; gap: 50px; }
  .poster-center { font-size: 67vw; order: -1; }
  .poster-right strong { transform: none; margin-bottom: 25px; }
  .story-section { grid-template-columns: 1fr; }
  .story-heading { position: static; }
  .chapter-list article { grid-template-columns: 35px 1fr; }
  .chapter-list p { grid-column: 2; }
  .values-section { padding-block: 85px; }
  .values-title { grid-template-columns: 1fr; gap: 35px; margin-bottom: 55px; }
  .values-grid { grid-template-columns: 1fr; }
  .values-grid article, .values-grid article + article { border-right: 0; border-top: 1px solid rgba(255,255,255,.25); padding: 24px 0; min-height: 210px; }
  .values-grid h3 { margin-top: 45px; }
  .case-list { padding-block: 85px 20px; }
  .case-study, .case-study.case-reverse { grid-template-columns: 1fr; gap: 45px; padding-bottom: 110px; }
  .case-reverse .case-visual-wrap, .case-reverse .case-copy { order: initial; }
  .case-visual-wrap .project-visual { aspect-ratio: 1 / 1; }
  .portfolio-note { grid-template-columns: 40px 1fr; }
  .services-hero .hero-deck { margin-top: 50px; }
  .service-pillars { padding-block: 20px 85px; }
  .service-pillar { grid-template-columns: 1fr; gap: 30px; }
  .service-items { grid-column: auto; }
  .ai-section { padding-block: 85px; }
  .ai-section-grid { grid-template-columns: 1fr; gap: 65px; }
  .ai-process article { grid-template-columns: 30px 1fr; }
  .ai-process p { grid-column: 2; }
  .fit-section { padding-block: 90px; grid-template-columns: 1fr; gap: 65px; }
  .contact-hero { grid-template-columns: 1fr; padding-block: 70px 95px; }
  .contact-panel { box-shadow: 8px 8px 0 var(--blue); }
  .contact-details { grid-template-columns: 1fr; gap: 55px; padding-block: 80px; }
}

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

/* ─── MODERN DARK THEME (overrides) ───────────────────────────── */

:root {
  --ink: #f5f7fb;
  --paper: #06070a;
  --paper-deep: #0d1016;
  --lime: #b9ff66;
  --orange: #ff4fd8;
  --blue: #725cff;
  --cyan: #5cf6ff;
  --line: rgba(255, 255, 255, 0.12);
  --muted: #939aaa;
}

body {
  background:
    radial-gradient(circle at 76% 2%, rgba(114, 92, 255, .18), transparent 30rem),
    radial-gradient(circle at 8% 40%, rgba(92, 246, 255, .08), transparent 34rem),
    #06070a;
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .18;
  background-image: radial-gradient(rgba(255,255,255,.32) .45px, transparent .45px);
  background-size: 4px 4px;
}

.site-header {
  min-height: 86px;
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100vw - 1400px) / 2));
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(6, 7, 10, .72);
  backdrop-filter: blur(22px) saturate(150%);
}

.brand > span,
.footer-brand > span {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: linear-gradient(145deg, var(--cyan), var(--blue) 56%, var(--orange));
  color: white;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55), 0 0 35px rgba(114,92,255,.25);
}

.brand strong { line-height: 1; letter-spacing: .08em; }
.desktop-nav a, .header-cta { color: #d8dce6; font-weight: 520; }
.desktop-nav a::after { height: 1px; background: linear-gradient(90deg, var(--cyan), var(--orange)); }
.header-cta {
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 99px;
  background: rgba(255,255,255,.06);
}
.header-cta span { color: var(--cyan); }

.eyebrow { color: #aeb5c4; letter-spacing: .14em; }
.eyebrow > span:first-child {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
  flex-shrink: 0;
}
.eyebrow-light { color: #aeb5c4; }
.eyebrow-light > span:first-child { background: var(--lime); box-shadow: 0 0 14px var(--lime); }
.micro { color: #9ba3b4; letter-spacing: .13em; }

.hero {
  min-height: calc(100svh - 86px);
  grid-template-columns: minmax(0, 1.08fr) minmax(470px, .92fr);
  padding-block: 80px 110px;
}

.hero h1,
.page-hero h1,
.contact-title h1 {
  font-size: clamp(68px, 8.6vw, 138px);
  line-height: .84;
  letter-spacing: -.085em;
  text-transform: none;
  margin-block: 42px 48px;
}

h1 em,
h2 em,
.hero h1 em {
  display: inline-block;
  margin-left: 0;
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  text-transform: none;
  white-space: normal;
  color: transparent;
  background: linear-gradient(95deg, var(--cyan), #afa3ff 46%, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-deck {
  max-width: 660px;
  color: #abb2c0;
  font-size: 18px;
  line-height: 1.62;
}

.button {
  min-height: 54px;
  border-radius: 99px;
  padding-inline: 24px;
  letter-spacing: .08em;
}
.button-dark {
  color: #050608;
  background: linear-gradient(110deg, var(--cyan), #a7a1ff 50%, var(--orange));
  box-shadow: 0 10px 45px rgba(114,92,255,.22);
}
.button-dark span { color: #050608; }
.button-light { background: linear-gradient(110deg, var(--cyan), var(--lime)); color: #050608; }
.button-outline { border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.045); }
.button-outline:hover { background: white; color: #07080b; }
.text-link { color: #e7eaf1; border-color: rgba(255,255,255,.35); }
.text-link span { color: var(--cyan); }

.hero-art {
  aspect-ratio: 1 / 1.03;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,.16);
  background:
    radial-gradient(circle at 50% 42%, rgba(92,246,255,.25), transparent 16%),
    radial-gradient(circle at 46% 46%, rgba(114,92,255,.34), transparent 37%),
    radial-gradient(circle at 87% 10%, rgba(255,79,216,.17), transparent 27%),
    linear-gradient(145deg, #11151e, #080a0f 72%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 40px 100px rgba(0,0,0,.5);
  isolation: isolate;
}

.hero-art::before {
  content: "";
  position: absolute;
  width: 54%;
  aspect-ratio: 1;
  left: 23%;
  top: 19%;
  border-radius: 50%;
  z-index: 0;
  background:
    radial-gradient(circle at 30% 25%, #d5ffff, var(--cyan) 8%, transparent 12%),
    conic-gradient(from 210deg, var(--blue), var(--cyan), #1927ac, var(--orange), var(--blue));
  box-shadow: 0 0 90px rgba(92,246,255,.25), 0 0 160px rgba(114,92,255,.22);
  filter: saturate(120%);
  animation: orb-float 7s ease-in-out infinite;
}

.hero-art::after {
  content: "";
  position: absolute;
  width: 48%;
  height: 10%;
  left: 26%;
  bottom: 20%;
  border-radius: 50%;
  background: rgba(0,0,0,.65);
  filter: blur(26px);
  z-index: -1;
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-16px) rotate(4deg); }
}

.hero-grid {
  inset: 0;
  opacity: .35;
  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: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-orbit {
  z-index: 2;
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: inset 0 0 30px rgba(92,246,255,.08), 0 0 30px rgba(114,92,255,.08);
}
.hero-orbit::after { width: 7px; height: 7px; border: 0; background: var(--cyan); box-shadow: 0 0 16px var(--cyan); }
.hero-orbit-one { width: 67%; right: 16%; top: 12%; animation: orbit-spin 18s linear infinite; }
.hero-orbit-two { width: 43%; left: 29%; bottom: 18%; animation: orbit-spin 11s linear reverse infinite; }
@keyframes orbit-spin { to { transform: rotate(360deg); } }

.hero-stamp {
  right: 5%;
  top: 5%;
  width: auto;
  aspect-ratio: auto;
  border-radius: 99px;
  padding: 9px 13px;
  gap: 8px;
  display: flex;
  align-items: center;
  text-align: left;
  background: rgba(255,255,255,.07);
  color: #cbd0da;
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  transform: none;
}
.hero-stamp i { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px var(--lime); display: block; }

.hero-twenty {
  left: 6%;
  top: 6%;
  z-index: 4;
  font-size: clamp(70px, 8vw, 120px);
  letter-spacing: -.09em;
  background: linear-gradient(110deg, white, #7e879a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-twenty span { color: var(--cyan); }

.hero-caption {
  left: 6%;
  bottom: 7%;
  z-index: 4;
  font: 650 clamp(18px, 2vw, 30px)/1.05 var(--font-geist-mono);
  letter-spacing: -.04em;
  transform: none;
  color: #e9edf5;
}

.hero-ticket {
  right: 5%;
  bottom: 6%;
  z-index: 4;
  padding: 10px 13px;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(8,10,15,.66);
  color: #aab2c1;
  backdrop-filter: blur(10px);
  transform: none;
}

.ticker {
  padding: 19px 0;
  border-block: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.025);
  color: #9ba3b4;
}
.ticker b { color: var(--cyan); }

.section { padding-block: 150px; }
.section-intro h2,
.proof-copy h2,
.ai-copy h2,
.values-title h2,
.ai-section-head h2,
.fit-section h2 {
  font-size: clamp(46px, 5.7vw, 88px);
  line-height: .95;
  letter-spacing: -.065em;
}
.section-intro-side p { color: var(--muted); line-height: 1.65; }

.project-grid { gap: 30px; }
.project-card {
  padding: 10px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.035);
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.project-card:hover { transform: translateY(-7px); border-color: rgba(92,246,255,.35); background: rgba(255,255,255,.06); }
.project-visual { border: 0; border-radius: 22px; }
.project-info { padding: 22px 14px 14px; }
.project-info h3 { color: #f4f6fa; }
.project-info > p { color: var(--muted); }

.visual-dental {
  background:
    radial-gradient(circle at 72% 43%, rgba(92,246,255,.3), transparent 8%),
    radial-gradient(circle at 70% 45%, rgba(114,92,255,.5), transparent 35%),
    linear-gradient(145deg, #151a26, #080a11);
}
.visual-dental::before {
  width: 30%;
  border-radius: 50%;
  background: conic-gradient(var(--cyan), var(--blue), var(--orange), var(--cyan));
  box-shadow: 0 0 80px rgba(114,92,255,.35);
}
.dental-word { color: white; }
.dental-word em { font-family: inherit; font-style: normal; font-weight: inherit; color: transparent; background: linear-gradient(90deg,var(--cyan),var(--orange)); -webkit-background-clip: text; background-clip: text; }
.dental-ring { border-color: rgba(255,255,255,.28); }
.dental-label { color: #b9c0cf; }
.dental-arrow { color: var(--cyan); }

.visual-web {
  background:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(145deg, #171425, #080a10);
  background-size: 32px 32px, 32px 32px, auto;
}
.visual-web::after { background: var(--orange); filter: blur(70px); opacity: .35; }
.browser-frame {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 17px;
  background: rgba(12,15,22,.82);
  color: white;
  box-shadow: 0 25px 70px rgba(0,0,0,.5), inset 0 1px rgba(255,255,255,.1);
  backdrop-filter: blur(18px);
}
.browser-bar { border-color: rgba(255,255,255,.13); color: var(--orange); }
.browser-frame em { font-family: inherit; color: transparent; background: linear-gradient(90deg,var(--cyan),#a69cff); -webkit-background-clip: text; background-clip: text; }
.browser-frame > span { border: 0; border-radius: 99px; color: #050608; background: var(--cyan); }
.web-card {
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px;
  background: rgba(114,92,255,.8);
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
  backdrop-filter: blur(10px);
}
.web-card.card-two { background: rgba(92,246,255,.85); }

.visual-campaign {
  background: radial-gradient(circle at 25% 40%, rgba(255,79,216,.28), transparent 35%), linear-gradient(140deg, #121523, #08090d);
}
.visual-campaign::before { opacity: .25; background: repeating-conic-gradient(from 0deg, transparent 0deg 14deg, rgba(92,246,255,.18) 14deg 15deg); }
.campaign-burst { color: transparent; background: linear-gradient(150deg, #fff 10%, var(--cyan), var(--orange)); -webkit-background-clip: text; background-clip: text; }
.campaign-phone {
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 28px;
  background: rgba(10,12,18,.88);
  box-shadow: 0 30px 90px rgba(0,0,0,.6), 0 0 50px rgba(114,92,255,.25);
}
.campaign-phone span { color: var(--cyan); }
.campaign-mail {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 13px;
  background: rgba(255,255,255,.08);
  color: white;
  backdrop-filter: blur(15px);
  transform: none;
}

.visual-brand { background: radial-gradient(circle at 20% 30%, rgba(92,246,255,.24), transparent 35%), linear-gradient(145deg, #101521, #08090d); }
.brand-shape { color: transparent; background: linear-gradient(145deg,var(--cyan),var(--blue),var(--orange)); -webkit-background-clip: text; background-clip: text; }
.brand-type { color: white; }
.brand-dot { border: 0; background: radial-gradient(circle at 30% 25%, #fff, var(--orange) 12%, var(--blue) 60%, #111); box-shadow: 0 0 80px rgba(255,79,216,.3); }

.proof-section {
  margin-inline: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 40px;
  background:
    radial-gradient(circle at 12% 25%, rgba(92,246,255,.15), transparent 30%),
    radial-gradient(circle at 82% 55%, rgba(255,79,216,.13), transparent 35%),
    #0c0f15;
  color: white;
}
.proof-number {
  transform: none;
  color: transparent;
  background: linear-gradient(145deg, var(--cyan), var(--blue), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 35px rgba(114,92,255,.22));
}
.proof-number span { color: var(--cyan); }
.proof-copy h2 em { color: transparent; }
.proof-copy > p { color: #9fa6b5; }
.proof-notes { border-color: rgba(255,255,255,.13); }
.proof-notes div { border-color: rgba(255,255,255,.13); }
.proof-notes strong { color: var(--cyan); }

.capability-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  border: 0;
}
.capability-row {
  min-height: 310px;
  grid-template-columns: 45px 1fr;
  align-content: start;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 25px;
  padding: 29px;
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  overflow: hidden;
  position: relative;
}
.capability-row::after {
  content: "";
  width: 160px;
  aspect-ratio: 1;
  position: absolute;
  right: -70px;
  bottom: -90px;
  border-radius: 50%;
  background: var(--blue);
  filter: blur(60px);
  opacity: .18;
}
.capability-row:nth-child(2)::after { background: var(--cyan); }
.capability-row:nth-child(3)::after { background: var(--orange); }
.capability-number { color: var(--cyan); }
.capability-row h3 { align-self: start; }
.capability-row > p { grid-column: 2; color: var(--muted); }
.capability-row .tag-list { grid-column: 2; justify-content: flex-start; margin-top: auto; align-self: end; }
.tag-list span { border-color: rgba(255,255,255,.13); background: rgba(255,255,255,.035); color: #afb6c5; }

.ai-callout {
  min-height: 560px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 42px;
  background:
    radial-gradient(circle at 8% 20%, rgba(92,246,255,.15), transparent 32%),
    radial-gradient(circle at 90% 80%, rgba(255,79,216,.18), transparent 34%),
    linear-gradient(145deg,#111521,#090b10);
  box-shadow: inset 0 1px rgba(255,255,255,.12);
}
.ai-callout::after { border-color: rgba(92,246,255,.25); box-shadow: 0 0 80px rgba(92,246,255,.1); }
.ai-mark {
  color: transparent;
  background: linear-gradient(145deg,var(--cyan),#9d92ff,var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(114,92,255,.25));
}
.ai-mark span { color: var(--cyan); }
.ai-copy p:last-child { color: var(--muted); }
.ai-side-note { color: #737b8b; }

.closing-cta { border-color: rgba(255,255,255,.11); }
.closing-cta h2 em { color: transparent; }
.round-link {
  width: 156px;
  border: 1px solid rgba(255,255,255,.25);
  background: linear-gradient(145deg,var(--blue),#4b3bd6 55%,var(--orange));
  color: white;
  box-shadow: 0 20px 70px rgba(114,92,255,.32), inset 0 1px rgba(255,255,255,.4);
  transform: none;
}
.round-link:hover { transform: translateY(-6px) scale(1.04); background: linear-gradient(145deg,var(--cyan),var(--blue)); color: white; }

.footer {
  background: #030406;
  color: white;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-brand > span { background: linear-gradient(145deg,var(--cyan),var(--blue),var(--orange)); }
.footer-top > p, .footer-bottom { color: #737b8b; }
.footer-bottom { border-color: rgba(255,255,255,.1); }

/* Interior pages (modern) */
.page-hero { border-color: rgba(255,255,255,.12); padding-block: 120px 140px; }
.page-hero h1 em { color: transparent; }
.about-intro p, .case-copy > p:not(.micro) { color: var(--muted); }
.about-intro .large-copy { color: #eef1f6; }

.about-poster {
  margin-inline: 24px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 42px;
  background:
    radial-gradient(circle at 20% 50%, rgba(92,246,255,.13), transparent 30%),
    radial-gradient(circle at 85% 30%, rgba(255,79,216,.16), transparent 30%),
    #0c0f15;
}
.poster-left span {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 99px;
  background: rgba(255,255,255,.06);
  color: #d8dce5;
  backdrop-filter: blur(12px);
  transform: none;
}
.poster-left span:nth-child(2), .poster-left span:nth-child(3) { background: rgba(255,255,255,.06); color: #d8dce5; transform: none; }
.poster-center {
  color: transparent;
  background: linear-gradient(145deg,var(--cyan),var(--blue),var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
}
.poster-center span { color: var(--cyan); }
.poster-right strong {
  color: transparent;
  background: linear-gradient(90deg,var(--cyan),var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
}

.chapter-list, .chapter-list article { border-color: rgba(255,255,255,.13); }
.chapter-list article > span { color: var(--cyan); }
.chapter-list p { color: var(--muted); }

.values-section {
  margin-inline: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 40px;
  background: radial-gradient(circle at 80% 15%, rgba(114,92,255,.18), transparent 35%), #0c0f15;
}
.values-title h2 em { color: transparent; }
.values-grid { gap: 12px; border: 0; }
.values-grid article,
.values-grid article + article {
  min-height: 260px;
  padding: 25px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: rgba(255,255,255,.035);
}
.values-grid strong { color: var(--cyan); }
.values-grid p { color: var(--muted); }

.work-hero-meta span {
  border-color: rgba(255,255,255,.17);
  background: rgba(255,255,255,.04);
  color: #acb3c2;
}
.case-study {
  padding: 25px;
  margin-bottom: 90px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 32px;
  background: rgba(255,255,255,.025);
}
.case-visual-wrap .project-visual { border-radius: 24px; }
.case-note { color: var(--cyan); }
.case-copy h2 { color: #f2f4f8; }
.contribution-list { border-color: rgba(255,255,255,.15); }
.contribution-list strong { color: var(--cyan); }
.contribution-list span { border-color: rgba(255,255,255,.08); color: #c3c8d3; }
.portfolio-note {
  border-color: rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  color: #adb4c2;
}
.portfolio-note > span { color: var(--cyan); }

.service-pillar { border-color: rgba(255,255,255,.13); }
.service-title > span { color: var(--cyan); }
.service-lead { color: #cbd0dc; }
.service-items { border-color: rgba(255,255,255,.15); }
.service-items span { border-color: rgba(255,255,255,.08); color: #9da5b5; }
.ai-section {
  margin-inline: 24px;
  border-radius: 42px;
  border: 1px solid rgba(255,255,255,.13);
  background:
    radial-gradient(circle at 12% 20%, rgba(92,246,255,.17), transparent 35%),
    radial-gradient(circle at 90% 80%, rgba(255,79,216,.14), transparent 35%),
    #0c0f15;
}
.ai-section-head h2 em { color: transparent; }
.ai-process, .ai-process article { border-color: rgba(255,255,255,.13); }
.ai-process span { color: var(--cyan); }
.ai-process p { color: var(--muted); }
.fit-list, .fit-list p { border-color: rgba(255,255,255,.13); }
.fit-list span { color: var(--cyan); }

.contact-page { background: transparent; }
.contact-page .site-header { border-color: rgba(255,255,255,.1); }
.contact-title h1 em { color: transparent; }
.contact-panel {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0, rgba(114,92,255,.3), transparent 35%),
    rgba(14,17,24,.88);
  color: white;
  box-shadow: 0 35px 100px rgba(0,0,0,.5), inset 0 1px rgba(255,255,255,.13);
  backdrop-filter: blur(20px);
}
.contact-panel-number { color: var(--cyan); }
.contact-panel > p { color: var(--muted); }
.contact-links, .contact-links a { border-color: rgba(255,255,255,.13); }
.contact-links a span { color: var(--cyan); }
.contact-panel .contact-placeholder { color: #747c8c; }
.contact-placeholder strong { color: var(--orange); }
.contact-marquee {
  border-block: 1px solid rgba(255,255,255,.11);
  background: linear-gradient(90deg, rgba(92,246,255,.1), rgba(114,92,255,.18), rgba(255,79,216,.1));
  color: #b9c1d0;
}

/* ─── MODERN RESPONSIVE ───────────────────────────────────────── */

@media (max-width: 1000px) {
  .site-header { padding-inline: 17px; }
  .hero { grid-template-columns: 1fr; }
  .hero-art { max-width: 740px; }
  .capability-list { grid-template-columns: 1fr 1fr; }
  .proof-section, .about-poster, .values-section, .ai-section { margin-inline: 14px; }
}

@media (max-width: 760px) {
  .site-header { min-height: 76px; }
  .mobile-menu summary { border-color: rgba(255,255,255,.18); border-radius: 12px; background: rgba(255,255,255,.05); }
  .mobile-menu summary i { background: white; }
  .mobile-menu nav { top: 75px; background: rgba(6,7,10,.96); backdrop-filter: blur(18px); }
  .mobile-menu nav a { border-color: rgba(255,255,255,.1); }
  .hero { padding-block: 65px 90px; }
  .hero h1, .page-hero h1, .contact-title h1 { font-size: clamp(52px, 16vw, 84px); line-height: .86; }
  .hero-art { border-radius: 24px; box-shadow: inset 0 1px rgba(255,255,255,.18), 0 24px 70px rgba(0,0,0,.55); }
  .hero-art::before { width: 58%; left: 21%; top: 20%; }
  .hero-twenty { font-size: 20vw; }
  .hero-caption { font-size: 4.8vw; }
  .hero-ticket { max-width: 45%; line-height: 1.35; }
  .section { padding-block: 100px; }
  .section-intro h2, .proof-copy h2, .ai-copy h2, .values-title h2, .ai-section-head h2, .fit-section h2 { font-size: 44px; }
  .project-card { border-radius: 22px; }
  .project-visual { border-radius: 16px; }
  .proof-section, .about-poster, .values-section, .ai-section { margin-inline: 8px; border-radius: 28px; }
  .capability-list { grid-template-columns: 1fr; }
  .capability-row { min-height: 280px; padding: 24px; }
  .ai-callout { width: calc(100% - 16px); border-radius: 28px; }
  .round-link { width: 138px; }
  .about-poster-inner { gap: 40px; }
  .poster-center { font-size: 62vw; }
  .values-grid { gap: 10px; }
  .case-study, .case-study.case-reverse { padding: 10px 10px 35px; margin-bottom: 30px; border-radius: 25px; }
  .case-copy { padding: 0 13px; }
  .contact-panel { border-radius: 24px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
}

/* ─── HEADSHOT ─────────────────────────────────────────────────── */
.about-headshot {
  width: 100%;
  max-width: 340px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  object-fit: cover;
}

/* ─── MOBILE MENU VISIBILITY FIX ─────────────────────────────── */
@media (max-width: 760px) {
  .mobile-menu {
    position: relative;
    z-index: 100;
  }

  .mobile-menu nav {
    position: absolute;
    top: calc(100% + 1px);
    left: auto;
    right: 0;
    width: min(100vw - 28px, 420px);
    background: #06070a;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 0 0 14px 14px;
    padding: 12px 20px 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,.45);
    display: grid;
    z-index: 101;
  }

  .mobile-menu nav a,
  .mobile-menu nav a:visited,
  .mobile-menu nav a:hover,
  .mobile-menu nav a:focus,
  .mobile-menu nav a:active {
    display: block;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: none;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 650;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .mobile-menu nav a:last-child {
    border-bottom: 0;
  }
}
