/* Modern Upline — dark, minimal, monochrome */
:root {
  --bg: #0b0b0c;
  --surface: #131315;
  --border: #232326;
  --text: #f5f4f2;
  --muted: #a3a7ad;
  --red: #ff0033;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Poppins', sans-serif; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.3rem, 5.5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 700; margin-bottom: 0.75rem; }
h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1rem;
}

.lead { font-size: 1.15rem; color: var(--muted); }
.micro { font-size: 0.78rem; color: #6b6f75; line-height: 1.6; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn:hover { transform: translateY(-2px); opacity: 0.92; }
.btn-light { background: var(--text); color: #0b0b0c; }
.btn-ghost { background: transparent; color: var(--text); border-color: #3a3a3f; }
.btn-red { background: var(--red); color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 1.02rem; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 11, 12, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; gap: 28px; height: 72px; }
.nav-logo img { height: 52px; display: block; }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 0.92rem; font-weight: 500;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { white-space: nowrap; }
.nav-toggle { display: none; background: none; border: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); }

/* Hero */
.hero { padding: 110px 0 90px; text-align: center; position: relative; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255,255,255,0.06), transparent);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 820px; }
.hero-sub { font-size: 1.2rem; color: var(--muted); margin: 1.5rem auto 2.2rem; max-width: 620px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex; justify-content: center; gap: 56px; flex-wrap: wrap;
  margin-top: 64px; padding-top: 36px; border-top: 1px solid var(--border);
}
.stat strong { font-family: 'Poppins', sans-serif; font-size: 1.5rem; display: block; }
.stat span { color: var(--muted); font-size: 0.88rem; }

/* Guide opt-in */
.guide { padding: 90px 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.guide-inner { display: grid; grid-template-columns: 340px 1fr; gap: 56px; align-items: center; }
.guide-cover img {
  width: 100%; border-radius: 10px; display: block;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  transform: rotate(-2deg);
}
.checklist { list-style: none; margin: 1.4rem 0 1.8rem; }
.checklist li { padding-left: 30px; position: relative; margin-bottom: 0.85rem; color: var(--muted); }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--text); font-weight: 700; }
.checklist strong { color: var(--text); }
.optin-form { display: flex; gap: 10px; flex-wrap: wrap; }
.optin-form input[type="text"],
.optin-form input[type="email"] {
  flex: 1 1 180px;
  background: var(--bg); border: 1px solid #34343a; border-radius: 8px;
  padding: 13px 16px; color: var(--text); font-family: 'Inter', sans-serif; font-size: 0.95rem;
}
.optin-form input:focus { outline: none; border-color: #6b6f75; }
.optin-form .btn { flex: 0 0 auto; }
.optin-form + .micro { margin-top: 0.8rem; }

/* System cards */
.system { padding: 100px 0; }
.system h2 { margin-bottom: 2.5rem; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 34px 28px;
}
.card-num { font-family: 'Poppins', sans-serif; font-weight: 700; color: #55585e; font-size: 0.95rem; display: block; margin-bottom: 14px; }
.card p { color: var(--muted); font-size: 0.97rem; }

/* About */
.about { padding: 90px 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-inner { display: grid; grid-template-columns: 360px 1fr; gap: 56px; align-items: center; }
.about-photo img { width: 100%; border-radius: 12px; display: block; }
.about-copy p { color: var(--muted); margin-bottom: 1rem; }

/* YouTube */
.youtube { padding: 100px 0; }
.yt-inner .lead { max-width: 560px; margin: 0 auto 2rem; }

/* Fast lane strip */
.fastlane { padding: 70px 0; border-top: 1px solid var(--border); }
.fastlane-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.fastlane h2 { margin-bottom: 0.4rem; }
.fastlane .lead { margin: 0 0 1.1rem; }
.fastlane-list { max-width: 560px; margin-bottom: 0; }
.fastlane-list li { margin-bottom: 0.6rem; font-size: 0.97rem; }
.fastlane-inner > .btn { flex-shrink: 0; }
@media (max-width: 860px) {
  .fastlane-list { text-align: left; margin-left: auto; margin-right: auto; }
}

/* Work With Me page */
.wwm-hero { padding: 90px 0 60px; }
.wwm-hero .hero-sub { max-width: 640px; margin: 1.2rem auto 0; }
.wwm-offer { padding: 30px 0 70px; }
.wwm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.wwm-fit { padding: 70px 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.wwm-checklist { max-width: 620px; margin: 1.8rem auto 2rem; }
.wwm-fit .lead { max-width: 640px; margin: 0 auto; }
.wwm-apply { padding: 80px 0 100px; }
.wwm-apply-inner { max-width: 560px; }
.wwm-apply .lead { margin-bottom: 2rem; }
.wwm-form { flex-direction: column; }
.wwm-form input[type="text"], .wwm-form input[type="email"], .wwm-form textarea { flex: none; width: 100%; }
.wwm-form textarea {
  background: var(--bg); border: 1px solid #34343a; border-radius: 8px;
  padding: 13px 16px; color: var(--text); font-family: 'Inter', sans-serif;
  font-size: 0.95rem; resize: vertical;
}
.wwm-form textarea:focus { outline: none; border-color: #6b6f75; }
.inline-link { color: var(--text); font-weight: 600; }

@media (max-width: 860px) {
  .wwm-grid { grid-template-columns: 1fr; }
  .fastlane-inner { justify-content: center; text-align: center; }
}

/* Final CTA */
.final-cta { padding: 90px 0 110px; border-top: 1px solid var(--border); }
.final-cta .lead { margin: 0.5rem 0 2rem; }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 48px 0 56px; text-align: center; }
.footer-logo { height: 72px; margin-bottom: 18px; opacity: 0.85; }
.footer .micro { max-width: 640px; margin: 0 auto 10px; }

/* Thank-you page */
.thanks { min-height: 72vh; display: flex; align-items: center; padding: 80px 0; text-align: center; }
.thanks .lead { max-width: 520px; margin: 1rem auto 2rem; }
.thanks-cover { width: 220px; margin: 0 auto 2rem; }
.thanks-cover img { width: 100%; border-radius: 8px; box-shadow: 0 24px 60px rgba(0,0,0,0.55); }
.thanks-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 860px) {
  .guide-inner, .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .guide-cover { max-width: 300px; margin: 0 auto; }
  .about-photo { max-width: 380px; }
  .cards { grid-template-columns: 1fr; }
  .hero { padding: 80px 0 70px; }
  .hero-stats { gap: 32px; }
}
@media (max-width: 720px) {
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; background: var(--bg); border-bottom: 1px solid var(--border);
    padding: 20px 24px; gap: 18px;
  }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
}
