:root{
  --bg:#071019;
  --panel:#101b29;
  --panel-2:#0c1623;
  --text:#eef4fb;
  --muted:#a4b2c5;
  --line:rgba(164,178,197,.16);
  --accent:#52f1c8;
  --accent-2:#ffb547;
  --shadow:0 24px 80px rgba(0,0,0,.34);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-height:100vh;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(82,241,200,.18), transparent 28%),
    radial-gradient(circle at top right, rgba(255,181,71,.12), transparent 25%),
    linear-gradient(180deg, #061018 0%, #071019 55%, #061018 100%);
  font-family:"IBM Plex Sans", sans-serif;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:linear-gradient(135deg, rgba(255,255,255,.05), transparent 24%);
  opacity:.5;
}
a{color:inherit}
.app-shell{
  width:min(1200px, calc(100% - 2rem));
  margin:0 auto;
  padding:2rem 0 4rem;
}
.hero{
  display:grid;
  grid-template-columns:1.25fr .9fr;
  gap:1rem;
  align-items:stretch;
  padding:1rem 0 1.5rem;
}
.hero-copy,.hero-card,.panel{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
}
.hero-copy{padding:2rem}
.hero-card,.panel{padding:1.4rem}
.eyebrow,.card-kicker{
  margin:0 0 .9rem;
  font-family:"IBM Plex Mono", monospace;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:.75rem;
  color:var(--accent);
}
h1,h2,h3,h4{
  margin:0;
  font-family:"Fraunces", serif;
  letter-spacing:-.03em;
}
h1{font-size:clamp(2.8rem, 5.6vw, 5.4rem); line-height:1.02; max-width:10ch}
h2{font-size:clamp(1.9rem, 3vw, 2.8rem)}
h3{font-size:1.35rem}
h4{font-size:1.08rem}
.lede{margin:1rem 0 0; color:var(--muted); max-width:62ch; font-size:1.08rem}
.hero-actions{display:flex; flex-wrap:wrap; gap:.8rem; margin-top:1.4rem}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.9rem 1.2rem;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
}
.button.primary{
  background:linear-gradient(135deg, var(--accent), #7bf7df);
  color:#061018;
}
.button.secondary{
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
}
.metric-grid{
  margin:1.2rem 0 0;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:.8rem;
}
.metric-grid div{
  padding:.9rem;
  border-radius:18px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
}
dt{font-size:.72rem; text-transform:uppercase; letter-spacing:.16em; color:var(--muted)}
dd{margin:.4rem 0 0; font-family:"Fraunces", serif; font-size:1.45rem}
.board{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1rem;
}
.board .wide{grid-column:1 / -1}
.panel-head{margin-bottom:1rem}
.chip-grid{
  display:flex;
  flex-wrap:wrap;
  gap:.7rem;
}
.chip{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--text);
  border-radius:999px;
  padding:.8rem 1rem;
  cursor:pointer;
  font:inherit;
}
.chip.is-selected{
  background:rgba(82,241,200,.14);
  border-color:rgba(82,241,200,.45);
  color:var(--accent);
}
.engagement-copy{color:var(--muted); min-height:4.25rem}
.deliverables{
  margin:1rem 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:.7rem;
}
.deliverables li{
  padding-left:1.35rem;
  position:relative;
  color:var(--muted);
}
.deliverables li::before{
  content:"";
  width:.6rem;
  height:.6rem;
  border-radius:999px;
  position:absolute;
  left:0;
  top:.55rem;
  background:var(--accent-2);
}
.report-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:.8rem;
}
.report-grid article{
  padding:1rem;
  border-radius:20px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
}
.report-grid p{color:var(--muted)}
@keyframes floatIn{
  from{opacity:0; transform:translateY(14px)}
  to{opacity:1; transform:none}
}
.hero-copy,.hero-card,.panel{animation:floatIn .6s ease both}
.hero-card{animation-delay:.06s}
.panel:nth-of-type(2){animation-delay:.08s}
.panel:nth-of-type(3){animation-delay:.1s}
@media (max-width: 900px){
  .hero,.board,.report-grid{grid-template-columns:1fr}
}
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{animation:none !important; transition:none !important}
}

