:root{
  --bg0:#000;
  --ink:#f2f2f2;
  --muted:#b8b8b8;
  --soft:#9aa0a6;
  --line:rgba(255,255,255,.14);
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.04);

  /* Audacious accent — louder but still premium */
  --accent:#ffcc33;   /* brighter gold */
  --accent2:#ff2d55;  /* hot pink-red */
  --accent3:#00d4ff;  /* electric cyan */
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Inter,Roboto,Helvetica,Arial,sans-serif;
  color:var(--ink);

  /* More pop: stronger neon glows + controlled depth */
  background:
    radial-gradient(1000px 620px at 50% 8%, rgba(255,255,255,.12), transparent 62%),
    radial-gradient(900px 560px at 24% 18%, rgba(255,45,85,.20), transparent 60%),
    radial-gradient(900px 560px at 78% 16%, rgba(0,212,255,.18), transparent 60%),
    radial-gradient(900px 620px at 55% 26%, rgba(255,204,51,.18), transparent 62%),
    linear-gradient(180deg, #000 0%, #04060b 45%, #000 100%);
}

.wrap{max-width:1120px;margin:0 auto;padding:26px 18px 60px}
a{color:inherit}
.small{font-size:12px;color:var(--soft)}
.muted{color:var(--muted)}
.hr{height:1px;background:var(--line);margin:16px 0}

.brandTop{
  letter-spacing:5px;
  font-weight:1000;
  color:#e6e6e6;
  text-transform:uppercase;
  font-size:14px;
}

.hero{text-align:center;padding:34px 0 10px}
.heroTitle{
  margin:14px 0 0;
  font-size:46px;
  letter-spacing:.4px;
  font-weight:1000;
  text-shadow: 0 0 18px rgba(0,212,255,.08);
}
.accent{
  color:var(--accent);
  text-shadow:
    0 0 20px rgba(255,204,51,.18),
    0 0 34px rgba(255,45,85,.10);
}
.heroSub{
  margin:14px auto 0;
  max-width:920px;
  color:var(--muted);
  line-height:1.55;
}
.micro{margin-top:12px;color:var(--soft)}

.link{
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.18);
  padding-bottom:1px;
}
.link:hover{border-bottom-color:rgba(255,255,255,.42)}

.ctaRow{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:14px;
}

.card{
  background:linear-gradient(180deg, var(--panel) 0%, rgba(255,255,255,.035) 100%);
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  padding:18px 18px 16px;
  box-shadow:
    0 10px 34px rgba(0,0,0,.34),
    0 0 0 1px rgba(255,255,255,.02) inset;
  backdrop-filter: blur(6px);
  margin-top:18px;
}
.card h2{
  margin:0 0 10px;
  font-size:16px;
  letter-spacing:1px;
  font-weight:1000;
  text-transform:uppercase;
}

/* Punchier underline: gold -> pink-red gradient */
.underline{
  height:4px;width:78px;border-radius:99px;
  margin:8px 0 12px;
  background:linear-gradient(90deg, var(--accent) 0%, var(--accent2) 60%, var(--accent3) 100%);
  box-shadow: 0 0 18px rgba(255,45,85,.12);
}

.p{line-height:1.60;color:#dfdfdf;margin:0 0 10px}
.kicker{font-weight:1000;letter-spacing:.3px;color:#fff;margin:10px 0 8px}

.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
@media (max-width:900px){
  .wrap{padding:22px 14px 54px}
  .heroTitle{font-size:32px}
  .grid{grid-template-columns:1fr}
}

.bul{margin:10px 0 0 0;padding-left:18px;line-height:1.60;color:#e6e6e6}
.bul li{margin:4px 0}

/* Buttons: more pop on primary */
.btn{
  display:inline-block;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(0,0,0,.35);
  text-decoration:none;
  font-weight:1000;
  letter-spacing:.3px;
  transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease;
}
.btn:hover{transform:translateY(-1px);border-color:rgba(255,255,255,.36)}
.btn.primary{
  background:linear-gradient(90deg, rgba(255,204,51,.20), rgba(255,45,85,.14));
  border-color:rgba(255,204,51,.55);
  box-shadow: 0 0 22px rgba(255,45,85,.10);
}
.btn.primary:hover{
  border-color:rgba(255,204,51,.80);
  box-shadow: 0 0 30px rgba(0,212,255,.10), 0 0 22px rgba(255,45,85,.14);
}

.pillRow{display:flex;flex-wrap:wrap;gap:10px;margin-top:10px}
.pill{
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.22);
  padding:8px 10px;
  border-radius:999px;
  font-size:13px;
  color:#dcdcdc;
}
.pill strong{color:#fff}

.portfolio{border-color:rgba(255,204,51,.28)}
.portfolioTop{
  display:flex;gap:14px;align-items:flex-start;
  justify-content:space-between;flex-wrap:wrap;
}
.badge{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.25);
  color:var(--soft);
  font-size:12px;
  white-space:nowrap;
}

.list{margin-top:10px;border:1px solid rgba(255,255,255,.12);border-radius:14px;background:rgba(0,0,0,.18)}
.listItem{
  display:flex;justify-content:space-between;gap:14px;flex-wrap:wrap;
  padding:12px 14px;border-top:1px solid rgba(255,255,255,.10);
}
.listItem:first-child{border-top:none}
.label{font-weight:1000;letter-spacing:.3px}
.value{color:#dcdcdc}

.footer{
  margin-top:22px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.14);
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:var(--soft);
  font-size:12px;
}