/* ExeWrap marketing site — custom styles on top of Bootstrap 5. */

:root {
  --ds-bg:        #0a0f1e;
  --ds-bg-2:      #0f1a30;
  --ds-ink:       #e8ecf6;
  --ds-brand:     #4f46e5;   /* indigo */
  --ds-brand-2:   #10b981;   /* emerald */
  --ds-muted:     #94a3b8;
}

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1f2533;
}

/* ---------- Navbar ---------- */
.ds-nav {
  background: rgba(10, 15, 30, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ds-nav .nav-link { color: #c7cfe2; font-weight: 500; }
.ds-nav .nav-link:hover,
.ds-nav .nav-link.active { color: #fff; }
.ds-logo { filter: drop-shadow(0 2px 6px rgba(79, 70, 229, 0.5)); }

/* ---------- Buttons ---------- */
.btn-brand {
  background: linear-gradient(135deg, var(--ds-brand), var(--ds-brand-2));
  border: none;
  color: #fff;
  font-weight: 600;
}
.btn-brand:hover { color: #fff; filter: brightness(1.08); }
.btn-outline-light-brand {
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
}
.btn-outline-light-brand:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* ---------- Hero ---------- */
.ds-hero {
  background:
    radial-gradient(1200px 500px at 70% -10%, rgba(16, 185, 129, 0.16), transparent 60%),
    radial-gradient(900px 500px at 10% 10%, rgba(79, 70, 229, 0.25), transparent 55%),
    linear-gradient(180deg, var(--ds-bg), var(--ds-bg-2));
  color: var(--ds-ink);
}
.ds-hero .eyebrow {
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .8rem;
  color: var(--ds-brand-2);
  font-weight: 700;
}
.ds-hero h1 {
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.ds-hero .lead { color: #c2cbe0; }

/* Code/terminal mock in hero */
.ds-terminal {
  background: #080d1a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  overflow: hidden;
}
.ds-terminal .bar {
  background: #111a30;
  padding: .55rem .8rem;
  display: flex; gap: .4rem; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ds-terminal .dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.ds-terminal pre {
  margin: 0; padding: 1rem 1.1rem;
  color: #cfe0ff; font-size: .86rem; line-height: 1.55;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  white-space: pre-wrap;
}
.ds-terminal .c-key { color: #6ee7b7; }
.ds-terminal .c-ok  { color: #4ade80; }
.ds-terminal .c-dim { color: #6b7aa0; }

/* trust bar */
.ds-trust {
  background: var(--ds-bg-2);
  color: var(--ds-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ds-trust .item { color: #aeb9d4; font-weight: 600; }

/* ---------- Feature cards ---------- */
.ds-feature {
  height: 100%;
  border: 1px solid #e7eaf3;
  border-radius: 14px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  background: #fff;
}
.ds-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(20, 30, 70, 0.10);
  border-color: #d6dbef;
}
.ds-feature .icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.4rem; color: #fff;
  background: linear-gradient(135deg, var(--ds-brand), var(--ds-brand-2));
}

/* section helpers */
.section { padding: 5rem 0; }
.section-tight { padding: 3.5rem 0; }
.eyebrow-dark {
  letter-spacing: .12em; text-transform: uppercase;
  font-size: .8rem; color: var(--ds-brand); font-weight: 700;
}
.text-muted-2 { color: #5a6477; }

/* steps */
.ds-step .num {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--ds-brand), var(--ds-brand-2));
}

/* ---------- Pricing ---------- */
.ds-price {
  border: 1px solid #e7eaf3; border-radius: 16px; background: #fff; height: 100%;
}
.ds-price.featured {
  border-color: var(--ds-brand);
  box-shadow: 0 24px 60px rgba(79, 70, 229, 0.18);
  position: relative;
}
.ds-price .price { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.02em; }
.ds-price .badge-pop {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--ds-brand), var(--ds-brand-2));
}
.ds-check { color: #16a34a; }
.ds-x { color: #c0c6d4; }

/* ---------- CTA band ---------- */
.ds-cta {
  background:
    radial-gradient(800px 300px at 80% 0%, rgba(16, 185, 129, 0.18), transparent 60%),
    linear-gradient(135deg, var(--ds-bg), var(--ds-bg-2));
  color: #fff;
  border-radius: 20px;
}

/* ---------- Footer ---------- */
.ds-footer { background: var(--ds-bg); }
.ds-footer a { color: #aeb9d4; text-decoration: none; }
.ds-footer a:hover { color: #fff; }

/* page hero (inner pages) */
.page-hero {
  background: linear-gradient(180deg, var(--ds-bg), var(--ds-bg-2));
  color: var(--ds-ink);
}
.page-hero h1 { font-weight: 800; letter-spacing: -0.02em; }
.page-hero p { color: #c2cbe0; }
