:root {
  --canvas: #f4f5f7;
  --paper: rgba(244,245,247,.68);
  --gold: #c5a065;
  --gold-light: #d1b47f;
  --gold-ghost: rgba(197,160,101,.12);
  --ink: #3d3635;
  --ink-soft: rgba(61,54,53,.62);
  --cocoa: #3d3635;
  --mist: #d9d8dc;
  --maroon: #8a2e30;
  --cyan: #68c6d9;
  --white: #fff;
  --glass-bg: rgba(244,245,247,.58);
  --glass-bg-strong: rgba(244,245,247,.72);
  --glass-border: rgba(61,54,53,.1);
  --glass-border-hover: rgba(61,54,53,.2);
  --glass-shadow: 0 18px 50px rgba(61,54,53,.1), inset 0 1px 0 rgba(255,255,255,.82), inset 0 -1px 0 rgba(61,54,53,.06);
  --glass-spring: cubic-bezier(.16,1,.3,1);
  --shadow-soft: 0 8px 24px rgba(61,54,53,.06);
  --shadow-card: 0 16px 48px rgba(61,54,53,.08);
  --shadow-float: 0 24px 72px rgba(61,54,53,.12);
  color: var(--ink);
  background: var(--canvas);
  font-family: system-ui, -apple-system, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--canvas);
}
img, video { max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.shell { width: min(1152px, calc(100% - 48px)); margin-inline: auto; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(36,33,31,.08);
  background: rgba(247,245,240,.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
}
.brand {
  display: inline-flex; align-items: center; gap: 10px; width: max-content;
  text-decoration: none;
}
.brand-logo { width: 38px; height: 38px; border-radius: 11px; object-fit: cover; box-shadow: 0 0 0 1px rgba(36,33,31,.08); }
.brand-text { display: flex; flex-direction: column; gap: 1px; }
.brand-name { font-weight: 750; font-size: 16px; letter-spacing: -.03em; color: var(--ink); }
.brand-slogan { font-size: 11px; color: rgba(44,36,32,.48); white-space: nowrap; }
.nav-links {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.5vw, 20px);
  color: rgba(44,36,32,.6);
  font-size: 13px;
  white-space: nowrap;
}
.nav-links a { text-decoration: none; font-weight: 600; transition: color .2s; }
.nav-links a:hover { color: var(--gold); }
.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-contact {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(36,33,31,.12);
  border-radius: 999px;
  background: transparent;
  color: rgba(44,36,32,.7);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}
.nav-contact:hover {
  border-color: rgba(200,149,108,.48);
  background: rgba(255,255,255,.72);
  color: var(--ink);
}
.nav-platform {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  box-shadow: none;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s, box-shadow .2s;
}
.nav-platform:not(.is-unavailable):hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(36,33,31,.14);
}
.nav-platform small {
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.2);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .06em;
}
.nav-platform.is-unavailable {
  cursor: default;
  background: rgba(36,33,31,.06);
  color: rgba(44,36,32,.62);
  box-shadow: inset 0 0 0 1px rgba(36,33,31,.08);
}

/* ===== Typography ===== */
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: "Noto Serif SC", "Songti SC", "Source Han Serif SC", Georgia, ui-serif, serif;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--ink);
}
h1 {
  margin: 20px 0 24px;
  font-size: clamp(40px, 5.2vw, 60px);
  line-height: 1.28;
  position: relative;
}
h2 {
  margin: 20px 0 24px;
  font-size: clamp(38px, 4.5vw, 54px);
  line-height: 1.3;
  position: relative;
}
h1 em, h2 em {
  font-style: normal;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, #b8825a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
/* Title decorative elements */
.title-heart {
  display: inline-block;
  margin-left: 10px;
  font-size: .55em;
  color: var(--gold);
  opacity: .55;
  vertical-align: middle;
  transform: translateY(-.15em);
}
.title-heart-sm {
  display: inline-block;
  margin-left: 8px;
  font-size: .5em;
  color: var(--gold);
  opacity: .5;
  vertical-align: super;
}
.title-paw {
  display: inline-block;
  margin-left: 10px;
  font-size: .5em;
  opacity: .45;
  vertical-align: middle;
  transform: translateY(-.1em);
}
.title-sub {
  font-size: .42em;
  font-weight: 500;
  color: rgba(44,36,32,.45);
  margin-left: 4px;
  letter-spacing: 0;
}
.map-copy h2 .title-sub {
  color: rgba(253,248,240,.4);
}
.eyebrow {
  margin: 0; display: flex; align-items: center; gap: 10px;
  color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: ""; width: 24px; height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border-radius: 2px;
}
.eyebrow-dark { color: var(--gold-light); opacity: .9; }
.eyebrow-dark::before { background: linear-gradient(90deg, var(--gold-light), var(--gold)); }

/* ===== Hero Section ===== */
.hero {
  position: relative;
  padding-block: 20px 0;
  overflow: hidden;
}
.hero::before {
  content: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: clamp(48px, 6vw, 80px);
  padding-block: 72px 96px;
  min-height: calc(100svh - 72px);
}
.hero-copy { position: relative; z-index: 2; }
.hero-title {
  margin: 18px 0 28px;
  font-family: "Noto Serif SC", "Songti SC", "Source Han Serif SC", Georgia, ui-serif, serif;
  font-weight: 600;
  letter-spacing: -.015em;
  color: var(--ink);
}
.hero-title-line {
  display: block;
  font-size: clamp(42px, 5.2vw, 64px);
  line-height: 1.2;
  white-space: nowrap;
}
.hero-title-gold {
  margin-top: 4px;
  background: none;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: currentColor;
  color: var(--gold);
  position: relative;
  display: inline-block;
}
.hero-intro {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(44,36,32,.55);
  font-size: 14.5px;
  line-height: 2;
  letter-spacing: .01em;
}
.hero-intro em {
  font-style: normal;
  color: var(--ink);
  font-weight: 600;
}
.hero-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: gap .25s ease;
  letter-spacing: .02em;
}
.hero-cta-link:hover { gap: 14px; }
.hero-cta-link span {
  font-size: 22px;
  transition: transform .25s ease;
}
.hero-cta-link:hover span { transform: translateX(4px); }

/* Hero feature cards */
.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
}
.hf-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 18px 4px;
  border: 0;
  border-left: 1px solid rgba(36,33,31,.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: all .25s ease;
}
.hf-card:hover {
  border-color: rgba(36,33,31,.18);
  box-shadow: none;
  transform: none;
}
.hf-card:first-child { padding-left: 0; border-left: 0; }
.hf-icon {
  width: 42px;
  height: 42px;
  color: var(--gold);
  display: grid;
  place-items: center;
}
.hf-icon svg { width: 100%; height: 100%; }
.hf-card strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 4px;
}
.hf-card span:last-child {
  font-size: 13px;
  color: rgba(44,36,32,.45);
  line-height: 1.5;
}

/* Pet showcase stage card */
.pet-showcase {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}
.stage-card {
  position: relative;
  width: min(100%, 580px);
  aspect-ratio: .98;
  padding: 18px;
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 28px 72px rgba(36,33,31,.1);
  border: 1px solid rgba(36,33,31,.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stage-card::before {
  content: none;
}
.stage-badge {
  position: absolute;
  top: 24px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  background: rgba(255,254,251,.9);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  z-index: 3;
  box-shadow: 0 0 0 1px rgba(36,33,31,.07);
}
.badge-paw { font-size: 16px; }
.badge-spark {
  color: var(--gold);
  font-size: 14px;
  margin-left: 2px;
}
.stage-pager {
  position: absolute;
  top: 30px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(44,36,32,.4);
  z-index: 3;
}
.pager-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  font-family: Georgia, serif;
}
.pager-dots {
  display: inline-flex;
  gap: 4px;
  margin-left: 6px;
}
.pager-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(200,149,108,.3);
}
.pager-dots i.on {
  background: var(--gold);
  width: 8px;
  border-radius: 999px;
}

/* Arch stage */
.stage-arch {
  position: relative;
  flex: 1;
  display: grid;
  place-items: end center;
  overflow: hidden;
  border-radius: 48% 48% 20px 20px / 42% 42% 20px 20px;
  background: linear-gradient(180deg, #eee8df 0%, #e5ddd2 100%);
}
.arch-curtain {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.42), transparent 56%);
}
.arch-curtain::before,
.arch-curtain::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30%;
}
.arch-curtain::before,
.arch-curtain::after,
.arch-sparkles,
.arch-heart,
.arch-paw { display: none; }
.arch-curtain::before {
  left: 0;
  background: linear-gradient(90deg, rgba(200,149,108,.25) 0%, transparent 100%);
}
.arch-curtain::after {
  right: 0;
  background: linear-gradient(-90deg, rgba(200,149,108,.25) 0%, transparent 100%);
}
.arch-sparkles { position: absolute; inset: 0; pointer-events: none; }
.arch-sparkles i {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  box-shadow: 0 0 8px rgba(255,255,255,.9), 0 0 16px rgba(255,220,180,.6);
  animation: twinkle 3s ease-in-out infinite;
}
.arch-sparkles i:nth-child(1) { left: 18%; top: 22%; animation-delay: 0s; }
.arch-sparkles i:nth-child(2) { left: 30%; top: 55%; animation-delay: .8s; }
.arch-sparkles i:nth-child(3) { right: 22%; top: 30%; animation-delay: 1.2s; }
.arch-sparkles i:nth-child(4) { right: 12%; top: 50%; animation-delay: .4s; }
.arch-sparkles i:nth-child(5) { left: 45%; top: 12%; animation-delay: 1.6s; }
.arch-sparkles i:nth-child(6) { right: 35%; top: 65%; animation-delay: 2s; }
@keyframes twinkle {
  0%, 100% { opacity: .3; transform: scale(.7); }
  50% { opacity: 1; transform: scale(1.2); }
}
.arch-heart {
  position: absolute;
  left: 14%;
  top: 55%;
  font-size: 42px;
  color: var(--gold-light);
  opacity: .6;
  animation: floatHeart 4s ease-in-out infinite;
  text-shadow: 0 0 12px rgba(200,149,108,.4);
}
@keyframes floatHeart {
  0%, 100% { transform: translateY(0) scale(1); opacity: .5; }
  50% { transform: translateY(-12px) scale(1.08); opacity: .75; }
}
.arch-paw {
  position: absolute;
  right: 16%;
  top: 42%;
  font-size: 32px;
  opacity: .35;
  filter: sepia(.3);
}
.stage-platform {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 82%;
  height: 70px;
  z-index: 1;
}
.platform-glow {
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  width: 110%;
  height: 60px;
  display: none;
}
.platform-rim {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28px;
  border-radius: 50% / 100%;
  background: #bca38a;
  box-shadow: 0 5px 14px rgba(75,64,57,.18);
}
.platform-top {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 20px;
  border-radius: 50% / 100%;
  background: #e9ded1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.platform-top::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 4px;
  transform: translateX(-50%);
  width: 70%;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.6);
  filter: blur(2px);
}

/* Pet video in stage */
.pet-video-wrap {
  position: absolute;
  left: 50%;
  bottom: 52px;
  transform: translateX(-50%);
  width: 48%;
  height: 70%;
  z-index: 2;
  display: grid;
  place-items: end center;
}
.pet-video {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 12px 18px rgba(75,64,57,.18));
}
.pet-video.is-active { display: block; }

/* Pet info */
.stage-pet-info {
  display: none;
}
.pet-name-block {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}
.pet-name-block h3 {
  margin: 0;
  font-family: "Noto Serif SC", "Songti SC", Georgia, serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.02em;
}
.pet-en {
  padding: 2px 10px;
  border: 1px solid rgba(200,149,108,.3);
  border-radius: 999px;
  font-size: 12px;
  color: rgba(44,36,32,.45);
  background: rgba(255,255,255,.4);
  font-style: italic;
}
.pet-quote {
  margin: 0;
  font-family: "Noto Serif SC", "Songti SC", Georgia, serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(44,36,32,.55);
  font-weight: 500;
}

/* Stage footer */
.stage-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 4px;
  z-index: 3;
  position: relative;
}
.stage-official {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(44,36,32,.5);
  font-size: 13px;
  font-weight: 600;
}
.official-icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
  display: grid;
  place-items: center;
}
.official-icon svg { width: 100%; height: 100%; }
.pet-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(36,33,31,.09);
  border-radius: 16px;
  background: #f1ede7;
}
.pet-switch button {
  min-height: 40px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: rgba(44,36,32,.45);
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all .25s ease;
}
.pet-switch button.is-active {
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  box-shadow: none;
}

/* Hero divider */
.hero-divider {
  display: none;
}
.hero-divider svg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 80px;
}
.divider-paw {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  font-size: 24px;
  opacity: .45;
  filter: sepia(.3);
  z-index: 2;
}
.divider-star {
  position: absolute;
  left: 22%;
  bottom: 24px;
  color: var(--gold);
  font-size: 14px;
  opacity: .5;
}
.divider-dot {
  position: absolute;
  right: 28%;
  bottom: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .35;
  box-shadow: 0 0 8px rgba(200,149,108,.5);
}

/* ===== Section common ===== */
.section-title {
  margin: 20px 0 24px;
  font-family: "Noto Serif SC", "Songti SC", "Source Han Serif SC", Georgia, ui-serif, serif;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--ink);
}
.section-title .title-line {
  display: block;
  font-size: clamp(38px, 4.5vw, 54px);
  line-height: 1.3;
}
.section-title .title-gold {
  margin-top: 4px;
  background: none;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: currentColor;
  color: var(--gold);
}
.section-title .title-nowrap {
  white-space: nowrap;
}
.section-title .title-sub {
  font-size: .45em;
  font-weight: 500;
  color: rgba(44,36,32,.4);
  margin-left: 6px;
  letter-spacing: 0;
}
.title-heart-big {
  display: inline-block;
  margin-left: 12px;
  font-size: .55em;
  color: var(--gold);
  opacity: .5;
  vertical-align: middle;
  transform: translateY(-.1em);
}
.title-heart-img {
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  margin-left: 10px;
  vertical-align: middle;
  object-fit: contain;
  transform: translateY(-.05em);
}
.title-heart-img.small {
  width: .9em;
  height: .9em;
  margin: 0 4px;
  transform: translateY(-.08em);
}
.section-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding-bottom: 7px;
  border-bottom: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: gap .25s ease;
  letter-spacing: .01em;
}
.section-cta:hover { gap: 14px; }
.section-cta span { font-size: 18px; transition: transform .25s ease; }
.section-cta:hover span { transform: translateX(4px); }
.section-cta-light {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

/* Section decorative top divider */
.section-deco-top {
  display: none;
}
.section-deco-top svg {
  position: absolute;
  left: 0; right: 0; top: 0;
  width: 100%;
  height: 50px;
}
.section-deco-top > span {
  position: relative;
  z-index: 2;
  color: var(--gold);
  font-size: 14px;
  opacity: .5;
}
.deco-heart { font-size: 18px; }
.deco-paw { font-size: 18px; opacity: .4 !important; filter: sepia(.3); }
.deco-shield { font-size: 16px; }

/* ===== Coming Soon Pill ===== */
.coming-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  margin-bottom: 24px;
  border: 1px solid rgba(200,149,108,.25);
  border-radius: 999px;
  background: transparent;
  color: rgba(44,36,32,.55);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
}
.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,149,108,.15);
}

/* ===== Create Section ===== */
.create-section {
  position: relative;
  padding-block: 120px;
  border-top: 1px solid rgba(36,33,31,.08);
}
.create-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: clamp(56px, 8vw, 112px);
}
.photo-stack {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 14px;
  padding: 36px;
  border-radius: 30px;
  background: #ece7df;
}
.photo-sparkles,
.photo-paw { display: none; }
.photo-sparkles { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.photo-sparkles i {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px rgba(200,149,108,.6), 0 0 16px rgba(255,220,180,.5);
  animation: twinkle 3s ease-in-out infinite;
}
.photo-sparkles i:nth-child(1) { left: 8%; top: 15%; animation-delay: .2s; }
.photo-sparkles i:nth-child(2) { right: 12%; top: 25%; animation-delay: 1s; }
.photo-sparkles i:nth-child(3) { left: 30%; bottom: 20%; animation-delay: 1.8s; }
.photo-card {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 7px 7px 11px;
  border: 1px solid rgba(36,33,31,.07);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 12px 26px rgba(36,33,31,.07);
}
.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}
.photo-card figcaption {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 4px 0;
  color: rgba(44,36,32,.5);
  font-size: 12px;
  font-weight: 600;
}
.check-icon {
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}
.photo-card-one,
.photo-card-two { inset: auto; transform: none; z-index: 1; }
.photo-card-three {
  grid-column: 1 / -1;
  width: 54%;
  justify-self: center;
  margin-top: -30px;
  inset: auto;
  transform: none;
  z-index: 2;
}
.photo-paw {
  position: absolute;
  right: 8%;
  top: 8%;
  font-size: 28px;
  opacity: .3;
  filter: sepia(.3);
  z-index: 0;
}
.create-flow {
  position: absolute;
  right: 0;
  bottom: 10%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(36,33,31,.08);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 8px 20px rgba(36,33,31,.07);
  z-index: 4;
}
.flow-tag {
  padding: 4px 10px;
  border-radius: 8px;
  background: var(--gold-ghost);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}
.flow-arrow {
  color: var(--gold);
  font-size: 12px;
}
.create-flow strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}
.create-copy > p:not(.eyebrow) {
  color: rgba(44,36,32,.55);
  line-height: 1.95;
  font-size: 14.5px;
  letter-spacing: .01em;
  max-width: 460px;
}
.create-copy .button { margin-top: 20px; }
.create-copy small {
  display: block;
  margin-top: 10px;
  color: rgba(44,36,32,.4);
  font-size: 12px;
}

/* ===== Album Section ===== */
.album-section {
  position: relative;
  min-height: auto;
  padding-block: 120px;
  border-top: 1px solid rgba(36,33,31,.08);
  background: var(--paper);
}
.album-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: center;
  gap: clamp(52px, 8vw, 112px);
}
.album-copy .section-title .title-line { font-size: clamp(28px, 3.4vw, 42px); line-height: 1.35; }
.album-copy > p:not(.eyebrow) {
  color: rgba(44,36,32,.55);
  line-height: 1.95;
  font-size: 14.5px;
  max-width: 460px;
}
.album-card {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(36,33,31,.08);
  border-radius: 24px;
  background: #f2eee8;
  box-shadow: 0 20px 48px rgba(36,33,31,.07);
}
.album-card::before {
  content: none;
}
.album-sparkles { display: none; }
.album-sparkles { position: absolute; inset: 0; pointer-events: none; z-index: 3; overflow: hidden; border-radius: 30px; }
.album-sparkles i {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 6px rgba(200,149,108,.6), 0 0 12px rgba(255,220,180,.5);
  animation: twinkle 3.5s ease-in-out infinite;
}
.album-sparkles i:nth-child(1) { left: 10%; top: 15%; animation-delay: 0s; }
.album-sparkles i:nth-child(2) { right: 15%; top: 10%; animation-delay: .6s; }
.album-sparkles i:nth-child(3) { left: 25%; bottom: 18%; animation-delay: 1.2s; }
.album-sparkles i:nth-child(4) { right: 30%; bottom: 12%; animation-delay: 1.8s; }
.album-sparkles i:nth-child(5) { left: 60%; top: 8%; animation-delay: 2.4s; }
.album-toolbar {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 4px 6px 18px;
}
.album-title-wrap { display: flex; align-items: center; gap: 8px; }
.album-paw { font-size: 18px; }
.album-toolbar strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.album-count {
  font-size: 12px;
  color: rgba(44,36,32,.45);
  font-weight: 500;
}
.album-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 190px);
  gap: 10px;
}
.album-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 18px;
  background: rgba(253,248,240,.6);
  box-shadow: 0 2px 10px rgba(200,149,108,.08);
}
.album-item img, .album-item video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.album-wide { grid-column: span 2; }
.album-video { grid-column: span 2; }
.album-video video { object-fit: contain; }
.album-tag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
}
.video-tag {
  background: rgba(200,149,108,.85);
  color: #fff;
}

/* ===== Map Section ===== */
.map-section {
  position: relative;
  background: var(--cocoa);
  color: var(--canvas);
  padding-block: 80px 112px;
  overflow: hidden;
}
.map-section::before {
  content: none;
}
.map-deco svg path { stroke-opacity: .6; }
.map-layout {
  position: relative;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  align-items: center;
  gap: clamp(52px, 8vw, 120px);
  z-index: 2;
}
.map-copy .eyebrow-dark { color: var(--gold-light); }
.section-title-dark {
  margin: 20px 0 24px;
  font-family: "Noto Serif SC", "Songti SC", "Source Han Serif SC", Georgia, ui-serif, serif;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--canvas);
}
.section-title-dark .title-line {
  display: block;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.3;
}
.section-title-dark .title-gold {
  margin-top: 4px;
  background: none;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: currentColor;
  color: #d7b38d;
}
.section-title-dark .title-sub {
  font-size: .42em;
  font-weight: 500;
  color: rgba(253,248,240,.4);
  margin-left: 6px;
}
.title-line-small {
  display: block;
  font-size: clamp(18px, 2vw, 24px) !important;
  font-weight: 500;
  color: rgba(253,248,240,.55);
  margin-top: 6px;
}
.map-copy > p:not(.eyebrow) {
  max-width: 480px;
  color: rgba(253,248,240,.55);
  font-size: 14px;
  line-height: 1.95;
}
.map-copy > p em {
  font-style: normal;
  color: rgba(253,248,240,.75);
  font-size: 12.5px;
  font-weight: 500;
}
.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
  color: rgba(253,248,240,.55);
  font-size: 13px;
  font-weight: 500;
}
.map-legend span { display: inline-flex; align-items: center; gap: 8px; }
.legend-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255,255,255,.08);
}
.legend-gold { background: var(--gold-light); }
.legend-cyan { background: var(--cyan); }

/* Radar card dark version */
.radar-card {
  position: relative;
  aspect-ratio: 1.18;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255,254,251,.12);
  border-radius: 26px;
  background: rgba(36,33,31,.22);
  box-shadow: none;
}
.radar-glow,
.radar-sweep,
.radar-sparkles,
.radar-pulse { display: none; }
.radar-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,149,108,.15) 0%, transparent 70%);
  pointer-events: none;
}
.radar-grid {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, transparent 0 19%, rgba(253,248,240,.07) 19.5% 20%),
    linear-gradient(90deg, transparent 49.7%, rgba(253,248,240,.05) 50%, transparent 50.3%),
    linear-gradient(transparent 49.7%, rgba(253,248,240,.05) 50%, transparent 50.3%);
  pointer-events: none;
}
.radar-sweep {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg 300deg, rgba(200,149,108,.18) 350deg, rgba(200,149,108,.4) 360deg);
  animation: sweep 10s linear infinite;
  pointer-events: none;
}
@keyframes sweep { to { transform: rotate(360deg); } }
.radar-sparkles { position: absolute; inset: 0; pointer-events: none; }
.radar-sparkles i {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(253,248,240,.8);
  box-shadow: 0 0 8px rgba(253,248,240,.6);
  animation: twinkle 4s ease-in-out infinite;
}
.radar-sparkles i:nth-child(1) { left: 22%; top: 18%; animation-delay: .5s; }
.radar-sparkles i:nth-child(2) { right: 18%; top: 32%; animation-delay: 1.5s; }
.radar-sparkles i:nth-child(3) { left: 30%; bottom: 22%; animation-delay: 2.5s; }
.radar-sparkles i:nth-child(4) { right: 28%; bottom: 28%; animation-delay: 3.5s; }
.radar-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  padding: 5px;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 0 10px rgba(200,149,108,.12), 0 8px 24px rgba(200,149,108,.4);
  z-index: 5;
}
.radar-center img { width: 100%; height: 100%; border-radius: 15px; object-fit: cover; }
.radar-pulse {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(200,149,108,.4);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.8); opacity: 0; }
}
.friend {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: min(46%, 340px);
  min-height: 68px;
  padding: 7px 10px 7px 7px;
  border: 1px solid rgba(255,254,251,.12);
  border-radius: 18px;
  background: rgba(255,254,251,.08);
  font-size: 11px;
  color: rgba(253,248,240,.8);
  z-index: 4;
}
.friend-bubble-left {
  flex-direction: row-reverse;
  padding: 7px 7px 7px 10px;
  text-align: right;
}
.friend img {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(253,248,240,.2);
}
.friend-copy { min-width: 0; flex: 1; padding-block: 1px; }
.friend-meta {
  display: block;
  color: rgba(253,248,240,.92);
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
}
.friend-status {
  display: -webkit-box;
  margin: 3px 0 0;
  overflow: hidden;
  color: rgba(253,248,240,.62);
  font-size: 10.5px;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.friend-one { right: 52%; top: 10%; box-shadow: none; }
.friend-two { left: 52%; top: 30%; box-shadow: none; }
.friend-three { right: 52%; bottom: 28%; box-shadow: none; }
.friend-four { left: 52%; bottom: 10%; box-shadow: none; }
.radar-badge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(253,248,240,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(253,248,240,.65);
  font-size: 12px;
  font-weight: 500;
  z-index: 6;
}

/* ===== Services Section ===== */
.services-section {
  position: relative;
  padding-block: 120px;
  border-top: 1px solid rgba(36,33,31,.08);
}
.services-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: center;
  gap: clamp(52px, 8vw, 112px);
}
.services-copy { min-width: 0; }
.services-copy > p:not(.eyebrow) {
  color: rgba(44,36,32,.55);
  line-height: 1.95;
  font-size: 14.5px;
  max-width: 460px;
}
.services-copy .section-title .title-line { font-size: clamp(40px, 4.8vw, 56px); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid rgba(36,33,31,.08);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: none;
  transition: all .3s ease;
}
.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(36,33,31,.16);
  box-shadow: 0 12px 28px rgba(36,33,31,.06);
}
.service-icon-wrap {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
}
.service-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(200,149,108,.15));
}
.service-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}
.service-desc {
  font-size: 12.5px;
  color: rgba(44,36,32,.45);
  line-height: 1.5;
}

/* ===== Plan Section ===== */
.plan-section {
  position: relative;
  padding-block: 120px;
  border-top: 1px solid rgba(36,33,31,.08);
}
.plan-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
}
.plan-heading > p {
  max-width: 360px;
  color: rgba(44,36,32,.5);
  font-size: 14px;
  line-height: 1.85;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.plan-card {
  position: relative;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 32px 28px 28px;
  border: 1px solid rgba(36,33,31,.08);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: none;
  transition: all .3s ease;
}
.plan-card:hover {
  transform: translateY(-2px);
  border-color: rgba(36,33,31,.16);
  box-shadow: 0 12px 30px rgba(36,33,31,.06);
}
.plan-card-featured {
  background: #f0ebe4;
  border-color: rgba(36,33,31,.12);
  box-shadow: none;
  transform: none;
}
.plan-card-featured:hover { transform: translateY(-2px); }
.plan-icon {
  font-size: 32px;
  margin-bottom: 4px;
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 28px;
  padding: 6px 16px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 4px 12px rgba(200,149,108,.4);
}
.plan-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .02em;
}
.plan-blurb {
  min-height: 48px;
  margin-bottom: 24px;
  color: rgba(44,36,32,.48);
  font-size: 13.5px;
  line-height: 1.7;
}
.plan-value {
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(200,149,108,.12);
}
.plan-value strong {
  font-family: "Noto Serif SC", "Songti SC", Georgia, serif;
  font-size: 36px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.plan-value small {
  margin-top: 4px;
  color: rgba(44,36,32,.4);
  font-size: 12px;
}
.plan-card ul {
  flex: 1;
  display: grid;
  align-content: start;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
.plan-card li {
  display: flex;
  gap: 10px;
  color: rgba(44,36,32,.55);
  font-size: 13.5px;
  line-height: 1.5;
  align-items: flex-start;
}
.plan-btn {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 0;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all .25s ease;
}
.plan-btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: none;
}
.plan-btn-primary:hover { box-shadow: 0 8px 20px rgba(36,33,31,.12); transform: translateY(-1px); }
.plan-btn-secondary {
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(200,149,108,.2);
  color: var(--ink);
}
.plan-btn-secondary:hover { background: rgba(255,255,255,.85); }
.plan-btn:disabled { cursor: not-allowed; opacity: .65; }

/* ===== Questions Section ===== */
.questions-section {
  position: relative;
  padding-block: 120px;
  overflow: hidden;
  border-top: 1px solid rgba(36,33,31,.08);
  background: var(--paper);
}
.faq-bg-decor,
.faq-scene-bottom { display: none; }
.faq-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.faq-paw-left {
  position: absolute;
  left: 8%;
  top: 38%;
  font-size: 52px;
  opacity: .12;
  filter: sepia(.4);
}
.faq-heart {
  position: absolute;
  left: 30%;
  top: 25%;
  width: 80px;
  height: 80px;
  opacity: .25;
}
.faq-heart img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.faq-sparkles { position: absolute; inset: 0; }
.faq-sparkles i {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 6px rgba(200,149,108,.6), 0 0 12px rgba(255,220,180,.5);
  animation: twinkle 3.5s ease-in-out infinite;
}
.faq-sparkles i:nth-child(1) { right: 8%; top: 15%; animation-delay: 0s; }
.faq-sparkles i:nth-child(2) { right: 15%; top: 40%; animation-delay: .8s; }
.faq-sparkles i:nth-child(3) { right: 5%; bottom: 30%; animation-delay: 1.6s; }
.faq-sparkles i:nth-child(4) { left: 40%; top: 8%; animation-delay: 2.4s; }
.faq-sparkles i:nth-child(5) { right: 25%; bottom: 15%; animation-delay: 1.2s; }
.faq-sparkles i:nth-child(6) { left: 60%; bottom: 5%; animation-delay: 2s; }

.faq-scene-bottom {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 200px;
  pointer-events: none;
  z-index: 0;
}
.cat-bed {
  position: absolute;
  left: 5%;
  bottom: 20px;
  width: 220px;
  height: 140px;
  border-radius: 50% 50% 45% 45% / 55% 55% 45% 45%;
  background: linear-gradient(180deg, #f6e3c8 0%, #e8cfa8 100%);
  box-shadow:
    inset 0 8px 16px rgba(255,255,255,.5),
    0 8px 24px rgba(200,149,108,.2);
}
.cat-bed-inner {
  position: absolute;
  inset: 20px 18px 18px;
  border-radius: 50% 50% 45% 45% / 55% 55% 45% 45%;
  background: linear-gradient(180deg, #fff5e6 0%, #fdf0df 100%);
  box-shadow: inset 0 2px 8px rgba(200,149,108,.15);
}
.paw-cushion {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  font-size: 42px;
  filter: sepia(.2);
  opacity: .8;
}
.yarn-ball-small {
  position: absolute;
  left: 22%;
  bottom: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(145deg, #e8cfa8 0%, #c8956c 100%);
  box-shadow:
    inset 0 2px 4px rgba(255,255,255,.4),
    0 4px 12px rgba(200,149,108,.25);
}
.yarn-ball-small::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255,255,255,.4);
}
.yarn-ball-right {
  position: absolute;
  right: 10%;
  bottom: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(145deg, #e8cfa8 0%, #c8956c 100%);
  box-shadow:
    inset 0 2px 4px rgba(255,255,255,.4),
    0 4px 12px rgba(200,149,108,.25);
}
.yarn-ball-right::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,.35);
}
.fish-toy {
  position: absolute;
  right: 18%;
  bottom: 60px;
  font-size: 48px;
  opacity: .7;
  filter: sepia(.3);
}

.questions-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
  padding-top: 20px;
}
.questions-copy .section-title .title-line { font-size: clamp(42px, 5vw, 62px); }
.questions-copy > p {
  max-width: 360px;
  color: rgba(44,36,32,.52);
  font-size: 14.5px;
  line-height: 1.85;
}
.questions-copy a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: 18px;
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 16px;
  align-content: start;
}
.faq-item {
  position: relative;
  padding: 0;
  border-radius: 18px;
  background: var(--canvas);
  box-shadow: none;
  border: 1px solid rgba(36,33,31,.08);
  transition: all .3s ease;
  overflow: visible;
}
.faq-item.is-open {
  border-color: rgba(36,33,31,.16);
  box-shadow: 0 12px 28px rgba(36,33,31,.05);
}
.faq-item::before {
  content: none;
}
.faq-item > button {
  width: 100%;
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  font: inherit;
  position: relative;
  z-index: 2;
}
.faq-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eae4dc;
  font-size: 20px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.faq-q {
  flex: 1;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .01em;
}
.faq-toggle {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eae4dc;
  color: var(--gold);
  font-style: normal;
  font-size: 18px;
  font-weight: 600;
  transition: all .3s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.faq-item.is-open .faq-toggle {
  background: var(--ink);
  color: #fff;
  box-shadow: none;
}
.faq-answer {
  padding: 0 28px 26px;
  padding-left: 94px;
}
.faq-answer p {
  margin: 0;
  color: rgba(44,36,32,.55);
  font-size: 15px;
  line-height: 2;
}

/* ===== Legal Section Home ===== */
.legal-section-home {
  position: relative;
  padding-block: 120px;
  overflow: hidden;
  border-top: 1px solid rgba(36,33,31,.08);
  background: var(--canvas);
}
.legal-bg-decor { display: none; }
.legal-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.legal-house {
  position: absolute;
  left: 3%;
  bottom: 10%;
  width: 140px;
  height: 160px;
  opacity: .6;
  background:
    linear-gradient(135deg, #f3d9b3 0%, #e8cfa8 100%);
  border-radius: 12px 12px 8px 8px;
  box-shadow: inset 0 4px 8px rgba(255,255,255,.4);
}
.legal-house::before {
  content: "";
  position: absolute;
  left: -15px; right: -15px; top: -40px;
  height: 60px;
  background: linear-gradient(135deg, #e8cfa8 0%, #c8956c 100%);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}
.legal-house::after {
  content: "🐾";
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  font-size: 32px;
  filter: sepia(.3);
}
.legal-shield {
  position: absolute;
  right: 5%;
  top: 15%;
  font-size: 180px;
  opacity: .08;
  filter: sepia(.4);
}
.legal-yarn {
  position: absolute;
  left: 5%;
  bottom: 5%;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(145deg, #e8cfa8 0%, #c8956c 100%);
  box-shadow: inset 0 2px 4px rgba(255,255,255,.4);
  opacity: .7;
}
.legal-yarn::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,.35);
}
.legal-bowl {
  position: absolute;
  right: 8%;
  bottom: 8%;
  width: 100px;
  height: 60px;
  border-radius: 50% 50% 45% 45% / 60% 60% 40% 40%;
  background: linear-gradient(180deg, #f6e3c8 0%, #e8cfa8 100%);
  box-shadow: inset 0 4px 8px rgba(255,255,255,.5);
  opacity: .6;
}
.legal-bowl::before {
  content: "🐾";
  position: absolute;
  left: 50%;
  top: 25%;
  transform: translateX(-50%);
  font-size: 24px;
  opacity: .5;
}
.legal-sparkles { position: absolute; inset: 0; }
.legal-sparkles i {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 6px rgba(200,149,108,.6);
  animation: twinkle 4s ease-in-out infinite;
}
.legal-sparkles i:nth-child(1) { left: 5%; top: 20%; animation-delay: 0s; }
.legal-sparkles i:nth-child(2) { right: 3%; top: 10%; animation-delay: 1s; }
.legal-sparkles i:nth-child(3) { left: 20%; top: 8%; animation-delay: 2s; }
.legal-sparkles i:nth-child(4) { right: 25%; top: 5%; animation-delay: 1.5s; }
.legal-sparkles i:nth-child(5) { left: 50%; bottom: 5%; animation-delay: 3s; }

.legal-section-home .shell { position: relative; z-index: 2; }
.section-heading {
  display: grid;
  grid-template-columns: 1fr .75fr;
  align-items: center;
  gap: 48px;
  margin-bottom: 56px;
}
.section-heading > p {
  max-width: 440px;
  color: rgba(44,36,32,.52);
  line-height: 2;
  font-size: 15px;
}
.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.legal-card {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 36px 32px;
  border-radius: 22px;
  background: var(--paper);
  text-decoration: none;
  box-shadow: none;
  border: 1px solid rgba(36,33,31,.08);
  transition: all .3s ease;
  overflow: hidden;
}
.legal-card:hover {
  transform: translateY(-2px);
  border-color: rgba(36,33,31,.16);
  box-shadow: 0 12px 28px rgba(36,33,31,.05);
}
.legal-card-left {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.legal-paw-num {
  position: relative;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  font-size: 36px;
  filter: sepia(.25);
}
.legal-paw-num em {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  font-style: normal;
  font-weight: 800;
  font-size: 18px;
  color: var(--gold);
  background: rgba(255,255,255,.9);
  padding: 1px 8px;
  border-radius: 8px;
  font-family: Georgia, serif;
}
.legal-card-body { flex: 1; }
.legal-card-body h3 {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
}
.legal-card-body p {
  margin: 0;
  color: rgba(44,36,32,.5);
  font-size: 14.5px;
  line-height: 1.75;
}
.legal-card-yarn, .legal-card-bowl {
  position: absolute;
  right: 70px;
  bottom: 20px;
  font-size: 44px;
  opacity: .55;
  filter: sepia(.2);
}
.legal-card-yarn,
.legal-card-bowl { display: none; }
.legal-arrow-btn {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  box-shadow: none;
  transition: all .3s ease;
}
.legal-card:hover .legal-arrow-btn {
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(36,33,31,.12);
}

/* ===== Support and legal documents ===== */
.legal-page,
.support-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--canvas);
}
.legal-page .site-header,
.support-page .site-header { position: static; }
.legal-wrap,
.support-wrap {
  width: min(860px, calc(100% - 40px));
  margin: 48px auto 96px;
  padding: clamp(32px, 6vw, 72px);
  border: 1px solid rgba(44,36,32,.1);
  border-radius: 28px;
  background: rgba(255,255,255,.56);
  box-shadow: 0 26px 70px rgba(44,36,32,.08);
}
.legal-kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .14em;
}
.legal-wrap > h1,
.support-wrap > h1 { margin: 18px 0 14px; font-size: clamp(44px, 7vw, 70px); }
.legal-info {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(44,36,32,.1);
  color: rgba(44,36,32,.56);
  font-size: 13px;
  line-height: 1.7;
}
.legal-section { margin-top: 38px; }
.legal-section h2 { font-size: 22px; }
.legal-section p,
.legal-section li { color: rgba(44,36,32,.72); line-height: 1.85; }
.legal-section a { color: #9f6f4e; text-underline-offset: 3px; }
[data-legal-document] { margin-top: 40px; }
[data-legal-document] h2 {
  margin: 48px 0 18px;
  padding-top: 8px;
  border-top: 1px solid rgba(44,36,32,.1);
  font-family: inherit;
  font-size: 24px;
  letter-spacing: -.02em;
}
[data-legal-document] h3 { margin: 34px 0 14px; font-size: 18px; }
[data-legal-document] h4 { margin: 28px 0 12px; font-size: 16px; }
[data-legal-document] p,
[data-legal-document] li { color: rgba(44,36,32,.74); font-size: 15px; line-height: 1.9; }
[data-legal-document] ul,
[data-legal-document] ol { padding-left: 1.4em; }
[data-legal-document] strong { color: var(--ink); }
.legal-page .site-footer,
.support-page .site-footer { margin-top: auto; }

/* ===== Footer ===== */
.site-footer {
  background: #24211f;
  color: rgba(253,248,240,.55);
  padding-block: 64px 56px;
  position: relative;
}
.site-footer::before {
  content: none;
}
.footer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}
.footer-brand-left {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-app-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.footer-slogan {
  max-width: 300px;
  font-size: 17px;
  color: rgba(253,248,240,.75);
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.55;
}
.footer-links-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.footer-links-center a {
  color: rgba(253,248,240,.6);
  text-decoration: none;
  font-size: 15px;
  transition: color .2s ease;
}
.footer-links-center a:hover { color: var(--gold-light); }
.footer-company-right {
  min-width: 0;
  text-align: right;
}
.footer-company-right p {
  margin: 0;
  font-size: 15px;
  color: rgba(253,248,240,.6);
  line-height: 1.8;
}
.footer-icp {
  display: inline-block;
  margin-top: 4px;
  font-size: 13px;
  color: rgba(253,248,240,.4) !important;
  text-decoration: none;
}

@media (max-width: 1080px) {
  .brand-slogan { display: none; }
  .nav-actions .nav-contact { display: none; }
  .nav-links { gap: 12px; }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav { grid-template-columns: 1fr auto; }
  .hero-inner { grid-template-columns: 1fr; padding-block: 56px 64px; gap: 48px; min-height: auto; }
  .hero-copy { text-align: center; }
  .hero-intro { margin-inline: auto; }
  .eyebrow, .hero-features { justify-content: center; }
  .hero-features { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .hf-card { padding: 16px 14px; }
  .stage-card { width: min(100%, 500px); }

  .create-layout, .album-layout, .services-layout { grid-template-columns: 1fr; }
  .create-copy, .album-copy, .services-copy { text-align: center; }
  .create-copy > p, .album-copy > p, .services-copy > p { margin-inline: auto; }

  .photo-stack { min-height: 480px; max-width: 420px; margin-inline: auto; }

  .map-layout { grid-template-columns: 1fr; }
  .map-copy { text-align: center; }
  .map-copy > p { margin-inline: auto; }
  .map-legend { justify-content: center; }
  .radar-card { width: 100%; min-height: 540px; max-width: 540px; margin-inline: auto; }

  .service-grid { max-width: 500px; margin-inline: auto; }

  .plan-heading { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .plan-card { min-height: auto; }
  .plan-card-featured { transform: none; }

  .questions-inner { grid-template-columns: 1fr; gap: 40px; }
  .questions-copy { text-align: center; }
  .questions-copy > p { margin-inline: auto; }
  .faq-heart { left: 50%; transform: translateX(-50%); top: 18%; width: 60px; height: 60px; }
  .faq-paw-left { left: 5%; top: 45%; font-size: 40px; }
  .cat-bed { width: 160px; height: 100px; }
  .paw-cushion { font-size: 30px; }
  .yarn-ball-small { width: 38px; height: 38px; }
  .yarn-ball-right { width: 44px; height: 44px; }
  .fish-toy { font-size: 36px; right: 15%; bottom: 45px; }

  .section-heading { grid-template-columns: 1fr; align-items: start; gap: 24px; }
  .legal-grid { grid-template-columns: 1fr; gap: 20px; }
  .legal-card { min-height: auto; padding: 28px 24px; border-radius: 24px; }
  .legal-paw-num { width: 60px; height: 60px; font-size: 28px; }
  .legal-paw-num em { font-size: 15px; }
  .legal-card-body h3 { font-size: 20px; }
  .legal-card-yarn, .legal-card-bowl { font-size: 34px; right: 60px; bottom: 14px; }
  .legal-arrow-btn { width: 44px; height: 44px; font-size: 18px; }
  .legal-house { width: 100px; height: 110px; }
  .legal-house::before { top: -28px; height: 42px; }
  .legal-shield { font-size: 120px; }
  .legal-bowl { width: 70px; height: 42px; }

  .footer-layout { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer-brand-left { justify-content: center; }
  .footer-links-center { gap: 10px; }
  .footer-company-right { text-align: center; }
}
@media (max-width: 680px) {
  .shell { width: min(100% - 32px, 1152px); }
  .nav { gap: 10px; }
  .nav-platform { min-height: 38px; padding-inline: 13px; font-size: 12px; }
  .nav-platform small { display: none; }

  .hero-inner { padding-block: 40px 48px; gap: 32px; }
  .hero-title-line { font-size: clamp(30px, 8.5vw, 44px); white-space: normal; }
  .hero-title-gold { margin-top: 2px; }
  .hero-cta-link { font-size: 16px; }
  .hero-features { grid-template-columns: 1fr; gap: 8px; }
  .hf-card { flex-direction: row; align-items: center; padding: 14px 16px; gap: 14px; }
  .hf-icon { width: 32px; height: 32px; flex: 0 0 auto; }
  .hf-card strong { margin-top: 0; font-size: 15px; }

  .stage-card { aspect-ratio: 1.05; padding: 16px; border-radius: 28px; }
  .stage-badge { top: 16px; left: 20px; padding: 6px 12px 6px 10px; font-size: 11px; }
  .stage-pager { top: 20px; right: 22px; font-size: 11px; }
  .pager-num { font-size: 18px; }
  .stage-pet-info { left: 24px; bottom: 90px; max-width: 110px; }
  .pet-name-block h3 { font-size: 32px; }
  .pet-en { font-size: 10px; padding: 1px 8px; }
  .pet-quote { font-size: 13px; }
  .stage-arch { border-radius: 20px; }
  .pet-video-wrap { bottom: 40px; width: 52%; }
  .stage-platform { width: 86%; bottom: 6%; }
  .platform-rim { height: 22px; }
  .platform-top { bottom: 18px; height: 16px; }
  .pet-switch button { min-height: 36px; padding: 0 16px; font-size: 13px; }
  .hero-divider { height: 60px; margin-top: -10px; }
  .divider-paw { font-size: 20px; bottom: 8px; }

  .section-title .title-line { font-size: clamp(30px, 7vw, 40px); }
  .section-title .title-nowrap { white-space: normal; }
  .services-copy .title-heart-img { width: .9em; height: .9em; margin-left: 4px; }
  .section-title-dark .title-line { font-size: clamp(24px, 5.5vw, 34px); }
  .section-deco-top { height: 40px; }
  .section-deco-top svg { height: 40px; }

  .create-section, .album-section, .map-section, .services-section, .plan-section, .questions-section, .legal-section-home { padding-block: 60px 80px; }

  .photo-stack { min-height: 400px; max-width: 100%; }
  .photo-card { width: 55%; }
  .photo-card-one { left: 0; top: 3%; }
  .photo-card-two { right: 0; top: 15%; }
  .photo-card-three { left: 12%; bottom: 2%; }
  .create-flow { right: 0; bottom: 8%; padding: 10px 14px; }

  .album-card { padding: 16px; border-radius: 24px; }
  .album-grid { grid-template-rows: repeat(2, 120px); gap: 8px; }
  .album-toolbar { padding-bottom: 14px; }
  .album-count { display: none; }

  .radar-card { width: 100%; min-height: 480px; aspect-ratio: auto; border-radius: 24px; }
  .friend { width: 72%; min-height: 60px; padding: 6px 8px 6px 6px; border-radius: 18px; }
  .friend-bubble-left { padding: 6px 6px 6px 8px; }
  .friend img { width: 38px; height: 38px; }
  .friend-meta { font-size: 10.5px; }
  .friend-status { font-size: 9.5px; }
  .friend-one { left: 3%; right: auto; top: 7%; }
  .friend-two { left: auto; right: 3%; top: 29%; }
  .friend-three { left: 3%; right: auto; bottom: 29%; }
  .friend-four { left: auto; right: 3%; bottom: 7%; }
  .radar-center { width: 52px; height: 52px; }
  .radar-badge { font-size: 11px; padding: 6px 14px; }

  .service-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .service-card { min-height: 180px; padding: 16px 14px; border-radius: 20px; }
  .service-icon-wrap { width: 56px; height: 56px; }
  .service-name { font-size: 15px; }
  .service-desc { font-size: 12px; }

  .plan-heading { gap: 20px; margin-bottom: 36px; }
  .plan-card { min-height: auto; padding: 26px 22px; border-radius: 24px; }
  .plan-value strong { font-size: 30px; }

  .faq-item { border-radius: 18px; }
  .faq-item > button { min-height: 68px; padding: 0 18px; gap: 14px; }
  .faq-icon { width: 40px; height: 40px; font-size: 16px; }
  .faq-q { font-size: 15px; }
  .faq-answer { padding: 0 18px 22px; padding-left: 72px; }
  .faq-answer p { font-size: 13.5px; line-height: 1.9; margin-left: 0; margin-right: 0; }
  .faq-toggle { width: 32px; height: 32px; font-size: 14px; }
  .cat-bed { width: 120px; height: 75px; left: 3%; bottom: 12px; }
  .paw-cushion { font-size: 22px; }
  .yarn-ball-small { width: 30px; height: 30px; left: 20%; }
  .yarn-ball-right { width: 36px; height: 36px; right: 8%; bottom: 18px; }
  .fish-toy { font-size: 28px; right: 12%; bottom: 32px; }
  .faq-heart { width: 48px; height: 48px; top: 12%; }
  .faq-paw-left { font-size: 32px; top: 38%; }

  .section-heading { gap: 16px; margin-bottom: 36px; }
  .legal-card {
    min-height: auto;
    padding: 22px 18px;
    border-radius: 22px;
    gap: 14px;
  }
  .legal-paw-num { width: 52px; height: 52px; font-size: 24px; }
  .legal-paw-num em { font-size: 13px; bottom: 0; }
  .legal-card-body h3 { font-size: 18px; margin-bottom: 8px; }
  .legal-card-body p { font-size: 13px; line-height: 1.65; }
  .legal-card-yarn, .legal-card-bowl { display: none; }
  .legal-arrow-btn { width: 40px; height: 40px; font-size: 16px; }
  .legal-house { width: 80px; height: 90px; }
  .legal-house::before { top: -22px; height: 34px; }
  .legal-house::after { font-size: 22px; top: 14px; }
  .legal-shield { font-size: 90px; top: 10%; }
  .legal-bowl { width: 56px; height: 34px; right: 5%; }
  .legal-yarn { width: 42px; height: 42px; }

  .legal-wrap, .support-wrap { width: calc(100% - 24px); margin-block: 20px 56px; border-radius: 22px; }
  .site-footer { padding-block: 44px 36px; }
  .footer-app-icon { width: 48px; height: 48px; border-radius: 14px; }
  .footer-slogan { font-size: 13px; }
  .footer-brand-left { gap: 10px; }
  .footer-links-center { gap: 8px; }
  .footer-links-center a { font-size: 12px; }
  .footer-company-right p { font-size: 12px; line-height: 1.7; }
  .footer-icp { font-size: 11px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .radar-sweep { animation: none; }
  .legal-card { transition: none; }
  .arch-sparkles i, .photo-sparkles i, .album-sparkles i, .radar-sparkles i { animation: none; }
  .arch-heart { animation: none; }
  .radar-pulse { animation: none; }
  .hero-cta-link span, .section-cta span { transition: none; }
  .service-card, .plan-card, .legal-card { transition: none; }
}

/* ===== 2026-09-02 quiet editorial responsive refinements ===== */
@media (max-width: 900px) {
  .hero-inner {
    padding-block: 64px 88px;
  }

  .hero-copy {
    max-width: 680px;
    margin-inline: auto;
  }

  .photo-stack {
    width: min(100%, 560px);
  }
}

/* ===== 2026-09-02 PUCICI light glass system ===== */
body {
  position: relative;
  isolation: isolate;
  color: var(--ink);
  background:
    radial-gradient(65% 50% at 10% 5%, rgba(138,46,48,.13), transparent 62%),
    radial-gradient(62% 52% at 90% 10%, rgba(104,198,217,.16), transparent 60%),
    radial-gradient(75% 55% at 50% 96%, rgba(197,160,101,.14), transparent 66%),
    var(--canvas);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 18%, rgba(138,46,48,.11), transparent 26%),
    radial-gradient(circle at 88% 24%, rgba(104,198,217,.12), transparent 28%),
    radial-gradient(circle at 58% 88%, rgba(197,160,101,.1), transparent 30%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .028;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header {
  padding: 14px 16px 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.site-header .nav {
  min-height: 62px;
  padding: 0 16px;
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  background: rgba(244,245,247,.7);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  box-shadow: 0 12px 36px rgba(61,54,53,.08), inset 0 1px 0 rgba(255,255,255,.9), inset 0 -1px 0 rgba(61,54,53,.05);
}
.brand-logo { box-shadow: 0 0 0 1px rgba(61,54,53,.1), 0 8px 20px rgba(61,54,53,.1); }
.brand-name { color: var(--ink); }
.brand-slogan, .nav-links { color: rgba(61,54,53,.56); }
.nav-links a { transition: color .5s var(--glass-spring); }
.nav-contact {
  border-color: rgba(61,54,53,.12);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(30px) saturate(160%);
  -webkit-backdrop-filter: blur(30px) saturate(160%);
  transition: color .5s var(--glass-spring), border-color .5s var(--glass-spring), background .5s var(--glass-spring);
}
.nav-contact:hover { border-color: rgba(61,54,53,.24); background: rgba(255,255,255,.26); }
.nav-platform {
  border: 1px solid rgba(255,255,255,.48);
  background: linear-gradient(135deg, #d0b47f, var(--gold));
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(197,160,101,.28), inset 0 1px 0 rgba(255,255,255,.6);
  transition: transform .5s var(--glass-spring), box-shadow .5s var(--glass-spring);
}
.nav-platform:not(.is-unavailable):hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(197,160,101,.34), inset 0 1px 0 rgba(255,255,255,.7);
}

/* Download-first hero */
.download-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 76px);
  padding: clamp(46px, 6vh, 72px) 0 80px;
}
.download-hero::before,
.download-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: .5;
}
.download-hero::before {
  width: min(46vw, 700px);
  aspect-ratio: 1;
  left: -22vw;
  top: 8%;
  background: rgba(138,46,48,.13);
}
.download-hero::after {
  width: min(42vw, 640px);
  aspect-ratio: 1;
  right: -17vw;
  top: 2%;
  background: rgba(104,198,217,.16);
}
.download-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,.95fr) minmax(420px,1.05fr);
  grid-template-areas: "copy preview" "dock dock";
  align-items: center;
  gap: 40px clamp(52px,7vw,100px);
}
.download-copy { grid-area: copy; max-width: 560px; }
.download-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  padding: 7px 12px;
  border: 1px solid rgba(61,54,53,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(30px) saturate(160%);
  -webkit-backdrop-filter: blur(30px) saturate(160%);
  color: rgba(61,54,53,.58);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}
.status-light {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(197,160,101,.13);
}
.download-version {
  padding-left: 8px;
  border-left: 1px solid rgba(61,54,53,.12);
  color: var(--gold);
}
.download-title {
  margin: 0;
  font-size: clamp(48px,4.5vw,64px);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.download-title span,
.download-title em { display: block; }
.download-title em { white-space: nowrap; }
.download-title em {
  margin-top: 7px;
  color: var(--gold);
  background: none;
  -webkit-text-fill-color: currentColor;
}
.download-intro {
  max-width: 510px;
  margin: 28px 0 0;
  color: rgba(61,54,53,.68);
  font-size: clamp(16px,1.45vw,19px);
  line-height: 1.8;
}
.download-note {
  max-width: 510px;
  margin: 14px 0 0;
  color: rgba(61,54,53,.44);
  font-size: 13px;
  line-height: 1.75;
}

.device-preview { grid-area: preview; position: relative; }
.device-preview::before {
  content: "";
  position: absolute;
  inset: 7% 2% -4%;
  border-radius: 44%;
  background: radial-gradient(circle, rgba(197,160,101,.22), transparent 68%);
  filter: blur(40px);
}
.device-window {
  position: relative;
  padding: 13px;
  border: 1px solid rgba(61,54,53,.11);
  border-radius: 28px;
  background: rgba(244,245,247,.62);
  backdrop-filter: blur(60px) saturate(180%);
  -webkit-backdrop-filter: blur(60px) saturate(180%);
  box-shadow: var(--glass-shadow);
}
.device-window::before,
.download-card::before,
.photo-stack::before,
.album-card::before,
.service-card::before,
.plan-card::before,
.faq-item::before,
.legal-card::before,
.legal-wrap::before,
.support-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.32), transparent 46%);
  pointer-events: none;
}
.device-toolbar {
  min-height: 42px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 7px;
  color: rgba(61,54,53,.48);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .04em;
}
.device-dots { display: flex; gap: 5px; }
.device-dots i { width: 7px; height: 7px; border-radius: 50%; background: rgba(61,54,53,.16); }
.device-dots i:first-child { background: rgba(138,46,48,.44); }
.device-dots i:nth-child(2) { background: rgba(197,160,101,.7); }
.device-dots i:last-child { background: rgba(104,198,217,.64); }
.device-live { justify-self: end; display: inline-flex; align-items: center; gap: 5px; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 9px; }
.device-live i { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.device-stage {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 30% 20%, rgba(197,160,101,.46), transparent 48%),
    radial-gradient(circle at 78% 84%, rgba(104,198,217,.36), transparent 50%),
    linear-gradient(145deg, #3d3635, #292526);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), inset 0 -1px 0 rgba(0,0,0,.2);
}
.device-rings { position: absolute; inset: 0; display: grid; place-items: center; opacity: .52; }
.device-rings i { position: absolute; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }
.device-rings i:first-child { width: 72%; aspect-ratio: 1; }
.device-rings i:nth-child(2) { width: 48%; aspect-ratio: 1; }
.device-rings i:last-child { width: 24%; aspect-ratio: 1; }
.device-rings::before,
.device-rings::after { content: ""; position: absolute; background: rgba(255,255,255,.08); }
.device-rings::before { width: 80%; height: 1px; }
.device-rings::after { height: 82%; width: 1px; }
.device-pet-wrap {
  position: absolute;
  inset: 13% 21% 11%;
  z-index: 2;
  display: grid;
  place-items: end center;
}
.device-pet-wrap .pet-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 18px 20px rgba(0,0,0,.32));
}
.device-shadow {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 8%;
  width: 46%;
  height: 10%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(0,0,0,.25);
  filter: blur(12px);
}
.device-pet-label {
  position: absolute;
  z-index: 3;
  left: 14px;
  bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 700;
}
.device-pet-label small { color: rgba(255,255,255,.48); font-size: 9px; font-weight: 500; }
.device-footer {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 4px 0;
}
.device-caption { color: rgba(61,54,53,.42); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 9px; letter-spacing: .06em; }
.device-footer .pet-switch {
  border-color: rgba(61,54,53,.1);
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(30px) saturate(160%);
  -webkit-backdrop-filter: blur(30px) saturate(160%);
}
.device-footer .pet-switch button { min-height: 34px; padding: 0 14px; transition: color .5s var(--glass-spring), background .5s var(--glass-spring), box-shadow .5s var(--glass-spring); }
.device-footer .pet-switch button.is-active {
  background: rgba(255,255,255,.56);
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(61,54,53,.1), inset 0 1px 0 rgba(255,255,255,.82);
}

.download-dock {
  grid-area: dock;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 16px;
}
.download-card {
  position: relative;
  min-height: 198px;
  display: flex;
  flex-direction: column;
  padding: 21px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  background: rgba(244,245,247,.58);
  backdrop-filter: blur(60px) saturate(180%);
  -webkit-backdrop-filter: blur(60px) saturate(180%);
  box-shadow: 0 14px 40px rgba(61,54,53,.08), inset 0 1px 0 rgba(255,255,255,.86), inset 0 -1px 0 rgba(61,54,53,.05);
  transition: border-color .5s var(--glass-spring), box-shadow .5s var(--glass-spring), transform .5s var(--glass-spring);
}
.download-card.is-available { border-color: rgba(197,160,101,.34); }
.download-card.is-available:hover {
  transform: translateY(-3px);
  border-color: rgba(197,160,101,.58);
  box-shadow: 0 22px 52px rgba(61,54,53,.12), inset 0 1px 0 rgba(255,255,255,.92), inset 0 -1px 0 rgba(61,54,53,.05);
}
.download-card-top { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.platform-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(61,54,53,.1);
  border-radius: 12px;
  background: rgba(255,255,255,.24);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.78);
}
.platform-icon svg { width: 20px; height: 20px; }
.download-status { display: inline-flex; align-items: center; gap: 6px; color: rgba(61,54,53,.44); font-size: 10px; font-weight: 700; letter-spacing: .05em; }
.download-status i { width: 6px; height: 6px; border-radius: 50%; background: rgba(61,54,53,.22); }
.is-available .download-status { color: #8d6c35; }
.is-available .download-status i { background: var(--gold); box-shadow: 0 0 0 4px rgba(197,160,101,.13); }
.download-card-copy { position: relative; z-index: 1; margin: 18px 0 16px; }
.download-card-copy h2 { margin: 0 0 4px; font-family: inherit; font-size: 22px; font-weight: 720; letter-spacing: -.02em; }
.download-card-copy p { margin: 0; color: rgba(61,54,53,.48); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 10px; }
.download-action {
  position: relative;
  z-index: 1;
  min-height: 44px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  border: 1px solid rgba(61,54,53,.1);
  border-radius: 14px;
  background: rgba(255,255,255,.18);
  color: rgba(61,54,53,.52);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}
.is-available .download-action {
  border-color: rgba(255,255,255,.48);
  background: linear-gradient(135deg, #d0b47f, var(--gold));
  color: var(--ink);
  box-shadow: 0 9px 24px rgba(197,160,101,.24), inset 0 1px 0 rgba(255,255,255,.55);
  transition: transform .5s var(--glass-spring), box-shadow .5s var(--glass-spring);
}
.is-available .download-action:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(197,160,101,.3), inset 0 1px 0 rgba(255,255,255,.62); }
.download-action[aria-disabled="true"] { cursor: default; }

/* Keep the rest of the site in the same glass language. */
.create-section,
.album-section,
.services-section,
.plan-section,
.questions-section,
.legal-section-home { background: transparent; border-color: rgba(61,54,53,.08); }
.photo-stack,
.album-card,
.service-card,
.plan-card,
.faq-item,
.legal-card,
.legal-wrap,
.support-wrap {
  position: relative;
  border-color: var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  box-shadow: var(--glass-shadow);
}
.photo-card,
.create-flow,
.album-tag,
.coming-pill,
.faq-icon,
.faq-toggle {
  background: rgba(244,245,247,.54);
  backdrop-filter: blur(30px) saturate(170%);
  -webkit-backdrop-filter: blur(30px) saturate(170%);
  border-color: rgba(61,54,53,.1);
}
.album-card::before,
.faq-item::before { display: block; }
.service-card:hover,
.plan-card:hover,
.legal-card:hover,
.faq-item.is-open { border-color: var(--glass-border-hover); box-shadow: 0 24px 58px rgba(61,54,53,.12), inset 0 1px 0 rgba(255,255,255,.9), inset 0 -1px 0 rgba(61,54,53,.05); }
.plan-card-featured { background: rgba(244,245,247,.72); border-color: rgba(197,160,101,.3); }
.plan-btn-primary,
.legal-arrow-btn,
.faq-item.is-open .faq-toggle { background: linear-gradient(135deg, #d0b47f, var(--gold)); color: var(--ink); box-shadow: inset 0 1px 0 rgba(255,255,255,.5); }

.map-section {
  background:
    radial-gradient(65% 55% at 82% 12%, rgba(104,198,217,.17), transparent 62%),
    radial-gradient(60% 55% at 12% 88%, rgba(138,46,48,.2), transparent 62%),
    #3d3635;
}
.radar-card {
  border-color: rgba(255,255,255,.15);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(60px) saturate(180%);
  -webkit-backdrop-filter: blur(60px) saturate(180%);
  box-shadow: 0 24px 64px rgba(24,20,20,.22), inset 0 1px 0 rgba(255,255,255,.17), inset 0 -1px 0 rgba(0,0,0,.2);
}
.radar-glow,
.radar-grid { display: block; }
.friend {
  border-color: rgba(255,255,255,.15);
  background: rgba(255,255,255,.075);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), inset 0 -1px 0 rgba(0,0,0,.15);
}
.radar-badge { backdrop-filter: blur(40px) saturate(180%); -webkit-backdrop-filter: blur(40px) saturate(180%); }

.legal-page,
.support-page { background: transparent; }
.legal-wrap,
.support-wrap { overflow: hidden; }
.legal-page .site-header,
.support-page .site-header { position: sticky; }
.site-footer {
  border-top: 1px solid rgba(255,255,255,.09);
  background:
    radial-gradient(55% 100% at 12% 100%, rgba(138,46,48,.2), transparent 62%),
    radial-gradient(50% 100% at 90% 0%, rgba(104,198,217,.14), transparent 62%),
    #332e2e;
}

@media (max-width: 900px) {
  .download-hero { padding-top: 52px; }
  .download-hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "dock" "preview";
    gap: 34px;
  }
  .download-copy { max-width: 700px; margin-inline: auto; text-align: center; }
  .download-kicker { margin-inline: auto; }
  .download-intro,
  .download-note { margin-inline: auto; }
  .download-dock { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .device-preview { width: min(100%,620px); margin-inline: auto; }
}

@media (max-width: 680px) {
  .site-header { padding: 8px 8px 0; }
  .site-header .nav { min-height: 58px; padding-inline: 12px; border-radius: 17px; }
  .brand-logo { width: 34px; height: 34px; border-radius: 10px; }
  .brand-name { font-size: 15px; }
  .nav-platform { min-height: 38px; }
  .download-hero { min-height: auto; padding: 42px 0 64px; }
  .download-title { font-size: clamp(38px,11vw,54px); line-height: 1.08; }
  .download-title em { white-space: normal; }
  .download-intro { margin-top: 22px; font-size: 15px; line-height: 1.75; }
  .download-note { font-size: 12px; }
  .download-dock { grid-template-columns: 1fr; gap: 12px; }
  .download-card { min-height: 164px; padding: 17px; border-radius: 20px; }
  .download-card-copy { margin: 12px 0; }
  .download-card-copy h2 { font-size: 20px; }
  .device-window { padding: 9px; border-radius: 22px; }
  .device-stage { min-height: 270px; border-radius: 17px; }
  .device-toolbar { min-height: 38px; font-size: 10px; }
  .device-footer { flex-direction: column; align-items: stretch; padding: 10px 2px 2px; }
  .device-caption { text-align: center; }
  .device-footer .pet-switch { justify-content: center; }
  .device-footer .pet-switch button { flex: 1; }
  .photo-stack,
  .album-card,
  .service-card,
  .plan-card,
  .faq-item,
  .legal-card,
  .legal-wrap,
  .support-wrap { backdrop-filter: blur(32px) saturate(180%); -webkit-backdrop-filter: blur(32px) saturate(180%); }
}

@media (prefers-reduced-motion: reduce) {
  .download-card,
  .download-action,
  .nav-platform,
  .nav-links a,
  .nav-contact,
  .device-footer .pet-switch button { transition: none; }
}

@media (max-width: 680px) {
  .site-header {
    background: rgba(247,245,240,.97);
  }

  .hero-inner {
    padding-block: 48px 72px;
  }

  .hero-title {
    margin-bottom: 22px;
  }

  .hero-intro {
    font-size: 14px;
    line-height: 1.85;
  }

  .hero-features {
    margin-top: 36px;
  }

  .hf-card {
    padding: 14px 0;
    border-top: 1px solid rgba(36,33,31,.1);
    border-left: 0;
  }

  .hf-card:first-child {
    border-top: 0;
  }

  .stage-card {
    padding: 12px;
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(36,33,31,.09);
  }

  .stage-arch {
    border-radius: 48% 48% 16px 16px / 40% 40% 16px 16px;
  }

  .photo-stack {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 16px;
    border-radius: 22px;
  }

  .photo-card {
    width: 100%;
    inset: auto;
    transform: none;
  }

  .photo-card-three {
    width: 58%;
    margin-top: -16px;
  }

  .create-flow {
    position: relative;
    right: auto;
    bottom: auto;
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: -2px;
  }

  .album-card {
    border-radius: 20px;
    box-shadow: 0 14px 32px rgba(36,33,31,.06);
  }

  .radar-card {
    border-radius: 22px;
  }

  .service-card,
  .plan-card,
  .faq-item,
  .legal-card {
    box-shadow: none;
  }
}

@media (max-width: 680px) {
  .site-header { background: transparent; }
  .photo-stack,
  .album-card,
  .service-card,
  .plan-card,
  .faq-item,
  .legal-card { box-shadow: var(--glass-shadow); }
}

/* ===== Split download home ===== */
.download-page-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.download-page-main { flex: 1; }
.download-page {
  position: relative;
  overflow: hidden;
  padding: clamp(56px,8vh,92px) 0 clamp(72px,10vh,112px);
}
.download-page::before,
.download-page::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
}
.download-page::before {
  width: min(48vw,680px);
  aspect-ratio: 1;
  left: -20vw;
  top: 4%;
  background: rgba(138,46,48,.13);
}
.download-page::after {
  width: min(44vw,640px);
  aspect-ratio: 1;
  right: -18vw;
  top: 8%;
  background: rgba(104,198,217,.15);
}
.download-page-inner {
  position: relative;
  z-index: 1;
  width: min(980px,calc(100% - 48px));
}
.download-page-heading {
  max-width: 680px;
  margin: 0 auto 42px;
  text-align: center;
}
.download-page-heading .download-kicker { margin-bottom: 18px; }
.download-page-heading h1 {
  margin: 0;
  font-size: clamp(44px,6vw,72px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.download-page-subtitle {
  margin: 16px 0 0;
  color: rgba(61,54,53,.56);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: .08em;
}
.download-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 16px;
}
.download-grid .download-card { min-height: 218px; }
.download-card-with-qr {
  display: grid;
  grid-template-columns: minmax(0,1fr) 126px;
  align-items: stretch;
  gap: 18px;
}
.download-card-main {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.download-qr {
  position: relative;
  z-index: 1;
  align-self: center;
  margin: 0;
  padding: 9px;
  border: 1px solid rgba(61,54,53,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.58);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.86);
}
.download-qr img {
  width: 106px;
  height: 106px;
  display: block;
  border-radius: 9px;
  object-fit: cover;
}
.download-qr figcaption {
  margin-top: 7px;
  color: rgba(61,54,53,.48);
  font-size: 9px;
  font-weight: 650;
  text-align: center;
}
.download-showcase-link {
  width: max-content;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 30px auto 0;
  padding: 0 16px;
  border: 1px solid rgba(61,54,53,.11);
  border-radius: 14px;
  background: rgba(244,245,247,.42);
  backdrop-filter: blur(30px) saturate(170%);
  -webkit-backdrop-filter: blur(30px) saturate(170%);
  color: rgba(61,54,53,.68);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: border-color .5s var(--glass-spring), background .5s var(--glass-spring), transform .5s var(--glass-spring);
}
.download-showcase-link:hover {
  transform: translateY(-2px);
  border-color: rgba(61,54,53,.22);
  background: rgba(255,255,255,.58);
}
.download-page-footer { margin-top: 0; }

/* The showcase keeps the branch's original copy and stage structure. */
.stage-card {
  border-color: var(--glass-border);
  background: rgba(244,245,247,.58);
  backdrop-filter: blur(60px) saturate(180%);
  -webkit-backdrop-filter: blur(60px) saturate(180%);
  box-shadow: var(--glass-shadow);
}
.stage-arch {
  border: 1px solid rgba(255,255,255,.16);
  background:
    radial-gradient(circle at 28% 20%, rgba(197,160,101,.42), transparent 48%),
    radial-gradient(circle at 78% 82%, rgba(104,198,217,.34), transparent 50%),
    linear-gradient(145deg,#3d3635,#292526);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), inset 0 -1px 0 rgba(0,0,0,.2);
}
.stage-badge {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  color: rgba(255,255,255,.88);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
}
.stage-pager { color: rgba(255,255,255,.46); }
.stage-pager .pager-num { color: rgba(255,255,255,.86); }
.stage-platform .platform-rim { background: rgba(197,160,101,.5); box-shadow: 0 8px 22px rgba(0,0,0,.2); }

/* ===== Official pet × action showcase ===== */
.pet-showcase {
  gap: 16px;
  min-width: 0;
  width: 100%;
  place-items: stretch center;
}
.pet-showcase > * {
  min-width: 0;
  width: min(100%, 580px);
  max-width: 100%;
}
.pet-video-wrap .pet-showcase-poster,
.pet-video-wrap .pet-video {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,.2));
}
.pet-showcase-poster {
  display: block;
  opacity: 1;
  transition: opacity .3s ease;
}
.pet-video-wrap:not(.is-playing) .pet-video {
  display: none;
}
.pet-video-wrap.is-playing .pet-video {
  display: block;
}
.pet-video-wrap.is-playing .pet-showcase-poster {
  opacity: 0;
}
.pet-showcase-play {
  position: absolute;
  left: 50%;
  bottom: 10%;
  z-index: 4;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  background: rgba(244,245,247,.78);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  transform: translateX(-50%);
}
.pet-showcase-play:hover {
  background: rgba(244,245,247,.92);
}
.pet-video-wrap.is-playing .pet-showcase-play {
  opacity: 0;
  pointer-events: none;
}
.pet-showcase-play-icon {
  color: var(--gold);
  font-size: 11px;
}
.pet-action-panel {
  padding: 18px;
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  background: rgba(244,245,247,.62);
  box-shadow: 0 18px 48px rgba(61,54,53,.1), inset 0 1px 0 rgba(255,255,255,.8);
  backdrop-filter: blur(44px) saturate(170%);
  -webkit-backdrop-filter: blur(44px) saturate(170%);
}
.pet-action-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.pet-action-eyebrow {
  margin: 0 0 5px;
  color: rgba(61,54,53,.48);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.pet-action-current {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
}
.pet-action-current strong {
  color: var(--gold);
  font-weight: 750;
}
.pet-action-load-note {
  max-width: 180px;
  margin: 1px 0 0;
  color: rgba(61,54,53,.48);
  font-size: 11px;
  line-height: 1.55;
  text-align: right;
}
.pet-series-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}
.pet-series-heading p {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}
.pet-series-heading span {
  color: rgba(61,54,53,.46);
  font-size: 10px;
}
.pet-series-heading strong {
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.pet-series-switch {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 12px;
}
.pet-series-switch button,
.pet-action-list button {
  min-height: 40px;
  border: 0;
  color: rgba(61,54,53,.62);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 650;
}
.pet-series-switch button {
  min-height: 58px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  padding: 8px 10px;
  border: 1px solid rgba(61,54,53,.1);
  border-radius: 12px;
  background: rgba(255,255,255,.38);
  text-align: left;
}
.pet-series-switch button span {
  line-height: 1.2;
}
.pet-series-switch button small {
  color: rgba(61,54,53,.4);
  font-size: 9px;
  font-weight: 600;
  white-space: nowrap;
}
.pet-series-switch button.is-active {
  background: var(--ink);
  color: var(--canvas);
}
.pet-series-switch button.is-active small {
  color: rgba(244,245,247,.58);
}
.pet-series-switch button.is-coming {
  cursor: default;
  opacity: .66;
}
.pet-series-switch button.is-coming:hover {
  border-color: rgba(61,54,53,.1);
}
.pet-series-switch button.is-previewable {
  border-color: rgba(197,160,101,.28);
  cursor: pointer;
  opacity: 1;
}
.pet-series-switch button.is-previewable:hover,
.pet-series-switch button.is-previewable:focus-visible {
  border-color: rgba(197,160,101,.62);
  background: rgba(197,160,101,.1);
}
.pet-series-switch button.is-previewable small { color: rgba(141,108,53,.72); }
.pet-series-dialog {
  width: min(900px, calc(100vw - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 8%, rgba(104,198,217,.14), transparent 36%),
    radial-gradient(circle at 8% 92%, rgba(138,46,48,.12), transparent 38%),
    rgba(244,245,247,.94);
  color: var(--ink);
  box-shadow: 0 36px 100px rgba(37,32,32,.3), inset 0 1px 0 rgba(255,255,255,.95);
  backdrop-filter: blur(46px) saturate(175%);
  -webkit-backdrop-filter: blur(46px) saturate(175%);
}
.pet-series-dialog::backdrop {
  background: rgba(38,33,33,.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.pet-series-dialog-shell {
  max-height: calc(100dvh - 34px);
  overflow-y: auto;
  padding: 24px;
}
.pet-series-dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.pet-series-dialog-head h3 {
  margin: 3px 0 5px;
  color: var(--ink);
  font-size: clamp(25px,4vw,38px);
  line-height: 1.1;
  letter-spacing: -.035em;
}
.pet-series-dialog-head span {
  color: rgba(61,54,53,.44);
  font-size: 11px;
}
.pet-series-dialog-head > button {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid rgba(61,54,53,.1);
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  color: rgba(61,54,53,.62);
  cursor: pointer;
  font: inherit;
  font-size: 24px;
  line-height: 1;
}
.pet-series-dialog-head > button:hover,
.pet-series-dialog-head > button:focus-visible {
  border-color: rgba(197,160,101,.5);
  color: var(--ink);
}
.pet-series-group-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.pet-series-group-grid > article {
  min-width: 0;
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(61,54,53,.09);
  border-radius: 18px;
  background: rgba(255,255,255,.4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
}
.pet-series-group-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}
.pet-series-group-media figure {
  min-width: 0;
  margin: 0;
  padding: 5px;
  border: 1px solid rgba(61,54,53,.07);
  border-radius: 12px;
  background: #f4f5f7;
  text-align: center;
}
.pet-series-group-media img {
  width: 100%;
  aspect-ratio: 1;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 5px rgba(61,54,53,.12));
}
.pet-series-group-media figcaption {
  overflow: hidden;
  margin-top: 3px;
  color: rgba(61,54,53,.56);
  font-size: 8px;
  font-weight: 650;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pet-series-group-copy strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}
.pet-series-group-copy p {
  margin: 6px 0 0;
  color: rgba(61,54,53,.48);
  font-size: 10px;
  line-height: 1.55;
}
.pet-action-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.pet-action-list button {
  position: relative;
  padding: 8px 10px;
  border: 1px solid rgba(61,54,53,.1);
  border-radius: 12px;
  background: rgba(255,255,255,.4);
  text-align: left;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.pet-action-list button:hover {
  border-color: rgba(197,160,101,.5);
  color: var(--ink);
  transform: translateY(-1px);
}
.pet-action-list button.is-active {
  border-color: rgba(197,160,101,.6);
  background: rgba(197,160,101,.16);
  color: var(--ink);
}
.pet-action-list button.is-active::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

@media (max-width: 680px) {
  .pet-showcase { gap: 12px; }
  .pet-action-panel { padding: 14px; border-radius: 20px; }
  .pet-action-panel-head { align-items: flex-end; }
  .pet-action-load-note { max-width: 128px; font-size: 10px; }
  .pet-series-switch { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pet-series-switch button { min-height: 52px; }
  .pet-series-dialog { width: min(900px, calc(100vw - 20px)); border-radius: 22px; }
  .pet-series-dialog-shell { padding: 18px; }
  .pet-series-group-grid { grid-template-columns: 1fr; }
  .pet-series-group-grid > article { grid-template-columns: 128px minmax(0, 1fr); padding: 10px; }
  .pet-action-list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
  .pet-action-list button { min-height: 38px; padding: 7px 8px; font-size: 12px; }
  .pet-switch button { padding-inline: 12px; }
}

/* The desktop navigation is a content directory; mobile uses a compact glass index. */
.product-nav-links {
  gap: clamp(8px, 1vw, 15px);
  font-size: 12px;
}
.mobile-nav-menu {
  position: relative;
  display: none;
  justify-self: center;
}
.mobile-nav-menu summary {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(61,54,53,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.28);
  color: rgba(61,54,53,.64);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}
.mobile-nav-menu summary::-webkit-details-marker { display: none; }
.mobile-nav-menu[open] summary {
  border-color: rgba(197,160,101,.48);
  color: var(--ink);
}
.mobile-nav-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 30;
  width: min(340px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.74);
  border-radius: 18px;
  background: rgba(244,245,247,.9);
  box-shadow: 0 22px 56px rgba(61,54,53,.18), inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(36px) saturate(170%);
  -webkit-backdrop-filter: blur(36px) saturate(170%);
  transform: translateX(-50%);
}
.mobile-nav-panel a {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 10px;
  color: rgba(61,54,53,.7);
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
}
.mobile-nav-panel a:hover,
.mobile-nav-panel a:focus-visible {
  background: rgba(197,160,101,.14);
  color: var(--ink);
}

@media (max-width: 900px) {
  .site-header .nav { grid-template-columns: auto minmax(0, 1fr) auto; }
  .mobile-nav-menu { display: block; }
}

@media (max-width: 420px) {
  .mobile-nav-menu summary { padding-inline: 10px; }
  .nav-platform { padding-inline: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .pet-showcase-poster,
  .pet-action-list button { transition: none; }
}
.stage-platform .platform-top { background: rgba(255,255,255,.32); }

@media (max-width: 760px) {
  .download-page-inner { width: min(100% - 32px,980px); }
  .download-page-heading { margin-bottom: 30px; }
  .download-grid { grid-template-columns: 1fr; gap: 12px; }
  .download-grid .download-card { min-height: 174px; }
  .download-card-with-qr { grid-template-columns: minmax(0,1fr) 112px; gap: 12px; }
  .download-qr { padding: 7px; border-radius: 14px; }
  .download-qr img { width: 96px; height: 96px; }
}

@media (max-width: 430px) {
  .download-page { padding-top: 42px; }
  .download-page-heading h1 { font-size: clamp(38px,12vw,52px); }
  .download-card-with-qr { grid-template-columns: minmax(0,1fr) 94px; }
  .download-qr img { width: 78px; height: 78px; }
  .download-qr figcaption { font-size: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .download-showcase-link { transition: none; }
}
