:root {
  --about-accent-gradient: linear-gradient(135deg, #ff7b00, #ffb300 42%, #00e5ff 100%);
}

body[data-page="about"] {
  position: relative;
  overflow-x: hidden;
  background: #06080d;
  color: #f6f7fb;
}

/* =========================
   FULL PAGE BACKGROUND
   ========================= */

.about-bg-base,
.about-bg-light,
.about-bg-grid,
.about-system-canvas-wrap,
.about-scroll-glow,
.about-noise-layer,
.about-scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.about-bg-base {
  z-index: 0;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 98, 0, 0.16), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(0, 229, 255, 0.13), transparent 26%),
    radial-gradient(circle at 50% 55%, rgba(255, 180, 0, 0.08), transparent 36%),
    linear-gradient(180deg, #05070c 0%, #090d15 38%, #05060a 100%);
}

.about-bg-light {
  z-index: 0;
  filter: blur(110px);
  opacity: 1;
  mix-blend-mode: screen;
}

.about-bg-light-left {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 110, 26, 0.24), transparent 26%),
    radial-gradient(circle at 30% 72%, rgba(255, 196, 0, 0.12), transparent 24%);
  animation: aboutLightFloatLeft 14s ease-in-out infinite;
}

.about-bg-light-right {
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 225, 255, 0.22), transparent 24%),
    radial-gradient(circle at 70% 78%, rgba(0, 119, 255, 0.12), transparent 28%);
  animation: aboutLightFloatRight 18s ease-in-out infinite;
}

.about-bg-grid {
  z-index: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 140, 0, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 225, 255, 0.09) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 95%);
  animation: aboutGridDrift 12s linear infinite;
}

.about-scroll-glow {
  z-index: 0;
  opacity: 0.9;
  background:
    radial-gradient(circle at 50% 15%, rgba(255, 119, 0, 0.12), transparent 26%),
    radial-gradient(circle at 50% 82%, rgba(0, 229, 255, 0.08), transparent 32%);
  mix-blend-mode: screen;
}

.about-noise-layer {
  z-index: 1;
  opacity: 0.07;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.8) 0 0.7px, transparent 0.8px),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.55) 0 0.6px, transparent 0.7px),
    radial-gradient(circle at 40% 70%, rgba(255,255,255,0.55) 0 0.7px, transparent 0.8px),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,0.45) 0 0.5px, transparent 0.6px);
  background-size: 240px 240px, 260px 260px, 220px 220px, 280px 280px;
  animation: noiseDrift 8s linear infinite;
}

.about-scanlines {
  z-index: 1;
  opacity: 0.1;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.03) 0%,
      rgba(255,255,255,0.02) 49%,
      rgba(0,0,0,0) 50%,
      rgba(0,0,0,0) 100%
    );
  background-size: 100% 4px;
  mix-blend-mode: screen;
  animation: scanlineShift 7s linear infinite;
}

.about-system-canvas-wrap {
  z-index: 1;
}

#aboutSystemCanvas {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.96;
  filter: saturate(1.25) contrast(1.12);
}

/* =========================
   PAGE
   ========================= */

.about-page {
  position: relative;
  z-index: 3;
}

/* =========================
   HERO
   ========================= */

.about-hero {
  position: relative;
  z-index: 2;
  padding-top: 8px;
  margin-bottom: 124px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 72px;
  align-items: center;
}

.about-hero-copy {
  max-width: 760px;
}

.about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffbc7b;
  text-shadow: 0 0 18px rgba(255, 132, 0, 0.25);
}

.about-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--about-accent-gradient);
  box-shadow:
    0 0 0 7px rgba(255, 138, 38, 0.10),
    0 0 22px rgba(255, 145, 0, 0.48);
  flex-shrink: 0;
}

.about-title {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(2.95rem, 4.7vw, 4.7rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
  color: #f9fbff;
  text-wrap: balance;
  text-shadow:
    0 0 22px rgba(255, 255, 255, 0.05),
    0 0 46px rgba(0, 229, 255, 0.08);
}

.about-title-line {
  display: block;
}

.gradient-text {
  display: block;
  margin-top: 8px;
  background: linear-gradient(135deg, #ff7a00 0%, #ffcc40 42%, #26e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 16px rgba(255, 153, 0, 0.18));
}

.about-subtitle {
  margin: 26px 0 0;
  max-width: 54ch;
  font-size: 1.12rem;
  line-height: 1.96;
  color: #d3d9e7;
}

.about-typewriter-wrap {
  margin-top: 24px;
  padding: 18px 20px;
  max-width: 560px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(13, 19, 33, 0.76) 0%, rgba(8, 13, 24, 0.62) 100%);
  border: 1px solid rgba(0, 229, 255, 0.18);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.34),
    0 0 38px rgba(0, 229, 255, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.about-typewriter-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7cecff;
}

.about-typewriter-line {
  margin: 0;
  min-height: 1.7em;
  font-size: 1.06rem;
  line-height: 1.72;
  font-weight: 700;
  color: #f3f8ff;
}

.about-typewriter-caret {
  display: inline-block;
  width: 1ch;
  color: #1fe6ff;
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.48);
  animation: caretBlink 0.85s step-end infinite;
}

.about-hero-actions {
  margin-top: 30px;
}

.about-primary-button,
.about-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease;
}

.about-primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, #ff7600 0%, #ffbf00 48%, #00dcff 100%);
  box-shadow:
    0 18px 40px rgba(255, 115, 0, 0.28),
    0 0 30px rgba(0, 229, 255, 0.15);
}

.about-primary-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 24px 48px rgba(255, 122, 24, 0.30),
    0 0 36px rgba(0, 229, 255, 0.2);
}

.about-secondary-button {
  background:
    linear-gradient(180deg, rgba(13, 19, 33, 0.92) 0%, rgba(8, 13, 24, 0.82) 100%);
  border: 1px solid rgba(0, 229, 255, 0.22);
  color: #dffcff;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.28),
    0 0 26px rgba(0, 229, 255, 0.1);
}

.about-secondary-button:hover {
  transform: translateY(-2px);
  background:
    linear-gradient(180deg, rgba(16, 24, 41, 0.95) 0%, rgba(10, 16, 31, 0.86) 100%);
}

.about-hero-visual {
  position: relative;
}

/* =========================
   HERO COMPOSITION
   ========================= */

.about-hero-composition {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  perspective: 1400px;
}

.about-composition-word {
  position: absolute;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.84;
  user-select: none;
  pointer-events: none;
  opacity: 0.1;
  text-shadow: 0 0 22px currentColor;
}

.about-composition-word-top {
  top: 18px;
  left: 34px;
  font-size: clamp(2.6rem, 4.6vw, 4.2rem);
  color: rgba(255, 159, 74, 0.7);
}

.about-composition-word-side {
  right: 18px;
  top: 138px;
  font-size: clamp(3.3rem, 7vw, 5.2rem);
  color: rgba(0, 229, 255, 0.74);
  transform: rotate(90deg);
  transform-origin: top right;
}

.about-composition-word-bottom {
  left: 40px;
  bottom: 24px;
  font-size: clamp(2.7rem, 4.8vw, 4rem);
  color: rgba(255, 210, 82, 0.66);
}

.about-composition-orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.about-composition-orbit-outer {
  width: 530px;
  height: 530px;
  border: 1px solid rgba(0, 229, 255, 0.16);
  box-shadow:
    0 0 30px rgba(0, 229, 255, 0.08),
    inset 0 0 28px rgba(0, 229, 255, 0.04);
  animation: orbitSpin 18s linear infinite;
}

.about-composition-orbit-inner {
  width: 390px;
  height: 390px;
  border: 1px dashed rgba(255, 170, 35, 0.22);
  box-shadow: 0 0 24px rgba(255, 170, 35, 0.08);
  animation: orbitSpinReverse 12s linear infinite;
}

.about-composition-glow {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 132, 0, 0.12) 0%, rgba(0, 229, 255, 0.08) 44%, transparent 74%);
  filter: blur(28px);
  pointer-events: none;
  animation: glowPulse 4.8s ease-in-out infinite;
}

.about-composition-grid {
  position: absolute;
  width: 340px;
  height: 340px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  transform: rotate(10deg);
  z-index: 1;
}

.about-composition-grid span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.5);
  justify-self: center;
  align-self: center;
  box-shadow:
    0 0 12px rgba(0, 229, 255, 0.5),
    0 0 28px rgba(255, 145, 0, 0.2);
  animation: signaturePulse 1.8s ease-in-out infinite;
}

.about-composition-grid span:nth-child(2n) {
  animation-delay: 0.2s;
}

.about-composition-grid span:nth-child(3n) {
  animation-delay: 0.5s;
}

.about-composition-grid span:nth-child(4n) {
  animation-delay: 0.8s;
}

.about-hero-figure-wrap {
  position: relative;
  z-index: 2;
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.98;
}

.about-hero-figure-wrap::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(18, 28, 48, 0.42) 0%, rgba(8, 12, 22, 0.15) 100%);
  border: 1px solid rgba(0, 229, 255, 0.16);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.28),
    0 0 38px rgba(0, 229, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.about-hero-figure {
  position: relative;
  z-index: 2;
  width: 86%;
  height: auto;
  display: block;
  object-fit: contain;
  filter:
    saturate(1)
    contrast(1.08)
    brightness(1)
    drop-shadow(0 22px 38px rgba(0, 0, 0, 0.3))
    drop-shadow(0 0 26px rgba(0, 229, 255, 0.08));
  transition: transform 0.24s ease, filter 0.24s ease;
  will-change: transform;
}

/* =========================
   SECTIONS
   ========================= */

.about-section {
  position: relative;
  z-index: 2;
  margin-top: 124px;
}

.about-section-grid {
  display: grid;
  gap: 56px;
  align-items: center;
}

.about-section-grid-think {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.about-section-grid-work {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.about-section-grid-build {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.about-section-number {
  margin: 0 0 12px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: #ffb96d;
}

.about-section-label {
  margin: 0 0 14px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7fefff;
}

.about-section-heading {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2.72rem, 3.35vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: #f6fbff;
  text-shadow: 0 0 22px rgba(255,255,255,0.04);
}

.about-heading-think {
  color: #ffc17c;
}

.about-heading-work {
  color: #c7f8ff;
}

.about-heading-build {
  color: #ffd469;
}

.about-heading-closing {
  color: #eaf9ff;
}

.about-highlight-line {
  margin: 0 0 20px;
  max-width: 34ch;
  font-size: 1.14rem;
  line-height: 1.64;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ff8f1f, #ffd34f, #39e8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-section-body p,
.about-section-copy p,
.about-closing-copy p,
.about-build-card p {
  margin: 0 0 18px;
  max-width: 58ch;
  font-size: 1.06rem;
  line-height: 1.94;
  color: #d4dbeb;
}

.about-section-body p:last-child,
.about-section-copy p:last-child,
.about-closing-copy p:last-child,
.about-build-card p:last-child {
  margin-bottom: 0;
}

/* =========================
   WORK LIST
   ========================= */

.about-work-list {
  display: grid;
  gap: 18px;
}

.about-work-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(15, 22, 39, 0.82) 0%, rgba(9, 14, 25, 0.68) 100%);
  border: 1px solid rgba(0, 229, 255, 0.12);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.26),
    0 0 34px rgba(0, 229, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.about-work-index {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff7800 0%, #00dcff 100%);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.24),
    0 0 28px rgba(0, 229, 255, 0.12);
}

.about-work-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.14rem;
  line-height: 1.24;
  color: #f4fbff;
}

.about-work-item p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.84;
  color: #cad3e3;
}

/* =========================
   BUILD
   ========================= */

.about-build-top {
  max-width: 760px;
}

.about-build-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.about-build-card {
  height: 100%;
  padding: 26px 24px 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(15, 22, 39, 0.84) 0%, rgba(9, 14, 25, 0.68) 100%);
  border: 1px solid rgba(255, 177, 26, 0.12);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.26),
    0 0 34px rgba(255, 166, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.about-build-card-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7cefff;
}

.about-build-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.3;
  color: #f7fbff;
}

/* =========================
   CLOSING
   ========================= */

.about-closing {
  position: relative;
  z-index: 2;
  margin-top: 118px;
  margin-bottom: 92px;
}

.about-closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 56px;
  align-items: end;
}

.about-closing-kicker {
  margin: 0 0 14px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #79ecff;
}

.about-closing-copy .about-section-heading {
  max-width: 12ch;
}

.about-closing-action {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-closing-quote {
  margin: 0;
  max-width: 40ch;
  font-size: 1.18rem;
  line-height: 1.72;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffcc80;
}

/* =========================
   REVEAL
   ========================= */

.about-scroll-shift {
  will-change: transform;
}

.reveal,
.reveal-delay-1 {
  opacity: 0;
  transform: translateY(34px);
}

/* =========================
   KEYFRAMES
   ========================= */

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes orbitSpinReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes glowPulse {
  0% {
    transform: scale(0.96);
    opacity: 0.76;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
  100% {
    transform: scale(0.96);
    opacity: 0.76;
  }
}

@keyframes aboutLightFloatLeft {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(36px, 18px, 0) scale(1.08);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes aboutLightFloatRight {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-40px, 26px, 0) scale(1.1);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes aboutGridDrift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 68px 68px, -68px 68px;
  }
}

@keyframes noiseDrift {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(8px, -8px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

@keyframes scanlineShift {
  0% { transform: translateY(-10px); }
  100% { transform: translateY(10px); }
}

@keyframes signaturePulse {
  0% {
    transform: scale(0.85);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.25);
    opacity: 1;
  }
  100% {
    transform: scale(0.85);
    opacity: 0.4;
  }
}

@keyframes caretBlink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1220px) {
  .about-hero-grid,
  .about-section-grid,
  .about-closing-grid {
    gap: 40px;
  }

  .about-title {
    font-size: clamp(3rem, 5vw, 4.7rem);
  }

  .about-hero-composition {
    min-height: 600px;
  }

  .about-composition-orbit-outer {
    width: 470px;
    height: 470px;
  }

  .about-composition-orbit-inner {
    width: 336px;
    height: 336px;
  }

  .about-hero-figure-wrap {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 1024px) {
  .about-hero {
    margin-bottom: 92px;
  }

  .about-hero-grid,
  .about-section-grid-think,
  .about-section-grid-work,
  .about-section-grid-build,
  .about-closing-grid {
    grid-template-columns: 1fr;
  }

  .about-closing-action {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  #aboutSystemCanvas {
    opacity: 0.9;
  }

  .about-bg-grid,
  .about-noise-layer,
  .about-scanlines {
    opacity: 0.06;
  }

  .about-hero {
    margin-bottom: 72px;
  }

  .about-section {
    margin-top: 84px;
  }

  .about-closing {
    margin-top: 88px;
    margin-bottom: 72px;
  }

  .about-title {
    font-size: clamp(2.7rem, 10vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
  }

  .about-subtitle,
  .about-section-body p,
  .about-section-copy p,
  .about-work-item p,
  .about-build-card p,
  .about-closing-copy p {
    font-size: 0.98rem;
    line-height: 1.82;
  }

  .about-section-heading {
    font-size: 2rem;
    line-height: 1.05;
  }

  .about-highlight-line,
  .about-closing-quote {
    font-size: 1.04rem;
    line-height: 1.66;
  }

  .about-primary-button,
  .about-secondary-button {
    width: 100%;
  }

  .about-typewriter-wrap {
    padding: 16px;
  }

  .about-typewriter-line {
    font-size: 0.96rem;
  }

  .about-hero-composition {
    min-height: 470px;
  }

  .about-composition-word-top {
    top: 2px;
    left: 8px;
    font-size: 1.9rem;
  }

  .about-composition-word-side {
    right: 0;
    top: 88px;
    font-size: 2.8rem;
  }

  .about-composition-word-bottom {
    left: 8px;
    bottom: 10px;
    font-size: 1.9rem;
  }

  .about-composition-orbit-outer {
    width: 300px;
    height: 300px;
  }

  .about-composition-orbit-inner {
    width: 220px;
    height: 220px;
  }

  .about-composition-glow {
    width: 250px;
    height: 250px;
  }

  .about-composition-grid {
    width: 180px;
    height: 180px;
    gap: 10px;
  }

  .about-composition-grid span {
    width: 5px;
    height: 5px;
  }

  .about-hero-figure-wrap {
    width: 190px;
    height: 190px;
  }

  .about-work-item {
    grid-template-columns: 42px 1fr;
    padding: 18px 16px;
    border-radius: 20px;
  }

  .about-work-index {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 0.72rem;
  }

  .about-build-card {
    padding: 20px 16px 18px;
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-bg-light-left,
  .about-bg-light-right,
  .about-bg-grid,
  .about-noise-layer,
  .about-scanlines,
  .about-composition-orbit-outer,
  .about-composition-orbit-inner,
  .about-composition-grid span,
  .about-composition-glow,
  .about-typewriter-caret {
    animation: none !important;
  }

  .about-scroll-glow {
    transition: none !important;
  }
}