:root{
  --bg:#0d0d0e;
  --bg2:#161618;
  --card:#1c1c1e;

  --text:#e7e7e7;
  --muted:#b7b7b7;

  --border:#2a2a2c;

  --accent:#f28a3a;
  --accentHover:#d67427;

  --radius:14px;
  --shadow: 0 12px 40px rgba(0,0,0,.35);

  --max: 1040px;
}

/* ===== Reset / base ===== */
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.55;
}
a{ color:inherit; }
ul,ol{ padding-left: 18px; }
p{ margin:0; }

/* ===== Layout ===== */
.container{
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  padding:0 18px;
}

.section{
  padding: 34px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.section:first-of-type{
  border-top:none;
}

h1,h2,h3{
  margin:0 0 12px;
  line-height:1.15;
  letter-spacing:-0.2px;
}
h2{ font-size:26px; }
h3{ font-size:18px; }
.section > ul,
.section > ol{
  margin: 10px 0 0;
  color: var(--muted);
}

/* ===== Header ===== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13,13,14,.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.header-inner{
  height: 64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.brand{
  font-weight: 750;
  letter-spacing: .2px;
}

.header-cta{
  display:flex;
  align-items:center;
  gap:10px;
}

/* ===== Buttons (applies to all CTAs since HTML uses <a>) ===== */
a[data-href], .hero-cta a, .final-cta-actions a, .header-cta a, .pricing-box a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  text-decoration:none;
  font-weight: 650;
  transition: all .18s ease;
  user-select:none;
  white-space:nowrap;
}

a[data-href="pay"]{
  background: var(--accent);
  color: #000;
  border-color: transparent;
}
a[data-href="pay"]:hover{
  background: var(--accentHover);
}

a[data-href="demo"]{
  background: transparent;
}
a[data-href="demo"]:hover{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.16);
}

.header-cta a[href="#pricing"],
.hero-cta a[href="#pricing"]{
  background: transparent;
}
.header-cta a[href="#pricing"]:hover,
.hero-cta a[href="#pricing"]:hover{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.16);
}

/* ===== Hero ===== */
.hero{
  padding: 46px 0 18px;
}

.hero h1{
  font-size: 44px;
}

.hero-lead{
  color: var(--muted);
  font-size: 18px;
  margin-top: 6px;
  max-width: 62ch;
}

.hero-cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  margin-top: 16px;
}

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

/* ===== Pricing box ===== */
.pricing-box{
  background: rgba(32,32,34,.55);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  max-width: 520px;
}

.price-note{
  color: var(--muted);
  margin: 6px 0 14px;
}

.pricing-box ul{
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--muted);
}

.pricing-box a[data-href="pay"]{
  width: 100%;
}

.pricing-micro{
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.pricing-micro a{
  text-decoration: underline;
  opacity: .95;
}

/* ===== FAQ ===== */
details{
  background: rgba(32,32,34,.55);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px 16px;
  margin: 10px 0;
}

summary{
  cursor:pointer;
  font-weight: 650;
}

details p{
  margin-top: 10px;
  color: var(--muted);
}

/* ===== Final CTA ===== */
.final-cta{
  padding-bottom: 60px;
}

.final-cta > p{
  color: var(--muted);
  margin-top: -4px;
  margin-bottom: 14px;
  max-width: 65ch;
}

.final-cta-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

/* ===== Footer ===== */
.site-footer{
  padding: 22px 0 30px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: var(--muted);
  font-size: 13px;
}

/* ===== Mobile ===== */
@media (max-width: 860px){
  .header-inner{ height:auto; padding: 12px 0; flex-wrap:wrap; }
  .hero h1{ font-size: 36px; }
}
