:root {
  color-scheme: light;
  --bg: #fbf7f1;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --ink: #1e2520;
  --muted: #68756e;
  --line: rgba(91, 113, 103, 0.13);
  --green: #1d7b64;
  --green-soft: #dff3e9;
  --pink: #ef7fa7;
  --pink-soft: #ffe3ed;
  --mint: #72d8b4;
  --coral: #d8664d;
  --coral-soft: #ffe7df;
  --gold: #d89b32;
  --gold-soft: #fff1ca;
  --blue: #4b78aa;
  --blue-soft: #e5f0ff;
  --shadow: 0 22px 64px rgba(114, 81, 96, 0.12);
  --shadow-soft: 0 12px 34px rgba(114, 81, 96, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 208, 225, 0.72), transparent 32%),
    radial-gradient(circle at 88% 14%, rgba(199, 245, 220, 0.72), transparent 30%),
    radial-gradient(circle at 72% 70%, rgba(255, 238, 184, 0.52), transparent 30%),
    linear-gradient(180deg, #fff9fc 0, var(--bg) 60%, #f1fbf5 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  background-image:
    linear-gradient(rgba(98, 119, 109, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 119, 109, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
}

body::after {
  background:
    linear-gradient(125deg, transparent 0 45%, rgba(239, 127, 167, 0.08) 45% 47%, transparent 47%),
    linear-gradient(48deg, transparent 0 69%, rgba(114, 216, 180, 0.1) 69% 71%, transparent 71%);
  content: "";
  filter: blur(0.4px);
  inset: 0;
  pointer-events: none;
  position: fixed;
}

a {
  color: inherit;
}

.page-shell {
  margin: 0 auto;
  max-width: 1180px;
  padding: 20px 22px 44px;
  position: relative;
  z-index: 1;
}

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

.sakura-petal {
  animation: petal-fall var(--duration) linear infinite;
  animation-delay: var(--delay);
  background: linear-gradient(135deg, #fff, #ffc5d6 46%, #f48caf 100%);
  border: 1px solid rgba(239, 127, 167, 0.2);
  border-radius: 74% 12% 70% 18%;
  box-shadow: 0 8px 18px rgba(239, 127, 167, 0.16);
  height: 15px;
  left: var(--left);
  opacity: 0.46;
  position: absolute;
  top: -8vh;
  transform: rotate(20deg) scale(var(--scale));
  width: 11px;
}

@keyframes petal-fall {
  0% {
    transform: translate3d(0, -10vh, 0) rotate(0deg) scale(var(--scale));
  }

  50% {
    transform: translate3d(var(--drift), 48vh, 0) rotate(var(--spin)) scale(var(--scale));
  }

  100% {
    transform: translate3d(calc(var(--drift) * -0.4), 108vh, 0) rotate(var(--spin-end)) scale(var(--scale));
  }
}

.site-header {
  align-items: center;
  backdrop-filter: blur(22px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(128, 93, 108, 0.12);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 10px 12px;
  position: sticky;
  top: 14px;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.95), transparent 44%),
    linear-gradient(145deg, #fff1bb, #ffdfea 52%, #cbf4dd);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  box-shadow:
    inset 0 -7px 16px rgba(29, 123, 100, 0.06),
    0 10px 22px rgba(239, 127, 167, 0.14);
  color: #155846;
  display: inline-grid;
  font-weight: 900;
  height: 50px;
  line-height: 0;
  place-items: center;
  width: 50px;
}

.brand-mark img {
  display: block;
  height: 42px;
  image-rendering: auto;
  object-fit: contain;
  transform: translateY(-1px);
  width: 42px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.nav-links a {
  border: 1px solid transparent;
  border-radius: 8px;
  color: #405047;
  font-size: 13px;
  font-weight: 760;
  padding: 8px 10px;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: #fff;
  border-color: rgba(239, 127, 167, 0.28);
  color: #a84268;
  outline: 0;
}

.hero {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  min-height: 452px;
  padding: 34px 0 24px;
  position: relative;
}

.hero::before,
.hero::after {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.hero::before {
  background:
    radial-gradient(circle at 18% 30%, rgba(255, 204, 221, 0.56), transparent 42%),
    radial-gradient(circle at 88% 24%, rgba(199, 245, 220, 0.5), transparent 38%),
    rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 8px;
  filter: blur(0.4px);
  inset: 18px -20px 28px;
  opacity: 0.72;
}

.hero::after {
  background:
    repeating-linear-gradient(90deg, rgba(239, 127, 167, 0.11) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(0deg, rgba(29, 123, 100, 0.08) 0 1px, transparent 1px 24px);
  border-radius: 8px;
  inset: 46px 47% 48px -10px;
  opacity: 0.42;
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  color: #a84268;
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0;
  margin: 0 0 10px;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  color: #245b4e;
  font-size: 74px;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 16px;
  text-shadow:
    0 3px 0 rgba(255, 225, 235, 0.9),
    0 18px 36px rgba(239, 127, 167, 0.18);
}

h2 {
  font-size: 28px;
  letter-spacing: 0;
  line-height: 1.12;
  margin-bottom: 10px;
}

.hero-text {
  color: #405249;
  font-size: 18px;
  line-height: 1.68;
  max-width: 580px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-badges span {
  background: rgba(255, 233, 241, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(147, 91, 108, 0.08);
  color: #b4486f;
  font-size: 12px;
  font-weight: 850;
  padding: 7px 11px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(114, 81, 96, 0.1);
  color: var(--ink);
  display: inline-flex;
  gap: 8px;
  font-weight: 840;
  min-height: 44px;
  padding: 11px 16px;
  text-decoration: none;
}

.gallery-hero {
  padding: 54px 0 28px;
}

.gallery-hero h1 {
  font-size: 58px;
}

.photo-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  padding: 18px 0 54px;
}

.photo-card {
  aspect-ratio: 3 / 4;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  display: block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.photo-card img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
  width: 100%;
}

.photo-card:hover img,
.photo-card:focus-visible img {
  transform: scale(1.035);
}

.photo-card span {
  background: rgba(30, 37, 32, 0.72);
  border-radius: 8px;
  bottom: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  left: 10px;
  padding: 6px 8px;
  position: absolute;
}

.persona-layout {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 18px 0 54px;
}

.persona-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  padding: 22px;
}

.persona-card h2 {
  font-size: 23px;
}

.persona-card p {
  color: #405249;
  line-height: 1.7;
}

.doc-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.doc-page {
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 208, 225, 0.52), transparent 28%),
    linear-gradient(180deg, #fff9fc, #fbf7f1);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.78;
  margin: 0 auto;
  max-width: 860px;
  min-height: 100vh;
  padding: 36px 22px 60px;
}

.doc-page h1 {
  font-size: 42px;
  line-height: 1.12;
}

.doc-page h2 {
  font-size: 24px;
  margin-top: 30px;
}

.doc-page pre {
  background: #1e2520;
  border-radius: 8px;
  color: #eef7f1;
  overflow-x: auto;
  padding: 16px;
}

.doc-page code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
}

.icon-slot {
  align-items: center;
  display: inline-grid;
  height: 18px;
  justify-content: center;
  line-height: 0;
  margin-right: 0;
  place-items: center;
  width: 18px;
}

.icon {
  display: block;
  height: 100%;
  overflow: visible;
  width: 100%;
}

.icon-fill {
  fill: currentColor;
}

.icon-fill.face {
  fill: #fff9f1;
}

.icon-fill.warm {
  fill: #bd7b4f;
}

.icon-fill.blush {
  fill: #f7a4bd;
  opacity: 0.9;
}

.icon-fill.mint {
  fill: #dff7eb;
}

.icon-fill.blue {
  fill: #dcecff;
}

.icon-fill.gold {
  fill: #fff0bd;
}

.icon-fill.coral {
  fill: #ffe0d8;
}

.icon-fill.pink {
  fill: #ffdce9;
}

.icon-fill.paper {
  fill: #fffdf8;
}

.icon-stroke {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.icon-stroke.fine {
  stroke-width: 1.35;
}

.icon-stroke.bold {
  stroke-width: 2.15;
}

.icon-eye {
  fill: #23433a;
}

.button.primary {
  background: linear-gradient(135deg, #f47fa6, #e8a248);
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 34px rgba(239, 127, 167, 0.26);
  color: #fff;
}

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

.button:focus-visible,
.service-card:focus-visible {
  outline: 3px solid rgba(29, 123, 100, 0.2);
  outline-offset: 3px;
}

.desk {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 251, 0.84)),
    var(--surface);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 16px;
  position: relative;
}

.desk::after {
  background: linear-gradient(90deg, rgba(239, 127, 167, 0.75), rgba(216, 155, 50, 0.62), rgba(114, 216, 180, 0.7), rgba(75, 120, 170, 0.62));
  content: "";
  height: 5px;
  inset: 0 0 auto;
  position: absolute;
}

.desk-glow {
  background:
    linear-gradient(135deg, rgba(255, 223, 235, 0.58), transparent 46%),
    linear-gradient(225deg, rgba(199, 245, 220, 0.5), transparent 52%);
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.desk-top {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.mascot-card,
.mini-window {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.mascot-card {
  align-items: center;
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 199, 219, 0.5), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 235, 243, 0.8)),
    #fff;
  display: flex;
  gap: 16px;
  min-height: 164px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.mascot-card strong,
.mascot-card span {
  display: block;
}

.mascot-card strong {
  font-size: 24px;
}

.mascot-card span {
  color: var(--muted);
  margin-top: 7px;
}

.luzai-avatar {
  aspect-ratio: 1;
  background: #fff7fb;
  border: 4px solid rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  box-shadow:
    0 0 0 7px rgba(255, 215, 229, 0.58),
    0 18px 38px rgba(126, 82, 92, 0.18);
  height: 112px;
  object-fit: cover;
  object-position: 50% 20%;
  width: 112px;
}

.mascot-petal {
  background: linear-gradient(135deg, #fff, #ffc2d6 48%, #ef7fa7);
  border-radius: 75% 12% 70% 20%;
  height: 18px;
  position: absolute;
  width: 13px;
}

.mascot-petal.one {
  right: 34px;
  top: 28px;
  transform: rotate(28deg);
}

.mascot-petal.two {
  bottom: 24px;
  right: 104px;
  transform: rotate(-18deg) scale(0.82);
}

.mini-window {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 8px) 1fr;
  padding: 13px 14px;
}

.mini-window span {
  align-self: center;
  border-radius: 999px;
  height: 8px;
  width: 8px;
}

.mini-window span:nth-child(1) {
  background: var(--coral);
}

.mini-window span:nth-child(2) {
  background: var(--gold);
}

.mini-window span:nth-child(3) {
  background: var(--green);
}

.mini-window strong {
  color: var(--muted);
  font-size: 12px;
  justify-self: end;
}

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

.desk-grid div {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  min-height: 98px;
  padding: 13px;
}

.desk-grid span,
.desk-grid strong {
  display: block;
}

.desk-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  margin-bottom: 8px;
}

.desk-grid strong {
  font-size: 16px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.status-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 36px;
}

.status-row article {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  display: flex;
  gap: 12px;
  min-height: 78px;
  padding: 14px;
}

.status-row strong,
.status-row small {
  display: block;
}

.status-row small {
  color: var(--muted);
  line-height: 1.45;
  margin-top: 3px;
}

.status-dot {
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(29, 123, 100, 0.09);
  height: 12px;
  width: 12px;
}

.status-dot.live {
  background: var(--green);
}

.status-dot.calm {
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(75, 120, 170, 0.1);
}

.status-dot.warm {
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(216, 155, 50, 0.12);
}

.section-head {
  margin: 8px 0 14px;
}

.section-head.compact {
  margin-bottom: 16px;
}

.service-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 34px;
}

.service-card {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 9px;
  min-height: 210px;
  padding: 18px;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.service-card.featured {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(242, 255, 248, 0.86));
  border-color: rgba(29, 123, 100, 0.18);
}

.service-card.muted {
  background: rgba(255, 255, 255, 0.66);
}

.service-icon {
  align-items: center;
  background:
    radial-gradient(circle at 33% 26%, rgba(255, 255, 255, 0.92), transparent 44%),
    var(--green-soft);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  box-shadow:
    inset 0 -8px 14px rgba(29, 123, 100, 0.07),
    0 10px 20px rgba(62, 72, 58, 0.08);
  color: #155846;
  display: inline-grid;
  font-size: 13px;
  font-weight: 920;
  height: 48px;
  line-height: 0;
  place-items: center;
  width: 48px;
}

.service-icon .icon {
  height: 28px;
  transform: none;
  width: 28px;
}

.service-card:nth-child(2) .service-icon {
  background:
    radial-gradient(circle at 33% 26%, rgba(255, 255, 255, 0.92), transparent 44%),
    var(--blue-soft);
  border-color: rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 -7px 14px rgba(75, 120, 170, 0.06),
    0 8px 16px rgba(62, 72, 58, 0.08);
  color: #274c78;
}

.service-card:nth-child(3) .service-icon {
  background:
    radial-gradient(circle at 33% 26%, rgba(255, 255, 255, 0.92), transparent 44%),
    var(--gold-soft);
  border-color: rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 -7px 14px rgba(216, 155, 50, 0.08),
    0 8px 16px rgba(62, 72, 58, 0.08);
  color: #76520f;
}

.service-card:nth-child(4) .service-icon {
  background:
    radial-gradient(circle at 33% 26%, rgba(255, 255, 255, 0.92), transparent 44%),
    var(--coral-soft);
  border-color: rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 -7px 14px rgba(216, 102, 77, 0.07),
    0 8px 16px rgba(62, 72, 58, 0.08);
  color: #8d3b2a;
}

.service-kicker {
  color: var(--green);
  font-size: 12px;
  font-weight: 840;
}

.service-card strong {
  font-size: 20px;
  line-height: 1.18;
}

.service-card small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.work-panel,
.boundary,
.command-panel {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 18px;
  padding: 20px;
}

.command-panel {
  padding: 20px;
}

.command-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.86fr) minmax(260px, 0.76fr);
}

.command-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 252, 248, 0.84));
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  min-height: 250px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.command-card::before {
  background: linear-gradient(180deg, #7bd9bd, #f18bae);
  border-radius: 999px;
  content: "";
  height: 42px;
  left: 0;
  position: absolute;
  top: 24px;
  width: 4px;
}

.command-card:nth-child(2)::before {
  background: linear-gradient(180deg, #ffd674, #f0a24f);
}

.command-card:nth-child(3)::before {
  background: linear-gradient(180deg, #ffb6aa, #87dac0);
}

.card-heading {
  align-items: center;
  display: flex;
  gap: 12px;
  min-height: 44px;
}

.card-heading .command-icon {
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.92), transparent 44%),
    #dcf5e9;
  box-shadow:
    inset 0 -8px 14px rgba(29, 123, 100, 0.06),
    0 10px 20px rgba(114, 81, 96, 0.08);
  flex-shrink: 0;
  height: 46px;
  width: 46px;
}

.command-card:nth-child(2) .command-icon {
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.92), transparent 44%),
    #fff0c7;
  color: #8a5b08;
}

.command-card:nth-child(3) .command-icon {
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.92), transparent 44%),
    #ffe4df;
  color: #9a4838;
}

.card-heading .command-icon .icon {
  height: 30px;
  transform: translateY(0.5px);
  width: 30px;
}

.card-heading .title-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  justify-content: center;
  min-width: 0;
}

.card-heading strong,
.card-heading span {
  display: block;
}

.card-heading strong {
  font-size: 18px;
  line-height: 1.08;
  margin-top: 4px;
}

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

.metric-grid div {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(91, 113, 103, 0.12);
  border-radius: 8px;
  min-height: 76px;
  padding: 10px;
}

.metric-grid span,
.metric-grid strong {
  display: block;
}

.metric-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
}

.metric-grid strong {
  font-size: 26px;
  line-height: 1.05;
  margin-top: 8px;
}

.command-card p {
  color: var(--muted);
  line-height: 1.58;
  margin: 0;
}

.text-link {
  align-self: end;
  color: var(--green);
  font-size: 13px;
  font-weight: 840;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

.pending-list {
  display: grid;
  gap: 8px;
}

.pending-list div,
.empty-line {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(91, 113, 103, 0.12);
  border-radius: 8px;
  display: block;
  padding: 10px 11px;
}

.pending-list strong,
.pending-list span {
  display: block;
}

.pending-list strong {
  font-size: 15px;
  line-height: 1.24;
}

.pending-list span,
.empty-line {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin-top: 4px;
}

.quick-actions {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quick-actions a {
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(91, 113, 103, 0.13);
  border-radius: 8px;
  color: var(--ink);
  display: inline-flex;
  font-size: 13px;
  font-weight: 820;
  justify-content: center;
  min-height: 42px;
  padding: 9px 10px;
  text-align: center;
  text-decoration: none;
}

.quick-actions a:hover,
.quick-actions a:focus-visible {
  border-color: rgba(29, 123, 100, 0.36);
  color: var(--green);
  outline: 0;
}

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

.note-card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  min-height: 154px;
  padding: 15px;
}

.note-card span {
  color: var(--coral);
  display: block;
  font-size: 12px;
  font-weight: 860;
  margin-bottom: 8px;
}

.note-card strong {
  display: block;
  font-size: 18px;
  line-height: 1.28;
  margin-bottom: 9px;
}

.note-card p,
.boundary p,
.boundary li {
  color: var(--muted);
  line-height: 1.62;
}

.note-card p {
  margin-bottom: 0;
}

.boundary {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.76fr);
}

.boundary p {
  margin-bottom: 0;
}

.boundary ul {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  margin: 0;
  padding: 16px 16px 16px 34px;
}

@media (max-width: 920px) {
  .hero,
  .boundary {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .status-row,
  .service-grid,
  .today-grid,
  .command-grid,
  .persona-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .command-card.github-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .page-shell {
    padding: 12px 12px 28px;
  }

  .site-header {
    align-items: stretch;
    display: grid;
    gap: 12px;
    top: 8px;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero-text {
    font-size: 16px;
  }

  h1 {
    font-size: 48px;
  }

  .desk-grid,
  .status-row,
  .service-grid,
  .today-grid,
  .command-grid,
  .metric-grid,
  .persona-layout {
    grid-template-columns: 1fr;
  }

  .quick-actions {
    grid-template-columns: 1fr;
  }

  .mascot-card {
    align-items: flex-start;
    display: grid;
  }
}

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

  .sakura-field {
    display: none;
  }

  .button,
  .service-card {
    transition: none;
  }

  .button:hover,
  .button:focus-visible,
  .service-card:hover,
  .service-card:focus-visible {
    transform: none;
  }
}
