/* Affiliate offer landing — affiliate-offer-site.html */
:root {
  --aff-bg: #0a0f1a;
  --aff-surface: #111827;
  --aff-text: #f8fafc;
  --aff-muted: #94a3b8;
  --aff-accent: #38bdf8;
  --aff-accent-2: #818cf8;
  --aff-highlight: #fbbf24;
  --aff-radius: 16px;
  --aff-font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

body.affiliate-offer-site {
  margin: 0;
  font-family: var(--aff-font);
  background: var(--aff-bg);
  color: var(--aff-text);
  line-height: 1.55;
}

.aff-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.aff-header {
  padding: 20px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.aff-logo {
  font-weight: 700;
  font-size: 1.1rem;
}

.aff-tagline {
  margin: 6px 0 0;
  color: var(--aff-muted);
  font-size: 0.9rem;
}

.aff-hero {
  padding: 48px 0 32px;
  background: linear-gradient(180deg, #111827 0%, var(--aff-bg) 100%);
}

.aff-hero-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 860px) {
  .aff-hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.aff-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  margin: 0 0 12px;
  background: linear-gradient(90deg, var(--aff-accent), var(--aff-accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.aff-subtitle {
  font-size: 1.15rem;
  color: var(--aff-muted);
  margin: 0 0 12px;
}

.aff-lead {
  font-size: 1.05rem;
  max-width: 52ch;
}

.aff-proof {
  color: #4ade80;
  font-weight: 600;
  margin: 16px 0;
}

.aff-hero-media img {
  width: 100%;
  max-width: 360px;
  display: block;
  margin: 0 auto;
  border-radius: var(--aff-radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.aff-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  color: #0f172a;
  background: linear-gradient(90deg, var(--aff-accent), var(--aff-accent-2));
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.aff-cta:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.aff-section {
  padding: 40px 0;
}

.aff-section h2 {
  margin: 0 0 20px;
  font-size: 1.6rem;
}

.aff-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.aff-bullets li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 1.05rem;
}

.aff-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 700;
}

.aff-tier-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.aff-tier {
  background: var(--aff-surface);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: var(--aff-radius);
  padding: 24px;
  width: min(100%, 280px);
  text-align: center;
}

.aff-tier-highlight {
  border-color: var(--aff-highlight);
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.35);
  transform: scale(1.03);
}

.aff-tier-price {
  font-size: 2rem;
  font-weight: 800;
  margin: 8px 0;
}

.aff-tier-detail {
  color: var(--aff-muted);
  font-size: 0.9rem;
  min-height: 2.5em;
}

.aff-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--aff-radius);
  overflow: hidden;
}

.aff-table th,
.aff-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.aff-table th {
  background: #1e293b;
}

.aff-row-highlight {
  background: rgba(56, 189, 248, 0.08);
  font-weight: 600;
}

.aff-closing {
  text-align: center;
}

.aff-center { text-align: center; }

.aff-muted { color: var(--aff-muted); }

.aff-small { font-size: 0.8rem; }

.aff-footer {
  padding: 32px 0 48px;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  color: var(--aff-muted);
  font-size: 0.85rem;
}

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