/* ============================================================
   ITEXMI — Dark Premium Design System
   ============================================================ */

:root {
  --bg: #06060a;
  --bg-2: #0b0b13;
  --surface: #11111b;
  --surface-2: #161622;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f5f5f7;
  --muted: #a2a2b0;
  --faint: #6c6c7a;
  --accent: #f7941d;
  --accent-soft: rgba(247, 148, 29, 0.14);
  --indigo: #5b5bd6;
  --radius: 20px;
  --radius-lg: 28px;
  --nav-h: 72px;
  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--accent); color: #100800; }

.container { width: min(1200px, 92vw); margin-inline: auto; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; }

.display {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 700;
}

.section-title { font-size: clamp(1.9rem, 4.4vw, 3rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent);
}

.grad {
  background: linear-gradient(96deg, #fff 30%, var(--accent) 85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.lead { color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.2rem); max-width: 58ch; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6, 6, 10, 0.72);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.nav-inner {
  width: min(1200px, 92vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img { height: 22px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  font-size: 0.92rem;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: 9px 20px;
  border-radius: 99px;
  border: 1px solid var(--line-strong);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.25s, background 0.25s;
}
.nav-cta:hover { border-color: var(--accent); background: var(--accent-soft); }

.nav-burger {
  display: none;
  background: none;
  border: 0;
  width: 40px; height: 40px;
  position: relative;
  z-index: 110;
}
.nav-burger span {
  position: absolute;
  left: 8px; right: 8px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, top 0.3s;
}
.nav-burger span:nth-child(1) { top: 13px; }
.nav-burger span:nth-child(2) { top: 19px; }
.nav-burger span:nth-child(3) { top: 25px; }
.nav-burger.open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

@media (max-width: 860px) {
  .nav-burger { display: block; }
  .nav-cta { display: none; }
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    background: rgba(6, 6, 10, 0.96);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a { font-size: 1.5rem; font-family: var(--font-display); color: var(--text); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: transform 0.25s cubic-bezier(0.2, 0.6, 0.2, 1), box-shadow 0.25s, background 0.25s, border-color 0.25s;
}
.btn svg { transition: transform 0.25s; }
.btn:hover svg { transform: translateX(4px); }
.btn-primary {
  background: var(--accent);
  color: #14100a;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(247, 148, 29, 0.35);
}
.btn-ghost {
  border-color: var(--line-strong);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  transform: translateY(-2px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 48px) 0 60px;
  overflow: clip;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(52% 44% at 78% 24%, rgba(91, 91, 214, 0.16), transparent 70%),
    radial-gradient(44% 38% at 18% 78%, rgba(247, 148, 29, 0.10), transparent 70%),
    var(--bg);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(60% 60% at 50% 40%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(60% 60% at 50% 40%, #000 30%, transparent 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
}
.hero-copy .display { margin-bottom: 22px; }
.hero-copy .lead { margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: clamp(24px, 4vw, 54px);
  margin-top: 54px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 700;
}
.hero-stat .num em { font-style: normal; color: var(--accent); }
.hero-stat .lbl { font-size: 0.82rem; color: var(--faint); letter-spacing: 0.04em; }

.hero-visual { position: relative; }

/* ---------- Floating vector product art ---------- */
.float-scene {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.86;
  transform: perspective(1200px) rotateY(calc(var(--tx, 0) * 1deg)) rotateX(calc(var(--ty, 0) * -1deg));
  transition: transform 0.2s ease-out;
  will-change: transform;
}
.float-parallax {
  position: absolute;
  transition: transform 0.06s linear;
}
.float-layer {
  display: block;
  filter: drop-shadow(0 30px 46px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 50px rgba(247, 148, 29, 0.1));
  animation: floatBob 6s ease-in-out infinite;
}
@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@media (prefers-reduced-motion: reduce) {
  .float-layer { animation: none; }
  .float-parallax { transition: none; }
}

.hero-glow {
  position: absolute;
  inset: -12%;
  z-index: -1;
  background: radial-gradient(46% 46% at 50% 55%, rgba(247, 148, 29, 0.22), transparent 72%);
  filter: blur(20px);
  animation: pulse 5.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.hero-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  background: rgba(17, 17, 27, 0.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  font-size: 0.84rem;
  font-weight: 600;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
  animation: float 6s ease-in-out infinite;
}
.hero-chip svg { color: var(--accent); flex: none; }
.chip-1 { top: 8%; left: -7%; }
.chip-2 { bottom: 12%; right: -6%; animation-delay: -3s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--faint);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-hint::after {
  content: "";
  width: 1px; height: 34px;
  background: linear-gradient(var(--accent), transparent);
  animation: drip 2s ease-in-out infinite;
}
@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 520px; }
  .hero { padding-top: calc(var(--nav-h) + 28px); }
  .chip-1 { left: 2%; }
  .chip-2 { right: 2%; }
  .scroll-hint { display: none; }
}

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  background: var(--bg-2);
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  display: flex;
  align-items: center;
  gap: 56px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  white-space: nowrap;
}
.marquee-track em { font-style: normal; color: var(--accent); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section { padding: clamp(80px, 11vw, 140px) 0; position: relative; }
.section-head { margin-bottom: clamp(40px, 6vw, 70px); }
.section-head .lead { margin-top: 16px; }
.section-head.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

/* ---------- Lineup cards ---------- */
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.4s cubic-bezier(0.2, 0.6, 0.2, 1), border-color 0.4s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(247, 148, 29, 0.4);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.product-card .img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.product-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.product-card:hover .img-wrap img { transform: scale(1.06); }
.product-card .img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,6,10,0.55), transparent 45%);
}
.product-card .tag {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(6, 6, 10, 0.6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  color: var(--accent);
}
.product-card .body {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.product-card h3 { font-size: 1.5rem; }
.product-card p { color: var(--muted); font-size: 0.94rem; flex: 1; }
.product-card .meta {
  display: flex;
  gap: 18px;
  font-size: 0.8rem;
  color: var(--faint);
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.product-card .meta b { color: var(--text); font-weight: 600; }
.product-card .go {
  position: absolute;
  right: 22px; bottom: 22px;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.product-card:hover .go { background: var(--accent); color: #14100a; transform: rotate(-45deg); }

@media (max-width: 760px) {
  .lineup-grid { grid-template-columns: 1fr; }
}

/* ---------- Features ---------- */
.features { background: var(--bg-2); border-block: 1px solid var(--line); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-tile {
  padding: 30px 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.35s cubic-bezier(0.2,0.6,0.2,1), border-color 0.35s;
}
.feature-tile:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.feature-tile .icon {
  width: 52px; height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-tile h3 { font-size: 1.12rem; margin-bottom: 8px; }
.feature-tile p { color: var(--muted); font-size: 0.92rem; }

@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .features-grid { grid-template-columns: 1fr; } }

/* ---------- Compare ---------- */
.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  scrollbar-width: thin;
}
.compare {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 0.93rem;
}
.compare th, .compare td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.compare thead th {
  font-family: var(--font-display);
  font-size: 1.02rem;
  padding-top: 24px;
  background: var(--surface-2);
  position: sticky;
  top: 0;
}
.compare thead th a { color: var(--accent); font-size: 0.78rem; display: block; font-family: var(--font-body); font-weight: 500; margin-top: 3px; }
.compare thead th a:hover { text-decoration: underline; }
.compare tbody th {
  color: var(--faint);
  font-weight: 500;
  font-size: 0.85rem;
  width: 190px;
}
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare td { color: var(--text); }
.compare td.na { color: var(--faint); }
.compare td .yes { color: var(--accent); font-weight: 700; }
.compare tbody tr:hover td { background: rgba(255, 255, 255, 0.025); }

/* ---------- Support / manuals ---------- */
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.manual-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.3s, border-color 0.3s;
}
.manual-card:hover { transform: translateY(-5px); border-color: rgba(247, 148, 29, 0.45); }
.manual-card .pdf {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 14px;
}
.manual-card h3 { font-size: 1.02rem; }
.manual-card span { font-size: 0.8rem; color: var(--faint); }
.manual-card .dl {
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
@media (max-width: 900px) { .support-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .support-grid { grid-template-columns: 1fr; } }

/* ---------- About + contact ---------- */
.about-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.about-copy p { color: var(--muted); margin-bottom: 18px; }
.badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.badge {
  padding: 8px 16px;
  border-radius: 99px;
  border: 1px solid var(--line-strong);
  font-size: 0.82rem;
  color: var(--muted);
}
.badge b { color: var(--text); }

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 42px);
}
.contact-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.contact-card > p { color: var(--muted); font-size: 0.93rem; margin-bottom: 26px; }
.contact-email {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: var(--bg-2);
  margin-bottom: 18px;
}
.contact-email .icon {
  width: 48px; height: 48px;
  flex: none;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
}
.contact-email .lbl { display: block; font-size: 0.78rem; color: var(--faint); letter-spacing: 0.06em; text-transform: uppercase; }
.contact-email .addr {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-weight: 600;
  color: var(--text);
  word-break: break-all;
  transition: color 0.2s;
}
.contact-email .addr:hover { color: var(--accent); }
.contact-note { font-size: 0.82rem; color: var(--faint); margin-top: 14px; text-align: center; }

@media (max-width: 880px) { .about-contact { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.footer-brand img { height: 20px; margin-bottom: 16px; }
.footer-brand p { color: var(--faint); font-size: 0.88rem; max-width: 34ch; }
.footer h4 {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 16px;
}
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer ul a { color: var(--muted); font-size: 0.92rem; transition: color 0.2s; }
.footer ul a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--faint);
  font-size: 0.82rem;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ============================================================
   Product pages
   ============================================================ */
.p-hero {
  position: relative;
  padding: calc(var(--nav-h) + clamp(40px, 8vw, 90px)) 0 clamp(50px, 7vw, 90px);
  overflow: clip;
}
.p-hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(46% 40% at 80% 12%, var(--p-glow, rgba(247,148,29,0.12)), transparent 70%),
    var(--bg);
}
.p-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.p-hero .crumb {
  font-size: 0.82rem;
  color: var(--faint);
  margin-bottom: 22px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.p-hero .crumb a:hover { color: var(--accent); }
.p-hero h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); margin-bottom: 14px; }
.p-hero .tagline { color: var(--accent); font-family: var(--font-display); font-size: clamp(1.05rem, 2vw, 1.3rem); margin-bottom: 20px; }
.p-hero .lead { margin-bottom: 30px; font-size: 1.02rem; }

.swatches { display: flex; align-items: center; gap: 12px; margin-bottom: 34px; }
.swatches .lbl { font-size: 0.82rem; color: var(--faint); margin-right: 6px; }
.swatch {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid var(--line-strong);
  box-shadow: inset 0 0 0 2px var(--bg);
  position: relative;
}
.swatch:hover::after {
  content: attr(data-name);
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.72rem;
  white-space: nowrap;
  color: var(--text);
}

.p-hero-visual { position: relative; }
.p-hero-visual .glow {
  position: absolute; inset: -10%;
  z-index: -1;
  background: radial-gradient(46% 46% at 50% 55%, var(--p-glow, rgba(247,148,29,0.2)), transparent 72%);
  filter: blur(24px);
}

.stat-band {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
}
.stat-band .inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-band .cell {
  padding: 30px 16px;
  border-left: 1px solid var(--line);
}
.stat-band .cell:first-child { border-left: 0; }
.stat-band .num {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 700;
}
.stat-band .num em { font-style: normal; color: var(--accent); }
.stat-band .lbl { color: var(--faint); font-size: 0.82rem; margin-top: 4px; }
@media (max-width: 720px) {
  .stat-band .inner { grid-template-columns: repeat(2, 1fr); }
  .stat-band .cell:nth-child(3) { border-left: 0; }
  .stat-band .cell { border-top: 1px solid var(--line); }
  .stat-band .cell:nth-child(-n+2) { border-top: 0; }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.gallery-grid a {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  display: block;
}
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2,0.6,0.2,1);
}
.gallery-grid a:hover img { transform: scale(1.05); }
.g-lg { grid-column: span 7; aspect-ratio: 4/3; }
.g-sm { grid-column: span 5; aspect-ratio: 4/3; }
.g-third { grid-column: span 4; aspect-ratio: 1/1; }
@media (max-width: 720px) {
  .g-lg, .g-sm, .g-third { grid-column: span 12; aspect-ratio: 4/3; }
}

.spec-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 clamp(30px, 5vw, 80px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: clamp(10px, 3vw, 30px) clamp(22px, 4vw, 48px);
}
.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.93rem;
}
.spec-row:nth-last-child(-n+1) { border-bottom: 0; }
.spec-row .k { color: var(--faint); }
.spec-row .v { text-align: right; font-weight: 500; }
@media (max-width: 720px) {
  .spec-panel { grid-template-columns: 1fr; }
  .spec-row:nth-last-child(-n+1) { border-bottom: 1px solid var(--line); }
  .spec-panel .spec-row:last-child { border-bottom: 0; }
}

.p-cta {
  text-align: center;
  padding: clamp(70px, 10vw, 120px) 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(50% 60% at 50% 0%, rgba(247, 148, 29, 0.08), transparent 70%),
    var(--bg-2);
}
.p-cta .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

.next-product {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
}
.next-product a {
  flex: 1;
  padding: 34px 4vw;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: background 0.3s;
}
.next-product a:hover { background: var(--surface); }
.next-product a + a { border-left: 1px solid var(--line); text-align: right; }
.next-product .dir { font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); }
.next-product .name { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; }
.next-product a:hover .name { color: var(--accent); }

@media (max-width: 960px) {
  .p-hero-inner { grid-template-columns: 1fr; }
  .p-hero-visual { max-width: 560px; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(4, 4, 8, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vw;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
}
.lightbox .close {
  position: absolute;
  top: 22px; right: 26px;
  background: none;
  border: 0;
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
}
