
:root{
  --bg: #0B0F14;
  --bg2:#0A1220;
  --surface: rgba(16, 24, 38, .78);
  --surface2: rgba(15, 23, 36, .92);
  --line: rgba(231, 236, 245, .12);
  --primary: #2F80ED;
  --teal: #00B3A4;
  --gold: #F2C94C;
  --red: #EB5757;
  --text: #D7DCE6;
  --muted: rgba(215,220,230,.72);
  --muted2: rgba(215,220,230,.55);
  --radius: 22px;
  --shadow: 0 18px 60px rgba(0,0,0,.40);
  --shadow2: 0 10px 28px rgba(0,0,0,.28);
  --max: 1180px;
}
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 20% 8%, rgba(47,128,237,.22), transparent 60%),
    radial-gradient(900px 520px at 80% 0%, rgba(0,179,164,.18), transparent 55%),
    radial-gradient(900px 520px at 55% 92%, rgba(242,201,76,.12), transparent 62%),
    radial-gradient(820px 520px at 30% 78%, rgba(235,87,87,.10), transparent 62%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  line-height:1.55;
}
a{ color: inherit; }
img{ max-width:100%; display:block; }
.container{ width: min(var(--max), calc(100% - 44px)); margin: 0 auto; }
.skip-link{ position:absolute; left:-999px; top:10px; padding:10px 12px; border-radius:12px; background:#0f1724; border:1px solid var(--line); color:var(--text); z-index:999; }
.skip-link:focus{ left:12px; }
.header{ position:sticky; top:0; z-index:50; backdrop-filter: blur(14px); background: rgba(11, 15, 20, .58); border-bottom: 1px solid var(--line); }
.nav{ display:flex; align-items:center; justify-content:space-between; gap:16px; padding: 14px 0; }
.brand{ display:flex; align-items:center; gap:12px; text-decoration:none; }
.brand img{ width: 170px; height: auto; }
.nav__menu{ display:flex; align-items:center; gap: 18px; }
.nav__menu a{ text-decoration:none; font-weight:700; font-size:14px; color: var(--muted); padding: 10px 10px; border-radius: 999px; }
.nav__menu a:hover{ color: var(--text); background: rgba(255,255,255,.06); }
.nav__toggle{ display:none; border:1px solid var(--line); background: rgba(255,255,255,.04); border-radius: 14px; padding:10px 12px; }
.nav__toggle span{ display:block; width:22px; height:2px; background: var(--text); margin:5px 0; border-radius:999px; opacity:.85; }
.btn{ display:inline-flex; align-items:center; justify-content:center; gap:10px; padding: 12px 16px; border-radius: 999px; border:1px solid rgba(255,255,255,.10); background: linear-gradient(135deg, rgba(47,128,237,.95), rgba(0,179,164,.95)); color: #0B0F14; font-weight: 900; text-decoration:none; box-shadow: var(--shadow2); transition: transform .18s ease, filter .18s ease, box-shadow .18s ease; }
.btn:hover{ transform: translateY(-1px); filter: saturate(1.05); box-shadow: var(--shadow); }
.btn--ghost{ background: rgba(255,255,255,.06); color: var(--text); border: 1px solid var(--line); }
.btn--sm{ padding: 10px 14px; font-size: 14px; }
.btn--block{ width:100%; }
.hero{ position:relative; padding: 68px 0 34px; }
.hero__grid{ display:grid; grid-template-columns: 1.25fr .75fr; gap: 28px; align-items:start; }
.kicker{ display:inline-flex; align-items:center; gap:10px; padding: 8px 12px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.04); color: var(--muted); font-weight: 800; font-size: 13px; }
.kicker i{ width: 10px; height: 10px; border-radius: 99px; background: linear-gradient(135deg, var(--gold), var(--red)); display:inline-block; }
h1{ margin: 14px 0 10px; font-size: clamp(36px, 4.2vw, 60px); line-height: 1.02; letter-spacing: -0.02em; }
.grad{ background: linear-gradient(135deg, var(--text), rgba(215,220,230,.55)); -webkit-background-clip:text; background-clip:text; color: transparent; }
.lead{ margin: 0 0 18px; color: var(--muted); font-size: 16px; max-width: 70ch; }
.hero__cta{ display:flex; gap:12px; flex-wrap:wrap; margin-top: 16px; }
.stats{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.stat{ padding: 14px 14px; border-radius: 18px; border: 1px solid var(--line); background: rgba(255,255,255,.04); }
.stat strong{ font-size: 18px; display:block; }
.stat span{ color: var(--muted2); font-weight: 700; font-size: 12px; }
.heroCard{ border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); box-shadow: var(--shadow2); overflow:hidden; }
.heroCard__inner{ padding: 18px 18px 16px; }
.heroCard h2{ margin: 0 0 10px; font-size: 16px; letter-spacing: -.01em; color: var(--text); }
.bullets{ margin: 0; padding: 0; list-style:none; display:grid; gap: 10px; }
.bullets li{ padding-left: 26px; position: relative; color: var(--muted); font-weight: 650; }
.bullets li::before{ content:""; position:absolute; left:0; top: 7px; width: 12px; height: 12px; border-radius: 4px; background: linear-gradient(135deg, var(--teal), var(--primary)); }
.heroCard__bar{ height: 10px; background: linear-gradient(90deg, rgba(47,128,237,.9), rgba(0,179,164,.9), rgba(242,201,76,.9)); }
.section{ padding: 74px 0; }
.section--tight{ padding: 54px 0; }
.section__head{ display:flex; align-items:flex-end; justify-content:space-between; gap: 18px; margin-bottom: 22px; }
.section__head h2{ margin:0; font-size: 30px; letter-spacing: -0.02em; }
.section__head p{ margin:0; color: var(--muted); max-width: 72ch; font-weight: 600; }
.grid3{ display:grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.card{ grid-column: span 4; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255,255,255,.04); box-shadow: var(--shadow2); padding: 18px; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.card:hover{ transform: translateY(-3px); background: rgba(255,255,255,.06); box-shadow: var(--shadow); }
.card__icon{ width: 44px; height: 44px; border-radius: 16px; margin-bottom: 12px; border: 1px solid rgba(255,255,255,.10); background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.22), rgba(255,255,255,.02)); }
.card h3{ margin: 0 0 6px; font-size: 16px; letter-spacing: -.01em; }
.card p{ margin: 0 0 10px; color: var(--muted); font-weight: 600; }
.tags{ display:flex; flex-wrap:wrap; gap: 8px; margin-top: 8px; }
.tag{ font-size: 12px; font-weight: 800; color: rgba(11,15,20,.95); background: rgba(242,201,76,.95); border-radius: 999px; padding: 6px 10px; }
.tag--teal{ background: rgba(0,179,164,.92); }
.tag--blue{ background: rgba(47,128,237,.92); }
.tag--red{ background: rgba(235,87,87,.92); }
.tag--gold{ background: rgba(242,201,76,.92); }
.band{ border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.03); }
.bandGrid{ display:grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items:start; }
.bandBox{ border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.04); box-shadow: var(--shadow2); padding: 18px; }
.bandBox h3{ margin:0 0 8px; }
.bandBox p{ margin:0; color: var(--muted); font-weight: 600; }
.steps{ display:grid; gap: 12px; margin-top: 10px; }
.step{ display:flex; gap: 12px; align-items:flex-start; }
.stepNum{ width: 34px; height: 34px; border-radius: 14px; display:grid; place-items:center; color: #0B0F14; font-weight: 900; background: linear-gradient(135deg, var(--primary), var(--teal)); flex: 0 0 auto; }
.step b{ display:block; }
.step span{ color: var(--muted); font-weight: 600; }
.clients{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.clientTile{ border-radius: 18px; border: 1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.92); padding: 16px; box-shadow: var(--shadow2); display:flex; align-items:center; justify-content:center; min-height: 110px; }
.clientTile img{ max-height: 72px; width: auto; }
.list3{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.post{ border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255,255,255,.04); box-shadow: var(--shadow2); overflow:hidden; }
.post__top{ height: 140px; background: radial-gradient(420px 220px at 20% 20%, rgba(47,128,237,.25), transparent 60%), radial-gradient(420px 220px at 80% 0%, rgba(0,179,164,.18), transparent 60%), radial-gradient(420px 220px at 55% 90%, rgba(242,201,76,.14), transparent 60%), linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)); }
.post__body{ padding: 16px; }
.post__meta{ display:flex; gap:10px; flex-wrap:wrap; color: var(--muted2); font-weight: 800; font-size: 12px; }
.post__body h3{ margin: 8px 0 8px; font-size: 16px; }
.post__body p{ margin: 0; color: var(--muted); font-weight: 600; }
.post__link{ display:inline-flex; margin-top: 12px; text-decoration:none; font-weight: 900; color: var(--text); opacity: .92; }
.post__link:hover{ opacity: 1; text-decoration: underline; }
.contact{ display:grid; grid-template-columns: 1.05fr .95fr; gap: 18px; align-items:start; }
.contactBox{ border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255,255,255,.04); box-shadow: var(--shadow2); padding: 18px; }
.contactInfo{ display:flex; gap: 10px; flex-wrap:wrap; margin-top: 12px; }
.pillLink{ display:inline-flex; gap:10px; align-items:center; padding: 10px 12px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.04); text-decoration:none; font-weight: 800; color: var(--muted); }
.pillLink:hover{ color: var(--text); background: rgba(255,255,255,.06); }
.form label{ display:grid; gap: 8px; font-weight: 800; font-size: 13px; margin-bottom: 12px; color: var(--muted); }
input, textarea{ width:100%; padding: 12px 12px; border-radius: 16px; border: 1px solid rgba(255,255,255,.12); background: rgba(11, 15, 20, .55); color: var(--text); outline:none; font: inherit; }
input:focus, textarea:focus{ border-color: rgba(47,128,237,.55); box-shadow: 0 0 0 4px rgba(47,128,237,.18); }
.fineprint{ color: var(--muted2); font-size: 12px; margin: 12px 0 0; font-weight: 650; }
.footer{ padding: 34px 0; border-top: 1px solid var(--line); background: rgba(0,0,0,.18); }
.footerGrid{ display:grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; align-items:start; }
.footer a{ color: var(--muted); text-decoration:none; font-weight: 750; }
.footer a:hover{ color: var(--text); text-decoration: underline; }
.small{ color: var(--muted2); font-size: 12px; font-weight: 650; }
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .card{ grid-column: span 6; }
  .bandGrid{ grid-template-columns: 1fr; }
  .clients{ grid-template-columns: 1fr 1fr; }
  .list3{ grid-template-columns: 1fr 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .footerGrid{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  .nav__toggle{ display:inline-block; }
  .nav__menu{ position:absolute; top:64px; left:22px; right:22px; display:none; flex-direction: column; align-items: stretch; gap: 8px; padding: 12px; border-radius: 18px; border: 1px solid var(--line); background: rgba(11,15,20,.88); box-shadow: var(--shadow); }
  .nav__menu.is-open{ display:flex; }
  .card{ grid-column: span 12; }
  .stats{ grid-template-columns: 1fr; }
  .clients{ grid-template-columns: 1fr; }
  .list3{ grid-template-columns: 1fr; }
}
