/* Innoforces — CSS */

:root{
  --bg:#070A10;
  --panel:#0B1020;
  --panel2:#0A0F1D;
  --text:#E8EEF8;
  --muted:#A9B6CC;
  --line:rgba(232,238,248,.12);
  --accent:#66E0FF;
  --accent2:#8B5CF6;
  --ok:#2EE59D;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 18px;
  --max: 1120px;
}

:root {
  scroll-behavior: smooth;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(900px 500px at 15% 10%, rgba(102,224,255,.14), transparent 60%),
    radial-gradient(900px 500px at 85% 15%, rgba(139,92,246,.12), transparent 60%),
    radial-gradient(900px 500px at 60% 90%, rgba(46,229,157,.10), transparent 60%),
    linear-gradient(180deg, #05070B 0%, #070A10 60%, #04060A 100%);
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:0 22px;
}

/* NAV */
.nav{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter: blur(12px);
  background: rgba(7,10,16,.55);
  border-bottom:1px solid var(--line);
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:72px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
  letter-spacing:.2px;
}

.logo{
  width:34px;
  height:34px;
  border-radius:12px;
  background:
    radial-gradient(14px 14px at 30% 35%, rgba(102,224,255,.9), transparent 65%),
    radial-gradient(18px 18px at 70% 65%, rgba(139,92,246,.85), transparent 70%),
    linear-gradient(135deg, rgba(232,238,248,.08), rgba(232,238,248,.02));
  border:1px solid rgba(232,238,248,.16);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.nav-links{
  display:flex;
  gap:18px;
  align-items:center;
  color:var(--muted);
  font-size:14px;
}

.nav-links a{
  padding:10px 10px;
  border-radius:12px;
}

.nav-links a:hover{
  background:rgba(232,238,248,.06);
  color:var(--text);
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(232,238,248,.14);
  background: rgba(232,238,248,.05);
  color:var(--text);
  gap:10px;
  font-weight:600;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  cursor:pointer;
}

.btn:hover{
  transform: translateY(-1px);
  background: rgba(232,238,248,.08);
  border-color: rgba(232,238,248,.22);
}

.btn.primary{
  background: linear-gradient(135deg, rgba(102,224,255,.22), rgba(139,92,246,.18));
  border-color: rgba(102,224,255,.35);
}

.btn.primary:hover{border-color: rgba(102,224,255,.55)}

.btn .dot{
  width:8px;
  height:8px;
  border-radius:99px;
  background: var(--ok);
  box-shadow: 0 0 18px rgba(46,229,157,.55);
}

/* HERO */
.hero{
  padding:72px 0 22px;
  position:relative;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:28px;
  align-items:stretch;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(232,238,248,.14);
  background: rgba(232,238,248,.04);
  color:var(--muted);
  font-size:13px;
}

.badge strong{color:var(--text); font-weight:700}

h1{
  margin:14px 0 12px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.lead{
  color:var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 60ch;
}

.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

.kpis{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:18px;
}

/* CARDS */
.card{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(232,238,248,.05), rgba(232,238,248,.02));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.kpi{
  padding:14px 14px 12px;
  position:relative;
  overflow:hidden;
}

.kpi:before{
  content:"";
  position:absolute;
  inset:-1px;
  background: radial-gradient(600px 160px at 20% 0%, rgba(102,224,255,.12), transparent 55%);
  pointer-events:none;
}

.kpi .num{
  font-size:20px;
  font-weight:800;
  letter-spacing:-0.01em;
}

.kpi .lbl{
  margin-top:4px;
  color:var(--muted);
  font-size:13px;
}

/* DASHBOARD PANEL */
.panel{
  padding:18px;
  overflow:hidden;
  position:relative;
  min-height: 420px;
}

.panel:before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(340px 220px at 25% 20%, rgba(139,92,246,.16), transparent 60%),
    radial-gradient(420px 260px at 70% 60%, rgba(102,224,255,.14), transparent 65%);
  pointer-events:none;
}

.panel-inner{position:relative}

.mock{
  border:1px solid rgba(232,238,248,.14);
  border-radius: 16px;
  background: rgba(4,6,10,.65);
  overflow:hidden;
}

.mock-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 12px;
  border-bottom:1px solid rgba(232,238,248,.10);
  color:var(--muted);
  font-size:12px;
}

.lights{display:flex; gap:7px}
.light{width:10px; height:10px; border-radius:99px; background:rgba(232,238,248,.18)}

.mock-body{
  padding:14px;
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
}

.tile-row{
  display:grid;
  gap:10px;
  grid-template-columns: repeat(3, 1fr);
}

.tile{
  padding:10px 10px 12px;
  border-radius: 14px;
  border:1px solid rgba(232,238,248,.10);
  background: rgba(232,238,248,.03);
}

.tile .t{font-size:12px; color:var(--muted)}
.tile .v{margin-top:6px; font-weight:800; letter-spacing:-0.01em}

.bar{
  height:10px;
  border-radius:999px;
  background: rgba(232,238,248,.08);
  overflow:hidden;
  margin-top:10px;
}

.bar > span{
  display:block;
  height:100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(102,224,255,.9), rgba(139,92,246,.75));
  border-radius:999px;
  transition: width .9s ease;
}

.spark{
  display:grid;
  gap:10px;
  grid-template-columns: 1fr 1fr;
}

.mini{
  border-radius: 14px;
  border:1px solid rgba(232,238,248,.10);
  background: rgba(232,238,248,.02);
  padding:12px;
}

.mini h4{
  margin:0 0 8px;
  font-size:13px;
  color:var(--muted);
  font-weight:600;
}

.list{
  margin:0;
  padding-left:16px;
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}

/* SECTIONS */
section{
  padding:54px 0;
  border-top:1px solid rgba(232,238,248,.06);
}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

h2{
  margin:0;
  font-size: 26px;
  letter-spacing:-0.01em;
}

.sub{
  color:var(--muted);
  max-width: 70ch;
  line-height:1.6;
  font-size:14.5px;
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}

.feature{
  padding:18px;
  position:relative;
  overflow:hidden;
}

.feature:before{
  content:"";
  position:absolute;
  inset:-1px;
  background: radial-gradient(500px 160px at 25% 0%, rgba(102,224,255,.10), transparent 60%);
  pointer-events:none;
}

.feature > *{position:relative}

.icon{
  width:38px;
  height:38px;
  border-radius:14px;
  display:grid;
  place-items:center;
  border:1px solid rgba(232,238,248,.14);
  background: rgba(232,238,248,.05);
  color: var(--text);
  font-weight:900;
  margin-bottom:10px;
}

.feature h3{margin:0 0 6px; font-size:16px}
.feature p{margin:0; color:var(--muted); line-height:1.6; font-size:13.5px}

/* TIMELINE */
.timeline{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
  margin-top:14px;
}

.step{
  padding:16px;
  border:1px solid rgba(232,238,248,.10);
  background: rgba(232,238,248,.03);
  border-radius: 18px;
  position:relative;
  overflow:hidden;
}

.step b{display:block; font-size:13px}
.step span{
  display:block;
  margin-top:6px;
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}

/* VENTURES */
.ventures{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
  align-items:stretch;
}

.venture-list{padding:18px}

.pill-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:10px;
}

.pill{
  font-size:12px;
  color:var(--muted);
  border:1px solid rgba(232,238,248,.12);
  background: rgba(232,238,248,.03);
  padding:8px 10px;
  border-radius:999px;
}

.venture{
  padding:14px;
  border:1px solid rgba(232,238,248,.10);
  border-radius: 16px;
  background: rgba(232,238,248,.02);
  margin-top:12px;
}

.venture .top{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:flex-start;
}

.venture .name{font-weight:800}
.venture .stage{font-size:12px; color:var(--muted)}
.venture p{
  margin:8px 0 0;
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}

/* CONTACT */
.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:stretch;
}

form{padding:18px}

label{
  display:block;
  font-size:12px;
  color:var(--muted);
  margin:12px 0 6px;
}

input, textarea{
  width:100%;
  border-radius: 14px;
  border:1px solid rgba(232,238,248,.12);
  background: rgba(4,6,10,.55);
  color:var(--text);
  padding:12px 12px;
  outline:none;
}

input:focus, textarea:focus{border-color: rgba(102,224,255,.45)}

textarea{
  min-height:110px;
  resize:vertical;
}

.fine{
  color:var(--muted);
  font-size:12px;
  line-height:1.5;
  padding:18px;
}

footer{
  padding:28px 0 40px;
  color:rgba(232,238,248,.55);
  font-size:12px;
  border-top:1px solid rgba(232,238,248,.06);
}

.footer-row{
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

.mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono","Courier New", monospace;
}

.hidden{display:none!important}

/* RESPONSIVE */
@media (max-width: 960px){
  .hero-grid{grid-template-columns:1fr; gap:18px}
  .nav-links{display:none}
  .panel{min-height:auto}
  .grid3{grid-template-columns:1fr}
  .timeline{grid-template-columns:1fr}
  .ventures{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
}

@media (max-width: 560px){
  .kpis{grid-template-columns:1fr}
  .tile-row{grid-template-columns:1fr}
  .spark{grid-template-columns:1fr}
}