:root {
  --black: #0d0d0d;
  --surface: #1a1a1a;
  --surface-2: #242424;
  --ember: #ff4d00;
  --text: #f0ede8;
  --muted: #6b6b6b;
  --line: rgba(240, 237, 232, 0.14);
  --danger: #ff5b5b;
  --font-display: "Barlow Condensed", Impact, sans-serif;
  --font-body: "IBM Plex Sans", Arial, sans-serif;
  --header-height: 76px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 77, 0, 0.16), transparent 34rem),
    linear-gradient(180deg, #080808 0%, var(--black) 34%, #101010 100%);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

body.modal-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  z-index: 1000;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
  animation: grainShift 8s steps(6) infinite;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 3.5rem);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(13, 13, 13, 0.72);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
}

.logo span { color: var(--ember); }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
  color: rgba(240, 237, 232, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 0.35rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--ember);
  transition: width 180ms ease;
}

.site-nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(26, 26, 26, 0.78);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.15rem;
  border: 1px solid var(--ember);
  background: transparent;
  color: var(--text);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 230ms ease;
}

.btn:hover::before, .btn:focus-visible::before { transform: scaleX(1); }
.btn-primary { background: var(--ember); color: #120804; }
.btn-primary::before { background: #ff7a35; }
.btn-ghost, .btn-secondary, .btn-card { background: rgba(13, 13, 13, 0.32); }
.btn:disabled { cursor: not-allowed; opacity: 0.45; }
.btn:disabled::before { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 4rem) clamp(1rem, 6vw, 6rem) 6rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 72% 48%, rgba(255, 77, 0, 0.34), transparent 24rem),
    linear-gradient(105deg, rgba(13, 13, 13, 0.95) 0%, rgba(13, 13, 13, 0.7) 42%, rgba(13, 13, 13, 0.24) 100%);
}

.hero-machine {
  position: absolute;
  right: max(-5rem, -6vw);
  top: 16%;
  width: min(54vw, 760px);
  min-width: 340px;
  aspect-ratio: 1 / 0.92;
  border: 1px solid rgba(240, 237, 232, 0.08);
  background:
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(255, 255, 255, 0.035) 29px 30px),
    linear-gradient(135deg, rgba(48, 48, 48, 0.88), rgba(10, 10, 10, 0.96));
  box-shadow: inset 0 0 80px rgba(255, 77, 0, 0.08), 0 40px 90px rgba(0, 0, 0, 0.65);
  transform: skewX(-6deg);
}

.machine-core {
  position: absolute;
  right: 16%;
  top: 22%;
  width: 36%;
  aspect-ratio: 1;
  border: 20px solid #0f0f0f;
  border-top-color: #3a3a3a;
  box-shadow: 0 0 60px rgba(255, 77, 0, 0.3), inset 0 0 36px rgba(255, 77, 0, 0.2);
}

.machine-card {
  position: absolute;
  left: 10%;
  width: 42%;
  height: 18%;
  background: linear-gradient(90deg, #101010, #2d2d2d);
  border: 1px solid rgba(255, 77, 0, 0.24);
}

.card-a { top: 22%; }
.card-b { top: 47%; width: 50%; }
.machine-vents {
  position: absolute;
  left: 9%;
  bottom: 13%;
  width: 74%;
  height: 11%;
  background: repeating-linear-gradient(90deg, #080808 0 8px, #393939 8px 12px);
}

.hero-content {
  max-width: 880px;
  margin-top: 2rem;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1rem;
  color: var(--ember);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker::after {
  content: "";
  flex: 1;
  max-width: 210px;
  height: 1px;
  background: rgba(255, 77, 0, 0.55);
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  font-size: clamp(5.2rem, 15vw, 13rem);
}

h2 { font-size: clamp(3rem, 7vw, 6.5rem); }
h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); }

.hero-copy {
  max-width: 540px;
  margin: 1.25rem 0 2rem;
  color: rgba(240, 237, 232, 0.78);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.trust-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.1rem clamp(1rem, 6vw, 6rem);
  border-top: 1px solid var(--line);
  background: rgba(13, 13, 13, 0.76);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.trust-track {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  white-space: nowrap;
  color: rgba(240, 237, 232, 0.82);
  font-weight: 800;
  text-transform: uppercase;
}

section:not(.hero), .site-footer {
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1rem, 6vw, 6rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading h2 { grid-column: 1; }
.section-heading.narrow { max-width: 900px; display: block; }

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

.category-tile, .product-card, .review-card, .teaser-form {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(26, 26, 26, 0.98), rgba(10, 10, 10, 0.96));
}

.category-tile {
  position: relative;
  min-height: clamp(220px, 30vw, 360px);
  padding: 1.1rem;
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease;
}

.category-tile:hover {
  border-color: var(--ember);
  transform: translateY(-3px);
}

.tile-arrow {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  z-index: 2;
  color: var(--ember);
  font-size: 1.7rem;
  transition: transform 180ms ease;
}

.category-tile:hover .tile-arrow { transform: translateX(7px); }

.tile-title {
  position: absolute;
  left: 1.2rem;
  bottom: 1rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  text-transform: uppercase;
}

.product-visual {
  position: absolute;
  inset: 12% 10% 18%;
  display: block;
  filter: drop-shadow(0 0 30px rgba(255, 77, 0, 0.16));
  transition: transform 220ms ease;
}

.category-tile:hover .product-visual, .product-card:hover .product-visual { transform: scale(1.04); }

.console-visual {
  background:
    radial-gradient(circle at 52% 18%, rgba(255, 77, 0, 0.28), transparent 12%),
    linear-gradient(90deg, #0f0f0f 0 42%, #2a2a2a 43% 47%, #111 48% 100%);
  clip-path: polygon(34% 7%, 62% 7%, 70% 93%, 26% 93%);
}

.pc-visual {
  background:
    radial-gradient(circle at 58% 42%, rgba(255, 77, 0, 0.36), transparent 18%),
    repeating-linear-gradient(180deg, transparent 0 28px, rgba(255,255,255,0.08) 29px 30px),
    linear-gradient(135deg, #282828, #080808);
  clip-path: polygon(24% 4%, 78% 10%, 71% 96%, 19% 88%);
}

.handheld-visual {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 77, 0, 0.2), transparent 16%),
    linear-gradient(90deg, #171717 0 20%, #383838 21% 78%, #141414 79% 100%);
  clip-path: polygon(5% 30%, 15% 15%, 85% 15%, 95% 30%, 95% 70%, 85% 85%, 15% 85%, 5% 70%);
}

.peripheral-visual {
  background:
    radial-gradient(circle at 22% 72%, rgba(255, 77, 0, 0.34), transparent 9%),
    radial-gradient(circle at 58% 44%, rgba(255, 77, 0, 0.24), transparent 12%),
    linear-gradient(140deg, #252525, #080808);
  clip-path: polygon(10% 65%, 24% 33%, 42% 31%, 47% 45%, 58% 45%, 63% 31%, 82% 33%, 94% 65%, 86% 82%, 65% 72%, 35% 72%, 14% 82%);
}

.process-list {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 0.55fr 1fr 1.4fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.step-number {
  position: absolute;
  left: 0;
  top: -0.2rem;
  color: rgba(255, 77, 0, 0.13);
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 800;
  line-height: 1;
}

.process-step h3 { grid-column: 2; position: relative; }
.process-step p {
  grid-column: 3;
  position: relative;
  max-width: 560px;
  margin: 0;
  color: rgba(240, 237, 232, 0.68);
}

.process-promise {
  margin: 2rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  position: relative;
  min-height: 500px;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.product-card .product-visual { inset: 10% 8% 42%; }
.badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.28rem 0.5rem;
  border: 1px solid rgba(255, 77, 0, 0.58);
  color: var(--ember);
  font-size: 0.74rem;
  font-weight: 800;
}

.price-line {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.price-line strong {
  margin-left: 0.45rem;
  color: var(--ember);
  font-size: 1.6rem;
}

.spec-line {
  min-height: 3rem;
  margin: 0.4rem 0 1rem;
  color: rgba(240, 237, 232, 0.68);
}

.trade-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.trade-copy p:last-child {
  max-width: 670px;
  color: rgba(240, 237, 232, 0.72);
  font-size: 1.08rem;
}

.teaser-form {
  padding: clamp(1rem, 3vw, 2rem);
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: rgba(240, 237, 232, 0.72);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #0a0a0a;
  color: var(--text);
  min-height: 48px;
  padding: 0.85rem;
  border-radius: 0;
  outline: none;
}

textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--ember); }
input.is-invalid, select.is-invalid, textarea.is-invalid { border-color: var(--danger); }
.field-error {
  min-height: 1.05rem;
  margin: 0;
  color: var(--danger);
  font-size: 0.78rem;
  text-transform: none;
}

.warranty-section {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(0, 0.7fr) minmax(300px, 1fr);
  gap: 2rem;
  align-items: start;
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.shield-mark svg {
  width: 96px;
  fill: none;
  stroke: var(--ember);
  stroke-width: 4;
}

.benefit-list {
  display: grid;
  gap: 0.85rem;
}

.benefit-row {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 0.25rem 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.benefit-row span {
  grid-row: span 2;
  color: var(--ember);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
}

.benefit-row strong { text-transform: uppercase; }
.benefit-row p { margin: 0; color: rgba(240, 237, 232, 0.64); }
.warranty-section .btn { grid-column: 3; justify-self: start; }

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

.review-card {
  padding: 1.4rem;
}

.stars {
  width: 118px;
  height: 22px;
  background: repeat-x left / 23px 22px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ff4d00' d='m12 1.8 3.1 6.4 7 1-5.1 5 1.2 7-6.2-3.3-6.2 3.3 1.2-7-5.1-5 7-1z'/%3E%3C/svg%3E");
}

.review-card p { color: rgba(240, 237, 232, 0.76); }
.community-stat {
  margin: 2rem auto 0;
  max-width: 820px;
  text-align: center;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #080808;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 1fr;
  gap: 2rem;
}

.site-footer h2 {
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
}

.site-footer p, .site-footer a {
  color: rgba(240, 237, 232, 0.66);
}

.site-footer a {
  display: block;
  margin-bottom: 0.45rem;
}

.newsletter div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}

.copyright {
  margin: 3rem 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  place-items: stretch;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(22px);
}

.modal.is-open { display: grid; }

.modal-panel {
  position: relative;
  width: 100%;
  min-height: 100svh;
  padding: clamp(1rem, 6vw, 5rem);
  display: grid;
  align-items: center;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
}

.modal-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(240, 237, 232, 0.1);
}

.modal-progress span {
  display: block;
  width: 33%;
  height: 100%;
  background: var(--ember);
  transition: width 180ms ease;
}

.quote-form {
  width: min(1040px, 100%);
  margin: 0 auto;
}

.modal-step { display: none; }
.modal-step.is-active {
  display: grid;
  gap: 1rem;
  animation: riseIn 240ms ease both;
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.intent-card {
  min-height: 220px;
  padding: 1rem;
  display: grid;
  align-content: end;
  gap: 0.8rem;
  text-align: left;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(26, 26, 26, 0.94), rgba(8, 8, 8, 0.96));
  color: var(--text);
  transition: border-color 180ms ease, transform 180ms ease;
}

.intent-card span {
  color: var(--ember);
  font-size: 2rem;
}

.intent-card strong {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.intent-card small {
  color: rgba(240, 237, 232, 0.62);
  font-size: 0.92rem;
}

.intent-card.is-selected {
  border-color: var(--ember);
  transform: translateY(-3px);
}

.dynamic-fields {
  display: none;
  gap: 1rem;
}

.dynamic-fields.is-active { display: grid; }
.modal-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.back-link {
  border: 0;
  background: transparent;
  color: rgba(240, 237, 232, 0.72);
  font-weight: 800;
  text-transform: uppercase;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-transform: none;
}

.check-row input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--ember);
}

.submit-btn { width: min(100%, 420px); }
.legal-note { margin: 0; color: var(--muted); font-size: 0.85rem; }
.form-status { color: var(--ember); }

.confirm-step {
  justify-items: start;
  max-width: 760px;
}

.checkmark {
  width: 96px;
  height: 96px;
  border: 2px solid var(--ember);
  background:
    linear-gradient(45deg, transparent 45%, var(--ember) 46% 54%, transparent 55%) 18px 49px / 25px 25px no-repeat,
    linear-gradient(-45deg, transparent 45%, var(--ember) 46% 54%, transparent 55%) 39px 43px / 42px 42px no-repeat;
  animation: checkPulse 620ms ease both;
}

.section-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes grainShift {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1%); }
  50% { transform: translate(1%, -2%); }
  75% { transform: translate(2%, 2%); }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes checkPulse {
  from { opacity: 0; transform: scale(0.84); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1024px) {
  .hero-machine {
    right: -18rem;
    width: 740px;
    opacity: 0.72;
  }

  .section-heading,
  .trade-section,
  .warranty-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .warranty-section .btn { grid-column: 1; }
  .product-row, .review-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 430px; }
}

@media (max-width: 768px) {
  :root { --header-height: 66px; }

  .site-header { padding: 0 1rem; }
  .nav-toggle { display: block; }

  .site-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 0 1rem 1rem;
    background: rgba(13, 13, 13, 0.94);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a, .site-nav .btn {
    width: 100%;
    justify-content: flex-start;
    padding-block: 1rem;
  }

  .hero {
    padding-inline: 1rem;
    min-height: 92svh;
  }

  .hero-machine {
    top: 21%;
    right: -26rem;
    width: 680px;
  }

  .hero-actions, .modal-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .trust-track {
    width: max-content;
    animation: ticker 16s linear infinite;
  }

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

  .category-tile {
    min-height: 190px;
    padding: 0.8rem;
  }

  .tile-title { font-size: clamp(2rem, 11vw, 3.2rem); }

  .process-step {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .process-step h3, .process-step p { grid-column: 1; }

  .product-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
  }

  .product-card {
    min-width: min(86vw, 360px);
    scroll-snap-align: start;
  }

  .intent-grid { grid-template-columns: 1fr; }
  .intent-card { min-height: 150px; }
  .newsletter div { grid-template-columns: 1fr; }
}

@media (max-width: 440px) {
  h1 { font-size: 4.2rem; }
  h2 { font-size: 2.7rem; }
  section:not(.hero), .site-footer { padding-inline: 1rem; }
  .category-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .section-reveal {
    opacity: 1;
    transform: none;
  }
}
