@font-face { font-family: Archivo; font-style: normal; font-weight: 500 800; font-display: swap; src: url('/assets/fonts/archivo-latin.woff2') format('woff2'); }
@font-face { font-family: Inter; font-style: normal; font-weight: 400 700; font-display: swap; src: url('/assets/fonts/inter-latin.woff2') format('woff2'); }

:root {
  --ink: #0b0b0c;
  --paper: #f1eee7;
  --panel: #faf8f2;
  --muted: #5c5954;
  --line: rgba(11, 11, 12, 0.2);
  --blue: #1947ff;
  --coral: #ff563f;
  --yellow: #ffd126;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(11, 11, 12, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 11, 12, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  color: var(--ink);
  font: 400 16px/1.55 Inter, sans-serif;
}

body.menu-is-open { overflow: hidden; }
::selection { background: var(--coral); color: var(--ink); }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  margin-bottom: 0;
  font-family: Archivo, sans-serif;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.ui-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.header-cta .ui-icon, .button .ui-icon { width: 17px; height: 17px; }
.text-link .ui-icon, .project-link .ui-icon { width: 16px; height: 16px; color: var(--blue); transition: color 150ms ease, transform 150ms var(--ease); }
.text-link:hover .ui-icon, .project-link:hover .ui-icon { color: var(--coral); transform: translate(2px, -2px); }
.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
}
.skip-link:focus { transform: none; }
.shell { width: min(1320px, calc(100% - 56px)); margin-inline: auto; }
.section { padding-block: 104px; }

.glass {
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-right-color: rgba(73, 94, 144, 0.24);
  border-bottom-color: rgba(11, 11, 12, 0.25);
  background:
    radial-gradient(circle at var(--glass-x, 30%) -40%, rgba(255, 255, 255, 0.98), transparent 44%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.34) 58%, rgba(87, 125, 255, 0.16));
  box-shadow: inset 0 1px 0 #fff, 0 18px 45px rgba(17, 20, 29, 0.1);
  backdrop-filter: blur(26px) saturate(155%);
  -webkit-backdrop-filter: blur(26px) saturate(155%);
}

.site-header {
  --nav-x: 50%;
  --scroll-progress: 0;
  position: sticky;
  z-index: 90;
  top: 13px;
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(1360px, calc(100% - 28px));
  height: 66px;
  margin: 13px auto 0;
  padding: 0 11px 0 17px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.98);
  border-right-color: rgba(65, 84, 133, 0.25);
  border-bottom-color: rgba(11, 11, 12, 0.26);
  border-radius: 18px;
  background:
    radial-gradient(circle at var(--nav-x) -55%, #fff, rgba(255, 255, 255, 0.35) 38%, transparent 58%),
    linear-gradient(138deg, rgba(250, 248, 241, 0.8), rgba(235, 238, 246, 0.58));
  box-shadow: inset 0 1px #fff, 0 15px 42px rgba(17, 20, 29, 0.15);
  backdrop-filter: blur(30px) saturate(170%);
  -webkit-backdrop-filter: blur(30px) saturate(170%);
  transition: width 180ms var(--ease), height 180ms var(--ease), top 180ms var(--ease);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 17px;
  bottom: 2px;
  width: calc((100% - 34px) * var(--scroll-progress));
  max-width: calc(100% - 34px);
  height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--yellow), var(--blue));
}
.site-header.is-scrolled { top: 8px; width: min(1180px, calc(100% - 22px)); height: 58px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand img { width: 31px; height: 31px; }
.brand span { display: grid; gap: 3px; }
.brand b { font: 800 20px/0.86 Archivo, sans-serif; letter-spacing: -0.065em; }
.brand small { color: #57544f; font: 700 8px/1 Inter, sans-serif; letter-spacing: 0.14em; }
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-left: auto;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-bottom-color: rgba(11, 11, 12, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
}
.desktop-nav a { padding: 9px 11px; border-radius: 8px; font-size: 13px; font-weight: 700; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { background: var(--ink); color: #fff; }
.header-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 150ms var(--ease), box-shadow 150ms var(--ease), background-color 150ms ease;
}
.header-cta { min-height: 44px; padding-inline: 17px; background: var(--ink); color: #fff; font-size: 13px; }
.button-dark { background: var(--ink); color: #fff; }
.button-light { background: #fff; color: var(--ink); }
.button-ghost {
  border-color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: inset 0 1px #fff, 0 8px 24px rgba(11, 11, 12, 0.08);
  backdrop-filter: blur(18px);
}
.header-cta:hover, .button:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--coral); }
.menu-button, .mobile-menu, .menu-backdrop { display: none; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: stretch;
  gap: 24px;
  min-height: calc(100vh - 92px);
  padding-top: 70px;
}
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 40px 3.5vw 46px 0; }
.hero-copy::before { content: ""; width: 42px; height: 10px; margin-bottom: 26px; background: linear-gradient(90deg, var(--coral) 50%, var(--yellow) 50%); }
.hero h1 { max-width: 710px; font-size: clamp(64px, 7vw, 108px); }
.hero h1 em { display: block; color: var(--blue); font-style: normal; }
.hero-copy > p { max-width: 590px; margin: 28px 0 0; color: var(--muted); font-size: 19px; }
.button-row { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 32px; }
.hero-media { position: relative; min-height: 610px; margin: 0; overflow: hidden; border: 1px solid var(--ink); box-shadow: 9px 9px 0 var(--ink); }
.hero-media > picture, .visual-statement > picture, .project-video > picture, .project-reel-item > picture { display: contents; }
.hero-media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 70% center; transform: scale(1.03); }
.hero-cinema::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.24), transparent 65%); transform: translateX(-120%); animation: hero-light 5s 0.8s var(--ease) 1; }
.hero-cinema-screens img { position: absolute; width: 33%; border: 1px solid var(--ink); box-shadow: 7px 7px 0 rgba(11, 11, 12, 0.75); object-fit: cover; object-position: top; }
.hero-cinema-screens img:nth-child(1) { right: 6%; bottom: 8%; height: 33%; animation: screen-enter 700ms 180ms var(--ease) both; }
.hero-cinema-screens img:nth-child(2) { left: 7%; top: 10%; height: 29%; animation: screen-enter 700ms 330ms var(--ease) both; }
.hero-cinema-screens img:nth-child(3) { right: 14%; top: 14%; height: 25%; animation: screen-enter 700ms 480ms var(--ease) both; }
@keyframes screen-enter { from { opacity: 0; transform: translateY(28px); } }
@keyframes hero-light { 70%, 100% { transform: translateX(120%); } }
.hero-proof { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 0; background: var(--ink); color: #fff; }
.hero-proof span { padding: 16px; border-right: 1px solid rgba(255, 255, 255, 0.22); text-align: center; font-size: 11px; font-weight: 700; }
.hero-proof span:last-child { border: 0; background: var(--blue); }

.section-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 36px; padding-bottom: 28px; border-bottom: 1px solid var(--ink); }
.section-head h2, .sticky-copy h2, .process-band h2, .page-intro h1, .contact-hero h1 { color: var(--blue); font-size: clamp(48px, 6.5vw, 88px); }
.text-link, .project-link, .back-link { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; }
.text-link { padding-bottom: 4px; border-bottom: 1px solid currentColor; }
.text-link:hover, .project-link:hover { color: var(--blue); }

.project-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.project-card { position: relative; grid-column: span 4; overflow: hidden; border: 1px solid var(--ink); border-radius: 6px; background: var(--panel); transition: transform 170ms var(--ease), box-shadow 170ms var(--ease); }
.project-grid .project-card:nth-child(1) { grid-column: span 7; }
.project-grid .project-card:nth-child(2) { grid-column: span 5; }
.project-grid .project-card:nth-child(6), .project-grid .project-card:nth-child(7) { grid-column: span 6; }
.project-card::after { content: ""; position: absolute; z-index: 3; top: 12px; right: 22px; width: 58px; height: 12px; background: color-mix(in srgb, var(--tone, var(--blue)) 82%, #fff); transform: rotate(2deg); }
.project-card:hover { transform: translate(-4px, -4px); box-shadow: 8px 8px 0 var(--ink); }
.project-visual { position: relative; height: 320px; margin: 9px; overflow: hidden; border: 1px solid var(--ink); background: #ddd6cb; }
.project-grid .project-card:nth-child(-n + 2) .project-visual { height: 415px; }
.project-visual img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 6s linear; }
.project-card.is-playing .project-visual img, .project-card:hover .project-visual img { transform: scale(1.04) translateY(-2%); }
.project-chrome { position: absolute; z-index: 2; top: 0; right: 0; left: 0; display: flex; align-items: center; gap: 5px; height: 27px; padding: 0 10px; border-bottom: 1px solid rgba(11, 11, 12, 0.28); background: rgba(247, 244, 237, 0.88); backdrop-filter: blur(12px); }
.project-chrome span { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
.project-chrome span:nth-child(2) { background: var(--yellow); }
.project-chrome span:nth-child(3) { background: var(--blue); }
.project-chrome i { width: 34%; height: 6px; margin-left: auto; border: 1px solid rgba(11, 11, 12, 0.2); border-radius: 20px; background: rgba(255, 255, 255, 0.7); }
.project-copy { padding: 16px 20px 22px; }
.project-copy h3 { font-size: 30px; }
.project-copy p { margin: 10px 0 0; color: var(--muted); font-size: 14px; }
.project-actions { display: flex; flex-wrap: wrap; gap: 20px; }
.project-link { margin-top: 15px; font-size: 13px; }
.project-card-compact .project-copy { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.project-card-compact .project-link { flex: 0 0 auto; margin-top: 0; }
.tone-blue { --tone: #1947ff; }
.tone-lime { --tone: #71d84a; }
.tone-orange { --tone: #ff7a32; }
.tone-red { --tone: #ef4545; }
.tone-violet { --tone: #7657ee; }
.tone-gold { --tone: #d99b22; }
.tone-cyan { --tone: #25b6c9; }

.visual-statement { position: relative; height: 660px; margin-top: 35px; overflow: hidden; border: 1px solid var(--ink); box-shadow: 8px 8px 0 var(--ink); }
.visual-statement > img { width: 100%; height: 100%; object-fit: cover; }
.visual-statement > div { position: absolute; right: 24px; bottom: 24px; width: min(490px, calc(100% - 48px)); padding: 30px; border-radius: 14px; }
.visual-statement h2 { font-size: clamp(42px, 4.4vw, 66px); }
.visual-statement p { margin: 17px 0 0; color: var(--muted); }
.visual-statement-reverse { border-color: var(--blue); box-shadow-color: var(--blue); box-shadow: 8px 8px 0 var(--blue); }
.visual-statement-reverse > div { right: auto; left: 24px; }

.split-section { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 100px; padding-block: 120px; background: var(--ink); color: #fff; box-shadow: 0 0 0 100vmax var(--ink); clip-path: inset(0 -100vmax); }
.sticky-copy { position: sticky; top: 115px; align-self: start; }
.sticky-copy h2 { color: #fff; }
.service-stage { position: relative; display: grid; min-height: 220px; margin-top: 34px; padding: 25px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.55); background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(25, 71, 255, 0.3)); backdrop-filter: blur(22px); }
.service-stage span { color: var(--yellow); font-weight: 700; }
.service-stage strong { align-self: end; max-width: 350px; font: 700 42px/0.95 Archivo, sans-serif; letter-spacing: -0.05em; }
.service-stage i { position: absolute; right: -35px; bottom: -35px; width: 115px; height: 115px; border: 18px solid var(--coral); border-radius: 50%; }
.service-stack { display: grid; gap: 11px; }
.service-row { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 17px; padding: 25px 18px; border: 1px solid #fff; border-radius: 5px; background: var(--paper); color: var(--ink); transition: transform 160ms var(--ease), box-shadow 160ms var(--ease); }
.service-row:hover { transform: translate(-4px, -4px); box-shadow: 7px 7px 0 var(--blue); }
.service-row > span { color: var(--coral); font-size: 12px; font-weight: 700; }
.service-row h3 { font-size: 30px; }
.service-row p { margin: 7px 0 0; color: var(--muted); }
.service-row b { font-size: 22px; }

.process-band { position: relative; padding-block: 110px; background: var(--blue); color: #fff; box-shadow: 0 0 0 100vmax var(--blue); clip-path: inset(0 -100vmax); }
.process-band h2 { color: #fff; }
.process-band ol { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin: 48px 0 0; padding: 0; list-style: none; }
.process-band ol::before { content: ""; position: absolute; top: 0; left: 0; width: 0; height: 3px; background: #fff; transition: width 1s var(--ease); }
.process-band.is-drawn ol::before { width: 100%; }
.process-band li { padding-top: 28px; }
.process-band li span { color: #fff; font-size: 12px; font-weight: 800; }
.process-band h3 { margin-top: 30px; font-size: 30px; }
.process-band p { margin: 12px 0 0; color: rgba(255, 255, 255, 0.82); }

.page-intro { position: relative; padding: 112px 0 58px; }
.page-intro::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 6px; background: linear-gradient(90deg, var(--blue) 78%, var(--coral) 78% 91%, var(--yellow) 91%); }
.page-intro h1 { max-width: 1120px; }
.page-intro > p { max-width: 740px; margin: 24px 0 0; color: var(--muted); font-size: 19px; }
.filter-bar { display: inline-flex; gap: 5px; margin-top: 34px; padding: 6px; border-radius: 12px; }
.filter-bar button { padding: 10px 13px; border: 0; border-radius: 7px; background: transparent; font-weight: 700; cursor: pointer; }
.filter-bar button span { margin-left: 6px; color: var(--muted); font-size: 11px; }
.filter-bar button.is-active { background: var(--ink); color: #fff; }
.filter-bar button.is-active span { color: #cbd0d7; }
.project-card[hidden] { display: none; }

.service-cards, .support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-detail, .support-grid article, .price-card { position: relative; padding: 34px; overflow: hidden; border: 1px solid var(--ink); border-radius: 5px; background: var(--panel); }
.service-detail::before, .price-card::before { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 7px; background: var(--blue); }
.service-detail:nth-child(2n)::before, .price-card:nth-child(2n)::before { background: var(--coral); }
.service-detail:nth-child(3n)::before, .price-card:nth-child(3n)::before { background: var(--yellow); }
.service-title { display: flex; align-items: center; gap: 22px; }
.service-title span, .support-grid article > span, .price-card > span { color: var(--blue); font-size: 12px; font-weight: 800; }
.service-title h2, .support-grid h2, .price-card h2 { font-size: 38px; }
.service-detail > p, .support-grid p, .price-card > p { margin: 18px 0 0; color: var(--muted); }
.service-detail ul, .price-card ul, .timeline ul { margin: 24px 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.service-detail li, .price-card li, .timeline li { padding: 11px 0; border-bottom: 1px solid var(--line); }
.service-detail li::before, .price-card li::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 10px;
  background: var(--blue);
  vertical-align: -2px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='black' stroke-width='1.55' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='black' stroke-width='1.55' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.capability-table { border-top: 1px solid var(--ink); }
.capability-row { display: grid; grid-template-columns: 0.7fr 1fr 1.35fr 0.8fr; border-bottom: 1px solid var(--ink); }
.capability-row span { padding: 17px 12px; border-right: 1px solid var(--line); }
.capability-row span:first-child { font-family: Archivo, sans-serif; font-weight: 700; }
.capability-row span:last-child { border-right: 0; }
.capability-head { background: var(--ink); color: #fff; font-size: 12px; font-weight: 700; }

.timeline article { display: grid; grid-template-columns: 95px 1fr; padding: 50px 0; border-top: 1px solid var(--ink); }
.timeline article > span { color: var(--blue); font-size: 12px; font-weight: 800; }
.timeline article > div { display: grid; grid-template-columns: 1fr 1fr; gap: 35px; }
.timeline h2 { font-size: 44px; }
.timeline p { color: var(--muted); font-size: 17px; }
.timeline article { opacity: 0.25; transform: translateY(14px); transition: opacity 350ms ease, transform 350ms var(--ease); }
.timeline article.is-visible { opacity: 1; transform: none; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card .button { width: 100%; margin-top: 8px; }
.price-card.featured { background: var(--blue); color: #fff; }
.price-card.featured > span, .price-card.featured > p { color: #fff; }
.price-card.featured .button { background: #fff; color: var(--ink); }
.narrow-note { margin-bottom: 100px; padding: 32px; border-radius: 14px; }
.narrow-note h2 { font-size: 34px; }
.narrow-note > div { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 24px; }
.narrow-note p { margin: 0; padding: 12px 0; border-top: 1px solid var(--line); }

.faq-list { max-width: 960px; }
.faq-list details { border-top: 1px solid var(--ink); }
.faq-list details:last-child { border-bottom: 1px solid var(--ink); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; font: 700 24px/1.1 Archivo, sans-serif; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .ui-icon { width: 24px; height: 24px; color: var(--blue); transition: color 160ms ease, transform 160ms ease; }
.faq-list details[open] summary .ui-icon { color: var(--coral); transform: rotate(45deg); }
.faq-list details p { max-width: 720px; margin: 0; padding: 0 0 28px; color: var(--muted); font-size: 17px; }

.contact-hero { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 75px; padding: 112px 0; }
.contact-hero h1 { color: var(--ink); }
.contact-hero > div > p { margin-top: 22px; color: var(--muted); font-size: 19px; }
.direct-contact { display: grid; margin-top: 34px; }
.direct-contact a { padding: 17px 0; border-top: 1px solid var(--ink); }
.direct-contact span { display: block; color: var(--muted); font-size: 11px; font-weight: 700; }
.direct-contact b { display: block; margin-top: 4px; font-size: 19px; }
.planner { min-height: 590px; padding: 30px; border-radius: 15px; }
.planner-top { display: flex; justify-content: space-between; gap: 20px; }
.planner-top strong { font: 700 23px/1 Archivo, sans-serif; }
.planner-top span { font-size: 12px; font-weight: 700; }
.planner-progress { height: 3px; margin: 18px 0 36px; background: rgba(11, 11, 12, 0.15); }
.planner-progress i { display: block; width: 20%; height: 100%; background: var(--blue); transition: width 240ms var(--ease); }
.planner-step { display: none; min-width: 0; margin: 0; padding: 0; border: 0; }
.planner-step.is-active { display: block; animation: step-in 240ms var(--ease) both; }
@keyframes step-in { from { opacity: 0; transform: translateX(18px); } }
.planner-step legend { margin-bottom: 25px; font: 700 clamp(31px, 3vw, 44px)/1 Archivo, sans-serif; letter-spacing: -0.05em; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.choice-grid label { position: relative; cursor: pointer; }
.choice-grid input { position: absolute; opacity: 0; }
.choice-grid label span { display: flex; align-items: center; min-height: 66px; padding: 13px 15px; border: 1px solid var(--ink); background: rgba(255, 255, 255, 0.55); font-weight: 700; }
.choice-grid input:checked + span { background: var(--blue); color: #fff; }
.choice-grid input:focus-visible + span { outline: 3px solid var(--coral); outline-offset: 3px; }
.choice-grid-small label span { min-height: 58px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid label { display: grid; gap: 7px; font-size: 12px; font-weight: 700; }
.form-wide { grid-column: 1 / -1; }
.form-grid input, .form-grid textarea { width: 100%; padding: 13px; border: 1px solid var(--ink); border-radius: 0; background: rgba(255, 255, 255, 0.72); color: var(--ink); }
.planner-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 30px; }
.planner > p { margin: 16px 0 0; color: var(--muted); font-size: 12px; }

.studio-layout { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 55px; align-items: center; }
.studio-layout figure { height: 620px; margin: 0; overflow: hidden; border: 1px solid var(--ink); box-shadow: 8px 8px 0 var(--ink); }
.studio-layout figure img { width: 100%; height: 100%; object-fit: cover; }
.studio-layout h2, .studio-principles > h2 { font-size: clamp(44px, 5vw, 70px); }
.studio-layout p { margin-top: 24px; color: var(--muted); font-size: 18px; }
.studio-layout dl { margin: 38px 0 0; border: 1px solid var(--ink); background: rgba(255,255,255,.42); box-shadow: 6px 6px 0 var(--blue); }
.studio-layout dl div { display: grid; grid-template-columns: minmax(135px, .72fr) minmax(0, 1.28fr); align-items: center; gap: 30px; min-height: 66px; padding: 15px 20px; border-bottom: 1px solid var(--ink); }
.studio-layout dl div:last-child { border-bottom: 0; }
.studio-layout dt { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.studio-layout dd { min-width: 0; margin: 0; font: 700 17px/1.3 Archivo, sans-serif; overflow-wrap: anywhere; }
.studio-principles > div { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 35px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.studio-principles article { padding: 28px; border-right: 1px solid var(--ink); }
.studio-principles article:last-child { border: 0; }
.studio-principles span, .support-grid article > span { color: var(--blue); font-weight: 800; font-size: 12px; }
.studio-principles h3 { margin-top: 40px; font-size: 29px; }
.studio-principles p { margin: 13px 0 0; color: var(--muted); }
.support-grid article { min-height: 230px; }
.support-grid h2 { margin-top: 45px; }
.contact-strip { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 105px; padding: 38px; background: var(--yellow); border: 1px solid var(--ink); }
.contact-strip h2 { font-size: clamp(34px, 4vw, 54px); }

.case-hero { display: grid; grid-template-columns: 0.76fr 1.24fr; gap: 55px; align-items: center; min-height: 710px; padding-block: 80px; }
.back-link { margin-bottom: 28px; }
.case-hero h1 { font-size: clamp(62px, 7vw, 108px); }
.case-hero > div > p { max-width: 520px; margin: 26px 0 0; color: var(--muted); font-size: 18px; }
.case-preview { position: relative; height: 540px; overflow: hidden; border: 1px solid var(--ink); background: var(--ink); box-shadow: 9px 9px 0 var(--tone); }
.case-preview img { width: 100%; height: 100%; object-fit: cover; object-position: top; animation: preview-drift 10s ease-in-out infinite alternate; }
@keyframes preview-drift { to { transform: scale(1.04) translateY(-2.5%); } }
.case-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.case-facts article { padding: 40px; }
.case-facts article:first-child { border-right: 1px solid var(--ink); }
.case-facts h2, .case-features h2 { font-size: 45px; }
.case-facts p { max-width: 530px; margin: 18px 0 0; color: var(--muted); font-size: 18px; }
.case-detail { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 55px; align-items: start; padding-block: 110px; }
.case-device { height: 720px; overflow: hidden; border: 1px solid var(--ink); background: var(--ink); box-shadow: 8px 8px 0 var(--blue); }
.case-device img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.case-features { position: sticky; top: 110px; }
.case-features ol { margin: 30px 0 0; padding: 0; border-top: 1px solid var(--ink); list-style: none; }
.case-features li { display: grid; grid-template-columns: 50px 1fr; padding: 17px 0; border-bottom: 1px solid var(--ink); font-weight: 700; }
.case-features li span { color: var(--blue); font-size: 12px; }
.next-project { background: var(--blue); color: #fff; }
.next-project a { display: grid; grid-template-columns: 130px 1fr auto; align-items: center; gap: 25px; min-height: 180px; }
.next-project a > span { font-size: 13px; font-weight: 700; }
.next-project strong { font: 700 clamp(42px, 5vw, 70px)/1 Archivo, sans-serif; letter-spacing: -0.055em; }
.next-project .ui-icon { width: 36px; height: 36px; }

.showreel { width: 100%; max-width: none; height: 100%; max-height: none; margin: 0; padding: 0; border: 0; background: #080809; color: #fff; }
.showreel::backdrop { background: rgba(0, 0, 0, 0.82); }
.showreel-shell { display: grid; grid-template-rows: auto 1fr auto; width: 100%; height: 100%; padding: 24px; }
.showreel-close { justify-self: end; padding: 10px 13px; border: 1px solid rgba(255, 255, 255, 0.4); background: transparent; color: #fff; cursor: pointer; }
.showreel-stage { position: relative; min-height: 0; margin-block: 20px; overflow: hidden; }
.showreel-slide { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; pointer-events: none; transition: opacity 300ms ease, transform 400ms var(--ease); transform: scale(0.98); }
.showreel-slide.is-active { opacity: 1; transform: none; pointer-events: auto; }
.showreel-slide img { width: min(1120px, 90vw); height: min(68vh, 720px); border: 1px solid rgba(255, 255, 255, 0.45); object-fit: cover; object-position: top; }
.showreel-slide h2 { position: absolute; left: max(5vw, 25px); bottom: 18px; padding: 12px 15px; background: var(--blue); font-size: clamp(32px, 5vw, 68px); }
.showreel-controls { display: grid; grid-template-columns: auto auto auto 1fr; align-items: center; gap: 12px; }
.showreel-controls button { width: 46px; height: 46px; border: 1px solid rgba(255, 255, 255, 0.35); background: transparent; color: #fff; cursor: pointer; }
.showreel-controls button .ui-icon { width: 20px; height: 20px; }
.showreel-controls > span { min-width: 60px; text-align: center; font-size: 12px; }
.showreel-controls a { justify-self: end; font-weight: 700; }

.project-reel { overflow: hidden; border-block: 1px solid rgba(255, 255, 255, 0.22); background: #070708; }
.project-reel-track { display: flex; width: max-content; animation: project-reel 42s linear infinite; }
.project-reel-group { display: flex; gap: 12px; padding: 13px 12px 13px 0; }
.project-reel-item { position: relative; flex: 0 0 320px; width: 320px; height: 195px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.3); background: #111; }
.project-reel-item img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.project-reel-item::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(0, 0, 0, 0.8)); }
.project-reel-item span { position: absolute; z-index: 1; left: 12px; bottom: 10px; color: #fff; font: 700 13px Archivo, sans-serif; }
.project-reel:hover .project-reel-track, .project-reel:focus-within .project-reel-track { animation-play-state: paused; }
@keyframes project-reel { to { transform: translateX(-50%); } }

.site-footer { margin-top: 0; overflow: hidden; background: var(--ink); color: #fff; }
.footer-lead, .footer-grid, .footer-bottom, .footer-wordmark { width: min(1320px, calc(100% - 56px)); margin-inline: auto; }
.footer-lead { display: flex; align-items: end; justify-content: space-between; gap: 25px; padding: 82px 0 42px; border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
.footer-lead h2 { font-size: clamp(48px, 6.5vw, 88px); }
.footer-wordmark { padding: 25px 0 40px; border-bottom: 1px solid rgba(255, 255, 255, 0.2); font: 800 clamp(120px, 23vw, 340px)/0.7 Archivo, sans-serif; letter-spacing: -0.1em; white-space: nowrap; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.7fr 1fr; gap: 60px; padding: 50px 0; }
.brand-footer img { filter: invert(1) brightness(4); }
.brand-footer small { color: #a8b0bb; }
.footer-grid p { max-width: 380px; margin: 18px 0 0; color: #aeb6c1; }
.footer-grid nav, .footer-contact { display: grid; align-content: start; gap: 9px; }
.footer-grid nav a, .footer-contact a { color: #d2d6dc; }
.footer-contact a { font-size: 18px; }
.footer-bottom { display: flex; justify-content: space-between; padding: 20px 0; border-top: 1px solid rgba(255, 255, 255, 0.2); color: #939ca8; font-size: 12px; }

.reveal { opacity: 0; transform: translateY(15px); transition: opacity 340ms ease, transform 340ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: 170ms ease both fade-out; }
::view-transition-new(root) { animation: 260ms var(--ease) both fade-in; }
@keyframes fade-out { to { opacity: 0; } }
@keyframes fade-in { from { opacity: 0; transform: translateY(8px); } }

@media (max-width: 1120px) {
  .desktop-nav a { padding-inline: 8px; }
}

@media (max-width: 980px) {
  .desktop-nav, .header-cta { display: none; }
  .site-header { overflow: visible; }
  .menu-button { display: grid; place-content: center; gap: 5px; width: 46px; height: 46px; margin-left: auto; padding: 0; border: 0; border-radius: 11px; background: var(--ink); cursor: pointer; }
  .menu-button span { display: block; width: 21px; height: 2px; background: #fff; transform-origin: center; transition: transform 180ms ease, opacity 130ms ease; }
  .menu-button[aria-expanded="true"] { background: var(--blue); }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .menu-backdrop:not([hidden]) { display: block; position: fixed; z-index: 70; inset: 0; background: rgba(5, 5, 7, 0.56); opacity: 0; backdrop-filter: blur(5px); transition: opacity 180ms ease; }
  .menu-backdrop.is-open { opacity: 1; }
  .mobile-menu:not([hidden]) {
    position: fixed;
    z-index: 80;
    inset: 0;
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    padding: 98px 16px max(22px, env(safe-area-inset-bottom));
    overflow-y: auto;
    background:
      linear-gradient(90deg, var(--blue) 0 7px, transparent 7px),
      linear-gradient(rgba(11, 11, 12, 0.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(11, 11, 12, 0.045) 1px, transparent 1px),
      rgba(243, 240, 232, 0.97);
    background-size: auto, 64px 64px, 64px 64px, auto;
    opacity: 0;
    transform: translateY(-14px);
    backdrop-filter: blur(28px) saturate(140%);
    transition: opacity 200ms ease, transform 220ms var(--ease);
  }
  .mobile-menu.is-open { opacity: 1; transform: none; }
  .mobile-menu nav { display: grid; border-bottom: 1px solid var(--ink); }
  .mobile-menu nav a { display: flex; align-items: center; justify-content: space-between; min-height: 62px; padding: 8px 10px; border-top: 1px solid var(--ink); font: 700 clamp(32px, 8.5vw, 44px)/1 Archivo, sans-serif; letter-spacing: -0.055em; }
  .mobile-menu nav a[aria-current="page"] { padding-left: 21px; background: var(--blue); color: #fff; }
  .mobile-menu nav .ui-icon { width: 20px; height: 20px; color: var(--blue); }
  .mobile-menu nav a[aria-current="page"] .ui-icon { color: #fff; }
  .mobile-menu-bottom { display: grid; gap: 16px; margin-top: auto; padding-top: 22px; }
  .mobile-menu-cta { display: flex; align-items: center; justify-content: space-between; min-height: 56px; padding: 0 17px; background: var(--ink); color: #fff; font-weight: 700; }
  .mobile-menu-bottom > div { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-size: 13px; font-weight: 700; }
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding-right: 0; }
  .hero-media { min-height: 520px; }
  .project-grid .project-card:nth-child(n) { grid-column: span 6; }
  .project-grid .project-card:nth-child(-n + 2) .project-visual, .project-visual { height: 310px; }
  .split-section { grid-template-columns: 1fr; gap: 50px; }
  .sticky-copy { position: static; }
  .service-stage { min-height: 170px; }
  .contact-hero, .studio-layout, .case-hero, .case-detail { grid-template-columns: 1fr; }
  .studio-layout figure { height: 520px; }
  .case-preview { height: 500px; }
  .case-features { position: static; }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .shell, .footer-lead, .footer-grid, .footer-bottom, .footer-wordmark { width: calc(100% - 28px); }
  .section { padding-block: 76px; }
  .site-header { top: 8px; width: calc(100% - 16px); height: 60px; margin-top: 8px; padding-left: 12px; border-radius: 15px; }
  .site-header.is-scrolled { width: calc(100% - 16px); height: 56px; }
  .brand img { width: 28px; height: 28px; }
  .brand b { font-size: 18px; }
  .brand small { font-size: 7px; }
  .menu-button { width: 43px; height: 43px; border-radius: 10px; }
  .mobile-menu:not([hidden]) { padding: 85px 10px max(15px, env(safe-area-inset-bottom)); }
  .mobile-menu nav a { min-height: 58px; font-size: clamp(29px, 9vw, 38px); }
  .hero { gap: 22px; padding-top: 50px; }
  .hero-copy { padding: 20px 0 12px; }
  .hero-copy::before { margin-bottom: 20px; }
  .hero h1 { font-size: clamp(50px, 14vw, 66px); }
  .hero-copy > p { margin-top: 20px; font-size: 17px; }
  .button-row { flex-direction: column; align-items: stretch; }
  .hero-media { min-height: 400px; box-shadow: 5px 5px 0 var(--ink); }
  .hero-cinema-screens img { width: 43%; }
  .hero-cinema-screens img:nth-child(2) { left: 5%; }
  .hero-proof { grid-template-columns: 1fr 1fr; }
  .hero-proof span { padding: 13px 8px; font-size: 10px; }
  .hero-proof span:nth-child(2n) { border-right: 0; }
  .hero-proof span:last-child { grid-column: 1 / -1; }
  .section-head { align-items: end; margin-bottom: 24px; padding-bottom: 20px; }
  .section-head h2, .sticky-copy h2, .process-band h2, .page-intro h1, .contact-hero h1 { font-size: clamp(45px, 13vw, 60px); }
  #selected-work .section-head .text-link { flex: 0 0 auto; font-size: 13px; }
  .project-grid-home { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 18px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .project-grid-home::-webkit-scrollbar { display: none; }
  .project-grid-home .project-card:nth-child(n) { flex: 0 0 min(82vw, 316px); width: min(82vw, 316px); scroll-snap-align: start; }
  .project-grid-home .project-visual, .project-grid-home .project-card:nth-child(-n + 2) .project-visual { height: 220px; }
  .project-grid-home .project-copy { min-height: 76px; padding: 14px 15px 17px; }
  .project-grid-home .project-copy h3 { font-size: 24px; }
  .project-grid-home .project-link { display: grid; place-items: center; width: 42px; height: 42px; margin: 0; background: var(--ink); color: #fff; font-size: 0; }
  .project-grid-home .project-link .ui-icon { width: 18px; height: 18px; color: #fff; }
  .project-grid-all { display: grid; grid-template-columns: 1fr; gap: 16px; }
  .project-grid-all .project-card:nth-child(n) { grid-column: 1 / -1; }
  .project-grid-all .project-visual, .project-grid-all .project-card:nth-child(-n + 2) .project-visual { height: 230px; }
  .project-copy h3 { font-size: 27px; }
  .visual-statement { height: 510px; margin-top: 12px; box-shadow: 5px 5px 0 var(--ink); }
  .visual-statement > div, .visual-statement-reverse > div { right: 12px; bottom: 12px; left: 12px; width: auto; padding: 21px; }
  .visual-statement h2 { font-size: 38px; }
  .visual-statement-reverse { box-shadow: 5px 5px 0 var(--blue); }
  .split-section { gap: 38px; padding-block: 78px; }
  .service-stage { min-height: 130px; }
  .service-stage strong { font-size: 34px; }
  .service-row { grid-template-columns: 31px 1fr auto; padding: 20px 10px; }
  .service-row h3 { font-size: 24px; }
  .service-row p { font-size: 14px; }
  .process-band { padding-block: 78px; }
  .process-band ol { grid-template-columns: 1fr; gap: 0; }
  .process-band ol::before { display: none; }
  .process-band li { border-top: 2px solid #fff; }
  .page-intro { padding: 75px 0 45px; }
  .page-intro > p { font-size: 17px; }
  .filter-bar { display: flex; width: 100%; overflow-x: auto; scrollbar-width: none; }
  .filter-bar button { flex: 0 0 auto; white-space: nowrap; }
  .service-cards, .support-grid { grid-template-columns: 1fr; }
  .service-detail, .support-grid article, .price-card { padding: 27px 24px; }
  .capability-table { overflow-x: auto; }
  .capability-row { grid-template-columns: 140px 180px 240px 150px; width: 710px; }
  .timeline article { grid-template-columns: 45px 1fr; padding: 37px 0; }
  .timeline article > div { grid-template-columns: 1fr; gap: 10px; }
  .timeline h2 { font-size: 34px; }
  .narrow-note > div { grid-template-columns: 1fr; }
  .faq-list summary { font-size: 20px; }
  .contact-hero { gap: 45px; padding: 78px 0; }
  .planner { min-height: 610px; padding: 22px 17px; }
  .choice-grid, .form-grid { grid-template-columns: 1fr; }
  .form-wide { grid-column: auto; }
  .planner-actions { justify-content: stretch; }
  .planner-actions .button { flex: 1; }
  .studio-layout { gap: 38px; }
  .studio-layout figure { height: 420px; box-shadow: 5px 5px 0 var(--ink); }
  .studio-layout dl { box-shadow: 5px 5px 0 var(--blue); }
  .studio-layout dl div { grid-template-columns: 1fr; gap: 7px; min-height: 0; padding: 17px 16px 18px; }
  .studio-layout dd { font-size: 16px; }
  .studio-principles > div { grid-template-columns: 1fr; }
  .studio-principles article { border-right: 0; border-bottom: 1px solid var(--ink); }
  .studio-principles article:last-child { border: 0; }
  .contact-strip { display: grid; margin-bottom: 76px; padding: 28px 22px; }
  .case-hero { min-height: 0; gap: 42px; padding-block: 72px; }
  .case-hero h1 { font-size: clamp(56px, 15vw, 72px); }
  .case-preview { height: 360px; box-shadow: 5px 5px 0 var(--tone); }
  .case-facts { grid-template-columns: 1fr; }
  .case-facts article { padding: 35px 10px; }
  .case-facts article:first-child { border-right: 0; border-bottom: 1px solid var(--ink); }
  .case-detail { gap: 45px; padding-block: 78px; }
  .case-device { height: 460px; box-shadow: 5px 5px 0 var(--blue); }
  .next-project a { grid-template-columns: 1fr auto; min-height: 160px; }
  .next-project a > span { grid-column: 1 / -1; align-self: end; }
  .next-project strong { align-self: start; font-size: 40px; }
  .next-project .ui-icon { align-self: start; width: 30px; height: 30px; }
  .showreel-shell { padding: 14px; }
  .showreel-slide img { width: 100%; height: 64vh; }
  .showreel-slide h2 { left: 8px; bottom: 8px; font-size: 34px; }
  .showreel-controls { grid-template-columns: auto auto auto; }
  .showreel-controls a { grid-column: 1 / -1; justify-self: stretch; padding: 13px; background: var(--blue); text-align: center; }
  .project-reel { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .project-reel-track { animation: none; }
  .project-reel-copy { display: none; }
  .project-reel-group { padding: 10px; }
  .project-reel-item { flex-basis: 270px; width: 270px; height: 165px; scroll-snap-align: start; }
  .footer-lead { display: grid; padding: 70px 0 42px; }
  .footer-wordmark { padding-block: 28px; font-size: 25vw; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
}

@media (max-width: 370px) {
  .mobile-menu nav a { min-height: 54px; font-size: 29px; }
  .mobile-menu-bottom { padding-top: 14px; }
  .project-grid-home .project-card:nth-child(n) { flex-basis: 86vw; width: 86vw; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal, .timeline article { opacity: 1; transform: none; }
  .project-reel { overflow-x: auto; }
  .project-reel-track { animation: none; }
  .project-reel-copy { display: none; }
}

/* Recorded project walkthroughs */
.project-video {
  position: relative;
  height: 320px;
  margin: 9px;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--ink);
}
.project-grid .project-card:nth-child(-n + 2) .project-video { height: 415px; }
.project-video video,
.project-video .video-poster {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.project-video video { z-index: 1; }
.project-video .video-poster { z-index: 2; transition: opacity 180ms ease; }
.project-video.is-started .video-poster { opacity: 0; pointer-events: none; }
.project-video .project-chrome { z-index: 4; }
.video-toggle {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  min-height: 54px;
  padding: 0 20px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  background: rgba(11, 11, 12, 0.9);
  box-shadow: 4px 4px 0 var(--blue);
  color: #fff;
  font: 700 13px/1 Archivo, sans-serif;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: transform 150ms var(--ease), box-shadow 150ms ease, background-color 150ms ease;
}
.video-toggle .ui-icon { width: 16px; height: 16px; margin-right: 9px; }
.video-toggle:hover, .video-toggle:focus-visible { transform: translate(calc(-50% - 2px), calc(-50% - 2px)); background: var(--blue); box-shadow: 5px 5px 0 var(--coral); }
.project-video.is-started .video-toggle { display: none; }
.video-progress {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
}
.video-progress i { display: block; width: 0; height: 100%; background: var(--tone, var(--blue)); }

/* Two-second hero sequence */
.hero-logo-sequence {
  position: relative;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
}
.hero-logo-sequence img { position: absolute; z-index: 2; inset: 0; width: 52px; height: 52px; animation: logo-lock 420ms 900ms var(--ease) both; }
.hero-logo-sequence span { position: absolute; z-index: 1; width: 21px; height: 21px; background: var(--blue); }
.hero-logo-sequence span:nth-child(1) { top: 0; left: 0; animation: logo-piece-one 750ms 80ms var(--ease) both; }
.hero-logo-sequence span:nth-child(2) { right: 0; bottom: 0; background: var(--ink); animation: logo-piece-two 750ms 160ms var(--ease) both; }
.hero-logo-sequence span:nth-child(3) { top: 15px; left: 15px; width: 22px; height: 22px; background: var(--paper); border: 3px solid var(--ink); animation: logo-piece-three 750ms 240ms var(--ease) both; }
@keyframes logo-piece-one { from { opacity: 0; transform: translate(-34px, -18px) rotate(-30deg); } }
@keyframes logo-piece-two { from { opacity: 0; transform: translate(34px, 18px) rotate(30deg); } }
@keyframes logo-piece-three { from { opacity: 0; transform: scale(0.25) rotate(90deg); } }
@keyframes logo-lock { from { opacity: 0; transform: scale(0.8); } }
.hero-copy h1 { animation: hero-headline-lock 650ms 950ms var(--ease) both; }
@keyframes hero-headline-lock { from { opacity: 0; transform: translateY(24px); } }
.hero-screen-sequence {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
  padding-top: 2px;
}
.hero-screen-card {
  display: grid;
  grid-template-rows: 23px auto 38px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  box-shadow: 5px 5px 0 var(--blue);
  animation: hero-screen-in 620ms var(--ease) both;
}
.hero-screen-card:nth-child(1) { animation-delay: 160ms; }
.hero-screen-card:nth-child(2) { animation-delay: 300ms; }
.hero-screen-card:nth-child(3) { animation-delay: 440ms; }
.hero-screen-card:nth-child(4) { animation-delay: 580ms; }
.hero-screen-bar { display: flex; align-items: center; gap: 4px; padding: 0 8px; background: #f7f4ed; }
.hero-screen-bar i { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
.hero-screen-bar i:nth-child(2) { background: var(--yellow); }
.hero-screen-bar i:nth-child(3) { background: var(--blue); }
.hero-screen-shot { display: block; min-width: 0; aspect-ratio: 16 / 9; overflow: hidden; background: #ddd; }
.hero-screen-shot img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 320ms var(--ease); }
.hero-screen-card:hover .hero-screen-shot img { transform: scale(1.025); }
.hero-screen-label { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 0 10px; }
.hero-screen-label strong { overflow: hidden; font: 700 13px/1 Archivo, sans-serif; text-overflow: ellipsis; white-space: nowrap; }
.hero-screen-label small { display: inline-flex; align-items: center; gap: 5px; flex: 0 0 auto; color: rgba(255,255,255,.65); font-size: 9px; font-weight: 700; }
.hero-screen-label small .ui-icon { width: 12px; height: 12px; color: var(--coral); }
@keyframes hero-screen-in { from { opacity: 0; transform: translateX(80px); } }
.hero-cinema::after { animation-duration: 1.8s; }

/* Service demonstrations */
.service-stage p { max-width: 350px; margin: 12px 0 0; color: rgba(255, 255, 255, 0.72); }
.service-row { display: grid; grid-template-columns: minmax(220px, 0.72fr) minmax(300px, 1.28fr); gap: 16px; padding: 14px; }
.service-row-copy { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 12px; padding: 11px 3px; }
.service-row-copy > span { align-self: start; color: #9d2d20; font-size: 12px; font-weight: 800; }
.service-row-copy h3 { font-size: 27px; }
.service-row-copy p { margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.service-row-copy a { align-self: start; display: grid; width: 34px; height: 34px; place-items: center; color: var(--blue); }
.service-row-copy a .ui-icon { width: 20px; height: 20px; }
.service-row-copy a:hover { color: var(--coral); }
.service-demo { position: relative; min-height: 220px; overflow: hidden; border: 1px solid var(--ink); background: #fff; }
.service-demo *, .service-demo *::before, .service-demo *::after { box-sizing: border-box; }
.demo-app { display: grid; grid-template-columns: 48px 1fr; height: 100%; min-height: 220px; background: #edf0f6; }
.demo-app-nav { display: grid; align-content: start; gap: 10px; padding: 17px 13px; background: var(--blue); }
.demo-app-nav i { width: 20px; height: 5px; background: #fff; }
.demo-app-main { display: grid; grid-template-rows: 40px 1fr 32px; gap: 12px; padding: 14px; }
.demo-app-head, .demo-app-foot { background: var(--ink); }
.demo-app-content { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.demo-app-content b { background: #fff; border: 1px solid var(--ink); }
.demo-booking { display: grid; grid-template-columns: 1fr 90px; gap: 10px; height: 100%; min-height: 220px; padding: 16px; background: #f6f2e8; }
.demo-calendar { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.demo-calendar i { min-height: 25px; border: 1px solid var(--ink); background: #fff; }
.demo-calendar i.is-picked { background: var(--blue); }
.demo-times { display: grid; align-content: start; gap: 8px; }
.demo-times i { height: 34px; background: var(--yellow); border: 1px solid var(--ink); }
.demo-raffle { display: grid; grid-template-columns: 1fr 90px; grid-template-rows: 1fr 45px; gap: 10px; height: 100%; min-height: 220px; padding: 15px; background: var(--blue); }
.demo-prize { border: 1px solid #fff; background: linear-gradient(145deg, rgba(255,255,255,.15), rgba(255,255,255,.35)); }
.demo-tickets { display: grid; gap: 6px; }
.demo-tickets i { display: grid; place-items: center; background: var(--yellow); color: var(--ink); font-style: normal; font-weight: 800; }
.demo-raffle > b { grid-column: 1 / -1; display: grid; place-items: center; background: var(--ink); color: #fff; }
.demo-site { display: grid; grid-template-columns: 1fr 34%; grid-template-rows: 36px 1fr; height: 100%; min-height: 220px; background: #eee8dc; }
.demo-site-head { grid-column: 1 / -1; display: flex; gap: 5px; align-items: center; padding: 0 11px; background: var(--ink); }
.demo-site-head i { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); }
.demo-site-head i:nth-child(2) { background: var(--yellow); }
.demo-site-head i:nth-child(3) { background: var(--blue); }
.demo-site-content { padding: 24px 18px; }
.demo-site-content strong { display: block; width: 78%; height: 30px; background: var(--ink); }
.demo-site-content p { width: 88%; height: 7px; margin: 11px 0 0; background: #837d74; }
.demo-site-content p:nth-child(3) { width: 64%; }
.demo-site-content b { display: block; width: 80px; height: 27px; margin-top: 23px; background: var(--blue); }
.demo-site-side { background: var(--coral); }
.demo-landing { position: relative; height: 100%; min-height: 220px; padding: 32px 20px; background: var(--yellow); }
.demo-landing strong { display: block; width: 62%; height: 33px; background: var(--ink); }
.demo-landing p { width: 48%; height: 7px; margin: 12px 0 0; background: rgba(11,11,12,.55); }
.demo-landing b { display: block; width: 100px; height: 31px; margin-top: 25px; background: var(--blue); }
.demo-landing aside { position: absolute; right: 18px; bottom: 18px; width: 35%; height: 58%; border: 1px solid var(--ink); background: var(--paper); }

/* Process becomes a build sequence */
.process-sketch { position: relative; height: 112px; margin: 24px 0; border: 2px solid rgba(255, 255, 255, 0.75); }
.process-sketch i { position: absolute; display: block; border: 1px solid rgba(255, 255, 255, 0.85); }
.process-sketch i:nth-child(1) { top: 12px; right: 12px; left: 12px; height: 18px; }
.process-sketch i:nth-child(2) { top: 42px; bottom: 12px; left: 12px; width: 40%; }
.process-sketch i:nth-child(3) { top: 42px; right: 12px; bottom: 12px; left: 48%; }
.process-band:not(.is-drawn) .process-sketch { clip-path: inset(0 100% 0 0); }
.process-band.is-drawn .process-sketch { clip-path: inset(0); transition: clip-path 650ms var(--ease); }
.process-band.is-drawn li:nth-child(2) .process-sketch { transition-delay: 220ms; }
.process-band.is-drawn li:nth-child(3) .process-sketch { transition-delay: 440ms; }
.process-sketch-build i:nth-child(2) { background: var(--coral); }
.process-sketch-build i:nth-child(3) { background: var(--yellow); }
.process-sketch-live { background: #fff; }
.process-sketch-live i { border-color: var(--ink); }
.process-sketch-live i:nth-child(3) { background: var(--blue); }

/* Project case-study screens */
.case-preview > .project-video { width: 100%; height: 100%; margin: 0; border: 0; }
.case-device-wide > .project-video { width: 100%; height: 100%; margin: 0; border: 0; }
.case-screens { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 34px; align-items: start; padding-block: 110px; }
.case-device { position: relative; height: auto; margin: 0; overflow: hidden; border: 1px solid var(--ink); background: var(--ink); box-shadow: 8px 8px 0 var(--blue); }
.case-device-wide { height: 610px; }
.case-device-mobile { height: 650px; box-shadow: 8px 8px 0 var(--coral); }
.case-device video, .case-device img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.case-device figcaption { position: absolute; right: 10px; bottom: 10px; padding: 8px 10px; background: var(--ink); color: #fff; font-size: 11px; font-weight: 700; }
.case-detail { padding-top: 0; }
.case-detail > div:first-child h2 { font-size: 45px; }
.case-detail > div:first-child p { max-width: 560px; margin-top: 20px; color: var(--muted); font-size: 18px; }
.showreel-slide video { width: min(1120px, 90vw); height: min(68vh, 720px); border: 1px solid rgba(255, 255, 255, 0.45); object-fit: cover; object-position: top; }
.planner-details { margin-top: 18px; }

@media (max-width: 980px) {
  .project-grid .project-card:nth-child(-n + 2) .project-video, .project-video { height: 310px; }
  .service-row { grid-template-columns: 1fr; }
  .service-demo { min-height: 260px; }
  .case-screens { grid-template-columns: minmax(0, 1fr) 280px; }
}

@media (max-width: 680px) {
  .hero-logo-sequence { width: 42px; height: 42px; margin-bottom: 18px; }
  .hero-logo-sequence img { width: 42px; height: 42px; }
  .hero-logo-sequence span { width: 17px; height: 17px; }
  .hero-logo-sequence span:nth-child(3) { top: 12px; left: 12px; width: 18px; height: 18px; }
  .hero-screen-sequence {
    display: flex;
    width: calc(100vw - 14px);
    gap: 12px;
    padding: 2px 14px 12px 0;
    overflow-x: auto;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
  }
  .hero-screen-sequence::-webkit-scrollbar { display: none; }
  .hero-screen-card { flex: 0 0 min(84vw, 350px); grid-template-rows: 25px auto 44px; scroll-snap-align: start; box-shadow: 5px 5px 0 var(--blue); }
  .hero-screen-label { padding-inline: 12px; }
  .hero-screen-label strong { font-size: 15px; }
  .project-grid-home .project-video, .project-grid-home .project-card:nth-child(-n + 2) .project-video { height: 220px; }
  .project-grid-all .project-video, .project-grid-all .project-card:nth-child(-n + 2) .project-video { height: 230px; }
  .video-toggle { min-width: 174px; min-height: 52px; }
  .service-row { padding: 10px; }
  .service-row-copy { grid-template-columns: 30px 1fr auto; }
  .service-demo { min-height: 225px; }
  .process-sketch { display: none; }
  .process-band h3 { margin-top: 16px; }
  .case-screens { grid-template-columns: 1fr; gap: 38px; padding-block: 78px; }
  .case-device-wide { height: 360px; }
  .case-device-mobile { width: min(78vw, 310px); height: 610px; margin-inline: auto; box-shadow: 5px 5px 0 var(--coral); }
  .case-preview > .project-video { height: 100%; }
  .case-detail { padding-top: 0; }
  .showreel-slide video { width: 100%; height: 64vh; }
}

@media (pointer: fine) {
  .project-video:hover { cursor: default; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo-sequence span { display: none; }
  .hero-logo-sequence img, .hero-copy h1, .hero-screen-card { animation: none; }
  .project-video video, .video-progress, .video-toggle { display: none !important; }
  .project-video .video-poster { opacity: 1; }
  .process-band .process-sketch { clip-path: inset(0); }
}

/* Support, legal and verified review pages */
.section-head > p { max-width: 520px; margin: 12px 0 0; color: var(--muted); }
.support-included {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1px;
  padding: 0;
  border: 1px solid var(--ink);
  background: var(--ink);
}
.support-included > div { padding: clamp(30px, 5vw, 70px); background: var(--panel); }
.support-included > div:first-child { background: var(--blue); color: #fff; }
.support-included > div:first-child > span { font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.support-included h2 { max-width: 520px; margin-top: 55px; font-size: clamp(45px, 5vw, 76px); }
.support-included h3 { margin: 0 0 14px; font-size: 24px; }
.support-included h3:not(:first-child) { margin-top: 38px; }
.support-included ul, .support-packages ul, .legal-copy ul { margin: 0; padding: 0; list-style: none; }
.support-included li, .support-packages li, .legal-copy li { position: relative; padding: 10px 0 10px 21px; border-top: 1px solid var(--line); }
.support-included li::before, .support-packages li::before, .legal-copy li::before { content: ""; position: absolute; top: 18px; left: 1px; width: 7px; height: 7px; background: var(--blue); }
.support-packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 38px; }
.support-packages article { min-height: 430px; padding: 30px; border: 1px solid var(--ink); background: var(--panel); }
.support-packages article:nth-child(2) { background: var(--blue); color: #fff; }
.support-packages article:nth-child(2) p { color: rgba(255,255,255,.78); }
.support-packages article:nth-child(2) li { border-color: rgba(255,255,255,.28); }
.support-packages article:nth-child(2) li::before { background: var(--yellow); }
.support-packages article > span { color: var(--blue); font-size: 12px; font-weight: 800; }
.support-packages article:nth-child(2) > span { color: #fff; }
.support-packages h3 { margin-top: 58px; font-size: 39px; }
.support-packages p { margin: 14px 0 26px; color: var(--muted); }
.support-note { max-width: 720px; margin: 24px 0 0; color: var(--muted); font-size: 14px; }

.legal-page .page-intro { padding-bottom: 65px; }
.legal-copy { max-width: 940px; padding-bottom: 120px; }
.legal-copy > section { display: grid; grid-template-columns: minmax(210px, .7fr) minmax(0, 1.3fr); column-gap: 56px; padding: 34px 0; border-top: 1px solid var(--ink); }
.legal-copy h2 { font-size: 28px; line-height: 1.05; }
.legal-copy h3 { margin: 28px 0 12px; font-size: 20px; }
.legal-copy p { margin: 0; color: #34312d; }
.legal-copy p + p { margin-top: 18px; }
.legal-copy a, .planner > p a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.legal-copy dl { margin: 0; }
.legal-copy dl > div { padding: 18px 0; border-top: 1px solid var(--line); }
.legal-copy dl > div:first-child { padding-top: 0; border-top: 0; }
.legal-copy dt { font-weight: 800; }
.legal-copy dd { margin: 5px 0 0; color: #34312d; }
.legal-copy ul { margin-top: 14px; }
.legal-callout { margin-top: 25px; padding: 24px; border: 1px solid var(--ink); background: var(--yellow); }
.legal-callout h3 { margin-top: 0; }

.reviews-empty { display: grid; grid-template-columns: 1.05fr .95fr; gap: 1px; margin-bottom: 20px; border: 1px solid var(--ink); background: var(--ink); }
.reviews-empty > div { padding: clamp(30px, 5vw, 70px); background: var(--panel); }
.reviews-empty > div:first-child { background: var(--blue); color: #fff; }
.reviews-empty > div:first-child > span { font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.reviews-empty h2 { max-width: 560px; margin-top: 55px; font-size: clamp(46px, 6vw, 82px); }
.reviews-empty p { max-width: 580px; margin: 24px 0 0; color: rgba(255,255,255,.78); font-size: 18px; }
.review-sectors { display: grid; align-content: center; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.review-sectors span { padding: 15px; border: 1px solid var(--ink); background: #fff; font-weight: 700; }
.review-request { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.review-request h2 { font-size: clamp(42px, 5vw, 68px); }
.review-request p { max-width: 650px; margin: 18px 0 0; color: var(--muted); }
.review-request .button { flex: 0 0 auto; }
.footer-grid nav { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 28px; }

@media (max-width: 820px) {
  .support-included, .reviews-empty { grid-template-columns: 1fr; }
  .support-packages { grid-template-columns: 1fr; }
  .support-packages article { min-height: 0; }
  .legal-copy > section { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 680px) {
  .support-included > div, .reviews-empty > div { padding: 28px 22px; }
  .support-included h2, .reviews-empty h2 { margin-top: 38px; }
  .support-packages article { padding: 25px 22px; }
  .support-packages h3 { margin-top: 35px; }
  .legal-page .page-intro { padding-bottom: 45px; }
  .legal-copy { padding-bottom: 80px; }
  .legal-copy > section { padding: 27px 0; }
  .legal-copy h2 { font-size: 25px; }
  .review-sectors { grid-template-columns: 1fr; }
  .review-request { display: grid; align-items: start; }
  .review-request .button { width: 100%; }
  .footer-grid nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
