/* ============================================================
   COWKOSHO.COM — Hormozi-style dark + gold
   ============================================================ */

:root {
  --bg: #0a0a0b;
  --bg-alt: #101012;
  --panel: #151517;
  --border: #232326;
  --text: #ffffff;
  --muted: #a1a1aa;
  --accent: #d4af37;
  --accent-dark: #a8841f;
  --accent-rgb: 212, 175, 55;
  --font: "Archivo", -apple-system, sans-serif;
  --font-display: "Archivo Black", "Archivo", sans-serif;
}

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

html { scroll-behavior: smooth; }

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

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.container-narrow { width: min(860px, 92%); }

.accent { color: var(--accent); }

h1, h2, h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 48px;
}

/* ============ BUTTONS ============ */

.btn {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-family: var(--font);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  padding: 18px 38px;
  border: 2px solid var(--accent);
  border-radius: 6px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-shadow: 0 0 0 rgba(var(--accent-rgb), 0);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: none;
}

.btn-small { padding: 12px 24px; font-size: 13px; }
.btn-big { padding: 22px 54px; font-size: 17px; }

/* ============ NAV ============ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.25s ease, padding 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 11, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.logo-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(var(--accent-rgb), 0.28);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.12em;
  font-style: normal;
  line-height: 1;
}

.logo-text em {
  font-style: normal;
  color: var(--accent);
}

.footer .logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.nav-links { display: flex; gap: 32px; }

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.15s ease;
}

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

/* ============ HERO ============ */

.hero {
  padding: 170px 0 90px;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(var(--accent-rgb), 0.09), transparent 70%),
    var(--bg);
}

.hero h1 {
  font-size: clamp(40px, 7.2vw, 84px);
  margin-bottom: 26px;
}

.hero-sub {
  max-width: 720px;
  margin: 0 auto 38px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ SLIDESHOW ============ */

.deck-wrap { margin-top: 80px; }

.deck {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  outline: none;
}

.deck::before {
  content: "";
  display: block;
  height: 4px;
  background: var(--accent);
}

.deck-slides {
  position: relative;
  min-height: 440px;
}

.slide {
  position: absolute;
  inset: 0;
  padding: clamp(36px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  cursor: pointer;
}

.slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.slide-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  color: var(--accent);
  margin-bottom: 16px;
}

.slide h2 {
  font-size: clamp(26px, 4vw, 46px);
  margin-bottom: 18px;
  max-width: 860px;
  line-height: 1.08;
}

.slide p {
  color: var(--muted);
  font-size: clamp(15px, 1.8vw, 18px);
  max-width: 700px;
}

.slide-big {
  color: var(--text) !important;
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 24px) !important;
  margin-bottom: 14px;
}

.slide-hint {
  margin-top: 28px;
  font-size: 14px !important;
  color: var(--muted);
}

.slide-hint strong { color: var(--accent); }

.slide-list {
  margin: 8px 0 0;
  padding-left: 1.2em;
  color: var(--text);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  line-height: 1.7;
}

.slide-list.muted { color: var(--muted); font-weight: 500; }

.slide-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 100%;
  max-width: 900px;
}

.slide-btn { margin-top: 28px; }

@media (max-width: 700px) {
  .slide-split { grid-template-columns: 1fr; gap: 28px; }
  .deck-slides { min-height: 520px; }
}

.deck-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(24px, 4vw, 48px);
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
}

.deck-arrow {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 20px;
  line-height: 1;
  width: 48px;
  height: 44px;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.deck-arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.deck-dots {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.deck-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.deck-dot.is-active {
  background: var(--accent);
  transform: scale(1.35);
}

.deck-dots { gap: 6px; max-width: 70%; }

.deck-counter {
  position: absolute;
  top: 22px;
  right: 26px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--muted);
}

/* ============ STATS ============ */

.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 54px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
}

/* ============ SECTIONS ============ */

.section { padding: 110px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ============ PORTFOLIO CARDS ============ */

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 38px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: rgba(var(--accent-rgb), 0.5);
  transform: translateY(-4px);
}

.card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), 0.4);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 22px;
}

.card-tag-exit {
  background: var(--accent);
  color: #000;
}

.card-tag-build {
  color: var(--muted);
  border-color: var(--border);
}

.card h3 { font-size: 21px; margin-bottom: 14px; }
.card p { color: var(--muted); font-size: 15.5px; }

/* ============ SPLIT LAYOUT ============ */

.split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.split-left .section-title { margin-bottom: 0; }

.split-right p {
  color: var(--muted);
  margin-bottom: 22px;
  font-size: 17.5px;
}

.split-right p:last-child { margin-bottom: 0; }
.split-right strong { color: var(--text); }

/* ============ PLAYBOOK STEPS ============ */

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.step {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 38px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.step:hover { border-color: rgba(var(--accent-rgb), 0.5); }

.step-num {
  font-family: var(--font-display);
  font-size: 60px;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(var(--accent-rgb), 0.55);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.step h3 { font-size: 20px; margin-bottom: 14px; }
.step p { color: var(--muted); font-size: 15.5px; }

/* ============ ABOUT ============ */

.about-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}

.about-photo {
  position: relative;
}

.about-photo img {
  width: 200px;
  height: 200px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: block;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  background: var(--panel);
}

.about-photo-meta {
  margin-top: 20px;
}

.about-photo-meta .section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 10px;
}

.about-role {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-copy p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 17px;
}

.about-copy p:last-of-type { margin-bottom: 0; }

.about-list {
  list-style: none;
  margin: 30px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-list li {
  position: relative;
  padding-left: 34px;
  color: var(--text);
  font-weight: 600;
  font-size: 16.5px;
}

.about-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  font-weight: 900;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-photo img { width: 160px; height: 160px; }
}

/* ============ MID-PAGE CTA BAND ============ */

.cta-band {
  background: var(--accent);
  padding: 56px 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.cta-band h2 {
  color: #000;
  font-size: clamp(26px, 4vw, 44px);
}

.cta-band h2 span { -webkit-text-stroke: 1.5px #000; color: transparent; }

.btn-dark {
  background: #000;
  color: var(--accent);
  border-color: #000;
}

.btn-dark:hover { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4); }

/* ============ CRITERIA ============ */

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.criterion {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px 30px;
}

.check {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  font-weight: 900;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.criterion p { color: var(--muted); font-size: 15.5px; }
.criterion strong { color: var(--text); }

/* ============ FAQ ============ */

.faq-list { display: flex; flex-direction: column; gap: 14px; }

.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 28px;
  font-weight: 700;
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.15s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--accent); }

.faq-item p {
  padding: 0 28px 24px;
  color: var(--muted);
  font-size: 15.5px;
}

/* ============ FINAL CTA ============ */

.cta-final {
  text-align: center;
  padding: 130px 0;
  background:
    radial-gradient(ellipse 60% 55% at 50% 100%, rgba(var(--accent-rgb), 0.1), transparent 70%),
    var(--bg);
}

.cta-final h2 {
  font-size: clamp(38px, 6vw, 68px);
  margin-bottom: 24px;
}

.cta-final p {
  max-width: 560px;
  margin: 0 auto 40px;
  color: var(--muted);
  font-size: 18px;
}

/* ============ FOOTER ============ */

.footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-tag {
  color: var(--muted);
  font-size: 14px;
  margin-top: 14px;
  max-width: 280px;
  line-height: 1.5;
}

.footer-heading {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s ease;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
}

.footer-bottom p,
.footer-bottom a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.footer-bottom a:hover { color: var(--accent); }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ============ ARTICLE / GUIDE PAGES ============ */

.page-hero {
  padding: 140px 0 48px;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(var(--accent-rgb), 0.08), transparent 70%),
    var(--bg);
}

.page-hero .eyebrow { margin-bottom: 14px; }

.page-hero h1 {
  font-size: clamp(34px, 5.5vw, 56px);
  max-width: 820px;
  margin-bottom: 18px;
}

.page-hero .lede {
  color: var(--muted);
  font-size: 18px;
  max-width: 640px;
  margin-bottom: 28px;
}

.article {
  padding: 0 0 100px;
}

.article-body {
  max-width: 720px;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  text-transform: uppercase;
  margin: 48px 0 16px;
  line-height: 1.1;
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  text-transform: uppercase;
  margin: 32px 0 12px;
  color: var(--accent);
}

.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.article-body ul,
.article-body ol {
  padding-left: 1.3em;
  margin-bottom: 20px;
}

.article-body strong { color: var(--text); }

.article-body a { color: var(--accent); }

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.guide-card {
  display: block;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.guide-card:hover {
  border-color: rgba(var(--accent-rgb), 0.5);
  transform: translateY(-3px);
}

.guide-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.guide-card p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

@media (max-width: 700px) {
  .guide-grid { grid-template-columns: 1fr; }
}

/* ============ SCROLL REVEAL ============ */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */

@media (max-width: 880px) {
  .nav-links { display: none; }
  .cards, .steps, .criteria-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .deck-slides { min-height: 460px; }
  .hero { padding-top: 130px; }
  .section { padding: 80px 0; }
}

@media (max-width: 480px) {
  .deck-slides { min-height: 540px; }
  .hero-cta .btn { width: 100%; }
  .deck-counter { display: none; }
}
