/* =========================================================
   DANLINE.ONLINE — Sistema visual abejas (negro + amarillo)
   ========================================================= */

:root {
  --bg: #000000;
  --bg-2: #0a0a0a;
  --bg-3: #141414;
  --bg-4: #1c1c1c;
  --honey: #ffc107;
  --honey-bright: #ffd700;
  --honey-light: #ffe066;
  --honey-dark: #c89000;
  --amber: #ff9100;
  --ink: #fafafa;
  --ink-dim: #888;
  --ink-muted: #555;
  --border: rgba(255, 193, 7, 0.12);
  --border-strong: rgba(255, 193, 7, 0.35);
  --shadow-honey: 0 0 40px rgba(255, 193, 7, 0.35);
  --display: "Anton", "Bebas Neue", Impact, sans-serif;
  --serif: "Fraunces", "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", "Space Mono", ui-monospace, monospace;
  --hex-clip: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; overflow-x: hidden; }
/* Lenis smooth-scroll: el JS añade .lenis / .lenis-smooth al html */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
html:not(.lenis) { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  font-weight: 400;
  cursor: none;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; color: inherit; cursor: none; font: inherit; }

::selection { background: var(--honey); color: #000; }

/* =========================================================
   PATRÓN PANAL DE FONDO + GRANO
   ========================================================= */
.honeycomb-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='92' viewBox='0 0 80 92'><polygon points='40,2 78,24 78,68 40,90 2,68 2,24' fill='none' stroke='%23ffc107' stroke-width='1.2'/></svg>");
  background-size: 80px 92px;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.05;
  mix-blend-mode: screen;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.55) 90%);
}

/* =========================================================
   PRELOADER
   ========================================================= */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
.preloader.gone {
  pointer-events: none;
}
.preloader-hex {
  width: 80px;
  height: 92px;
  position: relative;
  animation: hex-spin 2s ease-in-out infinite;
}
.preloader-hex svg { width: 100%; height: 100%; }
.preloader-hex svg polygon {
  fill: none;
  stroke: var(--honey);
  stroke-width: 2;
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
  animation: hex-draw 1.5s ease-out forwards;
}
@keyframes hex-spin {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(60deg); }
}
@keyframes hex-draw {
  to { stroke-dashoffset: 0; }
}
.preloader-text {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--honey);
  opacity: 0;
  animation: fade-in 0.6s ease 0.8s forwards;
}
@keyframes fade-in { to { opacity: 1; } }

/* =========================================================
   CURSOR
   ========================================================= */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--honey-bright);
  box-shadow: 0 0 12px var(--honey-bright), 0 0 30px rgba(255, 215, 0, 0.5);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease;
  will-change: transform;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(255, 193, 7, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor.is-hover { width: 22px; height: 22px; background: #fff; }

/* =========================================================
   POLEN (partículas)
   ========================================================= */
.pollen {
  position: fixed;
  pointer-events: none;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--honey-bright);
  box-shadow: 0 0 6px var(--honey-bright);
  z-index: 9996;
  opacity: 0;
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav .brand {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}
.nav .brand-hex {
  width: 26px; height: 30px;
  display: inline-block;
}
.nav .brand-hex svg { width: 100%; height: 100%; }
.nav .brand .accent { color: var(--honey); }
.nav .links {
  display: flex;
  gap: 36px;
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.nav .links a {
  position: relative;
  padding: 6px 0;
  color: var(--ink-dim);
  transition: color 0.3s;
}
.nav .links a:hover { color: var(--honey); }
.nav .links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--honey);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav .links a:hover::after { width: 100%; }
.nav .nav-cta {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 1px solid var(--honey);
  background: var(--honey);
  color: #000;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.nav .nav-cta:hover { background: transparent; color: var(--honey); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 140px 20px 80px;
  overflow: hidden;
  text-align: center;
}
.hero-stripes {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--honey) 0 60px,
    #000 60px 90px
  );
  z-index: 5;
}
.hero-stripes.bottom {
  top: auto;
  bottom: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(255, 193, 7, 0.18), transparent 60%),
    radial-gradient(ellipse 30% 30% at 80% 70%, rgba(255, 145, 0, 0.12), transparent 70%);
  z-index: 0;
}

.hero .eyebrow {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.hero .eyebrow .dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--honey-bright);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 12px var(--honey-bright); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(4rem, 16vw, 14rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
}
.hero h1 .line {
  display: block;
  overflow: hidden;
}
.hero h1 .word {
  display: inline-block;
}
.hero h1 .accent {
  color: transparent;
  -webkit-text-stroke: 2px var(--honey);
  font-style: italic;
  position: relative;
  display: inline-block;
}
.hero h1 .accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--honey);
  -webkit-mask: linear-gradient(180deg, transparent 0%, transparent 50%, #000 50%, #000 100%);
  mask: linear-gradient(180deg, transparent 0%, transparent 50%, #000 50%, #000 100%);
}

.hero .sub {
  margin-top: 40px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--ink-dim);
  max-width: 640px;
  position: relative;
  z-index: 2;
  line-height: 1.4;
}
.hero .sub strong { color: var(--honey); font-weight: 600; }

.hero-cta {
  margin-top: 56px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.btn {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  padding: 18px 36px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.4s ease;
  border: 1px solid var(--border-strong);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: none;
  font-weight: 600;
}
.btn { background: transparent; }
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: -2;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--honey);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: -1;
}
.btn:hover::after { transform: translateY(0); }
.btn:hover { color: #000; border-color: var(--honey); }
.btn.primary {
  color: #000;
  border-color: var(--honey);
}
.btn.primary::before { background: var(--honey); }
.btn.primary::after { background: #fff; }
.btn.primary:hover { color: #000; }

/* Hero floating bees */
.hero-bee {
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 3;
  pointer-events: none;
}
.hero-bee svg { width: 100%; height: 100%; }
.hero-bee.b1 { top: 20%; left: 12%; }
.hero-bee.b2 { top: 60%; right: 15%; }
.hero-bee.b3 { bottom: 20%; left: 25%; }

.bee-dyn {
  position: absolute;
  width: calc(40px * var(--bee-scale, 1));
  height: calc(40px * var(--bee-scale, 1));
  pointer-events: none;
  z-index: 3;
  will-change: transform;
  opacity: var(--bee-op, 0.9);
}
.bee-dyn svg { width: 100%; height: 100%; display: block; }
.bee-dyn .bee-wings { transform-origin: 30px 14px; animation: wingflap 0.12s ease-in-out infinite alternate; }
@keyframes wingflap {
  from { transform: scaleY(1); }
  to   { transform: scaleY(0.35); }
}
.cta-section { position: relative; overflow: hidden; }

/* Marquee bottom */
.hero-marquee {
  position: absolute;
  bottom: 30px;
  left: 0; right: 0;
  z-index: 5;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.marquee-track {
  display: inline-block;
  animation: marq 30s linear infinite;
  font-family: var(--display);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ink-muted);
}
.marquee-track span {
  margin-right: 50px;
}
.marquee-track .hot { color: var(--honey); }
@keyframes marq {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   SECCIONES
   ========================================================= */
section {
  position: relative;
  padding: 140px 40px;
}
.section-head {
  margin-bottom: 80px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.section-head .label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--honey);
  padding: 8px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  margin-bottom: 24px;
}
.section-head .label::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--honey);
  border-radius: 50%;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-weight: 400;
  max-width: 900px;
}
.section-head h2 em {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--honey);
  font-style: italic;
}
.section-head h2 .filled { color: var(--honey); font-style: italic; }
.section-head .tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-dim);
  margin-top: 24px;
  max-width: 600px;
}

/* =========================================================
   WORKS — HONEYCOMB GRID (hexágonos reales)
   ========================================================= */
.works {
  background: var(--bg);
  position: relative;
}
.works::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 30%, rgba(255, 193, 7, 0.08), transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(255, 145, 0, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.honeycomb {
  --hex-w: clamp(240px, 22vw, 340px);
  --hex-h: calc(var(--hex-w) * 1.1547);
  --hex-gap: 14px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  perspective: 1400px;
  padding: 30px 20px 60px;
}
.hex-row {
  display: flex;
  justify-content: center;
  gap: var(--hex-gap);
  flex-wrap: wrap;
}
.hex-row + .hex-row {
  margin-top: calc(var(--hex-h) * -0.25 + var(--hex-gap) / 2);
}

.hex-card {
  width: var(--hex-w);
  height: var(--hex-h);
  position: relative;
  cursor: none;
  display: block;
  transform-style: preserve-3d;
  transform: translateZ(0);
  will-change: transform;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.55));
  transition: filter 0.5s ease;
}
.hex-card.featured { filter: drop-shadow(0 10px 26px rgba(255, 193, 7, 0.28)); }
.hex-card:hover { filter: drop-shadow(0 14px 34px rgba(255, 193, 7, 0.55)); }
.hex-card:hover { z-index: 10; }

.hex-inner {
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--bg-3);
  overflow: hidden;
  border: 0;
  transition: clip-path 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hex-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) saturate(1.15);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
  will-change: transform;
}
.hex-card:hover .hex-bg {
  transform: scale(1.14);
  filter: brightness(0.92) saturate(1.35);
}

/* Sheen/shine que barre al hover */
.hex-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.18) 48%,
    rgba(255, 220, 90, 0.22) 52%,
    transparent 70%
  );
  transform: translateX(-120%) skewX(-8deg);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
}
.hex-card:hover .hex-shine { transform: translateX(120%) skewX(-8deg); }

.hex-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14% 12%;
  text-align: center;
  gap: 12px;
  pointer-events: none;
}

.hex-cat {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--honey);
  padding: 5px 11px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  max-width: 90%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hex-name {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.4vw, 2.1rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-weight: 400;
  background: linear-gradient(135deg, #fff 0%, var(--honey) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin: 2px 0;
}
.hex-name.cta {
  background: linear-gradient(135deg, var(--ink) 0%, var(--honey-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
}

.hex-status {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--honey-bright);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 100px;
}
.hex-status.live::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--honey-bright);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--honey-bright);
  animation: pulse 1.5s ease-in-out infinite;
}
.hex-status.soon::before {
  content: "";
  width: 5px; height: 5px;
  border: 1px solid var(--honey);
  border-radius: 50%;
}
.hex-status.soon { color: var(--honey); }

/* Badge ★ IA en esquina superior */
.hex-tier-badge {
  position: absolute;
  top: 18%;
  right: 12%;
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  padding: 4px 9px;
  background: var(--honey);
  color: #000;
  font-weight: 700;
  z-index: 4;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.45);
  animation: tier-float 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes tier-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* =========================================================
   HEX CTA — "¿El tuyo?"
   ========================================================= */
.hex-card.hex-cta .hex-inner {
  background: linear-gradient(160deg, rgba(255, 193, 7, 0.12), rgba(0, 0, 0, 0.75));
}
.hex-cta-bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(60deg, transparent 0 32px, rgba(255, 193, 7, 0.06) 32px 33px),
    repeating-linear-gradient(-60deg, transparent 0 32px, rgba(255, 193, 7, 0.06) 32px 33px);
  opacity: 1;
}
.hex-cta-glow {
  position: absolute;
  inset: 18%;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.35) 0%, transparent 70%);
  filter: blur(18px);
  animation: glow-pulse 2.6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 0.8; transform: scale(1.15); }
}

.hex-cta-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.hex-cta-orbit .orbit-hex {
  position: absolute;
  opacity: 0.35;
  will-change: transform;
}
.hex-cta-orbit .o1 { width: 60px; top: 14%; left: 18%; animation: orbit-a 9s linear infinite; }
.hex-cta-orbit .o2 { width: 44px; top: 60%; left: 62%; animation: orbit-b 11s linear infinite; }
.hex-cta-orbit .o3 { width: 72px; bottom: 12%; right: 12%; animation: orbit-c 14s linear infinite; }
@keyframes orbit-a { to { transform: rotate(360deg) translate(8px, 0); } }
@keyframes orbit-b { to { transform: rotate(-360deg) translate(-6px, 0); } }
@keyframes orbit-c { to { transform: rotate(360deg) translate(10px, 0); } }

/* =========================================================
   SCROLL PROGRESS BAR
   ========================================================= */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  z-index: 200;
  pointer-events: none;
  background: transparent;
}
.scroll-progress-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--honey-dark), var(--honey), var(--honey-bright), var(--honey));
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: 0 0;
  box-shadow: 0 0 12px var(--honey), 0 0 24px rgba(255, 193, 7, 0.4);
  will-change: transform;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

/* =========================================================
   NAV MORPH ON SCROLL
   ========================================================= */
.nav {
  transition: padding 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.4s ease,
              backdrop-filter 0.4s ease,
              border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding: 12px 40px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.85));
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom-color: var(--border);
}
.nav.is-scrolled .brand { font-size: 1.25rem; }
.nav.is-scrolled .nav-cta { padding: 9px 18px; font-size: 0.65rem; }

/* =========================================================
   SECTION DIVIDER ANIMATED
   ========================================================= */
.works::after,
.services::after,
.process::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 60%;
  max-width: 700px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--honey), transparent);
  z-index: 1;
}

/* =========================================================
   HONEYCOMB RESPONSIVE — fix móvil con grid explícito
   ========================================================= */
@media (max-width: 1024px) {
  .honeycomb {
    --hex-w: clamp(220px, 36vw, 300px);
    --hex-gap: 12px;
  }
}

/* MÓVIL (<=720px): grid 4-col con posiciones explícitas para que la
   colmena NO se rompa por flex-wrap. Layout resultante:
   Fila 1: [Aggro][Acacias]       (cols 1-2, 3-4)
   Fila 2:    [Flex]               (cols 2-3, offset natural)
   Fila 3: [Albornoz][CTA]        (cols 1-2, 3-4)
*/
@media (max-width: 720px) {
  .honeycomb {
    --hex-col: min(22vw, 115px);
    --hex-w: calc(var(--hex-col) * 2);
    --hex-h: calc(var(--hex-w) * 1.1547);
    --hex-gap: 0px;
    display: grid;
    grid-template-columns: repeat(4, var(--hex-col));
    grid-auto-rows: calc(var(--hex-h) * 0.76);
    justify-content: center;
    gap: 0;
    padding: 24px 0 60px;
  }
  .hex-row { display: contents; }
  .hex-row + .hex-row { margin-top: 0; }
  .hex-card { width: var(--hex-w); height: var(--hex-h); }

  .honeycomb > .hex-row:nth-child(1) > .hex-card:nth-child(1) { grid-column: 1 / span 2; grid-row: 1; }
  .honeycomb > .hex-row:nth-child(1) > .hex-card:nth-child(2) { grid-column: 3 / span 2; grid-row: 1; }
  .honeycomb > .hex-row:nth-child(1) > .hex-card:nth-child(3) { grid-column: 2 / span 2; grid-row: 2; }
  .honeycomb > .hex-row:nth-child(2) > .hex-card:nth-child(1) { grid-column: 1 / span 2; grid-row: 3; }
  .honeycomb > .hex-row:nth-child(2) > .hex-card:nth-child(2) { grid-column: 3 / span 2; grid-row: 3; }

  .hex-name { font-size: clamp(1.1rem, 4.5vw, 1.6rem); }
  .hex-cat { font-size: 0.52rem; padding: 4px 9px; }
  .hex-status { font-size: 0.52rem; }
  .hex-tier-badge { font-size: 0.48rem; padding: 3px 7px; top: 20%; right: 10%; }
  .hex-content { padding: 16% 10%; gap: 8px; }
}

@media (max-width: 420px) {
  .honeycomb { --hex-col: 21vw; }
  .hex-name { font-size: clamp(0.95rem, 4.2vw, 1.4rem); line-height: 0.9; }
  .hex-cat { font-size: 0.46rem; letter-spacing: 0.15em; padding: 3px 7px; }
  .hex-status { font-size: 0.46rem; letter-spacing: 0.15em; padding: 3px 6px; }
}

/* =========================================================
   PREMIUM — borde conic animado en hex featured
   ========================================================= */
.hex-card.featured .hex-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(255, 193, 7, 0.55) 40deg,
    rgba(255, 224, 102, 0.85) 65deg,
    transparent 110deg,
    transparent 250deg,
    rgba(255, 193, 7, 0.55) 295deg,
    rgba(255, 224, 102, 0.85) 320deg,
    transparent 360deg
  );
  opacity: 0.45;
  mix-blend-mode: overlay;
  animation: conic-sweep 7s linear infinite;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}
.hex-card.featured:hover .hex-inner::after { opacity: 0.85; animation-duration: 3.5s; }
@keyframes conic-sweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* =========================================================
   PREMIUM — polvo dorado ambiental flotante
   ========================================================= */
.dust {
  position: fixed;
  width: var(--sz, 3px);
  height: var(--sz, 3px);
  border-radius: 50%;
  background: radial-gradient(circle, var(--honey-bright) 0%, var(--honey) 60%, transparent 100%);
  box-shadow: 0 0 6px var(--honey-bright), 0 0 12px rgba(255, 193, 7, 0.35);
  left: var(--x, 50vw);
  top: 100vh;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  animation: dust-rise var(--dur, 18s) var(--delay, 0s) linear infinite;
  will-change: transform, opacity;
}
@keyframes dust-rise {
  0%   { transform: translate3d(0, 0, 0) scale(0.85); opacity: 0; }
  10%  { opacity: var(--op, 0.45); }
  50%  { transform: translate3d(calc(var(--drift, 40px) * 0.5), -55vh, 0) scale(1.05); }
  90%  { opacity: var(--op, 0.45); }
  100% { transform: translate3d(var(--drift, 40px), -115vh, 0) scale(0.9); opacity: 0; }
}

/* =========================================================
   PREMIUM — cursor hex morph sobre honeycomb
   ========================================================= */
.cursor-ring {
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              height 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s,
              border-radius 0.35s,
              background 0.3s,
              clip-path 0.35s;
}
.cursor-ring.is-hex {
  width: 58px;
  height: 66px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 193, 7, 0.16);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  filter: drop-shadow(0 0 6px rgba(255, 193, 7, 0.65))
          drop-shadow(0 0 14px rgba(255, 215, 0, 0.3));
}

/* =========================================================
   PREMIUM — char split reveal en hero h1
   ========================================================= */
.hero h1 .ch {
  display: inline-block;
  will-change: transform, opacity;
}
.hero h1 .accent .ch::before { display: none; }

/* =========================================================
   PREMIUM — subtle gradient breath en hero background
   ========================================================= */
.hero::before {
  animation: hero-breath 10s ease-in-out infinite alternate;
}
@keyframes hero-breath {
  0%   { opacity: 0.8; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.08); }
}

/* =========================================================
   PREMIUM — shimmer en featured badge
   ========================================================= */
.hex-tier-badge {
  background: linear-gradient(90deg, var(--honey) 0%, var(--honey-bright) 50%, var(--honey) 100%);
  background-size: 200% 100%;
  animation: tier-float 3s ease-in-out infinite, badge-shimmer 2.5s linear infinite;
}
@keyframes badge-shimmer {
  from { background-position: 0% 0; }
  to { background-position: 200% 0; }
}

/* =========================================================
   PREMIUM — glow on hover en service cards
   ========================================================= */
.service-card {
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 180px at var(--mx, 50%) var(--my, 50%), rgba(255, 193, 7, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}
.service-card:hover::before { opacity: 1; }
.service-card > * { position: relative; z-index: 1; }

/* =========================================================
   TIER DETAIL — acordeón desplegable
   ========================================================= */
.service-card { display: flex; flex-direction: column; }

.tier-activation {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--honey);
  letter-spacing: 0.1em;
  margin-top: 2px;
  margin-bottom: 4px;
  font-weight: 600;
}

.tier-toggle {
  margin-top: 8px;
  margin-bottom: 20px;
  padding: 12px 14px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: all 0.3s ease;
  font-weight: 600;
  width: 100%;
}
.tier-toggle:hover {
  color: var(--honey);
  border-color: var(--border-strong);
  background: rgba(255, 193, 7, 0.04);
}
.tier-toggle .chevron {
  width: 12px;
  height: 8px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
}
.tier-toggle[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}
.tier-toggle .t-close { display: none; }
.tier-toggle[aria-expanded="true"] .t-open { display: none; }
.tier-toggle[aria-expanded="true"] .t-close { display: inline; }

/* Panel externo de detalles — full-width debajo del grid */
.tier-details-panel {
  max-width: 1300px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tier-detail {
  overflow: hidden;
  height: 0;
  opacity: 0;
  border: 1px solid var(--border);
  border-left: 3px solid var(--honey);
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  will-change: height;
  margin-top: 0;
}
.tier-detail.td-open { margin-top: 16px; }

.tier-detail-inner {
  padding: 36px 42px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.tier-detail-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.tier-detail-head .td-label {
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 600;
}
.tier-detail-head .td-label.td-featured { color: var(--honey); }
.tier-detail-head .td-price {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--honey);
  letter-spacing: -0.02em;
  line-height: 1;
}
.tier-detail-head .td-price small {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--ink-dim);
  letter-spacing: 0.15em;
  margin-left: 10px;
  font-weight: 500;
  text-transform: uppercase;
  vertical-align: middle;
}
.tier-detail-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: start;
}
.tier-detail .td-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tier-detail h4 {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--honey);
  margin: 4px 0 0 0;
  font-weight: 700;
}
.tier-detail p {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ink-dim);
  line-height: 1.55;
}
.tier-detail p strong { color: var(--ink); font-weight: 600; }
.tier-detail p em { color: var(--honey); font-style: italic; }
.tier-detail p a {
  color: var(--honey);
  text-decoration: underline;
  text-decoration-color: var(--border-strong);
  text-underline-offset: 3px;
}
.tier-detail p a:hover { text-decoration-color: var(--honey); }
.tier-detail code {
  font-family: var(--mono);
  font-size: 0.82em;
  background: rgba(255, 193, 7, 0.08);
  color: var(--honey);
  padding: 2px 6px;
  border-radius: 3px;
}
.tier-detail ul.tier-long {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}
.tier-detail ul.tier-long li {
  font-family: var(--sans);
  font-size: 0.94rem;
  color: var(--ink-dim);
  line-height: 1.55;
  padding: 11px 0 11px 24px;
  border-bottom: 1px solid rgba(255, 193, 7, 0.06);
  position: relative;
  display: block;
}
.tier-detail ul.tier-long li:last-child { border-bottom: none; }
.tier-detail ul.tier-long li::before {
  content: "◆";
  position: absolute;
  left: 2px;
  top: 12px;
  color: var(--honey);
  font-size: 0.72rem;
  line-height: 1.5;
}
.tier-detail ul.tier-long li strong {
  color: var(--ink);
  font-weight: 600;
}
.tier-delivery {
  margin-top: 8px;
  padding: 14px 16px;
  background: rgba(255, 193, 7, 0.06);
  border-left: 3px solid var(--honey);
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--ink);
  letter-spacing: 0.05em;
  border-radius: 0 4px 4px 0;
}
.tier-delivery strong { color: var(--honey); }

/* =========================================================
   MAINTENANCE SECTION — mantenimiento mensual
   ========================================================= */
.maintenance-wrap {
  max-width: 1300px;
  margin: 40px auto 0;
  border: 1px solid var(--border);
  background: var(--bg-2);
}
.maintenance-toggle {
  width: 100%;
  padding: 22px 32px;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--honey);
  background: transparent;
  border: none;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: background 0.3s ease;
  font-weight: 700;
}
.maintenance-toggle:hover { background: rgba(255, 193, 7, 0.04); }
.maintenance-toggle .chevron {
  width: 14px;
  height: 10px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.maintenance-toggle[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.maintenance-detail .tier-detail-inner {
  padding: 16px 40px 40px;
  gap: 24px;
}
.m-intro {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-dim);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.m-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 10px;
}
.m-card {
  padding: 28px 24px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.m-card.m-featured {
  border-color: var(--honey);
  background: linear-gradient(160deg, var(--bg-3) 0%, rgba(255, 193, 7, 0.06) 100%);
  box-shadow: 0 0 0 1px var(--border-strong);
}
.m-card .m-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--honey);
  color: #000;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 5px 12px;
}
.m-card .m-name {
  font-family: var(--display);
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
}
.m-card .m-price {
  font-family: var(--display);
  font-size: 2.2rem;
  color: var(--honey);
  line-height: 1;
  letter-spacing: -0.02em;
}
.m-card .m-price span {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--ink-dim);
  letter-spacing: 0.15em;
  margin-left: 4px;
  font-weight: 500;
}
.m-card ul.tier-long li { font-size: 0.82rem; }
.m-card .m-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.8rem;
  color: var(--honey);
  line-height: 1.4;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.maintenance-detail .m-note {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* =========================================================
   STATS / CONTADORES
   ========================================================= */
.stats {
  background: var(--bg-2);
  padding: 100px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.stat {
  text-align: center;
}
.stat .num {
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  color: var(--honey);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.stat .lbl {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* =========================================================
   SERVICIOS
   ========================================================= */
.services {
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1300px;
  margin: 0 auto;
  border: 1px solid var(--border);
}
.service-card {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.4s ease;
  cursor: none;
}
.service-card:last-child { border-right: none; }
.service-card:hover { background: var(--bg-2); }
.service-card.featured {
  background: var(--bg-3);
  position: relative;
}
.service-card.featured::before {
  content: "★ MÁS VENDIDO";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--honey);
  color: #000;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 6px 14px;
  letter-spacing: 0.2em;
}
.service-card .tier {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 12px;
}
.service-card .tier-name {
  font-family: var(--display);
  font-size: 2rem;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.service-card .tier-price {
  font-family: var(--display);
  font-size: 2.6rem;
  color: var(--honey);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.service-card .tier-price .currency {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--ink-dim);
  vertical-align: top;
  margin-left: 6px;
  letter-spacing: 0.2em;
}
.service-card .tier-time {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 24px;
}
.service-card ul {
  list-style: none;
  margin-bottom: 30px;
}
.service-card ul li {
  padding: 8px 0;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ink-dim);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.service-card ul li::before {
  content: "▸";
  color: var(--honey);
  font-weight: 700;
}
.service-card ul li:last-child { border-bottom: none; }

/* =========================================================
   PROCESO
   ========================================================= */
.process {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
.process-step {
  padding: 32px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.4s ease;
}
.process-step:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
}
.step-num {
  font-family: var(--display);
  font-size: 4rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--honey);
  line-height: 1;
  margin-bottom: 24px;
}
.step-title {
  font-family: var(--display);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--honey);
}
.step-desc {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-dim);
}

/* =========================================================
   CTA FINAL
   ========================================================= */
.cta-section {
  padding: 160px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at center, rgba(255, 193, 7, 0.12), transparent 60%),
    var(--bg);
}
.cta-section h2 {
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}
.cta-section h2 em {
  color: var(--honey);
  font-style: italic;
}
.cta-section p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink-dim);
  max-width: 600px;
  margin: 0 auto 50px;
}
.cta-section .btn { font-size: 0.95rem; padding: 22px 50px; }

.cta-bee {
  position: absolute;
  width: 60px;
  height: 60px;
}
.cta-bee.l { top: 30%; left: 15%; }
.cta-bee.r { bottom: 30%; right: 18%; }

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: #000;
  padding: 100px 40px 30px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto 80px;
}
.footer-brand {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink-muted);
  text-transform: uppercase;
}
.footer-brand .hot {
  color: var(--honey);
  -webkit-text-stroke: 0;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--ink-dim);
  padding: 6px 0;
  transition: color 0.3s, transform 0.3s;
  cursor: none;
}
.footer-col a:hover { color: var(--honey); transform: translateX(4px); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  max-width: 1400px;
  margin: 0 auto;
}

/* WhatsApp floating */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--honey);
  border-radius: 50%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4), 0 0 0 0 rgba(255, 193, 7, 0.6);
  animation: wa-pulse 2s infinite;
  cursor: none;
}
.wa-float svg { width: 28px; height: 28px; fill: #000; }
@keyframes wa-pulse {
  0% { box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4), 0 0 0 0 rgba(255, 193, 7, 0.6); }
  70% { box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4), 0 0 0 20px rgba(255, 193, 7, 0); }
  100% { box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4), 0 0 0 0 rgba(255, 193, 7, 0); }
}

/* Scramble glitch char */
.scr-glitch {
  color: var(--honey-bright);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
  font-family: var(--mono);
  font-style: normal;
  display: inline-block;
}

/* Reveal utility */
[data-reveal] { opacity: 0; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2) { border-right: none; }
  .service-card:nth-child(1), .service-card:nth-child(2) { border-bottom: 1px solid var(--border); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .m-grid { grid-template-columns: 1fr; }
  .tier-detail-cols { grid-template-columns: 1fr; gap: 28px; }
  .tier-detail-inner { padding: 28px 30px; }
}

@media (max-width: 700px) {
  body { cursor: auto; }
  .cursor, .cursor-ring, .pollen { display: none; }
  a, button, .hex-card, .service-card, .tier-toggle, .maintenance-toggle { cursor: pointer; }
  .nav { padding: 16px 20px; }
  .nav.is-scrolled { padding: 10px 20px; }
  .nav .links { display: none; }
  section { padding: 80px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid var(--border); }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .m-grid { grid-template-columns: 1fr; }
  .maintenance-detail .tier-detail-inner { padding: 16px 20px 30px; }
}

/* =========================================================
   FAB WHATSAPP — flotante
   ========================================================= */
.wa-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 14px;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  animation: waPulse 2.4s ease-in-out infinite;
}
.wa-fab svg { width: 28px; height: 28px; flex-shrink: 0; }
.wa-fab:hover {
  transform: translateY(-3px) scale(1.04);
  background: #1fbc5a;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
  animation: none;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50%      { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6),  0 0 0 14px rgba(37, 211, 102, 0); }
}
@media (max-width: 600px) {
  .wa-fab { right: 14px; bottom: 14px; padding: 12px 16px 12px 12px; font-size: 0.9rem; }
  .wa-fab svg { width: 24px; height: 24px; }
}
@media (max-width: 380px) {
  .wa-fab span { display: none; }
  .wa-fab { padding: 12px; border-radius: 50%; }
}

/* =========================================================
   LOGO V5 — {danline} dev style
   Elegido 2026-04-23 para nav, preloader y footer.
   Favicon queda independiente (hex+D en favicon.svg).
   ========================================================= */
.nav .brand {
  font-family: var(--mono);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0;
  line-height: 1;
  text-transform: none;
  position: relative;
}
.nav .brand .brace {
  color: var(--honey);
  font-weight: 700;
  font-size: 1.45em;
  padding: 0 0.05em;
  line-height: 0.85;
}
.nav .brand .brand-text {
  padding: 0 0.15em;
}
.nav .brand .brand-cursor {
  display: inline-block;
  width: 7px;
  height: 1em;
  background: var(--honey);
  margin: 0 0.1em 0 0.05em;
  animation: brand-blink 1.05s steps(2, start) infinite;
  vertical-align: middle;
  transform: translateY(-1px);
}
@keyframes brand-blink { 50% { opacity: 0; } }

.nav.is-scrolled .brand { font-size: 1.0rem; }
.nav.is-scrolled .brand .brand-cursor { width: 6px; }

/* Link activo en nav (subpaths: colmena, etc.) */
.nav .links a.is-active {
  color: var(--honey);
}
.nav .links a.is-active::after {
  width: 100%;
  background: var(--honey);
}

/* Preloader — braces honey */
.preloader-text .brace {
  color: var(--honey);
  font-weight: 700;
  font-family: var(--mono);
}

/* Footer brand V5 */
.footer-brand {
  font-family: var(--mono);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: -0.02em;
  -webkit-text-stroke: 0;
  text-transform: none;
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.footer-brand .brace {
  color: var(--honey);
  font-weight: 700;
  font-size: 1.2em;
  padding: 0 0.08em;
  line-height: 0.85;
  -webkit-text-stroke: 0;
}
.footer-brand .footer-cursor {
  display: inline-block;
  width: 0.18em;
  height: 0.85em;
  background: var(--honey);
  margin: 0 0.12em 0 0.06em;
  animation: brand-blink 1.05s steps(2, start) infinite;
  vertical-align: middle;
}
