/* ============================================
   NARCY STUDIOS — GLOBAL STYLES
   System: brutalist / swiss, off-white + ink + signal orange
   Type: Archivo Black (display) / Space Mono (meta) / Archivo (body)
   ============================================ */

:root {
  --paper: #EFEDE6;
  --ink: #111110;
  --signal: #FF4419;
  --line: rgba(17, 17, 16, 0.9);
  --line-soft: rgba(17, 17, 16, 0.18);
  --mono: 'Space Mono', monospace;
  --display: 'Archivo Black', sans-serif;
  --body: 'Archivo', sans-serif;
  --gutter: clamp(16px, 4vw, 48px);
  --header-h: 64px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* film grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- icon system ----------
   Monoline y2k/brutalist glyphs drawn as SVG masks so they inherit
   currentColor — needed because nav items invert to paper on hover. */
.ico {
  display: inline-block;
  width: 13px;
  height: 13px;
  flex: none;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-size: contain;    mask-size: contain;
  -webkit-mask-image: var(--ico); mask-image: var(--ico);
}
.ico-window  { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg fill='none' stroke='%23000' stroke-width='1.5'%3E%3Crect x='2' y='3' width='12' height='10'/%3E%3Cpath d='M2 6.3h12'/%3E%3C/g%3E%3Crect x='3.6' y='4.1' width='1.2' height='1.2'/%3E%3Crect x='5.9' y='4.1' width='1.2' height='1.2'/%3E%3C/svg%3E"); }
.ico-star    { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 .8 9.5 6.5 15.2 8 9.5 9.5 8 15.2 6.5 9.5.8 8 6.5 6.5Z'/%3E%3C/svg%3E"); }
.ico-frames  { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23000' stroke-width='1.5'%3E%3Crect x='1.6' y='5.4' width='9' height='9'/%3E%3Cpath d='M5.4 5.4V1.6h9v9h-3.8'/%3E%3C/svg%3E"); }
.ico-globe   { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23000' stroke-width='1.4'%3E%3Ccircle cx='8' cy='8' r='6.4'/%3E%3Cellipse cx='8' cy='8' rx='2.9' ry='6.4'/%3E%3Cpath d='M2 5.8h12M2 10.2h12'/%3E%3C/svg%3E"); }
.ico-bolt    { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M9.6.8 2.8 9.2h4L6 15.2 13.2 6.6H8.9Z'/%3E%3C/svg%3E"); }
.ico-chat    { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23000' stroke-width='1.5'%3E%3Cpath d='M1.6 2.2h12.8v8.6H6.6L3.2 14.2v-3.4H1.6Z'/%3E%3C/svg%3E"); }
.ico-mail    { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23000' stroke-width='1.5'%3E%3Crect x='1.4' y='3.2' width='13.2' height='9.6'/%3E%3Cpath d='m1.4 4.2 6.6 4.6 6.6-4.6'/%3E%3C/svg%3E"); }
.ico-menu    { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Crect x='1.5' y='3' width='13' height='1.8'/%3E%3Crect x='1.5' y='7.1' width='13' height='1.8'/%3E%3Crect x='1.5' y='11.2' width='13' height='1.8'/%3E%3C/svg%3E"); }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: stretch;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 var(--gutter);
  border-right: 2px solid var(--ink);
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.02em;
}
.brand sup {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 400;
}

/* nav is absolutely centred so it stays dead-centre regardless of how
   wide the brand or the CTA on either side happen to be */
.site-nav {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  transform: translateX(-50%);
  display: flex;
  align-items: stretch;
  border-left: 2px solid var(--ink);
  border-right: 2px solid var(--ink);
}
.site-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  border-left: 1px solid var(--line-soft);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s;
}
.site-nav a:first-child { border-left: none; }
.site-nav a:hover { background: var(--ink); color: var(--paper); }
.site-nav a .ico { opacity: 0.55; transition: opacity 0.15s; }
.site-nav a:hover .ico,
.site-nav a.is-active .ico { opacity: 1; }
.site-nav a.is-active { box-shadow: inset 0 -3px 0 var(--signal); }

.header-right {
  margin-left: auto;
  display: flex;
  align-items: stretch;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  background: var(--ink);
  color: var(--paper);
  border-left: 2px solid var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--signal); }
.nav-cta .cta-sm { display: none; }

/* mobile nav */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 0 var(--gutter);
  background: none;
  border: none;
  border-left: 2px solid var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink);
}

/* icons widen the nav, so collapse a little earlier than before */
@media (max-width: 1040px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    bottom: auto;
    transform: none;
    flex-direction: column;
    background: var(--paper);
    border: none;
    border-bottom: 2px solid var(--ink);
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a,
  .site-nav a:first-child {
    padding: 18px var(--gutter);
    border-left: none;
    border-top: 1px solid var(--line-soft);
  }
}
@media (max-width: 600px) {
  .nav-cta { padding: 0 16px; }
  .nav-cta .cta-lg { display: none; }
  .nav-cta .cta-sm { display: inline; }
  .nav-toggle span:not(.ico) { display: none; }
}

main { padding-top: var(--header-h); }

/* ---------- shared section chrome ---------- */
.section {
  border-bottom: 2px solid var(--ink);
  position: relative;
}
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 20px var(--gutter) 0;
}
.section-index {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
}
.section-index::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--signal);
  margin-right: 8px;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(28px, 5vw, 56px);
  line-height: 0.95;
  text-transform: uppercase;
  padding: 12px var(--gutter) 28px;
}

/* registration mark */
.reg::after {
  content: '+';
  font-family: var(--mono);
  font-weight: 400;
  font-size: 14px;
  vertical-align: top;
  margin-left: 6px;
  color: var(--signal);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 28px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.btn:hover { background: var(--signal); border-color: var(--signal); }
.btn:active { transform: translate(1px, 1px); }
.btn.btn-ghost { background: transparent; color: var(--ink); }
.btn.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn .arrow { font-family: var(--body); font-weight: 700; }
.btn .ico { width: 14px; height: 14px; }

/* oversized primary — used for the main conversion buttons */
.btn.btn-lg {
  padding: 20px 34px;
  font-size: 13px;
  letter-spacing: 0.12em;
  box-shadow: 5px 5px 0 var(--ink);
}
.btn.btn-lg:hover { box-shadow: 2px 2px 0 var(--ink); transform: translate(3px, 3px); }
.btn.btn-lg .ico { width: 16px; height: 16px; }
@media (max-width: 520px) {
  .btn, .btn.btn-lg { width: 100%; justify-content: center; }
}

/* ---------- marquee ---------- */
.marquee {
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 0;
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-track .dot { color: var(--signal); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- placeholder media ---------- */
.ph {
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, var(--line-soft) 14px 15px),
    var(--paper);
  border: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.ph .ph-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 6px 10px;
}

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: var(--paper); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding: 48px var(--gutter);
  border-bottom: 1px solid rgba(239, 237, 230, 0.2);
}
.footer-grid h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(239, 237, 230, 0.55);
  margin-bottom: 14px;
}
.footer-grid a {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 5px 0;
}
.footer-grid a:hover { color: var(--signal); }
.footer-pitch {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  max-width: 340px;
  color: rgba(239, 237, 230, 0.8);
}
.footer-wordmark {
  font-family: var(--display);
  font-size: clamp(56px, 13vw, 190px);
  line-height: 0.85;
  text-transform: uppercase;
  padding: 32px var(--gutter) 8px;
  letter-spacing: -0.01em;
  user-select: none;
}
.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px var(--gutter) 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(239, 237, 230, 0.5);
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================
   HOME
   ============================================ */
.hero {
  border-bottom: 2px solid var(--ink);
  position: relative;
  padding: clamp(32px, 6vw, 72px) var(--gutter) 0;
}
.hero-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: clamp(20px, 4vw, 40px);
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(52px, 13vw, 190px);
  line-height: 0.86;
  text-transform: uppercase;
  letter-spacing: -0.015em;
}
.hero-title .line { display: block; }
.hero-title .indent { padding-left: clamp(40px, 12vw, 200px); }
.hero-title .accent { color: var(--signal); }

.hero-sub {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: end;
  padding: clamp(24px, 4vw, 48px) 0;
}
.hero-sub p {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.5;
  max-width: 520px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 720px) {
  .hero-sub { grid-template-columns: 1fr; }
  .hero-cta { justify-content: flex-start; }
}

/* hero video slot */
.hero-video {
  border-top: 2px solid var(--ink);
  position: relative;
}
.hero-video .frame {
  aspect-ratio: 16 / 9;
  width: 100%;
}
.hero-video .corner {
  position: absolute;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  padding: 10px 14px;
  text-transform: uppercase;
}
.corner.tl { top: 0; left: 0; }
.corner.tr { top: 0; right: 0; }
.corner.bl { bottom: 0; left: 0; }
.corner.br { bottom: 0; right: 0; }

/* what we do */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.split > article {
  padding: 32px var(--gutter) 48px;
  position: relative;
}
.split > article + article { border-left: 2px solid var(--ink); }
.split .role-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  display: inline-block;
  padding: 5px 10px;
  margin-bottom: 18px;
}
.split h3 {
  font-family: var(--display);
  font-size: clamp(24px, 3.4vw, 40px);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 14px;
}
.split p { max-width: 460px; color: rgba(17, 17, 16, 0.85); }
.split .glyph {
  position: absolute;
  top: 28px;
  right: var(--gutter);
  font-size: 22px;
  color: var(--signal);
}
@media (max-width: 720px) {
  .split { grid-template-columns: 1fr; }
  .split > article + article { border-left: none; border-top: 2px solid var(--ink); }
}

/* services strip on home */
.svc-rows { border-top: 2px solid var(--ink); }
.svc-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px var(--gutter);
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.15s, color 0.15s;
}
.svc-row:last-child { border-bottom: none; }
.svc-row:hover { background: var(--ink); color: var(--paper); }
.svc-row:hover .svc-go { background: var(--signal); border-color: var(--signal); color: var(--paper); }
.svc-row .num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; }
.svc-row .name {
  font-family: var(--display);
  font-size: clamp(17px, 2.4vw, 26px);
  text-transform: uppercase;
  line-height: 1.05;
}
.svc-row .svc-go {
  font-family: var(--mono);
  font-size: 11px;
  border: 1px solid currentColor;
  padding: 8px 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .svc-row { grid-template-columns: 1fr auto; }
  .svc-row .num { display: none; }
}

/* portfolio teaser grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--ink);
}
.work-cell {
  aspect-ratio: 4 / 5;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.work-cell:nth-child(3n) { border-right: none; }
.work-cell .cell-meta {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-cell:nth-child(3n) { border-right: 1px solid var(--line-soft); }
  .work-cell:nth-child(2n) { border-right: none; }
}

.center-cta {
  display: flex;
  justify-content: center;
  padding: 40px var(--gutter);
}

/* ---------- CTA strip: clickable scrolling band above the contact block ---------- */
.cta-strip {
  display: block;
  /* no border-top — the preceding .section already ends in a 2px rule */
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 0;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cta-strip:hover { background: var(--signal); color: var(--paper); }
.cta-strip:hover .marquee-track .dot { color: var(--ink); }
.cta-strip .marquee-track { animation-duration: 20s; font-size: 13px; font-weight: 700; }

/* ---------- contact band ---------- */
.contact-band {
  padding: clamp(56px, 9vw, 110px) var(--gutter);
  text-align: center;
  background: var(--signal);
  color: var(--ink);
}
.contact-band h2 {
  font-family: var(--display);
  font-size: clamp(36px, 8vw, 104px);
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
}
.contact-band p {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
  color: rgba(17, 17, 16, 0.78);
}
.contact-band .btn-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* availability pill */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  padding: 8px 14px;
  border: 2px solid var(--ink);
  background: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.status-pill .dot {
  width: 8px; height: 8px;
  background: var(--signal);
  border: 1px solid var(--ink);
  animation: blink 1.4s steps(1, end) infinite;
}
@keyframes blink { 50% { opacity: 0.15; } }

/* reassurance row under the buttons */
.cta-facts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(17, 17, 16, 0.3);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cta-facts span { display: inline-flex; align-items: center; gap: 7px; }

/* on the orange band the buttons need their own hover states,
   and the signal-coloured deco would otherwise disappear */
.contact-band .btn { border-color: var(--ink); }
.contact-band .btn:hover { background: var(--paper); color: var(--ink); border-color: var(--ink); }
.contact-band .btn.btn-ghost { border-color: var(--ink); color: var(--ink); }
.contact-band .btn.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.contact-band .deco-star { color: var(--ink); }

/* ============================================
   SERVICES
   ============================================ */
.pricing-note {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 32px;
  padding: 32px var(--gutter) 44px;
  align-items: start;
}
.pricing-note h2 {
  font-family: var(--display);
  font-size: clamp(24px, 4vw, 44px);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
}
.pricing-note p {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.6;
}
.pricing-note .note-side {
  border: 2px solid var(--ink);
  padding: 24px;
}
.pricing-note .note-side .mono { display: block; margin-bottom: 12px; color: var(--signal); }
.pricing-note .note-side p { font-size: 14px; margin-bottom: 20px; }
@media (max-width: 820px) {
  .pricing-note { grid-template-columns: 1fr; }
}

.svc-detail {
  border-top: 2px solid var(--ink);
  display: grid;
  grid-template-columns: 110px minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 28px;
  padding: 36px var(--gutter) 44px;
}
.svc-detail .num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
}
.svc-detail h3 {
  font-family: var(--display);
  font-size: clamp(22px, 3.2vw, 36px);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 14px;
}
.svc-detail .desc { max-width: 480px; color: rgba(17, 17, 16, 0.85); }
.svc-detail .fit h5 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--signal);
}
.svc-detail .fit li {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
}
.svc-detail .fit li::before { content: '→ '; font-weight: 700; }
@media (max-width: 820px) {
  .svc-detail { grid-template-columns: 1fr; gap: 14px; }
}

.addons {
  border-top: 2px solid var(--ink);
  padding: 32px var(--gutter) 44px;
}
.addons h3 {
  font-family: var(--display);
  font-size: clamp(20px, 3vw, 32px);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.addon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.addon-grid > div {
  background: var(--paper);
  padding: 20px;
}
.addon-grid .mono { color: var(--signal); display: block; margin-bottom: 8px; }
.addon-grid p { font-size: 14px; }
@media (max-width: 820px) { .addon-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .addon-grid { grid-template-columns: 1fr; } }

.terms-strip {
  border-top: 2px solid var(--ink);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.terms-strip > div {
  padding: 24px var(--gutter);
  border-right: 1px solid var(--line-soft);
}
.terms-strip > div:last-child { border-right: none; }
.terms-strip .mono { display: block; margin-bottom: 8px; color: rgba(17,17,16,0.6); }
.terms-strip strong { font-family: var(--display); font-size: 15px; text-transform: uppercase; }
@media (max-width: 820px) {
  .terms-strip { grid-template-columns: repeat(2, 1fr); }
  .terms-strip > div { border-bottom: 1px solid var(--line-soft); }
}

/* ============================================
   PORTFOLIO
   ============================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--ink);
}
.filter-bar button {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: none;
  border: none;
  border-right: 1px solid var(--line-soft);
  padding: 16px 22px;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.15s, color 0.15s;
}
.filter-bar button:hover { background: var(--ink); color: var(--paper); }
.filter-bar button.active { background: var(--signal); color: var(--paper); }

.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.pf-item {
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.pf-item:nth-child(3n) { border-right: none; }
.pf-item .media { aspect-ratio: 4 / 5; }
.pf-item.wide { grid-column: span 2; }
.pf-item.wide .media { aspect-ratio: 16 / 9; height: 100%; }
.pf-item .pf-meta {
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-top: 1px solid var(--line-soft);
}
.pf-item .pf-meta .cat { color: var(--signal); }
.pf-item.hidden { display: none; }
@media (max-width: 720px) {
  .pf-grid { grid-template-columns: 1fr; }
  .pf-item, .pf-item:nth-child(3n) { border-right: none; }
  .pf-item.wide { grid-column: span 1; }
}

/* ============================================
   ABOUT
   ============================================ */
.about-intro {
  padding: 40px var(--gutter) 56px;
  max-width: 900px;
}
.about-intro p {
  font-size: clamp(18px, 2.4vw, 26px);
  line-height: 1.5;
  font-weight: 500;
}
.about-intro p + p { margin-top: 20px; }

/* Both founders on one row; inside each, portrait left and bio right. */
.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 2px solid var(--ink);
}
.founder {
  display: grid;
  grid-template-columns: minmax(0, clamp(120px, 15vw, 215px)) minmax(0, 1fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: center;
  padding: clamp(24px, 3vw, 40px) var(--gutter);
}
.founder + .founder { border-left: 2px solid var(--ink); }
/* Single rule on purpose — a competing height on a stretched grid item was
   what blew these up to ~900px before. The box matches the artwork's own 3:4,
   so the whole framed composition fills it with no letterbox and no crop.
   align-items:center above keeps the grid from stretching away the ratio. */
.founder .portrait {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  background: var(--paper);
  border: 1px solid var(--ink);
}
.founder .f-body { padding: 0; }
.founder .role-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  display: inline-block;
  padding: 5px 10px;
  margin-bottom: 14px;
  color: var(--signal);
  border-color: var(--signal);
}
.founder h3 {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 34px);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.founder p { color: rgba(17,17,16,0.85); font-size: 15px; }
/* two founders + two inner columns is four columns of content — below this
   the pair goes one-up, then the portrait moves above the bio */
@media (max-width: 980px) {
  .founders { grid-template-columns: 1fr; }
  .founder + .founder { border-left: none; border-top: 2px solid var(--ink); }
  .founder { grid-template-columns: minmax(0, clamp(190px, 24vw, 260px)) minmax(0, 1fr); }
  .founder p { font-size: 16px; max-width: 620px; }
}
@media (max-width: 560px) {
  .founder {
    grid-template-columns: 1fr;
    gap: 22px;
    justify-items: start;
  }
  .founder .portrait { max-width: 200px; }
}

.principles {
  border-top: 2px solid var(--ink);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.principle {
  padding: 28px var(--gutter) 36px;
  border-right: 1px solid var(--line-soft);
}
.principle:last-child { border-right: none; }
.principle .mono { color: var(--signal); display: block; margin-bottom: 12px; }
.principle h4 {
  font-family: var(--display);
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.principle p { font-size: 14px; }
@media (max-width: 720px) {
  .principles { grid-template-columns: 1fr; }
  .principle { border-right: none; border-bottom: 1px solid var(--line-soft); }
}

/* ============================================
   DECO LAYER — brutalist / y2k background elements
   ============================================ */
body {
  background:
    linear-gradient(rgba(17, 17, 16, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 16, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px, 72px 72px, auto;
}

.section, .hero { overflow: hidden; }

.deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.deco-cross {
  font-family: var(--mono);
  font-size: 18px;
  opacity: 0.5;
}
.deco-star {
  font-size: 22px;
  color: var(--signal);
  display: inline-block;
  animation: spin 16s linear infinite;
}
.deco-ring {
  width: clamp(90px, 10vw, 140px);
  height: clamp(90px, 10vw, 140px);
  border: 1px dashed var(--ink);
  border-radius: 50%;
  opacity: 0.35;
  animation: spin 40s linear infinite;
}
.deco-ring::after {
  content: '';
  position: absolute;
  inset: 22%;
  border: 1px solid var(--ink);
  border-radius: 50%;
  opacity: 0.5;
}
.deco-barcode {
  width: 96px;
  height: 26px;
  background: repeating-linear-gradient(90deg,
    var(--ink) 0 2px, transparent 2px 5px,
    var(--ink) 5px 6px, transparent 6px 11px,
    var(--ink) 11px 14px, transparent 14px 17px);
  opacity: 0.55;
}
.deco-dots {
  width: 120px;
  height: 72px;
  background-image: radial-gradient(var(--ink) 1px, transparent 1.3px);
  background-size: 10px 10px;
  opacity: 0.35;
}
.deco-vtext {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  opacity: 0.45;
}
.deco-outline {
  font-family: var(--display);
  font-size: clamp(320px, 55vw, 820px);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(17, 17, 16, 0.07);
  top: -50px;
  right: -70px;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 720px) {
  .deco-ring, .deco-outline, .deco-vtext { display: none; }
}

/* ============================================
   GRID V2 — gapped, bordered tiles + blended product imagery
   ============================================ */
.work-grid, .pf-grid { gap: 16px; padding: 16px var(--gutter); }
.work-grid { border-top: 2px solid var(--ink); }

.work-cell,
.work-cell:nth-child(3n),
.pf-item,
.pf-item:nth-child(3n) {
  border: 1px solid var(--ink);
}
.pf-item { display: flex; flex-direction: column; }
.pf-item .media { flex: 1; }

/* transparent product shots sit directly on the site background */
.work-cell > img,
img.media {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 9%;
  box-sizing: border-box;
  filter: drop-shadow(0 14px 22px rgba(17, 17, 16, 0.16));
  transition: transform 0.35s ease;
}
.work-cell > img { padding-bottom: 18%; }
.work-cell:hover > img,
.pf-item:hover img.media { transform: scale(1.04); }

.work-cell .cell-meta {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  padding: 4px 8px;
}

@media (max-width: 720px) {
  .work-cell:nth-child(2n), .pf-item { border: 1px solid var(--ink); }
}

/* ============================================
   DECO V2 — extra y2k layer
   ============================================ */
.deco-asterisk {
  font-size: 36px;
  line-height: 1;
  opacity: 0.35;
  animation: spin 24s linear infinite;
  display: inline-block;
}
.deco-orbit {
  width: 210px;
  height: 66px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  opacity: 0.3;
  animation: orbit-spin 60s linear infinite;
}
.deco-orbit::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--signal);
  border-radius: 50%;
}
@keyframes orbit-spin {
  from { transform: rotate(-18deg); }
  to { transform: rotate(342deg); }
}
.deco-loading {
  width: 150px;
  height: 14px;
  border: 1px solid var(--ink);
  opacity: 0.5;
  padding: 2px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 9px, transparent 9px 13px);
  background-size: 62% 100%;
  background-repeat: no-repeat;
  background-clip: content-box;
  background-origin: content-box;
}
.deco-globe {
  width: 100px;
  height: 100px;
  opacity: 0.38;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23111110' stroke-width='1.6'%3E%3Ccircle cx='50' cy='50' r='47'/%3E%3Cellipse cx='50' cy='50' rx='20' ry='47'/%3E%3Cellipse cx='50' cy='50' rx='38' ry='47'/%3E%3Cline x1='3' y1='50' x2='97' y2='50'/%3E%3Cline x1='9' y1='28' x2='91' y2='28'/%3E%3Cline x1='9' y1='72' x2='91' y2='72'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  animation: spin 50s linear infinite;
}
@media (max-width: 720px) {
  .deco-orbit, .deco-globe, .deco-loading { display: none; }
}

/* ============================================
   MOTION ARCHIVE
   ============================================ */
.motion-block { padding: 0 var(--gutter) 36px; }
.motion-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 14px;
}
.vid-grid { display: grid; gap: 16px; align-items: start; }
.vid-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.vid-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.vid-item { border: 1px solid var(--ink); position: relative; background: var(--paper); }
.vid-item video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  display: block;
}
.vid-item.vert video {
  aspect-ratio: 9 / 16;
  max-height: 560px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}
.vid-item .vid-note {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--signal);
  color: var(--paper);
  padding: 4px 8px;
  pointer-events: none;
}
@media (max-width: 900px) {
  .vid-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .vid-grid.cols-2, .vid-grid.cols-3 { grid-template-columns: 1fr; }
}

/* scope box inside services T-05 */
.scope-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-soft);
  border: 2px solid var(--ink);
  margin-top: 18px;
  max-width: 520px;
}
.scope-box > div { background: var(--paper); padding: 16px; }
.scope-box .mono { display: block; color: var(--signal); margin-bottom: 8px; }
.scope-box p { font-size: 13px; line-height: 1.5; }
@media (max-width: 520px) { .scope-box { grid-template-columns: 1fr; } }

/* square reel — video height matches 16:9 neighbours (0.5625 x column width) */
.vid-item.sq video {
  aspect-ratio: 1 / 1;
  width: 56.25%;
  margin: 0 auto;
  display: block;
}
@media (max-width: 620px) {
  .vid-item.sq video { width: 100%; }
}

/* ============================================
   DECO V3 — brutalist / y2k shape library
   Monoline geometry kept low-contrast so it reads as texture,
   never as content. Drawn as masks so each shape inherits --ink.
   ============================================ */
.deco-sparkle,
.deco-target,
.deco-brackets,
.deco-wave,
.deco-atom,
.deco-arrow,
.deco-scan {
  background-color: var(--ink);
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center;  mask-position: center;
  -webkit-mask-size: contain;     mask-size: contain;
  -webkit-mask-image: var(--ico); mask-image: var(--ico);
}

/* 4-point concave star */
.deco-sparkle {
  width: clamp(16px, 1.8vw, 26px);
  aspect-ratio: 1;
  opacity: 0.4;
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0c.6 6.8 4.6 10.8 12 12-7.4 1.2-11.4 5.2-12 12-.6-6.8-4.6-10.8-12-12C7.4 10.8 11.4 6.8 12 0Z'/%3E%3C/svg%3E");
}
.deco-sparkle.is-signal { background-color: var(--signal); opacity: 0.75; }

/* crosshair reticle */
.deco-target {
  width: clamp(34px, 4vw, 54px);
  aspect-ratio: 1;
  opacity: 0.3;
  animation: spin 70s linear infinite;
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cg fill='none' stroke='%23000' stroke-width='1.4'%3E%3Ccircle cx='16' cy='16' r='10.5'/%3E%3Cpath d='M16 0v6.5M16 25.5V32M0 16h6.5M25.5 16H32'/%3E%3C/g%3E%3Ccircle cx='16' cy='16' r='2.4'/%3E%3C/svg%3E");
}

/* corner crop marks */
.deco-brackets {
  width: clamp(46px, 6vw, 78px);
  aspect-ratio: 1;
  opacity: 0.32;
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='%23000' stroke-width='1.6'%3E%3Cpath d='M1 9V1h8M23 1h8v8M31 23v8h-8M9 31H1v-8'/%3E%3C/svg%3E");
}

/* squiggle */
.deco-wave {
  width: clamp(70px, 9vw, 128px);
  height: 18px;
  opacity: 0.35;
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 20'%3E%3Cpath d='M0 10q7.5-10 15 0t15 0 15 0 15 0 15 0 15 0 15 0 15 0' fill='none' stroke='%23000' stroke-width='1.8'/%3E%3C/svg%3E");
}

/* crossed orbital ellipses */
.deco-atom {
  width: clamp(44px, 5.5vw, 76px);
  aspect-ratio: 1;
  opacity: 0.3;
  animation: spin 90s linear infinite reverse;
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cg fill='none' stroke='%23000' stroke-width='1.3'%3E%3Cellipse cx='20' cy='20' rx='18.6' ry='7.6' transform='rotate(45 20 20)'/%3E%3Cellipse cx='20' cy='20' rx='18.6' ry='7.6' transform='rotate(-45 20 20)'/%3E%3C/g%3E%3Ccircle cx='20' cy='20' r='2.4'/%3E%3C/svg%3E");
}

/* outline diagonal arrow */
.deco-arrow {
  width: clamp(26px, 3vw, 40px);
  aspect-ratio: 1;
  opacity: 0.33;
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M6 26 25 7M12 7h13v13'/%3E%3C/svg%3E");
}

/* audio waveform bars */
.deco-scan {
  width: clamp(84px, 10vw, 132px);
  height: 24px;
  opacity: 0.32;
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 24'%3E%3Cg%3E%3Crect x='1' y='9' width='2.5' height='6'/%3E%3Crect x='7' y='6' width='2.5' height='12'/%3E%3Crect x='13' y='3' width='2.5' height='18'/%3E%3Crect x='19' y='7.5' width='2.5' height='9'/%3E%3Crect x='25' y='1' width='2.5' height='22'/%3E%3Crect x='31' y='5' width='2.5' height='14'/%3E%3Crect x='37' y='8.5' width='2.5' height='7'/%3E%3Crect x='43' y='3.5' width='2.5' height='17'/%3E%3Crect x='49' y='0' width='2.5' height='24'/%3E%3Crect x='55' y='6.5' width='2.5' height='11'/%3E%3Crect x='61' y='2.5' width='2.5' height='19'/%3E%3Crect x='67' y='8' width='2.5' height='8'/%3E%3Crect x='73' y='4.5' width='2.5' height='15'/%3E%3Crect x='79' y='1.5' width='2.5' height='21'/%3E%3Crect x='85' y='7' width='2.5' height='10'/%3E%3Crect x='91' y='4' width='2.5' height='16'/%3E%3Crect x='97' y='9' width='2.5' height='6'/%3E%3Crect x='103' y='5.5' width='2.5' height='13'/%3E%3Crect x='109' y='2' width='2.5' height='20'/%3E%3Crect x='115' y='7.5' width='2.5' height='9'/%3E%3C/g%3E%3C/svg%3E");
}

/* checkerboard swatch */
.deco-checker {
  width: clamp(44px, 5vw, 66px);
  height: clamp(30px, 3.4vw, 44px);
  opacity: 0.2;
  background-image:
    conic-gradient(var(--ink) 25%, transparent 0 50%, var(--ink) 0 75%, transparent 0);
  background-size: 11px 11px;
}

/* concentric bullseye */
.deco-rings {
  width: clamp(56px, 7vw, 96px);
  aspect-ratio: 1;
  opacity: 0.26;
  border-radius: 50%;
  background: repeating-radial-gradient(circle at center,
    var(--ink) 0 1px, transparent 1px 8px);
}

/* radiating sunburst */
.deco-burst {
  width: clamp(50px, 6vw, 84px);
  aspect-ratio: 1;
  opacity: 0.22;
  border-radius: 50%;
  background: repeating-conic-gradient(var(--ink) 0deg 2.6deg, transparent 2.6deg 11deg);
}

/* diagonal hazard block */
.deco-stripes {
  width: clamp(58px, 7vw, 96px);
  height: clamp(20px, 2.4vw, 30px);
  opacity: 0.28;
  border: 1px solid var(--ink);
  background-image: repeating-linear-gradient(45deg,
    var(--ink) 0 3px, transparent 3px 8px);
}

/* ============================================
   DECO V4 — cyber / HUD layer
   Same discipline as V3: low opacity, ink only, texture not content.
   ============================================ */
.deco-chevrons,
.deco-circuit,
.deco-hud,
.deco-glitch,
.deco-cog,
.deco-planet,
.deco-xmark,
.deco-cut,
.deco-ellipses {
  background-color: var(--ink);
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center;  mask-position: center;
  -webkit-mask-size: contain;     mask-size: contain;
  -webkit-mask-image: var(--ico); mask-image: var(--ico);
}

/* stacked chevrons */
.deco-chevrons {
  width: clamp(38px, 4.5vw, 62px);
  height: clamp(14px, 1.6vw, 22px);
  opacity: 0.34;
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 46 16'%3E%3Cpath d='M0 1h6l7 7-7 7H0l7-7z'/%3E%3Cpath d='M15 1h6l7 7-7 7h-6l7-7z'/%3E%3Cpath d='M30 1h6l7 7-7 7h-6l7-7z'/%3E%3C/svg%3E");
}

/* circuit traces */
.deco-circuit {
  width: clamp(74px, 9vw, 122px);
  height: clamp(37px, 4.5vw, 61px);
  opacity: 0.28;
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 40'%3E%3Cg fill='none' stroke='%23000' stroke-width='1.4'%3E%3Cpath d='M2 20h12l6-6h12l6 6h14l6 6h20'/%3E%3Cpath d='M2 8h20l6 6'/%3E%3Cpath d='M2 32h16l6-6'/%3E%3Cpath d='M48 14h10l6-6h14'/%3E%3C/g%3E%3Ccircle cx='2' cy='20' r='2.2'/%3E%3Ccircle cx='2' cy='8' r='2.2'/%3E%3Ccircle cx='2' cy='32' r='2.2'/%3E%3Ccircle cx='78' cy='8' r='2.2'/%3E%3Ccircle cx='52' cy='20' r='2.2'/%3E%3C/svg%3E");
}

/* HUD arc reticle */
.deco-hud {
  width: clamp(40px, 5vw, 68px);
  aspect-ratio: 1;
  opacity: 0.3;
  animation: spin 80s linear infinite;
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23000'%3E%3Ccircle cx='24' cy='24' r='21' stroke-width='1.2' stroke-dasharray='4 3'/%3E%3Ccircle cx='24' cy='24' r='14' stroke-width='1.2'/%3E%3Cpath d='M24 1v6M24 41v6M1 24h6M41 24h6' stroke-width='1.4'/%3E%3Cpath d='M10 24a14 14 0 0 1 14-14' stroke-width='2.6'/%3E%3Cpath d='M38 24a14 14 0 0 1-14 14' stroke-width='2.6'/%3E%3C/svg%3E");
}

/* pixel glitch fragment */
.deco-glitch {
  width: clamp(38px, 4.6vw, 62px);
  height: clamp(23px, 2.8vw, 38px);
  opacity: 0.26;
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 24'%3E%3Crect x='0' y='0' width='10' height='4'/%3E%3Crect x='12' y='0' width='6' height='4'/%3E%3Crect x='4' y='5' width='16' height='4'/%3E%3Crect x='24' y='5' width='4' height='4'/%3E%3Crect x='0' y='10' width='6' height='4'/%3E%3Crect x='8' y='10' width='22' height='4'/%3E%3Crect x='14' y='15' width='10' height='4'/%3E%3Crect x='26' y='15' width='5' height='4'/%3E%3Crect x='2' y='20' width='14' height='4'/%3E%3C/svg%3E");
}

/* gear */
.deco-cog {
  width: clamp(30px, 3.6vw, 50px);
  aspect-ratio: 1;
  opacity: 0.28;
  animation: spin 55s linear infinite;
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40' fill='none' stroke='%23000'%3E%3Ccircle cx='20' cy='20' r='16' stroke-width='6' stroke-dasharray='4 4.37'/%3E%3Ccircle cx='20' cy='20' r='11' stroke-width='1.6'/%3E%3Ccircle cx='20' cy='20' r='3.2' stroke-width='1.6'/%3E%3C/svg%3E");
}

/* ringed planet */
.deco-planet {
  width: clamp(42px, 5vw, 70px);
  height: clamp(28px, 3.4vw, 47px);
  opacity: 0.3;
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 32'%3E%3Cellipse cx='24' cy='16' rx='22' ry='6.6' fill='none' stroke='%23000' stroke-width='1.6' transform='rotate(-16 24 16)'/%3E%3Ccircle cx='24' cy='16' r='8.6'/%3E%3C/svg%3E");
}

/* bold x */
.deco-xmark {
  width: clamp(15px, 1.7vw, 24px);
  aspect-ratio: 1;
  opacity: 0.32;
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 0 12 9 21 0l3 3-9 9 9 9-3 3-9-9-9 9-3-3 9-9L0 3Z'/%3E%3C/svg%3E");
}

/* cut-corner frame */
.deco-cut {
  width: clamp(44px, 5.4vw, 74px);
  aspect-ratio: 1;
  opacity: 0.3;
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40' fill='none' stroke='%23000' stroke-width='1.8'%3E%3Cpath d='M1 14V5l4-4h9M26 1h9l4 4v9M39 26v9l-4 4h-9M14 39H5l-4-4v-9'/%3E%3C/svg%3E");
}

/* stacked ellipse tube */
.deco-ellipses {
  width: clamp(46px, 5.6vw, 78px);
  height: clamp(38px, 4.6vw, 64px);
  opacity: 0.24;
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 40' fill='none' stroke='%23000' stroke-width='1.2'%3E%3Cellipse cx='24' cy='6' rx='22' ry='5.4'/%3E%3Cellipse cx='24' cy='13' rx='22' ry='5.4'/%3E%3Cellipse cx='24' cy='20' rx='22' ry='5.4'/%3E%3Cellipse cx='24' cy='27' rx='22' ry='5.4'/%3E%3Cellipse cx='24' cy='34' rx='22' ry='5.4'/%3E%3C/svg%3E");
}

/* halftone dot field, faded out — own mask, so it isn't in the group above */
.deco-halftone {
  width: clamp(54px, 6.5vw, 88px);
  height: clamp(44px, 5.4vw, 74px);
  opacity: 0.3;
  background-image: radial-gradient(var(--ink) 1.3px, transparent 1.5px);
  background-size: 8px 8px;
  -webkit-mask-image: linear-gradient(170deg, #000 10%, transparent 85%);
  mask-image: linear-gradient(170deg, #000 10%, transparent 85%);
}

/* keep the background quiet on small screens */
@media (max-width: 860px) {
  .deco-atom, .deco-rings, .deco-burst, .deco-brackets,
  .deco-scan, .deco-checker, .deco-stripes, .deco-target,
  .deco-circuit, .deco-hud, .deco-glitch, .deco-cog,
  .deco-planet, .deco-cut, .deco-ellipses, .deco-halftone { display: none; }
}

/* respect reduced-motion for every spinning element */
@media (prefers-reduced-motion: reduce) {
  .deco-star, .deco-ring, .deco-asterisk, .deco-orbit,
  .deco-globe, .deco-target, .deco-atom, .deco-hud, .deco-cog,
  .marquee-track, .status-pill .dot { animation: none; }
}
