/* ============================================================
   ABDULLAH AHMAD — 3D PORTFOLIO
   Lando-style: paper background, ink type, lime accent
   ============================================================ */

:root {
  --paper: #f1f0ea;
  --ink: #131313;
  --lime: #d6f33b;
  --grey: #8b8a83;
  --line: rgba(19, 19, 19, 0.14);
  --dark: #0e0e0e;
  --font-display: "Archivo Black", "Archivo", sans-serif;
  --font-body: "Archivo", sans-serif;
  --font-mono: "Space Mono", monospace;
}

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

html { scroll-behavior: auto; }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--lime); color: var(--ink); }

.mono { font-family: var(--font-mono); }
.small { font-size: 0.72rem; }
.label { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey); }
.label.lime { color: var(--lime); }

.display {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

/* ---------- background layers ---------- */

.topo {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.topo-swoosh { opacity: 0.6; }

#scene-wrap {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
#scene { width: 100%; height: 100%; display: block; }

/* ---------- loader ---------- */

#loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--dark);
  color: var(--lime);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.loader-mark {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-style: italic;
  letter-spacing: -0.05em;
}
.loader-pct { font-size: 0.85rem; letter-spacing: 0.2em; }

/* ---------- header ---------- */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.4rem 1.8rem;
  pointer-events: none;
}
header > * { pointer-events: auto; }

.logo {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
}

.logo-mark {
  position: absolute;
  left: 50%;
  top: 1.5rem;
  transform: translateX(-50%) skewX(-8deg);
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -0.08em;
}

.header-right { display: flex; gap: 0.6rem; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.4rem;
  border-radius: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s;
}
.btn:hover { transform: translateY(-2px) scale(1.03); }

.btn-lime { background: var(--lime); color: var(--ink); box-shadow: 0 4px 18px rgba(214, 243, 59, 0.45); }

.btn-menu {
  width: 52px;
  height: 48px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-menu:hover { transform: translateY(-2px) scale(1.05); }
.btn-menu span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.66, 0, 0.34, 1);
}
.btn-menu span:first-child { width: 14px; align-self: flex-start; margin-left: 16px; }
.menu-open .btn-menu { background: var(--lime); }
.menu-open .logo, .menu-open .logo-mark { color: var(--paper); }
.menu-open .btn-menu span:first-child { width: 20px; margin-left: 0; transform: translateY(4.25px) rotate(45deg); }
.menu-open .btn-menu span:last-child { transform: translateY(-4.25px) rotate(-45deg); }

/* ---------- hero ---------- */

#hero { height: 320vh; position: relative; }

.hero-ui {
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}
.hero-ui > * { pointer-events: auto; }

.event-card {
  position: absolute;
  left: 1.8rem;
  bottom: 2.2rem;
  width: 168px;
  padding: 1rem 1.1rem 1.2rem;
  border: 1.5px solid rgba(19, 19, 19, 0.35);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  background: rgba(241, 240, 234, 0.6);
  backdrop-filter: blur(4px);
}
.event-card .label { color: var(--ink); font-weight: 700; }
.event-track { width: 100%; color: var(--ink); }
.event-name { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; }
.event-badge {
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}
.event-badge span { font-size: 0.58rem; letter-spacing: 0.14em; line-height: 1.5; }

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--grey);
}
.scroll-hint i {
  width: 1.5px;
  height: 38px;
  background: var(--ink);
  display: block;
  animation: scrollPulse 1.6s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); opacity: 1; }
  60% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

.side-tag {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: rotate(90deg) translateX(-50%);
  transform-origin: right center;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--grey);
  white-space: nowrap;
}

/* ---------- marquee ---------- */

.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 3.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9vw, 8.5rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.marquee-track em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- sections ---------- */

.section { position: relative; z-index: 2; padding: 9rem 1.8rem; max-width: 1500px; margin: 0 auto; }
.section-head { margin-bottom: 3.5rem; display: flex; flex-direction: column; gap: 1.2rem; }

.display { font-size: clamp(3rem, 8vw, 7.5rem); }
.display.sm { font-size: clamp(2.4rem, 5.5vw, 5rem); }

.reveal-lines { overflow: hidden; }
.reveal-lines span { display: block; }

/* about */

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem 4rem;
  align-items: start;
}
.about-grid h2 { grid-column: 1 / -1; }
.about-copy { display: flex; flex-direction: column; gap: 1.6rem; max-width: 46ch; }
.about-copy p:first-child { font-size: clamp(1.05rem, 1.5vw, 1.35rem); line-height: 1.55; font-weight: 600; }
.about-copy .mono { color: var(--grey); }

.about-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  max-width: 420px;
  justify-self: end;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #e5e3da;
}
.about-photo img,
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 1.5rem;
}
.gallery-grid { align-items: start; }
.g-item { position: relative; display: flex; flex-direction: column; gap: 0.85rem; }
.g-cap { font-size: 0.66rem; letter-spacing: 0.22em; color: var(--grey); text-transform: uppercase; }
.g-frame { border-radius: 18px; overflow: hidden; background: #e5e3da; }
.g-frame img { aspect-ratio: 3 / 4; }

/* editorial quote + signature sitting inside the collage */
.g-quote { display: flex; flex-direction: column; gap: 1.4rem; align-self: flex-end; max-width: 22rem; }
.quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
  line-height: 1.32;
  color: var(--ink);
  max-width: 18ch;
}
.quote-sign {
  font-family: var(--font-sign);
  font-size: clamp(2.6rem, 4.2vw, 3.8rem);
  color: var(--ink);
  line-height: 1;
  transform: rotate(-5deg);
  transform-origin: left center;
}

/* gallery header: heading left, quote + signature right */
.gallery-head { display: flex; flex-direction: row; justify-content: space-between; align-items: flex-end; gap: 2rem 3rem; flex-wrap: wrap; }
.gallery-head-left { display: flex; flex-direction: column; gap: 1.2rem; }

/* sub-group labels inside the gallery */
.group-label { display: block; margin: 0 0 1.5rem; color: var(--grey); }
.sirp-feature + .group-label { margin-top: 4rem; }

/* SIRP work highlight: photo + caption side by side */
.sirp-feature {
  display: grid;
  grid-template-columns: minmax(0, 360px) 1fr;
  gap: 2.5rem 3rem;
  align-items: center;
}
.sirp-shot { border-radius: 18px; overflow: hidden; background: #e5e3da; }
.sirp-shot img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; display: block; }
.sirp-feature-text { display: flex; flex-direction: column; gap: 1.2rem; max-width: 26ch; }
.sirp-feature-text .small { color: var(--grey); }

/* stats */

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.stat {
  padding: 3rem 1.5rem 0;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.stat:first-child { border-left: none; }
.stat .num { font-size: clamp(3rem, 6vw, 5.5rem); }
.stat .num.plus::after { content: "+"; color: var(--lime); }

/* ---------- footer ---------- */

footer {
  position: relative;
  z-index: 2;
  margin-top: 8rem;
  background: var(--dark);
  color: var(--paper);
  border-radius: 32px 32px 0 0;
  padding: 6rem 1.8rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.footer-cta {
  color: var(--paper);
  text-decoration: none;
  font-size: clamp(3.4rem, 11vw, 11rem);
  display: flex;
  flex-direction: column;
  transition: letter-spacing 0.4s ease;
}
.footer-cta:hover { letter-spacing: 0.01em; }
.footer-cta .hollow {
  color: transparent;
  -webkit-text-stroke: 2px var(--lime);
  transition: color 0.35s ease;
}
.footer-cta:hover .hollow { color: var(--lime); }

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(241, 240, 234, 0.15);
  padding-top: 2rem;
}
.socials { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.socials a {
  color: var(--paper);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  position: relative;
}
.socials a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1.5px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}
.socials a:hover::after { transform: scaleX(1); transform-origin: left; }
footer .small { color: rgba(241, 240, 234, 0.5); }

/* ---------- menu overlay ---------- */

#menu {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8vw;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1), visibility 0s 0.7s;
}
.menu-open #menu {
  transform: translateY(0);
  visibility: visible;
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1), visibility 0s;
}
.menu-links { display: flex; flex-direction: column; }
.menu-links a {
  color: var(--paper);
  text-decoration: none;
  font-size: clamp(2.8rem, 8vw, 7rem);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(241, 240, 234, 0.12);
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(40px);
  transition: color 0.3s;
}
.menu-open .menu-links a { opacity: 1; transform: translateY(0); }
.menu-links a:nth-child(1) { transition: opacity 0.5s 0.25s, transform 0.5s 0.25s, color 0.3s; }
.menu-links a:nth-child(2) { transition: opacity 0.5s 0.33s, transform 0.5s 0.33s, color 0.3s; }
.menu-links a:nth-child(3) { transition: opacity 0.5s 0.41s, transform 0.5s 0.41s, color 0.3s; }
.menu-links a:nth-child(4) { transition: opacity 0.5s 0.49s, transform 0.5s 0.49s, color 0.3s; }
.menu-links a:hover { color: var(--lime); }
.menu-links .idx { font-size: 0.8rem; color: var(--lime); letter-spacing: 0.2em; }
.menu-foot {
  position: absolute;
  bottom: 2rem;
  left: 8vw;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: rgba(241, 240, 234, 0.4);
}

/* ---------- cursor ---------- */

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-dot { width: 8px; height: 8px; background: var(--ink); }
.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(19, 19, 19, 0.4);
  transition: width 0.25s, height 0.25s, background 0.25s, border-color 0.25s;
}
.cursor-hover .cursor-ring {
  width: 64px;
  height: 64px;
  background: rgba(214, 243, 59, 0.35);
  border-color: var(--lime);
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { justify-self: start; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 1.8rem 1.2rem; }
  .sirp-feature { grid-template-columns: 1fr; gap: 1.6rem; }
  .sirp-shot { max-width: 360px; }
  /* reel becomes a vertical stack on mobile (no pin) */
  .h-section { height: auto; overflow: visible; padding: 5.5rem 1.1rem; }
  .h-inner { height: auto; }
  .h-label { position: static; margin-bottom: 1.6rem; }
  .h-track { position: static; height: auto; flex-direction: column; gap: 2.5rem; padding: 0; transform: none !important; }
  .reel-item, .reel-item--big { width: 100%; max-width: 380px; transform: none !important; }
  .reel-item--big .g-frame img { aspect-ratio: 3 / 4; }
  .h-progress { display: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 2rem 1rem 0; }
  .stat:nth-child(3) { border-left: none; }
  .side-tag { display: none; }
}

@media (max-width: 640px) {
  header { padding: 1rem 1.1rem; }
  .logo-mark { display: none; }
  .section { padding: 6rem 1.1rem; }
  .event-card { left: 1.1rem; bottom: 1.6rem; width: 142px; padding: 0.8rem 0.9rem 1rem; }
  .scroll-hint { left: auto; right: 1.4rem; transform: none; }
  .gallery-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  footer { padding: 4rem 1.1rem 2rem; }
}

/* reduced motion */

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .scroll-hint i { animation: none; }
}

/* ============================================================
   MANIFESTO · BUILDS · SLICE REVEALS · ANIMATED BACKGROUND
   ============================================================ */

:root {
  --font-serif: "Instrument Serif", "Times New Roman", serif;
  --font-sign: "Sacramento", cursive;
}

.ser {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
  text-transform: none;
  letter-spacing: 0.005em;
}

/* dark full-bleed sections */
.dark-section {
  position: relative;
  z-index: 2;
  background: var(--dark);
  color: var(--paper);
  padding: 8.5rem 1.8rem;
  overflow: hidden;
}
.dark-section .inner { position: relative; z-index: 2; max-width: 1500px; margin: 0 auto; }
.dark-section::before {
  content: "";
  position: absolute;
  inset: -10% -5%;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='1400'%20height='700'%3E%3Cg%20fill='none'%20stroke='%23323a24'%20stroke-width='1.2'%3E%3Cpath%20d='M0,170%20C233,90%20466,250%20700,170%20C933,90%201166,250%201400,170'/%3E%3Cpath%20d='M0,300%20C233,220%20466,380%20700,300%20C933,220%201166,380%201400,300'/%3E%3Cpath%20d='M0,430%20C233,350%20466,510%20700,430%20C933,350%201166,510%201400,430'/%3E%3Cpath%20d='M0,560%20C233,480%20466,640%20700,560%20C933,480%201166,640%201400,560'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 1100px auto;
  opacity: 0.6;
  pointer-events: none;
  animation: bgDrift 26s linear infinite alternate;
}
.dark-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(620px 360px at 12% 18%, rgba(214, 243, 59, 0.06), transparent 62%),
    radial-gradient(560px 420px at 88% 82%, rgba(214, 243, 59, 0.05), transparent 62%);
}
@keyframes bgDrift { to { background-position: 90px -50px; } }
.dark-section .label { color: var(--lime); }

/* manifesto */
.manifesto-copy {
  font-size: clamp(2.1rem, 5.6vw, 5.2rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-top: 2rem;
}
.manifesto-copy .word { display: inline-block; margin-right: 0.22em; }
.manifesto-copy .ser { margin-right: 0.26em; }

/* builds */
.builds-list { margin-top: 3.2rem; border-top: 1px solid rgba(241, 240, 234, 0.16); }
.build {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 0 2rem;
  padding: 2.4rem 0.4rem;
  border-bottom: 1px solid rgba(241, 240, 234, 0.16);
  transition: background 0.4s ease, padding 0.4s ease;
  text-decoration: none;
  color: inherit;
}
.build:hover { background: rgba(241, 240, 234, 0.045); padding-left: 1.4rem; padding-right: 1.4rem; }
.build-arrow {
  color: var(--lime);
  font-size: 1.7rem;
  line-height: 1;
  align-self: center;
  opacity: 0;
  transform: translate(-10px, 6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.build:hover .build-arrow { opacity: 1; transform: translate(0, 0); }
.build-idx { color: var(--lime); font-size: 0.78rem; letter-spacing: 0.1em; align-self: start; padding-top: 0.5rem; }
.build-name { font-size: clamp(2rem, 5vw, 4rem); transition: color 0.3s ease; }
.build:hover .build-name { color: var(--lime); }
.build-tag {
  color: rgba(241, 240, 234, 0.6);
  max-width: 44ch;
  margin-top: 0.7rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
}
.build-cat {
  color: rgba(241, 240, 234, 0.5);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  white-space: nowrap;
  align-self: start;
  padding-top: 0.6rem;
}

/* ---------- horizontal pinned reel ---------- */
.h-section { position: relative; z-index: 2; height: 100vh; overflow: hidden; background: var(--paper); }
.h-inner { position: relative; height: 100%; }
.h-label { position: absolute; top: 2.2rem; left: 1.8rem; z-index: 6; color: var(--grey); }
.h-track {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 5vw;
  padding: 0 9vw;
  will-change: transform;
}
.reel-item {
  flex: 0 0 auto;
  width: clamp(240px, 24vw, 340px);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.reel-item--big { width: clamp(300px, 33vw, 470px); }
.reel-item .g-frame { border-radius: 18px; overflow: hidden; background: #e5e3da; }
.reel-item .g-frame img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; display: block; }
.reel-item--big .g-frame img { aspect-ratio: 4 / 3; }
.reel-msg { max-width: 32ch; color: var(--grey); font-size: 0.92rem; line-height: 1.55; }
.h-progress { position: absolute; bottom: 2.2rem; left: 1.8rem; z-index: 6; font-size: 0.7rem; letter-spacing: 0.2em; color: var(--grey); }

/* vertical scatter of reel items */
.reel-item:nth-child(1) { transform: translateY(-4vh); }
.reel-item:nth-child(2) { transform: translateY(7vh); }
.reel-item:nth-child(3) { transform: translateY(-9vh); }
.reel-item:nth-child(4) { transform: translateY(2vh); }
.reel-item:nth-child(5) { transform: translateY(-3vh); }
.reel-item:nth-child(6) { transform: translateY(8vh); }
.reel-item:nth-child(7) { transform: translateY(-6vh); }
.reel-item:nth-child(8) { transform: translateY(4vh); }

/* slice reveal — text assembled from horizontal bands */
.sliced { position: relative; display: inline-block; }
.slice-layer { display: block; }
.slice-layer:not(:first-child) { position: absolute; left: 0; top: 0; right: 0; }

@media (max-width: 760px) {
  .dark-section { padding: 5.5rem 1.1rem; }
  .build { grid-template-columns: 40px 1fr; gap: 0 1rem; }
  .build-cat { grid-column: 2; padding-top: 1rem; white-space: normal; }
  .build-arrow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .dark-section::before { animation: none; }
}
