/* about.css — Lean About page */

.about-wrap {
  width: min(1160px, calc(100% - 2 * var(--navi-pad)));
  margin: 0 auto;
}

.about-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--navi-ease), transform .8s var(--navi-ease);
}
.about-reveal.is-in {
  opacity: 1;
  transform: none;
}

/* —— 1 · Hero (shared n7g-hero pattern from pricing) —— */
.n7g-hero {
  position: relative;
  min-height: 780px;
  display: grid;
  place-items: center;
  padding: 150px var(--navi-pad) 100px;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
  background: #0b0b20;
}
.n7g-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0b0b20;
}
.n7g-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity .85s var(--navi-ease), transform 1.1s var(--navi-ease);
}
.n7g-hero__bg img:nth-child(2) { object-position: center 42%; }
.n7g-hero__bg img.is-active {
  opacity: 1;
  transform: scale(1);
}
.n7g-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 10, 28, .88) 0%, rgba(10, 10, 28, .58) 28%, rgba(10, 10, 28, .72) 62%, rgba(8, 8, 22, .96) 100%),
    radial-gradient(70% 60% at 18% 88%, rgba(99, 159, 255, .22), transparent 66%),
    radial-gradient(55% 50% at 92% 8%, rgba(16, 16, 41, .55), transparent 70%);
}
.n7g-hero__in {
  position: relative;
  z-index: 2;
  width: min(960px, 100%);
}
.n7g-hero h1 {
  margin-top: 18px;
  color: #fafafa;
  font-family: var(--navi-font);
  font-size: clamp(40px, 6.2vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.02em;
}
.n7g-hero h1 .g {
  background: linear-gradient(92deg, #dce6fd, #639fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.n7g-hero__sub {
  max-width: 680px;
  margin: 26px auto 0;
  color: rgba(220, 230, 253, .88);
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 300;
  line-height: 1.55;
}
.n7g-hero__sub b {
  font-weight: 500;
  color: #fff;
}
.n7g-hero__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.n7g-hero__actions .navi-btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .36);
}

@media (prefers-reduced-motion: reduce) {
  .n7g-hero__bg img {
    transition: none;
    transform: none;
  }
  .n7g-hero__bg img.is-active {
    transform: none;
  }
}

/* —— 2 · Showcase + horizontal gallery —— */
.about-showcase {
  position: relative;
  background: var(--navi-dark-blue);
  color: var(--navi-off-white);
  padding: clamp(64px, 9vw, 84px) 0 0;
  overflow: visible;
}
.about-gallery-rail {
  position: relative;
  padding: 0;
  background: var(--navi-dark-blue);
  box-sizing: border-box;
}
.about-showcase__intro {
  margin-bottom: clamp(40px, 6vw, 64px);
}
.about-mosaic__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  margin-bottom: 0;
}
.about-showcase .navi-eyebrow {
  color: var(--navi-light-blue);
  margin-bottom: 12px;
}
.about-showcase h2#mosaic-title {
  margin: 0;
  font-size: clamp(36px, 5.5vw, 52px);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: #fff;
}
.about-showcase__lede {
  max-width: 42rem;
  margin: 0 auto;
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 300;
  line-height: 1.55;
  color: rgba(194, 201, 230, .88);
}

/* Quali triad — large icon marks + display type (no cards) */
.about-quali {
  list-style: none;
  margin: 12px 0 0;
  padding: 36px 0 32px;
  width: min(100%, 56rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-block: 1px solid rgba(220, 230, 253, .18);
}
.about-mq {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  text-align: center;
}
.about-mq + .about-mq::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(220, 230, 253, .28) 20%,
    rgba(220, 230, 253, .28) 80%,
    transparent 100%
  );
}
.about-mq__icon {
  display: grid;
  place-items: center;
  width: clamp(64px, 8vw, 80px);
  height: clamp(64px, 8vw, 80px);
  border-radius: 50%;
  color: var(--navi-light-blue);
  background:
    radial-gradient(circle at 50% 40%, rgba(99, 159, 255, .16), transparent 68%),
    rgba(220, 230, 253, .04);
  border: 1px solid rgba(99, 159, 255, .35);
  box-shadow: inset 0 1px 0 rgba(220, 230, 253, .12);
}
.about-mq__icon svg {
  width: 52%;
  height: 52%;
  display: block;
}
.about-mq__idx {
  font-family: var(--navi-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .16em;
  color: var(--navi-light-blue);
  line-height: 1;
  margin-top: 4px;
}
.about-mq__label {
  display: block;
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.08;
  color: #fff;
}
.about-mq__desc {
  display: block;
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 300;
  letter-spacing: .005em;
  line-height: 1.35;
  color: rgba(194, 201, 230, .82);
  max-width: 14rem;
}
.about-mq:nth-child(1) { --mq-i: 0; }
.about-mq:nth-child(2) { --mq-i: 1; }
.about-mq:nth-child(3) { --mq-i: 2; }
.about-reveal:not(.is-in) .about-mq {
  opacity: 0;
  transform: translateY(12px);
}
.about-reveal.is-in .about-mq {
  animation: about-mq-in .75s var(--navi-ease) both;
  animation-delay: calc(var(--mq-i) * 100ms + 80ms);
}
@keyframes about-mq-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .about-reveal:not(.is-in) .about-mq,
  .about-reveal.is-in .about-mq {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.about-gallery {
  position: relative;
  margin-top: 0;
  padding-bottom: 0.35rem;
  background: var(--navi-dark-blue);
}
.about-gallery__viewport {
  overflow: hidden;
  width: 100%;
  padding: 0;
}
.about-gallery__viewport.is-swipe {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.about-gallery__viewport.is-swipe::-webkit-scrollbar {
  display: none;
}
.about-gallery__viewport.is-swipe .about-gallery__slide {
  scroll-snap-align: center;
}
.about-gallery__track {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: max-content;
  padding: 0 var(--navi-pad);
  will-change: transform;
  backface-visibility: hidden;
}
.about-gallery__slide {
  margin: 0;
  flex: 0 0 auto;
  width: min(58vw, 680px);
  height: clamp(420px, 72vh, 720px);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  background: #1a1a3a;
}
.about-gallery__slide--wide {
  width: min(78vw, 960px);
}
.about-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-gallery__slide--team {
  background: #12122a;
}
.about-gallery__hint {
  margin: 12px var(--navi-pad) 0;
  font-family: var(--navi-mono);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(166, 172, 214, .7);
  transition: opacity .3s var(--navi-ease);
}
.about-gallery.is-scrubbing .about-gallery__hint {
  opacity: 0;
}

/* Desktop: fill viewport under measured nav (--about-gallery-top from JS) */
@media (min-width: 768px) {
  .about-gallery__slide {
    height: calc(100dvh - var(--about-gallery-top, 6rem) - 1.5rem);
    max-height: calc(100dvh - var(--about-gallery-top, 6rem) - 1.5rem);
  }
}

.about-logos-block {
  margin-top: clamp(56px, 8vw, 88px);
  padding-top: clamp(28px, 4vw, 40px);
  padding-bottom: clamp(72px, 10vw, 112px);
  text-align: center;
}
.about-showcase .about-logos__title {
  margin: 0 0 36px;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.25;
  color: rgba(255, 255, 255, .86);
}
.about-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(32px, 4.5vw, 52px) clamp(28px, 4vw, 56px);
  width: 100%;
}
.about-logos .about-logo {
  flex: 0 1 auto;
}
.about-logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(100%, 180px);
  object-fit: contain;
  opacity: .88;
  filter: none;
}
.about-logo--mark {
  height: 56px;
  max-width: 72px;
}

/* —— 3 · Fit —— */
.about-fit {
  background: linear-gradient(180deg, var(--navi-off-white) 0%, var(--navi-pastel-blue) 100%);
  color: var(--navi-dark-blue);
  padding: clamp(64px, 9vw, 76px) 0 clamp(40px, 5vw, 52px);
}
.about-fit h2 {
  margin: 0 auto 44px;
  max-width: 640px;
  font-size: clamp(26px, 3.5vw, 32px);
  font-weight: 400;
  letter-spacing: -.01em;
  text-align: center;
  line-height: 1.2;
  color: var(--navi-ink);
}
.about-fit__strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.about-tile {
  background: #fff;
  border: 1px solid #e0e5f4;
  border-radius: 15px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(22, 22, 56, .07);
}
.about-tile h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--navi-ink);
}
.about-tile p {
  margin: 0;
  font-size: 13.5px;
  font-weight: 300;
  color: #55557d;
  line-height: 1.55;
}

/* —— Navi Studio sections —— */
.asv-flow {
  position: relative;
  padding: clamp(56px, 8vw, 88px) 0 clamp(48px, 6vw, 64px);
  background: linear-gradient(180deg, #fafafa 0%, #dce6fd 22%, #639fff 52%, #172987 74%, #12122e 100%);
  text-align: center;
  color: var(--navi-dark-blue);
}
.asv-flow .navi-eyebrow { color: var(--navi-blue); justify-content: center; }
.asv-flow h2 {
  margin: 14px auto 0;
  max-width: 16ch;
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.12;
  color: var(--navi-ink);
}
.asv-flow__sub {
  max-width: 640px;
  margin: 18px auto 0;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 300;
  color: #33335c;
  line-height: 1.6;
}
.asv-flow__sub strong { font-weight: 500; color: var(--navi-ink); }

/* —— Render ticker (between fit + studio) + lightbox —— */
.about-strip {
  position: relative;
  padding: clamp(48px, 7vw, 80px) 0 clamp(56px, 8vw, 96px);
  background: linear-gradient(180deg, var(--navi-pastel-blue) 0%, #f3f6fd 55%, #fafafa 100%);
  color: var(--navi-ink);
  text-align: center;
  overflow: hidden;
}
.about-strip__logo {
  display: block;
  height: clamp(36px, 4vw, 44px);
  width: auto;
  margin: 0 auto 14px;
  opacity: .94;
}
.about-strip__label {
  margin: 0 0 clamp(28px, 4vw, 40px);
  font-family: var(--navi-mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--navi-muted);
}
.about-strip__rail {
  overflow: hidden;
  width: 100%;
}
.about-strip__track {
  display: flex;
  gap: clamp(18px, 2vw, 24px);
  width: max-content;
  will-change: transform;
  animation: about-strip-marq 90s linear infinite;
}
.about-strip__rail:hover .about-strip__track,
.about-strip.is-lightbox-open .about-strip__track {
  animation-play-state: paused;
}
@keyframes about-strip-marq {
  to { transform: translateX(calc(-1 * var(--marquee-shift, 50%))); }
}
.about-strip__item {
  flex: none;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  border-radius: 18px;
  overflow: hidden;
  line-height: 0;
  transition: transform .35s var(--navi-ease), box-shadow .35s var(--navi-ease);
}
.about-strip__item:hover,
.about-strip__item:focus-visible {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 22px 50px -20px rgba(22, 22, 56, .35);
  outline: none;
}
.about-strip__item:focus-visible {
  box-shadow: 0 0 0 2px #fafafa, 0 0 0 4px var(--navi-light-blue);
}
.about-strip__item img {
  display: block;
  height: clamp(200px, 26vw, 280px);
  width: auto;
  border-radius: 18px;
  object-fit: cover;
}
@media (prefers-reduced-motion: reduce) {
  .about-strip__track {
    animation: none;
    flex-wrap: wrap;
    width: min(1160px, calc(100% - 2 * var(--navi-pad)));
    margin: 0 auto;
    justify-content: center;
  }
}

/* Image lightbox */
.about-lb {
  position: fixed;
  inset: 0;
  z-index: 920;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 40px);
  background: rgba(16, 16, 41, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity .35s var(--navi-ease);
}
.about-lb.is-open { display: flex; }
.about-lb.is-in { opacity: 1; }
.about-lb__frame {
  position: relative;
  max-width: min(1100px, 100%);
  max-height: min(86vh, 100%);
  border-radius: var(--navi-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(220, 230, 253, .16);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .55);
  background: #0e0e26;
  transform: translateY(18px) scale(.985);
  transition: transform .4s var(--navi-ease);
}
.about-lb.is-in .about-lb__frame { transform: none; }
.about-lb__img {
  display: block;
  max-width: 100%;
  max-height: min(86vh, 900px);
  width: auto;
  height: auto;
  object-fit: contain;
}
.about-lb__x {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(220, 230, 253, .28);
  background: rgba(16, 16, 41, .55);
  color: var(--navi-off-white);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .25s, transform .25s;
}
.about-lb__x:hover {
  background: rgba(220, 230, 253, .14);
  transform: rotate(90deg);
}
@media (prefers-reduced-motion: reduce) {
  .about-lb,
  .about-lb__frame,
  .about-lb__x {
    transition: none;
  }
}

.asv-services {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin: 28px auto 48px;
}
.asv-services span {
  font-size: 13px;
  font-weight: 300;
  color: var(--navi-blue);
  border: 1px solid rgba(23, 41, 135, .28);
  border-radius: 999px;
  padding: 6px 15px;
  background: rgba(250, 250, 250, .5);
}
.asv-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: stretch;
  text-align: left;
}
.asv-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 250, 250, .85);
  font-size: 22px;
  font-weight: 200;
}
.asv-step {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 18px;
  background: rgba(16, 16, 40, .55);
  border: 1px solid rgba(220, 230, 253, .28);
  backdrop-filter: blur(6px);
  color: #fff;
}
.asv-step__num {
  font-family: var(--navi-mono);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--navi-light-blue);
  margin-bottom: 12px;
}
.asv-step h3 {
  margin: 0 0 6px;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -.01em;
}
.asv-step > p {
  margin: 0 0 18px;
  font-size: 13.5px;
  font-weight: 300;
  color: #c2c9e6;
  line-height: 1.55;
}
.asv-mock {
  margin-top: auto;
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, #181840, #12122f);
  border: 1px solid rgba(99, 159, 255, .25);
  box-shadow: 0 18px 44px rgba(0, 0, 15, .45);
  font-size: 12.5px;
}
.asv-mock__flag {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #fff;
  font-size: 13px;
}
.asv-flag {
  font-family: var(--navi-mono);
  font-size: 9px;
  letter-spacing: .14em;
  color: #ffbe6e;
  border: 1px solid rgba(255, 190, 110, .45);
  border-radius: 5px;
  padding: 2px 6px;
}
.asv-mock__meta {
  font-weight: 300;
  color: #aab2d6;
  font-size: 11.5px;
  line-height: 1.6;
}
.asv-mock__reason {
  margin-top: 9px;
  padding-top: 9px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-weight: 300;
  color: #f4dfc2;
  font-size: 12px;
}
.asv-opt {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 0;
  font-weight: 300;
  color: #dfe5f8;
}
.asv-box {
  width: 15px;
  height: 15px;
  border-radius: 4px;
  flex: none;
  border: 1px solid rgba(220, 230, 253, .4);
}
.asv-box--on {
  background: var(--navi-light-blue);
  border-color: var(--navi-light-blue);
  display: grid;
  place-items: center;
  color: #101028;
  font-size: 10px;
  font-weight: 600;
}
.asv-req {
  margin-top: 10px;
  text-align: center;
  background: var(--navi-light-blue);
  color: #101028;
  font-size: 12.5px;
  font-weight: 500;
  border-radius: 8px;
  padding: 9px 0;
}
.asv-thumb {
  position: relative;
  height: 86px;
  border-radius: 9px;
  overflow: hidden;
  margin-bottom: 10px;
  background: #1a1a3a;
}
.asv-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.asv-new {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  font-family: var(--navi-mono);
  font-size: 8.5px;
  letter-spacing: .16em;
  background: rgba(126, 226, 168, .92);
  color: #0c2517;
  border-radius: 4px;
  padding: 3px 7px;
  font-weight: 500;
}
.asv-new--inline {
  position: static;
  display: inline-block;
  margin-bottom: 8px;
}
.asv-live {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--navi-mono);
  font-size: 9.5px;
  letter-spacing: .16em;
  color: #7ee2a8;
  text-transform: uppercase;
}
.asv-live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7ee2a8;
}

/* —— Responsive —— */
@media (max-width: 960px) {
  .about-fit__strip {
    grid-template-columns: 1fr;
  }
  .about-gallery__slide {
    width: min(78vw, 560px);
  }
  .about-gallery__slide--wide {
    width: min(88vw, 700px);
  }
  .about-mosaic__head {
    align-items: center;
  }
  .about-quali {
    grid-template-columns: 1fr;
    width: min(100%, 20rem);
    padding: 24px 0;
    gap: 0;
  }
  .about-mq {
    padding: 22px 12px;
    gap: 8px;
  }
  .about-mq + .about-mq::before {
    left: 18%;
    right: 18%;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(220, 230, 253, .28) 20%,
      rgba(220, 230, 253, .28) 80%,
      transparent 100%
    );
  }
  .about-mq__icon {
    width: 72px;
    height: 72px;
  }
  .about-mq__label {
    font-size: clamp(26px, 7vw, 30px);
  }
  .about-mq__desc {
    max-width: none;
    font-size: 16px;
  }
  .asv-steps {
    grid-template-columns: 1fr;
  }
  .asv-arrow span,
  .asv-arrow {
    transform: rotate(90deg);
  }
  .asv-flow h2 {
    max-width: none;
    font-size: clamp(32px, 9vw, 42px);
  }
}
@media (max-width: 767px) {
  .about-gallery-rail {
    height: auto !important;
    padding: 0;
  }
  .about-gallery {
    position: relative;
    top: auto;
    height: auto;
    display: block;
    padding: 0;
    margin-top: 12px;
    background: transparent;
  }
  .about-gallery__slide {
    height: clamp(280px, 52vh, 440px);
  }
}
@media (max-width: 560px) {
  .n7g-hero {
    min-height: auto;
    padding: 110px var(--navi-pad) 64px;
  }
  .n7g-hero h1 {
    font-size: clamp(32px, 8.5vw, 40px);
  }
  .n7g-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .n7g-hero__actions .navi-btn {
    width: 100%;
    justify-content: center;
  }
  .about-showcase {
    padding-top: clamp(48px, 8vw, 64px);
  }
  /* One dominant slide + peek — avoid twin cramped columns */
  .about-gallery__slide,
  .about-gallery__slide--wide {
    width: min(88vw, 400px);
    height: min(52vh, 380px);
  }
  .about-gallery__hint {
    margin-top: 10px;
  }
  .about-gallery__hint::after {
    content: " · swipe";
  }
  .about-logos-block {
    margin-top: 40px;
    padding-top: 20px;
    padding-bottom: 56px;
  }
  .about-logos {
    gap: 32px 28px;
  }
  .about-showcase .about-logos__title {
    margin-bottom: 28px;
  }
  .about-logo {
    height: 34px;
    max-width: min(100%, 160px);
  }
  .about-logo--mark {
    height: 48px;
    max-width: 64px;
  }
  .about-strip__item img {
    height: 160px;
  }
  .n7g-close__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .n7g-close__actions .navi-btn {
    width: 100%;
    justify-content: center;
  }
}

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