/* Product / vitrine pages — LamaTime, ScreenRaid, À propos */

.product-kicker {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 12px;
}

.hero .product-kicker {
  text-shadow: 0 0 16px var(--glow-cyan);
}

body[data-page="index"] .hero .product-kicker {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.35));
}

.hero:has(.product-mark) {
  height: auto;
  min-height: 0;
  padding: 40px 20px 32px;
}

body[data-page="index"] .hero:has(.product-mark) {
  padding: 28px 20px 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}

.product-version {
  margin: 8px 0 0;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: #9bb4cc;
}

.product-version [data-screenraid-version]:not(:empty)::before {
  content: "· ";
}

.product-mark--appicon {
  width: 96px;
  height: 96px;
  max-width: 96px;
  max-height: 96px;
  overflow: hidden;
  border-radius: 22px;
  background: #060607;
  box-shadow: 0 0 24px rgba(255, 80, 140, 0.22);
}

.product-mark--appicon img {
  width: 96px;
  height: 96px;
  max-width: 96px;
  max-height: 96px;
  object-fit: cover;
}

.product-mark--full {
  width: 200px;
  height: 200px;
  max-width: 200px;
  max-height: 200px;
  overflow: hidden;
  border-radius: 32px;
  background: transparent;
  filter: drop-shadow(0 0 18px rgba(0, 229, 255, 0.28)) drop-shadow(0 0 28px rgba(255, 46, 230, 0.16));
}

.product-mark--full img {
  width: 200px;
  height: 200px;
  max-width: 200px;
  max-height: 200px;
  object-fit: contain;
  mix-blend-mode: screen;
}

.product-mark--emblem {
  width: 220px;
  height: 220px;
  max-width: 220px;
  max-height: 220px;
  overflow: visible;
  border-radius: 50%;
  background: transparent;
  filter:
    drop-shadow(-16px 0 22px rgba(0, 229, 255, 0.55))
    drop-shadow(16px 0 22px rgba(255, 46, 230, 0.5));
}

.product-mark--emblem img {
  width: 220px;
  height: 220px;
  max-width: 220px;
  max-height: 220px;
  object-fit: contain;
  mix-blend-mode: screen;
}

.product-mark--llama {
  width: 72px;
  height: 72px;
  max-width: 72px;
  max-height: 72px;
  overflow: hidden;
  border-radius: 50%;
  background: #060810;
  box-shadow:
    0 0 0 1px rgba(0, 229, 255, 0.35),
    0 0 12px rgba(0, 229, 255, 0.16);
}

.product-mark--llama img {
  width: 72px;
  height: 72px;
  max-width: 72px;
  max-height: 72px;
  object-fit: cover;
  object-position: 50% 30%;
  transform: scale(1.38);
  transform-origin: 50% 28%;
  mix-blend-mode: screen;
}

.world-kicker {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
  text-align: left;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 36px auto 0;
  text-align: left;
}

.feature-card {
  padding: 24px 22px;
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #fff;
}

.feature-card p {
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #c5d3e4;
  max-width: none;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1000px;
  margin: 36px auto 0;
}

.pillar {
  text-align: left;
  padding: 28px 26px;
}

.pillar .world-kicker {
  margin-bottom: 12px;
}

.pillar h3 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.pillar p {
  text-align: left;
  max-width: none;
  color: #c5d3e4;
  font-size: 1rem;
}

.world-more {
  margin-top: auto;
  padding-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-cyan);
}

body[data-page="screenraid"] .hero {
  background-image:
    radial-gradient(ellipse 55% 80% at 12% 45%, rgba(134, 59, 255, 0.28), transparent 58%),
    radial-gradient(ellipse 55% 80% at 88% 50%, rgba(0, 229, 255, 0.14), transparent 58%),
    linear-gradient(180deg, #05070e 0%, #0a1020 100%);
}

body[data-page="screenraid"] .product-kicker,
body[data-page="screenraid"] .world-more {
  color: #c9a6ff;
  text-shadow: 0 0 16px rgba(134, 59, 255, 0.55);
}

@media (max-width: 860px) {
  .feature-grid,
  .pillars {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
}
