:root {
  --about-max: min(1280px, 92vw);
  --about-topbar-h: 66px;
  --about-surface: linear-gradient(165deg, rgba(8, 14, 26, 0.92), rgba(5, 10, 19, 0.9));
  --about-border-soft: rgba(148, 163, 184, 0.24);
  --about-border-strong: rgba(125, 211, 252, 0.5);
  --about-shadow-soft: 0 14px 26px rgba(2, 6, 23, 0.4);
  --about-shadow-premium:
    0 24px 40px rgba(2, 6, 23, 0.45),
    0 0 0 1px rgba(148, 163, 184, 0.14) inset,
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

body {
  padding-top: calc(var(--about-topbar-h) + 1rem);
}

#aboutScrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  z-index: 52;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.98), rgba(59, 130, 246, 0.98));
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.45);
}

.about-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--about-topbar-h);
  z-index: 50;
  border-bottom: 1px solid rgba(125, 211, 252, 0.24);
  background:
    linear-gradient(180deg, rgba(5, 10, 20, 0.94), rgba(4, 8, 18, 0.9)),
    radial-gradient(110% 125% at 0% 0%, rgba(30, 64, 175, 0.18), transparent 55%);
  backdrop-filter: blur(12px);
  box-shadow:
    0 14px 24px rgba(2, 6, 23, 0.34),
    0 1px 0 rgba(255, 255, 255, 0.04) inset;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding-left: clamp(0.35rem, 0.8vw, 0.7rem);
  padding-right: clamp(0.8rem, 1.4vw, 1.5rem);
}

.about-topbar-kicker {
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(125, 211, 252, 0.9);
}

.about-topbar-left {
  display: inline-flex;
  align-items: center;
  gap: 0.56rem;
}

.about-topbar-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  text-decoration: none;
}

.about-topbar-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(29, 107, 255, 0.2));
  transition: filter 220ms ease, transform 220ms ease;
}

.about-topbar-logo:hover img,
.about-topbar-logo:focus-visible img {
  transform: translateY(-1px) scale(1.02);
  filter:
    drop-shadow(0 0 10px rgba(125, 211, 252, 0.58))
    drop-shadow(0 0 18px rgba(29, 107, 255, 0.36));
}

.about-topbar-firefly {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(191, 219, 254, 0.95), rgba(125, 211, 252, 0.2) 62%, transparent 78%);
  box-shadow: 0 0 8px rgba(125, 211, 252, 0.75);
}

.about-topbar-firefly.firefly-a {
  top: 6px;
  left: -4px;
}

.about-topbar-firefly.firefly-b {
  top: -2px;
  right: 2px;
}

.about-topbar-firefly.firefly-c {
  bottom: 4px;
  right: -6px;
}

.about-topbar-logo:hover .about-topbar-firefly,
.about-topbar-logo:focus-visible .about-topbar-firefly {
  animation: aboutFireflyPulse 2.3s ease-in-out infinite;
}

.about-topbar-logo:hover .about-topbar-firefly.firefly-b,
.about-topbar-logo:focus-visible .about-topbar-firefly.firefly-b {
  animation-delay: 0.5s;
}

.about-topbar-logo:hover .about-topbar-firefly.firefly-c,
.about-topbar-logo:focus-visible .about-topbar-firefly.firefly-c {
  animation-delay: 1s;
}

.about-topbar h1 {
  margin: 0;
  font-size: clamp(1rem, 1.18vw, 1.24rem);
  font-weight: 650;
  color: #e8f2ff;
}

.about-topbar-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: center;
}

.about-topbar-nav a {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(12, 20, 36, 0.62);
  color: rgba(226, 232, 240, 0.95);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 560;
  padding: 0.26rem 0.56rem;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease,
    box-shadow 220ms ease;
}

.about-topbar-nav a:hover,
.about-topbar-nav a.is-active {
  transform: translateY(-1px);
  border-color: rgba(125, 211, 252, 0.64);
  background: rgba(37, 99, 235, 0.25);
  box-shadow: 0 8px 16px rgba(2, 6, 23, 0.32);
}

.about-topbar-back {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.62);
  color: rgba(226, 232, 240, 0.95);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.38rem 0.78rem;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background-color 180ms ease;
}

.about-topbar-back:hover {
  transform: translateY(-1px);
  border-color: rgba(125, 211, 252, 0.65);
  background: rgba(30, 64, 175, 0.24);
}

.about-main {
  width: var(--about-max);
  margin-inline: auto;
  padding-bottom: 4rem;
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 1.12rem;
}

.about-main::before {
  content: '';
  position: absolute;
  inset: -2rem 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(58% 46% at 12% 8%, rgba(14, 165, 233, 0.08), transparent 72%),
    radial-gradient(62% 44% at 92% 30%, rgba(37, 99, 235, 0.08), transparent 74%);
}

.about-section-block {
  min-height: min(44vh, 560px);
  display: grid;
  align-content: start;
  gap: 0.92rem;
}

.about-hero {
  position: relative;
  overflow: hidden;
  min-height: min(72vh, 760px);
  padding: clamp(1rem, 3vw, 2.2rem);
}

.about-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 620px);
  gap: clamp(1rem, 2vw, 2rem);
  align-items: stretch;
  min-height: min(62vh, 680px);
}

.about-parallax {
  position: absolute;
  inset: -14% -8%;
  pointer-events: none;
  will-change: transform;
}

.about-parallax.layer-a {
  background: radial-gradient(40% 44% at 12% 12%, rgba(59, 130, 246, 0.22), transparent 70%);
}

.about-parallax.layer-b {
  background: radial-gradient(42% 40% at 84% 30%, rgba(14, 116, 144, 0.22), transparent 74%);
}

.about-parallax.layer-c {
  background: radial-gradient(36% 34% at 70% 88%, rgba(14, 165, 233, 0.16), transparent 70%);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.9rem;
  max-width: 46ch;
  justify-items: start;
  text-align: left;
  padding-right: clamp(0.4rem, 1vw, 1rem);
  align-content: start;
}

.about-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(125, 211, 252, 0.95);
}

.about-hero-content h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.8vw, 2.45rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: #f7fbff;
  max-width: 18ch;
  text-wrap: balance;
}

.about-hero-content .about-brand-accent {
  color: #1d6bff;
}

.about-hero-content p {
  margin: 0;
  color: rgba(226, 232, 240, 0.9);
  line-height: 1.58;
  max-width: 44ch;
}

.about-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-start;
}

.about-chip-row span {
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.36);
  background: rgba(30, 64, 175, 0.2);
  color: rgba(219, 234, 254, 0.95);
  font-size: 0.72rem;
  padding: 0.28rem 0.62rem;
}

.about-hero-brand {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  perspective: 1200px;
  gap: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  transform: translate(13.8%, -8.6%);
}

.about-hero-brand-ring {
  display: none;
}

.about-hero-brand-logo {
  width: clamp(348px, 27.2vw, 528px);
  height: clamp(348px, 27.2vw, 528px);
  margin-left: 8.5%;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  object-fit: contain;
  z-index: 2;
  transform-origin: center center;
  transform-style: preserve-3d;
  transition:
    filter 260ms ease,
    transform 320ms ease;
}

.about-hero-brand:hover .about-hero-brand-logo {
  animation: aboutLogoMorph 1300ms cubic-bezier(0.22, 1, 0.36, 1);
  filter: drop-shadow(0 18px 34px rgba(37, 99, 235, 0.35));
}

.about-hero-smile {
  position: absolute;
  top: 52.1%;
  left: calc(50% + 6.8%);
  width: clamp(224px, 16vw, 340px);
  height: clamp(224px, 16vw, 340px);
  transform: translate(-50%, -50%) scale(0.72);
  border-radius: 999px;
  border: 8px solid rgba(37, 99, 235, 0.95);
  opacity: 0;
  z-index: 3;
  pointer-events: none;
}

.about-hero-smile .smile-eye {
  position: absolute;
  top: 34%;
  width: 14%;
  height: 14%;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.96);
}

.about-hero-smile .smile-eye-left {
  left: 24%;
}

.about-hero-smile .smile-eye-right {
  right: 24%;
}

.about-hero-smile .smile-mouth {
  position: absolute;
  left: 50%;
  bottom: 24%;
  width: 46%;
  height: 24%;
  transform: translateX(-50%);
  border-radius: 0 0 999px 999px;
  border: 8px solid rgba(37, 99, 235, 0.96);
  border-top: 0;
}

.about-hero-brand:hover .about-hero-smile {
  animation: aboutSmileMorph 1650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-hero-brand:hover .about-hero-smile .smile-eye-right {
  animation: aboutSmileWink 1650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-section-head {
  margin-bottom: 0.28rem;
}

.about-section-head h3 {
  margin: 0;
  font-size: clamp(1.1rem, 1.7vw, 1.42rem);
  font-weight: 620;
  letter-spacing: -0.01em;
}

.about-title-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.about-title-with-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  color: #1d6bff;
}

.about-section-head p {
  margin: 0.3rem 0 0;
  color: rgba(148, 163, 184, 0.95);
}

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

.about-card,
.timeline-wrap,
.command-card,
.tip-card,
.adv-card,
.about-feedback-shell,
.about-final-cta {
  background:
    linear-gradient(162deg, rgba(8, 14, 26, 0.94), rgba(5, 10, 19, 0.91)),
    radial-gradient(120% 100% at 100% 0%, rgba(37, 99, 235, 0.09), transparent 70%);
  border: 1px solid var(--about-border-soft);
  border-radius: 1rem;
  padding: clamp(0.78rem, 1.5vw, 1rem);
  box-shadow: var(--about-shadow-soft);
  backdrop-filter: blur(10px) saturate(105%);
  transition:
    transform 250ms ease,
    border-color 220ms ease,
    box-shadow 260ms ease;
  transform-style: preserve-3d;
}

.about-card::before,
.timeline-wrap::before,
.adv-card::before,
.about-feedback-shell::before,
.about-final-cta::before,
.about-interlude::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    220px circle at var(--hover-x, 24%) var(--hover-y, 22%),
    rgba(125, 211, 252, 0.1),
    rgba(56, 189, 248, 0.028) 45%,
    transparent 78%
  );
  opacity: 0;
  transition: opacity 340ms ease;
}

.about-card.motion-active::before,
.timeline-wrap.motion-active::before,
.adv-card.motion-active::before,
.about-feedback-shell.motion-active::before,
.about-final-cta.motion-active::before,
.about-interlude.motion-active::before {
  opacity: 1;
}

.about-card:hover,
.timeline-wrap:hover,
.command-card:hover,
.tip-card:hover,
.adv-card:hover,
.about-feedback-shell:hover,
.about-final-cta:hover {
  border-color: var(--about-border-strong);
  box-shadow: var(--about-shadow-premium);
}

.about-card h4,
.timeline-item h4,
.command-card h4,
.adv-card h4 {
  margin: 0 0 0.42rem;
  font-size: 0.96rem;
  color: rgba(243, 248, 255, 0.98);
  transition: transform 220ms ease, color 220ms ease;
}

.about-card h4.about-creator-name {
  color: #1d6bff;
}

.about-card:hover h4.about-creator-name {
  color: #1d6bff;
}

.about-creator-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 230px);
  gap: 0.95rem;
  align-items: center;
}

.about-creator-copy {
  display: grid;
  align-content: center;
  gap: 0.55rem;
}

.about-creator-copy p {
  max-width: 44ch;
}

.about-creator-brand {
  justify-self: center;
  width: min(100%, 220px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(2, 6, 23, 0.46));
  opacity: 0.95;
}

.about-card p,
.about-card li,
.timeline-item p,
.command-card p,
.adv-card p,
.about-final-cta p {
  color: rgba(203, 213, 225, 0.9);
  line-height: 1.48;
  font-size: 0.9rem;
}

.about-card ul {
  margin: 0.5rem 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.3rem;
}

.about-link-row {
  margin-top: 0.72rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.about-link-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(29, 107, 255, 0.52);
  background: rgba(29, 107, 255, 0.14);
  color: #1d6bff;
  font-size: 0.76rem;
  width: 2.2rem;
  height: 2.2rem;
  padding: 0;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 220ms ease;
}

.about-link-row a:hover {
  transform: translateY(-1px);
  border-color: rgba(29, 107, 255, 0.78);
  background: rgba(29, 107, 255, 0.2);
  box-shadow: 0 8px 14px rgba(2, 6, 23, 0.35), 0 0 0 1px rgba(29, 107, 255, 0.15) inset;
}

.about-link-row a svg {
  width: 1rem;
  height: 1rem;
}

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

.mini-stats div {
  border-radius: 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.24);
  padding: 0.48rem;
  background: rgba(15, 23, 42, 0.46);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 240ms ease;
}

.mini-stats div:hover {
  transform: translateY(-1px);
  border-color: rgba(125, 211, 252, 0.48);
  background: rgba(18, 30, 52, 0.62);
  box-shadow: 0 12px 18px rgba(2, 6, 23, 0.33);
}

.mini-stats strong {
  font-size: 1.12rem;
  color: rgba(125, 211, 252, 0.98);
}

.mini-stats span {
  display: block;
  margin-top: 0.16rem;
  font-size: 0.67rem;
  color: rgba(148, 163, 184, 0.96);
}

.timeline-wrap {
  position: relative;
  display: grid;
  gap: 0.6rem;
  overflow: hidden;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.94), rgba(37, 99, 235, 0.95));
  box-shadow: 0 0 12px rgba(14, 165, 233, 0.35);
}

.timeline-item {
  margin-left: 0.5rem;
  padding-left: 0.85rem;
  border-left: 1px dashed rgba(148, 163, 184, 0.28);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.timeline-item:hover {
  transform: translateX(2px);
  border-left-color: rgba(125, 211, 252, 0.56);
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.08), transparent 52%);
}

.about-card:hover h4,
.timeline-item:hover h4,
.adv-card:hover h4,
.command-card:hover h4 {
  transform: translateX(3px);
  color: rgba(191, 219, 254, 0.99);
}

.about-interlude {
  position: relative;
  border-radius: 1rem;
  border: 1px dashed rgba(125, 211, 252, 0.26);
  background:
    linear-gradient(150deg, rgba(9, 16, 30, 0.84), rgba(6, 11, 21, 0.79)),
    radial-gradient(120% 120% at 100% 0%, rgba(14, 165, 233, 0.11), transparent 62%);
  padding: clamp(0.72rem, 1.4vw, 1rem);
  overflow: hidden;
}

.about-interlude::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    transparent 14%,
    rgba(125, 211, 252, 0.06) 42%,
    transparent 70%
  );
  transform: translateX(-120%);
  animation: aboutSweep 11.2s linear infinite;
}

.about-interlude-kicker {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(125, 211, 252, 0.96);
}

.about-pillars {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.about-pillars span {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.58);
  color: rgba(226, 232, 240, 0.94);
  font-size: 0.76rem;
  padding: 0.34rem 0.62rem;
  transition:
    transform 200ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
  animation: aboutFloatSoft 9.6s ease-in-out infinite;
}

.about-pillars span:nth-child(2) {
  animation-delay: 0.8s;
}

.about-pillars span:nth-child(3) {
  animation-delay: 1.5s;
}

.about-pillars span:nth-child(4) {
  animation-delay: 2.1s;
}

.about-pillars span:hover {
  transform: translateY(-1px);
  border-color: rgba(125, 211, 252, 0.56);
  background: rgba(30, 64, 175, 0.3);
}

.about-flow-hint {
  padding-bottom: 0.82rem;
}

.about-flow-track {
  margin-top: 0.58rem;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
}

.about-flow-track::before {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  top: calc(50% - 1px);
  height: 2px;
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.14), rgba(37, 99, 235, 0.38));
}

.about-flow-track::after {
  content: '';
  position: absolute;
  top: calc(50% - 5px);
  left: 8%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.95);
  box-shadow: 0 0 12px rgba(125, 211, 252, 0.72);
  animation: aboutFlowRun 6.4s linear infinite;
}

.about-flow-track span {
  position: relative;
  z-index: 1;
  justify-self: center;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(9, 14, 27, 0.78);
  color: rgba(219, 234, 254, 0.92);
  font-size: 0.72rem;
  font-weight: 540;
  padding: 0.28rem 0.58rem;
  transition:
    transform 180ms ease,
    border-color 200ms ease,
    box-shadow 220ms ease;
}

.about-flow-track span:hover {
  transform: translateY(-2px);
  border-color: rgba(125, 211, 252, 0.58);
  box-shadow: 0 8px 14px rgba(2, 6, 23, 0.32);
}

.about-impact-meters {
  margin-top: 0.58rem;
  display: grid;
  gap: 0.46rem;
}

.about-impact-meter {
  display: grid;
  gap: 0.24rem;
}

.about-impact-meter span {
  font-size: 0.76rem;
  color: rgba(203, 213, 225, 0.95);
}

.about-impact-meter b {
  display: block;
  position: relative;
  overflow: hidden;
  height: 0.46rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background:
    linear-gradient(90deg, rgba(56, 189, 248, 0.85), rgba(37, 99, 235, 0.86)) 0 0 / var(--meter)
      100% no-repeat,
    rgba(15, 23, 42, 0.7);
  animation: aboutMeterGlow 3.2s ease-in-out infinite;
}

.about-impact-meter b::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(191, 219, 254, 0.58) 50%, transparent 80%);
  transform: translateX(-130%);
  animation: aboutMeterSweep 3.8s ease-in-out infinite;
}

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

.command-card {
  position: relative;
  overflow: hidden;
}

.command-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.95), rgba(59, 130, 246, 0.94));
  opacity: 0.82;
  transition: transform 2200ms linear;
}

.command-card.is-preview {
  border-color: rgba(125, 211, 252, 0.62);
  box-shadow:
    0 18px 32px rgba(2, 6, 23, 0.42),
    0 0 0 1px rgba(56, 189, 248, 0.25) inset;
}

.command-card.is-preview::after {
  transform: scaleX(1);
}

.command-card::before {
  content: '';
  position: absolute;
  inset: -20% auto auto -10%;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.18), transparent 72%);
  pointer-events: none;
}

.command-card:hover .command-demo {
  border-color: rgba(125, 211, 252, 0.46);
  box-shadow:
    0 10px 18px rgba(2, 6, 23, 0.34),
    0 0 0 1px rgba(56, 189, 248, 0.22) inset;
}

.command-demo {
  position: relative;
  margin-top: 0.7rem;
  height: 62px;
  border-radius: 0.72rem;
  border: 1px solid rgba(125, 211, 252, 0.26);
  background: linear-gradient(160deg, rgba(12, 20, 36, 0.78), rgba(8, 14, 26, 0.72));
  overflow: hidden;
  transition: border-color 260ms ease, box-shadow 260ms ease;
}

.command-demo span {
  position: absolute;
  display: block;
}

.demo-dbl .demo-cell {
  inset: 10px auto auto 10px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.demo-dbl .demo-event {
  inset: 20px auto auto 18px;
  width: 24px;
  height: 10px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.65);
}

.demo-dbl .demo-ring {
  inset: 18px auto auto 18px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid rgba(125, 211, 252, 0.8);
  opacity: 0;
  animation: aboutPing 1.6s ease-out infinite;
}

.demo-create .demo-btn {
  inset: 16px auto auto 10px;
  width: 42px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(130deg, rgba(59, 130, 246, 0.82), rgba(14, 165, 233, 0.72));
}

.demo-create .demo-plus-h,
.demo-create .demo-plus-v {
  inset: 29px auto auto 48px;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: rgba(224, 242, 254, 0.95);
  animation: aboutPulse 1.6s ease-in-out infinite;
}

.demo-create .demo-plus-v {
  transform: rotate(90deg);
}

.demo-edit .demo-card {
  inset: 12px auto auto 10px;
  width: 46px;
  height: 36px;
  border-radius: 9px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.72);
}

.demo-edit .demo-pencil {
  inset: 24px auto auto 44px;
  width: 18px;
  height: 4px;
  border-radius: 4px;
  background: rgba(125, 211, 252, 0.92);
  transform-origin: left center;
  animation: aboutSlide 1.8s ease-in-out infinite;
}

.demo-schedule .demo-grid {
  inset: 10px auto auto 10px;
  width: 56px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.34);
  background:
    linear-gradient(rgba(148, 163, 184, 0.2), rgba(148, 163, 184, 0.2)) 50% 0/1px 100% no-repeat,
    linear-gradient(rgba(148, 163, 184, 0.2), rgba(148, 163, 184, 0.2)) 0 50%/100% 1px no-repeat;
}

.demo-schedule .demo-highlight {
  inset: 14px auto auto 14px;
  width: 24px;
  height: 16px;
  border-radius: 6px;
  background: rgba(59, 130, 246, 0.68);
  animation: aboutShift 2.1s ease-in-out infinite;
}

.demo-focus .demo-circle {
  inset: 11px auto auto 14px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 2px solid rgba(148, 163, 184, 0.42);
}

.demo-focus .demo-progress {
  inset: 11px auto auto 14px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 2px solid transparent;
  border-top-color: rgba(34, 211, 238, 0.95);
  border-right-color: rgba(37, 99, 235, 0.92);
  animation: aboutSpin 1.1s linear infinite;
}

.demo-sync .demo-sync-ring {
  inset: 14px auto auto 16px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px dashed rgba(125, 211, 252, 0.72);
  animation: aboutSpin 1.5s linear infinite;
}

.demo-sync .demo-sync-dot {
  inset: 27px auto auto 28px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.88);
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
  animation: aboutPulseDot 1.6s ease-in-out infinite;
}

.demo-print .demo-printer {
  inset: 20px auto auto 10px;
  width: 48px;
  height: 26px;
  border-radius: 7px;
  border: 1px solid rgba(148, 163, 184, 0.38);
  background: rgba(15, 23, 42, 0.76);
}

.demo-print .demo-paper {
  inset: 8px auto auto 16px;
  width: 34px;
  height: 18px;
  border-radius: 3px;
  background: rgba(226, 232, 240, 0.92);
  animation: aboutPaper 1.8s ease-in-out infinite;
}

.demo-profile .demo-avatar {
  inset: 12px auto auto 12px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.6);
  background: radial-gradient(circle at 35% 32%, rgba(125, 211, 252, 0.85), rgba(37, 99, 235, 0.8));
}

.demo-profile .demo-badge {
  inset: 34px auto auto 36px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.9);
  box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.42);
  animation: aboutPulseDot 1.7s ease-in-out infinite;
}

@keyframes aboutPing {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  20% {
    opacity: 0.9;
  }
  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}

@keyframes aboutPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

@keyframes aboutSlide {
  0%,
  100% {
    transform: translateX(0) rotate(-14deg);
  }
  50% {
    transform: translateX(8px) rotate(-8deg);
  }
}

@keyframes aboutShift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  35% {
    transform: translate(18px, 0);
  }
  70% {
    transform: translate(18px, 20px);
  }
}

@keyframes aboutSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes aboutPulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.42);
  }
  55% {
    box-shadow: 0 0 0 10px rgba(14, 165, 233, 0);
  }
}

@keyframes aboutPaper {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

@keyframes aboutFireflyPulse {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.6);
  }
  36% {
    opacity: 0.96;
    transform: scale(1.12);
  }
  68% {
    opacity: 0.3;
    transform: scale(0.84);
  }
}

@keyframes aboutFlowRun {
  0% {
    left: 8%;
    opacity: 0.35;
  }
  18% {
    opacity: 1;
  }
  100% {
    left: 92%;
    opacity: 0.15;
  }
}

@keyframes aboutMeterGlow {
  0%,
  100% {
    filter: brightness(0.96);
  }
  50% {
    filter: brightness(1.12);
  }
}

@keyframes aboutMeterSweep {
  0%,
  58%,
  100% {
    transform: translateX(-130%);
  }
  28% {
    transform: translateX(130%);
  }
}

@keyframes aboutFloatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@keyframes aboutSweep {
  to {
    transform: translateX(120%);
  }
}

@keyframes aboutFeedbackDiagonalFlip {
  0% {
    transform: perspective(1200px) rotate3d(1, 1, 0, -20deg) scale(0.985);
    opacity: 0.68;
    filter: saturate(1.12);
  }
  55% {
    transform: perspective(1200px) rotate3d(1, 1, 0, 4.5deg) scale(1.01);
    opacity: 1;
  }
  100% {
    transform: perspective(1200px) rotate3d(1, 1, 0, 0deg) scale(1);
    opacity: 1;
    filter: saturate(1);
  }
}

@keyframes aboutFeedbackShellFlash {
  0% {
    opacity: 0;
    transform: scale(0.82);
  }
  34% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: scale(1.04);
  }
}

@keyframes aboutFeedbackChildSettle {
  0% {
    transform: translateY(12px) scale(0.985);
    opacity: 0.72;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}

@keyframes aboutLogoMorph {
  0% {
    transform: rotateY(0deg) scale(1);
    opacity: 1;
  }
  32% {
    transform: rotateY(102deg) scale(1.05);
    opacity: 0;
  }
  68% {
    transform: rotateY(258deg) scale(1.05);
    opacity: 0;
  }
  100% {
    transform: rotateY(360deg) scale(1);
    opacity: 1;
  }
}

@keyframes aboutSmileMorph {
  0%,
  30% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.72);
  }
  38% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.98);
  }
  56% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.03);
  }
  68% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.92);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.72);
  }
}

@keyframes aboutSmileWink {
  0%,
  54%,
  100% {
    transform: scaleY(1);
  }
  62% {
    transform: scaleY(0.12);
  }
  70% {
    transform: scaleY(1);
  }
}

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

.about-feedback-section {
  min-height: min(72vh, 840px);
}

.about-feedback-shell {
  position: relative;
  display: grid;
  gap: 0.7rem;
  align-content: start;
  overflow: hidden;
  isolation: isolate;
}

.about-feedback-shell::after {
  content: '';
  position: absolute;
  inset: -10% -6%;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 50% 28%, rgba(191, 219, 254, 0.32), rgba(56, 189, 248, 0.12) 34%, transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(125, 211, 252, 0.2), transparent 64%);
}

.about-feedback-banner {
  position: relative;
  justify-self: center;
  width: min(100%, 780px);
  display: grid;
  place-items: center;
  padding: 0.35rem 0 0.2rem;
  overflow: visible;
}

.about-feedback-banner::before,
.about-feedback-banner::after {
  content: '';
  position: absolute;
  top: 50%;
  width: clamp(54px, 8vw, 84px);
  height: 82%;
  pointer-events: none;
  opacity: 0.9;
  z-index: 3;
  background:
    radial-gradient(circle at 18% 12%, rgba(5, 10, 19, 0.98) 0 12px, transparent 13px),
    radial-gradient(circle at 76% 24%, rgba(5, 10, 19, 0.97) 0 9px, transparent 10px),
    radial-gradient(circle at 34% 44%, rgba(5, 10, 19, 0.98) 0 10px, transparent 11px),
    radial-gradient(circle at 84% 61%, rgba(5, 10, 19, 0.97) 0 11px, transparent 12px),
    radial-gradient(circle at 24% 82%, rgba(5, 10, 19, 0.98) 0 13px, transparent 14px),
    repeating-radial-gradient(circle at 50% 50%, rgba(5, 10, 19, 0.88) 0 2px, transparent 3px 7px),
    linear-gradient(90deg, rgba(5, 10, 19, 1), rgba(5, 10, 19, 0.18));
  filter: blur(0.35px);
}

.about-feedback-banner::before {
  left: 0;
  transform: translate(-38%, -50%);
  animation: aboutFeedbackEdgeDustLeft 3.8s ease-in-out infinite;
}

.about-feedback-banner::after {
  right: 0;
  transform: translate(38%, -50%) scaleX(-1);
  animation: aboutFeedbackEdgeDustRight 4.2s ease-in-out infinite;
}

.about-feedback-banner-img {
  width: min(92%, 740px);
  display: block;
  height: auto;
  --about-banner-edge-softness: clamp(13%, 9vw, 18%);
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    rgba(0, 0, 0, 0.14) calc(var(--about-banner-edge-softness) * 0.32),
    #000 var(--about-banner-edge-softness),
    #000 calc(100% - var(--about-banner-edge-softness)),
    rgba(0, 0, 0, 0.14) calc(100% - (var(--about-banner-edge-softness) * 0.32)),
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    rgba(0, 0, 0, 0.14) calc(var(--about-banner-edge-softness) * 0.32),
    #000 var(--about-banner-edge-softness),
    #000 calc(100% - var(--about-banner-edge-softness)),
    rgba(0, 0, 0, 0.14) calc(100% - (var(--about-banner-edge-softness) * 0.32)),
    transparent 100%
  );
  filter: drop-shadow(0 18px 34px rgba(2, 6, 23, 0.48));
  transform-origin: 50% 52%;
  animation: aboutFeedbackBannerWind 6.2s ease-in-out infinite;
  opacity: 1;
}

@keyframes aboutFeedbackBannerWind {
  0%,
  100% {
    transform: perspective(960px) rotateY(0deg) skewY(0deg) translateY(0);
    filter: drop-shadow(0 16px 30px rgba(2, 6, 23, 0.44));
  }

  26% {
    transform: perspective(960px) rotateY(-1.8deg) skewY(0.34deg) translateY(-0.8px);
    filter: drop-shadow(0 18px 32px rgba(2, 6, 23, 0.48));
  }

  52% {
    transform: perspective(960px) rotateY(2.1deg) skewY(-0.4deg) translateY(0.7px);
    filter: drop-shadow(0 20px 36px rgba(2, 6, 23, 0.5));
  }

  78% {
    transform: perspective(960px) rotateY(-1.1deg) skewY(0.26deg) translateY(-0.35px);
    filter: drop-shadow(0 17px 31px rgba(2, 6, 23, 0.46));
  }
}

@keyframes aboutFeedbackEdgeDustLeft {
  0%,
  100% {
    transform: translate(-38%, -50%) skewY(0deg);
    opacity: 0.76;
    background-position:
      0 0,
      0 0,
      0 0,
      0 0,
      0 0,
      0 0,
      0 0;
  }

  35% {
    transform: translate(-48%, -50%) skewY(-1.2deg);
    opacity: 0.96;
    background-position:
      -7px -2px,
      -10px 2px,
      -14px 1px,
      -16px -2px,
      -11px 3px,
      -18px 0,
      -8px 0;
  }

  50% {
    transform: translate(-56%, -50%) skewY(-1.6deg);
    opacity: 1;
    background-position:
      -13px -2px,
      -16px 1px,
      -22px -1px,
      -24px 2px,
      -18px -1px,
      -30px 0,
      -12px 0;
  }

  75% {
    transform: translate(-46%, -50%) skewY(-0.5deg);
    opacity: 0.9;
    background-position:
      -6px 1px,
      -9px 0,
      -12px 2px,
      -14px -1px,
      -10px 1px,
      -16px 0,
      -7px 0;
  }
}

@keyframes aboutFeedbackEdgeDustRight {
  0%,
  100% {
    transform: translate(38%, -50%) scaleX(-1) skewY(0deg);
    opacity: 0.76;
    background-position:
      0 0,
      0 0,
      0 0,
      0 0,
      0 0,
      0 0,
      0 0;
  }

  35% {
    transform: translate(48%, -50%) scaleX(-1) skewY(1.2deg);
    opacity: 0.96;
    background-position:
      -7px -1px,
      -11px 2px,
      -14px 0,
      -17px -2px,
      -13px 2px,
      -19px 0,
      -9px 0;
  }

  50% {
    transform: translate(56%, -50%) scaleX(-1) skewY(1.7deg);
    opacity: 1;
    background-position:
      -13px -1px,
      -17px 1px,
      -21px 2px,
      -24px -1px,
      -18px 1px,
      -31px 0,
      -13px 0;
  }

  75% {
    transform: translate(46%, -50%) scaleX(-1) skewY(0.6deg);
    opacity: 0.9;
    background-position:
      -6px 0,
      -9px 1px,
      -12px 1px,
      -14px -1px,
      -10px 1px,
      -16px 0,
      -7px 0;
  }
}

.about-feedback-shell.is-flipping {
  transform-origin: 18% 16%;
  animation: aboutFeedbackDiagonalFlip 980ms cubic-bezier(0.22, 0.9, 0.24, 1.06) both;
}

.about-feedback-shell.is-flipping::after {
  animation: aboutFeedbackShellFlash 980ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.about-feedback-shell.is-flipping .about-feedback-banner-img,
.about-feedback-shell.is-flipping .about-feedback-frame,
.about-feedback-shell.is-flipping .about-feedback-note {
  animation: aboutFeedbackChildSettle 980ms cubic-bezier(0.22, 0.9, 0.24, 1.06) both;
}

.about-feedback-shell.is-flipped .about-feedback-frame,
.about-feedback-shell.is-flipped .about-feedback-note {
  opacity: 1;
  transform: none;
  animation: none;
}

.about-feedback-shell.is-flipped .about-feedback-banner-img {
  opacity: 1;
  animation: aboutFeedbackBannerWind 6.2s ease-in-out infinite;
}

.about-feedback-frame {
  width: 100%;
  min-height: min(66vh, 700px);
  border-radius: 0.88rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background:
    linear-gradient(158deg, rgba(9, 16, 30, 0.86), rgba(6, 11, 21, 0.82)),
    radial-gradient(110% 90% at 100% 0%, rgba(37, 99, 235, 0.1), transparent 74%);
  transform-origin: center top;
}

.about-feedback-note {
  margin: 0;
  color: rgba(148, 163, 184, 0.95);
  font-size: 0.82rem;
}

.about-feedback-note a {
  color: rgba(125, 211, 252, 0.98);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.adv-number {
  font-size: clamp(1.45rem, 2.1vw, 2.2rem);
  font-weight: 700;
  color: rgba(125, 211, 252, 0.98);
  line-height: 1;
  margin-bottom: 0.42rem;
}

.about-final-cta {
  text-align: center;
  min-height: min(45vh, 420px);
  display: grid;
  place-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.about-cta-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.about-cta-backdrop-frame {
  width: 100%;
  height: 100%;
  border: 0;
  transform: scale(1.12);
  filter: blur(10px) saturate(0.9) brightness(0.5);
  opacity: 0.62;
}

.about-cta-preview {
  display: grid;
  grid-template-columns: minmax(8rem, 0.86fr) minmax(12rem, 1.18fr);
  grid-template-rows: minmax(6rem, 0.85fr) minmax(7rem, 1fr);
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  background:
    linear-gradient(135deg, rgba(12, 18, 32, 0.96), rgba(5, 9, 18, 0.92)),
    repeating-linear-gradient(
      90deg,
      rgba(96, 165, 250, 0.12) 0,
      rgba(96, 165, 250, 0.12) 1px,
      transparent 1px,
      transparent 76px
    );
}

.about-cta-preview span {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 1.1rem;
  background:
    linear-gradient(180deg, rgba(96, 165, 250, 0.18), rgba(15, 23, 42, 0.5)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.about-cta-preview span:first-child {
  grid-row: 1 / span 2;
}

.about-cta-preview span:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.16), rgba(15, 23, 42, 0.62)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent);
}

.about-cta-preview span:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(15, 23, 42, 0.68)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent);
}

.about-cta-backdrop::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(70% 60% at 50% 48%, rgba(6, 11, 21, 0.24), rgba(3, 7, 15, 0.68)),
    linear-gradient(180deg, rgba(3, 7, 15, 0.16), rgba(3, 7, 15, 0.54));
}

.about-final-cta > :not(.about-cta-backdrop) {
  position: relative;
  z-index: 2;
}

.about-final-cta h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}

.about-cta-btn {
  justify-self: center;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.58);
  background: linear-gradient(130deg, rgba(37, 99, 235, 0.58), rgba(14, 116, 144, 0.38));
  color: rgba(239, 246, 255, 0.98);
  padding: 0.5rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 640;
  transition:
    transform 180ms ease,
    box-shadow 220ms ease,
    border-color 180ms ease;
}

.about-cta-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(147, 197, 253, 0.78);
  box-shadow:
    0 14px 24px rgba(30, 64, 175, 0.3),
    0 0 0 1px rgba(147, 197, 253, 0.22) inset;
}

.about-cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 15%, rgba(224, 242, 254, 0.26) 50%, transparent 82%);
  transform: translateX(-135%);
  transition: transform 520ms ease;
}

.about-cta-btn:hover::after {
  transform: translateX(130%);
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  filter: blur(6px);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (max-width: 1060px) {
  .about-hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-hero-brand {
    min-height: 240px;
    margin-top: 0.45rem;
    transform: none;
  }

  .about-hero-brand-logo {
    width: clamp(260px, 72vw, 390px);
    height: clamp(260px, 72vw, 390px);
    margin-left: 0;
  }

  .about-hero-smile {
    left: 50%;
    width: clamp(225px, 66vw, 320px);
    height: clamp(225px, 66vw, 320px);
    border-width: 6px;
  }

  .about-hero-smile .smile-mouth {
    border-width: 6px;
    border-top: 0;
  }

  .about-grid,
  .commands-grid,
  .advantages-grid {
    grid-template-columns: 1fr;
  }

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

  .about-flow-track::before,
  .about-flow-track::after {
    display: none;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }

  .about-creator-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .about-creator-brand {
    width: min(72%, 240px);
    justify-self: start;
  }
}

@media (max-width: 860px) {
  :root {
    --about-topbar-h: 60px;
  }

  .about-topbar {
    padding-inline: 0.7rem;
  }

  .about-topbar-nav {
    display: none;
  }

  .about-topbar h1 {
    font-size: 0.95rem;
  }

  .about-topbar-kicker {
    font-size: 0.6rem;
  }

  .about-main {
    width: min(94vw, 980px);
    gap: 0.95rem;
  }

  .about-section-block {
    min-height: auto;
  }

  .about-hero {
    min-height: min(66vh, 580px);
  }

  .about-card,
  .timeline-wrap,
  .command-card,
  .about-interlude,
  .about-feedback-shell,
  .adv-card,
  .about-final-cta {
    padding: 0.78rem;
  }

  .about-feedback-section {
    min-height: auto;
  }

  .about-feedback-frame {
    min-height: min(70vh, 620px);
  }

  .about-feedback-banner {
    width: 100%;
  }

  .about-feedback-banner-img {
    width: min(100%, 680px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .about-card,
  .timeline-wrap,
  .command-card,
  .adv-card,
  .about-final-cta,
  .about-topbar-nav a,
  .about-topbar-back,
  .about-topbar-logo img,
  .about-topbar-firefly,
  .about-cta-btn,
  .about-cta-btn::after,
  .about-hero-brand-logo,
  .about-hero-smile,
  .about-hero-smile .smile-eye-right,
  .about-card::before,
  .timeline-wrap::before,
  .adv-card::before,
  .about-feedback-shell::before,
  .about-feedback-shell::after,
  .about-final-cta::before,
  .about-pillars span,
  .about-interlude::after,
  .about-interlude::before,
  .about-flow-track::after,
  .about-feedback-banner::before,
  .about-feedback-banner::after,
  .about-feedback-banner-img,
  .about-impact-meter b::after,
  .about-impact-meter b {
    transition: none;
    animation: none;
  }

  .about-feedback-banner-img,
  .about-feedback-frame,
  .about-feedback-note {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
