/* 在「嘉」支援 · 支援抵「嘉」形象站 */
:root {
  --about-ink: #0f2744;
  --about-ink-soft: #3a516e;
  --about-blue: #1f6fb8;
  --about-blue-deep: #155fae;
  --about-mint: #1f9a78;
  --about-mint-soft: rgba(31, 154, 120, 0.14);
  --about-coral: #e07a55;
  --about-sand: #e8f1f8;
  --about-cream: #f4f8fc;
  --about-white: #ffffff;
  --about-line: rgba(15, 39, 68, 0.12);
  --about-max: 1120px;
  --about-nav-h: 72px;
  --font-display: "Noto Serif TC", "Source Han Serif TC", "Songti TC", serif;
  --font-body: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.about-site {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--about-ink);
  background: var(--about-cream);
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--about-blue-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.about-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}
.about-skip:focus {
  left: 1rem;
  top: 1rem;
}

/* —— Nav —— */
.about-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--about-nav-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(244, 248, 252, 0.82);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.about-nav.is-scrolled {
  border-bottom-color: var(--about-line);
  background: rgba(255, 255, 255, 0.92);
}
.about-nav__inner {
  width: min(100% - 2rem, var(--about-max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.about-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}
.about-brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(21, 95, 174, 0.25);
}
.about-brand__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.25;
}
.about-brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.about-brand__sub {
  font-size: 0.78rem;
  color: var(--about-ink-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.about-nav__links {
  display: none;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.about-nav__links a {
  color: var(--about-ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}
.about-nav__links a:hover {
  color: var(--about-blue-deep);
}
.about-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--about-blue-deep);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease;
}
.about-nav__cta:hover {
  background: var(--about-blue);
  transform: translateY(-1px);
}
.about-nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--about-line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}
.about-nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--about-ink);
  position: relative;
}
.about-nav__toggle span::before,
.about-nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--about-ink);
}
.about-nav__toggle span::before { top: -6px; }
.about-nav__toggle span::after { top: 6px; }

.about-drawer {
  display: none;
  position: fixed;
  inset: var(--about-nav-h) 0 0 0;
  background: rgba(15, 39, 68, 0.45);
  z-index: 40;
}
.about-drawer.is-open { display: block; }
.about-drawer__panel {
  background: #fff;
  padding: 1.25rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 12px 40px rgba(15, 39, 68, 0.18);
}
.about-drawer__panel a {
  color: var(--about-ink);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--about-line);
}

@media (min-width: 900px) {
  .about-nav__links { display: flex; }
  .about-nav__toggle { display: none; }
  .about-drawer { display: none !important; }
}

/* —— Hero —— */
.about-hero {
  position: relative;
  min-height: calc(100vh - var(--about-nav-h));
  min-height: calc(100svh - var(--about-nav-h));
  display: flex;
  align-items: flex-end;
  justify-content: stretch;
  overflow: hidden;
  color: #fff;
  --about-overlay: 0.35;
}
.about-hero[data-align-y="top"] { align-items: flex-start; }
.about-hero[data-align-y="center"] { align-items: center; }
.about-hero[data-align-y="bottom"] { align-items: flex-end; }
.about-hero__media {
  position: absolute;
  inset: 0;
}
.about-hero__fallback {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 28, 52, 0.35) 0%, rgba(10, 28, 52, 0.72) 55%, rgba(8, 22, 42, 0.92) 100%),
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(31, 154, 120, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 50% at 15% 80%, rgba(31, 111, 184, 0.4), transparent 50%),
    linear-gradient(135deg, #123a63 0%, #1a5f8a 42%, #1f7a6a 100%);
  background-size: cover;
  transform: scale(1.02);
  animation: aboutHeroDrift 18s ease-in-out infinite alternate;
}
.about-hero__fallback::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cpath fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1' d='M0 120 Q40 90 80 120 T160 120 M0 140 Q40 110 80 140 T160 140'/%3E%3C/svg%3E");
  opacity: 0.9;
  pointer-events: none;
}
.about-hero.has-marquee .about-hero__fallback {
  opacity: 0;
  animation: none;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.about-hero__slides {
  position: absolute;
  inset: 0;
}
.about-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  pointer-events: none;
}
.about-hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.about-hero__slide-img {
  position: absolute;
  inset: 0;
  background-color: #0a1c34;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}
.about-hero.has-marquee:not(.is-paused) .about-hero__slide.is-active .about-hero__slide-img {
  animation: aboutKenBurns 14s ease-in-out infinite alternate;
}
.about-hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 22, 42, calc(var(--about-overlay) * 0.55)) 0%,
    rgba(8, 22, 42, calc(var(--about-overlay) * 0.85)) 48%,
    rgba(8, 22, 42, calc(var(--about-overlay) * 1.15)) 100%
  );
  pointer-events: none;
}
@keyframes aboutHeroDrift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.06) translate3d(-1.5%, -1%, 0); }
}
@keyframes aboutKenBurns {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-2%, -1.5%, 0); }
}
.about-hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, var(--about-max));
  margin: 0 auto;
  padding: 4.5rem 0 4rem;
  opacity: 0;
  transform: translateY(18px);
  animation: aboutFadeUp 0.9s ease forwards 0.15s;
}
.about-hero[data-align-x="left"] .about-hero__content {
  margin-left: max(1rem, calc((100% - var(--about-max)) / 2));
  margin-right: auto;
  text-align: left;
}
.about-hero[data-align-x="center"] .about-hero__content {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.about-hero[data-align-x="center"] .about-hero__actions,
.about-hero[data-align-x="center"] .about-hero__dots {
  justify-content: center;
}
.about-hero[data-align-x="center"] .about-hero__headline,
.about-hero[data-align-x="center"] .about-hero__lead,
.about-hero[data-align-x="center"] .about-hero__marquee-caption {
  margin-left: auto;
  margin-right: auto;
}
.about-hero[data-align-x="right"] .about-hero__content {
  margin-left: auto;
  margin-right: max(1rem, calc((100% - var(--about-max)) / 2));
  text-align: right;
}
.about-hero[data-align-x="right"] .about-hero__actions,
.about-hero[data-align-x="right"] .about-hero__dots {
  justify-content: flex-end;
}
.about-hero[data-align-x="right"] .about-hero__headline,
.about-hero[data-align-x="right"] .about-hero__lead,
.about-hero[data-align-x="right"] .about-hero__marquee-caption {
  margin-left: auto;
}
.about-hero[data-align-y="top"] .about-hero__content {
  padding-top: 5.5rem;
  padding-bottom: 2rem;
}
.about-hero[data-align-y="center"] .about-hero__content {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@keyframes aboutFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.about-hero__org {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  opacity: 0.9;
  margin: 0 0 0.75rem;
  font-weight: 500;
}
.about-hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: 0.04em;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}
.about-hero__brand span {
  display: inline-block;
}
.about-hero__brand .dot {
  margin: 0 0.35rem;
  opacity: 0.7;
  font-weight: 400;
}
.about-hero__headline {
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 600;
  max-width: 34em;
  margin: 0 0 0.75rem;
  line-height: 1.45;
}
.about-hero__lead {
  max-width: 36em;
  margin: 0 0 1.75rem;
  opacity: 0.92;
  font-size: 1.05rem;
}
.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.about-hero__marquee-caption {
  margin-top: 1.5rem;
  max-width: 36em;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.about-hero__marquee-caption.is-swap {
  opacity: 0;
  transform: translateY(8px);
}
.about-hero__marquee-caption[data-style="imageFocus"] .about-hero__cap-title {
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  font-weight: 600;
  opacity: 0.92;
  margin: 0;
}
.about-hero__marquee-caption[data-style="imageFocus"] .about-hero__cap-text,
.about-hero__marquee-caption[data-style="imageFocus"] .about-hero__cap-cta {
  display: none;
}
.about-hero__marquee-caption[data-style="imageText"] .about-hero__cap-title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
  margin: 0 0 0.35rem;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}
.about-hero__marquee-caption[data-style="imageText"] .about-hero__cap-text {
  margin: 0;
  opacity: 0.92;
  font-size: 0.98rem;
  line-height: 1.5;
}
.about-hero__marquee-caption[data-style="splitCaption"] {
  margin-top: 1.75rem;
  padding: 0.85rem 1.1rem;
  background: rgba(6, 18, 34, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  max-width: 42em;
}
.about-hero__marquee-caption[data-style="splitCaption"] .about-hero__cap-title {
  font-weight: 700;
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}
.about-hero__marquee-caption[data-style="splitCaption"] .about-hero__cap-text {
  margin: 0;
  opacity: 0.9;
  font-size: 0.95rem;
}
.about-hero__cap-cta {
  display: inline-flex;
  margin-top: 0.65rem;
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.about-hero__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.15rem;
}
.about-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.about-hero__dot.is-active {
  background: #fff;
  width: 22px;
}
.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none !important;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.about-btn:hover { transform: translateY(-1px); }
.about-btn--primary {
  background: #fff;
  color: var(--about-ink) !important;
}
.about-btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
}

/* —— Sections —— */
.about-section {
  padding: 4.5rem 0;
}
.about-section--alt {
  background: #fff;
}
.about-section--mint {
  background: linear-gradient(180deg, #eef8f4 0%, #f4f8fc 100%);
}
.about-section__inner {
  width: min(100% - 2rem, var(--about-max));
  margin: 0 auto;
}
.about-kicker {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--about-mint);
  margin: 0 0 0.75rem;
}
.about-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  line-height: 1.3;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}
.about-lead {
  max-width: 40em;
  color: var(--about-ink-soft);
  margin: 0 0 2rem;
  font-size: 1.05rem;
}

/* Why */
.about-why-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .about-why-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}
.about-why-visual {
  min-height: 240px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(31, 111, 184, 0.9), rgba(31, 154, 120, 0.85)),
    url("/images/smart-healthcare-platform-tile.png") center/cover;
  position: relative;
  overflow: hidden;
}
.about-why-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(15, 39, 68, 0.25), rgba(15, 39, 68, 0.55));
}
.about-why-visual__caption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.4;
}

/* Vision */
.about-vision-list {
  display: grid;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: vision;
}
@media (min-width: 860px) {
  .about-vision-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.about-vision-list li {
  position: relative;
  padding-top: 0.5rem;
  border-top: 2px solid var(--about-mint);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.about-vision-list li.is-in {
  opacity: 1;
  transform: none;
}
.about-vision-list li:nth-child(2) { transition-delay: 0.08s; }
.about-vision-list li:nth-child(3) { transition-delay: 0.16s; }
.about-vision-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.about-vision-list p {
  margin: 0;
  color: var(--about-ink-soft);
}

/* Flow */
.about-flow {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}
@media (min-width: 860px) {
  .about-flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}
.about-flow__step {
  position: relative;
  padding: 1.5rem 1.35rem 1.35rem;
  background: #fff;
  border: 1px solid var(--about-line);
  border-radius: 18px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.about-flow__step.is-in {
  opacity: 1;
  transform: none;
}
.about-flow__step:nth-child(2) { transition-delay: 0.1s; }
.about-flow__step:nth-child(3) { transition-delay: 0.2s; }
.about-flow__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--about-mint-soft);
  color: var(--about-mint);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}
.about-flow__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 0 0.45rem;
}
.about-flow__text {
  margin: 0;
  color: var(--about-ink-soft);
  font-size: 0.98rem;
}
.about-flow-note {
  margin: 1.75rem 0 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--about-blue);
  background: rgba(31, 111, 184, 0.06);
  color: var(--about-ink-soft);
}

/* Equipment */
.about-equip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 700px) {
  .about-equip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.about-equip li {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1rem 0.9rem;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--about-line);
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.about-equip li.is-in {
  opacity: 1;
  transform: none;
}
.about-equip li:nth-child(2) { transition-delay: 0.04s; }
.about-equip li:nth-child(3) { transition-delay: 0.08s; }
.about-equip li:nth-child(4) { transition-delay: 0.12s; }
.about-equip li:nth-child(5) { transition-delay: 0.16s; }
.about-equip li:nth-child(6) { transition-delay: 0.2s; }
.about-equip li:nth-child(7) { transition-delay: 0.24s; }
.about-equip li:nth-child(8) { transition-delay: 0.28s; }
.about-equip__icon {
  width: 36px;
  height: 36px;
  color: var(--about-blue-deep);
}
.about-equip-aside {
  margin-top: 1.75rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .about-equip-aside {
    grid-template-columns: 1fr 1fr;
  }
}
.about-callout {
  padding: 1.25rem 1.35rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--about-line);
}
.about-callout h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  font-family: var(--font-display);
}
.about-callout p {
  margin: 0;
  color: var(--about-ink-soft);
  font-size: 0.98rem;
}

/* Platform */
.about-platform {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 860px) {
  .about-platform {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
}
.about-platform__panel {
  padding: 1.75rem;
  border-radius: 20px;
  background: linear-gradient(145deg, #123a63, #1a6a7a);
  color: #fff;
}
.about-platform__panel h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
}
.about-platform__panel p {
  margin: 0;
  opacity: 0.92;
}
.about-platform__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.about-platform__links a {
  color: #fff !important;
  text-decoration: none !important;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
}
.about-platform__links a:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Benefits */
.about-benefits {
  display: grid;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 800px) {
  .about-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about-benefits li {
  padding: 0 0 0 1.1rem;
  border-left: 3px solid var(--about-coral);
}
.about-benefits strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.about-benefits p {
  margin: 0;
  color: var(--about-ink-soft);
}

/* Results */
.about-results__status {
  color: var(--about-ink-soft);
  margin: 0;
}
.about-results-list {
  display: grid;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 860px) {
  .about-results-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.about-results-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--about-line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.about-results-card.is-in {
  opacity: 1;
  transform: none;
}
.about-results-card__media {
  aspect-ratio: 16 / 10;
  background: #d9e6f2;
  overflow: hidden;
}
.about-results-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-results-card__body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}
.about-results-card__date {
  font-size: 0.85rem;
  color: var(--about-mint);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.about-results-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.35;
}
.about-results-card__summary {
  margin: 0;
  color: var(--about-ink-soft);
  font-size: 0.98rem;
  flex: 1;
}
.about-results-card__open {
  align-self: flex-start;
  margin-top: 0.35rem;
  border: none;
  background: transparent;
  color: var(--about-blue-deep);
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  font-size: 0.95rem;
}
.about-results-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(8, 18, 32, 0.72);
  padding: 1.5rem;
  overflow: auto;
}
.about-results-lightbox.is-open { display: flex; align-items: center; justify-content: center; }
.about-results-lightbox__panel {
  width: min(920px, 100%);
  background: #fff;
  border-radius: 18px;
  padding: 1.25rem 1.35rem 1.5rem;
  max-height: min(90vh, 900px);
  overflow: auto;
}
.about-results-lightbox__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.about-results-lightbox__head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
}
.about-results-lightbox__close {
  border: 1px solid var(--about-line);
  background: #fff;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}
.about-results-lightbox__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
}
.about-results-lightbox__grid img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
}

/* Invite */
.about-invite {
  text-align: center;
  max-width: 40em;
  margin: 0 auto;
}
.about-invite p {
  font-size: 1.2rem;
  color: var(--about-ink-soft);
}
.about-invite__quote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  color: var(--about-ink);
  line-height: 1.45;
  margin: 0 0 1rem;
}

/* Contact */
.about-contact {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .about-contact {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .about-contact {
    grid-template-columns: repeat(4, 1fr);
  }
}
.about-contact a,
.about-contact div {
  display: block;
  padding: 1.35rem 1.25rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--about-line);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.about-contact a:hover {
  border-color: var(--about-blue);
  transform: translateY(-2px);
}
.about-contact__label {
  display: block;
  font-size: 0.85rem;
  color: var(--about-ink-soft);
  margin-bottom: 0.35rem;
}
.about-contact__value {
  font-weight: 700;
  font-size: 1.1rem;
  word-break: break-all;
}

/* Footer */
.about-footer {
  padding: 2.5rem 0 2rem;
  background: var(--about-ink);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}
.about-footer__inner {
  width: min(100% - 2rem, var(--about-max));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: flex-start;
}
.about-footer strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.about-footer a {
  color: rgba(255, 255, 255, 0.88);
}
.about-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .about-hero__fallback { animation: none; }
  .about-hero.has-marquee:not(.is-paused) .about-hero__slide.is-active .about-hero__slide-img { animation: none; }
  .about-hero__slide { transition: none; }
  .about-hero__content,
  .about-vision-list li,
  .about-flow__step,
  .about-equip li {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}
