/* Klinefelter Club — moneysite theme: navy + gold, modern sans */

:root {
  --navy-900: #0f172a;
  --navy-800: #1e293b;
  --navy-700: #334155;
  --ink: #1e293b;
  --muted: #64748b;
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --border: #e2e8f0;
  --gold: #d97706;
  --gold-light: #fbbf24;
  --teal: #0d9488;
  --danger: #dc2626;
  --radius: 14px;
  --shadow: 0 10px 30px -12px rgba(15, 23, 42, 0.18);
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--surface-alt);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  font-size: 17px;
}
h1, h2, h3, .brand-word {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--navy-900);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); }
.container { max-width: 880px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}
.site-header .container {
  max-width: 1040px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo img { height: 40px; width: auto; }
.header-tagline {
  font-size: 0.85rem;
  color: var(--muted);
  display: none;
}
@media (min-width: 640px) {
  .header-tagline { display: block; }
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 60%, #0b1220 100%);
  color: #f1f5f9;
  overflow: hidden;
}
.hero .container {
  max-width: 1040px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 56px;
}
@media (max-width: 780px) {
  .hero .container { grid-template-columns: 1fr; padding-top: 36px; padding-bottom: 36px; }
  .hero-image { order: -1; }
}
.hero h1 {
  color: #f8fafc;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  margin: 0 0 16px;
}
.hero p {
  color: #cbd5e1;
  font-size: 1.05rem;
  margin: 0;
}
.hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-image img { display: block; width: 100%; height: auto; object-fit: cover; object-position: center 55%; aspect-ratio: 16/10; }

/* Toplist band — placed right under the hero, above all body content */
.toplist-band {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 32px 0 40px;
}
.toplist-band .eyebrow {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}
.toplist-band h2 {
  text-align: center;
  font-size: 1.4rem;
  margin: 0 0 20px;
}

/* Content */
main { padding: 8px 0 24px; }
.section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px 30px;
  margin: 24px 0;
  box-shadow: var(--shadow);
}
.section h2 {
  font-size: 1.4rem;
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--gold-light);
  display: inline-block;
}
.section h3 { font-size: 1.15rem; margin: 20px 0 10px; }
.section p { margin: 0 0 14px; color: var(--navy-700); }
.section p:last-child { margin-bottom: 0; }

.section ul {
  margin: 0 0 14px;
  padding-left: 0;
  list-style: none;
}
.section ul li {
  position: relative;
  padding: 10px 0 10px 30px;
  border-bottom: 1px dashed var(--border);
  color: var(--navy-700);
}
.section ul li:last-child { border-bottom: none; }
.section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--gold);
}
.section ul li strong { color: var(--navy-900); }

.section-media {
  float: right;
  width: 300px;
  margin: 4px 0 18px 24px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.section-media img { display: block; width: 100%; height: auto; aspect-ratio: 16/10; object-fit: cover; object-position: center; }
@media (max-width: 640px) {
  .section-media { float: none; width: 100%; margin: 0 0 18px; }
}

/* Priority table — stacks into cards on mobile */
.priority-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 14px;
}
.priority-table th, .priority-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
.priority-table th {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}
.badge.alta { background: #fef3c7; color: #92400e; }
.badge.media-alta { background: #ffedd5; color: #9a3412; }
.badge.media { background: #e0f2fe; color: #075985; }

@media (max-width: 640px) {
  .priority-table thead { display: none; }
  .priority-table, .priority-table tbody, .priority-table tr, .priority-table td { display: block; width: 100%; }
  .priority-table tr {
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 6px 4px;
  }
  .priority-table td { border-bottom: none; padding: 6px 10px; }
  .priority-table td:first-child { font-weight: 600; color: var(--navy-900); }
}

/* Testimonials */
.testimonial {
  background: var(--surface-alt);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 16px 18px;
  margin: 0 0 14px;
  color: var(--navy-700);
}
.testimonial.negative { border-left-color: var(--danger); }
.testimonial .label {
  display: block;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  color: var(--teal);
}
.testimonial.negative .label { color: var(--danger); }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); padding: 16px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { margin: 0 0 8px; font-size: 1.05rem; }
.faq-item p { margin: 0; }

/* Two-path cards */
.paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0 0 14px;
}
@media (max-width: 640px) { .paths { grid-template-columns: 1fr; } }
.path-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
}
.path-card strong { color: var(--navy-900); display: block; margin-bottom: 6px; }

/* Author / trust box */
.author-box {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin: 24px 0;
}
.author-avatar {
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}
.author-box .name { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--navy-900); }
.author-box .role { font-size: 0.9rem; color: var(--muted); }

/* CTA */
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}
.btn-primary { background: var(--gold); color: #fff; }
.btn-secondary { background: transparent; color: var(--navy-900); border: 1.5px solid var(--navy-700); }

/* Footer */
footer {
  background: var(--navy-900);
  color: #cbd5e1;
  padding: 34px 0;
  margin-top: 20px;
  font-size: 0.9rem;
}
footer a { color: #fbbf24; }
footer .foot-links { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 12px; }
footer .disclaimer { color: #94a3b8; font-size: 0.82rem; }
