/* SilentPip Labs — dark orange/black theme */

:root {
  --bg: #141414;
  --bg-alt: #1b1b1b;
  --card: #212121;
  --card-border: #2f2f2f;
  --orange: #cc6a3c;
  --orange-hover: #e07a48;
  --orange-dim: #7a4128;
  --text: #f3f1ee;
  --text-muted: #a8a29a;
  --text-faint: #706a63;
  --green: #5fa06a;
  --max-width: 1080px;
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header / nav */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 20, 20, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--card-border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

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

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

nav.main-nav a {
  font-size: 15px;
  color: var(--text-muted);
  transition: color 0.15s ease;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--text);
}

.nav-cta {
  background: var(--orange);
  color: #141414 !important;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
}

.nav-cta:hover { background: var(--orange-hover); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

/* Hero */
.hero {
  padding: 90px 0 70px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 46px;
  line-height: 1.15;
  margin: 0 0 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero h1 .accent { color: var(--orange); }

.hero p.lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 34px;
}

.btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-primary {
  background: var(--orange);
  color: #141414;
}

.btn-primary:hover { background: var(--orange-hover); }

.btn-outline {
  background: transparent;
  border-color: var(--card-border);
  color: var(--text);
}

.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

.btn-block { width: 100%; }

/* Sections */
section { padding: 70px 0; }

section.alt { background: var(--bg-alt); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-size: 32px;
  margin: 0 0 14px;
  font-weight: 700;
}

.section-head p {
  color: var(--text-muted);
  font-size: 16px;
  margin: 0;
}

/* Cards / grid */
.grid {
  display: grid;
  gap: 24px;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 30px;
}

.card h3 {
  font-size: 19px;
  margin: 0 0 10px;
}

.card p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0 0 16px;
}

/* Product card specifics */
.product-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.product-title { font-size: 24px; font-weight: 700; }

.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
}

.badge-beta {
  background: rgba(204, 106, 60, 0.15);
  color: var(--orange);
  border: 1px solid var(--orange-dim);
}

.badge-soon {
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  border: 1px solid var(--card-border);
}

.price {
  font-size: 30px;
  font-weight: 700;
  color: var(--orange);
}

.price span {
  font-size: 14px;
  color: var(--text-faint);
  font-weight: 400;
}

.stat-row {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.stat { text-align: left; }

.stat .num {
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
}

.stat .num.neutral { color: var(--text); }

.stat .label {
  font-size: 12px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.disclaimer {
  font-size: 12.5px;
  color: var(--text-faint);
  line-height: 1.5;
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border-left: 2px solid var(--orange-dim);
}

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

.feature-list li {
  padding: 8px 0 8px 26px;
  position: relative;
  color: var(--text-muted);
  font-size: 15px;
}

.feature-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* Forms */
input, textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--orange);
}

label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-row { margin-bottom: 18px; }

.email-capture {
  display: flex;
  gap: 10px;
}

.email-capture input { flex: 1; }

/* Steps */
.steps { counter-reset: step; }

.step {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--card-border);
}

.step:last-child { border-bottom: none; }

.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(204, 106, 60, 0.15);
  border: 1px solid var(--orange-dim);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}

.step h4 { margin: 0 0 6px; font-size: 16px; }
.step p { margin: 0; color: var(--text-muted); font-size: 14.5px; }

/* Footer */
footer {
  border-top: 1px solid var(--card-border);
  padding: 40px 0;
  color: var(--text-faint);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--orange); }

/* Utility */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

.risk-banner {
  background: rgba(204, 106, 60, 0.08);
  border: 1px solid var(--orange-dim);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.risk-banner strong { color: var(--orange); }

/* Responsive */
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
  nav.main-nav {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--card-border);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 18px;
    display: none;
  }
  nav.main-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
