/* Base */
:root{
  --bg:#0d1117;
  --card:#121826;
  --text:#d0d7e2;
  --muted:#9aa3b2;
  --outline:#1f2635;
  --brand:#2563eb;
  --electric:#1f9bff;      /* electric blue for Biz 4 Biz badge */
  --green:#a8f28a;         /* bright green for Peak badge */
  --orange:#ff9e3d;        /* vibrant orange for Fintech */
  --red:#ff5b6e;           /* punchy red for Media */
  --purple:#9c6bff;        /* vivid purple for OMG badge */
  --shadow:0 10px 30px rgba(0,0,0,.35);
  --radius:22px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--text);font:16px/1.55 system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;}
img{max-width:100%;height:auto;display:block}

/* Hero */
.hero img{width:100%;height:auto;display:block;}

/* Layout */
.container{max-width:960px;margin:0 auto;padding:32px 18px;}
h2{font-size:2.1rem;margin:0 0 16px}
h3{font-size:1.7rem;margin:0 0 8px}
p{margin:0 0 14px;color:var(--text)}

/* Companies */
.companies{padding-top:8px}
.card{
  position:relative;
  background:linear-gradient(180deg, rgba(18,24,38,.85), rgba(18,24,38,.75));
  border:1px solid var(--outline);
  box-shadow:var(--shadow);
  border-radius:20px;
  padding:22px 18px 18px;
  margin:22px 0;
}
.badge{
  position:absolute;
  top:-14px; right:18px;
  padding:8px 16px;
  border-radius:999px;
  font-weight:700;
  font-size:.9rem;
  color:#0b1220;
  box-shadow:0 6px 18px rgba(0,0,0,.25);
}
.badge-electric{background:var(--electric);}
.badge-green{background:var(--green);}
.badge-orange{background:var(--orange);}
.badge-red{background:var(--red);}
.badge-purple{background:var(--purple);}

/* Plain link line (no boxes) */
.linkline a{
  color:var(--brand);
  text-decoration:underline;
  font-weight:700;
}

/* Contact */
.contact-form{
  display:grid; gap:10px;
  background:transparent;
}
.contact-form label{color:var(--muted);font-weight:600}
.contact-form input,
.contact-form textarea{
  background:#0f1522;
  border:1px solid var(--outline);
  border-radius:12px;
  padding:12px 14px;
  color:var(--text);
}
.contact-form button{
  background:var(--brand);
  border:0; color:#fff; font-weight:800;
  padding:12px 18px; border-radius:12px;
  box-shadow:var(--shadow);
}

/* Michelle bubble (no logic) */
.michelle{
  position:fixed; right:16px; bottom:16px;
  display:flex; align-items:center; gap:12px;
  background:#12233b; color:#e6edf7;
  text-decoration:none;
  padding:14px 16px; border-radius:18px;
  box-shadow:var(--shadow); z-index:999;
}
.michelle img{width:44px;height:44px;border-radius:999px}
.michelle-text{display:flex; flex-direction:column; font-size:.95rem}
.michelle-text strong{line-height:1}
.michelle-text span{color:#cbd5e1;line-height:1.1}

/* Mobile tweaks */
@media (min-width:740px){
  .badge{top:-16px}
  .container{padding:40px 20px}
  h2{font-size:2.4rem}
  h3{font-size:1.9rem}
}
