@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@500;600&display=swap');

:root {
  --bg: #0a0a0d;
  --surface: #15161a;
  --surface-2: #1c1e23;
  --border: #24262c;
  --accent: #3f8fd1;
  --accent-dim: #2a3f52;
  --text: #f5f6f7;
  --text-dim: #9a9da3;
  --text-faint: #5c5f66;
  --radius: 10px;
  --maxw: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
}

/* ---------- Header ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,13,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.nav-row img.logo { height: 64px; width: auto; }

nav.links {
  display: flex;
  gap: 30px;
  font-size: 14.5px;
  color: var(--text-dim);
}

nav.links a:hover, nav.links a.active { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #071018;
  font-weight: 600;
  font-size: 14.5px;
  padding: 11px 20px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn:hover { transform: translateY(-1px); opacity: 0.92; }

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--accent); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg);
}

/* Desktop: two-column layout */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 56px;
  align-items: center;
  min-height: 82vh;
  padding-top: 56px;
  padding-bottom: 56px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero .eyebrow {
  text-shadow: 0 1px 12px rgba(10,10,13,0.9), 0 1px 2px rgba(10,10,13,0.95);
}

.hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  max-width: 780px;
  text-shadow: 0 2px 24px rgba(10,10,13,0.85), 0 1px 2px rgba(10,10,13,0.9);
}

.hero h1 .accent { color: var(--accent); }

.hero p.lede {
  max-width: 560px;
  color: var(--text-dim);
  font-size: 17px;
  margin-top: 20px;
  text-shadow: 0 1px 16px rgba(10,10,13,0.9), 0 1px 2px rgba(10,10,13,0.95);
}

.hero .cta-row {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Video panel (desktop): contained vertical frame, full clip visible */
.hero-media {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}
.hero-media-frame {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.8), 0 0 0 1px rgba(63,143,209,0.08);
  background: var(--surface);
}
.hero-media-frame .hero-poster,
.hero-media-frame .hero-vid {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.hero-media-frame .hero-poster { z-index: 0; }
.hero-media-frame .hero-vid {
  z-index: 1; opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.hero-media-frame .hero-vid.active { opacity: 1; }

/* Mobile: video becomes full-bleed background, text overlaid (like before) */
@media (max-width: 860px) {
  .hero-inner {
    display: block;
    min-height: 80vh;
    padding: 0;
    max-width: none;
    position: relative;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px 40px;
    max-width: var(--maxw);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 80vh;
  }
  .hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
  }
  .hero-media-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: none;
    aspect-ratio: auto;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  /* darkening overlay only on mobile, where text sits over video */
  .hero-media-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(10,10,13,0) 0%, rgba(10,10,13,0.25) 32%, rgba(10,10,13,0.72) 62%, rgba(10,10,13,0.94) 100%);
  }
}

/* ---------- Sections ---------- */
section { padding: 84px 0; border-bottom: 1px solid var(--border); }
section:last-of-type { border-bottom: none; }

.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 36px); }
.section-head p { color: var(--text-dim); margin-top: 14px; font-size: 15.5px; }

/* Trust bar */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.trust-item {
  flex: 1 1 260px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  font-size: 14.5px;
  color: var(--text-dim);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.trust-item .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); margin-top: 8px; flex-shrink: 0;
}
.trust-item strong { color: var(--text); font-weight: 600; }

/* Cards grid (products / 3 up) */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
}

.card h3 { font-size: 19px; color: var(--accent); margin-bottom: 10px; }
.card p { color: var(--text-dim); font-size: 14.5px; flex-grow: 1; }

.card .more {
  margin-top: 18px;
  font-size: 13.5px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card .more svg { transition: transform 0.15s ease; }
.card:hover .more svg { transform: translateX(3px); }

/* Spec readout */
.specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 36px 0;
}
.spec {
  background: var(--surface);
  padding: 22px 20px;
}
.spec .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  font-weight: 600;
  color: var(--accent);
  display: block;
}
.spec .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 6px;
  display: block;
}

/* Venue list */
.venues { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.venue {
  background: var(--surface);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
}
.venue .idx { font-family: 'JetBrains Mono', monospace; color: var(--accent); font-size: 13px; }
.venue .name { color: var(--text); font-weight: 500; }
.venue .tag { margin-left: auto; color: var(--text-faint); font-size: 13px; font-family: 'JetBrains Mono', monospace; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-item:first-child { padding-top: 0; }
.faq-item h3 { font-size: 16.5px; font-weight: 600; font-family: 'Inter', sans-serif; margin-bottom: 10px; }
.faq-item p { color: var(--text-dim); font-size: 14.5px; margin: 0; }

/* Product hero (sub pages) */
.product-hero { padding: 56px 0 40px; }
.product-hero .eyebrow { margin-bottom: 16px; }
.product-hero h1 { font-size: clamp(32px, 5vw, 48px); max-width: 680px; }
.product-hero p.lede { color: var(--text-dim); font-size: 16.5px; max-width: 560px; margin-top: 18px; }

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.list-clean { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.list-clean li { display: flex; gap: 12px; font-size: 15px; color: var(--text-dim); }
.list-clean li::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); margin-top: 8px; flex-shrink: 0;
}
.list-clean li strong { color: var(--text); }

/* Photo placeholder */
.photo-ph {
  background:
    repeating-linear-gradient(135deg, var(--surface-2), var(--surface-2) 10px, var(--surface) 10px, var(--surface) 20px);
  border: 1px dashed var(--accent-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  color: var(--text-faint);
  text-align: center;
  padding: 24px;
}
.photo-ph .inner { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.photo-ph svg { opacity: 0.5; }
.photo-ph .ph-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
}
.photo-ph .ph-sub { font-size: 12.5px; color: var(--text-faint); }

.hero .hero-bg.photo-ph-hero {
  background: repeating-linear-gradient(135deg, var(--surface-2), var(--surface-2) 10px, var(--surface) 10px, var(--surface) 20px);
}
.hero-photo-badge {
  position: absolute; top: 28px; right: 28px; z-index: 1;
  display: flex; align-items: center; gap: 8px;
  background: rgba(10,10,13,0.75); border: 1px dashed var(--accent-dim);
  border-radius: 100px; padding: 8px 16px 8px 12px;
}
.hero-photo-badge .ph-label {
  font-family: 'JetBrains Mono', monospace; font-size: 11.5px;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent);
}

/* CTA band */
.cta-band {
  background: var(--accent);
  border-radius: var(--radius);
  padding: 40px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 { color: #071018; font-size: 24px; }
.cta-band p { color: #0a1c2b; margin-top: 6px; font-size: 14.5px; }
.cta-band .btn { background: #071018; color: var(--text); }
.cta-band .btn:hover { opacity: 0.85; }

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  background: var(--accent);
  color: #071018;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: transform 0.15s ease;
}
.wa-float:hover { transform: scale(1.06); }

/* Footer */
footer.site {
  padding: 48px 0 36px;
  border-top: 1px solid var(--border);
}
footer.site .foot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
footer.site .foot-links { display: flex; flex-wrap: wrap; gap: 18px 22px; font-size: 13.5px; color: var(--text-dim); }
footer.site .copy { font-size: 13px; color: var(--text-faint); margin-top: 24px; }
footer.site img.logo { height: 22px; opacity: 0.85; }

/* Responsive */
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  nav.links { display: none; }
  .wrap { padding: 0 20px; }
  .nav-row { gap: 12px; }
  .nav-row img.logo { height: 56px; }
  .nav-row .btn { padding: 9px 14px; font-size: 13px; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .trust-bar { flex-direction: column; }
  .trust-item { flex: 1 1 auto; }
}

/* ---------- Product photo carousel ---------- */
.pcarousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.pcarousel .pslide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.7s ease;
}
.pcarousel .pslide.active { opacity: 1; }
.pcarousel .pslide img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.pcarousel .parrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(10,10,13,0.55); border: 1px solid var(--border);
  color: #fff; display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; transition: opacity 0.25s ease, background 0.2s ease;
  font-size: 20px; z-index: 3; user-select: none; line-height: 1;
}
.pcarousel:hover .parrow { opacity: 1; }
.pcarousel .parrow:hover { background: var(--accent); }
.pcarousel .parrow.prev { left: 14px; }
.pcarousel .parrow.next { right: 14px; }
.pcarousel .pdots {
  position: absolute; bottom: 16px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px; z-index: 3;
}
.pcarousel .pdot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.pcarousel .pdot.active { background: var(--accent); transform: scale(1.25); }
/* single-photo mode: hide controls */
.pcarousel.solo .parrow, .pcarousel.solo .pdots { display: none; }
@media (max-width: 640px) {
  .pcarousel .parrow { opacity: 1; width: 34px; height: 34px; font-size: 17px; }
}

/* Single square product photo (LTE) */
.photo-single-square {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.photo-single-square img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Instagram icon in header ---------- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ig-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-dim);
  transition: color 0.18s ease, border-color 0.18s ease, transform 0.15s ease;
  flex-shrink: 0;
}
.ig-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}
.ig-link svg { width: 20px; height: 20px; display: block; }
@media (max-width: 860px) {
  .nav-actions { gap: 8px; }
  .ig-link { width: 38px; height: 38px; }
  .ig-link svg { width: 18px; height: 18px; }
}

/* Responsive header button label */
.btn-short { display: none; }
@media (max-width: 860px) {
  .nav-actions .btn-full { display: none; }
  .nav-actions .btn-short { display: inline; }
  .nav-actions .btn { white-space: nowrap; }
}
