/* ============================================================
   DOMINATINGDAILY.COM — Design System
   Dark premium theme · Gold authority accent · Mobile-first
   ============================================================ */

:root {
  --bg: #0a0a0b;
  --bg-raised: #121214;
  --bg-card: #17171a;
  --bg-hover: #1f1f23;
  --border: #26262b;
  --border-strong: #35353c;
  --gold: #d4a437;
  --gold-bright: #f0c05a;
  --gold-dim: rgba(212, 164, 55, 0.14);
  --text: #f2f2f0;
  --text-dim: #9c9ca4;
  --text-faint: #63636b;
  --green: #3ec97e;
  --red: #e5533d;
  --blue: #4a8fe7;
  --radius: 12px;
  --radius-sm: 8px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --max-w: 1180px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

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

html { scroll-behavior: smooth; }

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

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--gold); color: #000; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.lead { color: var(--text-dim); font-size: 1.1rem; max-width: 620px; }
.dim { color: var(--text-dim); }
.faint { color: var(--text-faint); font-size: 0.85rem; }
.gold { color: var(--gold); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
section { padding: 72px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.95rem;
  border: 1px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: #0a0a0b; }
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--bg-card); color: var(--text); border-color: var(--border); }
.btn-dark:hover { background: var(--bg-hover); }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(10, 10, 11, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-weight: 900; font-size: 1.15rem; letter-spacing: -0.02em; display: flex; align-items: center; gap: 10px; }
.logo .mark {
  width: 30px; height: 30px; border-radius: 7px;
  background: linear-gradient(135deg, var(--gold), #8a6a1e);
  display: grid; place-items: center;
  color: #0a0a0b; font-size: 0.95rem; font-weight: 900;
}
.logo em { font-style: normal; color: var(--gold); }
.main-nav { display: flex; gap: 26px; align-items: center; }
.main-nav a { font-size: 0.9rem; font-weight: 600; color: var(--text-dim); transition: color 0.15s; }
.main-nav a:hover, .main-nav a.active { color: var(--text); }
.main-nav a.active { color: var(--gold); }
.header-cta { display: flex; gap: 10px; align-items: center; }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; }

@media (max-width: 900px) {
  .main-nav {
    display: none;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--bg-raised);
    border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: stretch;
    padding: 12px 20px; gap: 0;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 4px; border-bottom: 1px solid var(--border); font-size: 1rem; }
  .main-nav a:last-child { border-bottom: none; }
  .nav-toggle { display: block; }
  .header-cta .btn-ghost { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 110px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% -10%, rgba(212, 164, 55, 0.13), transparent),
    radial-gradient(ellipse 60% 50% at 20% 110%, rgba(74, 143, 231, 0.07), transparent),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000, transparent);
}
.hero .wrap { position: relative; z-index: 2; }
.hero h1 { max-width: 760px; }
.hero .lead { margin: 1.4rem 0 2.2rem; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 56px; flex-wrap: wrap; }
.hero-stats .stat b { display: block; font-size: 1.6rem; font-weight: 800; color: var(--gold); }
.hero-stats .stat span { font-size: 0.8rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.1em; }

/* ---------- Cards ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color 0.18s, transform 0.18s;
}
.card:hover { border-color: var(--border-strong); }
.card.link:hover { border-color: var(--gold); transform: translateY(-3px); }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--text-dim); font-size: 0.92rem; }
.card .icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--gold-dim); color: var(--gold);
  display: grid; place-items: center;
  font-size: 1.25rem; margin-bottom: 16px;
}

/* ---------- Pillar cards ---------- */
.pillars { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.pillar { position: relative; overflow: hidden; min-height: 190px; display: flex; flex-direction: column; justify-content: flex-end; }
.pillar .tag { position: absolute; top: 18px; right: 18px; font-size: 1.5rem; opacity: 0.9; }
.pillar span.count { color: var(--text-faint); font-size: 0.8rem; }

/* ---------- Video / media cards ---------- */
.media-card { padding: 0; overflow: hidden; cursor: pointer; }
.thumb {
  aspect-ratio: 16/9;
  position: relative;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #1c1c20, #101012);
}
.thumb .play {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(212, 164, 55, 0.92); color: #000;
  display: grid; place-items: center; font-size: 1.1rem;
  padding-left: 4px;
  transition: transform 0.18s;
}
.media-card:hover .play { transform: scale(1.12); }
.thumb .duration {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.75); border-radius: 5px;
  padding: 2px 8px; font-size: 0.75rem; font-weight: 600;
}
.thumb .badge-new {
  position: absolute; top: 10px; left: 10px;
  background: var(--gold); color: #000; border-radius: 5px;
  padding: 2px 9px; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.06em;
}
.media-meta { padding: 16px 18px 18px; }
.media-meta h4 { margin-bottom: 4px; font-weight: 700; }
.media-meta .sub { font-size: 0.8rem; color: var(--text-faint); }
.pill {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  padding: 3px 10px; border-radius: 99px;
  background: var(--gold-dim); color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.pill.blue { background: rgba(74,143,231,0.14); color: var(--blue); }
.pill.green { background: rgba(62,201,126,0.13); color: var(--green); }

/* ---------- Horizontal scroll rows (Netflix style) ---------- */
.row-scroll {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: min(300px, 78vw);
  gap: 16px; overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin; scrollbar-color: var(--border-strong) transparent;
}
.row-scroll > * { scroll-snap-align: start; }

/* ---------- Today's Drop ---------- */
.drop-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 20px; }
@media (max-width: 860px) { .drop-grid { grid-template-columns: 1fr; } }
.drop-feature { padding: 0; overflow: hidden; }
.drop-feature .thumb { aspect-ratio: 16/8; }
.drop-side { display: flex; flex-direction: column; gap: 20px; }

/* ---------- Pricing ---------- */
.price-card {
  max-width: 460px; margin: 0 auto; text-align: center;
  border: 1px solid var(--gold);
  box-shadow: 0 0 60px rgba(212, 164, 55, 0.12);
}
.price-card .amount { font-size: 3.4rem; font-weight: 900; margin: 12px 0 2px; }
.price-card .amount small { font-size: 1rem; color: var(--text-dim); font-weight: 500; }
.price-card ul { list-style: none; text-align: left; margin: 26px 0; }
.price-card li { padding: 9px 0; border-bottom: 1px solid var(--border); color: var(--text-dim); font-size: 0.92rem; display: flex; gap: 10px; }
.price-card li::before { content: "✓"; color: var(--gold); font-weight: 800; }
.price-card li:last-child { border-bottom: none; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { padding: 56px 0 40px; border-bottom: 1px solid var(--border);
  background: radial-gradient(ellipse 70% 100% at 50% -30%, rgba(212,164,55,0.09), transparent); }
.page-hero h1 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); }
.page-hero .lead { margin-top: 0.8rem; font-size: 1rem; }

/* ---------- Tabs ---------- */
.tabs { display: flex; gap: 6px; flex-wrap: wrap; margin: 26px 0; }
.tab {
  padding: 9px 20px; border-radius: 99px;
  border: 1px solid var(--border); background: transparent;
  color: var(--text-dim); font-weight: 600; font-size: 0.88rem;
}
.tab:hover { color: var(--text); border-color: var(--border-strong); }
.tab.active { background: var(--gold); border-color: var(--gold); color: #000; }

/* ---------- Stats / dashboard ---------- */
.stat-card { text-align: left; }
.stat-card b { display: block; font-size: 2rem; font-weight: 800; }
.stat-card .delta { font-size: 0.8rem; font-weight: 700; }
.delta.up { color: var(--green); }
.delta.down { color: var(--red); }
.stat-card .label { font-size: 0.78rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.1em; }

.progress { height: 8px; border-radius: 99px; background: var(--bg-hover); overflow: hidden; margin-top: 10px; }
.progress i { display: block; height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--gold), var(--gold-bright)); }

.streak-flame { font-size: 2.6rem; }

/* ---------- Lists / feed ---------- */
.feed-item { display: flex; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.feed-item:last-child { border-bottom: none; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-weight: 800; font-size: 0.9rem;
  background: var(--bg-hover); color: var(--gold);
  border: 1px solid var(--border-strong);
}
.feed-item .who { font-weight: 700; font-size: 0.92rem; }
.feed-item .when { color: var(--text-faint); font-size: 0.78rem; margin-left: 8px; font-weight: 400; }
.feed-item p { margin-top: 4px; color: var(--text-dim); font-size: 0.92rem; }
.feed-actions { display: flex; gap: 18px; margin-top: 10px; }
.feed-actions button { background: none; border: none; color: var(--text-faint); font-size: 0.82rem; font-weight: 600; }
.feed-actions button:hover { color: var(--gold); }

/* ---------- Tables ---------- */
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
th { text-align: left; color: var(--text-faint); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; padding: 10px 12px; border-bottom: 1px solid var(--border-strong); }
td { padding: 13px 12px; border-bottom: 1px solid var(--border); color: var(--text-dim); }
tr:last-child td { border-bottom: none; }
td b { color: var(--text); }
.rank-1 { color: var(--gold); font-weight: 800; }

/* ---------- Forms ---------- */
input, select, textarea {
  width: 100%; background: var(--bg-raised);
  border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  color: var(--text); padding: 12px 14px; font-family: inherit; font-size: 0.95rem;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold); }
label { display: block; font-size: 0.8rem; font-weight: 700; margin: 16px 0 6px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- Calendar (booking) ---------- */
.cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin-top: 14px; }
.cal .dow { text-align: center; font-size: 0.7rem; color: var(--text-faint); font-weight: 700; padding: 6px 0; }
.cal button {
  aspect-ratio: 1; border-radius: 8px; border: 1px solid var(--border);
  background: transparent; color: var(--text-dim); font-weight: 600; font-size: 0.85rem;
}
.cal button:hover:not(:disabled) { border-color: var(--gold); color: var(--text); }
.cal button.sel { background: var(--gold); color: #000; border-color: var(--gold); }
.cal button:disabled { opacity: 0.25; cursor: default; }
.slots { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.slots button { padding: 9px 16px; border-radius: 8px; border: 1px solid var(--border-strong); background: transparent; color: var(--text-dim); font-weight: 600; font-size: 0.85rem; }
.slots button:hover { border-color: var(--gold); color: var(--text); }
.slots button.sel { background: var(--gold); color: #000; border-color: var(--gold); }

/* ---------- AI Chat widget ---------- */
.ai-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #a87f24);
  border: none; color: #000; font-size: 1.5rem; font-weight: 900;
  box-shadow: 0 8px 30px rgba(212, 164, 55, 0.4);
  transition: transform 0.18s;
  display: grid; place-items: center;
}
.ai-fab:hover { transform: scale(1.08); }

.ai-panel {
  position: fixed; bottom: 96px; right: 24px; z-index: 100;
  width: min(390px, calc(100vw - 32px));
  height: min(560px, calc(100vh - 130px));
  background: var(--bg-raised);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none; flex-direction: column; overflow: hidden;
}
.ai-panel.open { display: flex; }
.ai-head { padding: 16px 18px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; background: var(--bg-card); }
.ai-head .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }
.ai-head b { font-size: 0.95rem; }
.ai-head span { font-size: 0.75rem; color: var(--text-faint); display: block; }
.ai-head button { margin-left: auto; background: none; border: none; color: var(--text-faint); font-size: 1.2rem; }
.ai-body { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.msg { max-width: 85%; padding: 11px 15px; border-radius: 14px; font-size: 0.9rem; line-height: 1.5; }
.msg.ai { background: var(--bg-card); border: 1px solid var(--border); border-bottom-left-radius: 4px; align-self: flex-start; white-space: pre-line; }
.msg.user { background: var(--gold); color: #000; border-bottom-right-radius: 4px; align-self: flex-end; font-weight: 600; }
.ai-suggest { display: flex; flex-wrap: wrap; gap: 6px; }
.ai-suggest button { font-size: 0.75rem; padding: 6px 12px; border-radius: 99px; border: 1px solid var(--border-strong); background: transparent; color: var(--text-dim); }
.ai-suggest button:hover { border-color: var(--gold); color: var(--gold); }
.ai-input { display: flex; gap: 8px; padding: 14px; border-top: 1px solid var(--border); background: var(--bg-card); }
.ai-input input { flex: 1; }
.ai-input button { padding: 0 18px; border-radius: var(--radius-sm); background: var(--gold); border: none; font-weight: 800; }

/* ---------- Admin ---------- */
.admin-layout { display: grid; grid-template-columns: 220px 1fr; gap: 28px; padding: 40px 0 80px; }
@media (max-width: 860px) { .admin-layout { grid-template-columns: 1fr; } }
.admin-side { display: flex; flex-direction: column; gap: 4px; }
.admin-side button {
  text-align: left; padding: 11px 14px; border-radius: var(--radius-sm);
  background: none; border: none; color: var(--text-dim); font-weight: 600; font-size: 0.9rem;
}
.admin-side button:hover { background: var(--bg-card); color: var(--text); }
.admin-side button.active { background: var(--gold-dim); color: var(--gold); }
.dropzone {
  border: 2px dashed var(--border-strong); border-radius: var(--radius);
  padding: 48px 24px; text-align: center; color: var(--text-dim);
  transition: border-color 0.18s; cursor: pointer;
}
.dropzone:hover, .dropzone.drag { border-color: var(--gold); color: var(--gold); }

/* ---------- Book reader ---------- */
.reader-layout { display: grid; grid-template-columns: 240px 1fr; gap: 32px; }
@media (max-width: 860px) { .reader-layout { grid-template-columns: 1fr; } }
.reader-toc { position: sticky; top: 84px; align-self: start; }
.reader-toc a { display: block; padding: 9px 12px; border-radius: 8px; font-size: 0.88rem; color: var(--text-dim); }
.reader-toc a:hover, .reader-toc a.active { background: var(--bg-card); color: var(--gold); }
.reader-page { font-size: 1.05rem; line-height: 1.85; color: #d6d6d2; max-width: 680px; }
.reader-page h2 { margin: 2rem 0 1rem; }
.reader-page p { margin-bottom: 1.2rem; }
.highlighted { background: rgba(212, 164, 55, 0.25); border-radius: 3px; padding: 0 2px; }

/* ---------- Modal ---------- */
.modal-bg { position: fixed; inset: 0; z-index: 110; background: rgba(0,0,0,0.7); display: none; place-items: center; padding: 20px; }
.modal-bg.open { display: grid; }
.modal { background: var(--bg-raised); border: 1px solid var(--border-strong); border-radius: 16px; max-width: 520px; width: 100%; padding: 32px; box-shadow: var(--shadow); }
.modal h3 { margin-bottom: 8px; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120px);
  background: var(--bg-card); border: 1px solid var(--gold); color: var(--text);
  padding: 13px 24px; border-radius: 10px; z-index: 120;
  font-weight: 600; font-size: 0.9rem;
  transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.2);
  box-shadow: var(--shadow);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 56px 0 40px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.site-footer h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-faint); margin-bottom: 14px; }
.site-footer a { display: block; color: var(--text-dim); font-size: 0.9rem; padding: 4px 0; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom { margin-top: 44px; padding-top: 20px; border-top: 1px solid var(--border); color: var(--text-faint); font-size: 0.8rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 40px; }
.mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.flex { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.between { justify-content: space-between; }
hr.sep { border: none; border-top: 1px solid var(--border); margin: 32px 0; }

/* ---------- Hero collage (mockup-style image strip) ---------- */
.collage { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 52px; }
.collage a {
  aspect-ratio: 3/3.6; border-radius: 10px; position: relative; overflow: hidden;
  border: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 14px;
  transition: transform 0.2s, border-color 0.2s;
}
.collage a:hover { transform: translateY(-4px); border-color: var(--gold); }
.collage .c-icon { position: absolute; top: 46%; left: 50%; transform: translate(-50%, -50%); font-size: 2.6rem; color: var(--gold); opacity: 0.55; }
.collage b { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; position: relative; }
.c-faith       { background: linear-gradient(180deg, #241c0c 0%, #0e0d0a 100%); }
.c-fitness     { background: linear-gradient(180deg, #24120c 0%, #0e0b0a 100%); }
.c-business    { background: linear-gradient(180deg, #0f1722 0%, #0a0c0e 100%); }
.c-leadership  { background: linear-gradient(180deg, #1c1424 0%, #0d0b0e 100%); }
.c-brotherhood { background: linear-gradient(180deg, #0f1f16 0%, #0a0e0c 100%); }
@media (max-width: 700px) { .collage { grid-template-columns: repeat(3, 1fr); } .collage a:nth-child(n+4) { display: none; } }

/* ---------- Trust strip ---------- */
.trust-strip { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--border); color: var(--text-faint); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; }
.trust-strip b { color: var(--gold); }

/* ---------- Brotherhood band ---------- */
.brotherhood-band {
  background:
    radial-gradient(ellipse 50% 90% at 80% 50%, rgba(212,164,55,0.12), transparent),
    var(--bg-raised);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.band-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 800px) { .band-grid { grid-template-columns: 1fr; } }
.check-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin: 22px 0; }
.check-list li { color: var(--text-dim); font-size: 0.92rem; display: flex; gap: 9px; }
.check-list li::before { content: "✓"; color: var(--gold); font-weight: 800; }
.member-count { text-align: center; }
.member-count b { display: block; font-size: 3rem; font-weight: 900; color: var(--gold); line-height: 1; }
.member-count span { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); }
.avatars { display: flex; justify-content: center; margin-top: 18px; }
.avatars .avatar { width: 36px; height: 36px; font-size: 0.75rem; margin-left: -8px; border: 2px solid var(--bg-raised); }

/* ---------- Newsletter bar ---------- */
.newsbar { border-top: 1px solid var(--border); background: var(--bg-raised); padding: 34px 0; }
.newsbar .wrap { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.newsbar h3 { font-size: 1.05rem; }
.newsbar p { color: var(--text-faint); font-size: 0.85rem; }
.newsbar form { display: flex; gap: 10px; flex: 1; min-width: 260px; max-width: 460px; margin-left: auto; }

/* ---------- Side hustle cards ---------- */
.hustle-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; margin: 14px 0; padding: 14px; background: var(--bg-raised); border-radius: var(--radius-sm); border: 1px solid var(--border); }
.hustle-meta div { font-size: 0.82rem; color: var(--text-dim); }
.hustle-meta b { display: block; color: var(--text); font-size: 0.92rem; }
.difficulty { display: inline-flex; gap: 3px; }
.difficulty i { width: 8px; height: 8px; border-radius: 50%; background: var(--bg-hover); }
.difficulty i.on { background: var(--gold); }
.play-steps { margin: 12px 0 0; padding-left: 0; list-style: none; counter-reset: step; }
.play-steps li { counter-increment: step; display: flex; gap: 10px; padding: 7px 0; color: var(--text-dim); font-size: 0.88rem; border-bottom: 1px solid var(--border); }
.play-steps li:last-child { border-bottom: none; }
.play-steps li::before { content: counter(step); flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--gold-dim); color: var(--gold); font-size: 0.7rem; font-weight: 800; display: grid; place-items: center; margin-top: 2px; }

@media (max-width: 640px) {
  section { padding: 52px 0; }
  .hero { padding: 72px 0 60px; }
  .hero-stats { gap: 24px; }
  .check-list { grid-template-columns: 1fr; }
}
