/* =========================================
   HUMANUP GLOBAL STYLES (CONTRAST RHYTHM)
   ========================================= */

:root {
  /* Brand Gradients & Colors */
  --brand-gradient: linear-gradient(35deg, #05060b 0%, #15192b 45%, #6375cf 80%, #4b59a1 100%);
  --bg-dark: #05060b;
  --bg-light: #FDFBF7; /* Warm off-white */
  --bg-white: #FFFFFF;
  
  --accent-apricot: #FFCF99;
  --accent-apricot-hover: #ffb666;
  
  /* Typography Colors */
  --text-light: #ffffff;
  --text-light-muted: #cbd5e1;
  --text-dark: #1C1C1E;
  --text-dark-muted: #64748b;
  
  /* Fonts */
  --font-brand: 'Source Serif 4', serif;
  --font-ui: 'DM Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; }

/* Base body is now light */
body {
  font-family: var(--font-ui);
  background-color: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.5;
}

/* Header */
.header {
  display: flex; justify-content: center;
  padding: 30px 40px;
  background: var(--bg-dark); /* Keeps logo area tied to the hero */
}
.logo {
  height: 32px; width: auto;
}

/* Hero Section (Stays Dark & Immersive) */
.hero {
  text-align: center;
  padding: 60px 20px 100px;
  background: var(--brand-gradient);
  color: var(--text-light); /* Force text light inside hero */
}

.hero-title {
  font-family: var(--font-brand);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  margin-bottom: 16px;
  color: var(--text-light);
}

.hero-title span {
  font-style: italic;
  font-weight: 400;
}

.underline {
  width: 120px; height: 3px;
  margin: 0 auto 30px;
  background: var(--accent-apricot);
  border-radius: 2px;
}

.hero-subtitle {
  color: var(--text-light-muted);
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 40px;
}

/* Hero Action Button */
.hero-actions {
    display: flex; justify-content: center;
}

.btn-primary {
  background-color: var(--accent-apricot);
  color: #020408;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 20px rgba(255, 207, 153, 0.15);
  display: inline-flex; justify-content: center; align-items: center;
}
.btn-primary:hover {
  background-color: var(--accent-apricot-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(255, 207, 153, 0.3);
}

/* Body Section (Now Light & Breathable) */
.body-section {
  background-color: var(--bg-light);
  padding: 100px 20px;
  text-align: center;
}

.body-copy {
  max-width: 650px;
  margin: 0 auto 80px;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-dark-muted);
}
.body-copy p { margin-bottom: 20px; }

/* The Glass Card -> Becomes a Clean, Elevated White Card */
.card {
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 40px 30px;
  max-width: 650px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06); /* Soft, premium shadow */
  position: relative;
}

.card-accent {
  height: 3px; width: 60px;
  background: var(--accent-apricot);
  border-radius: 2px;
  margin: 0 auto 20px;
}

.card h3 {
  font-family: var(--font-brand);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 0;
  margin-bottom: 12px;
}

.card p {
  color: var(--text-dark-muted);
  font-size: 1.05rem; line-height: 1.5;
}

/* Footer (Bookends the page with Dark) */
.site-footer {
  background: var(--bg-dark);
  color: #94a3b8; /* <-- Updated for perfect legibility */
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
}

.site-footer p { margin: 0; }
.site-footer a {
  color: var(--text-light-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer a:hover {
  color: var(--accent-apricot);
}

/* Utilities */
.desktop-only { display: block; }
.mobile-only { display: none; }

/* Mobile Adjustments */
@media (max-width: 680px) {
  .hero-title {
    font-size: clamp(36px, 9vw, 56px);
  }
  .hero-subtitle { font-size: 1.05rem; }
  
  .desktop-only { display: none; }
  .mobile-only { display: block; }
  
  .btn-primary { width: 100%; max-width: 320px; }
}