/* ===================================================
   MT AI AGENCY - CLEAN PROFESSIONAL STYLESHEET
   White Aesthetic / Sleek Blue Accents / Minimalist
   =================================================== */

:root {
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'Space Grotesk', monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
  background-color: #ffffff;
}

body {
  font-family: var(--font-sans);
  background-color: #ffffff;
  color: #0f172a;
  overflow-x: hidden;
  line-height: 1.6;
}

.font-mono {
  font-family: var(--font-mono);
}

/* Custom Minimal Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #ffffff;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Primary Button */
.btn-primary {
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-primary:hover {
  transform: translateY(-1px);
}
.btn-primary:active {
  transform: translateY(0);
}

/* Form Controls */
input, textarea, select {
  font-family: var(--font-sans);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ===================================================
   PRINT STYLES: ONLY PRINT THE MEMBERSHIP POLICY CARD
   =================================================== */
@media print {
  html, body {
    background: #ffffff !important;
    color: #0f172a !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Hide everything on the page */
  body * {
    visibility: hidden !important;
  }

  /* Show only the policy card and its descendants */
  #policyPrintableCard,
  #policyPrintableCard * {
    visibility: visible !important;
  }

  #policyPrintableCard {
    position: absolute !important;
    left: 20px !important;
    top: 20px !important;
    right: 20px !important;
    width: auto !important;
    max-width: 750px !important;
    margin: 0 auto !important;
    padding: 36px !important;
    border: 1px solid #94a3b8 !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    background: #ffffff !important;
  }
}
