/* =============================================================
   FLOW — progressive enhancement layer (a11y + print)
   Mirrors the PLAYBOOK hub: gold focus ring, reduced-motion
   safety, skip link, minimal print styles.
   ============================================================= */

/* ---- Keyboard focus: visible gold outline ---- */
:focus-visible {
  outline: 2px solid #e8c474;
  outline-offset: 3px;
  border-radius: 2px;
}
/* don't double-draw on mouse click */
:focus:not(:focus-visible) { outline: none; }

/* ---- Skip link ---- */
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 18px;
  background: #c9a961;
  color: #0a0a0a;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  border-radius: 0;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
  outline: 2px solid #0a0a0a;
  outline-offset: 2px;
}

/* ---- Reduced motion: quiet everything ---- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in { opacity: 1 !important; transform: none !important; }
  .hero-waves,
  .flow-lines,
  .dash-lines,
  .flow-ribbons,
  .hero-sparkles { display: none !important; }
}

/* ---- Print: light, ink-on-paper, no chrome ---- */
@media print {
  :root { --text: #111 !important; }
  body { background: #fff !important; color: #111 !important; }
  header,
  footer,
  .float-cta,
  .hero-waves,
  .flow-lines,
  .dash-lines,
  .flow-ribbons,
  .hero-sparkles,
  .skip-link,
  .newsletter-band form { display: none !important; }
  .hero,
  .pricing-section,
  .final-cta,
  section,
  main,
  article { background: #fff !important; color: #111 !important; }
  .section-title, .page-title, article h1, article h2, article h3,
  .hero-en, .hero-jp { color: #111 !important; -webkit-text-fill-color: #111 !important; }
  a { color: #111 !important; text-decoration: underline; }
  .cta-btn, .btn-start, .btn-apply, .submit-btn { border: 1px solid #111 !important; color: #111 !important; background: #fff !important; }
}
