/* HybridStream landing - same dark/green palette as the admin dashboard */

:root {
  --bg-body: #0a0a0a;
  --bg-panel: #141414;
  --bg-card: #1a1a1a;
  --bg-card-deep: #111;
  --border: #2a2a2a;
  --border-bright: #3a3a3a;

  --text-primary: #f0f0f0;
  --text-secondary: #cfcfcf;
  --text-muted: #888;
  --text-faint: #555;

  --accent: #0a0;
  --accent-bright: #0f0;
  --accent-hover: #0c0;
  --accent-border: #006400;
  --accent-glow: rgba(0, 200, 0, 0.4);

  --warn: #fa0;
  --error: #c30404;

  --font-ui: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
  --font-mono: 'Consolas', 'Courier New', monospace;
}

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

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-body);
  color: var(--text-primary);
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

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

h1, h2, h3 { margin: 0 0 16px; font-weight: 800; }

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

.top-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.brand {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand i { color: var(--text-primary); font-size: 24px; }
.brand-h { color: var(--accent-bright); }
.brand-s { color: var(--text-primary); }

.top-nav nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.top-nav nav a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

.nav-cta {
  background: var(--accent);
  color: #000 !important;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: bold !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px !important;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--accent-bright); color: #000 !important; }

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

.hero {
  padding: 120px 32px 100px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 200, 0, 0.08), transparent 60%),
    linear-gradient(180deg, var(--bg-body) 0%, var(--bg-card-deep) 100%);
  border-bottom: 1px solid var(--border);
}

.hero-inner { max-width: 900px; margin: 0 auto; }

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}

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

.lede {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 34px;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #000 !important;
  padding: 14px 26px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-cta-primary:hover {
  background: var(--accent-bright);
  color: #000 !important;
  box-shadow: 0 0 24px var(--accent-glow);
  transform: translateY(-1px);
}

.btn-cta-large { padding: 18px 36px; font-size: 16px; }

.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-primary) !important;
  padding: 14px 26px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid var(--border-bright);
  transition: all 0.2s;
}

.btn-cta-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-bright) !important;
}

.hero-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}

.hero-sub i { color: var(--accent-bright); margin: 0 4px; }

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

.section {
  padding: 90px 32px;
  border-bottom: 1px solid var(--border);
}

.section-dark {
  background: var(--bg-card-deep);
}

.section-inner { max-width: 1180px; margin: 0 auto; }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.section-lede {
  text-align: center;
  font-size: 17px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 50px;
}

/* ===== FEATURES ===== */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 22px;
}

.feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 26px;
  transition: all 0.2s;
}

.feature:hover {
  border-color: var(--accent-border);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(0, 170, 0, 0.12);
  border: 1px solid var(--accent-border);
  color: var(--accent-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.feature h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.feature p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

/* ===== PRICING ===== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.price-card-featured {
  border: 2px solid var(--accent);
  box-shadow: 0 0 32px rgba(0, 200, 0, 0.18);
  transform: scale(1.02);
  z-index: 2;
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  padding: 4px 14px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.price-tier {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-bright);
  margin-bottom: 12px;
}

.price-amount {
  font-size: 46px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 6px;
  font-family: var(--font-ui);
  letter-spacing: -0.01em;
}

.price-amount span {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 4px;
}

.price-tag {
  color: var(--text-muted);
  font-size: 14px;
  margin: 4px 0 22px;
  min-height: 40px;
}

.price-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}

.price-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.price-features li:last-child { border-bottom: 0; }

.price-features i.fa-check { color: var(--accent-bright); margin-right: 10px; }
.price-features i.fa-xmark.muted { color: var(--text-faint); margin-right: 10px; }
.price-features li:has(.fa-xmark) { color: var(--text-faint); }

.btn-tier {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: transparent;
  color: var(--accent-bright) !important;
  padding: 12px 18px;
  border: 1px solid var(--accent-border);
  border-radius: 6px;
  font-weight: bold;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.2s;
}

.btn-tier:hover {
  background: rgba(0, 170, 0, 0.1);
  border-color: var(--accent-bright);
}

.btn-tier-primary {
  background: var(--accent);
  color: #000 !important;
  border-color: var(--accent-border);
}

.btn-tier-primary:hover {
  background: var(--accent-bright);
  color: #000 !important;
  box-shadow: 0 0 18px var(--accent-glow);
}

.quality-selector,
.quality-static {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  background: var(--bg-card-deep);
  color: var(--accent-bright);
  border: 1px solid var(--accent-border);
  border-radius: 5px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.04em;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%2300ff00' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 10px;
  padding-right: 28px;
}

.quality-static {
  background-image: none;
  padding-right: 12px;
  cursor: default;
}

.quality-selector:focus {
  outline: none;
  border-color: var(--accent-bright);
}

.price-trial-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin: 10px 0 0;
  line-height: 1.4;
}

.pricing-foot {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 36px;
}

.pricing-foot i { color: var(--accent-bright); margin-right: 6px; }

/* ===== COMPARE TABLE ===== */

.compare-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  font-size: 14px;
  min-width: 720px;
}

.compare-table thead th {
  background: var(--bg-card-deep);
  color: var(--accent-bright);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  padding: 14px 16px;
  text-align: center;
  border-bottom: 2px solid var(--accent-border);
}

.compare-table thead th:first-child {
  text-align: left;
  color: var(--text-muted);
  border-bottom-color: var(--border);
}

.compare-table tbody th {
  text-align: left;
  color: var(--text-secondary);
  font-weight: 600;
  padding: 12px 16px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.compare-table tbody td {
  text-align: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: 0; }

.compare-table .yes { color: var(--accent-bright); font-weight: 700; }
.compare-table .no { color: #d44; font-weight: 600; }
.compare-table .warn { color: var(--warn); font-weight: 600; }

/* HybridStream column styling */
.compare-table tbody td:nth-child(2) {
  background: rgba(0, 170, 0, 0.06);
  border-left: 1px solid var(--accent-border);
  border-right: 1px solid var(--accent-border);
}

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

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
}

.step-num {
  position: absolute;
  top: -18px;
  left: 28px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 0 16px var(--accent-glow);
}

.step h3 {
  margin-top: 20px;
  font-size: 19px;
}

.step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

/* ===== CTA BAND ===== */

.cta-band {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(0, 200, 0, 0.18), transparent 60%),
    var(--bg-body);
  padding: 90px 32px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.cta-inner h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 14px;
}

.cta-inner p {
  color: var(--text-secondary);
  font-size: 17px;
  margin: 0 auto 30px;
  max-width: 540px;
}

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

.site-foot {
  padding: 50px 32px 40px;
  background: var(--bg-card-deep);
}

.foot-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.foot-brand {
  font-size: 18px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.foot-brand i { color: var(--text-primary); }

.foot-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.foot-links a {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
}

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

.foot-meta {
  color: var(--text-faint);
  font-size: 12px;
  width: 100%;
  text-align: center;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  margin-top: 14px;
}

/* ===== TRUST STRIP ===== */

.trust-strip {
  padding: 26px 32px;
  background: var(--bg-card-deep);
  border-bottom: 1px solid var(--border);
}

.trust-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.trust-label {
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
}

.trust-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  opacity: 0.8;
}

.trust-logo i {
  color: var(--accent-bright);
  font-size: 16px;
}

/* ===== STACK / UNDER THE HOOD ===== */

.stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 18px;
}

.stack-row {
  display: flex;
  gap: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 24px;
  transition: border-color 0.2s;
}

.stack-row:hover { border-color: var(--accent-border); }

.stack-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(0, 170, 0, 0.1);
  border: 1px solid var(--accent-border);
  color: var(--accent-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.stack-body h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.stack-body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.55;
}

/* ===== "NEVER HAVE TO DEAL WITH" GRID ===== */

.never-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  max-width: 1080px;
  margin: 0 auto;
}

.never-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.never-item i {
  color: var(--error);
  font-size: 14px;
  width: 16px;
  text-align: center;
  opacity: 0.8;
}

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

.section-inner.narrow { max-width: 880px; }

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

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 18px 22px;
}

.faq-item h3 {
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--accent-bright);
  font-weight: 700;
}

.faq-item p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.faq-item p strong {
  color: var(--text-primary);
}

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

@media (max-width: 720px) {
  .top-nav { padding: 12px 16px; }
  .top-nav nav { gap: 14px; }
  .top-nav nav a:not(.nav-cta) { display: none; }
  .hero { padding: 70px 20px 60px; }
  .section { padding: 60px 20px; }
  .price-card-featured { transform: none; }
  .foot-inner { flex-direction: column; text-align: center; }
}