/* ════════════════════════════════════════════
   HYZORX — WARM DARK / YELLOW NEO THEME
   ════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,800;0,9..144,900;1,9..144,400;1,9..144,500;1,9..144,600;1,9..144,700&family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Warm dark palette */
  --bg-base:        #14100a;   /* warm near-black */
  --bg-deep:        #0d0a06;   /* deeper warm */
  --bg-panel:       #1c1610;   /* card surface */
  --bg-panel-hi:    #241c14;   /* elevated card */
  --bg-warm-glow:   #2a1f12;   /* warm glow tone */

  /* Yellow / amber accents (neo) */
  --neo-yellow:     #f5d547;   /* primary yellow */
  --neo-amber:      #e8a838;   /* warm amber */
  --neo-orange:     #e8890c;   /* logo orange */
  --neo-cream:      #fef3d3;   /* off-white cream */

  /* Text */
  --text-primary:   #fef3d3;   /* warm cream */
  --text-secondary: #c9bfae;   /* muted warm */
  --text-muted:     #7a7060;   /* subtle */
  --text-dim:       #4a4238;

  /* Borders */
  --border-subtle:  rgba(245, 213, 71, 0.08);
  --border-mid:     rgba(245, 213, 71, 0.18);
  --border-strong:  rgba(245, 213, 71, 0.45);

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Bricolage Grotesque', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "wdth" 100;
  overflow-x: hidden;
  position: relative;
}

/* Atmospheric background — warm grain + glow blobs */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 10%, rgba(232, 137, 12, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(245, 213, 71, 0.05), transparent 60%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(232, 168, 56, 0.04), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(245, 213, 71, 0.04) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 1;
}

main, header, footer { position: relative; z-index: 2; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

img { max-width: 100%; display: block; }

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

/* ══════════════ LAYOUT ══════════════ */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-tight {
  padding: 60px 0;
}

/* ══════════════ HEADER / NAV ══════════════ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 16, 10, 0.65);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(13, 10, 6, 0.92);
  border-bottom-color: var(--border-mid);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo {
  height: 38px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(232, 137, 12, 0.35));
}

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--neo-yellow);
}

.nav-links a.is-active {
  color: var(--bg-deep);
  background: var(--neo-yellow);
}

.nav-cta {
  padding: 10px 22px !important;
  border: 1px solid var(--neo-yellow) !important;
  color: var(--neo-yellow) !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--neo-yellow);
  color: var(--bg-deep) !important;
}

/* When the contact page is active, the CTA gets the active-state yellow background.
   Force the text dark so it remains readable. */
.nav-links a.nav-cta.is-active {
  color: var(--bg-deep) !important;
  background: var(--neo-yellow);
}

/* ══════════════ TYPOGRAPHY ══════════════ */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--neo-yellow);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--neo-yellow);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.0;
  color: var(--text-primary);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

h1 {
  font-size: clamp(56px, 9vw, 128px);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 28px;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h4 {
  font-size: 18px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  color: var(--text-secondary);
  max-width: 65ch;
}

.lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-secondary);
  font-weight: 400;
}

em.italic {
  font-style: italic;
  color: var(--neo-yellow);
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.brand-name em {
  color: var(--neo-yellow);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* ══════════════ BUTTONS ══════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--neo-yellow);
  color: var(--bg-deep);
  box-shadow: 0 0 0 1px var(--neo-yellow), 0 8px 32px rgba(245, 213, 71, 0.18);
}

.btn-primary:hover {
  background: var(--neo-cream);
  box-shadow: 0 0 0 1px var(--neo-cream), 0 12px 40px rgba(245, 213, 71, 0.32);
  transform: translateY(-2px);
}

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

.btn-ghost:hover {
  border-color: var(--neo-yellow);
  color: var(--neo-yellow);
}

.btn-arrow {
  transition: transform 0.25s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ══════════════ HERO — BOLD SPLIT ══════════════ */

.hero {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.1s forwards;
}

.hero h1 {
  margin-bottom: 36px;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.hero h1 .line {
  display: block;
  overflow: hidden;
}

.hero h1 .line-inner {
  display: block;
  opacity: 0;
  transform: translateY(110%);
  animation: lineUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero h1 .line:nth-child(1) .line-inner { animation-delay: 0.2s; }
.hero h1 .line:nth-child(2) .line-inner { animation-delay: 0.35s; }
.hero h1 .line:nth-child(3) .line-inner { animation-delay: 0.5s; }

@keyframes lineUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 .accent {
  font-style: italic;
  color: var(--neo-yellow);
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  position: relative;
}

.hero h1 .underline {
  display: inline-block;
  position: relative;
}

.hero h1 .underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.08em;
  width: 100%;
  height: 0.12em;
  background: linear-gradient(90deg, var(--neo-orange), var(--neo-yellow));
  transform-origin: left;
  transform: scaleX(0);
  animation: underline 1s cubic-bezier(0.22, 1, 0.36, 1) 1.2s forwards;
  border-radius: 2px;
}

@keyframes underline {
  to { transform: scaleX(1); }
}

.hero-lead {
  margin-bottom: 44px;
  max-width: 540px;
  font-size: 18px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.85s forwards;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  color: var(--neo-yellow);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-num em {
  font-style: italic;
  color: var(--neo-orange);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ══════════════ HERO 3D HOLOGRAPHIC ══════════════ */

.hero-visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  opacity: 0;
  animation: fadeIn 1.2s ease 0.5s forwards;
  border: none;
  box-shadow: none;
  overflow: hidden;
  background: transparent;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}

.hero-stage {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: stageFloat 6s ease-in-out infinite;
}

@keyframes stageFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}

/* Glowing platform base */
.holo-base {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 18%;
  background:
    radial-gradient(ellipse at center, rgba(245, 213, 71, 0.5), transparent 60%);
  filter: blur(12px);
  animation: pulse 3s ease-in-out infinite;
}

.holo-base::before {
  content: '';
  position: absolute;
  bottom: 32%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--neo-orange), var(--neo-yellow), var(--neo-orange), transparent);
  border-radius: 50%;
  filter: blur(1px);
  box-shadow: 0 0 24px var(--neo-orange);
}

/* Outer rotating rings (planet-like) */
.holo-ring {
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  border: 1px solid rgba(245, 213, 71, 0.25);
  pointer-events: none;
}

.holo-ring-1 {
  border-style: dashed;
  animation: ringSpin 22s linear infinite;
}

.holo-ring-2 {
  inset: -4%;
  border-color: rgba(232, 137, 12, 0.18);
  animation: ringSpin 35s linear infinite reverse;
}

.holo-ring-3 {
  inset: 16%;
  border-color: rgba(254, 243, 211, 0.12);
  animation: ringSpin 14s linear infinite;
  border-style: dotted;
}

@keyframes ringSpin {
  to { transform: rotate(360deg); }
}

/* 3D holographic cube — wireframe rotating */
.holo-cube {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38%;
  height: 38%;
  transform-style: preserve-3d;
  transform: translate(-50%, -50%) rotateX(-15deg);
  animation: cubeRotate 16s linear infinite;
}

@keyframes cubeRotate {
  from { transform: translate(-50%, -50%) rotateX(-15deg) rotateY(0deg); }
  to   { transform: translate(-50%, -50%) rotateX(-15deg) rotateY(360deg); }
}

.holo-face {
  position: absolute;
  inset: 0;
  border: 2px solid var(--neo-orange);
  background:
    linear-gradient(135deg, rgba(245, 213, 71, 0.05), rgba(232, 137, 12, 0.12));
  box-shadow:
    0 0 24px rgba(232, 137, 12, 0.5),
    inset 0 0 24px rgba(245, 213, 71, 0.15);
}

.holo-face-front  { transform: translateZ(120px); }
.holo-face-back   { transform: rotateY(180deg) translateZ(120px); }
.holo-face-right  { transform: rotateY(90deg) translateZ(120px); }
.holo-face-left   { transform: rotateY(-90deg) translateZ(120px); }
.holo-face-top    { transform: rotateX(90deg) translateZ(120px); }
.holo-face-bottom { transform: rotateX(-90deg) translateZ(120px); }

/* Glow core in center */
.holo-core {
  position: absolute;
  top: 50%; left: 50%;
  width: 28%;
  height: 28%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--neo-yellow) 0%, var(--neo-orange) 40%, transparent 70%);
  filter: blur(20px);
  opacity: 0.7;
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 0.9; transform: translate(-50%, -50%) scale(1.15); }
}

/* Holographic light cone projecting from base up to cube */
.holo-cone {
  position: absolute;
  bottom: 22%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 60%;
  background:
    linear-gradient(180deg,
      rgba(245, 213, 71, 0.18) 0%,
      rgba(232, 137, 12, 0.08) 40%,
      transparent 100%);
  clip-path: polygon(35% 100%, 65% 100%, 100% 0%, 0% 0%);
  filter: blur(2px);
  animation: pulse 4s ease-in-out infinite;
}

/* Orbiting particles */
.holo-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.holo-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--neo-yellow);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--neo-yellow);
  top: 50%;
  left: 50%;
}

.holo-particles span:nth-child(1) { animation: orbit1 8s linear infinite; }
.holo-particles span:nth-child(2) { animation: orbit2 11s linear infinite; }
.holo-particles span:nth-child(3) { animation: orbit3 14s linear infinite; }
.holo-particles span:nth-child(4) { animation: orbit4 9s linear infinite; }
.holo-particles span:nth-child(5) { animation: orbit5 13s linear infinite; }

@keyframes orbit1 {
  from { transform: rotate(0)   translateX(180px) rotate(0); }
  to   { transform: rotate(360deg) translateX(180px) rotate(-360deg); }
}
@keyframes orbit2 {
  from { transform: rotate(72deg) translateX(220px) rotate(-72deg); }
  to   { transform: rotate(432deg) translateX(220px) rotate(-432deg); }
}
@keyframes orbit3 {
  from { transform: rotate(144deg) translateX(160px) rotate(-144deg); }
  to   { transform: rotate(504deg) translateX(160px) rotate(-504deg); }
}
@keyframes orbit4 {
  from { transform: rotate(216deg) translateX(200px) rotate(-216deg); }
  to   { transform: rotate(576deg) translateX(200px) rotate(-576deg); }
}
@keyframes orbit5 {
  from { transform: rotate(288deg) translateX(150px) rotate(-288deg); }
  to   { transform: rotate(648deg) translateX(150px) rotate(-648deg); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scrolling indicator */
.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  animation: fadeUp 1s ease 1.4s forwards;
}

.scroll-hint::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--neo-yellow), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50%      { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
}

/* Floating hex decorations */
.hex {
  position: absolute;
  width: 100px;
  height: 115px;
  background: var(--neo-yellow);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0.06;
  pointer-events: none;
}

.hex-2 {
  width: 60px;
  height: 70px;
  opacity: 0.1;
  background: var(--neo-orange);
}

/* ══════════════ SECTION HEADERS ══════════════ */

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
  align-items: end;
}

.section-head-single {
  display: block;
  margin-bottom: 64px;
}

.section-head .eyebrow {
  margin-bottom: 20px;
  display: inline-flex;
}

.section-head h2 .accent {
  font-style: italic;
  color: var(--neo-yellow);
}

/* ══════════════ CARDS ══════════════ */

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--neo-yellow), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  border-color: var(--border-mid);
  background: var(--bg-panel-hi);
  transform: translateY(-4px);
}

.card:hover::before { opacity: 1; }

.card-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--neo-yellow);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}

.card-title {
  font-family: var(--font-display);
  font-size: 26px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.card-body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Product preview cards */

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  border-color: var(--neo-yellow);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(245, 213, 71, 0.08);
}

.product-card-visual {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-warm-glow), var(--bg-panel));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(245, 213, 71, 0.18), transparent 50%);
}

.product-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

.product-card:hover .product-card-img {
  transform: scale(1.06);
}

.product-card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13, 10, 6, 0.7) 100%);
  z-index: 1;
  pointer-events: none;
}

.product-card-letter {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 220px;
  color: var(--neo-yellow);
  opacity: 0.18;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.product-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 6px 10px;
  background: rgba(20, 16, 10, 0.85);
  border: 1px solid var(--border-mid);
  border-radius: 2px;
  color: var(--neo-yellow);
}

.product-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 8px;
}

.product-card-tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.product-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  flex: 1;
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--neo-yellow);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: gap 0.25s ease;
}

.product-card-link:hover { gap: 14px; }

/* ══════════════ PROBLEM / SOLUTION SPLIT ══════════════ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  position: relative;
}

.split-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.split-card-problem {
  border-color: rgba(232, 137, 12, 0.15);
}

.split-card-solution {
  border-color: var(--border-mid);
  background: linear-gradient(135deg, var(--bg-panel) 0%, rgba(245, 213, 71, 0.03) 100%);
}

.split-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 2px;
}

.split-card-problem .split-label {
  background: rgba(232, 137, 12, 0.08);
  color: var(--neo-orange);
  border: 1px solid rgba(232, 137, 12, 0.25);
}

.split-card-solution .split-label {
  background: rgba(245, 213, 71, 0.08);
  color: var(--neo-yellow);
  border: 1px solid var(--border-mid);
}

.split-card h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.split-card p {
  font-size: 16px;
  line-height: 1.65;
}

.split-arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--neo-yellow);
  color: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 5;
  box-shadow: 0 0 0 8px var(--bg-base), 0 0 30px rgba(245, 213, 71, 0.4);
}

/* ══════════════ MARKET / VALUE GRID ══════════════ */

.icon-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.icon-row:last-child { border-bottom: none; }

.icon-circle {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  background: rgba(245, 213, 71, 0.08);
  border: 1px solid var(--border-mid);
  color: var(--neo-yellow);
}

.icon-row-content h4 { margin-bottom: 6px; }

.icon-row-content p {
  font-size: 15px;
  margin: 0;
}

/* Big metric callout */

.metric-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 36px;
  position: relative;
}

.metric-num {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--neo-yellow);
  margin-bottom: 4px;
}

.metric-num em { font-style: italic; }

.metric-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neo-orange);
  margin-bottom: 16px;
}

.metric-title {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.metric-desc {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ══════════════ PRODUCT DETAIL PAGE ══════════════ */

.product-hero {
  padding: 60px 0 80px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.breadcrumb a:hover { color: var(--neo-yellow); }

.breadcrumb span { color: var(--neo-yellow); }

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.product-hero-visual {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bg-warm-glow), var(--bg-panel));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 80px rgba(232, 137, 12, 0.08);
}

.product-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.product-hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13, 10, 6, 0.5) 100%);
  z-index: 1;
  pointer-events: none;
}

.product-hero-letter {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 360px;
  color: var(--neo-yellow);
  line-height: 1;
  opacity: 0.25;
  position: relative;
  z-index: 1;
}

.product-hero h1 { font-size: clamp(40px, 5vw, 64px); margin-bottom: 12px; }
.product-hero .product-hero-tagline {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neo-yellow);
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  margin: 32px 0;
}

.feature-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  color: var(--text-secondary);
}

.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 10px;
  background: var(--neo-yellow);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(245, 213, 71, 0.6);
}

/* ══════════════ CONTACT ══════════════ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-block {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245, 213, 71, 0.08);
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neo-yellow);
  font-size: 20px;
}

.contact-block-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neo-yellow);
  margin-bottom: 8px;
}

.contact-block-value {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-primary);
  line-height: 1.3;
}

.contact-block-value a:hover { color: var(--neo-yellow); }

/* Contact form */

.contact-form {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 36px;
}

.form-row { margin-bottom: 22px; }
.form-row-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-row label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--neo-yellow);
  background: var(--bg-panel-hi);
}

.form-row textarea { min-height: 120px; resize: vertical; }

.form-msg {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}

.form-msg.success {
  background: rgba(245, 213, 71, 0.08);
  border: 1px solid var(--border-mid);
  color: var(--neo-yellow);
}

.form-msg.error {
  background: rgba(232, 137, 12, 0.08);
  border: 1px solid rgba(232, 137, 12, 0.3);
  color: var(--neo-orange);
}

/* ══════════════ CTA BANNER ══════════════ */

.cta-banner {
  position: relative;
  margin: 60px 0 0;
  padding: 80px 60px;
  background: linear-gradient(135deg, var(--neo-yellow), var(--neo-amber));
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(232, 137, 12, 0.4), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(254, 243, 211, 0.2), transparent 40%);
}

.cta-banner-content { position: relative; z-index: 1; max-width: 640px; }

.cta-banner h2 {
  color: var(--bg-deep);
  font-size: 48px;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(20, 16, 10, 0.75);
  font-size: 17px;
  max-width: 540px;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
  background: var(--bg-deep);
  color: var(--neo-yellow);
}

.cta-banner .btn:hover {
  background: var(--bg-base);
  transform: translateY(-2px);
}

/* ══════════════ FOOTER ══════════════ */

.site-footer {
  margin-top: 120px;
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 16px;
  max-width: 360px;
}

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neo-yellow);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--neo-yellow); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom p { color: var(--text-muted); margin: 0; }

/* ══════════════ MOBILE / RESPONSIVE ══════════════ */

@media (max-width: 980px) {
  .hero { padding: 40px 0 60px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { aspect-ratio: 1; max-width: 380px; margin: 0 auto; order: -1; }
  .hero h1 { font-size: clamp(48px, 12vw, 80px); }

  .split, .product-hero-grid, .contact-grid, .section-head {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .card-grid-3, .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split-arrow { display: none; }
  .product-hero-letter { font-size: 240px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 40px; }
  .scroll-hint { display: none; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }

  /* Mobile nav */
  .nav { padding: 14px 0; gap: 12px; }
  .nav-links { display: none; position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(13, 10, 6, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid var(--border-subtle);
    z-index: 99;
    animation: navSlide 0.3s ease;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 16px; font-size: 14px; width: 100%; }
  .nav-toggle { display: flex; }

  .brand-logo { height: 32px; }
  .brand-name { font-size: 20px; }

  .hero h1 { font-size: clamp(44px, 13vw, 64px); margin-bottom: 24px; }
  .hero-eyebrow { margin-bottom: 20px; }
  .hero-lead { font-size: 16px; margin-bottom: 32px; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; min-width: 140px; justify-content: center; }
  .hero-stats { gap: 16px; padding-top: 28px; margin-top: 40px; }
  .stat-num { font-size: 32px; }
  .stat-label { font-size: 9px; }

  .hero-visual { max-width: 320px; }

  h2 { font-size: clamp(32px, 8vw, 44px); }

  .split-card, .contact-form, .card { padding: 24px; }
  .split-card h3 { font-size: 24px; }

  .card-grid-2, .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; gap: 16px; }
  .form-row-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .site-footer { padding: 60px 0 32px; margin-top: 80px; }

  .cta-banner { padding: 40px 24px; flex-direction: column; align-items: flex-start; }
  .cta-banner h2 { font-size: 32px; }
  .cta-banner p { font-size: 15px; }
  .cta-banner .btn { width: 100%; justify-content: center; }

  .product-hero-letter { font-size: 180px; }
  .product-card-letter { font-size: 140px; }

  .metric-card { padding: 28px; }
  .metric-num { font-size: 48px; }

  .breadcrumb { margin-bottom: 28px; font-size: 11px; }

  .product-hero { padding: 32px 0 50px; }
}

@keyframes navSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hide nav toggle on desktop */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle-bar { display: block; width: 22px; height: 2px; background: var(--neo-yellow); margin: 4px 0; transition: all 0.3s ease; }
.nav-toggle.is-open .nav-toggle-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ══════════════ SCROLL REVEAL ══════════════ */

[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }

[data-reveal="scale"] {
  opacity: 0;
  transform: scale(0.9);
}
[data-reveal="scale"].is-visible {
  opacity: 1;
  transform: scale(1);
}

[data-reveal="left"] {
  opacity: 0;
  transform: translateX(-40px);
}
[data-reveal="left"].is-visible {
  opacity: 1;
  transform: translateX(0);
}

[data-reveal="right"] {
  opacity: 0;
  transform: translateX(40px);
}
[data-reveal="right"].is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ══════════════ CURSOR FOLLOWER ══════════════ */

.cursor-glow {
  position: fixed;
  pointer-events: none;
  z-index: 999;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 213, 71, 0.06), transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
  mix-blend-mode: screen;
}

@media (hover: hover) {
  body:hover .cursor-glow { opacity: 1; }
}

@media (max-width: 720px) {
  .cursor-glow { display: none; }
}

/* ══════════════ MAGNETIC BUTTONS ══════════════ */

.btn { position: relative; overflow: hidden; }

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn:hover::before { transform: translateX(100%); }

/* ══════════════ ANIMATED LINK UNDERLINES ══════════════ */

.product-card-link {
  position: relative;
}

.product-card-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--neo-yellow);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-card-link::after { width: 100%; }

/* ══════════════ NUMBER COUNTER ══════════════ */

[data-counter] {
  display: inline-block;
}

/* Reduce motion — accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .holo-stage, .holo-cube, .holo-ring-1, .holo-ring-2, .holo-ring-3,
  .holo-particles span {
    animation: none !important;
  }
}

/* ════════════════════════════════════════════
   ADVERTISE / PRICING / LOCATIONS / SOCIALS
   ════════════════════════════════════════════ */

/* ─── PRICING PLANS ─── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1100px) { .plans-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px)  { .plans-grid { grid-template-columns: 1fr; } }

.plan-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-mid);
}

.plan-card.is-highlight {
  background: linear-gradient(180deg, rgba(245, 213, 71, 0.05) 0%, var(--bg-panel) 60%);
  border-color: var(--neo-yellow);
  box-shadow: 0 30px 80px rgba(245, 213, 71, 0.1);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--neo-yellow);
  color: var(--bg-deep);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.plan-tagline {
  font-size: 14px;
  color: var(--text-muted);
  min-height: 40px;
  margin: 0 0 24px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  padding: 20px 0;
  margin: 0 -4px 24px;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.plan-currency {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--neo-yellow);
  letter-spacing: 0.1em;
  align-self: flex-start;
  margin-top: 8px;
}

.plan-amount {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.plan-card.is-highlight .plan-amount { color: var(--neo-yellow); }

.plan-period {
  font-size: 13px;
  color: var(--text-muted);
}

.plan-specs {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.plan-specs li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px dashed var(--border-subtle);
}

.plan-specs li:last-child { border-bottom: none; }

.plan-spec-label {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-spec-value {
  color: var(--text-primary);
  font-weight: 500;
  text-align: right;
}

.plan-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  flex: 1;
}

.plan-features li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--neo-yellow);
  font-weight: 700;
}

/* ─── LOCATIONS / MAP ─── */
.locations-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  align-items: start;
}

@media (max-width: 980px) {
  .locations-layout { grid-template-columns: 1fr; }
}

.locations-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 560px;
  overflow-y: auto;
  padding-right: 8px;
}

.locations-list::-webkit-scrollbar { width: 6px; }
.locations-list::-webkit-scrollbar-track { background: transparent; }
.locations-list::-webkit-scrollbar-thumb { background: var(--border-mid); border-radius: 4px; }

.location-row {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
  color: inherit;
  width: 100%;
}

.location-row:hover {
  border-color: var(--neo-yellow);
  background: var(--bg-panel-hi);
  transform: translateX(4px);
}

.location-row.is-active {
  border-color: var(--neo-yellow);
  background: linear-gradient(135deg, rgba(245, 213, 71, 0.06), var(--bg-panel));
  box-shadow: -4px 0 0 var(--neo-yellow);
}

.location-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--neo-yellow);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  min-width: 28px;
  padding-top: 2px;
}

.location-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.location-meta {
  font-size: 12px;
  color: var(--neo-yellow);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: flex;
  gap: 6px;
}

.location-addr {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.location-footfall {
  font-size: 12px;
  color: var(--neo-orange);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

.locations-map-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

#ad-locations-map {
  height: 560px;
  width: 100%;
  background: var(--bg-deep);
}

@media (max-width: 720px) {
  #ad-locations-map { height: 400px; }
  .locations-list { max-height: none; }
}

/* Custom map markers */
.holo-marker {
  position: relative;
  width: 28px;
  height: 28px;
}

.holo-marker-pulse, .holo-marker-dot {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.holo-marker-pulse {
  width: 28px;
  height: 28px;
  background: rgba(245, 213, 71, 0.3);
  animation: markerPulse 2s ease-out infinite;
}

.holo-marker-dot {
  width: 12px;
  height: 12px;
  background: var(--neo-yellow);
  box-shadow: 0 0 12px var(--neo-yellow), 0 0 24px var(--neo-orange);
  border: 2px solid var(--bg-deep);
}

@keyframes markerPulse {
  0%   { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2.4); opacity: 0; }
}

/* Leaflet popup theming */
.leaflet-popup-content-wrapper {
  background: var(--bg-panel) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.leaflet-popup-content { font-family: var(--font-body); margin: 12px 16px !important; }
.leaflet-popup-tip { background: var(--bg-panel) !important; }
.leaflet-popup-close-button { color: var(--text-muted) !important; }

.map-legend {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(13, 10, 6, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  z-index: 500;
}

.legend-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--neo-yellow);
  box-shadow: 0 0 8px var(--neo-yellow);
}

/* ─── FOOTER SOCIALS ─── */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.25s ease;
}

.social-link svg { width: 16px; height: 16px; display: block; }

.social-link:hover {
  border-color: var(--neo-yellow);
  color: var(--neo-yellow);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 213, 71, 0.15);
}

/* ─── ABOUT STORY ─── */
.story-content {
  max-width: 760px;
  margin: 0 auto;
}

.story-content p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 22px;
  max-width: none;
}

.story-content p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--neo-yellow);
  float: left;
  line-height: 0.9;
  margin: 8px 14px 0 0;
}


/* Hostinger mobile hamburger fix — keep after all nav CSS */
@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1001;
  }

  .nav-toggle-bar {
    display: block;
  }

  .nav-links {
    z-index: 1000;
  }
}


/* ─────────────────────────────────────────────
   MASONRY PRODUCT GALLERY
   ───────────────────────────────────────────── */
.gallery-hero { padding-bottom: 32px; }
.gallery-hero h1 { font-size: clamp(44px, 7vw, 88px); line-height: 0.95; letter-spacing: -0.06em; margin: 10px 0 16px; }
.gallery-hero p { max-width: 720px; color: var(--text-muted); font-size: clamp(17px, 2vw, 22px); line-height: 1.6; }

.masonry-gallery {
  column-count: 3;
  column-gap: 18px;
}

.gallery-card {
  break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(245, 213, 71, 0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
}

.gallery-card a { display: block; overflow: hidden; background: rgba(0,0,0,0.25); }
.gallery-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.45s ease, filter 0.45s ease;
}
.gallery-card:hover img { transform: scale(1.035); filter: saturate(1.08); }
.gallery-card figcaption { padding: 16px 18px 18px; }
.gallery-card figcaption strong { display: block; color: var(--text-primary); font-size: 16px; line-height: 1.35; }
.gallery-card figcaption span { display: block; margin-top: 5px; color: var(--text-muted); font-size: 13px; }
.gallery-empty { max-width: 680px; margin: 0 auto; text-align: center; padding: 42px; }
.gallery-empty h2 { margin-bottom: 10px; }
.gallery-empty p { color: var(--text-muted); }

@media (max-width: 900px) {
  .masonry-gallery { column-count: 2; }
}

@media (max-width: 560px) {
  .masonry-gallery { column-count: 1; }
  .gallery-card { border-radius: 18px; }
}
