/* ── Portfolio / Products page ── */

.nav-active { color: var(--text) !important; }
.nav-active::after { transform: scaleX(1) !important; }

/* Hero */
.pf-hero { padding: 5rem 0 3rem; }
.pf-hero__inner { max-width: 620px; }
.pf-hero h1 { margin: .75rem 0 1rem; }
.pf-hero p  { font-size: 1.05rem; }

/* Product layout */
.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.product__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.product__icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--blue-l);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-top: .25rem;
}
.product__icon svg { width: 24px; height: 24px; }

.product__name {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--text);
}

.product__tagline {
  font-size: 1.05rem;
  color: var(--blue);
  font-style: italic;
  margin-bottom: 1rem;
  padding: .75rem 1rem;
  border-left: 3px solid var(--blue);
  background: var(--blue-l);
  border-radius: 0 8px 8px 0;
}

.product__info > p { font-size: .95rem; margin-bottom: 1.5rem; }
.product__info strong { color: var(--text); }

/* Features list */
.product__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.product__features li {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
}

.product__features svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--blue);
  margin-top: .15rem;
}

.product__features div {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.product__features strong {
  font-size: .92rem;
  font-weight: 600;
  color: var(--text);
}

.product__features span {
  font-size: .85rem;
  color: var(--mid);
  line-height: 1.5;
}

.product__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Screenshot */
.product__screenshot { position: sticky; top: 88px; }

.product__screenshot-frame {
  background: #080808;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}

.product__screenshot-bar {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .65rem 1rem;
  background: #111;
  border-bottom: 1px solid var(--border);
}
.product__screenshot-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.product__screenshot-bar span:nth-child(1) { background: #ef4444; }
.product__screenshot-bar span:nth-child(2) { background: #f59e0b; }
.product__screenshot-bar span:nth-child(3) { background: #22c55e; }

.product__screenshot-url {
  font-size: .72rem;
  color: #475569;
  font-family: 'SF Mono', monospace;
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  margin-left: .5rem;
}

.product__screenshot-frame img {
  display: block;
  width: 100%;
  height: auto;
}

/* More coming */
.pf-more__inner {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}
.pf-more h2 { margin-bottom: .75rem; }
.pf-more p  { font-size: 1rem; }
.pf-more a  { color: var(--blue); }
.pf-more a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 900px) {
  .product { grid-template-columns: 1fr; gap: 3rem; }
  .product__screenshot { position: static; }
}
@media (max-width: 600px) {
  .nav__links {
    display: none; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: #000; border-bottom: 1px solid var(--border);
    padding: 1.5rem; gap: 1rem;
  }
  .nav__links.open { display: flex; }
  .nav__toggle { display: block; }
}
