/* ============================================
   AGENT BACKROOM — agentbackroom.ai
   Dark mode, serif headlines, copper/gold accents
   ============================================ */

:root {
  --bg: #0d0d0f;
  --bg-card: #161619;
  --bg-card-hover: #1c1c20;
  --text: #e8e6e1;
  --text-muted: #9a9894;
  --gold: #c8a44e;
  --gold-light: #e0c472;
  --green: #3ecf8e;
  --red: #e85d5d;
  --radius: 12px;
  --radius-lg: 20px;
  --max-w: 1100px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

em { font-style: italic; color: var(--gold-light); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0d0d0f;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 164, 78, 0.3);
}
.btn-lg { padding: 18px 42px; font-size: 17px; }
.btn-nav {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 10px 24px;
  font-size: 14px;
}
.btn-nav:hover { background: var(--gold); color: #0d0d0f; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(13, 13, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 164, 78, 0.08);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 36px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  padding: 170px 0 100px;
  text-align: center;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
  pointer-events: none;
}
.hero-orb-1 { width: 500px; height: 500px; background: var(--gold); top: -100px; left: -100px; }
.hero-orb-2 { width: 400px; height: 400px; background: #5a4fcf; bottom: -100px; right: -100px; }

.hero-eyebrow {
  font-size: 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 12px;
}
.hero-manifesto {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero-headline em { font-style: italic; }
.text-gradient {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-sub em { color: var(--gold-light); }
.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero-note {
  font-size: 14px;
  color: var(--text-muted);
}
.hero-note em { color: var(--gold-light); }

/* ---- SECTIONS ---- */
.section { padding: 100px 0; }
.section-dark { background: var(--bg-card); }
.section-label {
  font-size: 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; }

/* ---- HOW IT WORKS ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid rgba(200, 164, 78, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: border-color 0.3s, transform 0.3s;
}
.step-card:hover { border-color: rgba(200, 164, 78, 0.2); transform: translateY(-4px); }
.step-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  color: rgba(200, 164, 78, 0.12);
  line-height: 1;
}
.step-icon { font-size: 28px; margin: 12px 0 16px; }
.step-card h3 { font-family: var(--font-display); font-size: 21px; margin-bottom: 12px; }
.step-card p { color: var(--text-muted); font-size: 15px; line-height: 1.65; }
.step-card p em { color: var(--gold-light); }

/* ---- RESULTS ---- */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.result-card {
  background: var(--bg);
  border: 1px solid rgba(200, 164, 78, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.result-card:hover { border-color: rgba(200, 164, 78, 0.2); transform: translateY(-2px); }
.result-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green);
  background: rgba(62, 207, 142, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.result-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 14px;
}
.result-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.result-stat { font-size: 14px; color: var(--green); font-weight: 600; margin-bottom: 12px; }
.result-tools {
  font-size: 12px;
  color: var(--text-muted);
  padding-top: 12px;
  border-top: 1px solid rgba(200, 164, 78, 0.06);
}

/* ---- COMMUNITY ---- */
.community-body {
  max-width: 700px;
  margin: 0 auto 32px;
  text-align: center;
}
.community-body p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.pull-quote {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--text);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  padding: 28px 32px;
  border-left: 3px solid var(--gold);
  background: rgba(200, 164, 78, 0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.5;
}
.pull-quote em { color: var(--gold-light); }
.community-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.comm-feature {
  background: var(--bg-card);
  border: 1px solid rgba(200, 164, 78, 0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.comm-icon { font-size: 24px; margin-bottom: 12px; }
.comm-feature h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--gold-light); }
.comm-feature p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ---- DELIVERABLES ---- */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.benefit-card {
  background: var(--bg);
  border: 1px solid rgba(200, 164, 78, 0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.3s;
}
.benefit-card:hover { border-color: rgba(200, 164, 78, 0.15); }
.benefit-emoji { font-size: 28px; margin-bottom: 14px; }
.benefit-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.benefit-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ---- QUALIFY ---- */
.qualify-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.qualify-card { border-radius: var(--radius-lg); padding: 40px 36px; }
.qualify-yes { background: rgba(62, 207, 142, 0.04); border: 1px solid rgba(62, 207, 142, 0.15); }
.qualify-no { background: rgba(232, 93, 93, 0.04); border: 1px solid rgba(232, 93, 93, 0.15); }
.qualify-card h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 20px; }
.qualify-yes h3 { color: var(--gold); }
.qualify-no h3 { color: var(--text-muted); }
.qualify-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.qualify-card li { font-size: 15px; color: var(--text-muted); padding-left: 24px; position: relative; }
.qualify-card li em { color: var(--gold-light); }
.qualify-yes li::before { content: "\2713"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.qualify-no li::before { content: "\2717"; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* ---- PRICING ---- */
.pricing-card {
  max-width: 520px;
  margin: 40px auto 0;
  background: var(--bg);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 0 60px rgba(200, 164, 78, 0.08);
}
.pricing-card h3 { font-family: var(--font-display); font-size: 24px; margin-bottom: 8px; }
.pricing-main-price {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  margin: 16px 0 4px;
}
.pricing-main-price span { font-size: 22px; color: var(--text-muted); font-weight: 400; }
.pricing-lock {
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 28px;
}
.pricing-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.pricing-features li { font-size: 15px; color: var(--text-muted); }
.pricing-features li em { color: var(--gold-light); }
.pricing-features li::before { content: "\2713  "; color: var(--gold); font-weight: 700; }
.pricing-card .btn { width: 100%; font-size: 17px; padding: 16px; }

.pricing-tiers {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.tier {
  background: var(--bg);
  border: 1px solid rgba(200, 164, 78, 0.08);
  border-radius: var(--radius);
  padding: 24px 28px;
  text-align: center;
  min-width: 180px;
  position: relative;
}
.tier-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.tier-price { font-family: var(--font-display); font-size: 32px; font-weight: 700; }
.tier-price span { font-size: 15px; font-weight: 400; color: var(--text-muted); }
.tier-status { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; margin-top: 8px; color: var(--text-muted); }
.tier-current { border-color: var(--gold); box-shadow: 0 0 30px rgba(200, 164, 78, 0.1); }
.tier-badge {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0d0d0f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 3px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.tier-locked { opacity: 0.35; }
.pricing-note {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

/* ---- NEWSLETTER ---- */
.newsletter-section { text-align: center; }
.newsletter-section h3 { font-family: var(--font-display); font-size: 26px; margin-bottom: 8px; }
.newsletter-section > .container > p { color: var(--text-muted); margin-bottom: 24px; font-size: 16px; }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid rgba(200, 164, 78, 0.15);
  background: var(--bg-card);
  color: var(--text);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input:focus { border-color: var(--gold); }

/* ---- FOOTER ---- */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(200, 164, 78, 0.06);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand p { font-size: 13px; color: var(--text-muted); margin-top: 8px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: rgba(13, 13, 15, 0.97);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(200, 164, 78, 0.08);
  }
  .hero { padding: 140px 0 80px; }
  .steps-grid,
  .results-grid,
  .deliverables-grid,
  .qualify-grid,
  .community-features { grid-template-columns: 1fr; }
  .pricing-tiers { flex-direction: column; align-items: center; }
  .tier { width: 100%; max-width: 280px; }
  .newsletter-form { flex-direction: column; }
  .footer-inner { flex-direction: column; text-align: center; }
  .pricing-card { padding: 36px 24px; }
}
