/* ============================================================
   GJH 个人网站 — OpenLess 换肤预览版（蓝白主调 + 霜感玻璃 + 蓝光动效）
   改动点（对比 style.css）：
   - 强调色 accent：橙 #d97757 → 蓝 #2563eb（OpenLess 蓝）
   - 背景：纯色 → 霜感玻璃白底 + 蓝色光晕 orb + grain 噪声
   - 圆角：加大（卡片 22 / 面板 22）
   - 动效：spring cubic-bezier(0.16,1,0.3,1)
   - 新增：.bg-stage 背景光效层 / .marquee 跑马灯 / .scroll-hint 滚动提示
          .project-index 项目编号 / 新 boot-overlay 光晕
   ============================================================ */

:root, html[data-theme="light"] {
  --background: #ffffff;
  --background-2: #fafafa;
  --foreground: #0f172a;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-soft: #eff4ff;
  --muted: #eef2f9;
  --border: #e4e8f2;
  --card-bg: rgba(255, 255, 255, 0.72);
  --card-bg-solid: #ffffff;
  --shadow-soft: 0 1px 1px rgba(15, 17, 22, 0.02), 0 0 0 0.5px rgba(15, 17, 22, 0.02);
  --shadow-hover: 0 12px 32px -12px rgba(37, 99, 235, 0.18), 0 0 0 0.5px rgba(15, 17, 22, 0.03);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --font-mono: "JetBrains Mono", "Cascadia Code", Consolas, "Courier New", monospace;
  --font-cjk: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
}

html[data-theme="dark"] {
  --background: #101a30;
  --background-2: #0a1224;
  --foreground: #ffffff;
  --accent: #ff8e63;
  --accent-hover: #ffa57e;
  --accent-soft: rgba(255, 142, 99, 0.14);
  --muted: #1b2a4a;
  --border: #2b3d63;
  --card-bg: rgba(20, 28, 48, 0.72);
  --card-bg-solid: #141c30;
  --shadow-soft: 0 1px 1px rgba(0, 0, 0, 0.17), 0 0 0 0.5px rgba(226, 232, 240, 0.03);
  --shadow-hover: 0 18px 42px -16px rgba(0, 0, 0, 0.5), 0 0 0 0.5px rgba(226, 232, 240, 0.04);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
* { border-color: var(--border); outline-color: var(--accent); }

html { scroll-behavior: smooth; overflow-y: scroll; background: var(--background); }

body {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: transparent;
  color: var(--foreground);
  font-family: var(--font-mono), var(--font-cjk);
  font-size: 16px;
  line-height: 1.5;
  transition: background 200ms var(--ease-out), color 200ms var(--ease-out);
}

body ::selection { background: var(--accent); color: #fff; }
body::selection { background: var(--accent); color: #fff; }

a, button { outline-offset: 2px; color: inherit; text-decoration: none; }
:is(a, button):focus-visible {
  outline: 2px dashed var(--accent);
  outline-offset: 2px;
  text-decoration: none;
}

/* ============================================================
   背景光效层：霜感玻璃 + 蓝色光晕（OpenLess 式背景动效）
   ============================================================ */
#shader-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
html[data-theme="dark"] #shader-bg { display: none; }
#flicker-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#stars-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: none;
}
html[data-theme="dark"] #stars-bg { display: block; }
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  will-change: transform;
}
.bg-orb-a {
  width: 640px;
  height: 640px;
  top: -180px;
  right: -140px;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0) 70%);
}
.bg-orb-b {
  width: 560px;
  height: 560px;
  bottom: -160px;
  left: -120px;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0) 70%);
}
html[data-theme="dark"] .bg-orb-a { background: radial-gradient(circle at center, rgba(255, 142, 99, 0.14), rgba(255, 142, 99, 0) 70%); }
html[data-theme="dark"] .bg-orb-b { background: radial-gradient(circle at center, rgba(255, 142, 99, 0.10), rgba(255, 142, 99, 0) 70%); }
/* 白天：隐藏光晕（背景干净蓝白），噪点颗粒仍保留（OpenLess 质感） */
html[data-theme="light"] .bg-orb { display: none; }

.bg-grain {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='1' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0.34 0.34 0.34 0 0 0.34 0.34 0.34 0 0 0.34 0.34 0.34 0 0 0 0 0 0 1'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 100px 100px;
}
html[data-theme="dark"] .bg-grain { opacity: 0.3; }

.container {
  width: 100%;
  max-width: 768px;
  margin-inline: auto;
  padding-inline: 16px;
  position: relative;
}

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 0.5px solid var(--border);
  padding: 14px 0;
  background: var(--card-bg);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
}
.brand svg { width: 34px; height: 22px; color: var(--foreground); }
.brand-logo { width: 76px; height: 31px; object-fit: contain; display: block; }
.brand-logo-dark { display: none; }
html[data-theme="dark"] .brand-logo-light { display: none; }
html[data-theme="dark"] .brand-logo-dark { display: block; }

nav.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 6px 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--foreground);
}
.main-nav a { position: relative; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 3px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--ease-spring);
}
.main-nav a.active { text-decoration: underline; text-decoration-style: wavy; text-underline-offset: 8px; color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 4px; }
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  color: var(--foreground);
  transition: color 200ms var(--ease-spring), background 200ms var(--ease-spring), transform 200ms var(--ease-spring);
}
.icon-btn:active { transform: rotate(6deg) scale(0.94); }
.icon-btn svg { width: 20px; height: 20px; }

.lang-btn {
  padding: 6px 10px;
  font-family: var(--font-mono), var(--font-cjk);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
  transition: color 200ms var(--ease-spring), border-color 200ms var(--ease-spring), background 200ms var(--ease-spring);
}
.lang-btn:active { transform: scale(0.94); }

.menu-btn { display: none; }

/* ---------- Hero ---------- */
.hero { padding: 64px 0 40px; }
.hero .inner { text-align: center; }
.hero-logo { display: block; width: min(380px, 84vw); margin: 0 auto 8px; color: var(--foreground); }
.hero-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 12px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  overflow: hidden;
  box-shadow: 0 18px 40px -16px rgba(37, 99, 235, 0.28), 0 0 0 0.5px rgba(15, 17, 22, 0.03);
}
.hero-avatar svg { width: 48%; height: 48%; }
.hero-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-avatar { transition: transform 400ms var(--ease-spring); }
.hero .handle {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--accent);
  width: 7ch;
  overflow: hidden;
  white-space: nowrap;
  border-inline-end: 2px solid currentColor;
  animation: typing 2.5s steps(6) infinite alternate, caret 0.7s step-end infinite;
}
@keyframes typing { 0%, 15% { width: 0; } 60%, 100% { width: 7ch; } }
@keyframes caret { 50% { border-color: transparent; } }
.hero .role {
  margin-top: 8px;
  font-size: 15px;
  opacity: 0.85;
}
.hero .bio-wrap {
  margin: 24px auto 0;
  max-width: 560px;
}
.hero .bio {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.75;
  text-wrap: pretty;
}
.hero .bio.expanded { display: block; }
.read-more-btn {
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: none;
  font-family: inherit;
  font-size: 14px;
  color: var(--accent);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-underline-offset: 4px;
}
.read-more-btn:hover { text-decoration-style: solid; }

.hero-socials { display: flex; justify-content: center; gap: 4px; margin-top: 20px; }
.hero-socials a {
  display: inline-flex;
  padding: 8px;
  border-radius: 10px;
  color: var(--foreground);
  transition: color 200ms var(--ease-spring), background 200ms var(--ease-spring), transform 200ms var(--ease-spring);
}
.hero-socials svg { width: 24px; height: 24px; }

/* ---------- SCROLL 提示 ---------- */
.scroll-hint {
  margin-top: 40px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--accent);
  opacity: 0.75;
}
.scroll-hint svg {
  width: 20px;
  height: 20px;
  animation: scroll-bob 1.8s var(--ease-spring) infinite;
}
@keyframes scroll-bob {
  0%, 100% { transform: translateY(0); opacity: 0.9; }
  50% { transform: translateY(6px); opacity: 0.4; }
}
html.js .scroll-hint.scrolled { opacity: 0; }

/* ---------- Sections ---------- */
section.block { padding: 56px 0 0; }
.section-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-wrap: balance;
}
.section-sub { margin-top: 6px; font-size: 14px; opacity: 0.75; }

/* ---------- Project cards（编号式 + 玻璃质感） ---------- */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 24px; }
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }

.project-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  transition: transform 400ms var(--ease-spring), box-shadow 400ms var(--ease-spring);
}
.project-index {
  position: absolute;
  top: 10px;
  right: 14px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  opacity: 0.35;
  transition: opacity 300ms var(--ease-spring);
}
.project-card:hover .project-index { opacity: 1; }
.project-card .cover { aspect-ratio: 16 / 10; overflow: hidden; }
.project-card .cover img, .project-card .cover svg { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 400ms var(--ease-spring); }
.project-card .body { padding: 14px 16px 16px; }
.project-card h3 { font-size: 16px; font-weight: 600; color: var(--foreground); }
.project-card p { margin-top: 6px; font-size: 13px; line-height: 1.55; opacity: 0.8; }
.project-card .meta { margin-top: 10px; display: flex; align-items: center; gap: 8px; font-size: 12px; opacity: 0.7; }
.tag { border: 1px solid var(--border); border-radius: 999px; padding: 2px 9px; font-size: 11px; }

.more-link { margin-top: 20px; display: inline-block; font-size: 14px; color: var(--accent); text-decoration: underline; text-decoration-style: dashed; text-underline-offset: 4px; }
.more-link:hover { text-decoration-style: solid; }

/* ---------- marquee 跑马灯 ---------- */
.marquee {
  margin-top: 56px;
  padding: 18px 0;
  overflow: hidden;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  white-space: nowrap;
  animation: marquee-scroll 22s linear infinite;
}
.marquee-track span {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--foreground);
  opacity: 0.55;
}
.marquee-track .dot { color: var(--accent); opacity: 1; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- Works placeholders ---------- */
.works-list { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.work-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border: 1px dashed var(--border);
  border-radius: 16px;
  background: transparent;
  font-size: 15px;
  transition: transform 400ms var(--ease-spring), border-color 400ms var(--ease-spring);
}
.work-item .work-note { font-size: 12px; opacity: 0.6; white-space: nowrap; }

/* ---------- About / contact ---------- */
.about-text { margin-top: 24px; max-width: 560px; font-size: 15px; line-height: 1.75; opacity: 0.9; }
.contact-panel {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  transition: transform 400ms var(--ease-spring), border-color 400ms var(--ease-spring);
}
.contact-row .label { width: 74px; flex-shrink: 0; font-size: 13px; opacity: 0.7; }
.contact-row .value { font-size: 14px; word-break: break-all; }
.contact-row a.value:hover { color: var(--accent); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono), var(--font-cjk);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 300ms var(--ease-spring), box-shadow 300ms var(--ease-spring), opacity 300ms var(--ease-spring);
}
.btn:active { transform: translateY(0) scale(0.97); }
.btn.ghost { background: transparent; color: var(--accent); }

/* ---------- Footer ---------- */
footer.site-footer { margin-top: 56px; border-top: 0.5px solid var(--border); padding: 20px 0 28px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: 13px; opacity: 0.8; }
.footer-inner .links { display: flex; gap: 8px; }
.footer-inner a:hover { color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 639px) {
  .menu-btn { display: inline-flex; }
  .main-nav {
    position: absolute;
    top: 62px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--card-bg-solid);
    box-shadow: var(--shadow-hover);
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 12px; }
  .hero { padding: 40px 0 32px; }
  .hero-avatar { width: 96px; height: 96px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .hero .handle { width: 7ch; animation: none; border-inline-end: none; }
}

/* ---------- Hover interactions ---------- */
@media (hover: hover) and (pointer: fine) {
  .icon-btn:hover { color: var(--accent); background: var(--accent-soft); transform: rotate(6deg); }
  .lang-btn:hover { color: var(--accent); border-color: var(--accent); background: var(--accent-soft); }
  .main-nav a:hover { color: var(--accent); }
  .main-nav a:hover::after { transform: scaleX(1); }
  .hero-socials a:hover { color: var(--accent); background: var(--accent-soft); transform: translateY(-2px); }
  .hero-avatar:hover { transform: scale(1.03); }
  .project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
  .project-card:hover .cover img, .project-card:hover .cover svg { transform: scale(1.05); }
  .btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
  .btn.ghost:hover { background: var(--accent-soft); }
  .work-item:hover { transform: translateY(-2px); border-color: var(--accent); }
  .contact-row:hover { transform: translateY(-2px); border-color: var(--accent); }
}

/* ---------- Reveal on scroll（滚动驱动浮现） ---------- */
html.js [data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 700ms var(--ease-spring), transform 700ms var(--ease-spring); }
html.js [data-reveal].visible { opacity: 1; transform: none; }

/* ---------- Boot overlay（光晕扩散 + logo 浮现） ---------- */
#boot-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0b1220;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 500ms ease;
}
#boot-overlay.hide { opacity: 0; pointer-events: none; }
#boot-overlay .boot-orb {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center, rgba(96, 165, 250, 0.9), rgba(37, 99, 235, 0.35) 45%, rgba(37, 99, 235, 0) 70%);
  filter: blur(6px);
  pointer-events: none;
}
#boot-overlay .boot-logo { width: min(340px, 68vw); opacity: 0; }
#boot-overlay .boot-logo img { display: block; width: 100%; height: auto; }
.boot-skip {
  position: fixed;
  right: 22px;
  bottom: 18px;
  z-index: 10000;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-mono), var(--font-cjk);
  font-size: 13px;
  cursor: pointer;
}
.boot-skip:hover { color: #fff; border-color: rgba(255, 255, 255, 0.5); }

/* ---------- 理念 Manifesto + 逐字显现 ---------- */
.section-tag {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
}
.manifesto {
  height: 180vh;
  padding-top: 0;
}
.manifesto-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.manifesto-text {
  max-width: 660px;
  margin-top: 24px;
  font-size: clamp(20px, 4vw, 30px);
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-wrap: pretty;
  color: var(--foreground);
}
html.js .scrolly-char { opacity: 0.15; }

/* ---------- 精选项目 hover 突出 ---------- */
.project-card {
  transition: transform 400ms var(--ease-spring), opacity 400ms var(--ease-spring), box-shadow 400ms var(--ease-spring);
}
.card-grid:hover .project-card:not(:hover) {
  opacity: 0.5;
  transform: scale(0.97);
}
.project-card:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-hover);
}

/* ---------- Card page (名片) ---------- */
body.card-page { justify-content: center; }
.card-back { align-self: flex-start; margin: 20px auto 0; font-size: 14px; }
.card-back a:hover { color: var(--accent); }
.pcard-wrap { display: flex; justify-content: center; padding: 24px 16px 40px; }
.pcard {
  --line: color-mix(in srgb, var(--foreground) 20%, transparent);
  --faint: color-mix(in srgb, var(--foreground) 55%, transparent);
  width: 402px;
  max-width: 100%;
  aspect-ratio: 402 / 218.5;
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 3.4cqw;
  background: color-mix(in srgb, var(--accent) 4%, var(--background));
  box-shadow: 0 1px 2px #0000000a, 0 4cqw 11cqw -5cqw #00000059;
  overflow: hidden;
  font-variant-ligatures: none;
}
html[data-theme="dark"] .pcard { border-color: color-mix(in srgb, var(--foreground) 14%, transparent); box-shadow: 0 6cqw 16cqw -6cqw #000000b3; }
.pcard-inner { flex: 1; min-height: 0; display: flex; align-items: center; gap: 3.6cqw; padding: 0 4cqw; }
.avatar {
  flex-shrink: 0;
  width: 22cqw;
  height: 22cqw;
  border-radius: 2.6cqw;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.avatar .monogram {
  font-size: 8cqw;
  font-weight: 700;
  color: var(--accent);
}
.pcard-info { min-width: 0; flex: 1; }
.pcard-role { font-size: 2.24cqw; line-height: 1.2; letter-spacing: 0.42cqw; text-transform: uppercase; color: var(--accent); }
.pcard-name { margin-top: 0.7cqw; font-size: 4.1cqw; line-height: 1.15; font-weight: 700; }
.pcard-handle { margin-top: 0.2cqw; font-size: 2.6cqw; line-height: 1.3; color: var(--faint); }
.pcard-tagline { margin-top: 1.4cqw; font-size: 2.7cqw; line-height: 1.5; color: color-mix(in srgb, var(--foreground) 88%, transparent); text-wrap: pretty; }
.pcard-meta { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 1.2cqw; margin-top: 1.4cqw; padding: 0; font-size: 2.4cqw; line-height: 1.3; color: var(--faint); }
.pcard-meta li + li::before { content: "·"; margin-right: 1.2cqw; color: var(--accent); }
.pcard-socials { margin-top: 1.7cqw; display: flex; align-items: center; gap: 0.3cqw; margin-left: -0.8cqw; }
.pcard-socials a { padding: 0.8cqw; border-radius: 1cqw; color: color-mix(in srgb, var(--foreground) 70%, transparent); line-height: 0; transition: color 150ms var(--ease-out), background 150ms var(--ease-out), transform 150ms var(--ease-out); }
.pcard-socials svg { width: 3.5cqw; height: 3.5cqw; }
.pcard-foot { flex-shrink: 0; padding: 1.7cqw 4cqw; border-top: 1px solid var(--line); background: color-mix(in srgb, var(--muted) 18%, transparent); font-size: 2.2cqw; line-height: 1.3; color: var(--faint); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
