:root {
  --bg: #070708;
  --surface: #0c0c0e;
  --surface-raised: #111114;
  --ink: #f4f2f7;
  --muted: #aaa6b0;
  --quiet: #6e6a75;
  --violet: #9b6cff;
  --line: rgba(255, 255, 255, .11);
  --line-strong: rgba(255, 255, 255, .2);
  --content: min(1280px, calc(100% - 48px));
}
* { box-sizing: border-box; }
html { background: var(--bg); color: var(--ink); scroll-behavior: smooth; scrollbar-color: var(--violet) #090909; }
body { margin: 0; overflow-x: hidden; background: var(--bg); color: var(--ink); font-family: "Outfit", Arial, sans-serif; line-height: 1.5; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--violet); outline-offset: 5px; }
::selection { background: var(--violet); color: var(--bg); }
.skip-link { position: fixed; z-index: 100; top: 10px; left: 10px; padding: 10px 14px; transform: translateY(-160%); background: var(--ink); color: var(--bg); }
.skip-link:focus { transform: none; }
.site-nav { position: fixed; z-index: 50; top: 20px; left: 50%; width: min(1216px, calc(100% - 48px)); height: 60px; display: grid; grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr); align-items: center; padding: 8px 12px; transform: translateX(-50%); border: 1px solid rgba(255, 255, 255, .05); border-radius: 999px; background: #171717; box-shadow: 0 10px 40px -10px rgba(0, 0, 0, .8); transition: top 260ms ease, width 260ms ease, background 260ms ease; }
body.is-scrolled .site-nav { top: 16px; width: min(1080px, calc(100% - 48px)); background: #131313; }
.brand { justify-self: start; min-width: 0; display: inline-flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; white-space: nowrap; }
.brand-mark { width: 40px; height: 40px; display: grid; place-items: center; flex: 0 0 40px; overflow: hidden; border-radius: 50%; background: #0d0d0d; }
.brand-mark img { width: 74%; height: 74%; object-fit: cover; filter: invert(1) contrast(1.2); mix-blend-mode: screen; }
.site-nav nav { display: flex; align-items: center; gap: 34px; }
.site-nav nav a { position: relative; padding: 10px 0; color: #d7d5da; font-size: 15px; font-weight: 500; transition: color 150ms cubic-bezier(.4, 0, .2, 1); }
.site-nav nav a::after { content: ""; position: absolute; right: 0; bottom: 6px; left: 0; height: 1px; transform: scaleX(0); transform-origin: left; background: var(--violet); transition: transform 150ms cubic-bezier(.4, 0, .2, 1); }
.site-nav nav a:hover, .site-nav nav a:focus-visible, .site-nav nav a[aria-current="page"] { color: #fff; }
.site-nav nav a:hover::after, .site-nav nav a:focus-visible::after, .site-nav nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav-role { justify-self: end; padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--violet); font-family: "Azeret Mono", monospace; font-size: 11px; line-height: 1; text-transform: uppercase; }
.nav-progress { position: absolute; right: 22px; bottom: 0; left: 22px; height: 1px; transform: scaleX(0); transform-origin: left; background: var(--violet); }
.cases-menu { position: relative; align-self: stretch; display: flex; align-items: center; }
.cases-trigger { position: relative; display: inline-flex; align-items: center; gap: 6px; padding: 10px 0; border: 0; background: none; color: #d7d5da; font: 500 15px/1 "Outfit", Arial, sans-serif; cursor: pointer; transition: color 150ms cubic-bezier(.4, 0, .2, 1); }
.cases-trigger > span { color: var(--violet); font-size: 12px; transition: transform 220ms cubic-bezier(.22, 1, .36, 1); }
.cases-trigger::after { content: ""; position: absolute; right: 0; bottom: 6px; left: 0; height: 1px; transform: scaleX(0); transform-origin: left; background: var(--violet); transition: transform 150ms cubic-bezier(.4, 0, .2, 1); }
.cases-trigger:hover, .cases-trigger:focus-visible, .cases-trigger.is-current { color: #fff; }
.cases-trigger:hover::after, .cases-trigger:focus-visible::after, .cases-trigger.is-current::after, .cases-menu.is-open .cases-trigger::after { transform: scaleX(1); }
.cases-dropdown { position: absolute; z-index: 80; top: calc(100% + 8px); left: 50%; width: 440px; padding: 10px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; transform: translate(-50%, 10px); border: 1px solid rgba(255, 255, 255, .1); border-radius: 16px; background: rgba(14, 14, 16, .985); box-shadow: 0 28px 80px rgba(0, 0, 0, .58); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 180ms ease, transform 260ms cubic-bezier(.22, 1, .36, 1), visibility 180ms; }
.cases-dropdown::before { content: ""; position: absolute; right: 0; bottom: 100%; left: 0; height: 12px; }
.site-nav nav .cases-dropdown a { min-width: 0; padding: 12px 13px; border-radius: 8px; color: var(--muted); font-size: 13px; line-height: 1.15; white-space: nowrap; transition: color 150ms ease, background 150ms ease; }
.site-nav nav .cases-dropdown a::after { display: none; }
.site-nav nav .cases-dropdown a:hover, .site-nav nav .cases-dropdown a:focus-visible, .site-nav nav .cases-dropdown a[aria-current="page"] { color: #fff; background: rgba(155, 108, 255, .13); }
.site-nav nav .cases-dropdown .cases-all { grid-column: 1 / -1; margin-bottom: 4px; padding: 13px; border-bottom: 1px solid rgba(255, 255, 255, .08); border-radius: 8px 8px 2px 2px; color: #fff; display: flex; justify-content: space-between; }
.cases-menu:focus-within:not(.is-dismissed) .cases-dropdown, .cases-menu.is-open .cases-dropdown { transform: translate(-50%, 0); opacity: 1; visibility: visible; pointer-events: auto; }
.cases-menu:focus-within:not(.is-dismissed) .cases-trigger > span, .cases-menu.is-open .cases-trigger > span { transform: rotate(180deg); }
@media (hover: hover) {
  .cases-menu:hover .cases-dropdown { transform: translate(-50%, 0); opacity: 1; visibility: visible; pointer-events: auto; }
  .cases-menu:hover .cases-trigger > span { transform: rotate(180deg); }
}
.cases-menu.is-dismissed .cases-dropdown { opacity: 0; visibility: hidden; pointer-events: none; }
.case-intro { position: relative; min-height: max(860px, 100svh); padding: 132px max(24px, calc((100vw - 1236px) / 2)) 0; overflow: hidden; isolation: isolate; perspective: 1400px; background: #070708; }
.case-intro::before { content: ""; position: absolute; z-index: -1; inset: 0; background: radial-gradient(ellipse 46% 42% at 27% 25%, rgba(255, 255, 255, .045), transparent 72%), radial-gradient(ellipse 28% 28% at 22% 28%, rgba(155, 108, 255, .045), transparent 76%); pointer-events: none; }
.case-intro::after { content: ""; position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; height: 24%; background: linear-gradient(to bottom, transparent, var(--bg)); pointer-events: none; }
.intro-copy { position: relative; z-index: 5; width: min(660px, 54vw); padding: 0; }
.intro-category { display: inline-flex; align-items: center; min-height: 36px; margin: 0 0 28px; padding: 0 13px; border: 1px solid rgba(155, 108, 255, .68); border-radius: 7px; color: var(--violet); font: 9px/1.4 "Azeret Mono", monospace; letter-spacing: .11em; text-transform: uppercase; }
.intro-category::before { content: "Case study / "; color: var(--quiet); }
.intro-copy h1 { max-width: 760px; margin: 0; font-size: clamp(64px, 6.3vw, 96px); font-weight: 500; letter-spacing: -.055em; line-height: .92; text-wrap: balance; }
.intro-summary { max-width: 560px; margin: 22px 0 0; color: #b8b4bd; font-size: clamp(17px, 1.35vw, 20px); line-height: 1.5; text-wrap: pretty; }
.intro-actions { margin-top: 32px; display: flex; align-items: center; gap: 14px; }
.primary-link { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 20px; border: 1px solid var(--violet); border-radius: 7px; background: var(--violet); color: #fff; font: 9px/1 "Azeret Mono", monospace; letter-spacing: .08em; text-transform: uppercase; transition: background 180ms ease, color 180ms ease, transform 180ms ease; }
.primary-link::after { content: " ↗"; margin-left: 8px; }
.primary-link:hover { background: var(--violet); border-color: var(--violet); color: #fff; transform: translateY(-2px); }
.primary-link:active { transform: translateY(0); }
.text-link { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 20px; border: 1px solid var(--line-strong); border-radius: 7px; color: #d0ccd5; font-size: 13px; transition: color 180ms ease, border-color 180ms ease, background 180ms ease; }
.text-link:hover { color: var(--ink); border-color: rgba(255, 255, 255, .38); background: rgba(255, 255, 255, .035); }
.intro-artifact { position: absolute; z-index: 1; top: 50%; right: -14vw; left: 17vw; height: 72%; margin: 0; overflow: hidden; border: 1px solid rgba(255, 255, 255, .17); border-radius: 14px; background: var(--surface-raised); box-shadow: 0 46px 120px rgba(0, 0, 0, .58); transform: rotateX(12deg) rotateZ(-6.5deg) skewX(-2deg); transform-origin: 56% 0; -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 76%, transparent 100%); mask-image: linear-gradient(to bottom, #000 0%, #000 76%, transparent 100%); }
.intro-artifact::before { content: ""; position: absolute; z-index: 2; top: 0; right: 0; left: 0; height: 38px; border-bottom: 1px solid var(--line); background: #111114; }
.intro-artifact::after { content: "•••"; position: absolute; z-index: 3; top: 9px; left: 14px; color: #5f5a67; font: 12px/1 "Azeret Mono", monospace; letter-spacing: 4px; }
.intro-artifact img { width: 100%; height: 100%; padding-top: 38px; object-fit: cover; object-position: top center; filter: saturate(.78) brightness(.72); transform: scale(1.035); transform-origin: top center; animation: intro-image 1.2s cubic-bezier(.16, 1, .3, 1) forwards; }
.intro-meta { display: none; }
.intro-meta div { min-width: 0; padding: 18px 20px; background: var(--bg); }
.intro-meta span { display: block; margin-bottom: 7px; color: var(--quiet); font: 8px/1.3 "Azeret Mono", monospace; letter-spacing: .1em; text-transform: uppercase; }
.intro-meta strong { font-size: 14px; font-weight: 500; }
.case-thesis { width: var(--content); margin: auto; padding: 168px 0 150px; }
.case-thesis::before { content: "The brief"; display: block; margin-bottom: 48px; color: var(--quiet); font: 9px/1 "Azeret Mono", monospace; letter-spacing: .12em; text-transform: uppercase; }
.case-thesis p { max-width: 1100px; margin: 0; font-size: clamp(42px, 5.8vw, 82px); font-weight: 500; letter-spacing: -.05em; line-height: .98; text-wrap: balance; }
.case-thesis em { color: var(--violet); font-style: normal; }
.deconstruct { position: relative; height: 360dvh; }
.deconstruct-stage { position: sticky; top: 0; height: 100dvh; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #09090b; }
.deconstruct-stage::before { content: "Build sequence"; position: absolute; z-index: 5; top: 34px; left: max(24px, calc((100vw - 1280px) / 2)); color: var(--quiet); font: 9px/1 "Azeret Mono", monospace; letter-spacing: .12em; text-transform: uppercase; }
.project-screen { position: absolute; inset: 7vh max(24px, calc((100vw - 1280px) / 2)) 7vh 38vw; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 12px; background: var(--surface-raised); box-shadow: 0 40px 100px rgba(0, 0, 0, .42); transition: left 700ms cubic-bezier(.22,1,.36,1), right 700ms cubic-bezier(.22,1,.36,1), width 700ms cubic-bezier(.22,1,.36,1), border-radius 700ms cubic-bezier(.22,1,.36,1); }
.project-screen::before { content: ""; position: absolute; z-index: 2; top: 0; right: 0; left: 0; height: 34px; border-bottom: 1px solid var(--line); background: linear-gradient(90deg, rgba(155, 108, 255, .18), transparent 28%), #111116; }
.project-screen img { position: absolute; inset: 34px 0 0; width: 100%; height: calc(100% - 34px); object-fit: cover; object-position: top center; transform: scale(1.025); transform-origin: center top; opacity: 0; will-change: transform, opacity; }
.project-screen img.is-active { opacity: 1; transform: scale(1); }
.project-screen.is-mobile { right: auto; left: calc(50% + 80px); width: min(390px, calc(100vw - 48px)); border-radius: 34px; }
.project-screen.is-mobile::before { border-radius: 33px 33px 0 0; }
.structure-overlay { position: absolute; z-index: 4; inset: 34px 0 0; opacity: 0; pointer-events: none; transition: opacity 320ms ease; }
.project-screen[data-state="2"] .structure-overlay { opacity: 1; }
.structure-overlay i { position: absolute; right: 6%; left: 6%; border: 1px solid rgba(155,108,255,.76); background: rgba(155,108,255,.08); }
.structure-overlay i:nth-child(1) { top: 8%; height: 18%; }
.structure-overlay i:nth-child(2) { top: 31%; height: 28%; }
.structure-overlay i:nth-child(3) { top: 64%; height: 24%; }
.structure-overlay::after { content: "PAGE STRUCTURE"; position: absolute; right: 6%; top: 3%; color: var(--violet); font: 8px/1 "Azeret Mono",monospace; letter-spacing: .12em; }
.story-copy { position: absolute; z-index: 4; left: max(24px, calc((100vw - 1280px) / 2)); top: 50%; width: min(390px, 29vw); transform: translateY(-50%); counter-reset: step; }
.story-step { position: absolute; top: 50%; left: 0; width: 100%; transform: translateY(calc(-50% + 28px)); opacity: 0; pointer-events: none; counter-increment: step; }
.story-step::before { content: "0" counter(step); display: block; margin-bottom: 28px; color: var(--violet); font: 10px/1 "Azeret Mono", monospace; }
.story-step.is-active { opacity: 1; transform: translateY(-50%); pointer-events: auto; }
.story-step h2 { margin: 0 0 22px; font-size: clamp(42px, 4vw, 62px); font-weight: 500; letter-spacing: -.045em; line-height: .94; text-wrap: balance; }
.story-step p { max-width: 34ch; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.55; }
.story-rail { position: absolute; z-index: 4; left: max(24px, calc((100vw - 1280px) / 2)); bottom: 7vh; width: min(390px, 29vw); display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.story-rail span { height: 2px; background: rgba(255, 255, 255, .15); transform-origin: left; transition: background 240ms ease; }
.story-rail span.is-active { background: var(--violet); }
.proof { width: var(--content); margin: auto; padding: 170px 0 160px; display: grid; grid-template-columns: minmax(220px, .34fr) minmax(0, 1fr); gap: 10vw; }
.proof-label { position: sticky; top: 110px; align-self: start; }
.proof-label p { margin: 0 0 12px; color: var(--quiet); font: 9px/1.3 "Azeret Mono", monospace; letter-spacing: .1em; text-transform: uppercase; }
.proof-label strong { font-size: 22px; font-weight: 500; }
.proof-content h2 { max-width: 860px; margin: 0 0 36px; font-size: clamp(48px, 5.2vw, 76px); font-weight: 500; letter-spacing: -.05em; line-height: .96; text-wrap: balance; }
.proof-content > p { max-width: 660px; margin: 0; color: var(--muted); font-size: 20px; line-height: 1.55; }
.proof-points { margin-top: 76px; display: grid; grid-template-columns: 1.08fr .92fr; gap: 1px; background: var(--line); }
.proof-point { min-height: 230px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; background: var(--surface); transition: background 220ms ease; }
.proof-point:hover { background: var(--surface-raised); }
.proof-point span { color: var(--quiet); font: 9px/1 "Azeret Mono", monospace; letter-spacing: .1em; text-transform: uppercase; }
.proof-point strong { max-width: 300px; font-size: 25px; font-weight: 500; line-height: 1.15; text-wrap: balance; }
.next-project { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.next-project a { width: var(--content); min-height: 300px; margin: auto; display: flex; align-items: center; justify-content: space-between; transition: color 220ms ease; }
.next-project span { color: var(--quiet); font: 9px/1 "Azeret Mono", monospace; letter-spacing: .1em; text-transform: uppercase; }
.next-project strong { font-size: clamp(52px, 7vw, 100px); font-weight: 500; letter-spacing: -.055em; }
.next-project strong::after { content: " →"; color: var(--violet); }
.next-project a:hover { color: var(--violet); }
.case-footer { width: var(--content); margin: auto; padding: 30px 0; display: flex; justify-content: space-between; color: var(--quiet); font-size: 12px; }
.case-index-main { padding-top: 116px; }
.index-hero { width: var(--content); min-height: 62dvh; margin: auto; padding: 8vh 0 72px; display: grid; grid-template-columns: 1.18fr .82fr; gap: 8vw; align-items: end; }
.index-hero p { margin: 0 0 24px; color: var(--violet); font: 10px/1.3 "Azeret Mono", monospace; letter-spacing: .12em; text-transform: uppercase; }
.index-hero h1 { max-width: 7ch; margin: 0; font-size: clamp(76px, 10vw, 148px); font-weight: 500; letter-spacing: -.065em; line-height: .82; }
.index-hero h1 em { color: var(--violet); font-style: normal; }
.index-hero > span { max-width: 34ch; padding-bottom: 8px; color: var(--muted); font-size: 20px; line-height: 1.55; }
.case-grid { width: var(--content); margin: 0 auto 130px; display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.case-card { position: relative; min-height: 520px; overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
.case-card:nth-child(1), .case-card:nth-child(4), .case-card:nth-child(5) { grid-column: span 7; }
.case-card:nth-child(2), .case-card:nth-child(3), .case-card:nth-child(6) { grid-column: span 5; }
.case-card:nth-child(7) { grid-column: 1 / -1; }
.case-card-media { position: absolute; inset: 0; overflow: hidden; }
.case-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7, 7, 8, .98), rgba(7, 7, 8, .08) 72%); }
.case-card img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: saturate(.72) brightness(.7); transition: transform 700ms cubic-bezier(.22, 1, .36, 1), filter 400ms ease; }
.case-card-copy { position: absolute; z-index: 2; right: 28px; bottom: 28px; left: 28px; display: grid; grid-template-columns: 1fr auto; gap: 10px 22px; align-items: end; }
.case-card-copy p { grid-column: 1 / -1; margin: 0; color: var(--violet); font: 9px/1 "Azeret Mono", monospace; letter-spacing: .1em; text-transform: uppercase; }
.case-card-copy h2 { margin: 0; font-size: clamp(42px, 4.8vw, 72px); font-weight: 500; letter-spacing: -.05em; line-height: .9; }
.case-card-copy span { max-width: 24ch; color: var(--muted); font-size: 14px; }
.case-card:hover img { transform: scale(1.045); filter: saturate(.9) brightness(.78); }
@keyframes intro-image { from { transform: scale(1.1); filter: saturate(.45) brightness(.5); } to { transform: scale(1.035); filter: saturate(.82) brightness(.78); } }
@media (max-width: 860px) {
  :root { --content: min(100% - 32px, 720px); }
  .site-nav { grid-template-columns: 1fr auto; }
  .site-nav nav { justify-self: end; gap: 20px; }
  .cases-trigger { font-size: 13px; }
  .nav-role { display: none; }
  .case-intro { min-height: max(860px, 100svh); height: auto; padding: 104px 20px 0; }
  .intro-copy { position: relative; right: auto; bottom: auto; left: auto; width: min(620px, 88vw); padding: 0; }
  .intro-copy h1 { max-width: 100%; font-size: clamp(58px, 11vw, 82px); }
  .intro-summary { font-size: 17px; }
  .intro-artifact { top: 50%; right: -26vw; bottom: auto; left: 16vw; height: 58%; min-height: 430px; max-height: none; transform: rotateX(10deg) rotateZ(-6deg) skewX(-1deg); }
  .intro-meta { display: none; }
  .case-thesis { padding: 104px 0 96px; }
  .case-thesis::before { margin-bottom: 32px; }
  .case-thesis p { font-size: clamp(38px, 10vw, 58px); }
  .deconstruct { height: auto; }
  .deconstruct-stage { position: relative; height: auto; padding: 78px 16px 88px; overflow: visible; background: var(--bg); }
  .deconstruct-stage::before { top: 32px; left: 16px; }
  .project-screen { position: sticky; z-index: 8; inset: auto; top: 76px; width: 100%; height: min(48svh, 430px); min-height: 300px; margin: 0 auto 28px; }
  .project-screen.is-mobile { left: auto; width: min(230px, 72vw); border-radius: 28px; }
  .story-copy { position: relative; left: auto; top: auto; width: auto; transform: none; }
  .story-step { position: relative; top: auto; left: auto; min-height: 100svh; padding: calc(min(48svh, 430px) + 72px) 0 42px; transform: none !important; opacity: .28; border-top: 1px solid var(--line); transition: opacity 320ms ease; }
  .story-step.is-active { opacity: 1; }
  .story-step::before { margin-bottom: 18px; }
  .story-step h2 { font-size: 42px; }
  .story-rail { display: none; }
  .proof { padding: 104px 0 96px; grid-template-columns: 1fr; gap: 56px; }
  .proof-label { position: static; }
  .proof-points { grid-template-columns: 1fr; }
  .next-project a { min-height: 220px; align-items: flex-start; justify-content: center; flex-direction: column; gap: 18px; }
  .case-footer { display: grid; gap: 8px; }
  .index-hero { min-height: auto; padding: 80px 0 72px; grid-template-columns: 1fr; gap: 42px; }
  .index-hero h1 { font-size: clamp(72px, 20vw, 112px); }
  .index-hero > span { font-size: 17px; }
  .case-grid { grid-template-columns: 1fr; margin-bottom: 80px; }
  .case-card:nth-child(n) { grid-column: auto; min-height: 460px; }
}
@media (max-width: 480px) {
  :root { --content: calc(100% - 24px); }
  .site-nav, body.is-scrolled .site-nav { top: 12px; right: 12px; left: 12px; width: auto; height: 52px; grid-template-columns: minmax(0, 1fr) auto; padding: 5px 7px; transform: none; }
  body.is-scrolled .site-nav { top: 10px; }
  .site-nav nav { justify-self: end; gap: 10px; padding-right: 5px; }
  .site-nav nav a { font-size: 13px; }
  .site-nav .brand-name { display: block; font-size: 13px; white-space: nowrap; }
  .site-nav .brand { gap: 8px; }
  .brand-mark { width: 40px; height: 40px; flex-basis: 40px; }
  .nav-progress { right: 16px; left: 16px; }
  .cases-dropdown { position: fixed; top: 72px; right: 12px; left: 12px; width: auto; transform: translateY(10px); }
  .cases-menu:focus-within:not(.is-dismissed) .cases-dropdown, .cases-menu.is-open .cases-dropdown { transform: translateY(0); }
  .site-nav nav .cases-dropdown a { font-size: 12px; }
  .case-intro { min-height: 900px; padding: 96px 12px 0; }
  .intro-copy { width: 100%; padding: 0; }
  .intro-copy h1 { font-size: clamp(49px, 14.5vw, 68px); }
  .intro-category { min-height: 32px; margin-bottom: 20px; padding-inline: 10px; font-size: 8px; }
  .intro-summary { margin-top: 15px; font-size: 15px; }
  .intro-actions { margin-top: 18px; }
  .intro-actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .primary-link { width: 100%; }
  .intro-artifact { top: 550px; right: -54vw; left: 12px; height: 410px; min-height: 0; transform: rotateX(8deg) rotateZ(-5deg); transform-origin: 50% 0; }
  .proof-content > p, .story-step p { font-size: 17px; }
  .proof-point { min-height: 185px; }
  .next-project strong { font-size: 48px; }
  .case-card { min-height: 410px !important; }
  .case-card-copy { right: 20px; bottom: 20px; left: 20px; grid-template-columns: 1fr; }
  .case-card-copy h2 { font-size: 46px; }
}
@media (max-width: 480px) and (hover: hover) {
  .cases-menu:hover .cases-dropdown { transform: translateY(0); }
}
@media (max-width: 340px) {
  .site-nav nav { gap: 7px; padding-right: 2px; }
  .site-nav nav a { font-size: 10px; }
  .site-nav .brand-name { font-size: 11px; }
  .cases-trigger { gap: 3px; font-size: 10px; }
  .cases-trigger > span { font-size: 9px; }
  .cases-dropdown { top: 68px; padding: 7px; }
  .site-nav nav .cases-dropdown a { padding: 10px 9px; font-size: 10px; }
  .case-intro { min-height: 880px; }
  .intro-artifact { top: 535px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .intro-artifact img { animation: none; }
  .primary-link, .next-project a, .case-card img { transition: none; }
  .deconstruct { height: auto; }
  .deconstruct-stage { position: relative; height: auto; padding: 90px 4vw; }
  .project-screen { position: relative; inset: auto; height: 70vw; max-height: 760px; margin: 0 0 70px; }
  .story-copy { position: relative; left: auto; top: auto; width: var(--content); margin: auto; transform: none; }
  .story-step { position: relative; top: auto; padding: 40px 0; transform: none !important; opacity: 1 !important; border-top: 1px solid var(--line); }
  .story-rail { display: none; }
}
