/* === CSS Custom Properties === */
:root {
  --bg: #FFF0F5;
  --bg-pink: #FFE4E8;
  --bg-purple: #F0E8F5;
  --accent-pink: #E8929F;
  --accent-purple: #503D78;
  --text-dark: #332844;
  --text-light: #554866;
  --text-muted: #6E5668;
  --divider: rgba(180, 140, 160, 0.25);
  --card-bg: rgba(255, 255, 255, 0.7);
  --font-brand: 'Hiragino Maru Gothic', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-body: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  --max-width-pc: 1120px;
  --max-width-tablet: 720px;
}

/* === Reset === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

/* === Container === */
.container {
  max-width: var(--max-width-pc);
  margin: 0 auto;
  padding: 0 32px;
}

/* === Section shared === */
section {
  position: relative;
  overflow: hidden;
}

.section-label {
  font-size: 1.2rem;
  color: var(--text-muted);
  letter-spacing: 0.35rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 300;
}

/* === Fade-in animation === */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Block 1: Hero
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, #FFE8EE 0%, #F0E8F5 40%, #FFF0F5 100%);
  background-size: 200% 200%;
  animation: heroGradient 15s ease-in-out infinite alternate;
}

@keyframes heroGradient {
  0% { background-position: 0% 40%; }
  100% { background-position: 100% 60%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero {
    animation: none;
  }
  .hero-glow {
    animation: none;
  }
  .hero-dot {
    animation: none;
  }
  .floating-orb::before {
    animation: none;
  }
  .orb-3 {
    animation: none;
  }
  .scroll-hint-arrow {
    animation: none;
  }
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.hero-text {
  flex: 1;
}

/* === Hero Typography === */

.hero-eyebrow {
  font-size: 1.2rem;
  color: var(--accent-pink);
  letter-spacing: 0.15rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.hero-headline {
  font-family: var(--font-brand);
  font-size: 3rem;
  font-weight: 500;
  color: var(--accent-purple);
  line-height: 1.4;
  margin-bottom: 1.75rem;
}

.headline-line {
  display: block;
}

.headline-line:first-child {
  font-weight: 300;
  font-size: 0.85em;
  opacity: 0.85;
}

.headline-line:last-child {
  font-weight: 600;
}



/* Hero CTA */
.hero-cta-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1.75rem;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-purple);
  color: #fff;
  border: none;
  border-radius: 2.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 4px 20px rgba(80, 61, 120, 0.25);
}

.hero-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(80, 61, 120, 0.35);
  background: #5d478a;
}

.hero-cta-btn:active {
  transform: translateY(0);
}

.cta-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-btn-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.hero-cta-qr {
  position: absolute;
  bottom: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  transform-origin: bottom center;
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 10;
  text-align: center;
  width: 200px;
}

.hero-cta-qr::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: #fff;
}

.hero-cta-wrapper:hover .hero-cta-qr,
.hero-cta-wrapper.active .hero-cta-qr {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  pointer-events: auto;
}

.hero-cta-qr img {
  width: 160px;
  height: 160px;
  border-radius: 0.75rem;
  background: #f5f0f0;
  display: block;
  margin: 0 auto;
}

.qr-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 1rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(180, 140, 160, 0.2);
  border-radius: 16px;
  padding: 0.75rem 1.25rem 0.7rem;
  min-width: 140px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(80, 61, 120, 0.1);
}

.hero-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(232, 146, 159, 0.2), rgba(80, 61, 120, 0.15));
  color: var(--accent-purple);
  margin-bottom: 0.05rem;
}

.hero-stat-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-stat-num {
  display: block;
  font-family: var(--font-brand);
  font-size: 1.1rem;
  color: var(--accent-purple);
  font-weight: 500;
  line-height: 1.2;
}

.hero-stat-label {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Hero background decoration */
.hero-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(232, 146, 159, 0.18);
}

.hero-dot-1 { width: 8px; height: 8px; top: 12%; left: 8%; animation: dotFloat 5s ease-in-out 0s infinite; }
.hero-dot-2 { width: 14px; height: 14px; top: 22%; right: 6%; animation: dotFloat 7s ease-in-out 0.8s infinite; background: rgba(107, 91, 138, 0.12); }
.hero-dot-3 { width: 6px; height: 6px; top: 60%; left: 3%; animation: dotFloat 6s ease-in-out 1.6s infinite; }
.hero-dot-4 { width: 12px; height: 12px; top: 75%; right: 10%; animation: dotFloat 8s ease-in-out 2.4s infinite; background: rgba(107, 91, 138, 0.10); }
.hero-dot-5 { width: 10px; height: 10px; top: 40%; left: 45%; animation: dotFloat 6.5s ease-in-out 3.2s infinite; }
.hero-dot-6 { width: 7px; height: 7px; top: 85%; left: 20%; animation: dotFloat 7.5s ease-in-out 4.0s infinite; background: rgba(232, 146, 159, 0.12); }
.hero-dot-7 { width: 9px; height: 9px; top: 10%; left: 70%; animation: dotFloat 5.5s ease-in-out 4.8s infinite; }
.hero-dot-8 { width: 5px; height: 5px; top: 50%; right: 40%; animation: dotFloat 6.8s ease-in-out 5.6s infinite; background: rgba(107, 91, 138, 0.08); }

@keyframes dotFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-20px) scale(1.3); opacity: 1; }
}

/* Hero glow */
.hero-glow {
  position: absolute;
  width: 55vmin;
  height: 55vmin;
  max-width: 500px;
  max-height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%,
    rgba(232, 146, 159, 0.18) 0%,
    rgba(160, 120, 180, 0.10) 40%,
    transparent 70%
  );
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  pointer-events: none;
  animation: glowPulse 7s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  0% { opacity: 0.5; transform: translateY(-50%) scale(1); }
  100% { opacity: 1; transform: translateY(-50%) scale(1.12); }
}

/* Hero dot texture pattern */
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(232, 146, 159, 0.05) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Hero illustration */
.hero-illustration {
  position: relative;
  flex-shrink: 0;
  width: 340px;
  height: 340px;
}

.hero-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(232,146,159,0.15), rgba(107,91,138,0.1));
  overflow: hidden;
  z-index: 1;
  transition: transform 0.1s ease-out;
}

@media (hover: hover) {
  .hero-circle {
    will-change: transform;
  }
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating activity badges */
.hero-float-badge {
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 2;
  pointer-events: none;
}

.badge-1 { top: 3%; left: 50%; margin-left: -19px; }
.badge-2 { top: 25%; right: 2%; }
.badge-3 { top: 58%; right: 0%; }
.badge-4 { bottom: 8%; left: 50%; margin-left: -19px; }
.badge-5 { bottom: 30%; left: 2%; }
.badge-6 { top: 25%; left: 2%; }

/* Floating orbs */
.floating-orb {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--divider);
  pointer-events: none;
}

.orb-1 {
  width: 170px;
  height: 170px;
  top: -30px;
  right: -20px;
  border-color: rgba(232, 146, 159, 0.2);
}

.orb-1::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(232, 146, 159, 0.2);
  border: 1.5px solid rgba(232, 146, 159, 0.3);
  top: 50%;
  left: -5px;
  margin-top: -5px;
  transform-origin: 90px center;
  animation: orbitRotate 14s linear infinite;
}

.orb-2 {
  width: 120px;
  height: 120px;
  bottom: 5px;
  left: -15px;
  border-color: rgba(107, 91, 138, 0.12);
}

.orb-2::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(107, 91, 138, 0.15);
  top: 50%;
  left: -4px;
  margin-top: -4px;
  transform-origin: 64px center;
  animation: orbitRotate 18s linear infinite reverse;
}

.orb-3 {
  width: 28px;
  height: 28px;
  background: rgba(232, 146, 159, 0.2);
  border: none;
  bottom: 80px;
  right: 30px;
  animation: orbPulse 4s ease-in-out infinite;
}

.orb-4 {
  width: 80px;
  height: 80px;
  top: 38%;
  left: -40px;
  border-color: rgba(107, 91, 138, 0.10);
}

.orb-4::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(180, 140, 160, 0.15);
  top: 50%;
  left: -3px;
  margin-top: -3px;
  transform-origin: 43px center;
  animation: orbitRotate 22s linear infinite;
}

@keyframes orbitRotate {
  to { transform: rotate(360deg); }
}

@keyframes orbPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.3); }
}

.scroll-hint {
  text-align: center;
  color: var(--text-muted);
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.scroll-hint-text {
  font-size: 0.65rem;
  letter-spacing: 0.2rem;
  opacity: 0.4;
}

.scroll-hint-arrow {
  font-size: 1rem;
  line-height: 1;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* === Hero Load Animations === */
@media (prefers-reduced-motion: no-preference) {
  .has-js .hero-eyebrow {
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 0.5s 0.1s ease forwards;
  }

  .has-js .headline-line:first-child {
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp 0.6s 0.3s ease forwards;
  }

  .has-js .headline-line:last-child {
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp 0.6s 0.5s ease forwards;
  }

  .has-js .hero-cta-wrapper {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 0.5s 0.7s ease forwards;
  }

  .has-js .hero-stats {
    opacity: 0;
    animation: fadeUp 0.5s 0.85s ease forwards;
  }

  .has-js .hero-illustration {
    opacity: 0;
    transform: scale(0.92);
    animation: fadeInScale 0.8s 0.4s ease forwards;
  }

  .has-js .scroll-hint {
    opacity: 0;
    animation: fadeUp 0.5s 1.3s ease forwards;
  }
}

@media (prefers-reduced-motion: reduce) {
  .has-js .hero-eyebrow,
  .has-js .headline-line,
  .has-js .hero-cta-wrapper,
  .has-js .hero-stats,
  .has-js .hero-illustration,
  .has-js .scroll-hint {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
  to { opacity: 1; transform: scale(1); }
}

/* ========================================
   Block 2: Belief
   ======================================== */
.belief {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-purple) 50%, var(--bg) 100%);
}

.belief-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.belief-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.belief-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(232, 146, 159, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  color: var(--text-muted);
}

.belief-icon svg {
  width: 2rem;
  height: 2rem;
}

.belief-item h3 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.belief-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========================================
   Block 3: What
   ======================================== */
.section-divider {
  border-top: 1px solid var(--divider);
}

.what {
  padding: 5rem 0;
}

.what-intro {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.what-intro strong {
  font-weight: 400;
  color: var(--accent-purple);
}

.what-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.what-card {
  background: var(--card-bg);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

@media (hover: hover) {
  .what-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(107, 91, 138, 0.1);
  }
}

.what-card-icon {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.what-card-icon svg {
  width: 2.5rem;
  height: 2.5rem;
}

.what-card h3 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.what-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========================================
   Block 4: How
   ======================================== */
.how {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-pink) 50%, var(--bg) 100%);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
}

.step {
  flex: 1;
  max-width: 260px;
  text-align: center;
}

.step-num {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(232, 146, 159, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin: 0 auto 0.75rem;
  color: var(--accent-purple);
}

.step h3 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.step p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.step-arrow {
  color: var(--text-muted);
  font-size: 1.5rem;
  padding-top: 1rem;
  flex-shrink: 0;
}

/* ========================================
   Block 5: Stories (horizontal scroll)
   ======================================== */
.stories {
  padding: 5rem 0;
  overflow: visible;
}

.stories-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0.25rem 1rem;
  scrollbar-width: none;
  mask-image: linear-gradient(to right, black 0%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 0%, black 85%, transparent 100%);
}

.stories-scroll::-webkit-scrollbar {
  display: none;
}

.story-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform 0.3s;
}

@media (hover: hover) {
  .story-card:hover {
    transform: translateY(-4px);
  }
}

.story-avatars {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.story-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(232, 146, 159, 0.2);
  flex-shrink: 0;
}

.story-bubble {
  background: linear-gradient(135deg, rgba(232,146,159,0.08), rgba(107,91,138,0.06));
  border-radius: 1rem;
  padding: 1.25rem 1rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.story-bubble p {
  font-size: 0.85rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin: 0;
}

.story-card cite {
  font-size: 0.85rem;
  color: var(--accent-purple);
  font-style: normal;
  font-weight: 400;
}

.story-card cite span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-top: 0.15rem;
}

/* ========================================
   Block 6: Photos (NEW)
   ======================================== */
.photos {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg-purple) 0%, var(--bg) 100%);
  overflow: visible;
}

.photos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.photo-card {
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(232,146,159,0.2), rgba(107,91,138,0.15));
  transition: transform 0.3s;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (hover: hover) {
  .photo-card:hover {
    transform: translateY(-4px);
  }
}

.photo-label {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  right: 0.5rem;
  background: rgba(80, 61, 120, 0.55);
  color: #fff;
  font-size: 0.7rem;
  padding: 0.3rem 0.5rem;
  border-radius: 0.4rem;
  text-align: center;
}

/* ========================================
   Block 7: CTA
   ======================================== */
.cta {
  padding: 5rem 0 4rem;
  background: linear-gradient(180deg, var(--bg) 0%, #FFE8EE 100%);
  text-align: center;
  overflow: visible;
}

.cta-sub {
  font-size: 1rem;
  color: var(--accent-purple);
  margin-bottom: 2.5rem;
}

.platforms {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.platform-item {
  position: relative;
  text-align: center;
  cursor: pointer;
}

.platform-icon {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background: rgba(232, 146, 159, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.4rem;
  transition: background 0.2s;
  color: var(--text-muted);
}

.platform-icon svg {
  width: 1.6rem;
  height: 1.6rem;
}

.platform-item:nth-child(even) .platform-icon {
  background: rgba(107, 91, 138, 0.12);
}

.platform-item:hover .platform-icon {
  background: rgba(232, 146, 159, 0.25);
}

.platform-item:nth-child(even):hover .platform-icon {
  background: rgba(107, 91, 138, 0.25);
}

.platform-name {
  font-size: 0.72rem;
  color: var(--text-light);
}

/* QR Bubble */
.qr-bubble {
  position: absolute;
  bottom: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.25rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 10;
  text-align: center;
  width: 230px;
}

.qr-bubble::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: #fff;
}

.platform-item:hover .qr-bubble,
.platform-item.active .qr-bubble {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  pointer-events: auto;
}

.qr-img {
  width: 180px;
  height: 180px;
  border-radius: 1rem;
  background: #f5f0f0;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.qr-bubble span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.cta-ending-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.cta-ending {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cta-ending-btn {
  font-size: 0.9rem;
  padding: 0.7rem 1.75rem;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
  color: var(--text-light);
  border-top: 1px solid var(--divider);
}

.icp-info {
  margin-top: 0.5rem;
}

.icp-info a {
  color: var(--text-light);
  text-decoration: none;
}

.icp-info a:hover {
  color: var(--accent-pink);
}

/* =========================================
   Responsive: Tablet (768px - 1023px)
   ========================================= */
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    max-width: var(--max-width-tablet);
    padding: 0 32px;
  }

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

  .story-card {
    flex: 0 0 300px;
  }
}

@media (max-width: 1023px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .hero-illustration {
    width: 260px;
    height: 260px;
    order: -1;
  }

  .hero-circle {
    width: 180px;
    height: 180px;
  }

  .hero-headline {
    font-size: 2.25rem;
  }

  .hero-stat {
    min-width: 130px;
    padding: 0.65rem 1rem 0.6rem;
  }

  .hero-stat-num {
    font-size: 1rem;
  }

  .hero-stat-icon {
    width: 24px;
    height: 24px;
    padding: 4px;
  }

  .hero-float-badge {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .badge-1, .badge-4 {
    margin-left: -16px;
  }

  .orb-1 {
    width: 130px;
    height: 130px;
    top: -15px;
    right: -10px;
  }
  .orb-1::before {
    transform-origin: 70px center;
  }

  .orb-2 {
    width: 90px;
    height: 90px;
    bottom: 5px;
    left: -8px;
  }
  .orb-2::before {
    transform-origin: 49px center;
  }

  .orb-3 {
    width: 20px;
    height: 20px;
    bottom: 60px;
    right: 20px;
  }

  .orb-4 {
    width: 60px;
    height: 60px;
    left: -25px;
  }
  .orb-4::before {
    transform-origin: 33px center;
  }

  .qr-img {
    width: 160px;
    height: 160px;
  }

  .qr-bubble {
    width: 200px;
  }
}

/* =========================================
   Responsive: Mobile (< 768px)
   ========================================= */
@media (max-width: 767px) {
  html {
    font-size: 16px;
  }

  .hero {
    min-height: 100svh;
    padding: 4rem 0 3rem;
    animation: none;
  }

  .hero-eyebrow {
    font-size: 1rem;
    letter-spacing: 0.1rem;
    margin-bottom: 0.6rem;
  }

  .hero-headline {
    font-size: 2.1rem;
  }


  /* CTA full-width on mobile */
  .hero-cta-wrapper {
    display: block;
  }

  .hero-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .hero-stats {
    gap: 0.75rem;
  }

  .hero-stat {
    min-width: 0;
    flex: 1;
    padding: 0.55rem 0.6rem 0.5rem;
    border-radius: 12px;
  }

  .hero-stat-num {
    font-size: 0.95rem;
  }

  .hero-stat-icon {
    width: 22px;
    height: 22px;
    padding: 4px;
  }

  .container {
    padding: 0 20px;
  }

  /* Illustration scale down */
  .hero-illustration {
    width: 220px;
    height: 220px;
  }

  .hero-circle {
    width: 150px;
    height: 150px;
  }

  .hero-float-badge {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .badge-1 { top: 4%; margin-left: -15px; }
  .badge-2 { top: 22%; right: 3%; }
  .badge-3 { top: 55%; right: 2%; }
  .badge-4 { bottom: 10%; margin-left: -15px; }
  .badge-5 { bottom: 28%; left: 3%; }
  .badge-6 { top: 22%; left: 3%; }

  .orb-1 {
    width: 115px;
    height: 115px;
    top: -12px;
    right: -5px;
  }
  .orb-1::before {
    transform-origin: 62px center;
  }

  .orb-2 {
    width: 85px;
    height: 85px;
    bottom: 15px;
    left: -2px;
  }
  .orb-2::before {
    transform-origin: 46px center;
  }

  .orb-3 { display: none; }

  .orb-4 {
    width: 58px;
    height: 58px;
    left: -18px;
  }
  .orb-4::before {
    transform-origin: 32px center;
  }

  /* Belief mobile */
  .belief-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .belief-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    padding: 0.5rem 0;
  }

  .belief-icon {
    flex-shrink: 0;
    margin: 0;
    width: 2.75rem;
    height: 2.75rem;
  }

  .belief-icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  /* What mobile */
  .what-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .what-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
    padding: 1.25rem 1rem;
  }

  .what-card-icon {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .what-card-icon svg {
    width: 2rem;
    height: 2rem;
  }

  /* How mobile */
  .steps {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .step {
    max-width: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    padding: 0.75rem 0;
  }

  .step-num {
    flex-shrink: 0;
    margin: 0;
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.1rem;
  }

  .step-arrow {
    display: none;
  }

  /* Stories mobile */
  .story-card {
    flex: 0 0 280px;
  }

  .story-bubble p {
    font-size: 0.8rem;
  }

  /* Photos mobile */
  .photos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  /* CTA mobile */
  .platforms {
    gap: 1.25rem;
  }

  .platform-icon {
    width: 3rem;
    height: 3rem;
  }

  .platform-icon svg {
    width: 1.3rem;
    height: 1.3rem;
  }

  .qr-img {
    width: 140px;
    height: 140px;
  }

  .qr-bubble {
    width: 170px;
    padding: 1rem;
  }

  /* Section labels on mobile */
  .section-label {
    font-size: 1rem;
    letter-spacing: 0.3rem;
  }
}

/* QR bubble below button on touch devices */
@media (hover: none) and (pointer: coarse) {
  .hero-cta-qr {
    bottom: auto;
    top: calc(100% + 12px);
  }

  .hero-cta-qr::after {
    top: auto;
    bottom: 100%;
    border-top-color: transparent;
    border-bottom-color: #fff;
  }
}
