:root {
  --bg: #0a0a0d;
  --panel: #121218;
  --border: #1e1e24;
  --text: #f2f2f5;
  --muted: #a8a8b3;
  --muted2: #8b8b96;
  --blue: #3b6bff;
  --radius: 8px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  margin: 0;
}
a { color: var(--blue); }
img { max-width: 100%; display: block; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Typography */
h1, h2, h3, .display {
  font-family: 'Archivo Black', 'Arial Black', sans-serif;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 16px;
}
h1 { font-size: clamp(36px, 6vw, 64px); }
h2 { font-size: clamp(26px, 4vw, 36px); }
h3 { font-size: 18px; }
p { color: var(--muted); }
.eyebrow {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--blue); display: inline-block; }

/* Nav */
header.site-header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(10,10,13,0.95);
  backdrop-filter: blur(6px);
  z-index: 100;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.logo { font-family: 'Archivo Black', sans-serif; font-size: 18px; color: #fff; text-decoration: none; letter-spacing: .02em; }
nav.main-nav { display: flex; gap: 28px; align-items: center; }
nav.main-nav a { color: var(--text); text-decoration: none; font-size: 14px; font-weight: 600; }
nav.main-nav a:hover { color: var(--blue); }
.nav-cta {
  background: var(--blue); color: #fff !important; padding: 10px 18px; border-radius: 4px;
  font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .04em;
}
.menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }

@media (max-width: 780px) {
  nav.main-nav { display: none; flex-direction: column; align-items: flex-start; gap: 16px; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 20px 24px; }
  nav.main-nav.open { display: flex; }
  .menu-toggle { display: block; }
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block; font-weight: 700; font-size: 14px; letter-spacing: .04em;
  text-transform: uppercase; padding: 16px 26px; border-radius: 4px; text-decoration: none;
  border: none; cursor: pointer; font-family: inherit;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-secondary { border: 1px solid var(--border); color: #fff; background: transparent; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero */
.hero { padding: 80px 0 60px; }
.hero-lede { font-size: 18px; max-width: 560px; margin: 0 0 34px; }
.stats { display: flex; gap: 48px; flex-wrap: wrap; padding-top: 30px; border-top: 1px solid var(--border); margin-top: 20px; }
.stat-num { font-family: 'Archivo Black', sans-serif; font-size: 34px; color: var(--blue); }
.stat-label { color: var(--muted2); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }

/* Ticker */
.ticker-wrap { background: var(--blue); overflow: hidden; white-space: nowrap; padding: 14px 0; margin: 10px 0 70px; }
.ticker { display: inline-block; animation: scroll 28s linear infinite; font-weight: 800; font-size: 14px; letter-spacing: .05em; text-transform: uppercase; color: var(--bg); }
.ticker span { margin: 0 26px; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Sections */
section { padding: 0 0 80px; }
.section-head { margin-bottom: 34px; }

/* Grids / Cards */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.card h3 { color: #fff; margin: 0 0 10px; display: flex; align-items: center; gap: 8px; }
.card h3::before { content: ''; width: 8px; height: 8px; background: var(--blue); border-radius: 50%; display: inline-block; }
.card p { margin: 0; font-size: 14.5px; }
.card a.more { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 700; text-transform: uppercase; }

/* Pricing */
.price-band { background: var(--panel); border: 1px solid var(--border); border-radius: 10px; padding: 40px; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.price-item { border-left: 3px solid var(--blue); padding-left: 16px; }
.price-item .label { color: var(--muted2); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.price-item .value { font-family: 'Archivo Black', sans-serif; font-size: 24px; color: #fff; margin-top: 4px; }

/* Reviews */
.review-card .stars { color: var(--blue); margin-bottom: 10px; }
.review-card p { color: #c4c4cc; margin: 0 0 14px; }
.review-card .name { color: #fff; font-weight: 700; font-size: 14px; }
.review-card .loc { color: var(--muted2); font-size: 12px; }

/* FAQ accordion */
.faq details { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq summary { font-weight: 700; font-size: 16px; cursor: pointer; color: #fff; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--blue); font-size: 22px; font-weight: 400; }
.faq details[open] summary::after { content: '\2013'; }
.faq p { margin: 14px 0 0; font-size: 15px; }

/* Form */
form.contact-form { display: flex; flex-direction: column; gap: 16px; max-width: 560px; }
form.contact-form label { font-size: 13px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted2); margin-bottom: 6px; display: block; }
form.contact-form input, form.contact-form textarea, form.contact-form select {
  width: 100%; background: var(--panel); border: 1px solid var(--border); color: var(--text);
  padding: 14px; border-radius: 4px; font-family: inherit; font-size: 15px;
}
form.contact-form textarea { min-height: 120px; resize: vertical; }
.form-success { display: none; background: var(--panel); border: 1px solid var(--blue); padding: 20px; border-radius: 4px; color: #fff; }

/* Breadcrumbs */
.breadcrumbs { font-size: 13px; color: var(--muted2); padding: 20px 0 0; }
.breadcrumbs a { color: var(--muted2); text-decoration: none; }
.breadcrumbs a:hover { color: var(--blue); }

/* Footer */
footer.site-footer { border-top: 1px solid var(--border); padding: 50px 0; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 30px; margin-bottom: 30px; }
.footer-grid h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.footer-grid a { display: block; color: var(--muted); text-decoration: none; font-size: 14px; margin-bottom: 8px; }
.footer-grid a:hover { color: var(--blue); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; color: var(--muted2); font-size: 13px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* Blog */
.blog-list { display: grid; gap: 20px; }
.blog-card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.blog-card .date { color: var(--muted2); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.article-body h2 { font-size: 24px; margin-top: 40px; }
.article-body p { color: #c4c4cc; margin-bottom: 18px; }
.article-body ul, .article-body ol { color: #c4c4cc; }

/* Utility */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
