/* Dreamy Art Studio — Version 5 shared continuity system */
html { overflow-x: clip; }
body { padding-top: 72px; }
.header, .header.is-scrolled { position: fixed; inset: 0 0 auto; z-index: 200; width: 100%; height: 72px; border-bottom: 1px solid var(--line); }

/* One lightweight three-signal story, reused everywhere. */
.shared-signals { width: min(100%, 290px); height: 205px; position: relative; }
.shared-signal { position: absolute; display: grid; place-items: center; }
.shared-search { left: 14%; top: 38%; width: 54px; height: 54px; }
.shared-search .scan-ring { width: 16px; height: 16px; box-shadow: 0 0 0 8px rgba(141,243,194,.14); }
.shared-search .scan-ring::after { inset: -16px; }
.shared-map { right: 14%; top: 19%; width: 62px; height: 62px; }
.shared-map .map-pin { font-size: 3.2rem; line-height: 1; filter: drop-shadow(0 0 9px rgba(141,243,194,.35)); animation: star-signal-v5 3.4s ease-in-out infinite; }
.shared-chat { bottom: 20%; left: 50%; width: 74px; height: 40px; transform: translateX(-50%); }
.shared-chat .typing { gap: 6px; margin: 0; }
.shared-chat .typing i { width: 9px; height: 9px; }
.card-map .map-pulse { display: none; }
.card-map .map-pin { animation: star-signal-v5 3.4s ease-in-out infinite; filter: drop-shadow(0 0 7px rgba(141,243,194,.35)); }

/* Cards on every page reveal in the same calm, mobile-first sequence. */
.card-reveal { opacity: 0; transform: translateY(26px); transition: opacity .62s ease, transform .62s cubic-bezier(.2,.7,.2,1), background .25s, border-color .25s; }
.card-reveal.is-visible { opacity: 1; transform: none; }
.industry-cards .card-reveal:nth-child(3n + 2), .steps-grid .card-reveal:nth-child(3n + 2), .plans-grid .card-reveal:nth-child(3n + 2) { transition-delay: .12s; }
.industry-cards .card-reveal:nth-child(3n), .steps-grid .card-reveal:nth-child(3n), .plans-grid .card-reveal:nth-child(3n) { transition-delay: .24s; }
.industry-card { min-height: 275px; }
.industry-card:hover { background: rgba(255,255,255,.055); }
.work-steps { grid-template-columns: repeat(5, 1fr); }

.footer-domain { display: grid; gap: 4px; align-content: start; color: var(--white); font-size: 1.15rem; font-weight: 700; letter-spacing: -.04em; }
.footer-domain small { color: var(--mint); font-size: .59rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }

@keyframes star-signal-v5 { 0%, 100% { transform: scale(1) rotate(0deg); } 45% { transform: scale(1.14) rotate(12deg); } 62% { transform: scale(.98) rotate(0deg); } }

@media (max-width: 850px) {
  body { padding-top: 70px; }
  .header, .header.is-scrolled { height: 70px; z-index: 200; }
  .menu-btn { z-index: 201; }
  .mobile-menu { z-index: 190; }
  .shared-signals { width: 220px; height: 175px; }
  .shared-search { left: 10%; }
  .shared-map { right: 8%; }
  .shared-chat { bottom: 12%; }
  .work-steps { grid-template-columns: 1fr; }
  .industry-card { min-height: 245px; }
  .card-reveal, .industry-cards .card-reveal:nth-child(n), .steps-grid .card-reveal:nth-child(n), .plans-grid .card-reveal:nth-child(n) { transition-delay: 0s; }
}

@media (prefers-reduced-motion: reduce) {
  .shared-map .map-pin, .card-reveal, .card-reveal.is-visible { animation: none; opacity: 1; transform: none; transition: none; }
}
