.hero{
  max-width:920px;
  margin:0 auto 64px;
  text-align:center;
}

.eyebrow{
  color:var(--accent2);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:.78rem;
  font-weight:900;
  margin-bottom:20px;
}

.hero h1{
  font-family:var(--heading);
  font-size:clamp(3rem,7vw,6.8rem);
  line-height:.9;
  letter-spacing:-.06em;
  margin:0 0 24px;
}

.hero h1 span{
  color:var(--accent2);
}

.hero p{
  color:var(--muted);
  font-size:1.12rem;
  line-height:1.8;
  margin:auto;
  max-width:760px;
}

.portfolio-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:28px;
  overflow:hidden;
  transition:.25s ease;
}

.card:hover{
  transform:translateY(-5px);
  border-color:rgba(216,204,255,.4);
  box-shadow:0 28px 70px rgba(0,0,0,.28);
}

.preview{
  height:300px;
  background-size:100% auto;
  background-position:top left;
  background-repeat:no-repeat;
  background-color:#111;
  border-bottom:1px solid var(--line);
}

.content{
  padding:26px;
}

.tag{
  display:inline-flex;
  margin-bottom:14px;
  padding:7px 11px;
  border-radius:999px;
  background:rgba(139,109,255,.18);
  color:var(--accent2);
  font-size:.68rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
}

.card h2{
  font-family:var(--heading);
  font-size:1.55rem;
  margin:0 0 10px;
}

.card p{
  color:var(--muted);
  line-height:1.7;
  margin:0 0 22px;
}

.details{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:22px;
}

.details span{
  font-size:.72rem;
  color:var(--text);
  border:1px solid rgba(255,255,255,.13);
  background:rgba(255,255,255,.045);
  padding:7px 10px;
  border-radius:999px;
}

.buttons{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 16px;
  border-radius:999px;
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  text-decoration:none;
}

.primary{
  background:var(--accent);
  color:white;
}

.secondary{
  color:var(--text);
  border:1px solid var(--line);
}

.cta-band{
  margin-top:58px;
  padding:42px;
  border-radius:32px;
  background:
    radial-gradient(circle at top right, rgba(139,109,255,.28), transparent 42%),
    rgba(255,255,255,.07);
  border:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:center;
}

.cta-band h2{
  font-family:var(--heading);
  font-size:clamp(2rem,4vw,4rem);
  line-height:.95;
  margin:0;
}

.cta-band p{
  color:var(--muted);
  max-width:560px;
  line-height:1.7;
}

@media(max-width:1000px){
  .portfolio-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:760px){
  .cta-band{
    flex-direction:column;
    align-items:flex-start;
  }
}