/**
 * Print stylesheet — stomme.ai v2
 * Hide navigation, footer, interactive elements.
 * Readable typography with black-on-white.
 */

@media print {
  /* Hide non-content elements */
  .nav-v2,
  .nav,
  nav,
  footer,
  .footer,
  .site-footer,
  .theme-toggle,
  .theme-switcher,
  .cta-section,
  .bottom-cta,
  .mc-showcase,
  .mc-tabs,
  .trust-bar,
  .scroll-reveal,
  .hero-beam,
  .hero-glow,
  button,
  .btn,
  .mobile-menu-toggle,
  .cookie-banner,
  .skip-to-content {
    display: none !important;
  }

  /* Reset to readable defaults */
  body {
    background: #fff !important;
    color: #111 !important;
    font-size: 12pt !important;
    line-height: 1.5 !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    margin: 0 !important;
    padding: 1cm !important;
  }

  /* Remove decorative backgrounds */
  *,
  *::before,
  *::after {
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  /* Make links visible */
  a {
    color: #111 !important;
    text-decoration: underline !important;
  }

  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #555;
  }

  /* Internal links don't need URLs */
  a[href^="/"]::after,
  a[href^="#"]::after {
    content: "";
  }

  /* Headings */
  h1, h2, h3, h4, h5, h6 {
    color: #000 !important;
    page-break-after: avoid;
    font-family: 'Helvetica Neue', Arial, sans-serif !important;
  }

  /* Avoid page breaks inside elements */
  img, table, pre, blockquote {
    page-break-inside: avoid;
  }

  /* Images: constrain width */
  img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* Sections: remove fancy spacing */
  section {
    padding: 1em 0 !important;
    margin: 0 !important;
  }

  /* Layout: single column */
  .container,
  .wrapper,
  main {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Pricing cards: stack vertically */
  .pricing-grid,
  .feature-grid,
  .grid {
    display: block !important;
  }

  .pricing-card,
  .feature-tile {
    margin-bottom: 1em !important;
    border: 1px solid #ccc !important;
    padding: 1em !important;
    page-break-inside: avoid;
  }
}
