:root {
  color-scheme: dark;
  --bg: #070b14;
  --bg-elevated: #0c1220;
  --surface: #111827;
  --surface-soft: #151e2e;
  --text: #f7f9fc;
  --muted: #aab6c8;
  --muted-strong: #cbd5e1;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --accent: #69e7c5;
  --accent-strong: #30cba3;
  --accent-dark: #062c25;
  --violet: #a78bfa;
  --blue: #72b7ff;
  --warm: #ffb86b;
  --danger: #fb7185;
  --max: 1180px;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.035em; }
h1 { font-size: clamp(3rem, 8.3vw, 7.2rem); }
h2 { font-size: clamp(2.15rem, 4.8vw, 4.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
p { color: var(--muted); }
::selection { color: #03120f; background: var(--accent); }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 780px); margin-inline: auto; }
.section { padding: clamp(5rem, 10vw, 9rem) 0; }
.section-tight { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-rule { border-top: 1px solid var(--line); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: .75rem 1rem; color: #06110e; background: var(--accent); border-radius: 8px; font-weight: 800; transform: translateY(-160%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }

.eyebrow { display: inline-flex; align-items: center; gap: .65rem; margin-bottom: 1rem; color: var(--accent); font-size: .76rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.lede { max-width: 720px; color: var(--muted-strong); font-size: clamp(1.06rem, 2vw, 1.28rem); }
.section-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 3rem; align-items: end; margin-bottom: 3rem; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { margin-bottom: .45rem; }

.site-header { position: sticky; z-index: 100; top: 0; height: 76px; border-bottom: 1px solid var(--line); background: rgba(7, 11, 20, .82); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.nav { display: flex; height: 100%; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: .72rem; text-decoration: none; font-weight: 850; letter-spacing: -.03em; }
.brand-mark { width: 34px; height: 34px; }
.brand-name { font-size: 1.06rem; }
.brand-name span { color: var(--accent); }
.nav-panel { display: flex; align-items: center; gap: 1.65rem; }
.nav-links { display: flex; align-items: center; gap: 1.3rem; }
.nav-links a { color: var(--muted-strong); font-size: .89rem; font-weight: 680; text-decoration: none; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #fff; }
.nav-links a[aria-current="page"] { text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 8px; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line); border-radius: 10px; background: transparent; }
.nav-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: .6rem; padding: .78rem 1.12rem; border: 1px solid transparent; border-radius: 10px; font-size: .9rem; font-weight: 800; line-height: 1.2; text-decoration: none; cursor: pointer; transition: transform .2s ease, background-color .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #03120f; background: var(--accent); }
.button-primary:hover { background: #8df0d4; }
.button-secondary { color: #fff; border-color: var(--line-strong); background: rgba(255,255,255,.035); }
.button-secondary:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.075); }
.button-small { min-height: 42px; padding: .62rem .9rem; }
.text-link { color: var(--text); font-weight: 800; text-underline-offset: 5px; text-decoration-color: var(--accent); }

.hero { position: relative; min-height: calc(100svh - 76px); overflow: hidden; padding: clamp(5rem, 10vw, 9rem) 0 5rem; background-image: linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px); background-size: 48px 48px; }
.hero::before { content: ""; position: absolute; width: 58vw; height: 58vw; top: -32vw; right: -12vw; border-radius: 50%; background: rgba(105, 231, 197, .14); filter: blur(100px); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.hero h1 { max-width: 870px; margin-bottom: 1.6rem; }
.hero h1 span { color: var(--accent); }
.hero-copy { max-width: 690px; margin-bottom: 2rem; font-size: clamp(1.05rem, 2vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2.2rem; }
.founder-note { display: flex; align-items: center; gap: .8rem; color: var(--muted); font-size: .88rem; }
.founder-monogram { display: grid; width: 35px; height: 35px; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--accent); font-size: .72rem; font-weight: 850; }

.hero-media { position: relative; min-height: 570px; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: var(--radius-lg); object-fit: cover; background: #0a1020; }
.motion-poster { position: absolute; inset: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: radial-gradient(circle at 75% 20%, rgba(167,139,250,.2), transparent 32%), linear-gradient(145deg, #10192a, #080d17 65%); box-shadow: var(--shadow); isolation: isolate; }
.motion-poster::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.18) 1px, transparent 1px); background-size: 26px 26px; mask-image: linear-gradient(to bottom, #000, transparent 85%); opacity: .38; }
.motion-orbit { position: absolute; border: 1px solid rgba(105,231,197,.2); border-radius: 50%; animation: orbit 18s linear infinite; }
.motion-orbit.one { width: 430px; height: 430px; top: 50px; left: 55px; }
.motion-orbit.two { width: 300px; height: 300px; top: 115px; left: 120px; animation-direction: reverse; animation-duration: 13s; }
.motion-node { position: absolute; width: 11px; height: 11px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 28px var(--accent); }
.motion-node.n1 { top: -5px; left: 50%; }
.motion-node.n2 { right: 6%; bottom: 24%; background: var(--violet); box-shadow: 0 0 28px var(--violet); }
.motion-core { position: absolute; z-index: 2; inset: 50% auto auto 50%; width: 230px; padding: 1.25rem; border: 1px solid var(--line-strong); border-radius: 18px; background: rgba(11,18,32,.9); transform: translate(-50%, -50%); box-shadow: 0 18px 60px rgba(0,0,0,.45); }
.motion-core strong { display: block; margin-bottom: .5rem; font-size: 1.08rem; }
.motion-core p { margin: 0; font-size: .8rem; }
.motion-lines { display: grid; gap: .55rem; margin-top: 1rem; }
.motion-lines span { height: 5px; border-radius: 99px; background: rgba(255,255,255,.1); }
.motion-lines span:nth-child(1) { width: 85%; background: var(--accent); }
.motion-lines span:nth-child(2) { width: 62%; background: var(--violet); }
.motion-lines span:nth-child(3) { width: 74%; }
.media-caption { position: absolute; z-index: 3; right: 1.2rem; bottom: 1.1rem; color: var(--muted); font-size: .72rem; }
@keyframes orbit { to { transform: rotate(360deg); } }

.metric-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.metric-grid div { min-height: 145px; padding: 2rem; border-left: 1px solid var(--line); }
.metric-grid div:last-child { border-right: 1px solid var(--line); }
.metric-grid strong { display: block; margin-bottom: .45rem; color: var(--accent); font-size: 1rem; }
.metric-grid span { color: var(--muted-strong); font-size: .9rem; }

.intro-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(3rem, 8vw, 7rem); }
.intro-copy h2 { max-width: 800px; }
.intro-copy > p { max-width: 760px; font-size: 1.15rem; }
.pill-list { display: flex; flex-wrap: wrap; gap: .6rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.pill { padding: .55rem .8rem; border: 1px solid var(--line); border-radius: 99px; color: var(--muted-strong); font-size: .78rem; font-weight: 700; }

.product-rotator { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg-elevated); box-shadow: var(--shadow); }
.rotator-viewport { overflow: hidden; }
.rotator-track { display: flex; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.product-slide { display: grid; flex: 0 0 100%; min-height: 500px; grid-template-columns: 1fr 1fr; }
.product-slide-copy { display: flex; padding: clamp(2rem, 5vw, 4rem); flex-direction: column; justify-content: center; }
.status { display: inline-flex; width: fit-content; align-items: center; gap: .5rem; margin-bottom: 1.2rem; color: var(--muted-strong); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--warm); box-shadow: 0 0 16px rgba(255,184,107,.75); }
.status.portfolio::before { background: var(--blue); box-shadow: 0 0 16px rgba(114,183,255,.75); }
.product-slide-copy h3 { margin-bottom: 1rem; font-size: clamp(2rem, 4vw, 3.7rem); }
.product-slide-copy .text-link { width: fit-content; margin-top: 1rem; }
.product-art { position: relative; display: grid; min-height: 420px; place-items: center; overflow: hidden; background: #0a111f; }
.product-art::before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: color-mix(in srgb, var(--product-color, var(--accent)) 20%, transparent); filter: blur(30px); }
.product-art::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 32px 32px; }
.product-art--mint { --product-color: #69e7c5; }
.product-art--violet { --product-color: #a78bfa; }
.product-art--blue { --product-color: #72b7ff; }
.product-wordmark { position: relative; z-index: 1; padding: 1.1rem 1.45rem; border: 1px solid var(--line-strong); border-radius: 15px; background: rgba(7,11,20,.72); font-size: clamp(1.5rem, 4vw, 3rem); font-weight: 880; letter-spacing: -.05em; }
.product-wordmark span { color: var(--product-color, var(--accent)); }
.rotator-controls { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.2rem; border-top: 1px solid var(--line); }
.rotator-dots { display: flex; gap: .5rem; }
.rotator-dot { width: 36px; height: 5px; padding: 0; border: 0; border-radius: 99px; background: rgba(255,255,255,.18); cursor: pointer; }
.rotator-dot[aria-current="true"] { background: var(--accent); }
.rotator-actions { display: flex; gap: .5rem; }
.product-rotator[data-index="0"] .rotator-track { transform: translateX(0); }
.product-rotator[data-index="1"] .rotator-track { transform: translateX(-100%); }
.product-rotator[data-index="2"] .rotator-track { transform: translateX(-200%); }
.icon-button { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line); border-radius: 10px; background: transparent; cursor: pointer; }
.icon-button:hover { background: rgba(255,255,255,.07); }

.capability-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
.capability-card { min-height: 270px; padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.015)); }
.capability-card:nth-child(1), .capability-card:nth-child(2) { grid-column: span 6; }
.capability-card:nth-child(n+3) { grid-column: span 4; }
.capability-index { display: block; margin-bottom: 4rem; color: var(--accent); font-size: .76rem; font-weight: 850; }
.capability-card h3 { margin-bottom: .8rem; }
.capability-card p { margin-bottom: 0; }

.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.work-card { position: relative; min-height: 420px; padding: 2rem; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-elevated); }
.work-card::after { content: ""; position: absolute; width: 250px; height: 250px; right: -120px; bottom: -120px; border-radius: 50%; background: var(--card-glow, rgba(105,231,197,.18)); filter: blur(8px); }
.work-card > * { position: relative; z-index: 1; }
.work-card--violet { --card-glow: rgba(167,139,250,.2); }
.work-card--blue { --card-glow: rgba(114,183,255,.2); }
.work-type { color: var(--accent); font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.work-card h3 { margin-top: 7rem; font-size: 2rem; }

.cta-panel { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; padding: clamp(2rem, 6vw, 5rem); border: 1px solid rgba(105,231,197,.28); border-radius: var(--radius-lg); background: radial-gradient(circle at 88% 50%, rgba(105,231,197,.13), transparent 35%), var(--bg-elevated); }
.cta-panel h2 { max-width: 780px; margin-bottom: .8rem; }
.cta-panel p { margin-bottom: 0; }

.page-hero { position: relative; padding: clamp(6rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 7rem); overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero::after { content: ""; position: absolute; width: 480px; height: 480px; right: -200px; top: -200px; border-radius: 50%; background: rgba(105,231,197,.13); filter: blur(90px); }
.page-hero h1 { max-width: 1000px; margin-bottom: 1.5rem; font-size: clamp(3rem, 7vw, 6.2rem); }

.product-list { display: grid; gap: 1rem; }
.product-entry { display: grid; min-height: 380px; grid-template-columns: .9fr 1.1fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg-elevated); }
.product-entry-copy { padding: clamp(2rem, 5vw, 4rem); }
.product-entry-copy h2 { margin: .8rem 0 1rem; font-size: clamp(2.3rem, 5vw, 4.5rem); }
.product-entry-copy .button { margin-top: 1rem; }
.product-entry-art { display: grid; min-height: 320px; place-items: center; background: radial-gradient(circle, rgba(105,231,197,.16), transparent 60%), #0a111f; }
.product-entry-art.violet { background: radial-gradient(circle, rgba(167,139,250,.18), transparent 60%), #0a111f; }
.product-entry-art.blue { background: radial-gradient(circle, rgba(114,183,255,.16), transparent 60%), #0a111f; }

.service-stack { display: grid; gap: 1rem; }
.service-row { display: grid; grid-template-columns: 180px 1fr 1fr; gap: 2rem; padding: 2.2rem 0; border-top: 1px solid var(--line); }
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-number { color: var(--accent); font-size: .78rem; font-weight: 850; letter-spacing: .12em; }
.service-row h2 { font-size: clamp(1.8rem, 3.7vw, 3.2rem); }
.service-row ul { margin: 0; padding-left: 1.2rem; color: var(--muted); }
.service-row li + li { margin-top: .45rem; }

.process-grid, .value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.process-card, .value-card { padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-elevated); }
.process-card span { color: var(--accent); font-size: .75rem; font-weight: 850; }
.process-card h3, .value-card h3 { margin-top: 3rem; }

.founder-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 8vw, 7rem); align-items: center; }
.founder-photo { aspect-ratio: 4 / 5; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg-elevated); }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-copy h2 { margin-bottom: .4rem; }
.founder-title { color: var(--accent); font-weight: 800; }
.founder-copy .lede { margin-top: 2rem; }

.contact-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(3rem, 7vw, 6rem); }
.contact-email { color: var(--text); font-size: clamp(1.1rem, 2.5vw, 1.45rem); font-weight: 850; text-decoration-color: var(--accent); text-underline-offset: 6px; }
.contact-note { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.contact-note li { color: var(--muted); }
.project-form { padding: clamp(1.6rem, 4vw, 3rem); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg-elevated); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { margin-bottom: 1.2rem; }
.field-full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: .5rem; color: var(--muted-strong); font-size: .88rem; font-weight: 750; }
.field input, .field select, .field textarea { width: 100%; color: var(--text); border: 1px solid var(--line-strong); border-radius: 10px; background: #080d17; }
.field input, .field select { min-height: 50px; padding: .75rem .85rem; }
.field textarea { min-height: 180px; padding: .85rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); outline: 2px solid rgba(105,231,197,.25); outline-offset: 1px; }
.field-help, .privacy-note { margin: .55rem 0 0; color: var(--muted); font-size: .78rem; }
.privacy-note { margin: 1rem 0 1.5rem; }

.legal-content h2 { margin-top: 3.5rem; font-size: 1.8rem; }
.legal-content h3 { margin-top: 2rem; font-size: 1.2rem; }
.legal-content ul { color: var(--muted); }
.legal-meta { padding: 1rem 1.2rem; border-left: 3px solid var(--accent); background: var(--bg-elevated); }
.utility-page { display: grid; min-height: calc(100vh - 76px); padding: 5rem 0; place-items: center; }
.utility-card { max-width: 760px; text-align: center; }
.center-actions { justify-content: center; }
.utility-code { display: block; margin-bottom: .6rem; color: var(--accent); font-size: 5rem; font-weight: 900; letter-spacing: -.08em; }

.site-footer { padding: 4rem 0 2rem; border-top: 1px solid var(--line); background: #050810; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 3rem; }
.footer-brand p { max-width: 360px; }
.footer-brand .brand { margin-bottom: 1.2rem; }
.footer-column h2 { margin-bottom: 1rem; color: #fff; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-column a { display: block; width: fit-content; margin: .55rem 0; color: var(--muted); font-size: .88rem; text-decoration: none; }
.footer-column a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.footer-bottom p { margin: 0; font-size: .82rem; }
.footer-bottom-links { display: flex; gap: 1.2rem; }
.footer-bottom a { color: var(--muted); font-size: .82rem; text-decoration: none; }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-panel { position: fixed; inset: 76px 0 auto; display: grid; gap: 1rem; max-height: calc(100svh - 76px); padding: 1.25rem 20px 2rem; overflow-y: auto; border-bottom: 1px solid var(--line); background: #080d17; transform: translateY(-120%); visibility: hidden; transition: transform .25s ease, visibility .25s ease; }
  .nav-panel[data-open="true"] { transform: translateY(0); visibility: visible; }
  .nav-links { display: grid; }
  .nav-links a { padding: .65rem 0; font-size: 1.05rem; }
  .nav-panel .button { width: 100%; }
  .hero-grid, .intro-grid, .founder-section, .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-media { min-height: 520px; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .metric-grid div:nth-child(3), .metric-grid div:nth-child(4) { border-top: 1px solid var(--line); }
  .capability-card:nth-child(n) { grid-column: span 6; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-card:last-child { grid-column: 1 / -1; }
  .service-row { grid-template-columns: 90px 1fr; }
  .service-row > :last-child { grid-column: 2; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .container, .narrow { width: min(calc(100% - 32px), var(--max)); }
  .section-heading { grid-template-columns: 1fr; gap: 1rem; }
  .hero { padding-top: 4.5rem; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .hero-media { min-height: 420px; }
  .motion-orbit.one { width: 340px; height: 340px; left: calc(50% - 170px); }
  .motion-orbit.two { width: 230px; height: 230px; left: calc(50% - 115px); }
  .metric-grid { grid-template-columns: 1fr; }
  .metric-grid div { min-height: 110px; border-right: 1px solid var(--line); border-top: 1px solid var(--line); }
  .metric-grid div:first-child { border-top: 0; }
  .product-slide { grid-template-columns: 1fr; }
  .product-slide-copy { min-height: 350px; }
  .product-art { min-height: 300px; }
  .rotator-controls { align-items: flex-end; }
  .capability-grid, .work-grid, .process-grid, .value-grid { grid-template-columns: 1fr; }
  .capability-card:nth-child(n), .work-card:last-child { grid-column: auto; }
  .capability-card { min-height: 230px; }
  .work-card { min-height: 340px; }
  .cta-panel { grid-template-columns: 1fr; gap: 1.5rem; }
  .product-entry { grid-template-columns: 1fr; }
  .product-entry-art { min-height: 260px; }
  .service-row { grid-template-columns: 1fr; gap: .8rem; }
  .service-row > :last-child { grid-column: auto; }
  .service-row h2 { margin-bottom: .4rem; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 460px) {
  .brand-name { font-size: .96rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-media { min-height: 360px; }
  .motion-core { width: 200px; }
  .product-slide-copy { min-height: 370px; }
  .rotator-dots { gap: .35rem; }
  .rotator-dot { width: 26px; }
  .footer-grid { grid-template-columns: 1fr; }
}

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