:root {
  color-scheme: light;
  --bg: #f5f7f2;
  --bg-alt: #e9f0ed;
  --text: #17201d;
  --muted: #5e6b66;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.78);
  --line: rgba(23, 32, 29, 0.13);
  --shadow: 0 18px 50px rgba(22, 38, 34, 0.14);
  --teal: #15847e;
  --coral: #d95245;
  --amber: #d58b23;
  --blue: #3379a9;
  --green: #4f8b4d;
  --ink: #1b252b;
  --radius: 8px;
  --header-height: 72px;
  --font-body: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  --font-display: "Noto Serif TC", "Noto Sans TC", "PingFang TC", serif;
  --font-latin: "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif;
  --scroll-top-bg: rgba(27, 37, 43, 0.5);
  --scroll-top-border: rgba(27, 37, 43, 0.24);
  --scroll-top-color: rgba(255, 255, 255, 0.3);
  --scroll-top-hover-bg: rgba(21, 132, 126, 0.58);
  --scroll-top-hover-border: rgba(21, 132, 126, 0.5);
  --scroll-top-hover-color: #ffffff;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #111512;
  --bg-alt: #18201c;
  --text: #eef4ef;
  --muted: #aebbb4;
  --surface: #1a211d;
  --surface-soft: rgba(26, 33, 29, 0.78);
  --line: rgba(238, 244, 239, 0.16);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  --teal: #47c6bb;
  --coral: #ff7a6e;
  --amber: #e9ad47;
  --blue: #73afe0;
  --green: #86c879;
  --ink: #eef4ef;
  --scroll-top-bg: rgba(255, 255, 255, 0.5);
  --scroll-top-border: rgba(255, 255, 255, 0.24);
  --scroll-top-color: rgba(17, 21, 18, 0.5);
  --scroll-top-hover-bg: rgba(71, 198, 187, 0.5);
  --scroll-top-hover-border: rgba(71, 198, 187, 0.56);
  --scroll-top-hover-color: #08100e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
}

body::selection {
  background: rgba(21, 132, 126, 0.25);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(13, 17, 16, 0.58);
  color: #ffffff;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-family: var(--font-latin);
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.88rem;
}

.brand-name {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2.4vw, 28px);
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 900;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: #ffffff;
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #ffffff;
}

.site-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.icon-button:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.icon-button svg,
.button svg,
.interest-card svg,
.now-icon svg,
.project-topline svg,
.quote-panel svg,
.site-footer svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 84svh;
  overflow: hidden;
  padding: calc(var(--header-height) + 56px) clamp(20px, 7vw, 96px) 72px;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: 62% center;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10, 15, 15, 0.92) 0%, rgba(10, 15, 15, 0.7) 42%, rgba(10, 15, 15, 0.16) 100%),
    linear-gradient(0deg, rgba(10, 15, 15, 0.38), rgba(10, 15, 15, 0.06));
}

.hero-content {
  width: min(720px, 100%);
  min-width: 0;
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--teal);
  font-family: var(--font-latin);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #84e8df;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-family: var(--font-latin);
  font-size: clamp(4.6rem, 12vw, 9.4rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-line {
  margin: 24px 0 0;
  max-width: min(680px, 100%);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 2.7rem);
  font-weight: 900;
  line-height: 1.2;
  text-wrap: balance;
}

.hero-copy {
  max-width: min(600px, 100%);
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 10px;
  border-radius: var(--radius);
  padding: 12px 17px;
  font-family: var(--font-display);
  font-weight: 900;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: #ffffff;
  color: #18201c;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(620px, 100%);
  gap: 10px;
  margin: 36px 0 0;
}

.hero-meta div {
  min-width: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  padding-top: 14px;
}

.hero-meta dt {
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-latin);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-meta dd {
  margin: 2px 0 0;
  color: #ffffff;
  font-family: var(--font-latin);
  font-weight: 800;
}

.section {
  scroll-margin-top: calc(var(--header-height) + 18px);
  padding: clamp(72px, 9vw, 120px) clamp(20px, 7vw, 96px);
}

.about-section,
.interests-section,
.now-section {
  background: var(--bg);
}

.profile-section,
.projects-section {
  background: var(--bg-alt);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.closing-section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.lead {
  margin: 0;
  max-width: 860px;
  color: var(--muted);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.75;
}

.quote-panel {
  display: grid;
  gap: 18px;
  border-left: 4px solid var(--coral);
  padding: 4px 0 4px 24px;
}

.quote-panel svg {
  color: var(--coral);
}

.quote-panel p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 900;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 16px;
  align-items: stretch;
}

.profile-card,
.profile-stats article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

:root[data-theme="dark"] .profile-card,
:root[data-theme="dark"] .profile-stats article {
  border-color: rgba(238, 244, 239, 0.22);
  background: #202923;
}

.profile-intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(24px, 4vw, 34px);
  border-top: 5px solid var(--teal);
}

.profile-head {
  display: grid;
  grid-template-columns: minmax(112px, 150px) minmax(0, 1fr);
  gap: 20px;
  align-items: end;
}

.profile-photo-shell {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  padding: 4px;
  background: linear-gradient(135deg, var(--teal), var(--amber));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.profile-photo-shell::after {
  position: absolute;
  right: -8px;
  bottom: 18px;
  width: 34px;
  height: 5px;
  border-radius: 999px;
  background: var(--amber);
  content: "";
}

.profile-photo {
  width: 100%;
  height: 100%;
  border-radius: calc(var(--radius) - 2px);
  object-fit: cover;
  object-position: center top;
}

.profile-title-stack {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.profile-label {
  margin: 0;
  color: var(--teal);
  font-family: var(--font-latin);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-intro h3 {
  margin: 0;
  font-family: var(--font-latin);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 700;
  line-height: 0.98;
}

.profile-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.profile-facts,
.skills-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-facts {
  margin-top: auto;
}

.profile-facts span,
.skills-cloud span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  color: var(--muted);
  font-family: var(--font-latin);
  font-size: 0.82rem;
  font-weight: 800;
}

:root[data-theme="dark"] .profile-facts span,
:root[data-theme="dark"] .skills-cloud span {
  border-color: rgba(238, 244, 239, 0.2);
  background: rgba(255, 255, 255, 0.07);
  color: #d8e4de;
}

.profile-facts span {
  padding: 7px 10px;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.profile-stats article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 166px;
  padding: 22px;
  transition: transform 180ms ease;
}

.profile-stats article:hover {
  transform: translateY(-3px);
}

.profile-stats strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
}

.profile-stats span {
  color: var(--muted);
}

.skills-cloud {
  margin-top: 18px;
}

.skills-cloud span {
  padding: 8px 11px;
}

.architecture-panel {
  position: relative;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 26px);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--teal) 9%, transparent), transparent 42%),
    var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

:root[data-theme="dark"] .architecture-panel {
  border-color: rgba(238, 244, 239, 0.22);
  background:
    linear-gradient(135deg, rgba(71, 198, 187, 0.12), transparent 42%),
    #202923;
}

.architecture-panel::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(21, 132, 126, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 132, 126, 0.12) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  opacity: 0.36;
  pointer-events: none;
}

.architecture-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.architecture-flow::before {
  position: absolute;
  top: 42px;
  right: 9%;
  left: 9%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--coral));
  content: "";
  opacity: 0.68;
}

.architecture-node {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 228px;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--surface-soft);
  backdrop-filter: blur(8px);
}

:root[data-theme="dark"] .architecture-node {
  border-color: rgba(238, 244, 239, 0.2);
  background: rgba(255, 255, 255, 0.055);
}

.architecture-node svg {
  width: 34px;
  height: 34px;
  color: var(--teal);
  stroke-width: 1.8;
}

.architecture-node h3 {
  margin: 0;
  font-family: var(--font-latin);
  font-size: 1.14rem;
  line-height: 1.1;
}

.architecture-node p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.node-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #ffffff;
  font-family: var(--font-latin);
  font-size: 0.75rem;
  font-weight: 900;
}

:root[data-theme="dark"] .node-index {
  background: rgba(255, 255, 255, 0.14);
}

.milestone-rail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.milestone-rail div {
  min-width: 0;
}

.milestone-rail span {
  display: block;
  color: var(--teal);
  font-family: var(--font-latin);
  font-size: 0.78rem;
  font-weight: 900;
}

.milestone-rail strong {
  display: block;
  margin-top: 3px;
  color: var(--text);
  font-family: var(--font-latin);
  font-size: 0.88rem;
  line-height: 1.22;
}

.milestone-current {
  grid-column: span 2;
  border: 1px solid color-mix(in srgb, var(--teal) 42%, var(--line));
  border-radius: var(--radius);
  padding: 10px 12px;
  background: color-mix(in srgb, var(--teal) 10%, transparent);
}

:root[data-theme="dark"] .milestone-current {
  background: rgba(71, 198, 187, 0.1);
}

.interest-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.interest-card,
.project-card {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.interest-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.interest-card:hover,
.project-card:hover {
  transform: translateY(-4px);
}

.interest-card svg {
  width: 34px;
  height: 34px;
}

.interest-card h3,
.now-item h3,
.project-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.26rem;
  font-weight: 900;
  line-height: 1.25;
}

.interest-card p,
.now-item p,
.project-card p,
.closing-section p {
  margin: 0;
  color: var(--muted);
}

.accent-teal {
  border-top: 5px solid var(--teal);
}

.accent-coral {
  border-top: 5px solid var(--coral);
}

.accent-amber {
  border-top: 5px solid var(--amber);
}

.accent-blue {
  border-top: 5px solid var(--blue);
}

.accent-green {
  border-top: 5px solid var(--green);
}

.accent-ink {
  border-top: 5px solid var(--ink);
}

.accent-teal svg {
  color: var(--teal);
}

.accent-coral svg {
  color: var(--coral);
}

.accent-amber svg {
  color: var(--amber);
}

.accent-blue svg {
  color: var(--blue);
}

.accent-green svg {
  color: var(--green);
}

.accent-ink svg {
  color: var(--ink);
}

.now-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
}

.now-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.now-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--teal) 16%, transparent);
  color: var(--teal);
}

.project-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  transition: transform 180ms ease;
}

.project-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--teal);
  font-family: var(--font-latin);
  font-size: 0.86rem;
  font-weight: 900;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.tags span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 5px 9px;
  background: var(--surface-soft);
  color: var(--muted);
  font-family: var(--font-latin);
  font-size: 0.8rem;
  font-weight: 800;
}

.closing-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
  gap: clamp(24px, 6vw, 96px);
  align-items: end;
  padding: clamp(72px, 9vw, 116px) clamp(20px, 7vw, 96px);
  background: var(--ink);
  color: #ffffff;
}

:root[data-theme="dark"] .closing-section {
  background: #0a0d0b;
}

.closing-section .section-kicker {
  color: #84e8df;
}

.closing-section p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px clamp(20px, 7vw, 96px);
  background: #080b0a;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer p {
  margin: 0;
}

.scroll-top {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 30;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--scroll-top-border);
  border-radius: var(--radius);
  background: var(--scroll-top-bg);
  color: var(--scroll-top-color);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  border-color: var(--scroll-top-hover-border);
  background: var(--scroll-top-hover-bg);
  color: var(--scroll-top-hover-color);
  transform: translateY(-2px);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

@media (max-width: 920px) {
  .site-nav {
    display: none;
  }

  .hero {
    min-height: 82svh;
    padding-top: calc(var(--header-height) + 42px);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(10, 15, 15, 0.92) 0%, rgba(10, 15, 15, 0.62) 100%),
      linear-gradient(0deg, rgba(10, 15, 15, 0.35), rgba(10, 15, 15, 0.08));
  }

  .about-layout,
  .profile-layout,
  .closing-section {
    grid-template-columns: 1fr;
  }

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

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

  .architecture-flow::before {
    display: none;
  }

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

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

@media (max-width: 640px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand-name {
    max-width: 42vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: 80svh;
    padding-inline: 18px;
    padding-bottom: 52px;
  }

  .hero-image {
    object-position: 70% center;
  }

  h1 {
    font-size: clamp(3.6rem, 20vw, 5rem);
  }

  .hero-line {
    font-size: 1.45rem;
  }

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

  .button {
    width: 100%;
  }

  .section {
    padding-inline: 18px;
  }

  .interest-grid,
  .profile-stats,
  .architecture-flow,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .architecture-node {
    min-height: auto;
  }

  .profile-head {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
  }

  .profile-intro h3 {
    font-size: clamp(1.62rem, 8vw, 2rem);
  }

  .milestone-rail {
    grid-template-columns: 1fr;
  }

  .milestone-current {
    grid-column: auto;
  }

  .interest-card,
  .project-card {
    min-height: auto;
  }

  .now-item {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
  }

  .now-icon {
    width: 44px;
    height: 44px;
  }

  .closing-section {
    padding-inline: 18px;
  }

  .scroll-top {
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
