:root {
  --bg: #f7f7f4;
  --bg-strong: #f1f1ec;
  --surface: rgba(255, 255, 255, 0.7);
  --surface-strong: rgba(255, 255, 255, 0.88);
  --line: rgba(23, 31, 41, 0.1);
  --ink: #121923;
  --muted: rgba(18, 25, 35, 0.68);
  --muted-soft: rgba(18, 25, 35, 0.48);
  --shadow: 0 30px 80px rgba(17, 24, 32, 0.11);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --content-width: min(1200px, calc(100vw - 48px));
  --renduoma-accent: #0f6b72;
  --renduoma-warm: #f0a05e;
  --pawscope-accent: #ff7b66;
  --pawscope-mint: #4fc8be;
  --campy-accent: #49755c;
  --campy-warm: #cba36b;
  --calmbp-accent: #ff7a57;
  --calmbp-mint: #3ac5aa;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  font-family: "SF Pro Display", "PingFang SC", "Hiragino Sans GB", "Helvetica Neue",
    sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.96), transparent 32%),
    radial-gradient(circle at top right, rgba(196, 210, 225, 0.38), transparent 28%),
    radial-gradient(circle at bottom left, rgba(220, 216, 205, 0.4), transparent 24%),
    linear-gradient(180deg, #fbfbf7 0%, var(--bg) 52%, #f4f3ed 100%);
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body.page-home {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.98), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(198, 214, 232, 0.48), transparent 30%),
    radial-gradient(circle at 8% 92%, rgba(240, 214, 178, 0.36), transparent 26%),
    linear-gradient(180deg, #fcfcf8 0%, #f7f5ef 52%, #f4f1ea 100%);
}

body.page-home::before {
  background:
    radial-gradient(
      72% 64% at 90% 52%,
      transparent 56%,
      rgba(255, 255, 255, 0.5) 63%,
      rgba(255, 255, 255, 0.14) 69%,
      transparent 75%
    ),
    radial-gradient(
      84% 72% at -8% 90%,
      transparent 58%,
      rgba(255, 255, 255, 0.42) 65%,
      rgba(255, 255, 255, 0.12) 70%,
      transparent 76%
    );
  opacity: 0.96;
}

body.page-home::after {
  background:
    radial-gradient(circle at 46% 46%, rgba(255, 255, 255, 0.62), transparent 38%),
    radial-gradient(circle at 68% 18%, rgba(233, 240, 247, 0.24), transparent 26%);
  opacity: 0.88;
}

html[data-home-access="locked"] body.page-home,
body.page-home.is-home-locked {
  overflow: hidden;
}

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

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

.page-shell {
  width: var(--content-width);
  margin: 0 auto;
  padding-bottom: 56px;
  position: relative;
  z-index: 1;
}

.page-home .page-shell {
  padding-bottom: 0;
  transition: filter 260ms ease, transform 260ms ease, opacity 260ms ease;
}

html[data-home-access="locked"] .page-home .page-shell,
body.page-home.is-home-locked .page-shell {
  filter: blur(14px) saturate(1.04);
  transform: scale(1.015);
  pointer-events: none;
  user-select: none;
}

.page-detail .page-shell {
  position: relative;
}

.home-lock-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.26), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(198, 214, 232, 0.22), transparent 26%),
    linear-gradient(180deg, rgba(251, 251, 247, 0.2), rgba(247, 245, 239, 0.34));
  backdrop-filter: blur(26px) saturate(165%);
  -webkit-backdrop-filter: blur(26px) saturate(165%);
  transition: opacity 240ms ease, visibility 240ms ease;
}

html[data-home-access="granted"] .home-lock-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.home-lock-panel {
  width: min(520px, calc(100vw - 40px));
  padding: 14px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.22));
  box-shadow:
    0 30px 80px rgba(17, 24, 32, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.home-lock-field {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.home-lock-field:focus-within {
  background: rgba(255, 255, 255, 0.64);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 0 0 4px rgba(126, 166, 216, 0.12);
}

.home-lock-input {
  width: 100%;
  min-width: 0;
  padding: 18px 20px 18px 22px;
  border: 0;
  border-radius: 22px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 18px;
  appearance: none;
  -webkit-appearance: none;
  -webkit-text-security: disc;
  box-shadow: none;
  transition: color 180ms ease, opacity 180ms ease;
}

.home-lock-input:focus {
  outline: none;
}

.home-lock-input::-webkit-credentials-auto-fill-button,
.home-lock-input::-webkit-contacts-auto-fill-button {
  visibility: hidden;
  display: none !important;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.home-lock-button {
  border: 1px solid rgba(255, 255, 255, 0.54);
  width: 46px;
  height: 46px;
  border-radius: 16px;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.28));
  color: rgba(18, 25, 35, 0.82);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 10px 24px rgba(17, 24, 32, 0.08);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.home-lock-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-lock-button:hover {
  transform: translateX(1px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.34));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 14px 26px rgba(17, 24, 32, 0.1);
}

.home-lock-panel.is-invalid .home-lock-field {
  background: rgba(255, 244, 241, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 0 0 4px rgba(178, 79, 63, 0.08);
}

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

.page-home .site-header {
  justify-content: flex-start;
}

.page-home .brand span:last-child {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f3a34f 0%, #7ea6d8 100%);
  box-shadow: 0 0 0 8px rgba(126, 166, 216, 0.1);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

.site-nav a {
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--ink);
  transform: translateX(-1px);
}

.detail-nav {
  position: sticky;
  top: 18px;
  z-index: 32;
  display: flex;
  justify-content: flex-start;
  padding-top: 18px;
  pointer-events: none;
}

.detail-back-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.28));
  box-shadow:
    0 18px 36px rgba(17, 24, 32, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  color: rgba(18, 25, 35, 0.82);
  pointer-events: auto;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.detail-back-button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.08));
  opacity: 0.92;
}

.detail-back-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.34));
  color: var(--ink);
  box-shadow:
    0 22px 38px rgba(17, 24, 32, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.detail-back-button svg {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translateX(-1px);
}

.hero {
  padding: 42px 0 24px;
}

.minimal-main {
  min-height: calc(100svh - 92px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0 36px;
}

.minimal-grid {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 220px));
  justify-content: center;
  gap: clamp(18px, 3vw, 32px);
}

.icon-entry {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 28px 18px;
  border-radius: 36px;
  transition: transform 220ms ease, background 220ms ease;
}

.icon-entry:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.34);
}

.project-icon.large {
  width: 156px;
  height: 156px;
  border-radius: 34px;
}

.page-home .project-icon.large {
  box-shadow:
    0 16px 34px rgba(16, 23, 31, 0.1),
    0 3px 10px rgba(255, 255, 255, 0.4);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.page-home .icon-entry:hover .project-icon.large {
  box-shadow:
    0 22px 40px rgba(16, 23, 31, 0.12),
    0 4px 12px rgba(255, 255, 255, 0.46);
}

.icon-label {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-align: center;
}

.hero-home {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: clamp(24px, 5vw, 68px);
}

.hero-detail {
  padding-top: 32px;
}

.page-detail .hero-detail {
  padding-top: 18px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 1.02fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: start;
}

.hero-kicker,
.section-label,
.panel-label,
.project-meta {
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-soft);
}

.hero h1,
.section-heading h2,
.content-card h2 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.hero-home h1 {
  max-width: 10ch;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.96;
}

.hero-detail h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.94;
}

.hero-text,
.content-card p,
.section-paragraph,
.detail-list li,
.project-card-body p,
.about-grid p,
.panel-note,
.hero-stat span {
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 144px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.project-card:hover,
.visual-stage img:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: #f9fafc;
  background: var(--ink);
  box-shadow: 0 18px 40px rgba(16, 23, 31, 0.16);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.55);
  border-color: var(--line);
}

.glass-card,
.project-card,
.content-card,
.capability-card,
.visual-stage {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface-strong) 0%, var(--surface) 100%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel {
  padding: 26px;
  border-radius: var(--radius-xl);
}

.hero-stack {
  display: grid;
  gap: 14px;
}

.hero-stat {
  display: grid;
  gap: 4px;
}

.hero-stat strong {
  font-size: 38px;
  letter-spacing: -0.05em;
}

.section-block {
  padding: 18px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.04;
}

.section-heading.compact h2,
.content-card h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
}

.project-grid,
.content-grid,
.about-grid,
.capability-grid {
  display: grid;
  gap: 18px;
}

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

.project-card {
  display: grid;
  gap: 20px;
  min-height: 360px;
  padding: 24px;
  border-radius: var(--radius-xl);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.project-card-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
}

.project-icon,
.hero-icon {
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(16, 23, 31, 0.14);
}

.project-arrow {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 13px;
}

.project-card-body h3 {
  margin: 0 0 10px;
  font-size: 36px;
  letter-spacing: -0.04em;
}

.project-card-body p {
  margin: 0;
  font-size: 16px;
}

.project-tags,
.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.project-tags span,
.feature-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(18, 25, 35, 0.08);
  font-size: 13px;
  color: var(--muted);
}

.card-renduoma {
  background:
    radial-gradient(circle at top right, rgba(15, 107, 114, 0.13), transparent 40%),
    radial-gradient(circle at bottom left, rgba(240, 160, 94, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74));
}

.card-pawscope {
  background:
    radial-gradient(circle at top right, rgba(79, 200, 190, 0.12), transparent 38%),
    radial-gradient(circle at bottom left, rgba(255, 123, 102, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74));
}

.card-campy {
  background:
    radial-gradient(circle at top right, rgba(73, 117, 92, 0.12), transparent 38%),
    radial-gradient(circle at bottom left, rgba(203, 163, 107, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74));
}

.about-block {
  padding: 28px;
  border-radius: var(--radius-xl);
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 30px;
  color: var(--muted-soft);
  font-size: 14px;
}

.icp-footer {
  align-items: center;
  justify-content: center;
  padding: 18px 0 12px;
  font-size: 13px;
  text-align: center;
}

.icp-footer a {
  color: var(--muted-soft);
  transition: color 180ms ease;
}

.icp-footer a:hover {
  color: var(--muted);
}

.project-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 0;
}

.project-heading-main {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  flex: 1 1 340px;
}

.project-title-block {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.project-title-block h1 {
  text-wrap: balance;
}

.project-heading-side {
  flex: 0 0 auto;
}

.visual-stage {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 34px;
  padding: 24px;
}

.renduoma-stage {
  background:
    radial-gradient(circle at top right, rgba(244, 179, 112, 0.28), transparent 30%),
    linear-gradient(160deg, rgba(15, 107, 114, 0.97), rgba(6, 55, 59, 1));
  color: #f3f5f8;
}

.route-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 68px 68px;
  opacity: 0.35;
}

.route-line {
  position: absolute;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 215, 156, 0.94));
}

.route-line-a {
  top: 26%;
  left: 12%;
  width: 58%;
  transform: rotate(15deg);
}

.route-line-b {
  bottom: 26%;
  right: 12%;
  width: 48%;
  transform: rotate(-18deg);
}

.pulse-dot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #f3a34f;
  box-shadow: 0 0 0 0 rgba(243, 163, 79, 0.35);
  animation: pulse 2.6s ease-out infinite;
}

.pulse-one {
  top: 22%;
  right: 18%;
}

.pulse-two {
  bottom: 24%;
  left: 16%;
  animation-delay: 0.8s;
}

.stage-chip,
.stage-card {
  position: absolute;
  border-radius: 22px;
  backdrop-filter: blur(14px);
}

.stage-chip {
  padding: 14px 18px;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.chip-orange {
  top: 14%;
  left: 12%;
  background: rgba(246, 167, 94, 0.18);
}

.chip-blue {
  bottom: 18%;
  right: 12%;
  background: rgba(146, 202, 255, 0.16);
}

.stage-card {
  width: 180px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.stage-card span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.stage-card strong {
  font-size: 28px;
  letter-spacing: -0.04em;
}

.stage-card-top {
  top: 32%;
  right: 12%;
}

.stage-card-bottom {
  bottom: 14%;
  left: 14%;
}

.preview-collage,
.preview-stack {
  display: grid;
  gap: 14px;
  align-content: center;
}

.preview-collage {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background:
    radial-gradient(circle at top left, rgba(255, 123, 102, 0.18), transparent 40%),
    radial-gradient(circle at bottom right, rgba(79, 200, 190, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.92), rgba(255, 255, 255, 0.76));
}

.preview-collage img,
.preview-stack img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(18, 25, 35, 0.08);
  box-shadow: 0 20px 42px rgba(17, 24, 32, 0.12);
  transition: transform 220ms ease;
}

.preview-stack {
  background:
    radial-gradient(circle at top left, rgba(73, 117, 92, 0.16), transparent 40%),
    radial-gradient(circle at bottom right, rgba(203, 163, 107, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 254, 249, 0.92), rgba(255, 255, 255, 0.76));
}

.campy-stack {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  align-content: stretch;
}

.campy-stack img {
  height: 100%;
  object-fit: cover;
}

.campy-stack img:first-child {
  grid-row: 1 / span 2;
}

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

.content-card,
.capability-card {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.detail-list {
  margin: 0;
  padding-left: 20px;
}

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

.capability-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 20px;
}

.capability-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.hero-copy {
  display: grid;
  align-content: start;
  gap: 20px;
}

.hero-copy > * {
  margin: 0;
}

.access-tile {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 8px;
  align-self: start;
}

.title-qr-label {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted-soft);
}

.access-tile-ios {
  width: 128px;
  aspect-ratio: 1 / 1;
  align-content: center;
  justify-items: center;
  padding: 14px 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(18, 25, 35, 0.08);
  box-shadow:
    0 18px 42px rgba(17, 24, 32, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.access-platform-mark {
  width: 36px;
  height: 36px;
  color: rgba(18, 25, 35, 0.88);
}

.access-platform-mark svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.access-platform-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.access-platform-copy {
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
}

.access-platform-copy strong {
  font-size: 19px;
  letter-spacing: -0.04em;
}

.access-platform-copy span {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted-soft);
}

.access-method-card {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
}

.access-method-copy {
  display: grid;
  gap: 8px;
}

.access-method-copy strong {
  font-size: 22px;
  letter-spacing: -0.04em;
}

.access-method-copy span {
  font-size: 15px;
  line-height: 1.62;
  color: var(--muted);
}

.access-method-media {
  flex: 0 0 auto;
}

.access-platform-panel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(18, 25, 35, 0.08);
}

.access-platform-panel .access-platform-copy {
  justify-items: start;
  text-align: left;
}

.access-platform-panel-miniapp .access-platform-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(17, 24, 32, 0.1);
}

.access-platform-panel-miniapp .access-platform-mark img {
  border-radius: inherit;
}

.access-platform-panel-web .access-platform-mark {
  width: 44px;
  height: 44px;
}

.title-qr-frame {
  width: 128px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 7px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(18, 25, 35, 0.08);
  box-shadow:
    0 18px 42px rgba(17, 24, 32, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.title-qr-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  background: #fff;
}

.project-heading-scan {
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
}

.hero-signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero-signal-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 26px;
}

.hero-signal-card strong {
  font-size: 22px;
  letter-spacing: -0.04em;
}

.hero-signal-card span {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.section-block-tight {
  padding-top: 8px;
}

.spotlight-grid {
  display: grid;
  gap: 18px;
}

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

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

.spotlight-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 30px;
}

.spotlight-card img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(18, 25, 35, 0.08);
  box-shadow: 0 20px 40px rgba(17, 24, 32, 0.12);
  object-fit: cover;
  object-position: center top;
}

.spotlight-grid-four .spotlight-card img {
  aspect-ratio: 1.08 / 1;
}

.spotlight-grid-three .spotlight-card img {
  aspect-ratio: 0.82 / 1;
}

.spotlight-copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.spotlight-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.68;
  color: var(--muted);
}

.pawscope-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-content: stretch;
  background:
    radial-gradient(circle at top left, rgba(255, 123, 102, 0.18), transparent 42%),
    radial-gradient(circle at bottom right, rgba(79, 200, 190, 0.2), transparent 38%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.92), rgba(255, 255, 255, 0.76));
}

.showcase-panel {
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(18, 25, 35, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 40px rgba(17, 24, 32, 0.14);
}

.showcase-panel img,
.campy-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-panel-main {
  grid-row: 1 / span 2;
  transform: translateY(12px);
}

.showcase-panel-top {
  margin-top: 8px;
}

.showcase-panel-bottom {
  margin-right: 36px;
}

.showcase-panel-float {
  position: absolute;
  right: 34px;
  bottom: 32px;
  width: 36%;
  aspect-ratio: 1 / 1;
  transform: translateY(6px);
}

.renduoma-surface {
  background:
    radial-gradient(circle at top right, rgba(244, 179, 112, 0.3), transparent 34%),
    linear-gradient(160deg, rgba(15, 107, 114, 0.98), rgba(6, 55, 59, 1));
  color: #f3f5f8;
}

.renduoma-window {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  width: min(78%, 430px);
  padding: 20px;
  border-radius: 30px;
  background: rgba(7, 27, 32, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 40px rgba(4, 26, 28, 0.2);
  backdrop-filter: blur(18px);
}

.renduoma-toolbar,
.surface-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.toolbar-pill,
.surface-pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.toolbar-pill-accent,
.surface-pill.active {
  color: #fff;
  background: rgba(244, 179, 112, 0.18);
  border-color: rgba(255, 216, 168, 0.26);
}

.renduoma-map-panel {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(244, 179, 112, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-route {
  position: absolute;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(255, 215, 156, 0.96));
}

.map-route-a {
  top: 28%;
  left: 12%;
  width: 52%;
  transform: rotate(14deg);
}

.map-route-b {
  right: 10%;
  bottom: 26%;
  width: 40%;
  transform: rotate(-18deg);
}

.map-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #f3a34f;
  box-shadow: 0 0 0 0 rgba(243, 163, 79, 0.35);
  animation: pulse 2.6s ease-out infinite;
}

.map-dot-one {
  top: 24%;
  right: 18%;
}

.map-dot-two {
  bottom: 22%;
  left: 18%;
  animation-delay: 0.8s;
}

.map-tag {
  position: absolute;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.map-tag strong {
  font-size: 15px;
  letter-spacing: -0.03em;
}

.map-tag span,
.renduoma-float-card span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.76);
}

.map-tag-main {
  top: 14%;
  left: 12%;
}

.map-tag-side {
  right: 10%;
  bottom: 12%;
}

.renduoma-list {
  display: grid;
  gap: 10px;
}

.renduoma-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.renduoma-list-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
  letter-spacing: -0.03em;
}

.renduoma-list-item span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.76);
}

.renduoma-list-item em {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  font-style: normal;
  font-size: 12px;
}

.state-busy {
  color: #ffe1bf;
  background: rgba(244, 179, 112, 0.18);
}

.state-open {
  color: #d4fff7;
  background: rgba(79, 200, 190, 0.18);
}

.renduoma-float-card {
  position: absolute;
  right: 26px;
  width: 180px;
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 32px rgba(5, 30, 33, 0.16);
}

.float-trend {
  top: 36px;
}

.float-queue {
  right: 32px;
  bottom: 34px;
}

.renduoma-float-card strong {
  font-size: 30px;
  letter-spacing: -0.05em;
}

.renduoma-float-card small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.trend-bars {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: end;
  gap: 6px;
  height: 84px;
}

.trend-bars span {
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, rgba(255, 225, 191, 0.98), rgba(243, 163, 79, 0.46));
}

.trend-bars span:nth-child(1) {
  height: 32%;
}

.trend-bars span:nth-child(2) {
  height: 48%;
}

.trend-bars span:nth-child(3) {
  height: 42%;
}

.trend-bars span:nth-child(4) {
  height: 68%;
}

.trend-bars span:nth-child(5) {
  height: 56%;
}

.trend-bars span:nth-child(6) {
  height: 74%;
}

.spotlight-surface {
  min-height: 132px;
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(248, 251, 253, 0.74));
  border: 1px solid rgba(18, 25, 35, 0.08);
}

.surface-bars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: 8px;
  height: 76px;
}

.surface-bars span {
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(180deg, #f7c889, #f3a34f);
}

.surface-bars-heat span:nth-child(1) {
  height: 36%;
}

.surface-bars-heat span:nth-child(2) {
  height: 54%;
}

.surface-bars-heat span:nth-child(3) {
  height: 82%;
}

.surface-bars-heat span:nth-child(4) {
  height: 62%;
}

.surface-meter {
  height: 14px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(15, 107, 114, 0.12);
}

.meter-fill {
  display: block;
  width: 64%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0f6b72, #4fc8be);
}

.surface-meta-row,
.surface-caption-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.surface-meta-row strong {
  font-size: 21px;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.surface-meta-row span,
.surface-caption-row span {
  color: var(--muted-soft);
}

.surface-line-chart {
  position: relative;
  height: 86px;
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(rgba(15, 107, 114, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 107, 114, 0.06) 1px, transparent 1px);
  background-size: 100% 28px, 28px 100%;
}

.surface-line-chart span {
  position: absolute;
  inset: 12px 10px 14px;
  background: linear-gradient(180deg, rgba(79, 200, 190, 0.34), rgba(79, 200, 190, 0.08));
  clip-path: polygon(0 88%, 18% 70%, 34% 72%, 52% 36%, 66% 52%, 82% 18%, 100% 30%, 100% 100%, 0 100%);
}

.surface-chat {
  align-content: start;
}

.surface-bubble {
  max-width: 92%;
  padding: 10px 12px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.55;
}

.surface-bubble-user {
  justify-self: start;
  background: rgba(15, 107, 114, 0.1);
  color: var(--ink);
}

.surface-bubble-answer {
  justify-self: end;
  background: rgba(243, 163, 79, 0.16);
  color: var(--ink);
}

.campy-showcase {
  min-height: 620px;
  background:
    radial-gradient(circle at top left, rgba(73, 117, 92, 0.16), transparent 40%),
    radial-gradient(circle at bottom right, rgba(203, 163, 107, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 254, 249, 0.92), rgba(255, 255, 255, 0.76));
}

.campy-phone {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(18, 25, 35, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 42px rgba(17, 24, 32, 0.16);
  aspect-ratio: 326 / 758;
}

.campy-phone-main {
  left: 6%;
  top: 8%;
  width: min(46%, 270px);
  z-index: 2;
  transform: rotate(-6deg);
}

.campy-phone-top {
  top: 8%;
  right: 10%;
  width: min(34%, 206px);
  z-index: 3;
  transform: rotate(6deg);
}

.campy-phone-bottom {
  right: 4%;
  bottom: 10%;
  width: min(32%, 194px);
  z-index: 1;
  transform: rotate(3deg);
}

.labelradar-showcase {
  min-height: 620px;
  background:
    radial-gradient(circle at top right, rgba(211, 244, 84, 0.26), transparent 34%),
    radial-gradient(circle at bottom left, rgba(95, 198, 103, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(252, 255, 245, 0.92), rgba(255, 255, 255, 0.76));
}

.labelradar-phone {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(18, 25, 35, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 42px rgba(17, 24, 32, 0.14);
  aspect-ratio: 1206 / 2622;
}

.labelradar-phone-main {
  left: 7%;
  top: 9%;
  width: min(40%, 238px);
  z-index: 2;
  transform: rotate(-5deg);
}

.labelradar-phone-top {
  top: 8%;
  right: 8%;
  width: min(31%, 190px);
  z-index: 3;
  transform: rotate(6deg);
}

.labelradar-phone-bottom {
  right: 5%;
  bottom: 9%;
  width: min(30%, 184px);
  z-index: 1;
  transform: rotate(3deg);
}

.calmbp-showcase {
  min-height: 620px;
  background:
    radial-gradient(circle at top right, rgba(255, 132, 97, 0.28), transparent 34%),
    radial-gradient(circle at bottom left, rgba(255, 216, 175, 0.24), transparent 38%),
    linear-gradient(180deg, rgba(255, 248, 242, 0.94), rgba(255, 255, 255, 0.78));
}

.calmbp-phone {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(18, 25, 35, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 42px rgba(17, 24, 32, 0.14);
  aspect-ratio: 853 / 1844;
}

.calmbp-phone-main {
  left: 7%;
  top: 9%;
  width: min(39%, 236px);
  z-index: 2;
  transform: rotate(-5deg);
}

.calmbp-phone-top {
  top: 8%;
  right: 8%;
  width: min(31%, 190px);
  z-index: 3;
  transform: rotate(6deg);
}

.calmbp-phone-bottom {
  right: 5%;
  bottom: 9%;
  width: min(30%, 184px);
  z-index: 1;
  transform: rotate(3deg);
}

.mergepdf-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 16px;
  align-content: stretch;
  background:
    radial-gradient(circle at top left, rgba(255, 118, 102, 0.18), transparent 40%),
    radial-gradient(circle at bottom right, rgba(255, 188, 177, 0.22), transparent 36%),
    linear-gradient(180deg, rgba(255, 252, 250, 0.92), rgba(255, 255, 255, 0.78));
}

.mergepdf-panel-main {
  grid-column: 1 / -1;
  aspect-ratio: 1.44 / 1;
}

.mergepdf-panel-top,
.mergepdf-panel-bottom {
  aspect-ratio: 1.16 / 1;
}

.mergepdf-panel-main img,
.mergepdf-panel-top img,
.mergepdf-panel-bottom img,
.mergepdf-spotlight .spotlight-card img {
  object-position: center top;
}

.mergepdf-spotlight .spotlight-card img {
  aspect-ratio: 1.24 / 1;
}

.theme-mergepdf .hero-detail h1 {
  font-size: clamp(32px, 4.3vw, 60px);
  line-height: 0.94;
}

.theme-mergepdf .hero-icon {
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 20px 34px rgba(17, 24, 32, 0.14));
}

.theme-pawscope .hero-detail h1 {
  font-size: clamp(30px, 4.3vw, 56px);
  line-height: 0.92;
}

.theme-labelradar .hero-detail h1 {
  font-size: clamp(32px, 4.2vw, 60px);
  line-height: 0.94;
}

.theme-calmbp .hero-detail h1 {
  font-size: clamp(32px, 4.25vw, 60px);
  line-height: 0.94;
}

.theme-pawscope .split-layout {
  align-items: stretch;
}

.theme-pawscope .hero-copy {
  height: 100%;
  grid-template-rows: auto 1fr;
}

.theme-pawscope .hero-signal-grid {
  height: 100%;
  align-content: stretch;
  grid-auto-rows: 1fr;
}

.theme-pawscope .hero-signal-card:not(.access-method-card) {
  align-content: start;
  min-height: 0;
  min-height: 168px;
  padding: 24px 20px;
}

.capability-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 22px;
}

.capability-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 640ms ease, transform 640ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(243, 163, 79, 0.35);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(243, 163, 79, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(243, 163, 79, 0);
  }
}

@media (max-width: 1024px) {
  .hero-home,
  .split-layout,
  .project-grid,
  .content-grid,
  .about-grid,
  .capability-grid,
  .minimal-grid {
    grid-template-columns: 1fr;
  }

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

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

  .project-heading {
    align-items: stretch;
  }

  .visual-stage {
    min-height: 420px;
  }

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

@media (max-width: 720px) {
  .page-shell {
    width: min(100vw - 28px, 100%);
  }

  .site-header {
    padding: 18px 0;
  }

  .home-lock-overlay {
    padding: 18px;
  }

  .home-lock-panel {
    width: min(100%, 360px);
    padding: 16px;
    border-radius: 28px;
  }

  .detail-nav {
    top: 12px;
    padding-top: 12px;
  }

  .detail-back-button {
    width: 46px;
    height: 46px;
  }

  .minimal-main {
    min-height: calc(100svh - 84px);
    padding-bottom: 24px;
  }

  .icon-entry {
    gap: 14px;
    padding: 18px 12px;
  }

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

  .home-lock-input,
  .home-lock-button {
    font-size: 16px;
  }

  .home-lock-button {
    width: 44px;
    height: 44px;
    border-radius: 15px;
  }

  .site-nav {
    gap: 12px;
    font-size: 13px;
  }

  .hero-home h1 {
    font-size: clamp(48px, 16vw, 74px);
  }

  .hero-detail h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .hero-text,
  .content-card p,
  .section-paragraph,
  .detail-list li,
  .about-grid p {
    font-size: 16px;
  }

  .project-card {
    min-height: 320px;
    padding: 20px;
  }

  .project-icon.large {
    width: 132px;
    height: 132px;
  }

  .icon-label {
    font-size: 22px;
  }

  .project-card-body h3 {
    font-size: 30px;
  }

  .project-heading {
    align-items: start;
  }

  .project-heading-main {
    width: 100%;
  }

  .hero-signal-grid,
  .spotlight-grid-four,
  .spotlight-grid-three {
    grid-template-columns: 1fr;
  }

  .access-method-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-icon {
    width: 84px;
    height: 84px;
  }

  .project-heading-side {
    width: 100%;
  }

  .access-tile {
    justify-items: start;
    text-align: left;
  }

  .access-tile-ios {
    width: min(100%, 220px);
    justify-items: start;
    text-align: left;
  }

  .access-platform-copy {
    justify-items: start;
    text-align: left;
  }

  .access-method-media {
    justify-self: start;
  }

  .title-qr-frame {
    width: min(100%, 220px);
    padding: 14px;
    border-radius: 26px;
  }

  .visual-stage {
    min-height: 360px;
    padding: 16px;
  }

  .pawscope-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto;
    min-height: auto;
  }

  .showcase-panel-main {
    grid-column: 1 / -1;
    grid-row: auto;
    transform: none;
    aspect-ratio: 1.08 / 1;
  }

  .showcase-panel-top {
    margin-top: 0;
  }

  .showcase-panel-bottom {
    margin-right: 0;
  }

  .showcase-panel-float {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    transform: none;
  }

  .renduoma-surface {
    display: grid;
    gap: 14px;
  }

  .renduoma-window {
    width: 100%;
    padding: 18px;
  }

  .renduoma-float-card {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
  }

  .campy-showcase {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .campy-phone {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .campy-phone-main {
    grid-column: 1 / -1;
  }

  .labelradar-showcase {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .calmbp-showcase {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .mergepdf-showcase {
    min-height: auto;
  }

  .labelradar-phone {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .calmbp-phone {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .labelradar-phone-main {
    grid-column: 1 / -1;
  }

  .calmbp-phone-main {
    grid-column: 1 / -1;
  }

  .mergepdf-showcase {
    grid-template-columns: 1fr;
  }

  .mergepdf-panel-main,
  .mergepdf-panel-top,
  .mergepdf-panel-bottom {
    grid-column: auto;
    aspect-ratio: 1.18 / 1;
  }

  .campy-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto;
  }

  .campy-stack img:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .stage-card {
    width: 150px;
  }

  .stage-card strong {
    font-size: 22px;
  }

  .site-footer {
    flex-direction: column;
  }
}
