:root{
  --bg:#0b1220;
  --panel:#0f1a2e;
  --card:#0f1a2e;
  --text:#eaf0ff;
  --muted:rgba(234,240,255,.72);
  --line:rgba(234,240,255,.12);
  --brand:#6ee7ff;
  --brand2:#a78bfa;
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background: radial-gradient(1200px 700px at 20% 10%, rgba(110,231,255,.18), transparent 55%),
              radial-gradient(900px 600px at 70% 15%, rgba(167,139,250,.18), transparent 55%),
              var(--bg);
}

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.92; }

.header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(11,18,32,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 0px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand-mark{
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(110,231,255,.25), rgba(167,139,250,.25));
  border: 1px solid rgba(234,240,255,.14);
  box-shadow: var(--shadow);
  font-weight:800;
  letter-spacing:.6px;
}
.brand-name{
  font-weight:700;
  letter-spacing:.2px;
}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav a{
  color: rgba(234,240,255,.86);
  font-weight:600;
}
.menu-btn{
  display:none;
  width:44px;
  height:44px;
  border-radius: 14px;
  background: rgba(234,240,255,.06);
  border: 1px solid var(--line);
  cursor:pointer;
}
.menu-btn span{
  display:block;
  width:18px;
  height:2px;
  margin:4px auto;
  background: rgba(234,240,255,.9);
  border-radius:2px;
}

.mobile-nav{
  display:none;
  padding: 10px 20px 18px;
  border-top:1px solid var(--line);
}
.mnav-link{
  display:block;
  padding: 12px 12px;
  border-radius: 12px;
  margin: 6px 0;
  background: rgba(234,240,255,.05);
  border: 1px solid rgba(234,240,255,.08);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(234,240,255,.16);
  background: rgba(234,240,255,.06);
  font-weight:700;
  color: var(--text);
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.btn.small{ padding: 10px 14px; border-radius: 12px; }
.btn.primary{
  background: linear-gradient(135deg, rgba(110,231,255,.22), rgba(167,139,250,.22));
  border-color: rgba(234,240,255,.22);
}
.btn.ghost{
  background: transparent;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0px); }

.hero{
  position:relative;
  padding: 56px 0 26px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: start;
}
.pill{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(234,240,255,.14);
  background: rgba(234,240,255,.06);
  color: rgba(234,240,255,.86);
  font-weight:700;
  font-size: 13px;
}
h1{
  margin: 14px 0 12px;
  font-size: clamp(34px, 4vw, 52px);
  line-height:1.05;
  letter-spacing:-.8px;
}
.grad{
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.sub{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16.5px;
  line-height:1.55;
}
.hero-cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom: 18px;
}

.trust-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top: 18px;
}
.trust-item{
  border: 1px solid rgba(234,240,255,.12);
  background: rgba(234,240,255,.04);
  border-radius: var(--radius);
  padding: 12px;
}
.trust-num{
  font-weight:900;
  font-size: 18px;
}
.trust-text{
  color: var(--muted);
  font-weight:600;
  margin-top:4px;
  font-size: 13px;
}

.hero-card{
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(234,240,255,.14);
  background: rgba(15,26,46,.6);
  box-shadow: var(--shadow);
  padding: 14px;
}
.screen{
  border-radius: 18px;
  border: 1px solid rgba(234,240,255,.14);
  background: rgba(11,18,32,.55);
  overflow:hidden;
}
.screen-top{
  display:flex;
  align-items:center;
  gap:8px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(234,240,255,.12);
  background: rgba(234,240,255,.04);
}
.dot{
  width:10px;height:10px;border-radius:50%;
  background: rgba(234,240,255,.22);
}
.screen-title{
  margin-left:auto;
  color: rgba(234,240,255,.78);
  font-weight:700;
  font-size: 13px;
}

/* slightly roomier (cleaner) */
.screen-body{ padding: 16px; }

.kpis{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.kpi{
  border: 1px solid rgba(234,240,255,.12);
  background: rgba(234,240,255,.04);
  border-radius: 16px;
  padding: 10px;
}
.kpi-label{ color: rgba(234,240,255,.72); font-weight:700; font-size:12px; }
.kpi-value{ font-size: 22px; font-weight:900; margin-top: 6px; }
.kpi-sub{ color: rgba(234,240,255,.68); font-weight:600; font-size: 12px; margin-top: 2px; }

.mini-table{
  margin-top: 12px;
  border: 1px solid rgba(234,240,255,.12);
  border-radius: 16px;
  overflow:hidden;
}
.mini-table .row{
  display:grid;
  grid-template-columns: 1.3fr .9fr .5fr;
  gap:10px;
  padding: 10px 12px;
  border-top: 1px solid rgba(234,240,255,.08);
  background: rgba(234,240,255,.03);
}
.mini-table .row.head{
  border-top: none;
  background: rgba(234,240,255,.05);
  font-weight:800;
  color: rgba(234,240,255,.82);
  font-size: 12px;
}

.chart{
  margin-top: 12px;
  border: 1px solid rgba(234,240,255,.12);
  border-radius: 16px;
  background: rgba(234,240,255,.03);
  padding: 12px;
}
.chart-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-weight:800;
  font-size: 12px;
  color: rgba(234,240,255,.82);
  margin-bottom: 10px;
}
.bars{
  display:flex;
  gap:8px;
  align-items:flex-end;
  height: 86px;
}
.bars span{
  flex:1;
  border-radius: 10px;
  border: 1px solid rgba(234,240,255,.14);
  background: linear-gradient(180deg, rgba(110,231,255,.22), rgba(167,139,250,.18));
}

.tag{
  display:inline-flex;
  justify-content:center;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(234,240,255,.14);
  background: rgba(234,240,255,.05);
  font-weight:800;
  font-size: 12px;
}
.tag.ok{ border-color: rgba(110,231,255,.28); }
.tag.warn{ border-color: rgba(167,139,250,.28); }

.note{
  margin-top: 12px;
  color: rgba(234,240,255,.68);
  font-size: 12.5px;
  line-height:1.5;
}

.hero-badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 12px;
}
.badge{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(234,240,255,.12);
  background: rgba(234,240,255,.04);
  color: rgba(234,240,255,.78);
  font-weight:700;
  font-size: 12px;
}

.section{
  padding: 62px 0;
}
.section.alt{
  background: rgba(234,240,255,.03);
  border-top: 1px solid rgba(234,240,255,.08);
  border-bottom: 1px solid rgba(234,240,255,.08);
}

.section-head{
  max-width: 720px;
  margin-bottom: 18px;
}
.section-head h2{
  margin:0 0 8px;
  font-size: 30px;
  letter-spacing:-.4px;
}
.section-head p{
  margin:0;
  color: var(--muted);
  line-height:1.6;
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.card{
  border-radius: var(--radius);
  border: 1px solid rgba(234,240,255,.12);
  background: rgba(15,26,46,.55);
  box-shadow: 0 12px 34px rgba(0,0,0,.22);
  padding: 18px;
}
.card h3{ margin:0 0 8px; letter-spacing:-.2px; }
.card p{ margin:0 0 10px; color: var(--muted); line-height:1.6; }

.ticks{
  margin: 0;
  padding-left: 18px;
  color: rgba(234,240,255,.80);
  font-weight:600;
}
.ticks li{ margin: 8px 0; }

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.case-card{
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(234,240,255,.12);
  background: rgba(11,18,32,.55);
  padding: 18px;
  box-shadow: var(--shadow);
}
.case-points{
  display:grid;
  gap: 10px;
  margin: 14px 0 18px;
}
.case-point{
  border: 1px solid rgba(234,240,255,.10);
  background: rgba(234,240,255,.04);
  border-radius: 16px;
  padding: 12px;
}
.cp-title{ font-weight:900; }
.cp-text{ color: var(--muted); font-weight:600; margin-top: 4px; }
.case-cta{ display:flex; gap:12px; flex-wrap:wrap; }

.case-metrics{
  display:grid;
  gap:10px;
}
.metric{
  display:flex;
  gap:10px;
  align-items:flex-start;
  border: 1px solid rgba(234,240,255,.10);
  background: rgba(234,240,255,.04);
  border-radius: 16px;
  padding: 12px;
}
.metric-num{
  width:26px;height:26px;border-radius: 10px;
  display:grid;place-items:center;
  font-weight:900;
  background: linear-gradient(135deg, rgba(110,231,255,.18), rgba(167,139,250,.18));
  border: 1px solid rgba(234,240,255,.14);
}
.metric-text{ color: rgba(234,240,255,.82); font-weight:700; }

.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.step{
  border-radius: var(--radius);
  border: 1px solid rgba(234,240,255,.12);
  background: rgba(15,26,46,.55);
  padding: 18px;
  box-shadow: 0 12px 34px rgba(0,0,0,.2);
}
.step-num{
  width:40px;height:40px;border-radius: 14px;
  display:grid;place-items:center;
  font-weight:900;
  background: rgba(234,240,255,.06);
  border: 1px solid rgba(234,240,255,.12);
}
.step h3{ margin: 10px 0 6px; }
.step p{ margin:0; color: var(--muted); line-height:1.6; }

.quote p{ font-size: 15.5px; }
.quote-meta{ margin-top: 10px; color: rgba(234,240,255,.68); font-weight:700; }

.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:start;
}
.contact-details{
  margin-top: 14px;
  display:grid;
  gap: 10px;
}
.contact-item{
  padding: 12px;
  border: 1px solid rgba(234,240,255,.12);
  background: rgba(234,240,255,.04);
  border-radius: 16px;
}
.label{
  display:block;
  font-weight:900;
  margin-bottom: 6px;
}
.form{
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(234,240,255,.12);
  background: rgba(15,26,46,.55);
  padding: 18px;
  box-shadow: var(--shadow);
}
.form label{
  display:grid;
  gap: 8px;
  font-weight:800;
  color: rgba(234,240,255,.86);
  margin-bottom: 12px;
}
input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(234,240,255,.16);
  background: rgba(11,18,32,.55);
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus{
  border-color: rgba(110,231,255,.32);
  box-shadow: 0 0 0 4px rgba(110,231,255,.10);
}
.form-hint{
  margin-top: 10px;
  color: rgba(234,240,255,.72);
  font-weight:700;
  font-size: 13px;
}

.footer{
  padding: 28px 0 40px;
  border-top: 1px solid rgba(234,240,255,.10);
}
.footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 18px;
}
.footer-brand{ font-weight:900; margin-bottom: 4px; }
.footer-links{ display:flex; gap: 14px; flex-wrap:wrap; color: rgba(234,240,255,.82); font-weight:700; }

.muted{ color: var(--muted); }
code{
  padding: 2px 6px;
  border-radius: 8px;
  background: rgba(234,240,255,.06);
  border: 1px solid rgba(234,240,255,.12);
  color: rgba(234,240,255,.9);
}

/* --------------------------------------------------
   BRIGHTER / CLEANER HERO DASHBOARD (mock)
   IMPORTANT: This ONLY applies if your HTML is:
   <div class="screen screen-light">
-------------------------------------------------- */

.screen.screen-light{
  /* make the whole mock panel brighter */
  background: rgba(255,255,255,.10);
  border-color: rgba(234,240,255,.24);
}

.screen-light .screen-top{
  background: rgba(255,255,255,.12);
  border-bottom-color: rgba(234,240,255,.18);
}

.screen-light .dot{
  background: rgba(234,240,255,.55);
}

.screen-light .screen-title{
  color: rgba(234,240,255,.95);
}

/* KPI cards: brighter + cleaner */
.screen-light .kpi{
  background: rgba(255,255,255,.12);
  border-color: rgba(234,240,255,.20);
}

/* Table: lighter */
.screen-light .mini-table{
  border-color: rgba(234,240,255,.20);
  background: rgba(255,255,255,.08);
}
.screen-light .mini-table .row{
  background: rgba(255,255,255,.10);
  border-top-color: rgba(234,240,255,.14);
}
.screen-light .mini-table .row.head{
  background: rgba(255,255,255,.14);
  color: rgba(234,240,255,.92);
}

/* Tags: brighter */
.screen-light .tag{
  background: rgba(255,255,255,.10);
  border-color: rgba(234,240,255,.22);
}
.screen-light .tag.ok{ border-color: rgba(110,231,255,.55); }
.screen-light .tag.warn{ border-color: rgba(167,139,250,.55); }

/* Chart: brighter container */
.screen-light .chart{
  background: rgba(255,255,255,.10);
  border-color: rgba(234,240,255,.20);
}

.screen-light .note{
  color: rgba(234,240,255,.82);
}

/* ===== FORCE BRIGHT DASHBOARD (drop at very bottom) ===== */
.hero-card .screen.screen-light{
  background: rgba(255,255,255,.14) !important;
  border-color: rgba(255,255,255,.28) !important;
}

.hero-card .screen.screen-light .screen-top{
  background: rgba(255,255,255,.16) !important;
  border-bottom-color: rgba(255,255,255,.22) !important;
}

.hero-card .screen.screen-light .dot{
  background: rgba(255,255,255,.55) !important;
}

.hero-card .screen.screen-light .screen-title{
  color: rgba(255,255,255,.95) !important;
}

/* KPI panels */
.hero-card .screen.screen-light .kpi{
  background: rgba(255,255,255,.16) !important;
  border-color: rgba(255,255,255,.26) !important;
}
.hero-card .screen.screen-light .kpi-label{
  color: rgba(255,255,255,.82) !important;
}
.hero-card .screen.screen-light .kpi-sub{
  color: rgba(255,255,255,.74) !important;
}

/* Table */
.hero-card .screen.screen-light .mini-table{
  background: rgba(255,255,255,.10) !important;
  border-color: rgba(255,255,255,.22) !important;
}
.hero-card .screen.screen-light .mini-table .row{
  background: rgba(255,255,255,.12) !important;
  border-top-color: rgba(255,255,255,.18) !important;
}
.hero-card .screen.screen-light .mini-table .row.head{
  background: rgba(255,255,255,.18) !important;
  color: rgba(255,255,255,.92) !important;
}

/* Chart */
.hero-card .screen.screen-light .chart{
  background: rgba(255,255,255,.12) !important;
  border-color: rgba(255,255,255,.22) !important;
}

/* Tags */
.hero-card .screen.screen-light .tag{
  background: rgba(255,255,255,.14) !important;
  border-color: rgba(255,255,255,.26) !important;
}

.brand{
  display:flex;
  align-items:center;
}

.brand-logo{
  height: 120px;
  width: auto;
  display: block;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.35));
}


@media (max-width: 1100px){
  .brand-logo{ height: 40px; }
}
@media (max-width: 980px){
  .brand-logo{ height: 34px; }
}





/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .trust-row{ grid-template-columns: 1fr; }
  .nav{ display:none; }
  .menu-btn{ display:block; }
  .mobile-nav.open{ display:block; }
}
