:root{
  --bg:#050505;
  --bg2:#0b0b0b;
  --card:#0f0f0f;
  --line:#1c1c1c;
  --text:#f5f5f5;
  --muted:#b9b9b9;
  --muted2:#8a8a8a;
  --white:#ffffff;
  --black:#000000;
  --radius:18px;
  --shadow: 0 20px 60px rgba(0,0,0,.55);
  --max:1200px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: radial-gradient(1200px 700px at 70% -10%, #1a1a1a 0%, transparent 55%),
              radial-gradient(900px 600px at 10% 10%, #131313 0%, transparent 55%),
              linear-gradient(180deg, var(--bg) 0%, #000 100%);
  color:var(--text);
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(var(--max), 92vw); margin:0 auto; }

.grid-bg{
  position:fixed; inset:0;
  background:
    linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity:.12;
  pointer-events:none;
  mask-image: radial-gradient(closest-side at 50% 20%, rgba(0,0,0,1), rgba(0,0,0,.25), rgba(0,0,0,0));
}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,.55);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.brand img{
  height:42px;
  transform:translateY(1px);
  width:auto;
  display:block;
}

.brand .name{
  font-weight:600;           /* lighter = easier to read */
  letter-spacing:.14em;      /* more breathing room */
  font-size:15px;            /* slightly bigger */
  text-transform:uppercase;
}

.brand .tag{
  color:rgba(255,255,255,.5);
  font-size:12px;
  margin-top:2px;
  letter-spacing:.04em;
}

.links{
  display:flex; gap:18px; align-items:center;
}
.links a{
  font-size:14px; color:var(--muted);
  padding:10px 10px;
  border-radius:12px;
}
.links a:hover{ background:rgba(255,255,255,.06); color:var(--text); }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color:var(--text);
  font-weight:700;
  transition: .2s ease;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.12); }
.btn.primary{
  background: var(--white);
  color: var(--black);
  border-color: rgba(255,255,255,.35);
}
.btn.primary:hover{ filter: brightness(.95); transform: translateY(-1px); }
.btn.small{ padding:10px 12px; border-radius:12px; font-size:14px; }
.btn.block{ width:100%; }

.hamburger{
  display:none;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color:var(--text);
  border-radius:12px;
  padding:10px 12px;
  font-weight:900;
}
.mobile{
  display:none;
  border-top:1px solid rgba(255,255,255,.08);
  padding:12px 0 16px;
}
.mobile a{ display:block; padding:12px 10px; color:var(--muted); border-radius:12px; }
.mobile a:hover{ background:rgba(255,255,255,.06); color:var(--text); }

.hero{
  padding:64px 0 34px;
}
.hero .kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  color:var(--muted);
  background: rgba(255,255,255,.06);
  font-size:13px;
}
.hero h1{
  margin:18px 0 14px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height:1.05;
  letter-spacing:-.8px;
}
.hero h1 .ghost{
  color: rgba(255,255,255,.65);
}
.hero p{
  margin:0;
  color:var(--muted);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height:1.6;
  max-width: 68ch;
}
.hero .ctaRow{
  display:flex; gap:12px; flex-wrap:wrap;
  margin-top:22px;
}
.hero .metaRow{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
  margin-top:28px;
}
.pill{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding:14px 14px;
  box-shadow: var(--shadow);
}
.pill b{ display:block; font-size:14px; }
.pill span{ color:var(--muted2); font-size:13px; }

.section{
  padding:48px 0;
}
.section h2{
  margin:0 0 10px;
  font-size: clamp(22px, 2.1vw, 32px);
  letter-spacing:-.4px;
}
.section p.lead{
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.65;
  max-width: 80ch;
}

.cards{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
}
.card{
  grid-column: span 6;
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.card::after{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(400px 220px at 20% 20%, rgba(255,255,255,.12), transparent 55%);
  opacity:.6;
  pointer-events:none;
}
.card h3{ margin:0 0 8px; font-size:18px; }
.card p{ margin:0; color:var(--muted); line-height:1.6; }
.card .mini{ margin-top:10px; color:rgba(255,255,255,.75); font-size:13px; }

/* Hover highlight for industry cards (and any linked cards) */
.card:hover,
.card:focus-visible{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.26);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
}

@media (prefers-reduced-motion: reduce){
  .card{ transition:none; }
  .card:hover, .card:focus-visible{ transform:none; }
}

.tableWrap{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}
table{
  width:100%;
  border-collapse:collapse;
  font-size:14px;
}
th, td{
  padding:14px 14px;
  border-bottom:1px solid rgba(255,255,255,.08);
  vertical-align:top;
}
th{
  text-align:left;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.9);
  font-weight:800;
}
td{ color: var(--muted); }
tr:last-child td{ border-bottom:none; }

.pricingGrid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:14px;
}

/* Medium screens: keep pricing readable
   Keep 4 cards on one line for most laptop/desktop widths so DOMINATE
   stays in-row with the other packages. */
@media (max-width: 980px){
  .pricingGrid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}

.roiBox{
  margin-top:10px;
  padding:12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.22);
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
}
.roiBox .roiTitle{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  color: rgba(255,255,255,.92);
  margin:0 0 6px;
}
.roiBox .roiTitle .dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background: rgba(255,255,255,.85);
}

.scopeCard{
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.scopeCard .scopeHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.scopeCard .scopeHead h3{ margin:0; }
.scopeCard .scopeTag{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.9);
}
.priceCard{
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.priceCard .top{
  display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
}
.badge{
  font-size:12px;
  color:rgba(255,255,255,.75);
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  padding:6px 10px;
  border-radius:999px;
}
.priceCard h3{ margin:12px 0 8px; font-size:18px; }
.priceCard .best{ color:rgba(255,255,255,.75); margin:0 0 12px; }
.price{
  font-weight:900;
  font-size:26px;
  letter-spacing:-.6px;
  margin:10px 0 12px;
}
.price small{ font-size:13px; color:rgba(255,255,255,.7); font-weight:700; }
ul{
  margin:0; padding-left:18px;
  color:var(--muted);
  line-height:1.7;
}
.hr{ height:1px; background: rgba(255,255,255,.10); margin:16px 0; }

.callout{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}

/* More “in-your-face” hero/section callout */
.engineBanner{
  border:1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  border-radius: calc(var(--radius) + 2px);
  padding:18px;
  box-shadow: 0 18px 70px rgba(0,0,0,.55);
  position:relative;
  overflow:hidden;
}
.engineBanner::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(520px 260px at 18% 10%, rgba(255,255,255,.18), transparent 55%);
  opacity:.9;
  pointer-events:none;
}
.engineBanner > *{ position:relative; }

.footer{
  padding:26px 0 34px;
  border-top:1px solid rgba(255,255,255,.08);
  color:var(--muted2);
  font-size:13px;
}
.footer .row{
  display:flex; flex-wrap:wrap; gap:12px; align-items:center; justify-content:space-between;
}
.footer a{ color:rgba(255,255,255,.75); }
.footer a:hover{ color:var(--text); }

.form{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:12px;
}
.field{ grid-column: span 1; }
.field.full{ grid-column: span 2; }
label{ display:block; font-size:13px; color:rgba(255,255,255,.8); margin:0 0 8px; }
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.35);
  color:var(--text);
  outline:none;
}
textarea{ min-height:130px; resize:vertical; }
input::placeholder, textarea::placeholder{ color:rgba(255,255,255,.35); }

.note{ color:var(--muted2); font-size:13px; line-height:1.6; }

ul.bullets{ list-style: none; padding-left: 0; margin: 10px 0 0; }
ul.bullets li{
  position: relative;
  padding-left: 16px;
  margin: 8px 0;
  color: rgba(255,255,255,.82);
  line-height: 1.55;
}
ul.bullets li:before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255,255,255,.55);
}

/* Scroll reveal */
.reveal{
  opacity:0;
  transform: translate3d(0,18px,0) scale(.99);
  transition:
    opacity .65s ease,
    transform .85s cubic-bezier(.2,.9,.2,1);
  filter: blur(8px);
  transition-delay: calc(var(--stagger, 0) * 70ms);
  will-change: transform, opacity;
}
.reveal.is-visible{
  opacity:1;
  transform: translate3d(0,0,0) scale(1);
  filter: blur(0);
}

/* directional variants */
.reveal-left{ transform: translate3d(-80px,14px,0) rotate(-.6deg) scale(.985); }
.reveal-right{ transform: translate3d(80px,14px,0) rotate(.6deg) scale(.985); }
.reveal-up{ transform: translate3d(0,22px,0) scale(.99); }
.reveal-down{ transform: translate3d(0,-22px,0) scale(.99); }
.reveal-zoom{ transform: translate3d(0,10px,0) scale(.94); filter: blur(2px); }
.reveal-zoom.is-visible{ filter: blur(0); }

/* hover polish */
.cards a.card, .cards .card{
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.cards a.card:hover, .cards .card:hover{
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 18px 55px rgba(0,0,0,.55);
}

/* unique section wrappers */
.section.alt{
  position: relative;
}
.section.alt:before{
  content:"";
  position:absolute;
  inset:-1px 0;
  background: radial-gradient(800px 220px at 15% 10%, rgba(255,255,255,.08), transparent 55%),
              radial-gradient(700px 260px at 85% 30%, rgba(255,255,255,.07), transparent 60%);
  pointer-events:none;
  opacity:.9;
}
.section.alt .container{ position: relative; }

/* split layout */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.panel{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: 18px;
  padding: 18px;
  position: relative;
  overflow:hidden;
}

/* sticky side panel for split layouts */
.panel.sticky{
  position: sticky;
  top: 96px;
}
.panel:after{
  content:"";
  position:absolute;
  inset:-40% -40% auto auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.16), transparent 55%);
  transform: rotate(25deg);
  opacity:.55;
}
.bento{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.bento .tile{
  grid-column: span 6;
  min-height: 120px;
}
.tile.big{ grid-column: span 12; min-height: 160px; }
.tile .mini{ margin-top: 10px; }

/* niche signature badge */
.sig{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  font-size: 12px;
  color: rgba(255,255,255,.86);
}
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; filter:none; }
}

@media (max-width: 900px){
  .split{ grid-template-columns: 1fr; }
  .bento .tile, .tile.big{ grid-column: span 12; }
}

/* Responsive */
@media (max-width: 900px){
  .pricingGrid{ grid-template-columns: 1fr; }
  .card{ grid-column: span 12; }
  .hero .metaRow{ grid-template-columns: 1fr; }
  .links{ display:none; }
  .hamburger{ display:inline-flex; }
  .mobile.show{ display:block; }
  .form{ grid-template-columns: 1fr; }
  .field, .field.full{ grid-column: span 1; }
}


/* ==========================================
   MOBILE STACK FIX (Axis Systems)
   Ensures cards/boxes never sit side-by-side on small screens
   ========================================== */

@media (max-width: 900px) {
  /* Bento grids (used heavily on Pricing + other pages) */
  .bento{
    grid-template-columns: 1fr !important;
  }
  .bento > *{
    grid-column: 1 / -1 !important;
  }

  /* Any common 2-column wrappers */
  .row, .rows, .columns, .cards{
    flex-direction: column !important;
  }

  /* Safety: prevent overflow */
  .card, .box, .panel{
    width: 100% !important;
    max-width: 100% !important;
  }
}
