
:root{
  --bg:#040404;
  --card:#101010;
  --card-2:#151515;
  --text:#f5f5f5;
  --muted:#bcbcbc;
  --line:#282828;
  --red:#e63b3b;
  --red-2:#ff6f6f;
  --white:#ffffff;
  --gold:#f3c56b;
  --shadow:0 20px 70px rgba(0,0,0,.42);
  --radius:24px;
  --container:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top center, rgba(230,59,59,.18), transparent 25%),
    linear-gradient(180deg, #020202 0%, #090909 50%, #0d0d0d 100%);
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(var(--container), calc(100% - 40px));margin:0 auto}

.topbar{
  position:sticky;
  top:0;
  z-index:100;
  backdrop-filter:blur(16px);
  background:rgba(4,4,4,.88);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav-wrap{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand-logo{width:200px;height:auto}
.nav{
  display:flex;
  align-items:center;
  gap:24px;
  font-weight:600;
}
.nav a{opacity:.9}
.nav a:hover{opacity:1;color:var(--red-2)}
.nav-ghost{
  padding:11px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(180deg, rgba(230,59,59,.12), rgba(230,59,59,.04));
}
.menu-btn{
  display:none;
  background:none;
  color:#fff;
  border:1px solid rgba(255,255,255,.15);
  border-radius:12px;
  padding:10px 12px;
  font-size:20px;
}

.hero{
  padding:54px 0 28px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:28px;
  align-items:center;
}
.eyebrow{
  display:inline-block;
  color:var(--red-2);
  text-transform:uppercase;
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  margin:0 0 12px;
}
.hero h1{
  margin:0;
  font-family:"Space Grotesk", Inter, sans-serif;
  font-size:clamp(42px, 6vw, 74px);
  line-height:.96;
  letter-spacing:-.048em;
}
.hero-text{
  margin:18px 0 0;
  color:var(--muted);
  max-width:720px;
  line-height:1.8;
  font-size:18px;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 20px;
  border-radius:999px;
  font-weight:700;
  transition:.25s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:linear-gradient(135deg, var(--red), #b31223);
  color:#fff;
  box-shadow:0 14px 40px rgba(230,59,59,.25);
}
.btn-secondary{
  border:1px solid rgba(255,255,255,.14);
  background:#111;
}
.hero-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:28px;
}
.hero-stat{
  padding:18px;
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border:1px solid rgba(255,255,255,.07);
  border-radius:18px;
}
.hero-stat strong{
  display:block;
  font-family:"Space Grotesk", Inter, sans-serif;
  font-size:24px;
  color:#fff;
}
.hero-stat span{
  display:block;
  color:var(--muted);
  line-height:1.55;
  margin-top:6px;
  font-size:14px;
}
.hero-side-card{
  padding:26px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at top right, rgba(230,59,59,.16), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow:var(--shadow);
}
.card-kicker{
  display:inline-block;
  margin-bottom:16px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(230,59,59,.12);
  border:1px solid rgba(230,59,59,.26);
  color:#ffaaaa;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.mini-system-list{
  display:grid;
  gap:14px;
}
.mini-system{
  padding:18px;
  border:1px solid rgba(255,255,255,.07);
  border-radius:18px;
  background:rgba(0,0,0,.18);
}
.mini-topline{
  color:var(--gold);
  font-size:12px;
  letter-spacing:.13em;
  font-weight:800;
  text-transform:uppercase;
}
.mini-system h3{
  margin:8px 0 8px;
  font-size:24px;
  font-family:"Space Grotesk", Inter, sans-serif;
}
.mini-system p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

.systems,.why-us,.live-preview,.funnel,.cta-section{
  padding:32px 0;
}
.section-head{margin-bottom:22px}
.section-head h2{
  margin:0;
  font-family:"Space Grotesk", Inter, sans-serif;
  font-size:clamp(30px,4vw,48px);
  line-height:1.03;
  letter-spacing:-.04em;
}
.section-text{
  margin:10px 0 0;
  color:var(--muted);
  font-size:17px;
  line-height:1.7;
}

.systems-grid,.highlights-grid{
  display:grid;
  gap:18px;
}
.systems-grid{grid-template-columns:repeat(3,1fr)}
.system-card,.highlight-card,.preview-card{
  padding:24px;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
}
.system-card.featured{
  border-color:rgba(230,59,59,.42);
  background:
    radial-gradient(circle at top center, rgba(230,59,59,.12), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
}
.system-topline{
  color:#ff9e9e;
  font-size:12px;
  font-weight:800;
  letter-spacing:.13em;
  text-transform:uppercase;
}
.system-card h3{
  margin:10px 0 8px;
  font-size:28px;
  font-family:"Space Grotesk", Inter, sans-serif;
}
.system-promise{
  margin:0;
  color:var(--gold);
  font-weight:700;
}
.system-card ul{
  margin:18px 0 0;
  padding-left:18px;
  color:#efefef;
  line-height:1.88;
}

.highlights-grid{grid-template-columns:repeat(4,1fr)}
.highlight-card h3,.preview-card h3{
  margin:0 0 8px;
  font-size:22px;
}
.highlight-card p{
  margin:0;
  color:var(--muted);
  line-height:1.72;
}

.special-band{
  margin-top:18px;
  padding:24px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at top left, rgba(230,59,59,.12), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow:var(--shadow);
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  align-items:center;
}
.special-copy h3{
  margin:0 0 10px;
  font-size:30px;
  font-family:"Space Grotesk", Inter, sans-serif;
}
.special-copy p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
}
.special-list{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.special-list span{
  padding:11px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
  font-weight:600;
}

.live-grid,.funnel-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:22px;
  align-items:start;
}
.live-copy p,.funnel-copy p{
  color:var(--muted);
  line-height:1.78;
}
.demo-bullets,.embed-notes{
  margin:18px 0 0;
  padding-left:18px;
  line-height:1.9;
}
.question-list{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:14px;
}
.question-chip{
  padding:12px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.1);
  background:#151515;
  color:#fff;
  font-weight:600;
  cursor:pointer;
}
.question-chip:hover{border-color:rgba(230,59,59,.45);color:#ffb0b0}

.embed-shell{
  padding:20px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow:var(--shadow);
}
.embed-header{
  font-weight:800;
  margin-bottom:12px;
}
.embed-code{
  margin:0 0 16px;
  padding:14px;
  border-radius:14px;
  background:#090909;
  border:1px solid rgba(255,255,255,.06);
  color:#ffb4b4;
  white-space:pre-wrap;
  font-size:13px;
  line-height:1.6;
}
.embed-box{
  min-height:240px;
  display:grid;
  place-items:center;
  border-radius:16px;
  border:1px dashed rgba(230,59,59,.42);
  color:#e6e6e6;
  background:linear-gradient(180deg,#090909,#111);
  font-weight:700;
}

.cta-wrap{
  text-align:center;
  padding:38px 28px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at top center, rgba(230,59,59,.16), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow:var(--shadow);
}
.cta-wrap h2{
  margin:0;
  font-size:clamp(28px,4vw,44px);
  font-family:"Space Grotesk", Inter, sans-serif;
}
.cta-wrap p{
  margin:12px auto 0;
  max-width:700px;
  color:var(--muted);
  line-height:1.8;
  font-size:17px;
}
.cta-actions{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:24px;
}

.footer{
  padding:24px 0 100px;
  border-top:1px solid rgba(255,255,255,.06);
}
.footer-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.footer-logo{width:140px;height:auto}
.footer p{margin:0;color:var(--muted)}

.chat-toggle{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:120;
  border:none;
  cursor:pointer;
  min-width:74px;
  height:74px;
  border-radius:50%;
  color:#fff;
  font-weight:800;
  background:linear-gradient(135deg, var(--red), #b31223);
  box-shadow:0 18px 40px rgba(230,59,59,.35);
}
.chat-toggle span{pointer-events:none}
.chat-widget{
  position:fixed;
  right:22px;
  bottom:110px;
  z-index:121;
  width:min(380px, calc(100vw - 24px));
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background:#0d0d0d;
  box-shadow:var(--shadow);
  display:none;
}
.chat-widget.open{display:block}
.chat-widget-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:16px;
  background:linear-gradient(135deg, rgba(230,59,59,.18), rgba(230,59,59,.06));
  border-bottom:1px solid rgba(255,255,255,.06);
}
.chat-widget-head strong{display:block}
.chat-widget-head small{color:#d3d3d3}
.chat-close{
  border:none;
  background:none;
  color:#fff;
  font-size:28px;
  line-height:1;
  cursor:pointer;
}
.chat-widget-body{
  max-height:320px;
  overflow:auto;
  padding:16px;
  display:grid;
  gap:12px;
}
.message{
  max-width:86%;
  padding:12px 14px;
  border-radius:16px;
  line-height:1.6;
}
.message.user{
  margin-left:auto;
  background:rgba(230,59,59,.16);
  border:1px solid rgba(230,59,59,.28);
}
.message.bot{
  background:#161616;
  border:1px solid rgba(255,255,255,.07);
}
.chat-suggestions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  padding:0 16px 14px;
}
.suggestion{
  border:1px solid rgba(255,255,255,.08);
  background:#141414;
  color:#fff;
  border-radius:999px;
  padding:8px 12px;
  cursor:pointer;
  font-size:13px;
}
.chat-input-wrap{
  display:grid;
  grid-template-columns:1fr auto;
  gap:10px;
  padding:0 16px 16px;
}
.chat-input-wrap input{
  width:100%;
  min-height:46px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.08);
  background:#121212;
  color:#fff;
  padding:0 14px;
}
.chat-input-wrap button{
  min-height:46px;
  padding:0 16px;
  border:none;
  border-radius:12px;
  background:linear-gradient(135deg, var(--red), #b31223);
  color:#fff;
  font-weight:700;
  cursor:pointer;
}

@media (max-width: 1100px){
  .hero-grid,.systems-grid,.highlights-grid,.special-band,.live-grid,.funnel-grid{
    grid-template-columns:1fr;
  }
  .hero-stats{grid-template-columns:1fr}
}
@media (max-width: 760px){
  .container{width:min(var(--container), calc(100% - 24px))}
  .brand-logo{width:170px}
  .menu-btn{display:block}
  .nav{
    position:absolute;
    top:84px;
    left:12px;
    right:12px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
    padding:18px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.08);
    background:#090909;
    box-shadow:var(--shadow);
  }
  .nav.open{display:flex}
  .hero{padding-top:24px}
  .system-card,.highlight-card,.preview-card,.hero-side-card,.special-band,.embed-shell,.cta-wrap{padding:20px}
  .footer-wrap{flex-direction:column;text-align:center}
  .chat-widget{
    right:12px;
    bottom:96px;
    width:calc(100vw - 24px);
  }
  .chat-toggle{
    right:12px;
    bottom:12px;
    width:68px;
    height:68px;
  }
}

.hero-grid-swapped{
  align-items:start;
}
.hero-side-left{
  display:flex;
}
.hero-form-panel{
  display:flex;
}
.hero-form-shell{
  width:100%;
  padding:28px;
}
.hero-form-shell .embed-box,
.hero-form-shell .embed-code,
.hero-form-shell .embed-header{
  display:none;
}
@media (max-width: 1100px){
  .hero-grid-swapped{
    grid-template-columns:1fr;
  }
}


/* Step 2: Replace mid-page sections with Add-ons */
.addons{
  padding:32px 0;
}
.addons-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.addon-card{
  padding:24px;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
}
.addon-topline{
  color:var(--gold);
  font-size:12px;
  font-weight:800;
  letter-spacing:.13em;
  text-transform:uppercase;
}
.addon-card h3{
  margin:10px 0 10px;
  font-size:28px;
  font-family:"Space Grotesk", Inter, sans-serif;
}
.addon-card p{
  margin:0;
  color:var(--muted);
  line-height:1.78;
}
.addons-band{
  margin-top:18px;
  padding:24px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at top left, rgba(230,59,59,.12), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow:var(--shadow);
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  align-items:center;
}
.addons-band-copy h3{
  margin:0 0 10px;
  font-size:30px;
  font-family:"Space Grotesk", Inter, sans-serif;
}
.addons-band-copy p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
}
.addons-tags{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.addons-tags span{
  padding:11px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
  font-weight:600;
}
@media (max-width: 1100px){
  .addons-grid,
  .addons-band{
    grid-template-columns:1fr;
  }
}


/* Step 3 hero bottom feature cards */
.hero-feature-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:28px;
}
.hero-feature-card{
  min-height:190px;
  padding:28px 34px;
  border-radius:36px;
  background:
    radial-gradient(circle at top center, rgba(230,59,59,.10), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
}
.hero-feature-card h4{
  margin:0 0 18px;
  font-size:58px;
  line-height:.95;
  font-weight:800;
  color:#fff;
  font-family:Inter,system-ui,Arial,sans-serif;
}
.hero-feature-card p{
  margin:0;
  color:#d6d6d6;
  line-height:1.35;
  font-size:25px;
  font-weight:500;
}
@media (max-width:1100px){
  .hero-feature-cards{
    grid-template-columns:1fr;
  }
  .hero-feature-card{
    min-height:auto;
  }
}


/* Step 4: adjust feature card font sizes */
.hero-feature-card h4{
  font-size:36px !important;
  line-height:1.1;
}

.hero-feature-card p{
  font-size:16px !important;
  line-height:1.6;
  color: var(--muted);
}
.btn-bookdemo {
    float: right;
}