/* ============================================
   DESIGN SYSTEM — Man in Order
   Hotep Jesus · v1.0 July 2026
   Applies to: index.html, sub.html,
   sub-confirm.html, talk.html
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Source+Serif+4:opsz,wght@8..60,700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --bg: #141412;
  --bg-card: #1C1B18;
  --gold: #C9A227;
  --gold-dark: #A8871F;
  --slate: #3A4038;
  --text: #F4F2ED;
  --text-secondary: #B5B1A8;
  --text-tertiary: #78756D;
  --border: #2B2A26;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.65;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}

h1 { font-size: 3.2rem; }
h2 { font-size: 2.1rem; margin-bottom: 16px; }
h3 { font-size: 1.4rem; }

p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

p:last-child { margin-bottom: 0; }

a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover { color: var(--gold); }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-tertiary);
  display: block;
  margin-bottom: 12px;
}

.eyebrow--gold { color: var(--gold); }

/* ---------- Layout ---------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-col {
  max-width: 640px;
  margin: 0 auto;
}

.section {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

.section:last-of-type { border-bottom: none; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(20, 20, 18, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.navbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 24px;
}

.nav-brand a {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
}

.nav-brand a:hover { color: var(--text); }
.nav-brand span { font-weight: 300; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color 0.25s ease;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  display: inline-block;
  background: var(--gold) !important;
  color: #000 !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  padding: 10px 22px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.25s ease, transform 0.25s ease;
}

.nav-cta:hover {
  background: var(--gold-dark) !important;
  color: #000 !important;
  transform: scale(1.02);
}

/* ---------- Hamburger ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: all 0.3s ease;
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Mobile Nav ---------- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(20, 20, 18, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  padding: 24px;
  gap: 8px;
  z-index: 999;
  border-bottom: 1px solid var(--border);
  transform: translateY(-110%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav a {
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--text-secondary);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--text); }

.nav-cta-mobile {
  display: block;
  background: var(--gold);
  color: #000 !important;
  font-weight: 700;
  text-align: center;
  padding: 14px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
  border-bottom: none !important;
}

.nav-cta-mobile:hover { color: #000 !important; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 32px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-align: center;
  transition: background 0.25s ease, transform 0.25s ease;
  line-height: 1.4;
}

.btn:hover {
  background: var(--gold-dark);
  color: #000;
  transform: scale(1.01);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 32px;
  border-radius: 3px;
  border: 1px solid var(--gold);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-align: center;
  transition: all 0.25s ease;
  line-height: 1.4;
}

.btn-secondary:hover {
  background: rgba(201, 162, 39, 0.1);
  color: var(--gold);
  transform: scale(1.01);
}

.btn-block { display: block; width: 100%; }

/* ---------- Hero ---------- */
.hero {
  padding-top: 72px;
  min-height: 92vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;
  width: 100%;
}

.hero-content {
  max-width: 540px;
}

.hero-content .eyebrow { margin-bottom: 16px; }

.hero-content h1 {
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-content .hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-height: 72vh;
  width: auto;
  object-fit: contain;
}

/* ---------- Media Proof Strip ---------- */
.media-strip {
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.media-strip .container {
  text-align: center;
}

.media-strip .eyebrow {
  margin-bottom: 20px;
}

.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-row img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.6) invert(1);
  opacity: 0.5;
  transition: opacity 0.4s ease;
}

.logo-row img:hover {
  opacity: 0.8;
}

/* ---------- Framework / Pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pillar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px 28px;
  text-align: center;
  transition: border-color 0.35s ease, transform 0.35s ease;
}

.pillar:hover {
  border-color: var(--slate);
  transform: translateY(-2px);
}

.pillar-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: block;
}

.pillar h3 { margin-bottom: 14px; }

.pillar p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.pillar-link {
  display: inline-block;
  margin-top: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.25s ease;
}

.pillar-link:hover { color: var(--gold-dark); }

/* ---------- Supplement Section ---------- */
.supplement-showcase {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}

.supplement-image img {
  border-radius: 8px;
  width: 100%;
}

.supplement-content h2 { margin-bottom: 16px; }

.supplement-content p {
  margin-bottom: 24px;
}

/* ---------- Consulting Teaser (index) ---------- */
.consult-teaser {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.consult-teaser h2 { margin-bottom: 16px; }

.consult-teaser p {
  margin-bottom: 32px;
  font-size: 1.05rem;
}

/* ---------- Offer Cards (talk) ---------- */
.offer-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px 28px;
  position: relative;
}

.offer-card--featured {
  border: 2px solid var(--gold);
  padding: 44px 32px;
}

.offer-card--top {
  border: 2px solid var(--slate);
  padding: 44px 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, var(--bg-card) 100%);
}

.offer-card .card-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}

.offer-card--featured .card-label { color: var(--gold); }
.offer-card--top .card-label { color: var(--slate); }

.offer-card .card-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.offer-card .price {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--text);
  margin: 16px 0 4px;
  line-height: 1;
}

.offer-card .price-detail {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.offer-card .card-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 16px 0;
  line-height: 1.65;
}

.offer-card ul {
  list-style: none;
  margin: 20px 0 28px;
}

.offer-card li {
  padding: 7px 0;
  padding-left: 18px;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.offer-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.offer-card--featured li::before { background: var(--gold); }
.offer-card--top li::before { background: var(--slate); }
.offer-card:not(.offer-card--featured):not(.offer-card--top) li::before { background: var(--slate); }

.founding-rate {
  font-size: 0.82rem;
  color: var(--gold);
  margin-top: 14px;
  font-style: italic;
}

/* ---------- Pill Tag ---------- */
.pill {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: absolute;
  top: -14px;
  left: 28px;
}

.pill--top {
  background: var(--slate);
  color: #fff;
}

/* ---------- Tier Cards (sub-confirm) ---------- */
.tier-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: 16px;
  margin: 36px 0;
}

.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.3s ease;
}

.tier-card:hover { border-color: var(--slate); }

.tier-card--featured {
  border: 2px solid var(--gold);
  position: relative;
  padding: 32px 24px;
}

.tier-pill {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.62rem;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.tier-qty {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 8px;
}

.tier-price {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.tier-detail {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ---------- Coupon Box ---------- */
.coupon-box {
  border: 2px dashed var(--gold);
  background: rgba(201, 162, 39, 0.04);
  padding: 28px 24px;
  text-align: center;
  margin: 36px auto;
  max-width: 400px;
  border-radius: 6px;
}

.coupon-code {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 2.1rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin: 8px 0;
}

.coupon-detail {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ---------- Authority Strip ---------- */
.authority-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-number {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 3rem;
  color: var(--text);
  line-height: 1;
}

.stat-caption {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin-top: 8px;
  line-height: 1.4;
}

/* ---------- Status Banner (talk) ---------- */
.status-banner {
  display: none;
  padding: 16px 24px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 72px;
}

.status-banner.success {
  display: block;
  background: var(--gold);
  color: #000;
}

.status-banner.canceled {
  display: block;
  background: var(--slate);
  color: var(--text);
}

/* ---------- Opt-In Page (sub) ---------- */
.opt-in {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 72px - 140px);
  text-align: center;
  padding: 96px 24px;
}

.opt-in-content {
  max-width: 480px;
  width: 100%;
}

.opt-in-content h1 {
  font-size: 2.6rem;
  margin-bottom: 28px;
}

.opt-in-content .bullets {
  list-style: none;
  text-align: left;
  margin: 0 auto 32px;
  max-width: 380px;
}

.opt-in-content .bullets li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--text-secondary);
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
}

.opt-in-content .bullets li:last-child { border-bottom: none; }

.opt-in-content .bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ---------- Confirm Block (sub-confirm) ---------- */
.confirm-block {
  padding: 40px 24px 32px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  margin-top: 72px;
}

.confirm-icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.confirm-block h1 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.confirm-block p {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

/* ---------- Tripwire Section (sub-confirm) ---------- */
.tripwire {
  padding: 56px 24px 72px;
  text-align: center;
}

.tripwire-inner {
  max-width: 720px;
  margin: 0 auto;
}

.tripwire h2 {
  margin-bottom: 24px;
}

.product-shot {
  max-width: 340px;
  margin: 28px auto;
  border-radius: 8px;
  overflow: hidden;
}

.product-shot img {
  width: 100%;
}

/* ---------- Scarcity Section ---------- */
.scarcity {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.scarcity p {
  margin-bottom: 28px;
  font-size: 1.05rem;
}

/* ---------- Past The Sale ---------- */
.past-sale {
  max-width: 640px;
  margin: 0 auto;
}

.past-sale p {
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ---------- Pacing Section ---------- */
.pacing {
  max-width: 640px;
  margin: 0 auto;
}

.pacing p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ---------- Form ---------- */
.form-group {
  margin-bottom: 16px;
}

.form-group input[type="email"] {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.25s ease;
}

.form-group input[type="email"]:focus {
  border-color: var(--gold);
}

.form-group input[type="email"]::placeholder {
  color: var(--text-tertiary);
}

#bs-message {
  margin-top: 12px;
  font-size: 0.9rem;
}

/* ---------- Disclaimer ---------- */
.disclaimer {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.disclaimer .container { max-width: 640px; }

.disclaimer h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.disclaimer p {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  line-height: 1.7;
}

/* ---------- Footer ---------- */
.footer {
  padding: 56px 0 40px;
  text-align: center;
}

.footer-brand {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 24px;
}

.footer-brand span { font-weight: 300; }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-tertiary);
  transition: color 0.25s ease;
}

.footer-links a:hover { color: var(--text); }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-tertiary);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.footer-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-tertiary);
}

/* ---------- Micro-proof / Testimonial ---------- */
.micro-proof {
  max-width: 520px;
  margin: 32px auto 0;
  padding: 20px 24px;
  border-left: 2px solid var(--slate);
  text-align: left;
}

.micro-proof p {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.micro-proof cite {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  font-style: normal;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  body { font-size: 1rem; }

  .section { padding: 56px 0; }

  /* Media strip */
  .logo-row { gap: 24px; }
  .logo-row img { height: 28px; }

  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  /* Hero */
  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 24px 40px;
  }

  .hero-content { max-width: 100%; }

  .hero-image img { max-height: 50vh; }

  .hero-content h1 { font-size: 2.2rem; }

  /* Pillars */
  .pillars { grid-template-columns: 1fr; }

  /* Supplement */
  .supplement-showcase {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Offer Cards */
  .offer-cards {
    grid-template-columns: 1fr;
  }

  .offer-card--featured { padding: 36px 28px; }
  .offer-card { padding: 32px 24px; }

  /* Tier Cards */
  .tier-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Authority */
  .authority-strip {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Opt-in */
  .opt-in {
    padding: 56px 24px;
    min-height: calc(100vh - 72px - 100px);
  }

  .opt-in-content h1 { font-size: 1.9rem; }

  /* Confirm */
  .confirm-block { padding: 32px 24px 24px; }
  .tripwire { padding: 40px 24px 56px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }

  .hero-inner { padding: 36px 16px 32px; }
  .container { padding: 0 16px; }

  .btn { padding: 12px 24px; font-size: 0.85rem; }
  .btn-secondary { padding: 12px 24px; font-size: 0.85rem; }
}
