/* Product pages — extends styles.css. Per-page accent overrides --verdigris. */

[data-product="leviathan"] { --verdigris: #3f8fd0; }
[data-product="blackwall"] { --verdigris: #7b6bd6; }
[data-product="fury"]      { --verdigris: #d2603f; }

.hero--product { padding-bottom: 5rem; }
.hero--product .hero__content { max-width: 1000px; }
.hero--product h1 { max-width: 16ch; font-size: clamp(3rem, 7.5vw, 7rem); }

.product-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin: 0 0 1.8rem;
  padding: .55rem 1.1rem;
  border: 1px solid var(--line);
  color: #cfc8bb;
  font: 400 .6rem var(--mono);
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: 0;
  animation: rise 1.4s .2s var(--ease) forwards;
}

.product-eyebrow i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--verdigris);
  box-shadow: 0 0 10px var(--verdigris);
}

.facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem 3.2rem;
  margin: 3.4rem 0 0;
  padding: 1.8rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero__facts { opacity: 0; animation: rise 1.5s .95s var(--ease) forwards; }

.facts li { display: grid; gap: .5rem; text-align: center; }
.facts b { color: var(--bone-bright); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 300; line-height: 1; }
.facts span { color: #7d786f; font: 300 .55rem var(--mono); letter-spacing: .17em; text-transform: uppercase; }

/* Feature cards reuse .service-card; product pages want many, shorter ones. */
.service-card--compact { min-height: 0; }
.service-card--compact .service-card__top { margin-bottom: clamp(2rem, 4vw, 3rem); }
.service-card--compact h3 { max-width: 18ch; font-size: clamp(1.6rem, 2.4vw, 2.2rem); }
.service-card--compact ul { margin: 1.5rem 0 2.5rem; }

.callout {
  display: grid;
  gap: 1rem;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(1.6rem, 4vw, 2.8rem);
  border: 1px solid var(--line);
  border-left: 2px solid var(--verdigris);
  background: rgba(13, 13, 16, .6);
}

.callout h3 { margin: 0; font-size: 1.6rem; font-weight: 300; }
.callout p { margin: 0; max-width: 78ch; color: var(--muted); font-size: 1rem; }

.matrix { width: 100%; margin-top: 2.5rem; border-collapse: collapse; }
.matrix th, .matrix td { padding: 1rem 1.2rem 1rem 0; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.matrix th { color: #7d786f; font: 400 .56rem var(--mono); font-weight: 400; letter-spacing: .17em; text-transform: uppercase; }
.matrix td:first-child { width: 26%; color: var(--bone-bright); font-size: 1.05rem; }
.matrix td:nth-child(2) { width: 16%; }
.matrix td:last-child { color: var(--muted); font-size: .98rem; }
.matrix b { display: inline-block; color: var(--gold-pale); font: 400 .58rem var(--mono); font-weight: 400; letter-spacing: .13em; text-transform: uppercase; }
.matrix b.is-partial { color: var(--verdigris); }
.matrix b.is-heuristic { color: #8d8880; }

.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0;
  color: var(--bone-bright);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-style: italic;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font: 300 1.4rem var(--mono); font-style: normal; }
.faq details[open] summary::after { content: "–"; }
.faq p { margin: 0 0 1.5rem; max-width: 76ch; color: var(--muted); font-size: 1rem; }

.also { border-top: 1px solid var(--line); }
.also .section-heading { margin-bottom: 2.5rem; }

@media (max-width: 620px) {
  .facts { gap: 1.4rem 2rem; justify-content: flex-start; }
  .facts li { text-align: left; }
  .matrix, .matrix tbody, .matrix tr, .matrix td { display: block; width: auto; }
  .matrix thead { display: none; }
  .matrix tr { padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
  .matrix td { padding: 0 0 .5rem; border: 0; }
  .matrix td:first-child, .matrix td:nth-child(2) { width: auto; }
}

code { padding: .1em .35em; border: 1px solid var(--line); color: var(--gold-pale); font: 400 .82em var(--mono); font-style: normal; }
