/* ═══════════════════════════════════════════════════
   YOUNG MONEY CREATORS — Shared Stylesheet
   ═══════════════════════════════════════════════════ */

:root {
  --td:     #0a3d38;
  --teal:   #00c8be;
  --gold:   #f0a500;
  --white:  #ffffff;
  --bg:     #071f1d;
  --card:   #0d4a44;
  --card2:  #0a3d38;
  --muted:  #8fc7c3;
  --border: #1a6b63;
  --red:    #e74c3c;
}

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Bebas+Neue&display=swap');

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

html { scroll-behavior:smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }

/* ── Typography ─────────────────────────────────────── */
h1,h2,h3,h4,h5 { line-height:1.2; font-weight:800; }
.eyebrow {
  display:inline-block;
  font-size:11px; font-weight:700;
  letter-spacing:3px; text-transform:uppercase;
  color:var(--teal); margin-bottom:14px;
}
.section-label {
  font-size:11px; font-weight:700;
  letter-spacing:3px; text-transform:uppercase;
  color:var(--muted); margin-bottom:10px;
}
.gold { color:var(--gold); }
.teal { color:var(--teal); }
.muted { color:var(--muted); }

/* ── Layout ─────────────────────────────────────────── */
.container { max-width:1080px; margin:0 auto; padding:0 24px; }
.container-sm { max-width:720px; margin:0 auto; padding:0 24px; }

section { padding:90px 0; }
section.tight { padding:60px 0; }
section.alt { background:var(--td); }

.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:32px; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }

@media(max-width:768px) {
  section { padding:60px 0; }
  .grid-2 { grid-template-columns:1fr; }
  .grid-3 { grid-template-columns:1fr; }
}

/* ── Navigation ─────────────────────────────────────── */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:rgba(7,31,29,.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border);
  padding:0 24px;
  height:72px;
  display:flex; align-items:center; justify-content:space-between;
}
.nav-logo {
  display:flex; align-items:center;
  text-decoration:none;
}
.nav-logo img {
  height:64px; width:auto;
  filter:drop-shadow(0 0 8px rgba(0,200,190,.3));
}
.nav-logo span { color:var(--gold); }
.nav-links {
  display:flex; gap:32px; list-style:none;
  font-size:14px; font-weight:500; color:var(--muted);
}
.nav-links a:hover { color:var(--white); transition:color .2s; }
.nav-links a.active { color:var(--teal); }
.nav-cta {
  background:var(--gold); color:var(--td);
  border:none; border-radius:8px;
  padding:9px 20px; font-size:14px; font-weight:800;
  cursor:pointer; white-space:nowrap;
  text-decoration:none; display:inline-block;
  transition:all .2s;
}
.nav-cta:hover { background:#f5b429; transform:translateY(-1px); }
.nav-mobile-btn { display:none; background:none; border:none; color:var(--white); font-size:22px; cursor:pointer; }

@media(max-width:768px) {
  .nav-links { display:none; }
  .nav-mobile-btn { display:block; }
}

/* ── Buttons ─────────────────────────────────────────── */
.btn-gold {
  display:inline-block; background:var(--gold); color:var(--td);
  border:none; border-radius:10px; padding:15px 30px;
  font-size:16px; font-weight:800; cursor:pointer;
  text-decoration:none; transition:all .2s; text-align:center;
}
.btn-gold:hover { background:#f5b429; transform:translateY(-2px); box-shadow:0 6px 20px rgba(240,165,0,.35), 0 0 40px rgba(240,165,0,.2); }

.btn-teal {
  display:inline-block; background:var(--teal); color:var(--td);
  border:none; border-radius:10px; padding:15px 30px;
  font-size:16px; font-weight:800; cursor:pointer;
  text-decoration:none; transition:all .2s; text-align:center;
}
.btn-teal:hover { background:#00e0d6; transform:translateY(-2px); box-shadow:0 6px 20px rgba(0,200,190,.3); }

.btn-outline {
  display:inline-block; background:transparent; color:var(--teal);
  border:2px solid var(--teal); border-radius:10px; padding:13px 28px;
  font-size:15px; font-weight:700; cursor:pointer;
  text-decoration:none; transition:all .2s; text-align:center;
}
.btn-outline:hover { background:rgba(0,200,190,.1); }

.btn-full { display:block; width:100%; text-align:center; }

/* ── Cards ───────────────────────────────────────────── */
.card {
  background:var(--card); border:1px solid var(--border);
  border-radius:14px; padding:28px;
  box-shadow:0 4px 24px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.04);
}
.card-gold {
  background:var(--card); border:2px solid var(--gold);
  border-radius:14px; padding:28px;
  box-shadow:0 4px 32px rgba(240,165,0,.12), inset 0 1px 0 rgba(255,255,255,.04);
}
.card-teal {
  background:var(--td); border:1.5px solid var(--teal);
  border-radius:14px; padding:28px;
  box-shadow:0 4px 24px rgba(0,200,190,.1), inset 0 1px 0 rgba(255,255,255,.04);
}

/* ── Stats bar ───────────────────────────────────────── */
.stats-bar {
  display:flex; justify-content:center; gap:0;
  background:var(--td); border-top:1px solid var(--border); border-bottom:1px solid var(--border);
}
.stat-item {
  flex:1; max-width:280px; text-align:center;
  padding:28px 20px;
  border-right:1px solid var(--border);
}
.stat-item:last-child { border-right:none; }
.stat-num {
  font-size:38px; font-weight:900; color:var(--gold);
  line-height:1; margin-bottom:6px;
}
.stat-label { font-size:13px; color:var(--muted); line-height:1.4; }
.stat-name { font-size:11px; color:var(--border); margin-top:4px; text-transform:uppercase; letter-spacing:1px; }

@media(max-width:600px) {
  .stats-bar { flex-wrap:wrap; }
  .stat-item { border-right:none; border-bottom:1px solid var(--border); max-width:100%; width:100%; }
  .stat-item:last-child { border-bottom:none; }
}

/* ── Divider ─────────────────────────────────────────── */
.divider { height:1px; background:var(--border); margin:0; }

/* ── Info box ────────────────────────────────────────── */
.info-box {
  background:rgba(0,200,190,.07); border-left:3px solid var(--teal);
  border-radius:0 8px 8px 0; padding:14px 18px;
  font-size:14px; color:var(--muted);
}
.info-box strong { color:var(--teal); }

/* ── Guarantee badge ─────────────────────────────────── */
.guar {
  background:rgba(0,200,190,.08); border:1px solid var(--teal);
  border-radius:10px; padding:16px 20px;
  font-size:14px; color:var(--teal); line-height:1.6;
}
.guar strong { color:var(--white); }

/* ── Footer ──────────────────────────────────────────── */
footer {
  background:var(--td); border-top:1px solid var(--border);
  padding:50px 0 30px;
}
.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr;
  gap:48px; margin-bottom:40px;
}
.footer-brand .logo { font-size:18px; font-weight:800; margin-bottom:12px; }
.footer-brand .logo span { color:var(--gold); }
.footer-brand p { font-size:14px; color:var(--muted); max-width:280px; line-height:1.7; }
.footer-col h4 { font-size:12px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--teal); margin-bottom:14px; }
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:8px; }
.footer-col ul li a { font-size:14px; color:var(--muted); transition:color .2s; }
.footer-col ul li a:hover { color:var(--white); }
.footer-bottom {
  border-top:1px solid var(--border); padding-top:24px;
  display:flex; justify-content:space-between; align-items:center;
  font-size:12px; color:#2a6b65;
}
@media(max-width:768px) {
  .footer-grid { grid-template-columns:1fr; gap:32px; }
  .footer-bottom { flex-direction:column; gap:8px; text-align:center; }
}

/* ── Animations ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
.fade-up { animation:fadeUp .5s ease forwards; }

/* ── Accessibility ───────────────────────────────────── */
.btn-gold:focus-visible,
.btn-teal:focus-visible,
.btn-outline:focus-visible,
.nav-cta:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Mobile Critical Fixes ───────────────────────────── */
@media (max-width: 600px) {
  /* Stats bar — let items go full width */
  .stat-item { max-width: none !important; }

  /* Sticky buy bar — stack vertically, full-width CTA */
  .sticky-buy {
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 16px;
  }
  .sticky-buy a {
    flex: 1 0 100%;
    text-align: center;
  }

  /* Marcus bio grid — stack earlier, smaller photo */
  .marcus-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .marcus-photo {
    width: 140px !important;
    height: 140px !important;
    margin: 0 auto;
  }

  /* About hero grid — stack earlier */
  .about-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .hero-photo { max-width: 220px; margin: 0 auto; }
}

@media (max-width: 480px) {
  /* Positioning bar — stack into vertical column */
  section + div > .container > div[style*="flex-wrap:wrap"] {
    flex-direction: column;
  }

  /* Reduce hero padding so image area isn't cramped */
  .hero, .sales-hero { padding: 120px 0 60px; }

  /* Bigger tap targets */
  .btn-gold, .btn-teal, .btn-outline {
    padding: 16px 28px;
    min-height: 48px;
  }

  /* Hero image position on small screens */
  .hero {
    background-position: right -40px center;
    background-size: 70%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-up { animation: none; opacity: 1; transform: none; }
}
