:root {
  color-scheme: light;
  --bg: #f7fbff;
  --bg-soft: #eef5fb;
  --bg-accent: #e7f2fb;
  --surface: #ffffff;
  --surface-alt: #f4f9fd;
  --surface-strong: #ebf3fb;
  --text: #10253c;
  --text-strong: #08182c;
  --text-muted: #62748a;
  --line: #dce7f1;
  --line-strong: #c4d7ea;
  --brand: #1570d8;
  --brand-strong: #0b5bb8;
  --brand-soft: #3bb8f2;
  --accent: #27c1b8;
  --shadow-soft: 0 24px 60px rgba(16, 37, 60, 0.06);
  --shadow-card: 0 20px 44px rgba(21, 63, 104, 0.08);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Noto Sans SC", sans-serif;
  color: var(--text);
  line-height: 1.68;
  background:
    radial-gradient(circle at top left, rgba(21, 112, 216, 0.08), transparent 24%),
    radial-gradient(circle at 82% 10%, rgba(59, 184, 242, 0.08), transparent 20%),
    linear-gradient(180deg, #fbfdff 0%, #f6fbff 42%, #ffffff 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page-aura {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(39, 193, 184, 0.06), transparent 16%),
    radial-gradient(circle at 82% 22%, rgba(21, 112, 216, 0.08), transparent 18%),
    radial-gradient(circle at 70% 78%, rgba(59, 184, 242, 0.06), transparent 20%);
  z-index: -2;
}

.site-header,
.section,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0.85rem auto 0;
  padding: 0.95rem 1.15rem;
  border: 1px solid rgba(196, 215, 234, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 40px rgba(16, 37, 60, 0.06);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(184, 204, 225, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #edf4fb);
  box-shadow: inset 0 0 0 1px rgba(196, 215, 234, 0.95);
  flex-shrink: 0;
}

.brand-copy {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.brand-copy strong {
  font-family: "Sora", "Noto Sans SC", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-strong);
}

.brand-copy small {
  color: var(--text-muted);
  font-size: 0.72rem;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text-strong);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  align-items: center;
  justify-content: center;
  gap: 0.24rem;
  padding: 0;
  flex-direction: column;
}

.nav-toggle span {
  width: 1.05rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.section {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: clamp(4.75rem, 8vw, 6.8rem) 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  z-index: -1;
}

.section-light::before {
  background: transparent;
}

.section-dark::before {
  background: linear-gradient(180deg, rgba(242, 248, 253, 0.92), rgba(235, 243, 250, 0.94));
  border: 1px solid rgba(220, 231, 241, 0.96);
  box-shadow: var(--shadow-soft);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 6vw, 4.25rem);
  align-items: center;
  padding-top: clamp(7rem, 12vw, 9rem);
  min-height: min(100vh, 56rem);
}

.hero::before {
  background:
    radial-gradient(circle at top left, rgba(21, 112, 216, 0.08), transparent 24%),
    radial-gradient(circle at 88% 24%, rgba(59, 184, 242, 0.1), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f2f8fd 100%);
  border: 1px solid rgba(220, 231, 241, 0.92);
  box-shadow: var(--shadow-soft);
}

.eyebrow,
.card-label,
.context-kicker,
.program-tag,
.stat-label {
  margin: 0;
  font-family: "Sora", "Noto Sans SC", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
}

.eyebrow,
.card-label,
.context-kicker,
.program-tag {
  color: var(--brand);
}

.hero h1,
.section-intro h2,
.closing-copy h2 {
  margin: 0;
  font-family: "Sora", "Noto Sans SC", sans-serif;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--text-strong);
}

.hero h1 {
  font-size: clamp(3rem, 6.8vw, 5.4rem);
  max-width: 11ch;
}

.lead,
.section-intro p,
.context-card p,
.problem-card p,
.program-note,
.collaboration-card p,
.closing-copy p,
.footer-note,
.bio-brief,
.bio-detail p,
.team-overview-note {
  font-size: 1rem;
}

.hero-copy .lead {
  max-width: 58ch;
  margin: 1.35rem 0 0;
  color: var(--text-muted);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.8rem 0 0;
}

.hero-tags span {
  padding: 0.72rem 1rem;
  border: 1px solid rgba(196, 215, 234, 0.96);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 0.92rem;
}

.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-soft));
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(21, 112, 216, 0.18);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.mini-stat {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.mini-stat strong {
  display: inline-block;
  font-family: "Sora", "Noto Sans SC", sans-serif;
  font-size: 0.98rem;
  color: var(--text-strong);
}

.mini-stat p {
  margin: 0.65rem 0 0;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.hero-visual {
  position: relative;
  min-height: 38rem;
  isolation: isolate;
}

.visual-grid,
.signal-ring {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.visual-grid {
  border-radius: var(--radius-xl);
  background:
    linear-gradient(rgba(21, 112, 216, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 112, 216, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 86%);
}

.signal-ring {
  border-radius: 50%;
  border: 1px solid rgba(21, 112, 216, 0.12);
}

.signal-ring-large {
  width: 29rem;
  height: 29rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  box-shadow: 0 0 60px rgba(59, 184, 242, 0.08);
}

.signal-ring-small {
  width: 17rem;
  height: 17rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
}

.card,
.card-light,
.quote-card,
.principles-card,
.pipeline-shell,
.collaboration-card,
.closing-panel,
.bio-group {
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.hero-console {
  position: absolute;
  top: 10%;
  left: 0;
  width: min(24rem, 74%);
  padding: 1.55rem;
}

.hero-console h2 {
  margin: 0.35rem 0 0.7rem;
  font-size: 1.68rem;
  font-family: "Sora", "Noto Sans SC", sans-serif;
  color: var(--text-strong);
}

.hero-console p {
  margin: 0;
  color: var(--text-muted);
}

.hero-logo {
  position: absolute;
  top: 19%;
  right: 9%;
  width: min(20rem, 56%);
  padding: 1rem;
  background:
    radial-gradient(circle at top left, rgba(59, 184, 242, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff, #eef5fb);
}

.hero-logo img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 10px);
}

.floating-card {
  position: absolute;
  padding: 1.2rem 1.3rem;
}

.floating-card strong {
  display: block;
  margin: 0.35rem 0 0.45rem;
  font-size: 1.16rem;
  font-family: "Sora", "Noto Sans SC", sans-serif;
  color: var(--text-strong);
}

.floating-card span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.floating-card-top {
  right: 4%;
  bottom: 20%;
  width: min(18rem, 56%);
}

.floating-card-bottom {
  left: 8%;
  bottom: 8%;
  width: min(20rem, 60%);
}

.section-intro {
  max-width: 56rem;
  margin-bottom: 2.5rem;
}

.section-intro h2 {
  font-size: clamp(2.05rem, 4.8vw, 3.5rem);
}

.section-intro p {
  margin: 1rem 0 0;
  color: var(--text-muted);
}

.stats-grid,
.context-grid,
.problem-grid,
.pipeline-grid {
  display: grid;
  gap: 1.2rem;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.context-grid,
.pipeline-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.problem-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card,
.context-card,
.problem-card,
.program-card {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.stat-label {
  color: #587792;
  letter-spacing: 0.06em;
}

.stat-number {
  display: block;
  margin-top: 0.8rem;
  font-family: "Sora", "Noto Sans SC", sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.45rem);
  line-height: 1.05;
  color: var(--text-strong);
}

.stat-card p:last-child {
  margin: 0.85rem 0 0;
  color: var(--text-muted);
}

.context-card h3,
.quote-card h3,
.collaboration-card h3,
.closing-copy h2,
.team-overview-copy h3,
.bio-group-header h3,
.bio-summary-main h4 {
  margin: 0.45rem 0 0.8rem;
  font-family: "Sora", "Noto Sans SC", sans-serif;
  line-height: 1.14;
  color: var(--text-strong);
}

.context-card-accent {
  padding: 1.3rem 1.35rem 1.35rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 248, 255, 0.96));
  border: 1px solid rgba(220, 231, 241, 0.96);
}

.problem-card h3 {
  margin: 1rem 0 0.7rem;
  font-family: "Sora", "Noto Sans SC", sans-serif;
  font-size: 1.28rem;
  color: var(--text-strong);
}

.problem-card p {
  margin: 0;
  color: var(--text-muted);
}

.problem-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  min-height: 3rem;
  border-radius: 999px;
  font-family: "Sora", "Noto Sans SC", sans-serif;
  font-weight: 700;
  color: var(--brand);
  background: rgba(21, 112, 216, 0.08);
}

.approach-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.85fr);
  gap: 2rem;
  align-items: start;
}

.approach-steps {
  display: grid;
  gap: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.approach-step {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
}

.approach-step:first-child {
  border-top: 0;
  padding-top: 0;
}

.approach-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(21, 112, 216, 0.08), rgba(39, 193, 184, 0.08));
  color: var(--brand-strong);
  font-family: "Sora", "Noto Sans SC", sans-serif;
  font-weight: 700;
}

.approach-step h3 {
  margin: 0 0 0.35rem;
  font-size: 1.07rem;
  color: var(--text-strong);
}

.approach-step p,
.quote-card p,
.principles-card li {
  margin: 0;
  color: var(--text-muted);
}

.approach-sidebar {
  display: grid;
  gap: 1.15rem;
}

.quote-card,
.principles-card {
  padding: 1.6rem;
}

.principles-list {
  margin: 0.8rem 0 0;
  padding-left: 1.15rem;
}

.principles-list li + li {
  margin-top: 0.65rem;
}

.pipeline-shell {
  padding: 1.5rem;
}

.timeline-head {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-family: "Sora", "Noto Sans SC", sans-serif;
  font-size: 0.9rem;
}

.program-card {
  padding-top: 0.2rem;
}

.program-head {
  display: grid;
  gap: 0.45rem;
}

.program-head strong {
  font-family: "Sora", "Noto Sans SC", sans-serif;
  font-size: 1.08rem;
  color: var(--text-strong);
}

.program-focus,
.program-note {
  margin: 0.7rem 0 0;
  color: var(--text-muted);
}

.program-track {
  position: relative;
  height: 0.65rem;
  margin-top: 0.95rem;
  border-radius: 999px;
  background: #e8f0f7;
  overflow: hidden;
}

.program-track::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 66%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--brand-soft));
}

.program-track-2::after {
  width: 62%;
}

.program-track-3::after {
  width: 82%;
}

.program-track-4::after {
  width: 58%;
}

.collaboration-card {
  margin-top: 1.6rem;
  padding: 1.6rem;
  background:
    radial-gradient(circle at top right, rgba(21, 112, 216, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff, #f3f8fd);
}

.team-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.9fr);
  gap: 1.4rem;
  align-items: end;
  padding: 0 0 1.3rem;
  border-bottom: 1px solid var(--line);
}

.team-overview-note {
  margin: 0;
  color: var(--text-muted);
}

.bio-groups {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.bio-group {
  padding: 1.45rem 1.45rem 0;
}

.bio-group-header {
  max-width: 46rem;
  margin-bottom: 0.7rem;
}

.bio-group-header p:last-child {
  margin: 0;
  color: var(--text-muted);
}

.bio-item {
  border-top: 1px solid var(--line);
}

.bio-item:first-of-type {
  border-top: 0;
}

.bio-item[open] {
  padding-bottom: 1.25rem;
}

.bio-summary {
  display: grid;
  grid-template-columns: 6.5rem minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  list-style: none;
  padding: 1.1rem 0;
  cursor: pointer;
}

.bio-summary::-webkit-details-marker {
  display: none;
}

.bio-summary img {
  width: 6.5rem;
  height: 6.5rem;
  object-fit: cover;
  border-radius: 24px;
  background: linear-gradient(180deg, #f1f6fc, #dfeaf6);
}

.bio-summary-main h4 {
  margin-bottom: 0.45rem;
  font-size: 1.2rem;
}

.bio-brief {
  margin: 0;
  color: var(--text-muted);
}

.bio-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.9rem;
  min-height: 2.6rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface-alt);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-strong);
}

.bio-toggle-close {
  display: none;
}

.bio-item[open] .bio-toggle-open {
  display: none;
}

.bio-item[open] .bio-toggle-close {
  display: inline;
}

.bio-detail {
  margin: 0 0 0 7.5rem;
  padding: 0 0 0.2rem;
  max-width: 68rem;
}

.bio-detail p {
  margin: 0;
  color: var(--text-muted);
}

.bio-detail p + p {
  margin-top: 0.9rem;
}

.closing::before {
  background:
    radial-gradient(circle at 12% 20%, rgba(21, 112, 216, 0.08), transparent 22%),
    linear-gradient(180deg, #f3f8fd 0%, #edf5fc 100%);
  border: 1px solid rgba(220, 231, 241, 0.96);
}

.closing-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.8rem, 4vw, 2.7rem);
}

.closing-copy p {
  margin: 1rem 0 0;
  color: var(--text-muted);
  max-width: 46rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto 2rem;
  padding: 1.4rem 0 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  width: 4.1rem;
  height: 4.1rem;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px var(--line);
}

.footer-brand strong {
  display: block;
  font-family: "Sora", "Noto Sans SC", sans-serif;
  color: var(--text-strong);
}

.footer-brand p,
.footer-note {
  margin: 0.25rem 0 0;
  color: var(--text-muted);
}

.footer-note a {
  color: var(--brand);
  font-weight: 600;
}

.footer-note a:hover,
.footer-note a:focus-visible {
  color: var(--brand-strong);
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible {
  animation: fade-up 700ms ease both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo {
  animation: float-card 7s ease-in-out infinite;
}

.signal-ring-large {
  animation: pulse-ring 9s ease-in-out infinite;
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-ring {
  0%,
  100% {
    opacity: 0.7;
    transform: translate(-50%, -52%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -52%) scale(1.03);
  }
}

@media (max-width: 1100px) {
  .hero,
  .approach-layout,
  .stats-grid,
  .context-grid,
  .problem-grid,
  .pipeline-grid,
  .team-overview,
  .closing-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 32rem;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .site-header {
    border-radius: 24px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.7rem);
    right: 0;
    left: 0;
    display: grid;
    gap: 0.25rem;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .site-nav a {
    padding: 0.8rem 0.9rem;
    border-radius: 16px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--surface-alt);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .brand-copy small {
    display: none;
  }

  .bio-summary {
    grid-template-columns: 5.4rem minmax(0, 1fr);
    align-items: start;
  }

  .bio-toggle {
    grid-column: 2;
    justify-self: start;
    margin-top: 0.25rem;
  }

  .bio-summary img {
    width: 5.4rem;
    height: 5.4rem;
    border-radius: 20px;
  }

  .bio-detail {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .section,
  .site-footer {
    width: min(calc(100% - 1rem), var(--max-width));
  }

  .site-header {
    width: min(calc(100% - 1rem), var(--max-width));
    margin-top: 0.5rem;
    padding: 0.75rem 0.85rem;
  }

  .hero {
    padding-top: 6.4rem;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-console,
  .hero-logo,
  .floating-card-top,
  .floating-card-bottom {
    position: relative;
    inset: auto;
    width: auto;
  }

  .hero-visual {
    display: grid;
    gap: 1rem;
    min-height: auto;
  }

  .visual-grid,
  .signal-ring-large,
  .signal-ring-small {
    display: none;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .closing-actions {
    display: grid;
  }

  .section-intro h2 {
    font-size: 2rem;
  }

  .bio-group {
    padding: 1.2rem 1rem 0;
  }

  .bio-summary {
    grid-template-columns: 1fr;
  }

  .bio-summary img {
    width: 5.8rem;
    height: 5.8rem;
  }

  .bio-toggle {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    animation: none !important;
  }
}
