:root {
  --paper: #f4f1ec;
  --paper-bright: #fbfaf7;
  --ink: #171a1d;
  --ink-soft: #2a2e31;
  --muted: #6d6d68;
  --line: rgba(23, 26, 29, 0.16);
  --red: #ee3f36;
  --red-dark: #ce2d28;
  --serif: "Newsreader", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --mono: "Manrope", Arial, sans-serif;
  --pad: clamp(1.25rem, 4vw, 4.5rem);
  --radius: clamp(1.5rem, 3vw, 3rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

::selection {
  color: var(--paper-bright);
  background: var(--red);
}

.sr-only {
  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: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: white;
  background: var(--ink);
  border-radius: 99px;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 110;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--pad);
  border-bottom: 1px solid transparent;
  transition: padding 250ms ease, background 250ms ease, border-color 250ms ease;
}

.site-header.is-scrolled,
.site-header.header-solid {
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  background: rgba(244, 241, 236, 0.86);
  border-color: var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-mark {
  position: relative;
  width: 30px;
  height: 30px;
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 9px 11px 8px 12px;
  background: var(--ink);
  transform: rotate(-4deg);
}

.brand-mark i {
  position: absolute;
  width: 3px;
  height: 3px;
  top: 14px;
  border-radius: 50%;
  background: var(--paper);
}

.brand-mark i:nth-child(1) { left: 9px; }
.brand-mark i:nth-child(2) { left: 14px; }
.brand-mark i:nth-child(3) { left: 19px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  font-size: 0.78rem;
  font-weight: 600;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 1.35rem;
  padding: 0.75rem 0.8rem 0.75rem 1.15rem;
  color: white;
  background: var(--ink);
  border-radius: 999px;
}

.nav-cta span {
  display: grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  color: var(--ink);
  background: var(--paper-bright);
  border-radius: 50%;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 1.5px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform 200ms ease;
}

.section {
  padding: clamp(6rem, 10vw, 10rem) var(--pad);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
  padding: clamp(8.5rem, 14vh, 12rem) var(--pad) clamp(7rem, 12vh, 10rem);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -18vw;
  left: -12vw;
  width: 42vw;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(238, 63, 54, 0.13), transparent 67%);
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.hero-copy,
.hero-art {
  position: relative;
  z-index: 2;
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 2rem;
  font-family: var(--mono);
  font-size: 0.69rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  display: inline-block;
  flex: 0 0 auto;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(238, 63, 54, 0.12);
  animation: pulse 2.5s ease infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 9px rgba(238, 63, 54, 0); }
}

.hero h1,
.section-heading h2,
.studio h2,
.contact h2,
.policy-hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 7.2vw, 8.2rem);
  font-weight: 500;
  line-height: 0.93;
  letter-spacing: -0.075em;
}

.hero h1 {
  max-width: 10ch;
}

.hero h1 em,
.studio h2 em,
.policy-hero em {
  color: var(--red);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero-intro {
  max-width: 39rem;
  margin: clamp(2rem, 4vw, 3.5rem) 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  font-weight: 400;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin-top: 2.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-width: 12rem;
  padding: 1rem 1.2rem 1rem 1.35rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease;
}

.button-dark {
  color: white;
  background: var(--ink);
}

.button:hover {
  transform: translateY(-3px);
  background: var(--red);
}

.text-link,
.project-link,
.store-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.77rem;
  font-weight: 600;
}

.text-link span,
.project-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.project-link:hover span {
  transform: translate(3px, -3px);
}

.hero-art {
  max-width: 680px;
  justify-self: end;
  perspective: 1200px;
}

.logo-card {
  position: relative;
  z-index: 2;
  width: min(42vw, 590px);
  aspect-ratio: 1;
  padding: clamp(0.5rem, 1.2vw, 1rem);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28% 20% 25% 18% / 22% 25% 19% 27%;
  box-shadow: 0 35px 90px rgba(24, 20, 18, 0.13);
  transform: rotate(2.5deg);
  transition: transform 240ms ease-out;
  overflow: hidden;
}

.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(23, 26, 29, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 114%;
  height: 82%;
  top: 9%;
  left: -7%;
  transform: rotate(30deg);
  animation: orbit-one 18s linear infinite;
}

.orbit-two {
  width: 84%;
  height: 111%;
  top: -5%;
  left: 8%;
  transform: rotate(-20deg);
  animation: orbit-two 24s linear infinite reverse;
}

@keyframes orbit-one { to { transform: rotate(390deg); } }
@keyframes orbit-two { to { transform: rotate(340deg); } }

.hero-note {
  position: absolute;
  z-index: 3;
  padding: 0.6rem 0.9rem;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(23, 26, 29, 0.16);
}

.hero-note-top { top: 6%; right: -3%; transform: rotate(7deg); }
.hero-note-bottom { left: -7%; bottom: 9%; transform: rotate(-7deg); background: var(--red); }

.scroll-cue {
  position: absolute;
  z-index: 2;
  left: var(--pad);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.scroll-cue i::after {
  content: "↓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  animation: down 1.8s ease infinite;
}

@keyframes down { 50% { transform: translateY(4px); } }

.ticker {
  overflow: hidden;
  color: white;
  background: var(--red);
  border-block: 1px solid rgba(0, 0, 0, 0.12);
  transform: rotate(-1deg) scale(1.02);
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: ticker 26s linear infinite;
  will-change: transform;
}

.ticker-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.ticker-sequence {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 2rem;
  padding: 1rem 2rem 1rem 0;
}

.ticker-sequence b { font-size: 0.65rem; }

@keyframes ticker { to { transform: translate3d(-50%, 0, 0); } }

.work {
  padding-top: clamp(8rem, 13vw, 13rem);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.34fr);
  align-items: end;
  gap: 4rem;
  margin-bottom: clamp(3.5rem, 8vw, 7rem);
}

.section-heading h2 {
  max-width: 12ch;
  font-size: clamp(2.9rem, 6vw, 6.6rem);
}

.section-heading > p {
  max-width: 28rem;
  margin: 0 0 0.6rem;
  color: var(--muted);
  font-size: 1rem;
}

.project-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.project-card {
  --card-bg: #e7e5df;
  min-height: min(780px, 76vw);
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  border-radius: var(--radius);
  background: var(--card-bg);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.project-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 4vw, 4.5rem);
}

.project-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.project-topline img {
  --project-icon-size: clamp(3rem, 5vw, 4.7rem);
  width: var(--project-icon-size);
  height: var(--project-icon-size);
  flex: 0 0 var(--project-icon-size);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 24%;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.project-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.project-status i {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #178a70;
}

.project-number {
  margin: 0 0 0.8rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
}

.project-card h3 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 7.5rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.project-tagline {
  margin: 1.4rem 0 0.7rem;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.7vw, 3rem);
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.03em;
}

.project-description {
  max-width: 31rem;
  margin: 1.1rem 0 0;
  color: rgba(23, 26, 29, 0.68);
  font-size: clamp(0.9rem, 1.15vw, 1.05rem);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.3rem;
}

.tags span {
  padding: 0.38rem 0.65rem;
  border: 1px solid rgba(23, 26, 29, 0.17);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 3rem;
  padding: 0.58rem 0.85rem;
  color: var(--paper-bright);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 0.9rem;
  font-size: 0.73rem;
  font-weight: 600;
  line-height: 1.05;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.platform-link:hover {
  transform: translateY(-2px);
}

.platform-link svg {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.platform-link .icon-apple,
.platform-link .icon-play {
  fill: currentColor;
  stroke: none;
}

.platform-link small {
  display: block;
  margin-bottom: 0.18rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.platform-link-quiet {
  color: var(--ink);
  background: transparent;
  border-color: rgba(23, 26, 29, 0.28);
}

.platform-link-quiet small {
  color: rgba(23, 26, 29, 0.48);
}

.project-subby .platform-link {
  color: #171a1d;
  background: #f6f3ee;
  border-color: #f6f3ee;
}

.project-subby .platform-link small {
  color: rgba(23, 26, 29, 0.52);
}

.project-subby .platform-link-quiet {
  color: #f6f3ee;
  background: transparent;
  border-color: rgba(246, 243, 238, 0.28);
}

.project-subby .platform-link-quiet small {
  color: rgba(246, 243, 238, 0.5);
}

.project-visual {
  position: relative;
  min-height: 100%;
  display: grid;
  place-items: end center;
  overflow: hidden;
}

.phone {
  position: absolute;
  z-index: 2;
  bottom: -13%;
  width: min(57%, 410px);
  aspect-ratio: 0.49;
  padding: 0.55rem;
  background: #0e1011;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: clamp(2rem, 4vw, 4rem);
  box-shadow: 0 50px 80px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transform: rotate(4deg);
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-card:hover .phone {
  transform: translateY(-2.5%) rotate(1deg);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: inherit;
}

.project-trailo { --card-bg: #d6e7df; }
.project-trailo .project-visual { background: #b7d6ca; }
.project-trailo .phone { transform: rotate(5deg); }
.project-trailo .visual-ring {
  position: absolute;
  width: 68%;
  aspect-ratio: 1;
  border: 1px solid rgba(14, 99, 91, 0.45);
  border-radius: 50%;
  transform: translate(16%, -10%);
}

.project-subby {
  --card-bg: #222638;
  color: #f6f3ee;
}

.project-subby .project-visual { background: #12151f; }
.project-subby .project-description { color: rgba(246, 243, 238, 0.63); }
.project-subby .tags span { border-color: rgba(246, 243, 238, 0.2); }
.project-subby .phone { transform: rotate(-4deg); }
.project-subby:hover .phone { transform: translateY(-2.5%) rotate(-1deg); }

.floating-pill {
  position: absolute;
  z-index: 3;
  right: 5%;
  bottom: 15%;
  padding: 0.8rem 1rem;
  color: #10131c;
  background: #7976ff;
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  border-radius: 999px;
  transform: rotate(7deg);
}

.project-doso { --card-bg: #f2d9ca; }
.project-doso .project-visual { background: #f7e7db; }
.project-doso .phone { transform: rotate(3deg); }
.doso-cross {
  position: absolute;
  z-index: 1;
  left: 6%;
  bottom: 8%;
  color: rgba(238, 63, 54, 0.7);
  font-size: clamp(8rem, 18vw, 20rem);
  font-weight: 200;
  line-height: 0.7;
}

.project-solvee {
  --card-bg: #dce8d9;
}

.project-solvee .project-visual {
  background: radial-gradient(circle at 50% 54%, #284e39 0, #10271d 55%, #0c1c15 100%);
  color: white;
}

.project-solvee .phone {
  width: min(54%, 380px);
  transform: rotate(-5deg);
}

.project-solvee:hover .phone { transform: translateY(-2.5%) rotate(-2deg); }
.status-sold { color: white; background: var(--ink); border-color: var(--ink); }
.project-link-muted { border-bottom: 0; opacity: 0.62; }

.sold-stamp {
  position: absolute;
  z-index: 3;
  right: 5%;
  top: 13%;
  display: grid;
  place-items: center;
  width: clamp(5rem, 10vw, 8rem);
  aspect-ratio: 1;
  color: white;
  border: 2px solid white;
  border-radius: 50%;
  font-family: var(--mono);
  letter-spacing: 0.16em;
  transform: rotate(12deg);
}

.studio {
  position: relative;
  color: #f5f2ed;
  background: var(--ink);
  overflow: hidden;
}

.studio-orb {
  position: absolute;
  top: -18rem;
  right: -18rem;
  width: 50rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 48% 52% 61% 39% / 43% 38% 62% 57%;
  animation: morph 16s ease-in-out infinite alternate;
}

@keyframes morph {
  50% { border-radius: 62% 38% 42% 58% / 56% 63% 37% 44%; transform: rotate(20deg); }
}

.studio-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: clamp(4rem, 10vw, 10rem);
}

.kicker-light { color: rgba(255, 255, 255, 0.5); }

.studio h2 {
  font-size: clamp(3.3rem, 7vw, 7.8rem);
}

.studio-story {
  align-self: end;
  max-width: 39rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.98rem;
}

.studio-story a,
.studio-story strong {
  color: white;
}

.studio-lede {
  color: white;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-style: italic;
  line-height: 1.25;
}

.stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(5rem, 10vw, 10rem);
  border-block: 1px solid rgba(255, 255, 255, 0.14);
}

.stat {
  padding: clamp(2rem, 4vw, 4rem) 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.stat:last-child { border-right: 0; }

.stat strong,
.stat > span {
  display: block;
}

.stat strong {
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.07em;
}

.stat > span {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.principles {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(4rem, 10vw, 10rem);
  margin-top: clamp(6rem, 11vw, 11rem);
}

.principles-intro > p:last-child {
  max-width: 19rem;
  color: rgba(255, 255, 255, 0.55);
}

.principles ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.principles li {
  display: grid;
  grid-template-columns: 3rem 0.8fr 1.2fr;
  gap: 1rem;
  align-items: baseline;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.principles li > span {
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.principles li strong {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.principles li p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.85rem;
}

.contact {
  position: relative;
  min-height: 90svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.contact h2 {
  position: relative;
  z-index: 2;
  max-width: 13ch;
  font-size: clamp(3rem, 7.5vw, 8.5rem);
}

.contact-intro {
  position: relative;
  z-index: 2;
  max-width: 38rem;
  margin: 2rem 0 3rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.contact-actions {
  position: relative;
  z-index: 2;
  max-width: 70rem;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  border-block: 1px solid var(--ink);
}

.contact-form-trigger,
.email-copy,
.form-submit {
  appearance: none;
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

.contact-form-trigger {
  flex: 0 0 auto;
  min-height: 3.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.6rem 0;
  padding: 0.55rem 0.65rem 0.55rem 1.05rem;
  color: white;
  background: var(--ink);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: left;
  transition: background 200ms ease, transform 200ms ease;
}

.contact-form-trigger:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.contact-form-trigger i {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  color: var(--ink);
  background: var(--paper-bright);
  border-radius: 50%;
  font-style: normal;
  font-size: 1.25rem;
  transition: transform 250ms ease;
}

.contact-form-trigger[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.email-copy {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 5.1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: copy;
}

.email-copy-value {
  min-width: 0;
  font-size: clamp(1.25rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  overflow-wrap: anywhere;
  transition: color 180ms ease;
}

.copy-feedback {
  flex: 0 0 auto;
  color: var(--red);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.email-copy:hover .email-copy-value,
.email-copy.is-copied .email-copy-value {
  color: var(--red);
}

.contact-form-panel {
  position: relative;
  z-index: 3;
  width: min(70rem, 100%);
  margin-top: 1.5rem;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  background: var(--paper-bright);
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  box-shadow: 0 30px 80px rgba(23, 26, 29, 0.12);
  animation: form-open 320ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.contact-form-panel[hidden] {
  display: none;
}

@keyframes form-open {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
}

.contact-form label > span {
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.contact-form label > span small {
  margin-left: 0.35rem;
  font-size: 0.58rem;
  font-weight: 500;
  opacity: 0.7;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(23, 26, 29, 0.26);
  border-radius: 0;
  outline: 0;
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 180ms ease;
}

.contact-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
}

.form-message {
  grid-column: 1 / -1;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  margin-top: 1.6rem;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem 0.9rem 0.85rem 1.2rem;
  color: white;
  background: var(--red);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.form-submit i {
  display: grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  color: var(--red);
  background: white;
  border-radius: 50%;
  font-style: normal;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.6;
}

.form-status {
  min-height: 1.3em;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.74rem;
}

.form-status.is-success { color: #16735f; }
.form-status.is-error { color: var(--red-dark); }
.form-honeypot { position: absolute !important; left: -9999px !important; }

.response-note {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.4rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.contact-shape {
  position: absolute;
  right: -4vw;
  bottom: -9vw;
  width: min(40vw, 580px);
  aspect-ratio: 1;
  background: var(--red);
  border-radius: 52% 48% 43% 57% / 41% 37% 63% 59%;
  transform: rotate(-12deg);
  animation: contact-shape 8s ease-in-out infinite alternate;
}

.contact-shape::after {
  content: "";
  position: absolute;
  left: 10%;
  bottom: -7%;
  width: 18%;
  height: 25%;
  background: var(--red);
  clip-path: polygon(100% 0, 0 100%, 78% 74%);
}

.contact-shape span {
  position: absolute;
  top: 52%;
  width: 4%;
  aspect-ratio: 1;
  background: var(--paper);
  border-radius: 50%;
}

.contact-shape span:nth-child(1) { left: 40%; }
.contact-shape span:nth-child(2) { left: 49%; }
.contact-shape span:nth-child(3) { left: 58%; }

@keyframes contact-shape {
  to { border-radius: 40% 60% 56% 44% / 58% 51% 49% 42%; transform: rotate(-4deg) translateY(-2%); }
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: start;
  gap: 2rem;
  padding: 3.5rem var(--pad) 2rem;
  color: #f5f2ed;
  background: var(--ink);
  font-size: 0.74rem;
}

.site-footer > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
}

.brand-mark-light { background: #f5f2ed; }
.brand-mark-light i { background: var(--ink); }

.footer-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1.6rem;
}

.footer-links a { color: rgba(255, 255, 255, 0.66); }
.footer-links a:hover { color: white; }
.site-footer .copyright {
  grid-column: 1 / -1;
  margin-top: 3rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 550;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 800ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 180ms; }
.reveal-delay-3 { transition-delay: 260ms; }

/* App detail pages */
.app-detail-page {
  background: var(--paper-bright);
}

.app-detail-page .site-header.header-solid {
  background: rgba(251, 250, 247, 0.9);
}

.app-detail-hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  padding: clamp(8.5rem, 13vw, 11rem) var(--pad) clamp(5rem, 8vw, 8rem);
  overflow: hidden;
}

.app-detail-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: clamp(2rem, 6vw, 7rem);
}

.app-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.app-title-row img {
  width: clamp(3.6rem, 6vw, 5.5rem);
  height: auto;
  border-radius: 24%;
  box-shadow: 0 14px 34px rgba(23, 26, 29, 0.14);
}

.app-detail-copy h1 {
  margin: 0;
  font-size: clamp(4.5rem, 10vw, 11rem);
  font-weight: 600;
  line-height: 0.83;
  letter-spacing: -0.085em;
}

.app-detail-tagline {
  margin: clamp(1.5rem, 3vw, 2.6rem) 0 0;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.6vw, 4rem);
  font-style: italic;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.app-detail-summary {
  max-width: 38rem;
  margin: 1.5rem 0 0;
  color: rgba(23, 26, 29, 0.66);
  font-size: clamp(0.96rem, 1.35vw, 1.18rem);
}

.app-detail-actions {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  margin-top: 2.2rem;
}

.app-detail-actions-wrap {
  flex-wrap: wrap;
}

.app-detail-visual {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 720px;
  border-radius: var(--radius);
  overflow: hidden;
}

.app-detail-visual::before,
.app-detail-visual::after {
  content: "";
  position: absolute;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.15;
}

.app-detail-visual::before {
  width: 72%;
  aspect-ratio: 1;
  top: 8%;
  left: 8%;
}

.app-detail-visual::after {
  width: 52%;
  aspect-ratio: 1;
  right: 4%;
  bottom: 2%;
}

.app-detail-device {
  position: absolute;
  z-index: 2;
  bottom: -15%;
  width: min(58%, 430px);
  aspect-ratio: 0.49;
  padding: 0.55rem;
  background: #101214;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: clamp(2.2rem, 4.5vw, 4.5rem);
  box-shadow: 0 48px 90px rgba(0, 0, 0, 0.28);
  transform: rotate(3deg);
  overflow: hidden;
}

.app-detail-device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: inherit;
}

.app-detail-subby .app-detail-hero {
  color: #f7f5f1;
  background: #222638;
}

.app-detail-subby .app-detail-summary { color: rgba(247, 245, 241, 0.64); }
.app-detail-subby .tags span { border-color: rgba(247, 245, 241, 0.23); }
.app-detail-subby .button-dark { color: var(--ink); background: #7875ff; }
.app-detail-subby .app-detail-visual { background: #11141e; }
.app-detail-subby .app-detail-device { transform: rotate(-3deg); }

.app-detail-trailo .app-detail-hero { background: #d6e7df; }
.app-detail-trailo .app-detail-visual { background: #b7d6ca; }

.app-detail-doso .app-detail-hero { background: #f2d9ca; }
.app-detail-doso .app-detail-visual { background: #f7e7db; }

.app-detail-solvee .app-detail-hero { background: #dce8d9; }
.app-detail-solvee .app-detail-visual {
  color: white;
  background: radial-gradient(circle at 50% 50%, #284e39, #0d2117 68%);
}

.app-detail-device-solvee {
  width: min(54%, 390px);
  transform: rotate(-4deg);
}

.app-acquired-stamp {
  position: absolute;
  z-index: 3;
  top: 10%;
  right: 6%;
  display: grid;
  place-items: center;
  width: clamp(6rem, 11vw, 9rem);
  aspect-ratio: 1;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  transform: rotate(10deg);
}

.app-detail-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(4rem, 10vw, 11rem);
  padding: clamp(7rem, 12vw, 12rem) var(--pad);
}

.app-detail-intro h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.7rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.app-detail-intro > p:last-child {
  max-width: 33rem;
  margin-top: 2rem;
  color: var(--muted);
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.3rem;
  padding: 2.2rem 0;
  border-top: 1px solid var(--line);
}

.feature-list li > span {
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.feature-list h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  letter-spacing: -0.035em;
}

.feature-list p {
  max-width: 36rem;
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.health-note {
  margin: 0 var(--pad) clamp(5rem, 8vw, 8rem);
  padding: 1.4rem 1.6rem;
  color: #59483d;
  background: #f5e5d9;
  border: 1px solid #e4cbbc;
  border-radius: 1rem;
  font-size: 0.8rem;
}

.app-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 var(--pad) clamp(6rem, 10vw, 10rem);
  border-block: 1px solid var(--ink);
}

.app-facts > div {
  min-height: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.4rem;
  border-right: 1px solid var(--line);
}

.app-facts > div:last-child { border-right: 0; }
.app-facts span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-facts strong {
  font-size: clamp(0.9rem, 1.4vw, 1.15rem);
}

.next-project {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(4rem, 8vw, 8rem) var(--pad);
  color: white;
  background: var(--ink);
}

.next-project > span {
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.next-project a {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.next-project i {
  color: var(--red);
  font-family: var(--sans);
  font-style: normal;
  transition: transform 220ms ease;
}

.next-project a:hover i { transform: translateX(0.25em); }

.not-found {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 8rem var(--pad) 5rem;
}

.not-found h1 {
  margin: 0;
  font-size: clamp(4rem, 10vw, 11rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.08em;
}

.not-found h1 em {
  color: var(--red);
  font-family: var(--serif);
  font-weight: 400;
}

.not-found > p:not(.kicker) {
  margin: 2rem 0;
  color: var(--muted);
}

/* Privacy policy */
.privacy-page { background: var(--paper-bright); }

.privacy-back {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-wrap {
  padding: 10rem var(--pad) clamp(7rem, 12vw, 12rem);
}

.policy-hero {
  max-width: 84rem;
  margin: 0 auto clamp(6rem, 10vw, 10rem);
}

.policy-hero h1 {
  max-width: 7ch;
  font-size: clamp(4.5rem, 11vw, 12rem);
}

.policy-meta {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(3rem, 6vw, 6rem);
  padding-top: 1.2rem;
  border-top: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 0.63rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.policy-meta p { margin: 0; }

.policy-content {
  max-width: 57rem;
  margin: 0 auto;
  color: #4e4d49;
  font-size: 0.97rem;
  line-height: 1.85;
}

.policy-intro {
  margin: 0 0 clamp(5rem, 9vw, 9rem);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3.3vw, 3rem);
  font-style: italic;
  line-height: 1.34;
}

.policy-content section {
  margin-top: clamp(4rem, 8vw, 7rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.policy-content h2 {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin: 0 0 2rem;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.policy-content h2 span {
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0;
}

.policy-content h2 small {
  font-size: 0.47em;
  font-weight: 400;
  letter-spacing: 0;
}

.policy-content h3 {
  margin: 2.3rem 0 1rem;
  color: var(--ink);
  font-size: 0.92rem;
}

.policy-content ul {
  padding-left: 1.3rem;
}

.policy-content li { padding-left: 0.5rem; margin: 0.5rem 0; }
.policy-content a { color: var(--ink); border-bottom: 1px solid var(--ink); }
.policy-content address { color: var(--ink); font-style: normal; }

.table-scroll {
  margin: 2rem 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.policy-content table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
  font-size: 0.76rem;
  line-height: 1.5;
}

.policy-content th,
.policy-content td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.policy-content th {
  color: var(--ink);
  background: var(--paper);
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-content tr:last-child td { border-bottom: 0; }

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr 0.8fr;
    gap: 2.5rem;
  }

  .hero h1 { font-size: clamp(3.4rem, 7.5vw, 6rem); }
  .project-card { min-height: 680px; }
  .principles li { grid-template-columns: 2rem 0.85fr 1.15fr; }
}

@media (max-width: 820px) {
  .site-header { padding-top: 1rem; padding-bottom: 1rem; }
  .menu-toggle { display: block; z-index: 2; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(3.75px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-3.75px) rotate(-45deg); }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    padding: 6rem var(--pad);
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav > a:not(.nav-cta) { font-size: clamp(2.8rem, 10vw, 5rem); letter-spacing: -0.07em; }
  .nav-cta { margin-top: 1.5rem; font-size: 0.9rem; }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 9rem;
    padding-bottom: 8rem;
  }

  .hero h1 { font-size: clamp(3.5rem, 13vw, 6.5rem); }
  .hero-art { width: min(88vw, 580px); justify-self: center; margin-top: 2rem; }
  .logo-card { width: 100%; }
  .scroll-cue { display: none; }

  .section-heading,
  .studio-grid,
  .principles {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .section-heading > p { max-width: 34rem; }

  .project-card {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .project-copy { min-height: 560px; }
  .project-visual { min-height: 690px; }
  .phone { width: min(56%, 390px); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
  .principles li { grid-template-columns: 2.5rem 0.9fr 1.1fr; }
  .contact { min-height: 75svh; }
  .contact-shape { opacity: 0.25; width: 55vw; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer > p:not(.copyright) { display: none; }
  .app-detail-hero {
    grid-template-columns: 1fr;
    padding-top: 8.5rem;
  }
  .app-detail-copy { padding-right: 0; padding-bottom: 4rem; }
  .app-detail-visual { min-height: 690px; }
  .app-detail-device { width: min(56%, 390px); }
  .app-detail-content { grid-template-columns: 1fr; gap: 4rem; }
  .app-facts { grid-template-columns: repeat(2, 1fr); }
  .app-facts > div:nth-child(2) { border-right: 0; }
  .app-facts > div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .next-project { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .hero { padding-top: 7.5rem; }
  .eyebrow { margin-bottom: 1.4rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-note { font-size: 0.48rem; }
  .section-heading h2 { font-size: 2.9rem; }
  .project-copy { min-height: 510px; padding: 1.6rem; }
  .project-card h3 { font-size: 4rem; }
  .project-tagline { font-size: 1.75rem; }
  .project-topline { align-items: flex-start; }
  .project-status { max-width: 9rem; text-align: center; }
  .project-visual { min-height: 570px; }
  .phone { width: 67%; bottom: -11%; }
  .floating-pill { right: 2%; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding-left: 0; }
  .principles li { grid-template-columns: 2rem 1fr; }
  .principles li p { grid-column: 2; }
  .contact h2 { font-size: 3.45rem; }
  .contact-actions { align-items: stretch; flex-direction: column; gap: 0; padding: 0.7rem 0; }
  .email-copy { min-height: 3.8rem; padding: 0.6rem 0; }
  .email-copy-value { font-size: 1.08rem; }
  .contact-form-trigger { width: 100%; min-height: 4.1rem; margin: 0.35rem 0 0; }
  .form-grid { grid-template-columns: 1fr; }
  .form-message { grid-column: auto; }
  .form-footer { align-items: flex-start; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .policy-wrap { padding-top: 8rem; }
  .policy-meta { flex-direction: column; gap: 0.4rem; }
  .policy-content h2 { align-items: flex-start; }
  .app-detail-copy h1 { font-size: clamp(4.5rem, 22vw, 7rem); }
  .app-detail-tagline { font-size: 2rem; }
  .app-title-row { align-items: flex-start; }
  .app-detail-actions { align-items: flex-start; flex-direction: column; }
  .app-detail-visual { min-height: 570px; }
  .app-detail-device,
  .app-detail-device-solvee { width: 68%; }
  .app-facts { grid-template-columns: 1fr; }
  .app-facts > div {
    min-height: 7rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .app-facts > div:last-child { border-bottom: 0; }
  .next-project a { font-size: 3.3rem; }
}

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