@font-face {
  font-family: "Urbanist";
  src: url("../assets/fonts/urbanist-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

@font-face {
  font-family: "Sedgwick Ave Display";
  src: url("../assets/fonts/sedgwick-ave-display-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Rock Salt";
  src: url("../assets/fonts/rock-salt-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --onshop-pink: #f85888;
  --onshop-pink-hot: #ff6f9f;
  --onshop-pink-deep: #b52a5c;
  --onshop-pink-shadow: #7c1439;
  --onshop-pink-rgb: 248, 88, 136;
  --onshop-pink-hot-rgb: 255, 111, 159;
  --onshop-pink-shadow-rgb: 124, 20, 57;
  --red: var(--onshop-pink);
  --red-action: var(--onshop-pink);
  --red-hot: var(--onshop-pink-hot);
  --red-deep: var(--onshop-pink-deep);
  --red-shadow: var(--onshop-pink-shadow);
  --red-mist: rgba(var(--onshop-pink-rgb), .32);
  --red-glow: rgba(var(--onshop-pink-hot-rgb), .24);
  --red-dark: var(--red-deep);
  --black: #080808;
  --black-soft: #121212;
  --ink: #171717;
  --white: #f6f4ef;
  --paper: #e9e6df;
  --muted: #aaa7a1;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  --header-h: 76px;
  --max: 1280px;
  --font-system: "Urbanist", Arial, sans-serif;
  --font-spray: "Sedgwick Ave Display", "Arial Black", sans-serif;
  --font-hand: "Rock Salt", "Segoe Print", cursive;
  --motion-control: 220ms;
  --motion-stamp: 360ms;
  --motion-spray: 1100ms;
  --ease-snap: cubic-bezier(.2, .9, .3, 1);
  --ease-street: cubic-bezier(.16, .8, .23, 1);
  --ease-settle: cubic-bezier(.22, 1, .36, 1);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-system);
  font-size: 16px;
  letter-spacing: 0;
  overflow-x: hidden;
}
body::selection { background: var(--red); color: #fff; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
img { max-width: 100%; }

.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;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 10px 14px;
  background: #fff;
  color: #000;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.site-noise {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0.065;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(20px, 4vw, 64px);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, height 180ms ease;
}
.site-header.scrolled,
.site-header.is-solid {
  height: 66px;
  background: rgba(8, 8, 8, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 8px; font-weight: 900; }
.brand-on {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--red);
  color: #fff;
  transform: rotate(-3deg);
  box-shadow: 4px 4px 0 #fff;
  font-size: 18px;
}
.brand-rest { font-size: 17px; letter-spacing: 0.08em; }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 42px); }
.main-nav a {
  position: relative;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 3px;
  background: var(--red);
  transition: right 160ms ease;
}
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.main-nav .nav-office {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.25);
}
[data-office-link][hidden] { display: none !important; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}
.menu-toggle span { display: block; height: 2px; margin: 7px 0; background: #fff; }
.runtime-notice {
  margin: 0 0 18px;
  padding: 11px 14px;
  border: 1px solid rgba(0,0,0,.16);
  background: #f3f0e9;
  color: #151515;
  font-size: 12px;
  font-weight: 900;
}
.runtime-notice[data-mode="local-demo"] { border-color: var(--red); }
.runtime-notice[data-mode="unavailable"] { background: #171717; color: #fff; }

.street-hero {
  position: relative;
  --hero-parallax-x: 0px;
  --hero-parallax-y: 0px;
  --hero-wall-yaw: 5.8deg;
  --hero-wall-roll: -1.1deg;
  min-height: max(760px, 100svh);
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background: #dcd8d0;
  color: #090909;
}
.street-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  filter: saturate(1.04) contrast(1.03);
}
.street-fallback {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: #dcd8d0;
  transition: opacity 260ms ease;
}
.hero-webgl .street-fallback { opacity: 0; }
.fallback-primary-wall,
.fallback-return-wall {
  position: absolute;
  top: 7%;
  bottom: 24%;
  background-color: #efede7;
  background-color: #efede7;
  background-image:
    linear-gradient(335deg, rgba(0,0,0,.16) 3px, transparent 3px),
    linear-gradient(25deg, rgba(255,255,255,.76) 3px, transparent 3px),
    linear-gradient(90deg, #171717 4px, transparent 4px),
    linear-gradient(#171717 4px, transparent 4px);
  background-size: 92px 42px, 92px 42px, 92px 42px, 92px 42px;
  background-position: 0 0, 0 0, 46px 21px, 0 0;
  box-shadow: inset 0 0 60px rgba(0,0,0,.12), 0 20px 50px rgba(0,0,0,.24);
}
.fallback-primary-wall {
  left: -2%;
  width: 73%;
  transform: perspective(900px) rotateY(4deg);
  transform-origin: right center;
}
.fallback-return-wall {
  right: -4%;
  width: 34%;
  transform: perspective(760px) rotateY(-42deg);
  transform-origin: left center;
  filter: brightness(.91);
}
.fallback-return-wall::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -10px;
  width: 18px;
  background: rgba(0,0,0,.5);
  filter: blur(5px);
}
.fallback-sidewalk {
  position: absolute;
  left: -3%;
  right: -3%;
  bottom: 10%;
  height: 22%;
  transform: perspective(650px) rotateX(63deg);
  transform-origin: center bottom;
  background:
    repeating-linear-gradient(90deg, transparent 0 24%, rgba(30,30,30,.28) 24.2% 24.5%),
    repeating-linear-gradient(0deg, transparent 0 47%, rgba(30,30,30,.24) 47.5% 48%),
    #bbb8b1;
  box-shadow: inset 0 18px 30px rgba(0,0,0,.13);
}
.fallback-sidewalk span {
  position: absolute;
  right: 25%;
  top: 26%;
  color: #111;
  font-family: "Rock Salt", cursive;
  font-size: clamp(12px, 1.5vw, 23px);
  transform: rotate(-4deg);
}
.fallback-curb {
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 12%;
  height: 6%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(90deg, #c7c4bd 0 18%, var(--red-action) 18% 57%, #c7c4bd 57%);
  border-top: 3px solid #1a1a1a;
  border-bottom: 6px solid #6f6d68;
  color: rgba(255,255,255,.84);
  font-weight: 900;
  letter-spacing: 2.5em;
  white-space: nowrap;
}
.fallback-asphalt {
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -1%;
  height: 15%;
  background:
    radial-gradient(ellipse at 42% 0, rgba(var(--onshop-pink-rgb), .19), transparent 38%),
    repeating-radial-gradient(circle at 20% 60%, rgba(255,255,255,.035) 0 1px, transparent 1px 5px),
    #171717;
}
.fallback-can {
  position: absolute;
  left: 8%;
  bottom: 7%;
  width: 72px;
  height: 138px;
  display: grid;
  place-items: center;
  border-radius: 14px 14px 22px 22px;
  border-top: 12px solid #898986;
  border-bottom: 22px solid var(--red-action);
  background: #101010;
  color: #fff;
  font-weight: 900;
  font-size: 24px;
  transform: rotate(-11deg);
  box-shadow: 16px 18px 24px rgba(0,0,0,.34);
}
.fallback-can::before {
  content: "";
  position: absolute;
  right: 8px;
  top: -20px;
  width: 18px;
  height: 11px;
  background: var(--red-hot);
}
.fallback-can span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 36px;
  background: var(--red-action);
}
.fallback-stencil,
.fallback-hand,
.fallback-poster {
  position: absolute;
  color: var(--red-action);
}
.fallback-stencil { top: 20%; left: 26%; font-weight: 900; transform: rotate(-4deg); }
.fallback-hand { top: 44%; left: 42%; font-family: "Rock Salt", cursive; color: rgba(20,20,20,.6); }
.fallback-poster {
  right: 7%;
  bottom: 18%;
  padding: 12px;
  background: var(--red-action);
  color: #fff;
  font-weight: 900;
  transform: rotate(3deg);
  box-shadow: 5px 6px 0 #111;
}
.street-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.17), transparent 17%, transparent 78%, rgba(0,0,0,.22)),
    linear-gradient(0deg, rgba(0,0,0,.28), transparent 26%);
}
.street-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 27% 36%, var(--red-glow), transparent 21%),
    linear-gradient(110deg, transparent 25%, rgba(255,255,255,.17) 45%, transparent 58%);
  opacity: .78;
  animation: streetSurfaceSweep 8s ease-in-out infinite;
}
@keyframes streetSurfaceSweep {
  0%, 12% { transform: translateX(-12%); opacity: .42; }
  52% { transform: translateX(5%); opacity: .82; }
  100% { transform: translateX(13%); opacity: .48; }
}
.hero-content {
  width: min(960px, calc(100% - 48px));
  margin-left: clamp(-170px, -11vw, -40px);
  padding: calc(var(--header-h) + 72px) 0 132px;
  text-align: left;
  position: relative;
  z-index: 5;
  animation: heroCameraLock 1.2s cubic-bezier(.16,.8,.23,1) both;
}
@keyframes heroCameraLock {
  from { opacity: 0; transform: translate3d(0, 40px, 180px) scale(1.08); filter: blur(8px); }
  to { opacity: 1; transform: translate3d(0,0,0) scale(1); filter: blur(0); }
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  padding: 8px 12px;
  border: 1px solid rgba(0,0,0,.22);
  background: rgba(246,244,239,.9);
  color: #111;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  box-shadow: 5px 5px 0 rgba(17,17,17,.16);
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(var(--onshop-pink-rgb), .6);
  animation: livePulse 1.6s infinite;
}
@keyframes livePulse { 70% { box-shadow: 0 0 0 9px rgba(var(--onshop-pink-rgb), 0); } }
.spray-lockup {
  position: relative;
  display: grid;
  justify-items: start;
  width: min(920px, 100%);
  max-width: calc(100vw - 48px);
  padding: 12px 0 20px;
  isolation: isolate;
  transform:
    perspective(1200px)
    translate3d(var(--hero-parallax-x), var(--hero-parallax-y), 0)
    rotateY(calc(var(--hero-wall-yaw) * .5))
    rotateZ(calc(var(--hero-wall-roll) * .72))
    skewY(-.18deg);
  transform-origin: 22% 50%;
  transition: transform var(--motion-control) var(--ease-street), filter var(--motion-control) ease;
}
.spray-lockup::before,
.spray-lockup::after {
  content: "";
  position: absolute;
  width: 48%;
  height: 54%;
  filter: blur(22px);
  opacity: .16;
  z-index: -1;
  transform: skewX(-16deg);
}
.spray-lockup::before { left: -2%; top: 28%; background: var(--red-action); }
.spray-lockup::after { right: 12%; bottom: 8%; background: #111; }
.wall-painted-domain::before {
  opacity: .2;
  mix-blend-mode: multiply;
}
.wall-painted-domain::after {
  opacity: .22;
}
.domain-dot { color: var(--red-hot); }
.spray-title, .spray-shadow {
  grid-area: 1 / 1;
  margin: 0;
  font-family: var(--font-spray);
  font-size: clamp(64px, 8.4vw, 132px);
  line-height: .82;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
}
.spray-title {
  position: relative;
  color: var(--red);
  filter: url("#rough");
  text-shadow:
    1px 2px 0 var(--red-deep),
    -1px 0 0 var(--red-hot),
    0 10px 22px rgba(var(--onshop-pink-shadow-rgb), .28);
  clip-path: inset(0 100% 0 0);
  animation: sprayReveal 1.8s .35s cubic-bezier(.16,.8,.23,1) forwards;
}
.spray-shadow {
  color: #111;
  transform: translate(13px, 15px) rotate(-.9deg) skewX(-2deg);
  clip-path: inset(0 100% 0 0);
  opacity: .92;
  animation: blackSprayPass .55s 2.12s cubic-bezier(.2,.8,.2,1) forwards;
}
.spray-pooling {
  grid-area: 1 / 1;
  align-self: end;
  justify-self: start;
  width: 74%;
  height: 12px;
  margin: 0 0 7px 2%;
  opacity: 0;
  filter: blur(1px);
  background:
    radial-gradient(ellipse at 12% 40%, rgba(var(--onshop-pink-hot-rgb), .52) 0 15%, transparent 34%),
    radial-gradient(ellipse at 46% 46%, rgba(var(--onshop-pink-rgb), .34) 0 16%, transparent 42%),
    linear-gradient(90deg, rgba(var(--onshop-pink-shadow-rgb), .38), rgba(var(--onshop-pink-shadow-rgb), .24), transparent 92%);
  transform: translate3d(6px, 13px, 0) skewX(-14deg) scaleX(.7);
  transform-origin: left;
  mix-blend-mode: multiply;
  animation: sprayPooling 1.2s 1.92s var(--ease-settle) forwards;
}
.spray-pass {
  grid-area: 1 / 1;
  justify-self: start;
  width: 16%;
  height: 135%;
  opacity: 0;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(var(--onshop-pink-hot-rgb), .68), var(--red-mist) 40%, transparent 72%);
  mix-blend-mode: screen;
  animation: sprayPass 1.8s .3s ease-out forwards;
}
@keyframes sprayReveal { to { clip-path: inset(0 0 0 0); } }
@keyframes blackSprayPass { to { clip-path: inset(0 0 0 0); } }
@keyframes sprayPass { 10% { opacity: .75; } 90% { opacity: .55; } 100% { opacity: 0; transform: translateX(450%); } }
@keyframes sprayPooling {
  0% { opacity: 0; transform: translate3d(6px, 13px, 0) skewX(-14deg) scaleX(.2); }
  54% { opacity: .48; }
  100% { opacity: .32; transform: translate3d(6px, 13px, 0) skewX(-14deg) scaleX(.92); }
}
.hero-line {
  max-width: 700px;
  margin: 18px 0 32px;
  color: #171717;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.35;
  font-weight: 600;
}
.hero-line strong { background: #111; color: #fff; padding: 2px 6px; }
.hero-actions { display: flex; justify-content: flex-start; gap: 14px; flex-wrap: wrap; }
.cta {
  position: relative;
  min-height: 66px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 13px 24px;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  overflow: hidden;
  font-weight: 900;
  text-align: left;
  transform: translateZ(0);
  transition: transform 150ms ease, box-shadow 150ms ease, filter 150ms ease;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.24), transparent 70%);
  transform: translateX(-120%);
  transition: transform 450ms ease;
}
.cta:hover::before { transform: translateX(120%); }
.cta:hover { transform: translateY(-4px); }
.cta:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 5px;
  box-shadow: 0 0 0 8px #111, 8px 8px 0 var(--red-deep);
}
.cta span { position: relative; font-size: 15px; letter-spacing: .05em; }
.cta small { position: relative; margin-top: 3px; font-size: 11px; font-weight: 700; opacity: .75; }
.cta-primary { background: var(--red-action); color: #fff; box-shadow: 8px 8px 0 #111; }
.cta-primary:hover { background: var(--red-hot); box-shadow: 10px 10px 0 #111; }
.cta-ghost { background: #f5f2eb; color: #111; border: 2px solid #111; box-shadow: 7px 7px 0 rgba(17,17,17,.34); }
.cta-ghost::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 5px;
  background: var(--red-action);
  transition: right 220ms ease;
}
.cta-ghost:hover::after, .cta-ghost:focus-visible::after { right: 0; }
.cta-light { background: #fff; color: #111; box-shadow: 7px 7px 0 #000; }
.hero-proof {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  margin: 48px 0 0;
  max-width: 820px;
  transform: rotate(-1deg);
}
.hero-proof span {
  flex: 1;
  padding: 11px 12px;
  border: 1px solid rgba(0,0,0,.3);
  border-right: 0;
  background: #eeeae2;
  color: #111;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 5px 0 rgba(0,0,0,.18);
}
.hero-proof span:last-child { border-right: 1px solid rgba(0,0,0,.3); }
.hero-proof b { color: var(--red); margin-right: 4px; }
.hero-expression-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: visible;
  transform: translate3d(calc(var(--hero-parallax-x) * .45), calc(var(--hero-parallax-y) * .35), 0);
  transition: transform var(--motion-control) var(--ease-street);
}
.hero-expression {
  position: absolute;
  width: max-content;
  max-width: none;
  padding: .2em .18em .28em;
  margin: -.2em -.18em -.28em;
  pointer-events: none;
  font-family: var(--font-hand);
  line-height: .9;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
  text-transform: uppercase;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform: var(--expression-transform, none);
  transform-origin: 50% 50%;
  will-change: transform, clip-path, opacity, filter;
}
.hero-expression::after {
  content: "";
  position: absolute;
  inset: -34% -22%;
  z-index: -1;
  opacity: 0;
  background:
    radial-gradient(ellipse at 32% 48%, rgba(var(--onshop-pink-hot-rgb), .28), transparent 42%),
    radial-gradient(ellipse at 68% 55%, rgba(var(--onshop-pink-rgb), .2), transparent 48%);
  filter: blur(11px);
  mix-blend-mode: multiply;
}
.hero-expression-dominant {
  --expression-transform: rotate(-8deg) skewX(-2deg);
  --expression-readable-opacity: .86;
  left: clamp(24px, 3vw, 64px);
  top: clamp(58px, 7.6vh, 72px);
  color: var(--red-action);
  font-family: var(--font-spray);
  font-size: clamp(72px, 7.2vw, 115px);
  text-shadow:
    3px 4px 0 rgba(17,17,17,.2),
    -1px 0 0 var(--red-hot),
    0 0 22px rgba(var(--onshop-pink-rgb), .28);
}
.hero-expression-side {
  --expression-transform: rotate(8deg);
  --expression-readable-opacity: .82;
  right: clamp(24px, 3.2vw, 72px);
  top: clamp(150px, 22vh, 240px);
  color: var(--red-hot);
  font-family: var(--font-spray);
  font-size: clamp(58px, 6vw, 90px);
  text-align: center;
  text-shadow:
    2px 3px 0 rgba(17,17,17,.15),
    0 0 18px rgba(var(--onshop-pink-rgb), .24);
}
.hero-expression-ground {
  --expression-transform: rotate(-5deg) skewX(-12deg);
  --expression-readable-opacity: .66;
  right: 8%;
  bottom: 14%;
  color: rgba(10,10,10,.66);
  font-family: var(--font-spray);
  font-size: clamp(30px, 3.05vw, 46px);
  text-shadow: 0 0 14px rgba(var(--onshop-pink-rgb), .15);
}
.hero-expression-old {
  --expression-transform: rotate(-11deg);
  --expression-readable-opacity: .2;
  left: clamp(360px, 36vw, 520px);
  top: clamp(88px, 11vh, 104px);
  color: rgba(10,10,10,.28);
  font-family: var(--font-spray);
  font-size: clamp(70px, 6.7vw, 105px);
}
.hero-expression.is-readable {
  clip-path: inset(0 0 0 0);
  opacity: var(--expression-readable-opacity, .72);
}
.hero-expression.is-painting[data-effect="spray"] {
  animation: expressionSpray var(--motion-spray) var(--ease-street) forwards;
}
.hero-expression.is-painting[data-effect="spray"]::after {
  animation: expressionMist 900ms ease-out forwards;
}
.hero-expression.is-painting[data-effect="stencil"] {
  animation: expressionStencil 520ms steps(4, end) forwards;
}
.hero-expression.is-painting[data-effect="stamp"] {
  animation: expressionStamp var(--motion-stamp) var(--ease-snap) forwards;
}
.hero-expression[data-effect="peel"]::before {
  content: "";
  position: absolute;
  left: 12%;
  right: auto;
  bottom: -.16em;
  width: 38%;
  height: .07em;
  border-radius: 999px;
  background: rgba(var(--onshop-pink-rgb), .24);
  transform: scaleX(0);
  transform-origin: left;
}
.hero-expression.is-painting[data-effect="peel"] {
  animation: expressionPeel 880ms var(--ease-settle) forwards;
}
.hero-expression.is-painting[data-effect="peel"]::before {
  animation: expressionPeelEdge 560ms 180ms ease forwards;
}
.hero-expression.is-painting[data-effect="weather"] {
  animation: expressionWeather 1200ms ease forwards;
}
.hero-mural-stamp .hero-expression-dominant {
  clip-path: inset(0 0 0 0);
  opacity: .84;
  transform: var(--expression-transform) scale(1.03);
  text-shadow:
    2px 2px 0 rgba(255,255,255,.62),
    4px 4px 0 rgba(17,17,17,.18),
    0 0 16px rgba(var(--onshop-pink-rgb), .2);
}
.hero-sell-cue .hero-expression-dominant {
  color: var(--red-hot);
  filter: saturate(1.08);
}
@keyframes expressionSpray {
  0% { clip-path: inset(0 100% 0 0); opacity: 0; transform: var(--expression-transform) translate3d(-8px, 3px, 0) scale(1.035); filter: blur(3px); }
  70% { opacity: var(--expression-readable-opacity, .72); filter: blur(.45px); }
  100% { clip-path: inset(0 0 0 0); opacity: var(--expression-readable-opacity, .72); transform: var(--expression-transform); filter: blur(0); }
}
@keyframes expressionMist {
  0% { opacity: 0; transform: scale(.7); }
  35% { opacity: .58; }
  100% { opacity: 0; transform: scale(1.22); }
}
@keyframes expressionStencil {
  0% { clip-path: inset(0 100% 0 0); opacity: 0; filter: contrast(1.4); }
  100% { clip-path: inset(0 0 0 0); opacity: var(--expression-readable-opacity, .72); filter: contrast(1); }
}
@keyframes expressionStamp {
  0% { clip-path: inset(0 0 0 0); opacity: 0; transform: var(--expression-transform) scale(1.55); }
  68% { opacity: .82; transform: var(--expression-transform) scale(.96); }
  100% { clip-path: inset(0 0 0 0); opacity: var(--expression-readable-opacity, .72); transform: var(--expression-transform) scale(1); }
}
@keyframes expressionPeel {
  0% { clip-path: inset(0 0 100% 0); opacity: 0; transform: var(--expression-transform) translateY(10px); }
  100% { clip-path: inset(0 0 0 0); opacity: var(--expression-readable-opacity, .72); transform: var(--expression-transform); }
}
@keyframes expressionPeelEdge {
  to { transform: scaleX(1); }
}
@keyframes expressionWeather {
  0% { clip-path: inset(0 100% 0 0); opacity: 0; filter: blur(2px); }
  100% { clip-path: inset(0 0 0 0); opacity: var(--expression-readable-opacity, .28); filter: blur(.2px); }
}
.scroll-cue {
  position: absolute;
  right: 28px;
  bottom: 30px;
  color: #111;
  font-size: 10px;
  font-weight: 900;
  writing-mode: vertical-rl;
  letter-spacing: .14em;
}
.scroll-cue span { display: inline-block; width: 1px; height: 42px; margin-top: 8px; background: #111; animation: cue 1.5s infinite; }
@keyframes cue { 50% { transform: scaleY(.5); transform-origin: bottom; } }

.ticker-band { overflow: hidden; background: var(--red); color: #fff; border-block: 2px solid #000; }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 24px; padding: 12px 0; animation: ticker 25s linear infinite; }
.ticker-track span { font-size: 13px; font-weight: 900; letter-spacing: .12em; }
.ticker-track i { width: 8px; height: 8px; background: #111; transform: rotate(45deg); }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-band { padding: clamp(76px, 9vw, 130px) clamp(20px, 5vw, 76px); }
.section-intro { max-width: 790px; margin-bottom: 60px; }
.eyebrow { margin: 0 0 12px; color: var(--red-hot); font-size: 11px; font-weight: 900; letter-spacing: .16em; }
.section-intro h2, .wall-preview h2, .commission-copy h2 {
  margin: 0;
  font-size: clamp(40px, 6vw, 84px);
  line-height: .88;
  text-transform: uppercase;
  font-family: "Sedgwick Ave Display", "Urbanist", sans-serif;
  font-weight: 400;
  letter-spacing: -.025em;
  text-shadow: 4px 4px 0 rgba(0,0,0,.18);
}
.section-intro h2 { max-width: 880px; transform: rotate(-1deg); }
.section-intro h2 span, .wall-preview h2 span {
  color: var(--red-action);
  text-shadow: 4px 4px 0 var(--red-shadow);
}
.section-intro > p:last-child { max-width: 600px; margin: 22px 0 0; color: var(--muted); font-size: 19px; }
.fast-lane { background: #090909; }
.process-lane { display: grid; grid-template-columns: repeat(4, 1fr); max-width: var(--max); margin: auto; border-top: 1px solid var(--line); }
.process-step { position: relative; min-height: 265px; padding: 30px 26px; border-right: 1px solid var(--line); overflow: hidden; }
.process-step:first-child { border-left: 1px solid var(--line); }
.process-step::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms ease;
}
.process-step:hover::after { transform: scaleX(1); }
.process-step strong { color: var(--red); font-size: 12px; letter-spacing: .12em; }
.process-step h3 {
  margin: 56px 0 10px;
  font-family: "Sedgwick Ave Display", cursive;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: .01em;
}
.process-step p { color: var(--muted); line-height: 1.5; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 500ms ease, transform 500ms ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

.wall-preview {
  position: relative;
  background: #e8e5dd;
  color: #111;
  overflow: hidden;
}
.wall-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image: linear-gradient(90deg, rgba(0,0,0,.13) 1px, transparent 1px), linear-gradient(rgba(0,0,0,.1) 1px, transparent 1px);
  background-size: 82px 42px;
}
.wall-preview > * { position: relative; }
.wall-preview-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; max-width: var(--max); margin: 0 auto 50px; }
.wall-preview h2 {
  max-width: 850px;
  font-size: clamp(48px, 7vw, 98px);
  transform: rotate(-1.4deg);
  text-shadow: 5px 5px 0 rgba(0,0,0,.14);
}
.wall-preview h2 span { display: inline-block; transform: rotate(.8deg); }
.text-link { padding-bottom: 6px; border-bottom: 3px solid #111; font-weight: 900; font-size: 12px; }
.text-link span { color: var(--red); font-size: 22px; }
.preview-grid { max-width: var(--max); margin: auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.preview-card, .product-card {
  position: relative;
  min-width: 0;
  background: #fff;
  color: #111;
  box-shadow: 9px 10px 0 rgba(0,0,0,.14);
  transform: rotate(var(--tilt, 0deg));
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.preview-card:hover, .product-card:hover { transform: rotate(0) translateY(-7px); box-shadow: 13px 17px 0 rgba(var(--onshop-pink-rgb), .24); }
.product-image { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: #d9d6d0; }
.product-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 500ms ease; }
.preview-card:hover img, .product-card:hover img { transform: scale(1.05); }
.product-image-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(-45deg, #ddd 0 12px, #e9e9e9 12px 24px);
  color: #111;
  font-size: 48px;
  font-weight: 900;
}
.product-status {
  position: absolute;
  left: -5px;
  top: 14px;
  z-index: 2;
  padding: 7px 12px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  transform: rotate(-3deg);
  box-shadow: 3px 3px 0 #111;
}
.product-status.reservado { background: #111; }
.product-status.vendido { background: #111; color: #fff; text-decoration: line-through 3px var(--red); }
.product-info { padding: 18px; }
.product-info small { color: #666; font-weight: 800; text-transform: uppercase; }
.product-info h3 { margin: 7px 0 16px; font-size: 20px; line-height: 1.08; }
.product-price-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.product-price { font-size: 25px; font-weight: 900; }
.product-open { border: 0; background: transparent; color: var(--red); font-weight: 900; cursor: pointer; }
.commission-callout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 70px;
  min-height: 620px;
  background: var(--red);
  overflow: hidden;
}
.commission-mark {
  font-family: "Sedgwick Ave Display", cursive;
  font-size: clamp(170px, 29vw, 480px);
  line-height: .7;
  color: rgba(255,255,255,.045);
  -webkit-text-stroke: 4px rgba(255,255,255,.45);
  text-shadow:
    10px 12px 0 rgba(var(--onshop-pink-shadow-rgb), .42),
    0 0 26px rgba(255,255,255,.08);
  transform: rotate(-7deg) translateX(-8%);
}
.commission-copy { max-width: 680px; }
.commission-copy .eyebrow { color: #111; }
.commission-copy h2 {
  max-width: 650px;
  font-size: clamp(58px, 7vw, 106px);
  color: #fff;
  transform: rotate(-1.5deg);
  text-shadow: 6px 7px 0 var(--red-shadow);
}
.commission-copy p { font-size: 20px; line-height: 1.55; }
.commission-copy .cta { margin-top: 20px; }

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 46px clamp(20px, 5vw, 76px);
  background: #050505;
  border-top: 1px solid var(--line);
}
.site-footer p { color: #777; font-size: 13px; }
.site-footer > div { display: flex; gap: 22px; font-size: 12px; font-weight: 800; }

/* Muro ON */
.muro-page { background: #d8d5ce; color: #111; }
.muro-hero {
  position: relative;
  min-height: 440px;
  padding: calc(var(--header-h) + 80px) clamp(20px, 5vw, 76px) 70px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  isolation: isolate;
}
.muro-hero::after { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, transparent 50%, rgba(0,0,0,.22)); }
.muro-hero h1 { margin: 0; font-size: clamp(86px, 15vw, 210px); line-height: .72; font-weight: 900; letter-spacing: -.02em; }
.muro-hero h1 em { color: var(--red); font-family: "Sedgwick Ave Display", cursive; font-style: normal; font-weight: 400; }
.muro-hero p:not(.hero-kicker) { margin: 28px 0 0; font-size: 22px; font-weight: 800; }
.muro-graffiti span { position: absolute; z-index: -1; font-family: "Rock Salt"; color: rgba(var(--onshop-pink-rgb), .32); }
.muro-graffiti span:nth-child(1) { right: 28%; top: 28%; transform: rotate(-8deg); font-size: 28px; }
.muro-graffiti span:nth-child(2) { right: 8%; top: 38%; transform: rotate(8deg); font-size: 46px; }
.muro-graffiti span:nth-child(3) { left: 52%; bottom: 16%; transform: rotate(-5deg); font-size: 24px; }
.muro-tools {
  position: sticky;
  top: 66px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 15px clamp(20px, 5vw, 76px);
  background: rgba(8,8,8,.96);
  color: #fff;
  border-block: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
}
.search-wrap { position: relative; flex: 0 1 360px; }
.search-wrap input {
  width: 100%;
  height: 46px;
  padding: 0 44px 0 16px;
  border: 1px solid #494949;
  border-radius: 3px;
  background: #1a1a1a;
  color: #fff;
}
.search-wrap span { position: absolute; right: 14px; top: 8px; font-size: 26px; color: var(--red); }
.filter-rail { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.filter-chip {
  flex: 0 0 auto;
  height: 38px;
  padding: 0 14px;
  border: 1px solid #3e3e3e;
  border-radius: 2px;
  background: transparent;
  color: #ccc;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}
.filter-chip.active, .filter-chip:hover { background: var(--red); color: #fff; border-color: var(--red); }
.muro-listing { padding: 38px clamp(20px, 5vw, 76px) 110px; min-height: 70vh; }
.muro-count { max-width: var(--max); margin: 0 auto 25px; font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.muro-count span { color: var(--red); font-size: 20px; }
.product-wall { max-width: var(--max); margin: auto; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 31px 22px; }
.product-card { cursor: pointer; }
.interest-btn {
  width: 100%;
  min-height: 46px;
  margin-top: 16px;
  border: 0;
  background: #111;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}
.interest-btn:hover { background: var(--red); }
.empty-state { padding: 90px 20px; text-align: center; }
.empty-state span { font-family: "Sedgwick Ave Display"; font-size: 100px; color: var(--red); }
.product-dialog, .agreement-dialog, .success-dialog, .office-dialog {
  width: min(980px, calc(100% - 24px));
  max-height: calc(100svh - 24px);
  padding: 0;
  border: 1px solid rgba(255,255,255,.2);
  background: #111;
  color: #fff;
  box-shadow: var(--shadow);
  overflow: auto;
}
dialog::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(7px); }
.dialog-close {
  position: absolute;
  z-index: 5;
  right: 13px;
  top: 13px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.35);
  background: #111;
  color: #fff;
  font-size: 25px;
  cursor: pointer;
}
.dialog-product { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.dialog-product-image { min-height: 520px; background: #ddd; }
.dialog-product-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dialog-product-copy { padding: 64px 44px 40px; }
.dialog-product-copy h2 { margin: 8px 0 15px; font-size: clamp(32px, 5vw, 58px); line-height: .95; }
.dialog-product-copy .big-price { display: block; margin: 26px 0; color: var(--red-hot); font-size: 38px; font-weight: 900; }
.dialog-product-copy p { color: #bbb; line-height: 1.55; }
.detail-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 26px 0; background: #333; }
.detail-list span { padding: 12px; background: #181818; font-size: 12px; }

/* Seller intake */
.sell-page { background: #0a0a0a; }
.sell-shell { min-height: 100svh; display: grid; grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr); padding-top: 66px; }
.sell-side {
  position: sticky;
  top: 66px;
  height: calc(100svh - 66px);
  padding: clamp(44px, 6vw, 90px);
  overflow: hidden;
  isolation: isolate;
  color: #111;
}
.sell-side::after { content: ""; position: absolute; inset: 0; z-index: -3; background: linear-gradient(0deg, rgba(var(--onshop-pink-rgb), .18), transparent 45%); }
.sell-side h1 { margin: 22px 0; font-size: clamp(62px, 8vw, 120px); line-height: .78; }
.sell-side h1 em { font-family: "Sedgwick Ave Display"; font-style: normal; color: var(--red); font-weight: 400; }
.sell-side > p:not(.hero-kicker) { max-width: 450px; font-size: 19px; font-weight: 700; line-height: 1.45; }
.photo-rules { margin-top: 46px; padding: 20px; border: 2px solid #111; background: rgba(255,255,255,.52); box-shadow: 8px 8px 0 rgba(0,0,0,.16); }
.photo-rules strong { font-size: 12px; letter-spacing: .12em; }
.photo-rules ul { margin: 13px 0 0; padding-left: 18px; line-height: 1.65; font-size: 13px; }
.side-tag { position: absolute; right: -10px; bottom: 45px; font-family: "Rock Salt"; color: rgba(var(--onshop-pink-rgb), .5); font-size: 27px; transform: rotate(-8deg); }
.intake-panel { padding: clamp(38px, 6vw, 82px); background: #0b0b0b; }
.intake-progress { display: flex; align-items: center; max-width: 560px; margin: 0 auto 48px; }
.intake-progress span { flex: 0 0 34px; height: 34px; display: grid; place-items: center; border: 1px solid #444; color: #777; font-weight: 900; }
.intake-progress span.active { background: var(--red); border-color: var(--red); color: #fff; }
.intake-progress i { flex: 1; height: 1px; background: #333; }
#seller-intake { max-width: 760px; margin: auto; }
.form-stage { display: none; margin: 0; padding: 0; border: 0; }
.form-stage.active { display: block; animation: stageIn 280ms ease both; }
@keyframes stageIn { from { opacity: 0; transform: translateX(20px); } }
.form-stage legend { display: block; width: 100%; font-size: clamp(34px, 5vw, 62px); line-height: .98; font-weight: 900; }
.form-stage legend span { display: block; margin-bottom: 10px; color: var(--red-hot); font-size: 11px; letter-spacing: .16em; }
.form-stage > p { color: #999; line-height: 1.5; }
.upload-zone {
  min-height: 330px;
  margin-top: 30px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 2px dashed #555;
  background: #121212;
  text-align: center;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}
.upload-zone:hover, .upload-zone.dragging { border-color: var(--red); background: rgba(var(--onshop-pink-shadow-rgb), .18); }
.upload-zone input { position: absolute; opacity: 0; pointer-events: none; }
.upload-icon { width: 74px; height: 74px; display: grid; place-items: center; margin-bottom: 20px; border: 2px solid var(--red); color: var(--red); font-size: 34px; transform: rotate(3deg); }
.upload-zone strong { font-size: 18px; letter-spacing: .08em; }
.upload-zone small { margin-top: 6px; color: #777; }
.photo-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px; }
.photo-preview { position: relative; aspect-ratio: 1; background: #222; overflow: hidden; }
.photo-preview img { width: 100%; height: 100%; object-fit: cover; }
.photo-preview b { position: absolute; left: 7px; bottom: 7px; padding: 5px 7px; background: #111; font-size: 9px; }
.photo-preview button { position: absolute; top: 6px; right: 6px; width: 30px; height: 30px; border: 0; background: var(--red); color: #fff; cursor: pointer; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 30px; }
.field { display: grid; gap: 7px; }
.field.span-2 { grid-column: span 2; }
.field > span { color: #bdbdbd; font-size: 12px; font-weight: 800; }
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 52px;
  border: 1px solid #373737;
  border-radius: 2px;
  background: #151515;
  color: #fff;
  padding: 13px 14px;
  outline: none;
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(var(--onshop-pink-rgb), .13); }
.field-error { min-height: 20px; color: #ff716b !important; font-size: 12px; font-weight: 700; }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 36px; }
.form-actions.end { justify-content: end; }
.back-btn { border: 0; background: transparent; color: #888; font-weight: 900; cursor: pointer; }
.agreement-preview { margin-top: 30px; padding: 21px; border-left: 5px solid var(--red); background: #151515; }
.agreement-preview span { color: var(--red-hot); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.agreement-preview strong { display: block; margin: 8px 0; font-size: 20px; }
.agreement-preview p { margin: 0; color: #888; font-size: 13px; line-height: 1.5; }
.check-line { display: flex; align-items: flex-start; gap: 12px; margin-top: 20px; color: #aaa; font-size: 13px; line-height: 1.45; }
.check-line input { flex: 0 0 20px; width: 20px; height: 20px; accent-color: var(--red); }
.check-line a { text-decoration: underline; color: #fff; }
.agreement-card { position: relative; padding: clamp(30px, 5vw, 64px); }
.agreement-card h2 { margin: 8px 0 28px; font-size: clamp(36px, 6vw, 70px); line-height: .93; text-transform: uppercase; }
.agreement-legal { padding: 18px; background: #f0eee8; color: #171717; max-height: 280px; overflow: auto; }
.agreement-legal p { line-height: 1.58; }
.agreement-street { margin: 20px 0; padding: 13px; background: var(--red); font-family: "Sedgwick Ave Display"; font-size: clamp(22px, 4vw, 39px); text-align: center; transform: rotate(-1deg); }
.check-line.strong { color: #fff; font-weight: 800; }
.signature-field { margin-top: 18px; }
.agreement-confirm { width: 100%; margin-top: 24px; align-items: center; }
.success-card { padding: 70px 40px; text-align: center; background: #e8e5dd; color: #111; }
.success-stamp { display: inline-block; padding: 8px 15px; border: 5px solid var(--red); color: var(--red); font-size: 32px; font-weight: 900; transform: rotate(-7deg); }
.success-card h2 { margin: 30px 0 10px; font-size: clamp(42px, 7vw, 80px); line-height: .9; }
.success-card > strong { display: block; margin: 28px 0; font-size: 22px; }
.success-card .cta { display: inline-flex; }

/* Account Home */
.account-page { background: #080808; }
.account-shell {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr);
  padding-top: 66px;
}
.account-street {
  position: sticky;
  top: 66px;
  height: calc(100svh - 66px);
  overflow: hidden;
  isolation: isolate;
  background: #d8d5ce;
}
.account-wall {
  position: absolute;
  inset: 0 0 24%;
  background-color: #e8e5dd;
  background-image:
    linear-gradient(335deg, rgba(0,0,0,.14) 3px, transparent 3px),
    linear-gradient(25deg, rgba(255,255,255,.72) 3px, transparent 3px),
    linear-gradient(90deg, #171717 4px, transparent 4px),
    linear-gradient(#171717 4px, transparent 4px);
  background-size: 92px 42px, 92px 42px, 92px 42px, 92px 42px;
  background-position: 0 0, 0 0, 46px 21px, 0 0;
  box-shadow: inset 0 0 70px rgba(0,0,0,.16);
}
.account-wall::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(var(--onshop-pink-rgb), .16), transparent 44%);
}
.account-sidewalk {
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: 6%;
  height: 28%;
  transform: perspective(650px) rotateX(58deg);
  transform-origin: center bottom;
  background:
    repeating-linear-gradient(90deg, transparent 0 23%, rgba(30,30,30,.26) 23.3% 23.7%),
    repeating-linear-gradient(0deg, transparent 0 47%, rgba(30,30,30,.22) 47.4% 47.8%),
    #bbb8b1;
  box-shadow: inset 0 18px 30px rgba(0,0,0,.14);
}
.account-sidewalk span {
  position: absolute;
  right: 24%;
  top: 26%;
  color: rgba(17,17,17,.22);
  font-size: 90px;
  font-weight: 900;
}
.account-spray-can {
  position: absolute;
  left: clamp(24px, 7vw, 84px);
  bottom: 8%;
  width: 70px;
  height: 136px;
  display: grid;
  place-items: center;
  border-radius: 14px 14px 22px 22px;
  border-top: 12px solid #898986;
  border-bottom: 22px solid var(--red-action);
  background: #101010;
  color: #fff;
  font-weight: 900;
  font-size: 23px;
  transform: rotate(-11deg);
  box-shadow: 16px 18px 24px rgba(0,0,0,.34);
}
.account-spray-can::before {
  content: "";
  position: absolute;
  right: 8px;
  top: -20px;
  width: 18px;
  height: 11px;
  background: var(--red-hot);
}
.account-spray-can span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 36px;
  background: var(--red-action);
}
.account-wire {
  position: absolute;
  left: -8%;
  right: -8%;
  top: 16%;
  z-index: 3;
  height: 62px;
  transform: rotate(-5deg);
}
.account-wire::before,
.account-wire::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 14px;
  height: 2px;
  background: rgba(17,17,17,.72);
}
.account-wire::after { top: 24px; opacity: .72; }
.account-wire span,
.account-wire i {
  position: absolute;
  top: 20px;
  width: 26px;
  height: 44px;
  border-radius: 5px 5px 11px 11px;
  background: #111;
  box-shadow: inset 0 -10px 0 var(--red);
}
.account-wire span { right: 34%; transform: rotate(22deg); }
.account-wire i { right: 29%; transform: rotate(-18deg); }
.account-skateboard {
  position: absolute;
  right: 12%;
  bottom: 8%;
  width: 150px;
  height: 22px;
  border-radius: 999px;
  background: #111;
  transform: rotate(-10deg);
  box-shadow: 9px 10px 0 rgba(0,0,0,.16);
}
.account-skateboard::before,
.account-skateboard::after {
  content: "";
  position: absolute;
  bottom: -12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  border: 5px solid #111;
}
.account-skateboard::before { left: 24px; }
.account-skateboard::after { right: 24px; }
.account-graffiti {
  position: absolute;
  z-index: 2;
  font-family: "Rock Salt", cursive;
  color: rgba(var(--onshop-pink-rgb), .34);
}
.account-graffiti-one {
  left: 12%;
  top: 31%;
  font-size: clamp(24px, 4vw, 45px);
  transform: rotate(-8deg);
}
.account-graffiti-two {
  right: 9%;
  top: 48%;
  color: rgba(17,17,17,.32);
  font-size: clamp(18px, 3vw, 30px);
  transform: rotate(6deg);
}
.account-panel {
  min-width: 0;
  padding: clamp(38px, 6vw, 82px);
  background: #0b0b0b;
  overflow: hidden;
}
.account-panel > * {
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.account-panel h1 {
  margin: 20px auto 14px;
  font-size: clamp(48px, 7vw, 94px);
  line-height: .86;
  text-transform: uppercase;
  font-weight: 900;
}
.account-intro {
  color: #aaa;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.account-login,
.account-home,
.account-status,
.account-admin-note {
  margin-top: 24px;
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid #2f2f2f;
  background: #121212;
  box-shadow: 7px 7px 0 rgba(var(--onshop-pink-rgb), .14);
}
.account-google {
  width: 100%;
  align-items: center;
}
.account-email {
  display: grid;
  gap: 16px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid #303030;
}
.account-email h2,
.account-status h2 {
  margin: 0;
  font-size: 18px;
  text-transform: uppercase;
}
.account-email-actions,
.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.account-login button:disabled,
.account-actions button:disabled {
  opacity: .52;
  cursor: not-allowed;
  filter: grayscale(.3);
}
.account-profile {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}
.account-profile span:not(.account-avatar) {
  display: block;
  color: #888;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.account-profile strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: clamp(21px, 3vw, 34px);
}
.account-profile p {
  margin: 7px 0 0;
  color: #888;
  font-size: 13px;
}
.account-avatar {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  box-shadow: 5px 5px 0 #fff;
  transform: rotate(-3deg);
}
.account-actions { margin-top: 22px; }
.account-status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.account-status-head span {
  padding: 6px 9px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}
.account-status-body {
  margin-top: 18px;
  padding: 18px;
  border-left: 5px solid var(--red);
  background: #181818;
  color: #aaa;
  line-height: 1.5;
}
.account-submission-list {
  display: grid;
  gap: 10px;
}
.account-submission-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: #101010;
  border: 1px solid #303030;
}
.account-submission-item strong {
  display: block;
  color: #fff;
  overflow-wrap: anywhere;
}
.account-submission-item span {
  display: block;
  margin-top: 4px;
  color: #888;
  font-size: 12px;
}
.account-status-dialog {
  width: min(640px, calc(100% - 24px));
  max-height: calc(100svh - 24px);
  padding: 0;
  border: 1px solid rgba(255,255,255,.2);
  background: #111;
  color: #fff;
  box-shadow: var(--shadow);
  overflow: auto;
}
.account-status-dialog-body {
  padding: clamp(28px, 5vw, 48px);
}
.account-status-dialog h2 {
  margin: 8px 0 10px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: .95;
  text-transform: uppercase;
}
.account-status-dialog-body > p:not(.eyebrow) {
  color: #aaa;
}
.account-status-steps {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.account-status-steps li {
  position: relative;
  padding: 13px 15px 13px 42px;
  border: 1px solid #333;
  background: #181818;
  color: #777;
  font-weight: 900;
  text-transform: uppercase;
}
.account-status-steps li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid #666;
  transform: translateY(-50%);
}
.account-status-steps li.is-done,
.account-status-steps li.is-active {
  color: #fff;
  border-color: rgba(var(--onshop-pink-rgb), .55);
}
.account-status-steps li.is-done::before,
.account-status-steps li.is-active::before {
  background: var(--red);
  border-color: var(--red);
}
.account-live-link {
  margin-top: 18px;
}
.account-admin-note strong {
  display: block;
  color: var(--red-hot);
  font-size: 18px;
}
.account-admin-note p {
  color: #aaa;
  line-height: 1.5;
}

/* Oficina ON */
.office-page { min-height: 100svh; background: #e8e6e0; color: #151515; }
.office-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 72px;
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 28px;
  background: #090909;
  color: #fff;
  border-bottom: 4px solid var(--red);
}
.office-title strong { display: block; font-size: 15px; letter-spacing: .1em; }
.office-title span { color: #777; font-size: 11px; }
.office-profile { display: flex; align-items: center; gap: 9px; border: 0; background: transparent; color: #fff; }
.office-profile span { width: 36px; height: 36px; display: grid; place-items: center; background: var(--red); font-weight: 900; }
.office-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); min-height: 100svh; padding-top: 72px; }
.office-sidebar { position: fixed; left: 0; top: 72px; bottom: 0; width: 250px; padding: 20px 12px; background: #101010; color: #fff; overflow-y: auto; }
.office-sidebar nav { display: grid; gap: 4px; }
.office-sidebar nav > p { margin: 20px 11px 6px; color: #666; font-size: 9px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.office-nav {
  min-height: 43px;
  display: grid;
  grid-template-columns: 27px 1fr auto;
  align-items: center;
  gap: 6px;
  padding: 0 11px;
  border: 0;
  border-left: 3px solid transparent;
  background: transparent;
  color: #aaa;
  text-align: left;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.office-nav span { color: #777; text-align: center; }
.office-nav b { min-width: 21px; padding: 3px 6px; border-radius: 999px; background: #292929; color: #aaa; text-align: center; font-size: 9px; }
.office-nav:hover, .office-nav.active { background: #1b1b1b; color: #fff; border-left-color: var(--red); }
.office-nav.active span { color: var(--red-hot); }
.sidebar-wall-link { display: block; margin: 28px 10px; padding: 14px; border: 1px solid #393939; color: #fff; text-align: center; font-size: 10px; font-weight: 900; letter-spacing: .08em; }
.office-main { grid-column: 2; min-width: 0; padding: 34px clamp(20px, 4vw, 58px) 70px; }
.office-mobile-nav { display: none; }
.office-view-head { display: flex; justify-content: space-between; gap: 24px; align-items: start; margin-bottom: 28px; }
.office-view-head h1 { margin: 0; font-size: clamp(34px, 5vw, 62px); line-height: .95; text-transform: uppercase; }
.office-view-head p { margin: 8px 0 0; color: #737373; }
.office-primary {
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  box-shadow: 5px 5px 0 #111;
  cursor: pointer;
}
.today-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px; }
.office-panel { background: #fff; border: 1px solid #d4d1ca; box-shadow: 5px 6px 0 rgba(0,0,0,.07); }
.office-panel-head { display: flex; justify-content: space-between; align-items: center; min-height: 56px; padding: 0 18px; border-bottom: 1px solid #ddd; }
.office-panel-head h2 { margin: 0; font-size: 15px; text-transform: uppercase; }
.office-panel-body { padding: 18px; }
.next-job { position: relative; padding: 26px; background: #111; color: #fff; overflow: hidden; }
.next-job::after { content: "ON"; position: absolute; right: -10px; bottom: -40px; font-family: "Sedgwick Ave Display"; color: rgba(var(--onshop-pink-rgb), .25); font-size: 170px; }
.next-job > * { position: relative; z-index: 1; }
.next-job .eyebrow { margin-bottom: 14px; }
.next-job h2 { margin: 0; font-size: clamp(30px, 4vw, 52px); line-height: .95; }
.next-job p { color: #aaa; }
.next-job button { margin-top: 18px; }
.metric-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 22px 0; }
.simple-metric { padding: 18px; background: #fff; border-top: 4px solid #111; }
.simple-metric.hot { border-color: var(--red); }
.simple-metric strong { display: block; font-size: 34px; }
.simple-metric span { color: #777; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.work-list { display: grid; gap: 10px; }
.work-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border: 1px solid #ddd;
  background: #fff;
}
.work-item-image { width: 58px; height: 58px; background: #ddd; overflow: hidden; }
.work-item-image img { width: 100%; height: 100%; object-fit: cover; }
.work-item h3 { margin: 0 0 4px; font-size: 15px; }
.work-item p { margin: 0; color: #777; font-size: 12px; }
.work-item-actions { display: flex; gap: 7px; flex-wrap: wrap; justify-content: end; }
.small-btn { min-height: 34px; padding: 0 10px; border: 1px solid #ccc; background: #f3f1ec; color: #111; font-size: 10px; font-weight: 900; cursor: pointer; }
.small-btn.red { border-color: var(--red); background: var(--red); color: #fff; }
.small-btn.dark { border-color: #111; background: #111; color: #fff; }
.small-btn.danger { border-color: #8d1813; color: #a81710; }
.status-pill { display: inline-block; padding: 5px 8px; background: #eee; color: #555; font-size: 9px; font-weight: 900; text-transform: uppercase; }
.status-pill.red { background: #ffe3ed; color: var(--onshop-pink-deep); }
.status-pill.green { background: #dff4e5; color: #14612b; }
.status-pill.dark { background: #222; color: #fff; }
.office-table-wrap { overflow-x: auto; background: #fff; border: 1px solid #d4d1ca; }
.office-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.office-table th, .office-table td { padding: 13px 15px; border-bottom: 1px solid #e8e5df; text-align: left; font-size: 12px; }
.office-table th { background: #111; color: #fff; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.office-table tr:hover td { background: #faf4f3; }
.office-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.office-listing-card { background: #fff; border: 1px solid #d5d1ca; }
.office-listing-card img { width: 100%; aspect-ratio: 1.3; object-fit: cover; display: block; background: #ddd; }
.office-listing-copy { padding: 15px; }
.office-listing-copy h3 { margin: 5px 0 12px; }
.office-listing-copy p { color: #777; font-size: 12px; }
.office-card-actions { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; }
.report-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.report-card { min-height: 180px; padding: 22px; background: #fff; border-top: 5px solid #111; }
.report-card.red { border-color: var(--red); }
.report-card strong { display: block; margin: 18px 0 5px; font-size: 38px; }
.report-card p { color: #777; }
.health-list { display: grid; gap: 8px; }
.health-row { display: grid; grid-template-columns: 1fr auto; align-items: center; padding: 15px; background: #fff; border: 1px solid #d9d5ce; }
.health-row span:last-child { color: #187139; font-weight: 900; }
.health-status { font-weight: 900; }
.health-row .health-status.ok { color: #187139; }
.health-row .health-status.attention { color: #a06800; }
.health-row .health-status.waiting { color: #555; }
.health-row .health-status.safe { color: var(--red-deep); }
.health-row .health-status.down { color: #8a1616; }
.health-details { margin-top: 14px; padding: 16px; background: #fff; border: 1px solid #d9d5ce; }
.health-details summary { cursor: pointer; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.health-details dl { display: grid; gap: 8px; margin: 14px 0 0; }
.health-details dl div { display: grid; grid-template-columns: minmax(160px, .45fr) 1fr; gap: 12px; padding-top: 8px; border-top: 1px solid #eee8df; }
.health-details dt { color: #777; font-size: 11px; font-weight: 900; text-transform: uppercase; }
.health-details dd { margin: 0; color: #222; font-weight: 800; }
.agent-box { display: grid; grid-template-columns: 1fr .85fr; gap: 20px; }
.agent-compose { padding: 24px; background: #111; color: #fff; }
.agent-compose h2 { font-size: 32px; margin: 0 0 7px; }
.agent-compose textarea { width: 100%; min-height: 180px; margin: 18px 0; padding: 14px; border: 1px solid #444; background: #1a1a1a; color: #fff; resize: vertical; }
.agent-output { min-height: 430px; padding: 24px; background: #fff; }
.agent-output pre { white-space: pre-wrap; font-family: "Urbanist"; line-height: 1.5; color: #555; }
.agent-command { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); gap: 18px; margin-bottom: 20px; }
.agent-launch-panel,
.agent-boundaries,
.agent-review-card,
.agent-run-log,
.agent-registry-card {
  background: #fff;
  color: #111;
  border: 1px solid #d7d3cc;
  box-shadow: 5px 6px 0 rgba(0,0,0,.08);
}
.agent-launch-panel { padding: 24px; border-top: 5px solid var(--red); }
.agent-launch-panel h2 { margin: 0 0 8px; font-size: clamp(32px, 4.5vw, 58px); line-height: .9; text-transform: uppercase; }
.agent-launch-panel .field { margin: 18px 0; }
.agent-steps { display: grid; gap: 6px; margin: 18px 0 0; padding: 0; list-style: none; }
.agent-steps li { padding: 10px 12px; background: #f3f1ec; border-left: 4px solid var(--red); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
.agent-boundaries { padding: 22px; background: #111; color: #fff; border-color: #222; }
.agent-boundaries strong { display: block; margin-bottom: 12px; color: var(--red-hot); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.agent-boundaries p { color: #c8c5bd; line-height: 1.5; }
.agent-review-card { margin: 18px 0; padding: 22px; }
.agent-source { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 18px; padding: 10px 12px; background: #111; color: #fff; font-size: 11px; font-weight: 900; text-transform: uppercase; }
.agent-source span { color: var(--red-hot); }
.agent-source em { color: #c8c5bd; font-style: normal; }
.agent-label-block { padding: 16px; background: #f3f1ec; border-left: 4px solid var(--red); }
.agent-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.agent-facts p { margin: 0; padding: 10px; background: #fff; border: 1px solid #e2ded6; }
.agent-facts strong { display: block; font-size: 10px; text-transform: uppercase; color: #777; }
.agent-facts span { font-weight: 800; }
.agent-draft-grid,
.agent-warning-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 16px; }
.agent-draft-grid article,
.agent-warning-grid article { padding: 16px; background: #fff; border: 1px solid #ddd8d0; }
.agent-draft-grid h3 { margin: 0 0 10px; font-size: 24px; line-height: 1; }
.agent-draft-grid p,
.agent-warning-grid p,
.agent-warning-grid li { color: #555; line-height: 1.45; }
.agent-draft-grid small { display: block; margin-top: 12px; color: var(--red-deep); font-weight: 900; }
.agent-price-suggestion { margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.18); }
.agent-price-suggestion strong,
.agent-price-suggestion span { display: block; }
.agent-price-suggestion strong { margin-bottom: 5px; color: var(--red-hot); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.agent-price-suggestion span { color: #fff; font-weight: 900; }
.agent-honesty { background: #151515 !important; color: #fff; border-color: #151515 !important; }
.agent-honesty p,
.agent-honesty li { color: #d8d4cc; }
.agent-warning-grid strong { display: block; margin-bottom: 8px; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.agent-approval-strip { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 16px; padding: 14px; border: 1px solid rgba(var(--onshop-pink-rgb), .35); background: #fff6f9; }
.agent-approval-strip strong,
.agent-approval-strip span { display: block; }
.agent-approval-strip span { color: #777; font-size: 12px; }
.agent-result-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.agent-next-step { align-self: center; color: var(--red-deep) !important; font-weight: 900; text-transform: uppercase; }
.agent-support-actions { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.agent-run-log { overflow: hidden; margin: 18px 0; }
.agent-run-log > p { padding: 18px; color: #777; }
.agent-run-row { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; gap: 12px; align-items: center; padding: 13px 16px; border-top: 1px solid #e4e0d8; }
.agent-run-row strong,
.agent-run-row span,
.agent-run-row small { display: block; }
.agent-run-row div span { color: #777; font-size: 11px; }
.agent-run-row > span { padding: 5px 8px; background: #f3f1ec; color: var(--red-deep); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.agent-run-row small { color: #777; font-size: 11px; }
.agent-registry { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 18px; }
.agent-registry-shell { margin-top: 18px; padding: 16px; background: #f5f2eb; border: 1px solid #d7d3cc; }
.agent-registry-shell summary { cursor: pointer; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.agent-registry-shell > p { margin: 10px 0 0; color: #666; }
.agent-registry-card { min-height: 155px; padding: 16px; border-top: 4px solid #111; }
.agent-registry-card span { display: inline-block; margin-bottom: 18px; color: var(--red-deep); font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.agent-registry-card strong { display: block; margin-bottom: 8px; font-size: 17px; }
.agent-registry-card p { color: #666; font-size: 12px; line-height: 1.45; }
.agent-registry-card small { color: #999; font-weight: 900; }
.agent-human-check { margin: 0 0 18px; padding: 12px 14px; background: #111; color: #fff; border-left: 5px solid var(--red); font-weight: 900; }
.office-dialog { width: min(760px, calc(100% - 24px)); background: #f0eee9; color: #111; }
.office-dialog [data-office-dialog-content] { padding: 42px; }
.office-dialog h2 { margin: 0 0 20px; font-size: 38px; text-transform: uppercase; }
.office-dialog .field input, .office-dialog .field textarea, .office-dialog .field select { background: #fff; border-color: #bbb; color: #111; }

@media (max-width: 980px) {
  .hero-content { margin-left: -5vw; width: min(880px, calc(100% - 40px)); }
  .preview-grid, .product-wall { grid-template-columns: repeat(2, 1fr); }
  .process-lane { grid-template-columns: repeat(2, 1fr); }
  .commission-callout { grid-template-columns: 1fr 1.3fr; gap: 20px; }
  .sell-shell { grid-template-columns: 1fr; }
  .sell-side { position: relative; top: auto; height: auto; min-height: 580px; }
  .account-shell { grid-template-columns: 1fr; }
  .account-street { position: relative; top: auto; height: 430px; }
  .office-card-grid, .report-grid { grid-template-columns: repeat(2, 1fr); }
  .today-grid, .agent-box, .agent-command, .agent-draft-grid, .agent-warning-grid, .agent-registry { grid-template-columns: 1fr; }
  .metric-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .spray-title, .spray-shadow {
    font-size: clamp(42px, 12.4vw, 62px);
    letter-spacing: -.025em;
    white-space: nowrap;
    overflow-wrap: normal;
    max-width: none;
    line-height: .78;
  }
  .spray-shadow { transform: translate(5px, 7px) rotate(-.5deg); }
}

@media (max-width: 760px) {
  :root { --header-h: 64px; }
  .site-header { height: 64px; padding: 0 17px; }
  .brand-on { width: 34px; height: 34px; box-shadow: 3px 3px 0 #fff; font-size: 15px; }
  .brand-rest { font-size: 14px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 64px 0 auto;
    display: grid;
    gap: 0;
    background: #090909;
    padding: 12px 18px 22px;
    transform: translateY(-140%);
    transition: transform 180ms ease;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 15px 5px; border-bottom: 1px solid #292929; }
  .main-nav .nav-office { border: 0; border-bottom: 1px solid #292929; }
  .street-hero { min-height: 800px; place-items: start center; }
  .hero-content {
    width: calc(100% - 30px);
    margin-left: 0;
    padding: 118px 0 190px;
    text-align: left;
  }
  .spray-lockup {
    width: 100%;
    max-width: 100%;
    padding-top: 6px;
    transform:
      perspective(900px)
      translate3d(0, 0, 0)
      rotateY(2.4deg)
      rotateZ(-.8deg)
      skewY(-.2deg);
  }
  .spray-title, .spray-shadow {
    overflow-wrap: normal;
    font-size: clamp(42px, 12.4vw, 62px);
    line-height: .78;
    white-space: nowrap;
  }
  .spray-shadow { transform: translate(5px, 7px); }
  .hero-line { max-width: 94%; margin-top: 14px; font-size: 17px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; width: min(360px, 100%); }
  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; margin-top: 34px; max-width: 100%; transform: none; }
  .hero-proof span { border: 1px solid rgba(0,0,0,.3); font-size: 9px; padding: 10px 8px; }
  .hero-expression-layer { transform: none; }
  .hero-expression-dominant {
    left: 16px;
    top: 38px;
    font-size: clamp(42px, 13.4vw, 58px);
  }
  .hero-expression-side {
    right: 10px;
    top: 260px;
    font-size: clamp(30px, 9.8vw, 44px);
  }
  .hero-expression-ground {
    right: 4%;
    bottom: 13%;
    font-size: clamp(22px, 7vw, 31px);
  }
  .hero-expression-old { display: none; }
  .fallback-primary-wall { width: 82%; left: -13%; bottom: 28%; }
  .fallback-return-wall { width: 39%; right: -12%; bottom: 28%; transform: perspective(650px) rotateY(-46deg); }
  .fallback-sidewalk { bottom: 9%; height: 23%; }
  .fallback-curb { bottom: 11%; }
  .fallback-asphalt { height: 14%; }
  .fallback-can { display: grid; left: 9%; bottom: 5%; width: 54px; height: 108px; font-size: 18px; }
  .scroll-cue { right: 12px; }
  .process-lane { grid-template-columns: 1fr; }
  .process-step { min-height: 200px; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .process-step h3 { margin-top: 35px; }
  .wall-preview-head { align-items: start; flex-direction: column; }
  .preview-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-info { padding: 13px; }
  .product-info h3 { font-size: 16px; }
  .product-price { font-size: 19px; }
  .commission-callout { grid-template-columns: 1fr; min-height: auto; gap: 10px; }
  .commission-mark { font-size: 230px; transform: rotate(-7deg); }
  .site-footer { grid-template-columns: 1fr; gap: 20px; }
  .muro-hero { min-height: 520px; align-items: start; justify-content: end; flex-direction: column; padding-top: 130px; }
  .muro-hero h1 { font-size: clamp(85px, 29vw, 145px); }
  .muro-tools { top: 64px; align-items: stretch; flex-direction: column; }
  .search-wrap { flex-basis: auto; }
  .product-wall { grid-template-columns: 1fr 1fr; gap: 19px 10px; }
  .muro-listing { padding-inline: 12px; }
  .dialog-product { grid-template-columns: 1fr; }
  .dialog-product-image { min-height: 320px; }
  .dialog-product-copy { padding: 45px 22px 28px; }
  .sell-side { min-height: 620px; padding: 70px 24px; }
  .account-street { height: 360px; }
  .account-panel { padding: 38px 18px 70px; }
  .account-panel h1 { font-size: clamp(46px, 15vw, 74px); }
  .account-login, .account-home, .account-status, .account-admin-note { padding: 20px; }
  .account-email-actions, .account-actions, .account-status-head { align-items: stretch; flex-direction: column; }
  .account-email-actions .small-btn, .account-actions .small-btn { width: 100%; text-align: center; }
  .account-submission-item { grid-template-columns: 1fr; align-items: stretch; }
  .account-submission-item .small-btn { width: 100%; text-align: center; }
  .account-skateboard { right: 8%; width: 116px; }
  .account-wire { top: 20%; }
  .intake-panel { padding: 38px 18px 70px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.span-2 { grid-column: auto; }
  .upload-zone { min-height: 290px; }
  .form-actions { align-items: stretch; flex-direction: column-reverse; }
  .form-actions .cta { width: 100%; align-items: center; }
  .form-actions.end { align-items: stretch; }
  .agreement-card { padding-top: 65px; }
  .office-header { grid-template-columns: auto 1fr auto; padding: 0 13px; }
  .office-title span, .office-profile b { display: none; }
  .office-layout { display: block; }
  .office-sidebar { display: none; }
  .office-main { padding: 20px 12px 60px; }
  .office-mobile-nav { display: block; margin-bottom: 20px; }
  .office-mobile-nav label { display: grid; gap: 6px; color: #777; font-size: 11px; font-weight: 800; }
  .office-mobile-nav select { height: 48px; padding: 0 12px; border: 1px solid #ccc; background: #fff; color: #111; }
  .office-view-head { align-items: stretch; flex-direction: column; }
  .metric-strip { grid-template-columns: 1fr 1fr; }
  .work-item { grid-template-columns: 52px minmax(0, 1fr); }
  .work-item-actions { grid-column: 1 / -1; justify-content: start; }
  .office-card-grid, .report-grid { grid-template-columns: 1fr; }
  .office-dialog [data-office-dialog-content] { padding: 55px 20px 25px; }
}

@media (max-width: 440px) {
  .hero-actions .cta { width: 100%; align-items: center; }
  .preview-grid, .product-wall { grid-template-columns: 1fr; }
  .photo-preview-grid { grid-template-columns: repeat(3, 1fr); }
  .metric-strip { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .spray-title { clip-path: none; }
  .reveal { opacity: 1; transform: none; }
  .street-hero::after, .spray-lockup::before, .spray-lockup::after, .spray-pooling { display: none; }
  .street-canvas { display: none; }
  .street-fallback { opacity: 1; }
  .spray-lockup { transform: none; }
  .spray-shadow, .hero-expression { clip-path: none; }
  .hero-expression { opacity: var(--expression-readable-opacity, .64); }
}
