:root {
  --bg: #f7fbff;
  --ink: #0b1d3a;
  --muted: #6f86a2;
  --blue: #07a8ff;
  --blue-2: #1c5fd3;
  --deep: #07142d;
  --line: rgba(17, 72, 126, 0.16);
  --glass: rgba(255, 255, 255, 0.58);
  --shadow: 0 28px 80px rgba(16, 74, 145, 0.14);
  --radius: 30px;
  --serif-cn: "STZhongsong", "华文中宋", "Songti SC", "SimSun", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: "Avenir Next", "Trebuchet MS", "Noto Sans SC", sans-serif;
  letter-spacing: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(16, 171, 255, 0.22), transparent 30%),
    radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.92), transparent 28%),
    linear-gradient(180deg, #0aa9ff 0%, #dff5ff 37%, #f7fbff 68%);
}

body::before {
  position: fixed;
  inset: -10%;
  z-index: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), transparent 70%);
}

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

.progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 50;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), var(--blue), rgba(255, 255, 255, 0.55));
  box-shadow: 0 0 24px rgba(9, 166, 255, 0.65);
}

.cursor-glow {
  position: fixed;
  z-index: 3;
  width: 280px;
  height: 280px;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0.75;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.52), rgba(30, 168, 255, 0.16) 38%, transparent 68%);
  filter: blur(3px);
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
}

.clouds {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.cloud {
  position: absolute;
  width: 48vw;
  max-width: 760px;
  aspect-ratio: 2.4 / 1;
  opacity: 0.65;
  background:
    radial-gradient(ellipse at 18% 62%, rgba(255, 255, 255, 0.78) 0 26%, transparent 27%),
    radial-gradient(ellipse at 36% 42%, rgba(255, 255, 255, 0.92) 0 32%, transparent 33%),
    radial-gradient(ellipse at 56% 55%, rgba(255, 255, 255, 0.86) 0 34%, transparent 35%),
    radial-gradient(ellipse at 78% 60%, rgba(255, 255, 255, 0.76) 0 25%, transparent 26%);
  filter: blur(18px);
  animation: float-cloud 34s ease-in-out infinite alternate;
}

.cloud.one {
  top: 10vh;
  left: 34vw;
  transform: scale(1.25);
}

.cloud.two {
  top: 44vh;
  left: -10vw;
  opacity: 0.46;
  transform: scale(0.9);
  animation-duration: 42s;
}

.cloud.three {
  top: 64vh;
  right: -14vw;
  opacity: 0.38;
  transform: scale(0.72);
  animation-duration: 38s;
}

@keyframes float-cloud {
  from {
    translate: -2vw 0;
  }

  to {
    translate: 4vw -2vh;
  }
}

.page {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 42px));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0 18px;
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  color: rgba(8, 30, 61, 0.78);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-mark {
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 12px 28px rgba(3, 90, 161, 0.15);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

nav {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 48px rgba(9, 67, 130, 0.08);
}

nav a {
  min-height: 38px;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(10, 29, 58, 0.78);
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

nav a:hover {
  color: var(--deep);
  background: rgba(255, 255, 255, 0.62);
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: min(8vw, 84px);
  align-items: center;
  min-height: 78vh;
  padding: 48px 0 96px;
}

.hero-copy {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 52px;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.76);
}

h1 {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 8vw, 118px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.86;
  text-shadow: 0 22px 65px rgba(5, 65, 132, 0.28);
}

.intro-panel {
  max-width: 560px;
  margin-top: 34px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.18));
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.intro-head {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  align-items: center;
}

.avatar {
  position: relative;
  width: 180px;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 24px 70px rgba(0, 102, 185, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.profile-name {
  margin: 0 0 8px;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.72rem;
  line-height: 1.05;
}

.profile-role {
  max-width: 34ch;
  margin: 0;
  color: rgba(8, 30, 61, 0.64);
  font-size: 0.94rem;
  line-height: 1.65;
}

.line {
  height: 12px;
  margin: 11px 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.line.short {
  width: 48%;
}

.line.mid {
  width: 74%;
}

.line.long {
  width: 92%;
}

.line.blue {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(15, 152, 241, 0.28));
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.mini {
  min-height: 112px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.26);
}

.mini span {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
}

.mini strong {
  display: block;
  margin-bottom: 5px;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.mini p {
  margin: 0;
  color: rgba(8, 30, 61, 0.6);
  font-size: 0.78rem;
  line-height: 1.45;
}

.visual {
  position: relative;
  display: grid;
  min-height: 640px;
  place-items: center;
}

.tower {
  position: absolute;
  right: 8%;
  bottom: 0;
  width: min(360px, 70vw);
  height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 34px 34px 18px 18px;
  background:
    linear-gradient(90deg, transparent 34%, rgba(6, 23, 54, 0.82) 35% 48%, transparent 49%),
    linear-gradient(90deg, transparent 58%, rgba(6, 23, 54, 0.74) 59% 72%, transparent 73%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.48) 0 8px, rgba(25, 125, 213, 0.48) 8px 18px, transparent 18px 32px),
    linear-gradient(170deg, rgba(255, 255, 255, 0.56), rgba(18, 145, 238, 0.38) 44%, rgba(8, 23, 54, 0.28));
  box-shadow: 0 50px 90px rgba(3, 44, 88, 0.24);
  clip-path: polygon(10% 7%, 92% 0, 100% 90%, 88% 100%, 4% 98%, 0 18%);
}

.tower::before {
  position: absolute;
  top: 10%;
  left: -12%;
  width: 124%;
  height: 42px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(221, 240, 255, 0.52), rgba(13, 80, 163, 0.18));
  box-shadow: 0 16px 28px rgba(3, 42, 85, 0.12);
  transform: rotate(-4deg);
}

.tower::after {
  position: absolute;
  inset: 22% 18% auto;
  height: 62%;
  content: "";
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  border-left: 1px solid rgba(255, 255, 255, 0.46);
  opacity: 0.72;
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.16) 0 2px, transparent 2px 28px);
}

.orb {
  position: absolute;
  top: 18%;
  left: 8%;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 27%, rgba(255, 255, 255, 0.8), rgba(53, 183, 255, 0.12) 45%, transparent 68%);
  filter: blur(0.2px);
  animation: orb 10s ease-in-out infinite alternate;
}

@keyframes orb {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(18px, -24px, 0) scale(1.04);
  }
}

.caption {
  position: absolute;
  bottom: 90px;
  left: 2%;
  width: 280px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 22px 70px rgba(5, 64, 132, 0.12);
  backdrop-filter: blur(22px);
}

section {
  padding: 96px 0;
}

.section-title {
  display: flex;
  gap: 22px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 28px;
}

h2 {
  margin: 0;
  color: rgba(7, 20, 45, 0.88);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 400;
  letter-spacing: 0;
}

.section-title p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
}

.large-panel,
.statement {
  min-height: 360px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.large-panel {
  background: rgba(255, 255, 255, 0.56);
}

.statement {
  border-color: rgba(255, 255, 255, 0.62);
  background:
    radial-gradient(circle at 76% 22%, rgba(5, 168, 255, 0.24), transparent 34%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.78), rgba(234, 247, 255, 0.52));
}

.kicker,
.card-label {
  margin: 0 0 18px;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.panel-copy {
  max-width: 28ch;
  margin: 0;
  color: rgba(7, 20, 45, 0.72);
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(1.45rem, 2.4vw, 2.3rem);
  line-height: 1.45;
}

.statement-text {
  max-width: 12ch;
  margin: 0 0 54px;
  color: rgba(7, 20, 45, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.5vw, 4.9rem);
  line-height: 0.98;
}

.statement .line {
  height: 14px;
  background: rgba(5, 60, 118, 0.1);
}

.blog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

.card {
  position: relative;
  min-height: 174px;
  overflow: hidden;
  padding: 28px 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(47, 178, 255, 0.2), transparent 34%),
    rgba(255, 255, 255, 0.58);
  box-shadow: 0 24px 90px rgba(7, 65, 126, 0.08);
  backdrop-filter: blur(24px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.card:hover {
  border-color: rgba(31, 140, 232, 0.32);
  box-shadow: 0 42px 110px rgba(7, 65, 126, 0.16);
  transform: translateX(10px);
}

.card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), transparent 42%);
  opacity: 0.65;
}

.card-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 170px minmax(0, 0.72fr) minmax(220px, 1fr);
  gap: 26px;
  align-items: center;
}

.card h3 {
  max-width: 12ch;
  margin: 0;
  color: rgba(7, 20, 45, 0.88);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
}

.card p:not(.card-label) {
  max-width: 34ch;
  margin: 0;
  color: rgba(7, 20, 45, 0.56);
  line-height: 1.6;
}

.card-index {
  position: absolute;
  right: 22px;
  top: 50%;
  color: rgba(8, 42, 79, 0.16);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 68px;
  letter-spacing: 0;
  transform: translateY(-50%);
}

.blog-card {
  display: block;
}

.blog-card .card-inner {
  grid-template-columns: 150px minmax(180px, 0.74fr) minmax(260px, 1fr);
  padding-right: 110px;
}

.blog-card h3,
.blog-card p {
  font-family: var(--serif-cn);
}

.card-cta {
  position: absolute;
  right: 34px;
  bottom: 28px;
  z-index: 1;
  padding: 9px 14px;
  border: 1px solid rgba(31, 140, 232, 0.24);
  border-radius: 999px;
  color: rgba(7, 20, 45, 0.62);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.42);
}

.work-panel {
  min-height: 300px;
}

.article-page {
  width: min(1080px, calc(100% - 42px));
}

.article-shell {
  padding: 38px 0 0;
}

.article-hero {
  min-height: 0;
  padding: 64px 0 60px;
}

.article-kicker {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 22px;
  color: rgba(7, 20, 45, 0.58);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.article-kicker::before {
  width: 56px;
  height: 1px;
  content: "";
  background: rgba(7, 20, 45, 0.22);
}

.article-hero h1 {
  max-width: 780px;
  color: rgba(7, 20, 45, 0.88);
  font-family: var(--serif-cn);
  font-size: 4.8rem;
  line-height: 1.04;
  text-shadow: 0 22px 62px rgba(255, 255, 255, 0.46);
}

.article-lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(7, 20, 45, 0.74);
  font-family: var(--serif-cn);
  font-size: 1.18rem;
  line-height: 1.9;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.metric {
  min-height: 118px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 24px 80px rgba(7, 65, 126, 0.1);
  backdrop-filter: blur(20px);
}

.metric span {
  display: block;
  margin-bottom: 16px;
  color: rgba(7, 20, 45, 0.58);
  font-family: var(--serif-cn);
  font-size: 0.9rem;
}

.metric strong {
  display: block;
  color: rgba(7, 20, 45, 0.9);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.article-body {
  padding: 42px 52px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 34px;
  color: rgba(7, 20, 45, 0.8);
  font-family: var(--serif-cn);
  background:
    radial-gradient(circle at 84% 0%, rgba(5, 168, 255, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(244, 251, 255, 0.72));
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.article-section {
  padding: 10px 0 54px;
}

.article-section + .article-section {
  padding-top: 54px;
  border-top: 1px solid rgba(17, 72, 126, 0.12);
}

.article-section:last-child {
  padding-bottom: 8px;
}

.article-section h2 {
  margin: 0 0 22px;
  color: rgba(7, 20, 45, 0.9);
  font-family: var(--serif-cn);
  font-size: 2.15rem;
  font-weight: 400;
  line-height: 1.22;
}

.article-section p {
  max-width: 72ch;
  margin: 0 0 18px;
  font-size: 1.06rem;
  line-height: 1.95;
}

.article-section code:not(.article-code code) {
  padding: 0.12em 0.38em;
  border: 1px solid rgba(17, 72, 126, 0.12);
  border-radius: 7px;
  color: rgba(7, 20, 45, 0.82);
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 0.88em;
  background: rgba(255, 255, 255, 0.62);
}

.article-code {
  margin: 28px 0;
  padding: 22px;
  overflow-x: auto;
  border: 1px solid rgba(7, 20, 45, 0.14);
  border-radius: 18px;
  color: #e8f6ff;
  font-size: 0.92rem;
  line-height: 1.7;
  background:
    linear-gradient(135deg, rgba(7, 20, 45, 0.96), rgba(7, 49, 89, 0.94)),
    #07142d;
  box-shadow: 0 20px 60px rgba(7, 20, 45, 0.16);
}

.article-code code {
  font-family: "Cascadia Code", Consolas, monospace;
}

.table-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 28px 0;
}

.figure-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.table-wrap {
  width: 100%;
  margin: 28px 0;
  overflow-x: auto;
  border: 1px solid rgba(17, 72, 126, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 56px rgba(7, 65, 126, 0.08);
}

.table-pair .table-wrap,
.figure-grid .article-figure {
  margin: 0;
}

.report-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-family: var(--serif-cn);
}

.compact-table {
  min-width: 640px;
}

.report-table caption {
  padding: 16px 18px 8px;
  color: rgba(7, 20, 45, 0.74);
  font-size: 1rem;
  text-align: left;
}

.report-table th,
.report-table td {
  padding: 12px 18px;
  border-top: 1px solid rgba(17, 72, 126, 0.1);
  text-align: left;
  white-space: nowrap;
}

.report-table th {
  color: rgba(7, 20, 45, 0.82);
  font-weight: 600;
  background: rgba(221, 242, 255, 0.56);
}

.report-table td {
  color: rgba(7, 20, 45, 0.72);
}

.article-figure {
  margin: 30px 0;
  overflow: hidden;
  border: 1px solid rgba(17, 72, 126, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 70px rgba(7, 65, 126, 0.1);
}

.article-figure img {
  display: block;
  width: 100%;
  height: auto;
  background: #ffffff;
}

.article-figure figcaption {
  padding: 14px 18px 18px;
  color: rgba(7, 20, 45, 0.58);
  font-family: var(--serif-cn);
  font-size: 0.95rem;
  line-height: 1.65;
}

footer {
  padding: 72px 0 40px;
}

.footer-panel {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: rgba(7, 20, 45, 0.56);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social {
  display: flex;
  gap: 10px;
}

.social a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: rgba(7, 20, 45, 0.52);
  background: rgba(255, 255, 255, 0.46);
  transition: transform 0.25s ease, background 0.25s ease;
}

.social a:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-3px);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 880px) {
  .page {
    width: min(100% - 26px, 680px);
  }

  header {
    gap: 16px;
    align-items: flex-start;
  }

  nav {
    max-width: 100%;
    overflow: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 34px;
  }

  .visual {
    min-height: 460px;
  }

  .tower {
    right: 0;
    height: 420px;
  }

  .blog-grid,
  .about-wrap {
    grid-template-columns: 1fr;
  }

  .card-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .blog-card .card-inner {
    grid-template-columns: 1fr;
    padding-right: 0;
  }

  .card {
    padding-right: 86px;
  }

  .section-title {
    display: block;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .cursor-glow {
    display: none;
  }

  .article-page {
    width: min(100% - 26px, 680px);
  }

  .article-hero h1 {
    font-size: 3.6rem;
  }

  .metric-grid,
  .table-pair,
  .figure-grid {
    grid-template-columns: 1fr;
  }

  .article-body {
    padding: 30px;
  }
}

@media (max-width: 560px) {
  header {
    position: relative;
    display: block;
    padding-top: 18px;
  }

  nav {
    justify-content: flex-start;
    margin-top: 16px;
  }

  nav a {
    padding: 10px 12px;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 64px;
  }

  .intro-head {
    grid-template-columns: 1fr;
  }

  .avatar {
    width: min(100%, 240px);
  }

  .visual {
    min-height: 360px;
  }

  .tower {
    width: 76vw;
    height: 330px;
  }

  .caption {
    bottom: 26px;
    width: 230px;
  }

  section {
    padding: 64px 0;
  }

  .large-panel,
  .statement {
    min-height: 0;
    padding: 24px;
  }

  .card-cta {
    position: relative;
    right: auto;
    bottom: auto;
    display: inline-flex;
    margin-top: 20px;
  }

  .article-shell {
    padding-top: 14px;
  }

  .article-hero {
    min-height: 0;
    padding: 46px 0 40px;
  }

  .article-hero h1 {
    font-size: 2.7rem;
  }

  .article-lead {
    font-size: 1rem;
  }

  .metric-grid {
    gap: 10px;
  }

  .metric {
    min-height: 92px;
    padding: 18px;
  }

  .article-body {
    padding: 22px;
    border-radius: 24px;
  }

  .article-section h2 {
    font-size: 1.72rem;
  }

  .article-section p {
    font-size: 1rem;
  }

  .article-code {
    padding: 18px;
    font-size: 0.84rem;
  }

  .footer-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}
