/* ═══════════════════════════════════════════════════
   GUYSWHOFIT — STATIC-PAGES.CSS
   Shared styles for About, Privacy Policy,
   and Affiliate Disclosure pages.
   Depends on style.css variables.
═══════════════════════════════════════════════════ */

/* ── PAGE WRAPPER ── */
.sp-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

/* ── PAGE HERO ── */
.sp-hero {
  margin-bottom: 52px;
}

.sp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 16px;
}
.sp-eyebrow i { font-size: 13px; }

.sp-h1 {
  font-family: var(--font-display);
  font-size: 56px;
  letter-spacing: 3px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 18px;
}

.sp-lead {
  font-size: 15px;
  color: var(--white-50);
  line-height: 1.8;
  max-width: 600px;
}

.sp-meta {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sp-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-30);
}
.sp-meta-item i { font-size: 13px; color: var(--white-20, rgba(255,255,255,0.2)); }

.sp-divider {
  height: 0.5px;
  background: var(--white-08);
  margin: 40px 0;
}

/* ── SECTION ── */
.sp-section {
  margin-bottom: 44px;
}

.sp-section-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sp-section-label::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: var(--green-border);
}

.sp-h2 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 1.5px;
  color: var(--white-90);
  margin-bottom: 14px;
}

.sp-p {
  font-size: 14px;
  color: var(--white-50);
  line-height: 1.85;
  margin-bottom: 14px;
}
.sp-p:last-child { margin-bottom: 0; }

.sp-p a {
  color: var(--green-light);
  border-bottom: 0.5px solid var(--green-border);
  transition: color 0.15s, border-color 0.15s;
}
.sp-p a:hover {
  color: var(--green);
  border-color: var(--green);
}

/* ── CALLOUT BOX ── */
.sp-callout {
  background: var(--black-3);
  border: 0.5px solid var(--white-08);
  border-left: 2px solid var(--green);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin: 24px 0;
}
.sp-callout p {
  font-size: 13px;
  color: var(--white-70);
  line-height: 1.75;
}
.sp-callout strong {
  color: var(--white-90);
}

/* ── FEATURE GRID (used on About) ── */
.sp-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}
@media (max-width: 600px) {
  .sp-feature-grid { grid-template-columns: 1fr; }
}

.sp-feature-card {
  background: var(--black-3);
  border: 0.5px solid var(--white-08);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sp-feature-card i {
  font-size: 22px;
  color: var(--green-light);
}
.sp-feature-title {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 1px;
  color: var(--white-90);
}
.sp-feature-desc {
  font-size: 12px;
  color: var(--white-40, rgba(255,255,255,0.4));
  line-height: 1.7;
}

/* ── LIST ── */
.sp-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
  padding-left: 4px;
}
.sp-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--white-50);
  line-height: 1.7;
}
.sp-list-item::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 8px;
  flex-shrink: 0;
}

/* ── TABLE (used on Affiliate page) ── */
.sp-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: var(--radius-md);
  border: 0.5px solid var(--white-08);
}
.sp-table {
  width: 100%;
  border-collapse: collapse;
}
.sp-table th {
  background: var(--black-4);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-30);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 0.5px solid var(--white-08);
}
.sp-table td {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--white-50);
  border-bottom: 0.5px solid var(--white-05);
  line-height: 1.6;
}
.sp-table tr:last-child td { border-bottom: none; }
.sp-table tr:hover td { background: var(--white-05); }
.sp-table td:first-child { color: var(--white-80, rgba(255,255,255,0.8)); font-weight: 500; }

/* ── CONTACT STRIP ── */
.sp-contact-strip {
  background: var(--black-3);
  border: 0.5px solid var(--white-08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 48px;
}
.sp-contact-text h3 {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--white-90);
  margin-bottom: 4px;
}
.sp-contact-text p {
  font-size: 12px;
  color: var(--white-30);
}
.sp-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 40px;
  padding: 0 20px;
  border-radius: var(--radius-full);
  background: var(--green-glow);
  border: 0.5px solid var(--green-border);
  color: var(--green-light);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.15s;
  white-space: nowrap;
}
.sp-contact-btn:hover { background: rgba(22,163,74,0.28); }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .sp-main { padding: 36px 16px 60px; }
  .sp-h1 { font-size: 40px; }
  .sp-contact-strip { flex-direction: column; align-items: flex-start; }
}
