/* StreamPloads Landing Page */

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

:root {
  --obs-dark: #0e0e10;
  --obs-darker: #18181b;
  --obs-border: #2a2a30;
  --accent: #4f8ef7;
  --accent-dark: #3b6fd4;
  --green: #22c55e;
  --amber: #f59e0b;
  --red: #ef4444;
  --text: #e8e8ed;
  --text-muted: #9ca3af;
  --radius: 12px;
}

body {
  background: var(--obs-dark);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── HEADER ── */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  border-bottom: 1px solid var(--obs-border);
  background: var(--obs-darker);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

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

nav a {
  margin-left: 28px;
  color: var(--text-muted);
  font-size: 14px;
  transition: color .2s;
}
nav a:hover { color: var(--text); text-decoration: none; }

/* ── HERO ── */
.hero {
  text-align: center;
  padding: 80px 40px 60px;
  max-width: 860px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
}

.badge {
  display: inline-block;
  background: rgba(79, 142, 247, .15);
  border: 1px solid rgba(79, 142, 247, .3);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform .15s, opacity .15s;
}
.btn:hover { transform: translateY(-1px); opacity: .9; text-decoration: none; }
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-buy {
  background: var(--green);
  color: #fff;
  font-size: 16px;
  padding: 16px 36px;
}
.btn-secondary {
  background: var(--obs-border);
  color: var(--text);
}

/* ── HOW IT WORKS ── */
.how {
  background: var(--obs-darker);
  border-top: 1px solid var(--obs-border);
  border-bottom: 1px solid var(--obs-border);
  padding: 60px 40px;
}

.section-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 48px;
}

.steps {
  display: flex;
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.step {
  flex: 1;
  min-width: 220px;
  max-width: 260px;
  text-align: center;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: .9rem;
  color: var(--text-muted);
}

/* ── COMPARISON TABLE ── */
.pricing {
  padding: 60px 40px;
  max-width: 860px;
  margin: 0 auto;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

thead th {
  padding: 16px 20px;
  text-align: center;
  font-size: 1rem;
  border-bottom: 2px solid var(--obs-border);
}

thead th:first-child { text-align: left; }

thead .col-free { color: var(--text-muted); }
thead .col-premium { color: var(--green); }

tbody tr:nth-child(even) { background: rgba(255,255,255,.02); }

tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--obs-border);
  vertical-align: middle;
}

tbody td:first-child { font-weight: 500; }
tbody td:not(:first-child) { text-align: center; }

.val-bad { color: var(--amber); font-weight: 600; }
.val-good { color: var(--green); font-weight: 600; }
.val-no { color: var(--red); }
.val-yes { color: var(--green); }

/* ── BUY SECTION ── */
.buy-section {
  background: var(--obs-darker);
  border-top: 1px solid var(--obs-border);
  padding: 80px 40px;
  text-align: center;
}

.buy-section h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.price-tag {
  font-size: 3rem;
  font-weight: 800;
  color: var(--green);
  margin: 20px 0 8px;
}

.price-sub {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.buy-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
}

.buy-feature {
  background: rgba(34, 197, 94, .12);
  border: 1px solid rgba(34, 197, 94, .25);
  color: var(--green);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
}

/* ── FOOTER ── */
footer {
  padding: 32px 40px;
  border-top: 1px solid var(--obs-border);
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  header { padding: 14px 20px; }
  nav { display: none; }
  .hero { padding: 50px 20px 40px; }
  .how, .pricing, .buy-section { padding: 40px 20px; }
  .price-tag { font-size: 2.2rem; }
}
