/* ============================================================
   TECHCART · DESIGN 3 — BRUTALIST GRID
   Massive type · raw blocks · gold yellow · concrete grey · ink black
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Archivo:wght@400;500;600;700;800;900&family=DM+Mono:wght@400;500&display=swap');

/* mobile-first base sizing — desktop overrides come later */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

:root {
  --bone:        #F4F1EA;
  --paper:       #DCD0B0;     /* warm tan — clearly distinct from bone */
  --grey:        #C8C2B3;
  --ink:         #0A0A0A;
  --ink-2:       #1F1F1F;
  --acid:        #F5C518;   /* gold/yellow */
  --acid-2:      #E5B30C;
  --rouge:       #C53030;
  --blue:        #1D4ED8;
  --line:        #0A0A0A;

  --display:     'Archivo Black', system-ui, sans-serif;
  --body:        'Archivo', system-ui, sans-serif;
  --mono:        'DM Mono', ui-monospace, monospace;
}

* { margin:0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body, html {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
body { position: relative; }

/* paper texture */
body::before {
  content:"";
  position: fixed; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(0,0,0,0.015) 0, rgba(0,0,0,0.015) 1px, transparent 1px, transparent 3px),
    radial-gradient(rgba(10,10,10,.03) 1px, transparent 1px);
  background-size: auto, 14px 14px;
  pointer-events: none;
  z-index: 1;
}
main, section, nav, header, footer { position: relative; z-index: 2; }

::selection { background: var(--ink); color: var(--acid); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.shell { max-width: 100%; padding: 0 32px; }

/* ---------- MASTHEAD ---------- */
.mast {
  border-bottom: 4px solid var(--ink);
  padding: 14px 32px;
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: var(--ink);
  color: var(--bone);
}
.mast .marquee {
  overflow: hidden;
  flex: 1;
  margin: 0 32px;
}
.mast .marquee-track {
  display: flex; gap: 40px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.mast .marquee-track span::after { content: "★"; color: var(--acid); margin-left: 40px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- NAV ---------- */
nav.primary {
  border-bottom: 4px solid var(--ink);
  background: var(--bone);
  position: sticky;
  top: 0;
  z-index: 50;
}
nav .row {
  display: grid;
  grid-template-columns: 280px 1fr 200px;
  height: 92px;
  align-items: stretch;
}
nav .brand {
  border-right: 4px solid var(--ink);
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--acid);
  position: relative;
  overflow: hidden;
}
nav .brand::before {
  content: "★";
  position: absolute;
  bottom: -8px; right: -10px;
  font-size: 80px;
  line-height: 1;
  color: var(--ink);
  opacity: 0.12;
}
nav .brand .name {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
nav .brand .tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  margin-top: 4px;
}
nav .links {
  display: flex;
  align-items: stretch;
}
nav .links a {
  flex: 1;
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-right: 1px solid var(--ink);
  transition: all .2s;
  position: relative;
}
nav .links a:last-child { border-right: 0; }
nav .links a:hover, nav .links a.active {
  background: var(--ink);
  color: var(--acid);
}
nav .links a.active::before {
  content: "▸";
  margin-right: 8px;
  color: var(--acid);
}
nav .cta {
  background: var(--ink);
  color: var(--bone);
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-left: 4px solid var(--ink);
  transition: all .2s;
  cursor: pointer;
}
nav .cta:hover { background: var(--acid); color: var(--ink); }

/* ---------- ISSUE STRIP ---------- */
.issue {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 4px solid var(--ink);
  background: var(--ink);
  color: var(--bone);
}
.issue .cell {
  padding: 18px 24px;
  border-right: 1px solid rgba(244,241,234,.2);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.issue .cell:last-child { border-right: 0; }
.issue .cell b { color: var(--acid); display:block; font-size: 18px; font-family: var(--display); margin-top: 4px; font-weight: 400; }

/* ---------- HERO ---------- */
.hero {
  border-bottom: 4px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
}
.hero-l {
  padding: 64px 56px 64px;
  border-right: 4px solid var(--ink);
  background: var(--bone);
  position: relative;
}
.hero-r {
  background: var(--ink);
  color: var(--bone);
  padding: 0;
  position: relative;
  display: flex; flex-direction: column;
}
.hero-r img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(.95);
  flex: 1;
}

.h1 {
  font-family: var(--display);
  font-size: clamp(48px, 9vw, 160px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  overflow-wrap: break-word;
}
.h1 .bg-acid {
  background: var(--acid);
  padding: 0 12px;
  display: inline-block;
}
.h1 .strike {
  text-decoration: line-through;
  text-decoration-thickness: 12px;
  text-decoration-color: var(--acid);
}
.h1 .arrow::after {
  content: "→";
  display: inline-block;
  margin-left: 16px;
  color: var(--acid-2);
  -webkit-text-stroke: 3px var(--ink);
}

.hero-lede {
  margin-top: 32px;
  max-width: 620px;
  font-size: 19px;
  line-height: 1.5;
  font-weight: 500;
}
.hero-lede b { background: var(--acid); padding: 0 6px; }

.hero-meta {
  margin-top: 40px;
  border-top: 4px solid var(--ink);
  padding-top: 24px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hero-meta .m .lab {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hero-meta .m .val {
  font-family: var(--display);
  font-size: 22px;
}

.cta-row { display: flex; gap: 0; margin-top: 32px; flex-wrap: wrap; }

.btn {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 18px 28px;
  border: 4px solid var(--ink);
  cursor: pointer;
  transition: all .2s;
  display: inline-flex; align-items: center; gap: 14px;
}
.btn-fill { background: var(--ink); color: var(--bone); }
.btn-fill:hover { background: var(--acid); color: var(--ink); }
.btn-ghost { background: var(--bone); color: var(--ink); border-left: 0; }
.btn-ghost:hover { background: var(--ink); color: var(--bone); }

/* ---------- TICKER ---------- */
.ticker {
  border-bottom: 4px solid var(--ink);
  background: var(--acid);
  padding: 16px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex; gap: 48px;
  white-space: nowrap;
  width: max-content;
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  animation: marquee 24s linear infinite;
}
.ticker-track span::after { content: " ✦ "; color: var(--ink); margin-left: 24px; }

/* ---------- SECTION HEAD ---------- */
.sec {
  padding: 80px 0;
  border-bottom: 4px solid var(--ink);
  position: relative;
}
.sec-head {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 56px;
  margin-bottom: 56px;
  padding: 0 32px;
  align-items: end;
}
.sec-label {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--acid);
  padding: 6px 14px;
  display: inline-block;
  margin-bottom: 18px;
}
.sec-num {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1;
  background: var(--acid);
  color: var(--ink);
  padding: 8px 16px;
  display: inline-block;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  position: relative;
  text-transform: uppercase;
}
.sec-title {
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.sec-title .acid { background: var(--acid); padding: 0 10px; }
.sec-title .rouge {
  background: var(--acid);
  padding: 0 10px;
  color: var(--ink);
}
.sec-lede {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  max-width: 600px;
}

/* ---------- BIG STATS ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}
.stat {
  padding: 56px 40px;
  border-right: 4px solid var(--ink);
  position: relative;
  transition: background .25s;
}
.stat:last-child { border-right: 0; }
.stat:nth-child(2) { background: var(--acid); }
.stat:hover { background: var(--ink); color: var(--bone); }
.stat:hover.acid { background: var(--ink); color: var(--bone); }
.stat .num {
  font-family: var(--display);
  font-size: 12vw;
  line-height: 0.85;
  letter-spacing: -0.06em;
}
.stat .num sup { font-size: 4vw; vertical-align: top; }
.stat .lab {
  font-family: var(--display);
  font-size: 20px;
  margin-top: 18px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.stat .desc {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.5;
  max-width: 280px;
  font-weight: 500;
}

/* ---------- FEATURE 4 ---------- */
.f4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 4px solid var(--ink);
}
.f {
  padding: 48px 32px;
  border-right: 4px solid var(--ink);
  position: relative;
  transition: all .25s;
  background: var(--bone);
}
.f:last-child { border-right: 0; }
.f:nth-child(odd) { background: var(--paper); }
.f:hover { background: var(--acid); transform: translateY(-4px); }
.f .num {
  font-family: var(--display);
  font-size: 100px;
  line-height: 0.85;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}
.f h4 {
  font-family: var(--display);
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.f p { font-size: 14px; line-height: 1.55; max-width: 280px; font-weight: 500; }

/* ---------- JOURNEY 4 STEPS ---------- */
.journey {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 4px solid var(--ink);
}
.j {
  padding: 48px 32px 60px;
  border-right: 4px solid var(--ink);
  background: var(--bone);
  position: relative;
  transition: background .25s;
}
.j:last-child { border-right: 0; }
.j:nth-child(2) { background: var(--ink); color: var(--bone); }
.j:nth-child(2) .big { color: var(--acid); }
.j:hover:not(:nth-child(2)) { background: var(--acid); }
.j .big {
  font-family: var(--display);
  font-size: 140px;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--ink);
  margin-bottom: 28px;
}
.j h5 {
  font-family: var(--display);
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.j p { font-size: 14px; font-weight: 500; line-height: 1.55; max-width: 240px; }

/* ---------- PRICING ---------- */
.pricing {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 4px solid var(--ink);
}
.p {
  padding: 48px 32px;
  border-right: 4px solid var(--ink);
  transition: all .25s;
}
.p:last-child { border-right: 0; }
.p:nth-child(3) { background: var(--acid); }
.p:hover { background: var(--ink); color: var(--bone); }
.p:hover:nth-child(3) { background: var(--ink); }
.p .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 700;
}
.p h4 {
  font-family: var(--display);
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.p .price {
  font-family: var(--display);
  font-size: 56px;
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.p .price sup { font-size: 20px; vertical-align: top; }
.p .unit {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 8px;
}
.p p {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 4px solid currentColor;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

/* ---------- TEAM ---------- */
.team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 4px solid var(--ink);
}
/* 2-member variant — stacks vertically on all sizes */
.team.team-2 {
  grid-template-columns: 1fr !important;
}
.team.team-2 .m {
  border-right: 0 !important;
  border-bottom: 4px solid var(--ink);
}
.team.team-2 .m:last-child {
  border-bottom: 0;
}
/* Founder cards have light inline backgrounds — keep body text dark on hover
   so it never disappears (cream-on-cream invisibility). EXCLUDE the role-tag
   since it has its own dark-on-light styling. */
.m.m-big:hover {
  color: var(--ink) !important;
}
.m.m-big:hover p,
.m.m-big:hover h5,
.m.m-big:hover > div,
.m.m-big:hover > div > span {
  color: var(--ink) !important;
}
.m.m-big:hover .role-tag {
  background: var(--ink) !important;
  color: var(--acid) !important;
}
.m {
  padding: 40px 28px;
  border-right: 4px solid var(--ink);
  transition: all .25s;
}
.m:last-child { border-right: 0; }
.m:nth-child(odd) { background: var(--paper); }
.m:hover { background: var(--ink); color: var(--bone); }
.m:hover .role-tag { background: var(--acid); color: var(--ink); }
.m .av {
  width: 72px; height: 72px;
  background: var(--ink);
  color: var(--acid);
  font-family: var(--display);
  font-size: 24px;
  display: grid; place-items: center;
  margin-bottom: 24px;
}
.m:hover .av { background: var(--acid); color: var(--ink); }
.m h5 {
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  line-height: 1;
}
.m .role-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--acid);
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 18px;
  margin-top: 4px;
}
.m p { font-size: 13px; line-height: 1.5; font-weight: 500; }

/* ---------- BUSINESS CANVAS ---------- */
.canvas {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 4px solid var(--ink);
}
.canvas .cc {
  padding: 28px 22px;
  border-right: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  min-height: 220px;
  background: var(--bone);
  transition: background .25s;
}
.canvas .cc:hover { background: var(--acid); }
.canvas .cc.span-2 { grid-column: span 2; }
.canvas .cc h6 {
  font-family: var(--display);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  background: var(--ink);
  color: var(--acid);
  padding: 6px 10px;
  margin-bottom: 16px;
  display: inline-block;
}
.canvas .cc ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.canvas .cc li { font-size: 13px; font-weight: 500; line-height: 1.45; }
.canvas .cc li::before { content: "▸ "; color: var(--ink); font-weight: 700; }

/* ---------- BARS ---------- */
.bars {
  padding: 0 32px;
  display: flex; flex-direction: column;
  gap: 14px;
}
.bar {
  display: grid;
  grid-template-columns: 220px 1fr 90px;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 2px solid var(--ink);
}
.bar .l {
  font-family: var(--display);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.bar .track {
  height: 28px;
  background: var(--paper);
  border: 2px solid var(--ink);
  position: relative;
}
.bar .fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--acid);
  transition: width 1.4s cubic-bezier(.2,.7,.2,1);
}
.bar .fill::after {
  content: ""; position: absolute; right: 0; top: 0; bottom: 0;
  width: 4px; background: var(--ink);
}
.bar .v {
  font-family: var(--display);
  font-size: 36px;
  letter-spacing: -0.03em;
  text-align: right;
}

/* ---------- TWOCOL ---------- */
.twocol {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 4px solid var(--ink);
}
.twocol .col {
  padding: 56px 40px;
  border-right: 4px solid var(--ink);
}
.twocol .col:last-child { border-right: 0; background: var(--ink); color: var(--bone); }
.twocol .col:last-child h3 .acid { background: var(--acid); color: var(--ink); }
.twocol h3 {
  font-family: var(--display);
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  line-height: 1;
}
.twocol h3 .acid { background: var(--acid); padding: 0 8px; }
.twocol ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.twocol li {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
  border-bottom: 1px solid currentColor;
  padding-bottom: 12px;
}
.twocol li::before {
  content: "▸";
  position: absolute; left: 0;
  font-weight: 700;
}

/* ---------- PAGE-HERO ---------- */
.page-hero {
  padding: 80px 56px 56px;
  border-bottom: 4px solid var(--ink);
}
.page-hero .crumbs {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 28px;
  display: flex; gap: 12px; align-items: center;
}
.page-hero .crumbs span { color: var(--acid-2); }
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(56px, 10vw, 160px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}
.page-hero h1 .acid { background: var(--acid); padding: 0 12px; }
.page-hero h1 .rouge { background: var(--acid); padding: 0 10px; color: var(--ink); }
.page-hero .sub {
  margin-top: 32px;
  max-width: 620px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

/* ---------- FORM ---------- */
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.form-grid .field {
  padding: 20px 24px;
  border: 2px solid var(--ink);
  margin: -1px;
  background: var(--bone);
  transition: background .2s;
}
.form-grid .field:focus-within { background: var(--acid); }
.form-grid .field.full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 700;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 6px 0;
  font-family: var(--display);
  font-size: 22px;
  color: var(--ink);
  outline: none;
}
.field textarea { resize: vertical; min-height: 120px; font-family: var(--body); font-weight: 500; font-size: 16px; line-height: 1.5; }

/* ---------- FOOTER ---------- */
footer.foot {
  background: var(--ink);
  color: var(--bone);
  padding: 0;
  border-top: 4px solid var(--ink);
}
.foot-cta {
  padding: 80px 32px;
  border-bottom: 4px solid var(--bone);
  position: relative;
  overflow: hidden;
}
.foot-cta h2 {
  font-family: var(--display);
  font-size: clamp(60px, 9vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}
.foot-cta h2 .acid { background: var(--acid); color: var(--ink); padding: 0 12px; }
.foot-cta .sub {
  font-size: 18px; max-width: 600px; margin-top: 24px;
  font-weight: 500;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 60px 32px 32px;
}
.foot-col h6 {
  font-family: var(--display);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--acid);
  margin-bottom: 20px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { font-size: 14px; font-weight: 500; transition: color .2s; }
.foot-col a:hover { color: var(--acid); }
.foot-mail {
  display: flex;
  border: 3px solid var(--bone);
  max-width: 420px;
  margin-top: 18px;
}
.foot-mail input {
  flex: 1; background: transparent; border: 0;
  padding: 14px 16px;
  color: var(--bone);
  font-family: var(--mono); font-size: 13px; outline: none;
}
.foot-mail input::placeholder { color: rgba(244,241,234,.6); }
.foot-mail button {
  background: var(--acid); color: var(--ink); border: 0;
  padding: 0 22px;
  font-family: var(--display); font-size: 13px; text-transform: uppercase;
  cursor: pointer;
}
.foot-bottom {
  padding: 24px 32px;
  border-top: 1px solid rgba(244,241,234,.2);
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- BIG IMAGE (product page hardware section) ---------- */
.bigimg-section { border-bottom: 4px solid var(--ink); }
.bigimg-grid { display: grid; grid-template-columns: 1fr 1fr; }
.bigimg-fig { overflow: hidden; height: 540px; background: var(--ink); margin: 0; }
.bigimg-fig img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05); display: block; }
.bigimg-specs { background: var(--acid); padding: 56px 48px; display: flex; flex-direction: column; justify-content: center; }
.bigimg-specs .sec-label { margin-bottom: 24px; }
.bigimg-title { font-family: var(--display); font-size: 64px; line-height: 0.95; letter-spacing: -0.03em; text-transform: uppercase; }
.bigimg-list { margin-top: 36px; list-style: none; display: flex; flex-direction: column; gap: 0; }
.bigimg-list li {
  display: grid; grid-template-columns: 140px 1fr; gap: 16px;
  padding: 16px 0;
  border-bottom: 2px solid var(--ink);
  font-family: var(--mono); font-size: 13px; font-weight: 500;
}
.bigimg-list li:last-child { border-bottom: 0; }
.bigimg-list li .k { font-family: var(--display); }

/* ---------- CONTACT GRID ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 0;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}

/* ---------- ANIMATIONS ---------- */
/* Defaults: content is visible. JS opts-in to animations by adding html.js */
.in-view { transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
html.js .in-view:not(.shown) { opacity: 0; transform: translateY(40px); }
html.js .in-view.shown { opacity: 1; transform: translateY(0); }
@keyframes rise { from { opacity:0; transform: translateY(40px);} to {opacity:1; transform: translateY(0);} }
html.js .reveal { opacity:0; animation: rise .9s cubic-bezier(.2,.7,.2,1) forwards; }
html.js .reveal.d1 { animation-delay: .12s; }
html.js .reveal.d2 { animation-delay: .26s; }
html.js .reveal.d3 { animation-delay: .42s; }
html.js .reveal.d4 { animation-delay: .58s; }

/* ---------- TEASER 3D (Homepage) ---------- */
.teaser-3d {
  background: var(--bone);
  padding: 80px 0;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.teaser-3d::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 49%, var(--ink) 49.5%, var(--ink) 50.5%, transparent 51%) 0 0 / 60px 60px;
  opacity: 0.04;
}
.teaser-3d-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  padding: 0 32px;
  position: relative;
}
.teaser-3d-text { position: relative; z-index: 1; }
.teaser-3d-text .sec-title { margin-top: 18px; font-size: clamp(40px, 5.5vw, 76px); }
.teaser-3d-bullets {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.teaser-3d-bullets li {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ink);
}
.teaser-3d-bullets li:last-child { border-bottom: 0; }
.teaser-3d-bullets svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: var(--acid);
  border: 2px solid var(--ink);
  color: var(--ink);
  padding: 3px;
  border-radius: 50%;
}

.teaser-3d-visual {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.teaser-3d-img {
  position: relative;
  border: 4px solid var(--ink);
  background: linear-gradient(135deg, #F4F1EA, #E0DAC8);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.teaser-3d-img:hover { transform: scale(1.02); }
.teaser-3d-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 16px;
  mix-blend-mode: multiply;
}
.teaser-3d-img.main {
  grid-row: span 2;
  background: var(--acid);
  border-color: var(--ink);
}
.teaser-3d-img.sub-1 { background: var(--ink); }
.teaser-3d-img.sub-1 img { mix-blend-mode: screen; filter: invert(1) hue-rotate(180deg) brightness(1.2) contrast(.9); }
.teaser-3d-img.sub-2 { background: var(--paper); }

.teaser-3d-deco {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  z-index: 2;
  animation: cad-spin 80s linear infinite;
  background: var(--bone);
  border-radius: 50%;
  padding: 8px;
}

/* ---------- HERO 3D TREATMENT ---------- */
.hero-r-3d {
  position: relative;
  background: linear-gradient(135deg, #F4F1EA 0%, #E0DAC8 50%, #F4F1EA 100%);
  overflow: hidden;
}
.hero-r-3d::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(10,10,10,.04) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.hero-r-3d img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: contrast(1.05);
  padding: 32px;
  mix-blend-mode: multiply;
}
.hero-deco-tl {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  z-index: 3;
}
.hero-sticker {
  position: absolute;
  background: var(--ink);
  color: var(--acid);
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  z-index: 2;
  border: 2px solid var(--acid);
  box-shadow: 4px 4px 0 var(--acid);
  animation: sticker-float 6s ease-in-out infinite;
}
.hero-sticker svg { width: 16px; height: 16px; }
.hero-sticker-1 { top: 18%; right: 8%; animation-delay: 0s; }
.hero-sticker-2 { top: 52%; left: 6%; background: var(--acid); color: var(--ink); border-color: var(--ink); box-shadow: 4px 4px 0 var(--ink); animation-delay: 1.5s; }
.hero-sticker-3 { bottom: 16%; right: 12%; animation-delay: 3s; }
@keyframes sticker-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ---------- CONCEPTION 3D — CAD GALLERY ---------- */
.cad-section {
  position: relative;
  overflow: hidden;
}
.cad-deco {
  position: absolute;
  top: 40px;
  right: -60px;
  width: 280px;
  height: 280px;
  pointer-events: none;
  opacity: 0.35;
  animation: cad-spin 60s linear infinite;
}
@keyframes cad-spin {
  to { transform: rotate(360deg); }
}

.cad-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 4px;
  background: var(--ink);
  border: 4px solid var(--ink);
  padding: 0;
  margin: 0 32px;
}
.cad-frame {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #F4F1EA 0%, #E0DAC8 100%);
  margin: 0;
  min-height: 320px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.cad-frame.cad-large {
  grid-row: span 2;
  min-height: 660px;
}
.cad-frame.cad-dark {
  background: linear-gradient(135deg, #0A0A0A 0%, #1F1F1F 100%);
}
.cad-frame.cad-acid {
  background: linear-gradient(135deg, #F5C518 0%, #E5B30C 100%);
}
.cad-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
  padding: 24px;
  display: block;
  mix-blend-mode: multiply;
}
.cad-frame.cad-dark img { mix-blend-mode: screen; filter: invert(1) hue-rotate(180deg) brightness(1.2) contrast(.9); }
.cad-frame:hover img { transform: scale(1.04); }
.cad-tag {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--acid);
  padding: 6px 10px;
  z-index: 2;
}
.cad-frame.cad-dark .cad-tag { background: var(--acid); color: var(--ink); }
.cad-cap {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  background: rgba(244,241,234,.92);
  backdrop-filter: blur(6px);
  padding: 10px 14px;
  border-left: 3px solid var(--acid);
  z-index: 2;
}
.cad-frame.cad-dark .cad-cap {
  background: rgba(10,10,10,.85);
  color: var(--bone);
  border-left-color: var(--acid);
}

.cad-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 4px solid var(--ink);
  margin-top: 0;
}
.cad-spec {
  padding: 32px 28px;
  border-right: 4px solid var(--ink);
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--bone);
  transition: background .25s;
}
.cad-spec:last-child { border-right: 0; }
.cad-spec:hover { background: var(--acid); }
.cad-spec svg { width: 36px; height: 36px; flex-shrink: 0; }
.cad-spec b {
  display: block;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.cad-spec span {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

/* ---------- HAMBURGER + MOBILE MENU ---------- */
.burger {
  display: none;
  background: var(--ink);
  color: var(--bone);
  border: 0;
  width: 64px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.burger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--acid);
  transition: transform .3s, opacity .2s;
}
.burger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--bone);
  z-index: 200;
  padding: 86px 32px 40px;
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.65, 0, .35, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

/* Close button shown inside the open menu — always reachable */
.mobile-menu-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 56px;
  height: 56px;
  background: var(--acid);
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  -webkit-tap-highlight-color: transparent;
  z-index: 2;
  transition: background .2s, transform .25s;
}
.mobile-menu-close:hover { background: var(--bone); }
.mobile-menu-close:active { transform: scale(0.92); }
.mobile-menu-close svg { width: 24px; height: 24px; color: var(--ink); }
.mobile-menu-brand {
  position: absolute;
  top: 22px;
  left: 24px;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.01em;
  z-index: 2;
}
.mobile-menu-brand b { color: var(--acid); }
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  display: block;
  font-family: var(--display);
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  padding: 22px 0;
  border-bottom: 2px solid rgba(244,241,234,.15);
  color: var(--bone);
  text-decoration: none;
  transition: color .2s, padding-left .2s;
}
.mobile-menu a:hover, .mobile-menu a.active {
  color: var(--acid);
  padding-left: 12px;
}
.mobile-menu a.active::before { content: "▸ "; }
.mobile-menu .mcta {
  margin-top: auto;
  background: var(--acid);
  color: var(--ink);
  text-align: center;
  font-size: 18px;
  padding: 22px;
  border: 0;
  margin-bottom: 0;
  border-radius: 0;
}
.mobile-menu .mcta:hover { background: var(--bone); padding-left: 22px; }
.mobile-menu-close-btn-wrap {
  position: fixed; top: 0; right: 0;
  z-index: 201;
}
body.menu-open { overflow: hidden; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  nav .row {
    grid-template-columns: 1fr auto auto;
    height: 72px;
  }
  nav .brand { padding: 12px 20px; border-right: 4px solid var(--ink); }
  nav .brand .name { font-size: 22px; }
  nav .brand .tag { font-size: 9px; letter-spacing: 0.16em; }
  nav .links { display: none; }
  nav .cta {
    padding: 0 22px;
    font-size: 12px;
    border-left: 4px solid var(--ink);
    background: var(--bone);
    color: var(--ink);
  }
  nav .cta:hover { background: var(--ink); color: var(--acid); }
  .burger { display: flex; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-l { border-right: 0; border-bottom: 4px solid var(--ink); padding: 40px 24px 48px; }
  .hero-r { min-height: 320px; }
  .h1 { font-size: clamp(48px, 14vw, 80px) !important; }
  .hero-meta { gap: 16px; }
  .hero-meta .m .val { font-size: 18px; }

  .mast { padding: 12px 20px; font-size: 10px; }
  .mast .marquee { margin: 0 16px; }

  .issue { grid-template-columns: 1fr 1fr; }
  .issue .cell { padding: 14px 18px; font-size: 10px; }
  .issue .cell b { font-size: 14px; }

  .ticker-track { font-size: 22px; }

  .sec { padding: 60px 0; }
  .sec-head { grid-template-columns: 1fr; gap: 18px; padding: 0 24px; margin-bottom: 36px; }
  .sec-num { font-size: 56px; line-height: 1; }
  .sec-title { font-size: clamp(36px, 8vw, 60px) !important; }

  .stats-grid, .f4, .pricing, .journey, .team { grid-template-columns: 1fr 1fr; }
  .stat { padding: 36px 24px; }
  .stat .num { font-size: 18vw; }
  .stat .num sup { font-size: 6vw; }
  .stat .lab { font-size: 14px; margin-top: 12px; }
  .stat .desc { font-size: 13px; margin-top: 12px; }

  .f { padding: 32px 22px; }
  .f .num { font-size: 56px; margin-bottom: 14px; }
  .f h4 { font-size: 22px; }

  .j { padding: 32px 22px 40px; }
  .j .big { font-size: 84px; margin-bottom: 18px; }

  .canvas { grid-template-columns: 1fr 1fr; }
  .twocol { grid-template-columns: 1fr; }
  .twocol .col { padding: 36px 24px; border-right: 0; border-bottom: 4px solid var(--ink); }
  .twocol .col:last-child { border-bottom: 0; }

  .page-hero { padding: 56px 24px 48px; }
  .page-hero h1 { font-size: clamp(52px, 13vw, 96px); }
  .page-hero .sub { font-size: 16px; margin-top: 24px; }

  .foot-grid { grid-template-columns: 1fr 1fr; padding: 48px 20px 24px; gap: 32px 24px; }
  .foot-cta { padding: 56px 20px; }
  .foot-cta h2 { font-size: clamp(44px, 12vw, 80px) !important; }
  .foot-cta .sub { font-size: 16px; margin-top: 16px; }
  .foot-bottom { padding: 20px; flex-direction: column; gap: 6px; }

  .pricing .p { padding: 36px 24px; }
  .pricing .p .price { font-size: 40px; }

  .stat:nth-child(2) { background: var(--bone); }
  .stat.acid { background: var(--acid) !important; }

  /* contact: stack form + aside vertically + clean mobile form */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid > form { padding: 28px 20px !important; border-right: 0 !important; border-bottom: 4px solid var(--ink); }
  .contact-grid > aside { padding: 28px 20px !important; }
  .contact-grid > aside h3 { font-size: 30px !important; margin-bottom: 22px !important; }

  /* mobile form fields — clean underline style, no boxy borders */
  .contact-grid .form-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .contact-grid .form-grid .field {
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
  }
  .contact-grid .form-grid .field label {
    margin-bottom: 6px;
    font-size: 10px;
    letter-spacing: 0.18em;
    color: var(--ink);
  }
  .contact-grid .form-grid .field input,
  .contact-grid .form-grid .field select,
  .contact-grid .form-grid .field textarea {
    width: 100%;
    background: rgba(10, 10, 10, 0.04);
    border: 2px solid var(--ink);
    padding: 12px 14px;
    font-family: var(--display);
    font-size: 16px;
    color: var(--ink);
    outline: none;
    transition: background .15s;
    border-radius: 0;
  }
  .contact-grid .form-grid .field input:focus,
  .contact-grid .form-grid .field select:focus,
  .contact-grid .form-grid .field textarea:focus {
    background: var(--acid);
  }
  .contact-grid .form-grid .field textarea {
    min-height: 100px;
    resize: vertical;
    font-family: var(--body);
    font-weight: 500;
    font-size: 15px;
    line-height: 1.45;
  }

  /* team founders: stack cards on mobile */
  .team.team-2 { grid-template-columns: 1fr !important; }
  .team.team-2 .m.m-big { padding: 40px 24px !important; border-right: 0 !important; border-bottom: 4px solid var(--ink); }
  .team.team-2 .m.m-big:last-child { border-bottom: 0; }
  .team.team-2 .m.m-big h5 { font-size: 32px !important; }
  .team.team-2 .m.m-big .av { width: 80px !important; height: 80px !important; font-size: 26px !important; }
  .team.team-2 .m.m-big svg { width: 56px !important; height: 56px !important; }

  /* spec list on hardware section */
  .sec.cad-section + section [style*="grid-template-columns: 140px 1fr"] { grid-template-columns: 100px 1fr !important; }

  /* product BIG IMAGE — stack on mobile */
  .bigimg-grid { grid-template-columns: 1fr; }
  .bigimg-fig { height: 240px; }
  .bigimg-specs { padding: 32px 20px; }
  .bigimg-title { font-size: 36px; }
  .bigimg-list li { grid-template-columns: 96px 1fr; gap: 12px; font-size: 12px; }

  .teaser-3d-grid { grid-template-columns: 1fr; gap: 32px; padding: 0 20px; }
  .teaser-3d-visual { aspect-ratio: 16/12; }
  .teaser-3d-deco { width: 84px; height: 84px; top: -16px; right: -16px; }
  .hero-r-3d img { padding: 20px; }
  .hero-deco-tl { width: 90px; height: 90px; }
  .hero-sticker { font-size: 9px; padding: 8px 12px; box-shadow: 3px 3px 0 var(--acid); }
  .hero-sticker svg { width: 14px; height: 14px; }
  .hero-sticker-1 { top: 12%; right: 5%; }
  .hero-sticker-2 { top: 48%; left: 4%; box-shadow: 3px 3px 0 var(--ink); }
  .hero-sticker-3 { bottom: 12%; right: 8%; }

  .cad-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    margin: 0 16px;
  }
  .cad-frame.cad-large { grid-row: span 1; min-height: 400px; }
  .cad-frame { min-height: 280px; }
  .cad-specs { grid-template-columns: 1fr 1fr; }
  .cad-specs .cad-spec { border-right: 4px solid var(--ink); border-bottom: 4px solid var(--ink); }
  .cad-specs .cad-spec:nth-child(2n) { border-right: 0; }
  .cad-specs .cad-spec:nth-last-child(-n+2) { border-bottom: 0; }
  .cad-deco { width: 180px; height: 180px; opacity: 0.25; right: -40px; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .shell { padding: 0 20px; }
  nav .row { height: 64px; grid-template-columns: 1fr auto auto; }
  nav .brand { padding: 10px 16px; }
  nav .brand .name { font-size: 18px; }
  nav .brand .tag { font-size: 8px; letter-spacing: 0.12em; }
  nav .cta { padding: 0 16px; font-size: 11px; }
  .burger { width: 56px; }

  .mast { padding: 10px 16px; flex-wrap: wrap; gap: 8px; font-size: 9px; }
  .mast .marquee { margin: 0; flex-basis: 100%; order: 3; }
  .mast .marquee-track { font-size: 11px; gap: 24px; }
  .mast .marquee-track span::after { margin-left: 24px; }

  .issue { grid-template-columns: 1fr; }
  .issue .cell { border-right: 0; border-bottom: 1px solid rgba(244,241,234,.2); padding: 12px 16px; }
  .issue .cell:last-child { border-bottom: 0; }

  .h1 { font-size: clamp(36px, 12vw, 52px) !important; letter-spacing: -0.04em; }
  .h1 .arrow::after { margin-left: 8px; -webkit-text-stroke: 2px var(--ink); }
  .hero-lede { font-size: 16px; margin-top: 22px; }
  .hero-meta { grid-template-columns: 1fr 1fr; padding-top: 20px; }
  .hero-meta .m { padding: 12px 0; }
  .hero-l { padding: 32px 20px 40px; }

  .cta-row { gap: 0; flex-direction: column; align-items: stretch; }
  .btn { width: 100%; justify-content: center; padding: 16px 22px; font-size: 12px; }

  .ticker { padding: 12px 0; }
  .ticker-track { font-size: 16px; gap: 28px; }

  .stats-grid, .f4, .pricing, .journey, .team { grid-template-columns: 1fr; }
  .stats-grid .stat { border-right: 0; border-bottom: 4px solid var(--ink); }
  .stats-grid .stat:last-child { border-bottom: 0; }
  .f { border-right: 0; border-bottom: 4px solid var(--ink); }
  .f:last-child { border-bottom: 0; }
  .j { border-right: 0; border-bottom: 4px solid var(--ink); }
  .j:last-child { border-bottom: 0; }
  .p { border-right: 0; border-bottom: 4px solid var(--ink); }
  .p:last-child { border-bottom: 0; }
  .m { border-right: 0; border-bottom: 4px solid var(--ink); }
  .m:last-child { border-bottom: 0; }

  .stat .num { font-size: 28vw; }
  .stat .num sup { font-size: 9vw; }
  .stat .lab { font-size: 16px; }

  .canvas { grid-template-columns: 1fr; }
  .canvas .cc { min-height: auto; padding: 20px 18px; border-right: 0; }

  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .field { padding: 16px 18px; }
  .field input, .field select { font-size: 18px; }

  .bar { grid-template-columns: 1fr; gap: 8px; padding: 16px 0; }
  .bar .l { font-size: 14px; }
  .bar .v { text-align: left; font-size: 26px; }

  .sec-num { font-size: 40px; }
  .sec-title { font-size: clamp(32px, 9vw, 48px) !important; }
  .sec-label { font-size: 10px; padding: 5px 10px; }
  .sec-lede { font-size: 15px; }
  .sec { padding: 48px 0; }

  .page-hero { padding: 40px 20px 36px; }
  .page-hero h1 { font-size: clamp(40px, 13vw, 64px); line-height: 0.9; }
  .page-hero .crumbs { font-size: 10px; margin-bottom: 18px; gap: 8px; }

  .foot-cta h2 { font-size: clamp(36px, 12vw, 56px) !important; }
  .foot-cta .sub { font-size: 14px; }

  .mobile-menu { padding: 90px 24px 30px; }
  .mobile-menu a { font-size: 28px; padding: 18px 0; }
  .mobile-menu .mcta { font-size: 16px; padding: 18px; }

  .cad-specs { grid-template-columns: 1fr; }
  .cad-specs .cad-spec { border-right: 0; }
  .cad-frame { min-height: 240px; }
  .cad-tag { font-size: 9px; padding: 4px 8px; }
  .cad-cap { font-size: 10px; padding: 8px 10px; }
}

/* prefer-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .marquee-track, .ticker-track { animation: none !important; }
}
