@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;600;700;800&display=swap");

:root{
  /* iCobus CI colours */
  --brand-900:#1A1A1A;   /* charcoal */
  --brand-700:#2a2a2a;   /* supporting dark */
  --brand-600:#3a3a3a;
  --text-900:#eaf0f6;    /* light text for dark surfaces */
  --text-700:#c7d2de;
  --muted:#9fb0c0;

  --accent-500:#04F0F5;  /* cyan */
  --accent-400:#00FFA5;  /* mint */
  --accent-600:#00d7dc;  /* deeper cyan (derived) */

  --pink-500:#FF3ECE;    /* magenta */
  --purple-500:#A25EB5;  /* purple */
  --grey-500:#757575;

  --bg:#0e0f12;          /* near-black page background (brand-consistent) */
  --surface:#13151a;     /* section surface */
  --surface-2:#0b0c10;   /* deeper surface */
  --border:rgba(255,255,255,.10);

  --radius:18px;
  --shadow: 0 14px 40px rgba(0, 0, 0, .45);
  --shadow2: 0 8px 22px rgba(0, 0, 0, .35);

  --max: 1160px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: "Mulish", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text-900);
  background:var(--bg);
  line-height:1.5;
}
a{color:inherit;text-decoration:none}
a:hover{opacity:.92}
img{max-width:100%;height:auto}

.container{max-width:var(--max); margin:0 auto; padding:0 20px;}
.section{padding:72px 0}
.section.sm{padding:48px 0}

.topbar{
  background:linear-gradient(90deg,var(--brand-900),var(--brand-700));
  color:#fff;
  font-size:14px;
}
.topbar .row{
  display:flex; gap:14px; align-items:center; justify-content:space-between;
  padding:10px 0;
}
.pills{display:flex;gap:10px;flex-wrap:wrap}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px; border:1px solid rgba(255,255,255,.18);
  border-radius:999px; color:#fff; white-space:nowrap;
}
.pill small{opacity:.9}

.nav{
  position:sticky; top:0; z-index:50;
  background:rgba(14,15,18,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.nav .row{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px; font-weight:800; letter-spacing:.2px;
}
.brand img{
  height:38px;
  width:auto;
}
.logo{
  width:38px; height:38px; border-radius:12px;
  background: radial-gradient(circle at 30% 30%, var(--accent-400), var(--accent-500));
  box-shadow: var(--shadow2);
}
.menu{display:flex; gap:18px; align-items:center}
.menu a{font-weight:600; color:var(--text-700)}
.menu a.active{color:var(--text-900)}
.menu .cta{margin-left:8px}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px; border-radius:14px;
  border:1px solid var(--border);
  font-weight:700;
  background:rgba(255,255,255,.04);
  color:var(--text-900);
  box-shadow: var(--shadow2);
}
.btn.primary{
  border-color:transparent;
  background:linear-gradient(135deg,var(--accent-500),var(--accent-400));
  color:#0e0f12;
}
.btn.ghost{
  background:transparent;
  box-shadow:none;
}
.btn.small{padding:10px 12px; border-radius:12px; font-weight:700}

.hero{
  background:
    radial-gradient(900px 380px at 25% 20%, rgba(4,240,245,.12), transparent 60%),
    radial-gradient(900px 380px at 85% 40%, rgba(0,255,165,.08), transparent 60%),
    linear-gradient(180deg, var(--surface), var(--bg));
  border-bottom:1px solid var(--border);
}
.hero .grid{
  display:grid; grid-template-columns: 1.15fr .85fr;
  gap:34px; align-items:center;
  padding:56px 0 26px;
}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(4,240,245,.10);
  border:1px solid rgba(4,240,245,.20);
  color:var(--accent-500);
  font-weight:800;
  font-size:13px;
}
.h1{
  font-size:46px; line-height:1.05; margin:14px 0 12px;
  letter-spacing:-.6px;
}
.sub{
  font-size:18px; color:var(--muted);
  max-width:54ch;
}
.heroActions{display:flex; gap:12px; flex-wrap:wrap; margin-top:20px}

.card{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow: var(--shadow2);
}
.card.pad{padding:18px}
.card.padLg{padding:22px}
.card h3{margin:0 0 8px}
.card p{margin:0; color:var(--muted)}
.card .meta{margin-top:10px; color:var(--accent-500); font-weight:700; font-size:14px}

.stack{display:grid; gap:12px}
.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
.grid2{display:grid; grid-template-columns:repeat(2,1fr); gap:14px}
.grid4{display:grid; grid-template-columns:repeat(4,1fr); gap:14px}

.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  font-weight:800;
  color:var(--text-700);
}

.h2{font-size:34px; line-height:1.15; margin:0 0 12px}
.lede{color:var(--muted); margin:0; max-width:70ch}

.split{
  display:grid; grid-template-columns: .95fr 1.05fr; gap:18px;
  align-items:start;
}

.list{
  display:grid; gap:10px; margin-top:14px;
}
.li{
  display:flex; gap:10px; align-items:flex-start;
  padding:10px 12px; border:1px solid var(--border);
  border-radius:14px; background:rgba(255,255,255,.02);
}
.dot{
  width:10px; height:10px; border-radius:999px;
  background:linear-gradient(135deg,var(--accent-500),var(--accent-400));
  margin-top:6px;
  flex-shrink:0;
}

.footer{
  background:linear-gradient(180deg, var(--bg), var(--surface));
  border-top:1px solid var(--border);
  padding:34px 0;
}
.footer .cols{
  display:grid; grid-template-columns: 1.2fr .8fr .8fr;
  gap:14px;
}
.footer a{color:var(--text-700); font-weight:650}
.small{font-size:14px; color:var(--muted)}
hr.sep{border:none;border-top:1px solid var(--border); margin:18px 0}

.form{
  display:grid; gap:12px; margin-top:10px;
}
.input, textarea, select{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  font: inherit;
  outline:none;
  background:rgba(255,255,255,.04);
  color:var(--text-900);
}
textarea{min-height:140px; resize:vertical}
.input:focus, textarea:focus, select:focus{
  border-color: rgba(4,240,245,.55);
  box-shadow: 0 0 0 4px rgba(4,240,245,.14);
}
select option{
  background:var(--brand-900);
  color:var(--text-900);
}

.breadcrumbs{font-size:14px; color:var(--muted)}
.breadcrumbs a{color:var(--text-700); font-weight:700}

@media (max-width: 980px){
  .hero .grid{grid-template-columns: 1fr; padding:42px 0 20px}
  .h1{font-size:40px}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .grid4{grid-template-columns:1fr 1fr}
  .split{grid-template-columns:1fr}
  .menu{display:none}
}
@media (max-width: 520px){
  .h1{font-size:34px}
  .grid4{grid-template-columns:1fr}
}
