/* ═══════════════════════════════════════════════
   GERMAN LABS MX — Main Stylesheet v2.0.0
   Paleta: Verde Metálico + Plata/Cromo
   Sin azul en ningún estado.
   ═══════════════════════════════════════════════ */

/* ── Design tokens ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Dark backgrounds */
  --bg:         #050807;   /* void-black            */
  --bg2:        #0A160D;   /* deep-forest           */
  --bg-card:    #0D1A10;   /* dark card             */
  --bg-card2:   #163D1B;   /* bio-green-dark card   */

  /* Text */
  --text:       #E3E8E5;   /* metal-chrome          */
  --muted:      rgba(199,208,203,0.50);
  --dim:        rgba(199,208,203,0.10);

  /* Accent: metallic green family */
  --accent:     #4F8A2B;   /* metal-green           */
  --accent-mid: #679F37;   /* metal-green-mid       */
  --accent-lt:  #91C95A;   /* metal-green-light     */
  --accent-dim: rgba(79,138,43,0.30);
  --accent-glow:rgba(79,138,43,0.12);

  /* Borders */
  --border:     rgba(79,138,43,0.13);
  --border-h:   rgba(103,159,55,0.38);

  /* Silver/chrome */
  --chrome:     #E3E8E5;
  --silver:     #89938E;
  --silver-lt:  #C7D0CB;

  /* Radii / fonts */
  --radius:     10px;
  --radius-sm:  8px;
  --radius-lg:  14px;
  --fD:         'Bebas Neue', 'Arial Narrow', sans-serif;
  --fB:         'Inter', system-ui, -apple-system, sans-serif;
  --fM:         'Space Mono', 'Courier New', monospace;
}

/* ── Global ──────────────────────────────────────── */
html { scroll-behavior: smooth; font-size: 16px; color-scheme: dark; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--fB);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; }

/* Global selection: metallic green */
::selection {
  background: var(--accent);
  color: #FFFFFF;
}

/* Focus visible: metallic green, never blue */
:focus-visible {
  outline: 2px solid var(--accent-lt);
  outline-offset: 3px;
}

/* ── Global Background Canvas ────────────────────── */
#gl-bg-canvas {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

.gl-nav, .gl-hero, .gl-strip, .gl-catalog,
.gl-upcoming, .gl-verify, .gl-footer, .gl-distributor {
  position: relative; z-index: 1;
}

/* ── Nav ──────────────────────────────────────────── */
.gl-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 60px;
  padding-top: max(28px, env(safe-area-inset-top, 0px));
  transition: background 0.5s, padding 0.5s, backdrop-filter 0.5s;
}
.gl-nav.scrolled {
  background: rgba(5,8,7,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 16px 60px;
  padding-top: max(16px, env(safe-area-inset-top, 0px));
}
.gl-logo { display: flex; align-items: center; gap: 10px; }
.gl-logo:hover img { opacity: 0.72; }

/* Logo gradient: verde metálico anodizado */
.gl-logo-text {
  background: linear-gradient(135deg, #234B1E 0%, #679F37 45%, #B3E477 62%, #4F8A2B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gl-nav-links { display: flex; gap: 36px; align-items: center; }
.gl-nav-links a {
  font-size: 0.70rem; font-weight: 500;
  letter-spacing: 0.22em;
  color: rgba(199,208,203,0.52);
  text-transform: uppercase;
  transition: color 0.22s;
}
.gl-nav-links a:hover { color: var(--text); }
.gl-nav-cta {
  border: 1px solid rgba(79,138,43,0.48) !important;
  padding: 8px 22px;
  border-radius: var(--radius-sm);
  color: var(--accent-lt) !important;
  transition: background 0.22s, color 0.22s !important;
}
.gl-nav-cta:hover {
  background: var(--accent) !important;
  color: #fff !important;
}

/* ── Hero ─────────────────────────────────────────── */
.gl-hero {
  position: relative;
  width: 100%; height: 96vh; min-height: 640px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--void-black, #050807);
}
#gl-molecule {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

/* Film grain (very subtle) */
.gl-hero::after {
  content: ''; position: absolute; inset: 0;
  pointer-events: none; z-index: 2; opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 192px 192px;
  mix-blend-mode: overlay;
}

/* Dark bio-molecular overlay gradient (NO azul) */
.gl-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 78% 58% at 50% 100%, rgba(5,8,7,0.97) 0%, transparent 68%),
    radial-gradient(ellipse 50% 42% at 14% 38%,  rgba(22,61,27,0.28) 0%, transparent 58%),
    radial-gradient(ellipse 42% 48% at 86% 55%,  rgba(79,138,43,0.06) 0%, transparent 52%);
}

/* HUD corners: solo marca de laboratorio, sin falsas coordenadas */
.gl-hero-hud {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
}
.gl-hud {
  position: absolute;
  font-family: var(--fM);
  font-size: 0.50rem; letter-spacing: 0.22em;
  color: rgba(79,138,43,0.22);
  text-transform: uppercase; white-space: nowrap;
}
.gl-hud-tl { top: 100px;  left: 60px; }
.gl-hud-tr { top: 100px;  right: 60px; }
.gl-hud-bl { bottom: 80px; left: 60px; }
.gl-hud-br { bottom: 80px; right: 60px; }

.gl-hero-content {
  position: relative; z-index: 3;
  text-align: center; padding: 0 24px;
}

.gl-eyebrow {
  display: block;
  font-family: var(--fM);
  font-size: 0.60rem; letter-spacing: 0.40em;
  color: var(--accent-lt);
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.9s ease forwards 0.4s;
}
.gl-hero-title {
  font-family: var(--fD);
  font-size: clamp(44px, 7.2vw, 104px);
  line-height: 0.92; letter-spacing: 0.04em;
  color: #fff;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 1.1s ease forwards 0.65s;
}
.gl-hero-tagline {
  margin-top: 30px;
  font-family: var(--fM);
  font-size: clamp(0.62rem, 1.4vw, 0.75rem);
  letter-spacing: 0.38em;
  color: rgba(199,208,203,0.32);
  text-transform: uppercase;
  opacity: 0; transform: translateY(14px);
  animation: fadeUp 0.9s ease forwards 0.95s;
}
.gl-hero-cta {
  margin-top: 54px;
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0; transform: translateY(14px);
  animation: fadeUp 0.9s ease forwards 1.15s;
}

.gl-hero-seal {
  display: flex; align-items: center; gap: 18px; justify-content: center;
  margin-top: 40px;
  opacity: 0; animation: fadeIn 1s ease forwards 1.8s;
}
.gl-seal-line {
  display: block; height: 1px; width: 44px;
  background: linear-gradient(to right, transparent, rgba(79,138,43,0.35));
}
.gl-seal-line:last-child {
  background: linear-gradient(to left, transparent, rgba(79,138,43,0.35));
}
.gl-seal-text {
  font-family: var(--fM);
  font-size: 0.54rem; letter-spacing: 0.35em;
  color: rgba(199,208,203,0.25);
  text-transform: uppercase; white-space: nowrap;
}

/* ── Buttons ──────────────────────────────────────── */
.gl-btn {
  display: inline-block;
  padding: 14px 38px;
  font-size: 0.70rem; font-weight: 500;
  letter-spacing: 0.20em; text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer; border: none;
  border-radius: var(--radius-sm);
}
/* Primary: verde metálico, texto blanco */
.gl-btn-primary  { background: var(--accent); color: #fff; }
.gl-btn-primary:hover  {
  background: var(--accent-mid);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(79,138,43,0.40);
}
/* Secondary: grafito, borde plata, texto cromo */
.gl-btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(199,208,203,0.22);
}
.gl-btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent-lt);
  background: rgba(79,138,43,0.06);
  transform: translateY(-3px);
}

.gl-scroll-down {
  position: absolute; bottom: 56px; left: 50%;
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0;
  animation:
    fadeIn 0.9s ease forwards 2.0s,
    glScrollBounce 2.8s 2.0s ease-in-out infinite;
}
.gl-scroll-down span {
  font-family: var(--fM);
  font-size: 0.52rem; letter-spacing: 0.42em;
  color: rgba(199,208,203,0.82); text-transform: uppercase;
}
.gl-scroll-line {
  width: 2px; height: 64px;
  background: linear-gradient(to bottom, rgba(79,138,43,0.88) 0%, rgba(79,138,43,0.28) 75%, transparent 100%);
  transform-origin: top center;
  animation: scrollPulse 2.4s cubic-bezier(0.16,1,0.3,1) infinite;
  box-shadow: 0 0 10px rgba(79,138,43,0.45), 0 0 24px rgba(79,138,43,0.18);
}
.gl-scroll-chevrons {
  display: flex; flex-direction: column; align-items: center; gap: 1px;
  margin-top: -2px;
}
.gl-scroll-chevrons svg:nth-child(1) { animation: chevCascade 1.8s ease-in-out infinite 0.0s; }
.gl-scroll-chevrons svg:nth-child(2) { animation: chevCascade 1.8s ease-in-out infinite 0.22s; }
.gl-scroll-chevrons svg:nth-child(3) { animation: chevCascade 1.8s ease-in-out infinite 0.44s; }
@keyframes chevCascade {
  0%,100% { opacity: 0.28; transform: translateY(-5px); }
  50%      { opacity: 1.00; transform: translateY(5px);  }
}

/* ── Strip ────────────────────────────────────────── */
.gl-strip {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: center;
  padding: 72px 60px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(10,22,13,0.75);
}
.gl-strip-sep  { background: var(--border); align-self: stretch; min-height: 80px; }
.gl-strip-item { padding: 0 48px; text-align: center; }
.gl-strip-number {
  display: block;
  font-family: var(--fD);
  font-size: 3.8rem; letter-spacing: 0.05em;
  color: var(--accent-mid); line-height: 1;
}
.gl-strip-label {
  margin-top: 10px;
  font-family: var(--fM);
  font-size: 0.60rem; letter-spacing: 0.22em;
  color: var(--muted); text-transform: uppercase;
}
.gl-strip-sub {
  margin-top: 7px;
  font-family: var(--fM);
  font-size: 0.50rem; letter-spacing: 0.20em;
  color: rgba(199,208,203,0.28); text-transform: uppercase;
}

/* ── Catalog ──────────────────────────────────────── */
.gl-catalog {
  padding: 110px 60px 80px;
  background: rgba(5,8,7,0.60);
}
.gl-section-label {
  display: block;
  font-family: var(--fM);
  font-size: 0.58rem; letter-spacing: 0.40em;
  color: var(--accent-mid); text-transform: uppercase; margin-bottom: 14px;
}
.gl-section-title {
  font-family: var(--fD);
  font-size: clamp(40px, 6vw, 82px);
  letter-spacing: 0.04em; line-height: 0.92;
  color: var(--text); margin-bottom: 56px;
}

/* Tabs */
.gl-tabs {
  display: flex; gap: 0;
  border-bottom: 1px solid var(--border); margin-bottom: 52px;
}
.gl-tab {
  padding: 14px 40px;
  font-family: var(--fM);
  font-size: 0.65rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted);
  background: none; border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer; margin-bottom: -1px;
  transition: color 0.25s, border-color 0.25s;
}
.gl-tab:hover { color: var(--text); }
.gl-tab.active { color: var(--text); border-bottom-color: var(--accent); }

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

.gl-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.gl-hidden { display: none !important; }

/* Product Card */
.gl-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.5s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer; position: relative; touch-action: manipulation;
}
.gl-card:hover {
  border-color: var(--border-h);
  box-shadow:
    0 18px 50px rgba(0,0,0,0.60),
    0 0 0 1px var(--border-h),
    0 0 28px -6px var(--accent-glow);
}
.gl-card-img {
  width: 100%; aspect-ratio: 4/3; overflow: hidden;
  background: #060a08;
  position: relative; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius) var(--radius) 0 0;
}
.gl-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gl-card:hover .gl-card-img img { transform: scale(1.04); }
.gl-card-img.gl-no-img img { display: none; }
.gl-card-sku-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fD);
  font-size: 5rem; letter-spacing: 0.04em;
  color: var(--accent); opacity: 0.10; pointer-events: none;
}
.gl-card-img.gl-no-img .gl-card-sku-bg { opacity: 0.28; }

.gl-card-body {
  padding: 18px 20px 22px;
  border-top: 1px solid var(--border); position: relative;
}
.gl-card-bar {
  position: absolute; top: 0; left: 0;
  width: 2px; height: 100%;
  background: var(--accent); opacity: 0.50;
}
.gl-card-tag {
  font-family: var(--fM);
  font-size: 0.52rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border); border-radius: 4px;
  padding: 3px 8px; display: inline-block; margin-bottom: 10px;
}
.gl-card-name {
  font-family: var(--fD);
  font-size: 1.48rem; letter-spacing: 0.04em;
  color: var(--text); line-height: 1.1; margin-bottom: 4px;
}
.gl-card-generic {
  font-family: var(--fM);
  font-size: 0.58rem; color: var(--muted);
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 8px;
}
.gl-card-detail {
  font-family: var(--fM);
  font-size: 0.62rem; color: rgba(199,208,203,0.26); letter-spacing: 0.08em;
}
.gl-card-ref {
  font-family: var(--fM);
  font-size: 0.50rem; letter-spacing: 0.18em;
  color: var(--accent-mid); text-transform: uppercase;
  margin-top: 10px; opacity: 0; transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gl-card:hover .gl-card-ref { opacity: 0.65; transform: translateY(0); }

.gl-card-benefits {
  list-style: none; padding: 0; margin: 10px 0 0;
}
.gl-card-benefits li {
  font-family: var(--fB);
  font-size: 0.61rem; line-height: 1.5;
  color: rgba(199,208,203,0.52);
  letter-spacing: 0.02em;
  padding: 3px 0 3px 13px;
  position: relative;
}
.gl-card-benefits li::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent); opacity: 0.65;
}

/* ── Verify ───────────────────────────────────────── */
.gl-verify {
  padding: 120px 60px;
  background: rgba(5,8,7,0.92);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.gl-verify::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(79,138,43,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.gl-verify-inner { max-width: 680px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.gl-verify-desc {
  color: var(--muted); font-size: 0.86rem;
  letter-spacing: 0.03em; margin-top: -34px; margin-bottom: 0; line-height: 1.80;
}

/* Scanner frame */
.gl-scan-frame {
  position: relative; margin-top: 44px; padding: 28px; border-radius: var(--radius);
}
.gl-scan-corner {
  position: absolute; width: 18px; height: 18px;
  border-color: var(--accent); border-style: solid; opacity: 0.50;
  transition: opacity 0.4s;
}
.gl-scan-frame.scanning .gl-scan-corner { opacity: 0.90; }
.gl-scan-corner.tl { top: 0;  left: 0;  border-width: 1px 0 0 1px; border-top-left-radius: var(--radius); }
.gl-scan-corner.tr { top: 0;  right: 0; border-width: 1px 1px 0 0; border-top-right-radius: var(--radius); }
.gl-scan-corner.bl { bottom: 0; left: 0; border-width: 0 0 1px 1px; border-bottom-left-radius: var(--radius); }
.gl-scan-corner.br { bottom: 0; right: 0; border-width: 0 1px 1px 0; border-bottom-right-radius: var(--radius); }

#gl-scan-line {
  position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--accent) 35%, rgba(227,232,229,0.8) 50%, var(--accent) 65%, transparent 100%);
  box-shadow: 0 0 10px 1px var(--accent-dim);
  opacity: 0; pointer-events: none;
  border-radius: var(--radius) var(--radius) 0 0;
}
.gl-scan-frame.scanning #gl-scan-line { animation: scanLine 1.4s cubic-bezier(0.4,0,0.6,1) forwards; }
@keyframes scanLine {
  0%  { top: 0;    opacity: 0; }
  5%  { opacity: 0.90; }
  95% { opacity: 0.65; }
  100%{ top: 100%; opacity: 0; }
}

.gl-verify-form { display: flex; gap: 0; }
.gl-verify-input {
  flex: 1; padding: 18px 22px;
  background: #FFFFFF;
  border: 1px solid #C7D0CB;
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  color: #111614;
  font-family: var(--fM); font-size: 0.94rem;
  letter-spacing: 0.22em; outline: none; text-transform: uppercase;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.gl-verify-input::placeholder {
  color: rgba(17,22,20,0.35); letter-spacing: 0.14em; font-size: 0.78rem;
}
.gl-verify-input:focus {
  border-color: #679F37;
  box-shadow: 0 0 0 2px #91C95A;
  background: #FFFFFF;
}
.gl-verify-btn {
  padding: 18px 32px;
  background: linear-gradient(135deg, #234B1E 0%, #4F8A2B 48%, #91C95A 100%);
  color: #FFFFFF;
  font-family: var(--fM); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  border: none; cursor: pointer;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: filter 0.25s; white-space: nowrap; min-width: 148px;
}
.gl-verify-btn:hover:not(:disabled) { filter: brightness(1.12); }
.gl-verify-btn:disabled { opacity: 0.52; cursor: not-allowed; }

/* ── Loading spinner ──────────────────────────────── */
.gl-spinner {
  width: 38px; height: 38px;
  border: 3px solid rgba(145,201,90,0.18);
  border-top-color: #91C95A;
  border-radius: 50%;
  animation: glSpin 0.75s linear infinite;
  margin: 0 auto;
}
@keyframes glSpin { to { transform: rotate(360deg); } }

/* ── Result card ──────────────────────────────────── */
.gl-result {
  margin-top: 26px; padding: 32px 28px;
  border: 1px solid transparent; border-radius: var(--radius-lg);
  text-align: center; display: none; animation: fadeUp 0.45s ease;
}
.gl-result.is-loading {
  display: flex; align-items: center; justify-content: center;
  min-height: 96px; background: transparent; border-color: transparent;
}
/* Valid: dark bio-green gradient */
.gl-result.is-valid {
  display: block;
  background: linear-gradient(135deg, #163D1B 0%, #234B1E 55%, #4F8A2B 100%);
  border: 1px solid #91C95A;
}
/* Invalid: dark sober red */
.gl-result.is-invalid {
  display: block;
  background: #2A1412;
  border: 1px solid #E58B82;
}

.gl-result-icon-wrap { margin-bottom: 18px; line-height: 0; }

.gl-result-headline {
  font-family: var(--fD);
  font-size: clamp(1.55rem, 3vw, 2.10rem);
  letter-spacing: 0.12em;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 22px;
  line-height: 1.1;
}

.gl-result-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  text-align: left;
  border-top: 1px solid rgba(145,201,90,0.25);
  padding-top: 20px; margin-top: 4px;
}
.is-invalid .gl-result-grid { border-top-color: rgba(229,139,130,0.25); }

.gl-result-field label {
  display: block; font-family: var(--fM);
  font-size: 0.52rem; letter-spacing: 0.28em;
  color: rgba(255,255,255,0.50); text-transform: uppercase; margin-bottom: 3px;
}
.gl-result-field span { font-family: var(--fM); font-size: 0.80rem; color: #FFFFFF; }
.gl-result-msg {
  font-size: 0.84rem; color: rgba(255,255,255,0.70);
  line-height: 1.75; margin-top: 4px;
}
.gl-result-brand {
  margin-top: 20px;
  font-family: var(--fM);
  font-size: 0.54rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(145,201,90,0.70);
}

/* ── App Section ──────────────────────────────────── */
.gl-app-layout { margin-top: 56px; text-align: center; }
.gl-app-label {
  font-family: var(--fM); font-size: 0.56rem; letter-spacing: 0.24em;
  color: var(--muted); text-transform: uppercase; margin-bottom: 32px;
}
.gl-app-content {
  display: flex; align-items: center; justify-content: center; gap: 52px; flex-wrap: wrap;
}

/* ── Phone mockup — premium redesign ─────────────── */
.gl-phone-mockup {
  flex-shrink: 0;
  animation: phoneFloat 3.8s ease-in-out infinite;
  filter: drop-shadow(0 24px 40px rgba(79,138,43,0.20));
}
@keyframes phoneFloat {
  0%,100% { transform: translateY(0) rotate(-1.5deg); }
  50%      { transform: translateY(-12px) rotate(-1.5deg); }
}
.gl-phone-frame {
  width: 174px; height: 318px;
  border: 1.5px solid rgba(79,138,43,0.48);
  border-radius: 30px;
  background: #060D08;
  position: relative;
  padding: 8px 9px 10px;
  box-shadow:
    0 0 0 1px rgba(5,8,7,0.90),
    0 0 0 2.5px rgba(79,138,43,0.12),
    0 24px 56px rgba(0,0,0,0.75),
    inset 0 1px 0 rgba(145,201,90,0.10);
}
/* Side shine */
.gl-phone-frame::after {
  content: '';
  position: absolute;
  top: 18px; right: -1px;
  width: 2px; height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(145,201,90,0.28), transparent);
  border-radius: 2px;
  pointer-events: none;
}
/* Dynamic island notch */
.gl-phone-notch {
  width: 44px; height: 9px;
  background: #060D08;
  border: 1px solid rgba(79,138,43,0.22);
  border-top: none;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 5px;
}
/* Screen */
.gl-phone-screen {
  height: calc(100% - 14px);
  display: flex;
  flex-direction: column;
  padding: 0 3px 3px;
}
/* Top bar */
.gl-phone-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 4px 5px;
}
.gl-phone-app-name {
  font-family: var(--fD);
  font-size: 0.70rem;
  letter-spacing: 0.10em;
  color: rgba(199,208,203,0.82);
}
.gl-phone-status-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #91C95A;
  box-shadow: 0 0 5px rgba(145,201,90,0.85), 0 0 10px rgba(145,201,90,0.35);
}
/* Separator */
.gl-phone-divider {
  height: 1px;
  background: rgba(79,138,43,0.20);
  margin-bottom: 8px;
}
/* Main result card */
.gl-phone-verify-result {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 8px;
  background: linear-gradient(155deg, rgba(22,61,27,0.60) 0%, rgba(6,13,8,0.30) 100%);
  border: 1px solid rgba(79,138,43,0.26);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
/* Green radial glow behind checkmark */
.gl-phone-verify-result::before {
  content: '';
  position: absolute;
  top: 38%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90px; height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(145,201,90,0.16) 0%, transparent 70%);
  pointer-events: none;
}
/* Check ring */
.gl-phone-check-ring {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid #91C95A;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(145,201,90,0.32), inset 0 0 8px rgba(145,201,90,0.08);
  margin-bottom: 3px;
}
.gl-phone-check-ico {
  font-size: 1.1rem;
  color: #91C95A;
  line-height: 1;
  text-shadow: 0 0 8px rgba(145,201,90,0.60);
}
.gl-phone-check-label {
  font-family: var(--fM);
  font-size: 0.45rem;
  letter-spacing: 0.22em;
  color: #91C95A;
  text-transform: uppercase;
}
.gl-phone-check-product {
  font-family: var(--fD);
  font-size: 0.90rem;
  color: #E3E8E5;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-shadow: 0 1px 8px rgba(0,0,0,0.60);
}
.gl-phone-check-meta {
  font-family: var(--fM);
  font-size: 0.40rem;
  color: rgba(199,208,203,0.40);
  letter-spacing: 0.12em;
  margin-top: 1px;
}
/* Scan bar at the bottom */
.gl-phone-scan-bar {
  margin-top: 8px;
  height: 12px;
  border-radius: 6px;
  background: rgba(79,138,43,0.07);
  border: 1px solid rgba(79,138,43,0.14);
  overflow: hidden;
  position: relative;
}
.gl-phone-scan-line {
  position: absolute;
  top: 0; left: -70%;
  width: 65%;
  height: 100%;
  background: linear-gradient(to right,
    transparent,
    rgba(145,201,90,0.28),
    rgba(199,208,203,0.18),
    rgba(145,201,90,0.28),
    transparent
  );
  animation: glPhoneScan 2.4s ease-in-out infinite;
}
@keyframes glPhoneScan {
  0%   { left: -70%; }
  100% { left: 165%; }
}
.gl-badges-col { display: flex; flex-direction: column; gap: 14px; }
.gl-store-badge {
  display: flex; align-items: center; gap: 14px; padding: 13px 28px;
  background: #fff; border: 1.5px solid #d0d0d0;
  border-radius: var(--radius); text-decoration: none; min-width: 188px;
  position: relative; transition: box-shadow 0.22s, border-color 0.22s;
}
a.gl-store-badge:hover {
  box-shadow: 0 4px 22px rgba(79,138,43,0.28);
  border-color: var(--accent);
}
.gl-store-name {
  font-size: 1.22rem; font-weight: 700; color: #111;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; letter-spacing: -0.01em;
}
.gl-store-soon { opacity: 0.40; cursor: default; pointer-events: none; }
.gl-soon-chip {
  position: absolute; top: -10px; right: 8px;
  font-family: var(--fM); font-size: 0.44rem; letter-spacing: 0.18em;
  color: var(--accent-mid);
  border: 1px solid rgba(79,138,43,0.40);
  background: var(--bg); padding: 2px 8px; border-radius: 4px; white-space: nowrap;
}

/* ── Próximamente ─────────────────────────────────── */
.gl-upcoming { padding: 110px 60px 80px; background: rgba(10,22,13,0.70); }
.gl-launch-meta {
  display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 18px;
}
.gl-launch-badge {
  font-family: var(--fM); font-size: 0.54rem; letter-spacing: 0.26em;
  color: var(--accent-mid);
  border: 1px solid rgba(79,138,43,0.38); border-radius: 4px; padding: 4px 12px;
}
.gl-launch-count { font-family: var(--fM); font-size: 0.54rem; letter-spacing: 0.22em; color: var(--muted); }
.gl-upcoming-featured {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-bottom: 28px;
}
.gl-upcoming-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; position: relative;
}
.gl-upcoming-img {
  width: 100%; aspect-ratio: 3/2; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; background: #060a08;
}
.gl-upcoming-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: blur(5px) brightness(0.25) saturate(0.4); transform: scale(1.08); transition: filter 0.5s;
}
.gl-upcoming-card:hover .gl-upcoming-img img { filter: blur(4px) brightness(0.35) saturate(0.5); }
.gl-upcoming-overlay-badge {
  position: absolute; z-index: 2;
  font-family: var(--fM); font-size: 0.56rem; letter-spacing: 0.28em;
  color: var(--accent-lt);
  border: 1px solid rgba(79,138,43,0.52); border-radius: 4px;
  padding: 5px 14px; background: rgba(5,8,7,0.82); white-space: nowrap;
}
.gl-badge-sm { font-size: 0.48rem; padding: 3px 10px; }
.gl-upcoming-body { padding: 14px 18px 18px; border-top: 1px solid var(--border); }
.gl-upcoming-ref {
  font-family: var(--fM); font-size: 0.50rem; letter-spacing: 0.20em;
  color: rgba(79,138,43,0.52); text-transform: uppercase; display: block; margin-bottom: 6px;
}
.gl-upcoming-name { font-family: var(--fD); font-size: 1.35rem; letter-spacing: 0.04em; color: var(--text); }

/* Carousel */
.gl-carousel-wrap { margin-top: 12px; }
.gl-carousel {
  display: flex; gap: 14px; overflow-x: auto; padding-bottom: 14px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: rgba(79,138,43,0.20) transparent;
}
.gl-carousel::-webkit-scrollbar { height: 3px; }
.gl-carousel::-webkit-scrollbar-track { background: transparent; }
.gl-carousel::-webkit-scrollbar-thumb { background: rgba(79,138,43,0.22); border-radius: 3px; }
.gl-carousel-card {
  flex: 0 0 180px; scroll-snap-align: start;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.gl-carousel-img {
  width: 100%; aspect-ratio: 1; position: relative; overflow: hidden;
  background: #060a08; display: flex; align-items: center; justify-content: center;
}
.gl-carousel-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: blur(4px) brightness(0.22) saturate(0.3); transform: scale(1.08);
}
.gl-carousel-img .gl-card-sku-bg { font-size: 3.2rem; }
.gl-carousel-name {
  font-family: var(--fD); font-size: 1.05rem; letter-spacing: 0.04em;
  color: var(--text); padding: 10px 12px; border-top: 1px solid var(--border);
}
.gl-carousel-hint {
  font-family: var(--fM); font-size: 0.48rem; letter-spacing: 0.22em;
  color: rgba(199,208,203,0.18); text-transform: uppercase; text-align: center; margin-top: 10px;
}

/* ── Distribuidores ───────────────────────────────── */
.gl-distributor { padding: 80px 60px; background: rgba(5,8,7,0.82); border-top: 1px solid var(--border); }
.gl-distributor-inner { max-width: 1020px; margin: 0 auto; }
.gl-dist-header { margin-bottom: 36px; }
.gl-dist-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.gl-dist-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 32px; display: flex; align-items: flex-start; gap: 28px;
}
.gl-dist-region {
  font-family: var(--fM); font-size: 0.46rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--accent-mid); margin-bottom: 5px; opacity: 0.80;
}
.gl-dist-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(79,138,43,0.32); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--accent-lt); font-size: 1.1rem;
}
.gl-dist-info { flex: 1; }
.gl-dist-name { font-family: var(--fD); font-size: 1.35rem; letter-spacing: 0.06em; color: var(--text); margin-bottom: 4px; }
.gl-dist-role {
  font-family: var(--fM); font-size: 0.56rem; letter-spacing: 0.28em;
  color: var(--accent-mid); text-transform: uppercase; margin-bottom: 16px;
}
.gl-dist-phone {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--fM); font-size: 0.82rem; color: var(--text);
  background: rgba(79,138,43,0.08); border: 1px solid rgba(79,138,43,0.22);
  border-radius: var(--radius-sm); padding: 10px 18px; margin-bottom: 14px;
  transition: background 0.22s, border-color 0.22s; text-decoration: none;
}
.gl-dist-phone:hover { background: rgba(79,138,43,0.14); border-color: var(--border-h); }
.gl-dist-desc {
  font-family: var(--fM); font-size: 0.56rem; letter-spacing: 0.06em;
  color: rgba(199,208,203,0.40); margin-bottom: 14px; line-height: 1.7;
}
.gl-dist-countries { display: flex; flex-wrap: wrap; gap: 8px; }
.gl-dist-country {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fM); font-size: 0.52rem; letter-spacing: 0.14em;
  color: var(--muted); border: 1px solid var(--border); border-radius: 4px;
  padding: 4px 12px 4px 8px; text-transform: uppercase;
}
.gl-dist-country img { width: 20px; height: auto; border-radius: 2px; display: block; flex-shrink: 0; }

/* ═══════════════════ PRODUCT MODAL (glpm) ═══════════════════════════
   Premium showcase — large stage, idle float, dynamic depth lighting.
   ════════════════════════════════════════════════════════════════════ */
.glpm {
  position: fixed; inset: 0; z-index: 15000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.45s ease;
}
.glpm.is-open { opacity: 1; pointer-events: auto; }

.glpm-bg {
  position: absolute; inset: 0;
  background: rgba(2,5,3,0.94);
  backdrop-filter: blur(32px) saturate(1.5);
  -webkit-backdrop-filter: blur(32px) saturate(1.5);
}

.glpm-inner {
  position: relative; z-index: 1;
  width: min(960px, 96vw);
  max-height: 92dvh; overflow: hidden;
  background: linear-gradient(168deg, rgba(16,32,18,0.99) 0%, rgba(5,10,7,1.0) 100%);
  border: 1px solid rgba(79,138,43,0.26);
  border-radius: 28px;
  box-shadow:
    0 80px 160px rgba(0,0,0,0.90),
    0 0 0 1px rgba(79,138,43,0.08),
    0 0 60px rgba(79,138,43,0.04),
    inset 0 1px 0 rgba(145,201,90,0.12);
  transform: scale(0.84) translateY(40px);
  filter: blur(4px);
  transition: transform 0.60s cubic-bezier(0.16,1,0.3,1), filter 0.45s ease;
}
.glpm.is-open .glpm-inner { transform: scale(1) translateY(0); filter: blur(0); }

/* 2-column layout */
.glpm-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.glpm-stage-col {
  border-right: 1px solid rgba(79,138,43,0.14);
  position: relative; overflow: hidden;
}
.glpm-info-col {
  overflow-y: auto; max-height: 92dvh;
  scrollbar-width: thin;
  scrollbar-color: rgba(79,138,43,0.35) transparent;
}
.glpm-info-col::-webkit-scrollbar { width: 3px; }
.glpm-info-col::-webkit-scrollbar-thumb { background: rgba(79,138,43,0.35); border-radius: 2px; }
.glpm-info-col::-webkit-scrollbar-track { background: transparent; }

/* Close button */
.glpm-close {
  position: absolute; top: 20px; right: 20px; z-index: 20;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(199,208,203,0.08); border: 1px solid rgba(199,208,203,0.14);
  color: rgba(199,208,203,0.55); cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.glpm-close:hover { background: rgba(199,208,203,0.14); color: var(--text); border-color: var(--border-h); }

/* Stage wrap */
.glpm-stage-wrap {
  position: relative;
  padding: 44px 24px 0;
  height: 100%; min-height: 560px;
  display: flex; flex-direction: column; align-items: center;
  background:
    radial-gradient(ellipse 90% 70% at 50% 40%, rgba(79,138,43,0.18) 0%, rgba(79,138,43,0.04) 55%, transparent 75%),
    radial-gradient(ellipse 55% 38% at 22% 18%, rgba(145,201,90,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 55% 38% at 78% 22%, rgba(145,201,90,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 25% at 50% 95%, rgba(79,138,43,0.12) 0%, transparent 70%);
  overflow: hidden;
}
.glpm-ambient {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    radial-gradient(circle 120px at 12% 25%, rgba(145,201,90,0.06) 0%, transparent 100%),
    radial-gradient(circle 100px at 88% 18%, rgba(79,138,43,0.07) 0%, transparent 100%),
    radial-gradient(circle 150px at 50% 88%, rgba(79,138,43,0.06) 0%, transparent 100%);
  animation: glpm-pulse 4s ease-in-out infinite alternate;
}
@keyframes glpm-pulse {
  from { opacity: 0.8; }
  to   { opacity: 1.0; }
}

/* 3-D stage */
.glpm-stage {
  perspective: 1200px; perspective-origin: 50% 50%;
  width: 400px; height: 400px; margin: 0 auto;
  cursor: grab; user-select: none; touch-action: none;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.glpm-stage:active { cursor: grabbing; }
.glpm-img3d {
  transform-style: preserve-3d; will-change: transform;
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 340px; height: 340px;
}
.glpm-sku-bg {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--fD); font-size: 7rem; letter-spacing: 0.04em;
  color: var(--accent); opacity: 0.07; pointer-events: none; z-index: 0;
}
.glpm-img {
  position: relative; z-index: 1;
  width: 300px; height: 300px; object-fit: contain; display: block;
  pointer-events: none; user-select: none;
  filter:
    drop-shadow(0 44px 64px rgba(0,0,0,0.82))
    drop-shadow(0 0 40px rgba(79,138,43,0.18));
}
.glpm-shine {
  position: absolute; inset: -20px; z-index: 2;
  pointer-events: none; border-radius: 24px; opacity: 0.5;
}

/* Holographic platform rings */
.glpm-platform-wrap {
  position: relative;
  width: 300px; height: 80px;
  margin: -12px auto 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.glpm-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(145,201,90,0.35);
  animation: ring-scan 3.2s ease-in-out infinite;
}
.glpm-ring--1 { width: 260px; height: 36px; animation-delay: 0s;    opacity: 0.70; }
.glpm-ring--2 { width: 200px; height: 28px; animation-delay: 0.55s; opacity: 0.50; border-color: rgba(145,201,90,0.22); }
.glpm-ring--3 { width: 130px; height: 18px; animation-delay: 1.10s; opacity: 0.35; border-color: rgba(145,201,90,0.15); }
@keyframes ring-scan {
  0%,100% { transform: scaleX(1)    scaleY(1);    opacity: inherit; }
  50%      { transform: scaleX(1.06) scaleY(1.12); filter: drop-shadow(0 0 6px rgba(145,201,90,0.4)); }
}
.glpm-platform-glow {
  position: absolute; bottom: 0;
  width: 260px; height: 40px;
  background:
    radial-gradient(ellipse 100% 100% at 50% 100%, rgba(79,138,43,0.35) 0%, rgba(79,138,43,0.08) 50%, transparent 70%),
    radial-gradient(ellipse 70% 40% at 50% 100%, rgba(145,201,90,0.14) 0%, transparent 80%);
  pointer-events: none; filter: blur(2px);
}

/* Drag hint */
.glpm-drag-hint {
  display: flex; align-items: flex-end; justify-content: center; gap: 7px;
  font-family: var(--fM); font-size: 0.44rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: rgba(199,208,203,0.28);
  flex-grow: 1; padding-bottom: 28px; transition: opacity 1.0s ease;
}

/* Product info column */
.glpm-info { padding: 48px 28px 28px; }
.glpm-tag {
  display: inline-block; font-family: var(--fM);
  font-size: 0.50rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--border); border-radius: 4px;
  padding: 3px 8px; margin-bottom: 14px;
}
.glpm-name {
  font-family: var(--fD); font-size: clamp(2.0rem, 3.5vw, 2.8rem);
  letter-spacing: 0.05em; color: var(--text); line-height: 1.05;
  margin: 0 0 7px;
}
.glpm-generic {
  font-family: var(--fM); font-size: 0.60rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.glpm-detail {
  font-family: var(--fM); font-size: 0.64rem;
  color: rgba(199,208,203,0.30); letter-spacing: 0.08em; margin-bottom: 18px;
}
.glpm-ref {
  font-family: var(--fM); font-size: 0.48rem; letter-spacing: 0.20em;
  text-transform: uppercase; color: var(--accent-mid);
  opacity: 0.65; margin-bottom: 20px;
}
.glpm-section { margin-bottom: 18px; }
.glpm-section-label {
  font-family: var(--fM); font-size: 0.42rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--accent-mid);
  opacity: 0.70; margin-bottom: 8px;
}
.glpm-benefits {
  display: flex; flex-direction: column; gap: 5px;
  padding: 14px 16px;
  background: rgba(79,138,43,0.06);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(79,138,43,0.18);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(145,201,90,0.08), 0 4px 24px rgba(0,0,0,0.18);
  animation: glpm-bnf-in 0.35s ease both;
}
@keyframes glpm-bnf-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.glpm-benefit-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--fM); font-size: 0.56rem; letter-spacing: 0.05em;
  color: rgba(199,208,203,0.65); padding: 2px 0; line-height: 1.5;
}
.glpm-benefit-dot {
  flex-shrink: 0; margin-top: 5px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent-mid);
  box-shadow: 0 0 6px rgba(145,201,90,0.55);
}
.glpm-usage {
  font-family: var(--fB); font-size: 0.72rem; line-height: 1.70;
  color: rgba(199,208,203,0.58); letter-spacing: 0.01em;
  padding: 12px 16px;
  border-left: 2px solid rgba(79,138,43,0.35);
  background: rgba(79,138,43,0.04);
  border-radius: 0 8px 8px 0;
}
.glpm-auth {
  display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
  background: transparent; border: 1px solid rgba(79,138,43,0.35);
  border-radius: var(--radius); padding: 14px 24px;
  font-family: var(--fM); font-size: 0.60rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent-lt);
  transition: background 0.22s, border-color 0.22s;
  width: 100%; justify-content: center; margin-top: 8px;
}
.glpm-auth:hover { background: rgba(79,138,43,0.10); border-color: var(--accent); }

/* Mobile: single column */
@media (max-width: 680px) {
  .glpm { overflow: hidden; align-items: flex-end; padding-top: 0; }
  .glpm-inner {
    border-radius: 20px 20px 0 0;
    height: 90dvh;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    width: 100%;
    max-width: 100%;
  }
  .glpm-layout { grid-template-columns: 1fr; min-height: 0; }
  .glpm-stage-col { border-right: none; border-bottom: 1px solid rgba(79,138,43,0.14); }
  .glpm-stage-wrap { min-height: 0; padding: 16px 20px 10px; height: auto; }
  .glpm-stage { width: 150px; height: 150px; }
  .glpm-img3d { width: 130px; height: 130px; }
  .glpm-img   { width: 110px; height: 110px; }
  .glpm-platform-wrap { display: none; }
  .glpm-ambient { display: none; }
  .glpm-drag-hint { display: none; }
  .glpm-info-col { max-height: unset; overflow-y: visible; scrollbar-width: none; }
  .glpm-info-col::-webkit-scrollbar { display: none; }
  .glpm-info { padding: 16px 20px 28px; }
  .glpm-name { font-size: clamp(1.4rem, 6.5vw, 1.9rem); margin-bottom: 4px; }
  .glpm-detail { margin-bottom: 8px; }
  .glpm-ref { margin-bottom: 10px; }
  .glpm-section { margin-bottom: 10px; }
}

/* ── Enhanced Product Card ──────────────────────── */
/* will-change only on hover — avoids GPU layers for all 24+ cards at rest */
.gl-card:hover { will-change: transform; }

/* Holographic shine overlay (injected by JS) */
.gl-card-holo {
  position: absolute; inset: 0; border-radius: var(--radius);
  pointer-events: none; opacity: 0;
  transition: opacity 0.25s ease;
  mix-blend-mode: screen; z-index: 3;
}

/* Image lifts on card hover */
.gl-card-img img {
  transition: transform 0.55s cubic-bezier(0.16,1,0.3,1),
              filter 0.55s ease;
  will-change: transform;
}
.gl-card:hover .gl-card-img img {
  filter: brightness(1.05) saturate(1.08);
}

/* Mobile tap feedback */
@media (hover: none) {
  .gl-card:active {
    transform: scale(0.975) !important;
    transition: transform 0.1s ease !important;
  }
  /* Show ref label on touch — indicates card is tappable */
  .gl-card-ref { opacity: 0.38; transform: translateY(0); }
  /* Subtle tap indicator dot */
  .gl-card-body::after {
    content: '';
    position: absolute; bottom: 14px; right: 16px;
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--accent-mid); opacity: 0.55;
  }
}

/* Enhanced scroll reveal — add subtle scale + 3D entry */
.gl-reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.975);
  transition:
    opacity 0.96s cubic-bezier(0.25,0.46,0.45,0.94),
    transform 0.96s cubic-bezier(0.16,1,0.3,1);
  will-change: opacity, transform;
}
.gl-reveal.gl-visible { opacity: 1; transform: translateY(0) scale(1); }

/* ══════════════════ CORPORATE SECTION ══════════════════════════════ */
.gl-corporate {
  position: relative; overflow: hidden;
  padding: 120px 0 100px;
  background: radial-gradient(ellipse 80% 55% at 50% 0%, rgba(79,138,43,0.07) 0%, transparent 70%),
              var(--bg2);
  border-top: 1px solid var(--border);
}
.gl-corp-bg-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(79,138,43,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,138,43,0.022) 1px, transparent 1px);
  background-size: 68px 68px;
}
.gl-corp-inner { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.gl-corp-header { text-align: center; margin-bottom: 72px; }
.gl-corp-title {
  font-family: var(--fB); font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 800; line-height: 1.0; text-transform: uppercase; letter-spacing: -0.025em;
  color: var(--text); margin: 16px 0 24px;
}
.gl-corp-title em { font-style: normal; color: var(--accent-lt); display: block; }
.gl-corp-body {
  font-size: clamp(0.88rem, 1.5vw, 1rem); color: var(--muted);
  line-height: 1.85; max-width: 640px; margin: 0 auto; font-weight: 300;
}
.gl-corp-cards {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-bottom: 52px;
}
.gl-corp-card {
  position: relative; overflow: hidden;
  background: linear-gradient(145deg, rgba(35,75,30,0.20) 0%, rgba(12,23,15,0.92) 100%);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 34px 26px 30px; cursor: default; will-change: transform;
  transition: transform 0.52s ease, border-color 0.4s, box-shadow 0.4s;
}
.gl-corp-card-shine {
  position: absolute; inset: -120% 0; width: 55%; height: 200%;
  background: linear-gradient(105deg, transparent, rgba(145,201,90,0.06) 50%, transparent);
  transition: inset 0.75s ease; pointer-events: none; transform: skewX(-15deg);
}
.gl-corp-card:hover .gl-corp-card-shine { inset: -120% -180%; }
.gl-corp-card:hover {
  border-color: var(--border-h);
  box-shadow: 0 14px 40px rgba(0,0,0,0.48), 0 0 24px -4px rgba(79,138,43,0.12);
}
.gl-corp-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0); transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.gl-corp-card:hover::before { transform: scaleX(1); }
.gl-corp-card-icon {
  font-size: 1.7rem; line-height: 1; margin-bottom: 20px; display: block;
}
.gl-corp-card h3 {
  font-family: var(--fB); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.10em; color: var(--accent-lt); margin: 0 0 12px;
}
.gl-corp-card p {
  font-size: 0.80rem; color: rgba(199,208,203,0.55); line-height: 1.76; margin: 0; font-weight: 300;
}
.gl-corp-footer {
  text-align: center; font-family: var(--fM); font-size: 0.46rem;
  letter-spacing: 0.40em; text-transform: uppercase; color: rgba(199,208,203,0.22);
}

/* gl-webgl.css adds .gl-corporate to z-index stack; mirror it here for non-WebGL */
body.home .gl-corporate { position: relative; z-index: 15; background-color: var(--void-black, var(--bg)); }

/* ── Footer ───────────────────────────────────────── */
.gl-footer {
  position: relative; overflow: hidden;
  padding: 80px 60px 0;
  background: rgba(5,8,7,0.97);
  border-top: 1px solid var(--border);
}
/* Subtle world-map grid */
.gl-footer::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(ellipse 120% 60% at 50% 50%, rgba(79,138,43,0.035) 0%, transparent 70%),
    linear-gradient(rgba(79,138,43,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,138,43,0.018) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
}
.gl-footer-inner { position: relative; z-index: 1; }
.gl-footer-top {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px; margin-bottom: 0; border-bottom: 1px solid var(--border);
}
.gl-footer-brand {}
.gl-footer-logo { font-family: var(--fD); font-size: 2.2rem; letter-spacing: 0.1em; color: var(--text); }
.gl-footer-logo span { color: var(--accent-mid); }
.gl-footer-tagline {
  margin-top: 8px; font-family: var(--fM);
  font-size: 0.58rem; letter-spacing: 0.22em; color: var(--muted); text-transform: uppercase;
}
.gl-footer-socials { display: flex; gap: 12px; margin-top: 22px; }
.gl-footer-social {
  width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none; transition: border-color 0.2s, color 0.2s;
}
.gl-footer-social:hover { border-color: var(--border-h); color: var(--accent-lt); }
.gl-footer-col {}
.gl-footer-col-title {
  font-family: var(--fM); font-size: 0.52rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--accent-mid); margin: 0 0 20px; font-weight: 700;
}
.gl-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.gl-footer-col ul a {
  font-family: var(--fM); font-size: 0.60rem; letter-spacing: 0.14em;
  color: rgba(199,208,203,0.40); text-transform: uppercase;
  text-decoration: none; transition: color 0.2s;
}
.gl-footer-col ul a:hover { color: var(--text); }
.gl-footer-lang {
  display: flex; justify-content: center; padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.gl-lang-footer-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: none; border: 1px solid rgba(199,208,203,0.12); border-radius: 24px;
  color: rgba(199,208,203,0.40); padding: 10px 20px; cursor: pointer;
  font-family: var(--fM); font-size: 0.52rem; letter-spacing: 0.18em; text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}
.gl-lang-footer-btn:hover { border-color: rgba(79,138,43,0.35); color: var(--text); }
.gl-lang-footer-btn svg { opacity: 0.55; }
.gl-footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0 32px;
}
.gl-footer-copy { font-family: var(--fM); font-size: 0.58rem; color: rgba(199,208,203,0.16); letter-spacing: 0.08em; }
.gl-footer-disclaimer {
  font-size: 0.56rem; color: rgba(199,208,203,0.11);
  max-width: 360px; text-align: right; line-height: 1.8;
}

/* ── Language Globe Button (nav) ──────────────────── */
.gl-lang-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 1px solid rgba(199,208,203,0.14); border-radius: 20px;
  color: rgba(199,208,203,0.55); padding: 6px 12px; cursor: pointer;
  font-family: var(--fM); font-size: 0; transition: border-color 0.2s, color 0.2s;
}
.gl-lang-btn:hover { border-color: rgba(79,138,43,0.35); color: var(--text); }

/* ── Language Selection Modal ─────────────────────── */
.gl-lang-modal {
  position: fixed; inset: 0; z-index: 20000;
  background: rgba(5,8,7,0.82); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.28s ease;
}
.gl-lang-modal.is-open { opacity: 1; pointer-events: auto; }
.gl-lang-modal-inner {
  background: linear-gradient(145deg, #111e14, #0a130c);
  border: 1px solid rgba(79,138,43,0.20); border-radius: 22px;
  padding: 40px 44px; max-width: 460px; width: 90%;
  transform: scale(0.93) translateY(12px);
  transition: transform 0.32s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.62), 0 0 0 1px rgba(79,138,43,0.10);
}
.gl-lang-modal.is-open .gl-lang-modal-inner { transform: scale(1) translateY(0); }
.gl-lang-modal-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px;
}
.gl-lang-modal-header h3 {
  font-family: var(--fM); font-size: 0.50rem; font-weight: 700;
  letter-spacing: 0.35em; text-transform: uppercase; color: rgba(199,208,203,0.40); margin: 0;
}
.gl-lang-modal-close {
  background: none; border: none; color: rgba(199,208,203,0.30);
  font-size: 1.1rem; cursor: pointer; padding: 2px 8px; line-height: 1;
  transition: color 0.2s; border-radius: 4px;
}
.gl-lang-modal-close:hover { color: var(--text); }
.gl-lang-options { display: flex; flex-direction: column; gap: 3px; }
.gl-lang-option {
  display: flex; align-items: center; gap: 14px; background: none; border: none;
  border-radius: 12px; padding: 14px 16px; cursor: pointer; text-align: left; width: 100%;
  transition: background 0.18s; position: relative;
}
.gl-lang-option:hover { background: rgba(79,138,43,0.08); }
.gl-lang-option.active { background: rgba(79,138,43,0.11); }
.gl-lang-flag { font-size: 1.55rem; line-height: 1; flex-shrink: 0; }
.gl-lang-region { flex: 1; font-family: var(--fB); font-size: 0.90rem; font-weight: 400; color: rgba(199,208,203,0.80); }
.gl-lang-option.active .gl-lang-region { color: var(--text); }
.gl-lang-check {
  color: var(--accent-lt); font-size: 0.80rem;
  opacity: 0; transition: opacity 0.18s; flex-shrink: 0;
}
.gl-lang-option.active .gl-lang-check { opacity: 1; }

/* Enhanced .gl-card shimmer */
.gl-card::after {
  content: ''; position: absolute; top: 0; left: -110%; width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(145,201,90,0.05) 50%, transparent);
  transition: left 0.78s ease; pointer-events: none; transform: skewX(-10deg);
}
.gl-card:hover::after { left: 155%; }

/* ── Animations ───────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scrollPulse {
  0%   { transform: scaleY(0.04); opacity: 0; }
  28%  { transform: scaleY(1);    opacity: 1; }
  65%  { transform: scaleY(1);    opacity: 0.88; }
  100% { transform: scaleY(0.04); opacity: 0; }
}
@keyframes glScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* .gl-reveal is defined above in the Enhanced Product Card section */

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 900px) {
  .gl-nav, .gl-nav.scrolled {
    padding: 18px 28px;
    padding-top: max(18px, env(safe-area-inset-top, 0px));
  }
  .gl-catalog, .gl-verify, .gl-upcoming, .gl-distributor { padding: 72px 28px; }
  .gl-strip { grid-template-columns: 1fr; gap: 36px; padding: 56px 28px; }
  .gl-strip-sep { display: none; }
  .gl-strip-item { text-align: left; padding: 0; }
  .gl-footer { padding: 56px 28px 0; }
  .gl-footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gl-footer-bottom { flex-direction: column; gap: 10px; padding: 20px 0 28px; }
  .gl-footer-disclaimer { text-align: left; max-width: none; }
  .gl-hud { display: none; }
  .gl-app-content { gap: 32px; }
  .gl-upcoming-featured { grid-template-columns: 1fr 1fr; }
  .gl-corp-cards { grid-template-columns: 1fr 1fr; gap: 14px; }
  .gl-dist-cards { grid-template-columns: 1fr; }
  .gl-corp-inner { padding: 0 28px; }
}
@media (max-width: 640px) {
  /* Reduce expensive backdrop-filter on small screens */
  .glpm-bg { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
  .gl-products { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gl-tab { padding: 12px 18px; font-size: 0.60rem; }
  .gl-verify-form { flex-direction: column; }
  .gl-verify-input { border-right: 1px solid #C7D0CB; border-bottom: none; border-radius: var(--radius) var(--radius) 0 0; }
  .gl-verify-btn { border-radius: 0 0 var(--radius) var(--radius); min-width: 100%; }
  .gl-result-grid { grid-template-columns: 1fr; }
  .gl-nav-links a:not(.gl-nav-cta) { display: none; }
  .gl-upcoming-featured { grid-template-columns: 1fr; }
  .gl-dist-card { flex-direction: column; gap: 16px; }
  .gl-phone-mockup { display: none; }
  .gl-corp-cards { grid-template-columns: 1fr; }
  .gl-footer-top { grid-template-columns: 1fr; }
  .gl-lang-modal-inner { padding: 28px 24px; }
}
@media (max-width: 420px) {
  .gl-products { grid-template-columns: 1fr; }
}

/* ── Hero fallback responsive + safe areas ───────── */
@media (max-width: 768px) {
  /* Dynamic viewport height: fills screen correctly on mobile browsers */
  .gl-hero { height: 100dvh; min-height: 600px; }

  /* Dim the 2D molecule DNA on mobile — content is primary */
  .gl-hero #gl-molecule { opacity: 0.18; }

  /* Strengthen the dark overlay gradient on mobile */
  .gl-hero-overlay {
    background:
      radial-gradient(ellipse 85% 65% at 50% 100%, rgba(5,8,7,0.98) 0%, transparent 62%),
      radial-gradient(ellipse 100% 100% at 50% 50%,  rgba(5,8,7,0.55) 0%, transparent 65%),
      radial-gradient(ellipse 50% 42% at 14% 38%,    rgba(22,61,27,0.20) 0%, transparent 58%);
  }

  /* Scroll indicator: safe area + boosted visibility on mobile */
  .gl-scroll-down {
    bottom: max(44px, calc(env(safe-area-inset-bottom, 0px) + 32px));
  }
  .gl-scroll-down span {
    color: rgba(199,208,203,0.96);
    text-shadow: 0 0 8px rgba(145,201,90,0.18);
  }
  .gl-scroll-line {
    box-shadow: 0 0 14px rgba(79,138,43,0.68), 0 0 32px rgba(79,138,43,0.28);
  }
  .gl-scroll-chevrons svg {
    filter: drop-shadow(0 0 5px rgba(145,201,90,0.72));
  }

  /* Hide HUD decorative corners on mobile */
  .gl-hud { display: none; }

  /* Hero title: tighter responsive clamp for small screens */
  .gl-hero-title   { font-size: clamp(36px, 12vw, 72px); line-height: 0.90; }
  .gl-eyebrow      { font-size: 0.54rem; letter-spacing: 0.32em; margin-bottom: 24px; }
  .gl-hero-tagline { font-size: 0.58rem; letter-spacing: 0.30em; margin-top: 22px; }

  /* CTA: stack vertically for better tap target size on mobile */
  .gl-hero-cta  { margin-top: 40px; flex-direction: column; align-items: center; gap: 12px; }
  .gl-btn       { padding: 13px 36px; min-width: 200px; text-align: center; }

  /* Seal: reduce gap */
  .gl-hero-seal { margin-top: 28px; gap: 12px; }
  .gl-seal-text { font-size: 0.48rem; letter-spacing: 0.28em; }
}

@media (max-width: 430px) {
  .gl-hero-title { font-size: clamp(32px, 13vw, 60px); }
  .gl-hero-cta   { margin-top: 32px; }
}

@media (max-width: 375px) {
  .gl-hero-title { font-size: clamp(30px, 14vw, 52px); }
  .gl-eyebrow    { font-size: 0.50rem; letter-spacing: 0.26em; }
}

/* ── Narrow phone (≤ 380px) — tabs/catalog/section polish ── */
@media (max-width: 380px) {
  .gl-catalog { padding: 60px 20px 56px; }
  .gl-section-title { margin-bottom: 36px; }
  .gl-tab { padding: 10px 14px; font-size: 0.58rem; letter-spacing: 0.16em; }
  .gl-tabs { margin-bottom: 38px; }
  .gl-verify, .gl-upcoming, .gl-distributor { padding: 60px 20px; }
  .gl-strip { padding: 48px 20px; }
}

/* ── Very small screen (≤ 320px) — maximum compression ── */
@media (max-width: 320px) {
  .gl-catalog { padding: 52px 16px 48px; }
  .gl-section-title { font-size: clamp(26px, 11vw, 40px); margin-bottom: 28px; }
  .gl-tab { padding: 10px 12px; font-size: 0.54rem; letter-spacing: 0.12em; }
  .gl-verify, .gl-upcoming, .gl-distributor { padding: 52px 16px; }
  .gl-strip { padding: 44px 16px; }
  .gl-footer { padding: 44px 16px 0; }
  .gl-hero-title { font-size: clamp(26px, 14vw, 44px); }
  .gl-btn { padding: 12px 28px; min-width: 180px; }
}

/* ════════════════════════════════════════════════════
   PÁGINA PREVIEW / AVANCE  —  /preview
   Plantilla: page-preview.php
   ════════════════════════════════════════════════════ */

body.gl-preview-page {
  background: var(--bg);
  overflow: hidden;
  min-height: 100vh;
}

/* DNA molecule canvas: fixed fullscreen (overrides .gl-hero absolute) */
body.gl-preview-page #gl-molecule {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 2;
  pointer-events: none;
}

/* Right-side gradient veil: fade the DNA partially at bottom-right */
body.gl-preview-page .gl-pv-dna-veil {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    /* bottom fade */
    linear-gradient(to top, var(--bg) 0%, transparent 38%),
    /* left fade so text stays readable */
    linear-gradient(to right, var(--bg) 0%, rgba(5,8,7,0.72) 45%, transparent 65%);
}

/* Content overlay: fixed, left column */
.gl-pv-overlay {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  padding: 0 clamp(28px,5vw,72px);
  pointer-events: none;
}

.gl-pv-inner {
  max-width: 520px;
  width: 100%;
  pointer-events: auto;
}

/* Logo row */
.gl-pv-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}
.gl-pv-logo {
  width: 44px; height: 44px;
  object-fit: contain;
  filter: invert(1) brightness(0.80) saturate(1.1);
  opacity: 0.85;
}
.gl-pv-brand-name {
  font-family: var(--fM);
  font-size: 0.56rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(199,208,203,0.42);
}

/* Main headline */
.gl-pv-headline {
  font-family: var(--fB);
  font-size: clamp(2.0rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.022em;
  text-transform: uppercase;
  color: #E3E8E5;
  margin: 0 0 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.80);
}
.gl-pv-headline span { color: #4F8A2B; }

/* Subtitle */
.gl-pv-body {
  font-family: var(--fB);
  font-size: clamp(0.90rem, 1.3vw, 1.02rem);
  font-weight: 300;
  color: rgba(199,208,203,0.58);
  line-height: 1.72;
  margin: 0 0 32px;
}

/* Progress indicator */
.gl-pv-progress-wrap { margin-bottom: 16px; }
.gl-pv-progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.gl-pv-progress-label {
  font-family: var(--fM);
  font-size: 0.50rem;
  letter-spacing: 0.40em;
  text-transform: uppercase;
  color: #679F37;
}
.gl-pv-progress-pct {
  font-family: var(--fM);
  font-size: 0.82rem;
  color: #E3E8E5;
  letter-spacing: 0.06em;
}
.gl-pv-progress-track {
  height: 3px;
  background: rgba(137,147,142,0.16);
  border-radius: 2px;
  overflow: visible;
  position: relative;
}
.gl-pv-progress-fill {
  height: 100%;
  border-radius: 2px;
  position: relative;
  background: linear-gradient(90deg,
    #163D1B 0%,
    #4F8A2B 55%,
    #91C95A 85%,
    #C7D0CB 100%
  );
}
/* Chrome shimmer on fill */
.gl-pv-progress-fill::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to right, transparent 0%, rgba(227,232,229,0.40) 50%, transparent 100%);
  border-radius: 2px 2px 0 0;
}
/* Bright tip dot */
.gl-pv-progress-fill::before {
  content: '';
  position: absolute;
  right: -2px; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #C7D0CB;
  box-shadow: 0 0 6px rgba(199,208,203,0.70);
}

/* Caption under progress */
.gl-pv-secondary {
  font-family: var(--fM);
  font-size: 0.52rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(137,147,142,0.48);
  margin: 14px 0 32px;
}

/* Action buttons */
.gl-pv-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.gl-pv-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--fM);
  font-size: 0.60rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.20s, transform 0.20s;
  white-space: nowrap;
}
.gl-pv-btn:hover { opacity: 0.80; transform: translateY(-2px); }
.gl-pv-btn--primary {
  background: linear-gradient(135deg, #234B1E 0%, #4F8A2B 48%, #91C95A 100%);
  color: #FFFFFF;
  border: none;
}
.gl-pv-btn--ghost {
  background: transparent;
  color: rgba(199,208,203,0.72);
  border: 1px solid rgba(103,159,55,0.38);
}
.gl-pv-btn--ghost:hover {
  border-color: rgba(145,201,90,0.55);
  color: #C7D0CB;
}

/* Responsive: stack on narrow screens */
@media (max-width: 768px) {
  body.gl-preview-page { overflow-y: auto; }
  .gl-pv-overlay {
    position: relative;
    padding: 40px 24px 60px;
    align-items: flex-start;
  }
  .gl-pv-inner { max-width: 100%; }
  body.gl-preview-page #gl-molecule {
    opacity: 0.28;   /* dim DNA so text stays readable on mobile */
  }
  .gl-pv-headline { font-size: clamp(1.8rem, 10vw, 3rem); }
  .gl-pv-actions { flex-direction: column; }
  .gl-pv-btn { justify-content: center; }
}

/* ══════════════════════════════════════════════
   CONTACT SECTION  —  #contacto
   ══════════════════════════════════════════════ */

.gl-contact-section {
  padding: 120px 60px;
  background: rgba(5,8,7,0.86);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  text-align: center;
  z-index: 1;
}
.gl-contact-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(79,138,43,0.09) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.gl-contact-inner {
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Premium form card ── */
.gl-contact-section .gl-scan-frame {
  background: linear-gradient(160deg, rgba(8,18,10,0.98) 0%, rgba(4,10,6,1) 100%) !important;
  border: 1px solid rgba(79,138,43,0.25) !important;
  border-radius: 18px !important;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.72),
    0 0 0 1px rgba(0,0,0,0.45),
    inset 0 0 60px rgba(79,138,43,0.03) !important;
  position: relative !important;
  overflow: hidden !important;
  padding-top: 0 !important;
}
.gl-contact-section .gl-scan-frame::before { display: none !important; }
.gl-contact-section .gl-scan-frame::after { display: none !important; }
/* The wpcf7 form sits below the band — needs padding */
.gl-contact-section .gl-scan-frame .wpcf7 { padding: 24px 28px 28px; }

/* CF7 wrapper */
.gl-contact-section .wpcf7 { margin-top: 0; }
.gl-contact-section .wpcf7-form { text-align: left; }
.gl-contact-section .wpcf7-form br { display: none; }

/* Kill ALL stray elements & the response output white line */
.gl-contact-section .wpcf7-form p:empty,
.gl-contact-section .wpcf7-form p:blank { display: none !important; }
.gl-contact-section .wpcf7-form > p:first-child:not(:has(input)):not(:has(textarea)):not(:has(select)) { display: none !important; }

/* Nuke response output completely — white line culprit */
.gl-contact-section .wpcf7 .wpcf7-response-output,
.gl-contact-section .wpcf7-form .wpcf7-response-output,
.gl-contact-section div.wpcf7-response-output,
.wpcf7-response-output[aria-hidden="true"] {
  display: none !important;
  height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
}
.gl-contact-section .wpcf7-mail-sent-ok,
.gl-contact-section .wpcf7-validation-errors,
.gl-contact-section .wpcf7-mail-sent-ng {
  display: block !important; position: static !important;
  opacity: 1 !important; height: auto !important;
  overflow: visible !important; margin-top: 16px !important;
  padding: 12px 18px !important; border-radius: 6px !important;
  pointer-events: auto !important;
}

/* Labels */
.gl-contact-section .wpcf7-form label {
  display: block;
  font-family: var(--fM);
  font-size: 0.48rem;
  letter-spacing: 0.32em;
  color: #91C95A;
  text-transform: uppercase;
  margin-bottom: 7px;
  opacity: 0.75;
}

/* Field groups */
.gl-contact-section .wpcf7-form p { margin: 0 0 16px; }
.gl-contact-section .wpcf7-form p:last-of-type { margin-bottom: 0; }

/* ── Text / Email / Textarea / Select ── */
.gl-contact-section .wpcf7-form input[type="text"],
.gl-contact-section .wpcf7-form input[type="email"],
.gl-contact-section .wpcf7-form textarea,
.gl-contact-section .wpcf7-form select {
  width: 100% !important;
  background: rgba(3,8,4,0.90) !important;
  border: 1px solid rgba(58,122,34,0.45) !important;
  border-left: 3px solid #91C95A !important;
  border-radius: 0 10px 10px 0 !important;
  padding: 16px 48px 16px 18px !important;
  color: #D8E8DC !important;
  font-family: var(--fB) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  outline: none !important;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s !important;
  caret-color: #91C95A;
  box-sizing: border-box !important;
  max-width: 100% !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  display: block !important;
  -webkit-text-fill-color: #D8E8DC;
  letter-spacing: 0.01em !important;
}
.gl-contact-section .wpcf7-form input[type="text"]::placeholder,
.gl-contact-section .wpcf7-form input[type="email"]::placeholder,
.gl-contact-section .wpcf7-form textarea::placeholder {
  color: rgba(145,201,90,0.38) !important;
  -webkit-text-fill-color: rgba(145,201,90,0.38);
  font-size: 16px !important;
  letter-spacing: 0.02em !important;
}
/* Field icons — right side */
.gl-contact-section .wpcf7-form-control-wrap[data-name="your-name"] input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%234F8A2B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-color: rgba(3,8,4,0.90) !important;
}
.gl-contact-section .wpcf7-form-control-wrap[data-name="your-email"] input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%234F8A2B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-color: rgba(3,8,4,0.90) !important;
}
.gl-contact-section .wpcf7-form-control-wrap[data-name="your-message"] textarea {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234F8A2B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px top 18px !important;
  background-color: rgba(3,8,4,0.90) !important;
}
.gl-contact-section .wpcf7-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2391C95A' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  padding-right: 44px !important;
  cursor: pointer !important;
}
.gl-contact-section .wpcf7-form select option { background: #020804; color: #E0EAE4; }
.gl-contact-section .wpcf7-form input[type="text"]:focus,
.gl-contact-section .wpcf7-form input[type="email"]:focus,
.gl-contact-section .wpcf7-form textarea:focus,
.gl-contact-section .wpcf7-form select:focus {
  border-color: #5A9A30 !important;
  border-left-color: #B8E870 !important;
  background: #030A05 !important;
  box-shadow: 0 0 0 3px rgba(145,201,90,0.18), -3px 0 24px rgba(79,138,43,0.22) !important;
}
.gl-contact-section .wpcf7-form textarea { height: 140px !important; resize: none !important; line-height: 1.6 !important; }

/* Field spacing */
.gl-contact-section .wpcf7-form p { margin: 0 0 13px !important; }
.gl-contact-section .wpcf7-form p:last-of-type { margin-bottom: 0 !important; }

/* ── File upload ── */
.gl-contact-section .wpcf7-form .wpcf7-form-control-wrap[data-name="your-photo"],
.gl-contact-section .wpcf7-form .wpcf7-form-control-wrap[data-name="your-photos"] {
  display: block;
}
.gl-contact-section .wpcf7-form input[type="file"] {
  width: 100%;
  background: rgba(6,14,8,0.85);
  border: 1.5px dashed rgba(79,138,43,0.38);
  border-radius: 12px;
  padding: 20px 18px;
  color: rgba(145,201,90,0.60);
  font-family: var(--fM);
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  cursor: pointer;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  display: block;
  min-height: 72px;
}
.gl-contact-section .wpcf7-form input[type="file"]:hover {
  border-color: rgba(145,201,90,0.55);
  background: rgba(10,22,12,0.95);
  box-shadow: 0 0 20px rgba(79,138,43,0.10);
}
.gl-contact-section .wpcf7-form input[type="file"]::-webkit-file-upload-button,
.gl-contact-section .wpcf7-form input[type="file"]::file-selector-button {
  background: linear-gradient(135deg,rgba(35,75,30,0.8),rgba(79,138,43,0.6));
  border: 1px solid rgba(145,201,90,0.40);
  border-radius: 6px;
  color: #91C95A;
  font-family: var(--fM);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 14px;
  cursor: pointer;
  margin-right: 14px;
  -webkit-appearance: none;
  transition: background 0.2s;
}
.gl-contact-section .wpcf7-form input[type="file"]::-webkit-file-upload-button:hover,
.gl-contact-section .wpcf7-form input[type="file"]::file-selector-button:hover {
  background: rgba(79,138,43,0.35);
}

/* ── Submit button ── */
.gl-contact-section .wpcf7-form input[type="submit"],
.gl-contact-section .wpcf7-form button[type="submit"],
.gl-contact-section .wpcf7-submit {
  display: block !important; width: 100% !important;
  margin-top: 10px !important; padding: 18px 32px !important;
  background: linear-gradient(135deg,#1E3F18 0%,#4F8A2B 50%,#91C95A 100%) !important;
  color: #fff !important; border: none !important; outline: none !important;
  border-radius: 6px !important; cursor: pointer !important;
  font-family: var(--fM) !important; font-size: 0.62rem !important;
  font-weight: 700 !important; letter-spacing: 0.26em !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 28px rgba(79,138,43,0.25), 0 0 0 1px rgba(79,138,43,0.20) !important;
  -webkit-appearance: none !important; appearance: none !important;
  box-sizing: border-box !important; transition: filter 0.2s, box-shadow 0.2s !important;
}
.gl-contact-section .wpcf7-form input[type="submit"]:hover,
.gl-contact-section .wpcf7-form button[type="submit"]:hover,
.gl-contact-section .wpcf7-submit:hover {
  filter: brightness(1.10) !important;
  box-shadow: 0 0 36px rgba(79,138,43,0.45), 0 0 0 1px rgba(145,201,90,0.30) !important;
}

/* ── Response messages ── */
.gl-contact-section .wpcf7-mail-sent-ok {
  margin-top: 16px !important; padding: 12px 18px !important;
  border-radius: 6px !important; font-family: var(--fM) !important;
  font-size: 0.58rem !important; letter-spacing: 0.14em !important;
  border: 1px solid rgba(79,138,43,0.50) !important;
  color: #91C95A !important; background: rgba(79,138,43,0.08) !important;
}
.gl-contact-section .wpcf7-validation-errors,
.gl-contact-section .wpcf7-mail-sent-ng {
  margin-top: 16px !important; padding: 12px 18px !important;
  border-radius: 6px !important; font-family: var(--fM) !important;
  font-size: 0.58rem !important; letter-spacing: 0.14em !important;
  border: 1px solid rgba(229,57,53,0.40) !important;
  color: rgba(239,83,80,0.85) !important;
}
.gl-contact-section .wpcf7-not-valid-tip {
  font-size: 0.55rem; color: rgba(239,83,80,0.75);
  font-family: var(--fM); letter-spacing: 0.10em; margin-top: 4px;
}
.gl-contact-section .wpcf7-form input.wpcf7-not-valid,
.gl-contact-section .wpcf7-form textarea.wpcf7-not-valid {
  border-left-color: rgba(229,57,53,0.70) !important;
  border-color: rgba(229,57,53,0.35) !important;
}

/* Responsive */
@media (max-width: 768px) {
  .gl-contact-section { padding: 72px 28px; }
  .gl-contact-section .gl-scan-frame { padding: 28px 24px 32px !important; }
}
@media (max-width: 480px) {
  .gl-contact-section { padding: 60px 20px; }
  .gl-contact-section .gl-scan-frame { padding: 24px 18px 28px !important; }
  .gl-contact-section .gl-section-title { font-size: clamp(36px, 11vw, 56px); }
}
@media (max-width: 380px) {
  .gl-contact-section { padding: 52px 16px; }
  .gl-contact-section .gl-scan-frame { padding: 20px 14px 24px !important; }
  .gl-contact-section .gl-section-title { font-size: clamp(30px, 10vw, 44px); }
}
