
:root {
  --about-bg: #050a10;
  --about-panel: #08131a;
  --about-ink: #f7fbfa;
  --about-muted: #d2ddda;
  --about-cyan: #e4fff8;
  --about-blue: #5b8ad7;
  --about-line: rgba(235, 249, 245, 0.26);
  --about-side: clamp(1.4rem, 7vw, 8rem);
  --about-display: "方正兰亭黑粗体（精选）", "方正兰亭黑粗体", "Microsoft YaHei", "微软雅黑", system-ui, sans-serif;
  --about-mono: "方正兰亭黑简体（精选）", "方正兰亭黑简体", "Microsoft YaHei", "微软雅黑", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  background: var(--about-bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--about-ink);
  background:
    radial-gradient(ellipse 34% 26% at 88% 12%, rgba(56, 92, 154, 0.13), transparent 76%),
    radial-gradient(ellipse 30% 34% at 8% 48%, rgba(57, 126, 104, 0.1), transparent 78%),
    linear-gradient(150deg, #050a10 0%, #071117 48%, #050a10 100%);
  font-family: var(--about-mono);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 1px solid var(--about-cyan); outline-offset: 5px; }

.about-field {
  position: fixed;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.72;
}

.about-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 6.3rem;
  padding: 1.6rem var(--about-side);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(168, 245, 227, 0.08);
  background: linear-gradient(rgba(5, 10, 16, 0.92), rgba(5, 10, 16, 0.64));
  backdrop-filter: blur(18px);
}

.about-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.about-brand > span {
  width: 2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(5, 10, 16, 0.94);
}

.about-brand img { width: 100%; height: 100%; object-fit: contain; }

.about-brand strong {
  font-family: var(--about-display);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.about-brand small {
  margin-top: 0.25rem;
  display: block;
  color: var(--about-muted);
  font-family: var(--about-mono);
  font-size: 0.52rem;
  letter-spacing: 0.34em;
}

.about-header nav { display: flex; gap: clamp(1.2rem, 3vw, 3.5rem); }
.about-header nav a { color: #e0e9e7; font-size: 0.62rem; letter-spacing: 0.12em; }
.about-header nav a:hover { color: var(--about-cyan); }

main, footer { position: relative; z-index: 1; }

.about-hero {
  position: relative;
  overflow: clip;
  min-height: 100svh;
  padding: 23vh var(--about-side) 10vh;
  display: grid;
  align-content: center;
}

.about-kicker,
.about-eyebrow {
  margin: 0 0 2rem;
  color: var(--about-muted);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
}

.about-kicker i {
  width: 2.6rem;
  height: 1px;
  margin-right: 0.8rem;
  display: inline-block;
  vertical-align: middle;
  background: linear-gradient(90deg, var(--about-cyan), transparent);
}

h1, h2 { margin: 0; font-weight: 400; }

h1 {
  max-width: 10ch;
  font-family: var(--about-display);
  font-size: clamp(3.8rem, 9vw, 9.6rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.about-lead {
  width: min(42rem, 62vw);
  margin: 3rem 0 0;
  color: #e3ebe9;
  font-size: clamp(0.82rem, 1.15vw, 1.05rem);
  line-height: 2;
}

.about-signal {
  position: absolute;
  z-index: 0;
  right: 7vw;
  bottom: 13vh;
  width: min(36vw, 32rem);
  aspect-ratio: 1;
  pointer-events: none;
  border: 1px solid rgba(240, 255, 250, 0.34);
  border-radius: 50%;
  box-shadow: inset 0 0 3.5rem rgba(224, 255, 247, 0.04);
}

.about-signal::before,
.about-signal::after,
.about-signal span {
  content: '';
  position: absolute;
  border: 1px solid rgba(164, 200, 255, 0.55);
  border-radius: 50%;
}

.about-signal::before {
  inset: 18%;
  transform: rotate(42deg) scaleY(0.42);
  border-color: rgba(132, 178, 255, 0.7);
}

.about-signal::after {
  inset: 31%;
  transform: rotate(-28deg) scaleY(0.68);
  border-color: rgba(224, 255, 247, 0.58);
}

.about-signal span:nth-child(1) {
  inset: 38%;
  transform: rotate(18deg) scaleY(0.72);
  border-color: rgba(205, 255, 242, 0.56);
}

.about-signal span:nth-child(2) {
  inset: 43%;
  transform: rotate(46deg) scaleY(0.48);
  border-color: rgba(255, 112, 112, 0.82);
  box-shadow: 0 0 1.1rem rgba(255, 112, 112, 0.16);
}

.about-signal span:nth-child(3) {
  inset: 55%;
  border-color: rgba(242, 255, 251, 0.66);
}

.about-section {
  min-height: 82svh;
  padding: 14vh var(--about-side);
  display: grid;
  grid-template-columns: minmax(10rem, 0.7fr) minmax(20rem, 1.45fr);
  gap: clamp(3rem, 8vw, 9rem);
  border-top: 1px solid var(--about-line);
  background: linear-gradient(105deg, rgba(8, 19, 26, 0.5), transparent 50%);
}

.about-section--event {
  min-height: auto;
  padding-top: clamp(5.5rem, 10vh, 8rem);
  padding-bottom: clamp(6.5rem, 11vh, 9rem);
  background:
    radial-gradient(circle at 68% 40%, rgba(91, 138, 215, 0.12), transparent 26rem),
    linear-gradient(105deg, rgba(8, 19, 26, 0.55), transparent 55%);
}

.about-section__index {
  padding-top: 0.55rem;
  display: grid;
  grid-template-columns: auto 2.8rem 1fr;
  align-items: start;
  gap: 0.8rem;
  color: var(--about-muted);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
}

.about-section__index span { color: var(--about-cyan); }
.about-section__index i { height: 1px; margin-top: 0.38rem; background: var(--about-line); }
.about-section__index b { font-weight: 400; }

.about-section__body { max-width: 54rem; }
.about-section h2,
.about-contact h2 {
  font-family: var(--about-display);
  font-size: clamp(2.6rem, 6vw, 6.4rem);
  line-height: 1.03;
  letter-spacing: -0.06em;
}

.about-section__body > p:not(.about-eyebrow) {
  width: min(42rem, 100%);
  margin: 2rem 0 0;
  color: #dce6e3;
  font-size: clamp(0.76rem, 1vw, 0.96rem);
  line-height: 2;
}

.about-section--event .about-section__body { max-width: 64rem; }

.about-event-gallery {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(0.9rem, 2vw, 1.5rem);
}

.about-event-gallery figure { min-width: 0; margin: 0; }

.about-event-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(168, 245, 227, 0.14);
  border-radius: 1rem;
  background: #050a10;
  box-shadow: 0 1.8rem 5rem rgba(0, 5, 9, 0.32);
}

.about-event-gallery__portrait img { object-position: center 58%; }
.about-event-gallery__wide img { object-position: center center; }

.about-event-gallery figcaption {
  margin-top: 0.75rem;
  color: #cbd7d4;
  font-size: 0.52rem;
  letter-spacing: 0.12em;
}

.about-contact {
  min-height: 86svh;
  padding: 15vh var(--about-side) 11vh;
  display: grid;
  align-content: center;
  border-top: 1px solid var(--about-line);
  background: radial-gradient(ellipse 42% 46% at 82% 48%, rgba(66, 136, 112, 0.12), transparent 75%);
}

.about-contact > p:not(.about-kicker) { margin: 2rem 0 0; color: #dce6e3; line-height: 1.8; }
.about-contact__actions { margin-top: 3rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.about-contact__actions a {
  min-width: min(20rem, 100%);
  padding: 1.25rem 1.4rem;
  display: flex;
  justify-content: space-between;
  border: 1px solid rgba(168, 245, 227, 0.24);
  border-radius: 999px;
  color: #f0f7f5;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  transition: color 0.25s, background 0.25s, transform 0.25s;
}

.about-contact__actions a:hover { color: var(--about-bg); background: var(--about-cyan); transform: translateY(-0.15rem); }

footer {
  min-height: 6rem;
  padding: 1.5rem var(--about-side);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid var(--about-line);
  color: var(--about-muted);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
}

footer a { color: var(--about-cyan); }

.reveal { opacity: 0; transform: translateY(1.5rem); transition: opacity 0.85s ease, transform 0.85s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 760px) {
  .about-header { min-height: 4.8rem; padding-top: calc(0.9rem + env(safe-area-inset-top)); padding-bottom: 0.9rem; }
  .about-brand strong { font-size: 0.56rem; }
  .about-brand small { display: none; }
  .about-header nav { gap: 1rem; }
  .about-header nav a { font-size: 0.54rem; }
  .about-hero { padding-top: 18vh; }
  h1 { font-size: clamp(3.25rem, 16vw, 5.8rem); }
  .about-lead { width: 88vw; margin-top: 2rem; }
  .about-signal { right: -18vw; bottom: 12vh; width: 75vw; opacity: 0.86; }
  .about-section { min-height: 74svh; grid-template-columns: 1fr; gap: 3rem; padding-top: 10vh; padding-bottom: 10vh; }
  .about-section__index { width: min(18rem, 100%); }
  .about-section h2, .about-contact h2 { font-size: clamp(2.5rem, 12vw, 4.8rem); }
  .about-section--event { padding-top: 8vh; padding-bottom: 9vh; }
  .about-event-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.7rem; margin-top: 2rem; }
  .about-event-gallery img { border-radius: 0.7rem; }
  .about-event-gallery figcaption { margin-top: 0.55rem; font-size: 0.45rem; letter-spacing: 0.06em; }
  .about-contact__actions { display: grid; }
  footer { grid-template-columns: 1fr; gap: 0.7rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .about-field { opacity: 0.5; }
}
/* final-brand-type-and-responsive-20260807 */
body,
button,
a,
p,
span,
small,
figcaption {
  font-family: var(--about-mono);
  font-weight: 400;
}

body * {
  letter-spacing: 0;
}

h1,
h2,
h3,
strong,
b,
.about-header nav a,
.about-kicker,
.about-eyebrow,
.about-section__index,
.about-contact__actions a {
  font-family: var(--about-display);
  font-weight: 700;
}

.about-brand > .about-brand__logo {
  width: 10.5rem;
  height: 2.65rem;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: transparent;
}

.about-brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.about-header nav a {
  font-size: 0.8rem;
}

.about-kicker,
.about-eyebrow {
  font-size: 0.7rem;
}

.about-hero h1 {
  font-size: 5.4rem;
  line-height: 1.08;
  letter-spacing: 0.025em;
}

.about-lead {
  font-size: 1.08rem;
  line-height: 1.95;
}

.about-section h2,
.about-contact h2,
.about-section--platform h2 {
  font-size: 3.8rem;
  line-height: 1.15;
  letter-spacing: 0.025em;
}

.about-section__body > p:not(.about-eyebrow) {
  font-size: 1rem;
  line-height: 2;
}

.about-section__index {
  font-size: 0.66rem;
}

.about-contact > p:not(.about-kicker) {
  font-size: 1rem;
}

.about-contact__actions a {
  position: relative;
  z-index: 2;
  font-size: 0.8rem;
  pointer-events: auto;
}

.about-section--platform {
  min-height: auto;
  padding-top: clamp(6.5rem, 12vh, 10rem);
  padding-bottom: clamp(6.5rem, 12vh, 10rem);
  background: radial-gradient(circle at 74% 45%, rgba(91,138,215,.12), transparent 29rem), linear-gradient(105deg, rgba(8,19,26,.55), transparent 58%);
}

.about-section--platform .about-section__body {
  width: 100%;
  max-width: 68rem;
  min-width: 0;
}

.about-platform-figure {
  width: 100%;
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  overflow: hidden;
  border: 1px solid rgba(168,245,227,.2);
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 1.8rem 5rem rgba(0,5,9,.36);
}

.about-platform-figure picture,
.about-platform-figure img {
  width: 100%;
  max-width: 100%;
  display: block;
}

.about-platform-figure img {
  height: auto;
}

.about-section--event .about-section__body > p:not(.about-eyebrow) {
  width: min(48rem, 100%);
}

.about-event-gallery figcaption {
  font-family: var(--about-mono);
  font-weight: 400;
}

footer {
  grid-template-columns: 1fr;
  font-size: 0.62rem;
  overflow-wrap: anywhere;
}

@media (max-width: 1100px) {
  .about-hero h1 { font-size: 4.6rem; }

  .about-section h2,
  .about-contact h2,
  .about-section--platform h2 {
    font-size: 3.2rem;
  }
}

@media (max-width: 760px) {
  .about-brand > .about-brand__logo {
    width: 8.8rem;
    height: 2.25rem;
  }

  .about-header nav a { font-size: 0.7rem; }
  .about-hero h1 { font-size: 3rem; }
  .about-lead { width: 100%; font-size: 1rem; }

  .about-section h2,
  .about-contact h2,
  .about-section--platform h2 {
    font-size: 2.6rem;
  }

  .about-section__body > p:not(.about-eyebrow),
  .about-contact > p:not(.about-kicker) {
    font-size: 0.92rem;
  }

  .about-section--platform {
    padding-top: 9vh;
    padding-bottom: 9vh;
  }

  .about-platform-figure {
    overflow: hidden;
  }

  .about-platform-figure img {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  .about-event-gallery {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .about-event-gallery figcaption {
    font-size: 0.58rem;
  }
}

@media (max-width: 430px) {
  :root { --about-side: 1rem; }

  .about-header {
    padding: 0.9rem var(--about-side);
    grid-template-columns: 1fr auto;
    row-gap: 0.55rem;
  }

  .about-brand > .about-brand__logo {
    width: 7.6rem;
    height: 1.95rem;
  }

  .about-header nav {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .about-hero {
    padding-top: 9rem;
  }

  .about-hero h1 {
    font-size: 2.35rem;
  }

  .about-section {
    gap: 2rem;
  }

  .about-section h2,
  .about-contact h2,
  .about-section--platform h2 {
    font-size: 2.2rem;
  }

  .about-platform-figure {
    margin-top: 2rem;
  }
}

@media (max-width: 360px) {
  :root { --about-side: 0.85rem; }

  .about-brand > .about-brand__logo {
    width: 7rem;
    height: 1.8rem;
  }

  .about-header nav {
    gap: 0.75rem;
  }

  .about-header nav a {
    font-size: 0.64rem;
  }

  .about-hero h1 {
    font-size: 2.1rem;
  }

  .about-section h2,
  .about-contact h2,
  .about-section--platform h2 {
    font-size: 1.95rem;
  }
}

@media (max-width: 900px) and (max-height: 560px) and (orientation: landscape) {
  .about-header {
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }

  .about-brand > .about-brand__logo {
    width: 7.2rem;
    height: 1.85rem;
  }

  .about-hero {
    min-height: 40rem;
    padding-top: 7rem;
  }
}

/* fixed-screen-gradient-20260811 */
html {
  background: #000000;
}

body {
  position: relative;
  background: transparent;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

body::before {
  background-color: #000000;
  background-image: linear-gradient(
    180deg,
    #000000 0%,
    #0C2338 35%,
    #002D95 65%,
    #00D1C5 100%
  );
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

body::after {
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
}

.about-field {
  display: none;
}

.about-section,
.about-section--platform,
.about-section--event,
.about-contact,
footer {
  background: transparent;
}

/* about-background-parity-4f-20260812 */
html,
body {
  background: #090616 !important;
}

body::before {
  background-color: #090616;
  background-image: linear-gradient(
    180deg,
    #090616 0%,
    #140B2C 6%,
    #291557 25%,
    #472B91 53%,
    #3C45AC 75%,
    #3567D8 100%
  );
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

body::after {
  opacity: .035;
}

.about-section,
.about-section--platform,
.about-section--event,
.about-contact,
footer {
  background: transparent;
}

@media (max-width: 760px) {
  html,
  body {
    background: #090616 !important;
  }

  body::before {
    position: fixed;
    inset: 0;
    background-image: linear-gradient(
      180deg,
      #090616 0%,
      #140B2C 6%,
      #291557 25%,
      #472B91 53%,
      #3C45AC 75%,
      #3567D8 100%
    );
    background-size: 100% 100%;
  }
}
/* about-background-parity-4h-20260812 */
html,
body {
  background: #140d2f !important;
}

body::before {
  background-color: #140d2f;
  background-image: linear-gradient(180deg, #140d2f 0%, #1a1035 6%, #341b68 25%, #5928ab 53%, #584bfd 75%, #527efb 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

@media (max-width: 760px) {
  html,
  body {
    background: #140d2f !important;
  }

  body::before {
    position: fixed;
    inset: 0;
    background-image: linear-gradient(180deg, #140d2f 0%, #1a1035 6%, #341b68 25%, #5928ab 53%, #584bfd 75%, #527efb 100%);
    background-size: 100% 100%;
  }
}
/* unified-purple-blue-background-4j-20260813 */
html,
body {
  background: #140d2f !important;
}

body {
  position: relative;
  background: transparent !important;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: 0;
  content: "";
  background: #140d2f;
  background-image: linear-gradient(180deg, #140d2f 0%, #1a1035 6%, #341b68 25%, #5928ab 53%, #584bfd 75%, #527efb 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-attachment: fixed;
}

body::after {
  z-index: 0;
  content: "";
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
}

.about-header {
  background: transparent !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

.about-brand > span {
  background: transparent !important;
}

.about-section,
.about-section--platform,
.about-section--event,
.about-contact,
footer {
  background: transparent !important;
}
/* homepage-background-parity-4k-20260813 */
body::before {
  background-color: #140d2f;
  background-image:
    radial-gradient(circle at 3.5% 89.8%, rgba(34, 103, 240, .58) 0%, rgba(34, 103, 240, .2) 55%, transparent 100%),
    radial-gradient(circle at 96.5% 89.8%, rgba(152, 57, 237, .5) 0%, rgba(152, 57, 237, .18) 55%, transparent 100%),
    radial-gradient(circle at 50% 100%, rgba(185, 183, 255, .2) 0%, transparent 35%),
    linear-gradient(180deg, #140d2f 0%, #1a1035 6%, #341b68 25%, #5928ab 53%, #584bfd 75%, #527efb 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-blend-mode: screen, screen, screen, normal;
  background-attachment: fixed;
}

@media (max-width: 760px) {
  body::before {
    background-image:
      radial-gradient(circle at 3.5% 89.8%, rgba(34, 103, 240, .58) 0%, rgba(34, 103, 240, .2) 55%, transparent 100%),
      radial-gradient(circle at 96.5% 89.8%, rgba(152, 57, 237, .5) 0%, rgba(152, 57, 237, .18) 55%, transparent 100%),
      radial-gradient(circle at 50% 100%, rgba(185, 183, 255, .2) 0%, transparent 35%),
      linear-gradient(180deg, #140d2f 0%, #1a1035 6%, #341b68 25%, #5928ab 53%, #584bfd 75%, #527efb 100%);
    background-size: 100% 100%;
    background-blend-mode: screen, screen, screen, normal;
    background-attachment: fixed;
  }
}
/* about-screen-pinned-purple-blue-gradient-20260814 */
html {
  background: #140d2f !important;
}

body {
  background: transparent !important;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  content: "";
  background: linear-gradient(
    180deg,
    #140d2f 0%,
    #1a1035 6%,
    #341b68 25%,
    #5928ab 53%,
    #584bfd 75%,
    #527efb 100%
  );
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-attachment: fixed;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  opacity: .035;
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
}

/* homepage-background-parity-20260820 */
html {
  background: #394a41 !important;
}

body {
  background: transparent !important;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(
    180deg,
    #394a41 0%,
    #42544a 16%,
    #4d6558 32%,
    #5b7968 48%,
    #6e927d 64%,
    #89ae91 78%,
    #a3c7a8 90%,
    #b7dcbc 100%
  );
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-attachment: fixed;
}

@media (max-width: 760px) {
  html {
    background: #394a41 !important;
  }

  body::before {
    background: linear-gradient(
      180deg,
      #394a41 0%,
      #42544a 16%,
      #4d6558 32%,
      #5b7968 48%,
      #6e927d 64%,
      #89ae91 78%,
      #a3c7a8 90%,
      #b7dcbc 100%
    );
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-attachment: fixed;
  }
}

/* Keep the header logo crisp and unlit, matching the homepage. */
.about-brand__logo img {
  filter: none !important;
}
