:root{
  --bg:#0b0f17;
  --card: rgba(255,255,255,.06);
  --line: rgba(255,255,255,.12);
  --text:#eaf0ff;
  --muted: rgba(234,240,255,.72);
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --r: 18px;

  --brand1:#00f260;
  --brand2:#0575e6;
  --brand3:#a78bfa;
  /* Unified service icon sizing */
  --svcIconSize: 220px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:"Outfit", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background: var(--bg);
  overflow-x:hidden;
}

a{ color: inherit; }

.bg{
  position:fixed; inset:0;
  background:
    radial-gradient(900px 600px at 20% 15%, rgba(5,117,230,.25), transparent 55%),
    radial-gradient(800px 560px at 80% 25%, rgba(0,242,96,.18), transparent 55%),
    radial-gradient(700px 500px at 60% 90%, rgba(167,139,250,.16), transparent 60%),
    linear-gradient(180deg, #070a12 0%, #0b0f17 100%);
  pointer-events:none;
  z-index:-1;
}

.container{ width:min(1120px, 92%); margin:0 auto; }

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,15,23,.55);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
}
.brand__mark{
  width:36px; height:36px; display:grid; place-items:center;
  border-radius:12px;
  background: linear-gradient(135deg, var(--brand1), var(--brand2));
  font-weight:800;
  box-shadow: var(--shadow);
}
.brand__text{
  font-weight:700;
  letter-spacing:.2px;
  opacity:.95;
}

.nav{
  display:flex; align-items:center; gap:14px;
}
.nav a{
  text-decoration:none;
  color: rgba(234,240,255,.85);
  font-weight:600;
  padding:10px 10px;
  border-radius:12px;
}
.nav a:hover{ background: rgba(255,255,255,.06); }

.actions{ display:flex; align-items:center; gap:10px; }

.chip{
  display:flex; align-items:center; gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: var(--text);
  cursor:pointer;
  font-weight:700;
}
.chip__dot{
  width:10px; height:10px; border-radius:999px;
  background: linear-gradient(135deg, var(--brand1), var(--brand2));
}

.burger{
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  cursor:pointer;
  display:none;
  padding:10px;
  gap:6px;
}
.burger span{
  display:block;
  height:2px;
  background: rgba(234,240,255,.9);
  border-radius:999px;
}

.hero{ padding:56px 0 22px; }
.hero__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:stretch;
}
.kicker{
  color: rgba(234,240,255,.78);
  font-weight:700;
  letter-spacing:.2px;
  margin:0 0 10px;
}
.title{
  margin:0 0 12px;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height:1.05;
  letter-spacing:-.6px;
}
.subtitle{
  margin:0 0 18px;
  color: var(--muted);
  font-size: 18px;
  line-height:1.5;
}

.grad{ background: linear-gradient(135deg, var(--brand2), var(--brand1)); -webkit-background-clip:text; background-clip:text; color:transparent; }
.grad2{ background: linear-gradient(135deg, #ffd166, #ef476f); -webkit-background-clip:text; background-clip:text; color:transparent; }
.grad3{ background: linear-gradient(135deg, var(--brand3), var(--brand2)); -webkit-background-clip:text; background-clip:text; color:transparent; }

.hero__cta{ display:flex; gap:12px; flex-wrap:wrap; margin: 6px 0 18px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  text-decoration:none;
  border:1px solid var(--line);
  font-weight:800;
  letter-spacing:.2px;
}
.btn--primary{
  background: linear-gradient(135deg, var(--brand1), var(--brand2));
  border-color: transparent;
  color:#081018;
  box-shadow: var(--shadow);
}
.btn--soft{
  background: rgba(255,255,255,.06);
}
.btn--ghost{
  background: transparent;
}
.w100{ width:100%; }

.badges{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
}
.badge{
  display:flex; gap:10px;
  padding:12px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
}
.badge__icon{ font-size:18px; }
.badge__t{ font-weight:800; }
.badge__s{ color: var(--muted); font-size: 13px; margin-top:2px; }

.glass{
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.card{ padding:18px; height:100%; }
.card__top{ display:flex; align-items:center; justify-content:space-between; gap:12px; }
.pill{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.18);
  font-weight:800;
  color: rgba(234,240,255,.92);
}
.spark{
  width:44px; height:44px; border-radius:16px;
  background: linear-gradient(135deg, var(--brand2), var(--brand3));
  opacity:.9;
}
.list{ margin:14px 0; display:grid; gap:12px; }
.item{
  display:flex; gap:12px;
  padding:12px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.14);
}
.item__t{ font-weight:900; }
.item__s{ color: var(--muted); font-size: 14px; margin-top:3px; line-height:1.35; }
.dot{
  width:12px; height:12px; border-radius:999px; margin-top:4px;
}
.dot--a{ background: linear-gradient(135deg, var(--brand1), var(--brand2)); }
.dot--b{ background: linear-gradient(135deg, #ffd166, #ef476f); }
.dot--d{ background: linear-gradient(135deg, var(--brand3), var(--brand2)); }
.dot--e{ background: linear-gradient(135deg, #22c55e, #06b6d4); }

.card__bottom{ margin-top:auto; }
.tiny{ margin:10px 0 0; color: rgba(234,240,255,.65); font-size: 12px; text-align:center; }

.section{ padding: 34px 0; }
.section__head{ display:flex; align-items:flex-end; justify-content:space-between; gap:14px; flex-wrap:wrap; margin-bottom:14px; }
.section__head h2{ margin:0; font-size: 26px; }
.section__head p{ margin:0; color: var(--muted); }

.grid3{ display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:12px; }
.grid2{ display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:12px; }

.svc, .work, .about__card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: 20px;
  padding:16px;
}
.svc__icon{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height: var(--svcIconSize);
  margin-bottom: 8px;
}
.svc h3{ margin:10px 0 6px; }
.svc p{ margin:0; color: var(--muted); }

.work__cover{
  height:140px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(5,117,230,.35), rgba(0,242,96,.25));
  border: 1px solid rgba(255,255,255,.10);
}
.work__cover--2{
  background: linear-gradient(135deg, rgba(167,139,250,.30), rgba(5,117,230,.25));
}
.work__body h3{ margin:12px 0 6px; }
.work__body p{ margin:0; color: var(--muted); }

.about{ display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:12px; }

.ctaCard{
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  border-radius: 22px;
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.ctaBtns{ display:flex; gap:10px; flex-wrap:wrap; }

.footnote{
  margin: 14px 0 0;
  color: rgba(234,240,255,.65);
  font-size: 13px;
  text-align:center;
}

@media (max-width: 920px){
  .hero__grid{ grid-template-columns: 1fr; }
  .badges{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .about{ grid-template-columns: 1fr; }
  .nav{
    position: fixed;
    top: 64px;
    right: 4%;
    left: 4%;
    display:none;
    flex-direction:column;
    padding:12px;
    border-radius: 18px;
    background: rgba(11,15,23,.92);
    border: 1px solid var(--line);
    backdrop-filter: blur(10px);
  }
  .nav.open{ display:flex; }
  .burger{ display:flex; flex-direction:column; justify-content:center; }
}

/* SVG Icons Styling */
.badge__icon svg{
  width: 1em;
  height: 1em;
  color: var(--text);
}

.svc__icon svg{
  color: var(--brand2);
  width: clamp(140px, 28vw, var(--svcIconSize));
  height: auto;
}

@media (max-width: 920px){
  :root{ --svcIconSize: 160px; }
}
