/* ===================================
   7 FIGURE AGENT CLUB - 7figureagentclub.com
   Design system matched to peysonrobertson.com
   Black, gray, blue + emerald accent
   =================================== */

:root {
    --black: #151520;
    --dark: #1C1C28;
    --card: #242432;
    --light: #F5F5F5;
    --white: #FFFFFF;
    --blue: #2563EB;
    --blue-hover: #1D4ED8;
    --blue-glow: rgba(37, 99, 235, 0.25);
    --accent: #10B981;
    --accent-hover: #059669;
    --gray: #A0A0A8;
    --gray-dark: #78788A;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(37, 99, 235, 0.25);
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; scroll-padding-top: 80px; }
body { font-family: var(--font-body); font-size: 1rem; line-height: 1.7; color: var(--light); background: var(--black); overflow-x: hidden; }
::selection { background: var(--blue); color: var(--white); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* === LAYOUT === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; }
.section-alt { background: var(--dark); }
.section-light { background: #F0F0F2; }
.text-blue { color: var(--blue); }
.text-accent { color: var(--accent); }

/* === NAVIGATION === */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 20px 0; transition: all 0.4s ease; }
.navbar.scrolled { background: rgba(21,21,32,0.95); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); padding: 14px 0; border-bottom: 1px solid var(--border); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; align-items: center; }
.nav-logo { font-size: 0.9375rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--light); }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--light); opacity: 0.7; transition: opacity 0.3s; }
.nav-links a:hover { opacity: 1; }
.nav-links .nav-cta { display: none; }
.nav-cta-desktop { padding: 10px 28px; background: var(--blue); color: var(--white); font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; border-radius: 6px; transition: background 0.3s; opacity: 1; }
.nav-cta-desktop:hover { background: var(--blue-hover); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--light); transition: all 0.3s; transform-origin: center; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* === HERO === */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: var(--black); padding: 160px 0 100px; overflow: hidden; }
.hero-glow { position: absolute; top: -20%; left: 50%; transform: translateX(-50%); width: 900px; max-width: 120%; height: 700px; background: radial-gradient(ellipse at center, rgba(37,99,235,0.18) 0%, rgba(37,99,235,0.06) 35%, transparent 70%); pointer-events: none; }
.hero .container { position: relative; z-index: 1; }
.hero-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.hero-title { font-family: var(--font-heading); font-size: clamp(2.5rem, 5.5vw, 4.25rem); font-weight: 700; line-height: 1.1; margin-bottom: 24px; color: var(--white); letter-spacing: -0.01em; }
.hero-subtitle { font-size: 1.1875rem; line-height: 1.7; color: var(--gray); margin: 0 auto 36px; max-width: 640px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; justify-content: center; }

/* Hero animations */
.anim-1 { opacity: 0; animation: fadeUp .7s ease forwards .15s; }
.anim-2 { opacity: 0; animation: fadeUp .7s ease forwards .3s; }
.anim-3 { opacity: 0; animation: fadeUp .7s ease forwards .45s; }
.anim-4 { opacity: 0; animation: fadeUp .7s ease forwards .6s; }

/* === BADGE === */
.badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 20px; border: 1px solid rgba(37,99,235,0.2); border-radius: 100px; font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--light); margin-bottom: 28px; }
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); flex-shrink: 0; box-shadow: 0 0 8px rgba(37, 99, 235, 0.6), 0 0 20px rgba(37, 99, 235, 0.3); }

/* === BUTTONS === */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 36px; font-family: var(--font-body); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none; border: 1px solid transparent; border-radius: 6px; transition: all 0.3s; cursor: pointer; }
.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); box-shadow: 0 0 20px rgba(37, 99, 235, 0.2); }
.btn-primary:hover { background: var(--blue-hover); border-color: var(--blue-hover); box-shadow: 0 0 30px rgba(37, 99, 235, 0.4), 0 0 60px rgba(37, 99, 235, 0.15); }
.btn-ghost { background: transparent; color: var(--light); border-color: rgba(255,255,255,0.15); }
.btn-ghost:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.3); }

/* === SECTION TYPOGRAPHY === */
.section-header { text-align: center; margin-bottom: 64px; }
.section-label { display: block; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.35em; text-transform: uppercase; color: var(--blue); margin-bottom: 20px; }
.section-title { font-family: var(--font-heading); font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 600; line-height: 1.2; margin-bottom: 16px; }
.section-desc { font-size: 1.0625rem; color: var(--gray); max-width: 640px; margin: 0 auto; line-height: 1.7; }
.section-light .section-label { color: var(--blue); }
.section-light .section-title { color: #1A1A2E; }
.section-light .section-desc { color: #4A4A5E; }

/* === STATS BAR === */
.stats-bar { background: #F0F0F2; padding: 72px 0; }
.stats-bar-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat-item { text-align: center; padding: 40px 28px; background: var(--white); border: 1px solid rgba(16,185,129,0.15); border-radius: 14px; box-shadow: 0 4px 20px rgba(0,0,0,0.04), 0 0 30px rgba(16,185,129,0.15), 0 0 60px rgba(16,185,129,0.06); transition: box-shadow 0.3s, transform 0.3s; }
.stat-item:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,0,0,0.04), 0 0 40px rgba(16,185,129,0.25), 0 0 80px rgba(16,185,129,0.1); }
.stat-number { display: block; font-family: var(--font-heading); font-size: clamp(1.875rem, 4vw, 2.75rem); font-weight: 700; color: var(--accent); line-height: 1.05; margin-bottom: 12px; letter-spacing: -0.01em; }
.stat-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #6B6B7B; line-height: 1.5; }

/* === ABOUT === */
.about-wrap { max-width: 760px; margin: 0 auto; text-align: center; }
.about-wrap .section-title { margin-bottom: 28px; }
.about-body p { color: rgba(245,245,245,0.85); margin-bottom: 20px; line-height: 1.8; font-size: 1.0625rem; }
.about-body p:last-child { margin-bottom: 0; }

/* === PROOF / HELP CARDS === */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.proof-card { display: flex; flex-direction: column; gap: 20px; padding: 36px 32px; background: var(--card); border: 1px solid var(--border); border-radius: 16px; transition: all 0.35s; box-shadow: 0 4px 24px rgba(37, 99, 235, 0.08); }
.proof-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 8px 40px rgba(37, 99, 235, 0.2), 0 0 60px rgba(37, 99, 235, 0.1); }
.proof-check { width: 44px; height: 44px; border-radius: 12px; background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.25); display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.proof-text h3 { font-family: var(--font-heading); font-size: 1.1875rem; font-weight: 600; color: var(--white); margin-bottom: 10px; line-height: 1.3; }
.proof-text p { font-size: 0.9375rem; color: rgba(245,245,245,0.82); line-height: 1.7; }
/* Light-section overrides for proof cards */
.section-light .proof-card { background: var(--white); border-color: rgba(0,0,0,0.06); box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.section-light .proof-card:hover { border-color: rgba(37,99,235,0.25); box-shadow: 0 8px 32px rgba(37,99,235,0.12); }
.section-light .proof-text h3 { color: #1A1A2E; }
.section-light .proof-text p { color: #5A5A6E; }
.section-light .proof-check { background: rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.22); }

/* === SMS / TEXT UPDATES === */
.sms-wrap { max-width: 720px; margin: 0 auto; text-align: center; }
.sms-intro { font-size: 1.125rem; line-height: 1.8; color: rgba(245,245,245,0.9); margin-bottom: 32px; }
.sms-fineprint { max-width: 600px; margin: 0 auto; padding-top: 28px; border-top: 1px solid var(--border); font-size: 0.8125rem; line-height: 1.75; color: var(--gray-dark); }
.sms-fineprint a { color: var(--blue); font-weight: 500; transition: color 0.3s; }
.sms-fineprint a:hover { color: var(--blue-hover); }

/* === CONTACT === */
.contact-card { max-width: 640px; margin: 0 auto; background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: 16px; padding: 48px; box-shadow: 0 8px 40px rgba(0,0,0,0.06); }
.contact-name { font-size: 1.25rem; font-weight: 600; color: #1A1A2E; margin-bottom: 28px; }
.contact-name span { color: #6B6B7B; font-weight: 400; }
.contact-list { list-style: none; }
.contact-list li { display: flex; align-items: baseline; gap: 20px; padding: 18px 0; border-top: 1px solid rgba(0,0,0,0.07); }
.contact-list li:first-child { border-top: none; padding-top: 0; }
.contact-label { flex-shrink: 0; width: 84px; font-size: 0.625rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #9A9AA8; padding-top: 2px; }
.contact-value { font-size: 1.0625rem; color: #3A3A4E; line-height: 1.5; }
a.contact-value { color: var(--blue); font-weight: 500; transition: color 0.3s; }
a.contact-value:hover { color: var(--blue-hover); }

/* === FOOTER === */
.footer { background: var(--black); border-top: 1px solid var(--border); padding: 72px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { display: block; font-size: 0.875rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--light); margin-bottom: 16px; }
.footer-desc { font-size: 0.875rem; color: var(--gray-dark); line-height: 1.7; max-width: 420px; }
.footer-col h4 { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gray); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 0.875rem; color: var(--gray-dark); margin-bottom: 12px; transition: color 0.3s; }
.footer-col a:hover { color: var(--light); }
.footer-bottom { padding-top: 32px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom span { font-size: 0.75rem; color: var(--gray-dark); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.75rem; color: var(--gray-dark); transition: color 0.3s; }
.footer-legal a:hover { color: var(--light); }

/* === SCROLL REVEAL === */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .proof-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .nav-links { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100dvh; height: 100vh; background-color: #151520; flex-direction: column; align-items: center; justify-content: center; gap: 28px; z-index: 999; -webkit-transform: translateZ(0); transform: translateZ(0); }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 1rem; opacity: 1; }
    .nav-links .nav-cta { display: inline-flex; padding: 12px 28px; background: var(--blue); color: var(--white); border-radius: 6px; opacity: 1; margin-top: 8px; }
    .nav-cta-desktop { display: none; }
    .nav-toggle { display: flex; }
    .hero { padding: 130px 0 70px; min-height: auto; }
    .hero-title { font-size: clamp(2.25rem, 8vw, 3.25rem); }
    .hero-subtitle { font-size: 1.0625rem; }
    .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; max-width: 340px; margin: 0 auto; }
    .hero-ctas .btn { width: 100%; }
    .stats-bar-inner { grid-template-columns: 1fr; gap: 16px; max-width: 420px; margin: 0 auto; }
    .section-header { margin-bottom: 48px; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .section { padding: 64px 0; }
    .stats-bar { padding: 56px 0; }
    .nav-logo { font-size: 0.75rem; letter-spacing: 0.15em; }
    .badge { font-size: 0.5625rem; padding: 6px 14px; letter-spacing: 0.1em; }
    .contact-card { padding: 32px 24px; }
    .contact-list li { flex-direction: column; gap: 4px; }
    .contact-label { width: auto; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}
