/* ============================================================
   ZENALUZ — styles.css v2
   Dark premium · Cyan accent · Security niche
   ============================================================ */

/* ── Custom Properties ──────────────────────────────────────── */
:root {
  --c-black:   #000000;
  --c-white:   #ffffff;
  --c-accent:  #00d4ff;           /* electric cyan */
  --c-danger:  #ff3b3b;           /* danger/urgency red */
  --c-success: #00c896;           /* green for checkmarks */

  --c-w80:     rgba(255,255,255,0.80);
  --c-w60:     rgba(255,255,255,0.60);
  --c-w30:     rgba(255,255,255,0.30);
  --c-w15:     rgba(255,255,255,0.15);
  --c-w08:     rgba(255,255,255,0.08);
  --c-w04:     rgba(255,255,255,0.04);
  --c-border:  rgba(255,255,255,0.10);
  --c-surface: #060606;
  --c-surface2:#0a0a0a;

  --c-accent-10: rgba(0,212,255,0.10);
  --c-accent-20: rgba(0,212,255,0.20);
  --c-accent-glow: rgba(0,212,255,0.08);

  --f-mono: 'IBM Plex Mono', monospace;
  --f-sans: 'Inter', sans-serif;
  --r-pill: 100px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  background: var(--c-black);
  color: var(--c-white);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}
a, button { cursor: none; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utility ────────────────────────────────────────────────── */
.accent-text  { color: var(--c-accent); }
.danger-text  { color: var(--c-danger); }
.fw-bold      { font-weight: 700; }

/* ── Canvas ─────────────────────────────────────────────────── */
.canvas-wrapper {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
#bg-canvas { width: 100%; height: 100%; display: block; }

/* Film grain overlay */
.canvas-grain {
  position: absolute;
  inset: 0;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 1;
  pointer-events: none;
}

/* ── Custom Cursor ──────────────────────────────────────────── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.4);
  background: rgba(0,212,255,0.04);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
  transition: width .3s var(--ease-out), height .3s var(--ease-out),
              background .3s, border-color .3s;
}
.cursor-dot {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--c-accent);
  transition: transform .3s;
}
.cursor.cursor-hover {
  width: 72px; height: 72px;
  background: rgba(0,212,255,0.08);
  border-color: rgba(0,212,255,0.6);
}
.cursor.cursor-hover .cursor-dot { transform: translate(-50%,-50%) scale(1.5); }

/* ── Site Wrapper ───────────────────────────────────────────── */
.site-wrapper { position: relative; z-index: 10; }

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 72px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  transform: translateY(-100%);
  border-bottom: 1px solid transparent;
  transition: border-color .5s, background .5s;
}
.site-header.scrolled {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--c-border);
}

.header-logo a {
  display: flex; align-items: center; gap: 12px;
  transition: opacity .3s;
}
.header-logo a:hover { opacity: .75; }

.logo-brand {
  display: block;
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.01em;
}
.logo-tagline {
  display: block;
  font-family: var(--f-mono);
  font-size: 9.5px;
  color: var(--c-w30);
  margin-top: 1px;
}

.desktop-nav ul { display: flex; }
.desktop-nav button {
  background: none; border: none;
  color: var(--c-white);
  font-family: var(--f-sans);
  font-size: 13.5px; font-weight: 500;
  padding: 24px 20px;
  opacity: .65;
  transition: opacity .3s, color .3s;
}
.desktop-nav button:hover { opacity: 1; }
.desktop-nav button.active { opacity: 1; color: var(--c-accent); }

.header-cta {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-accent);
  border: 1px solid var(--c-accent-20);
  border-radius: var(--r-pill);
  padding: 8px 18px;
  backdrop-filter: blur(8px);
  transition: background .3s, border-color .3s;
  white-space: nowrap;
  background: var(--c-accent-10);
}
.header-cta:hover {
  background: var(--c-accent-20);
  border-color: rgba(0,212,255,0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none; border: none;
  padding: 6px;
}
.hamburger span {
  display: block; width: 18px; height: 1px;
  background: var(--c-white);
  transition: transform .3s, opacity .3s;
}

/* ── Mobile Menu ────────────────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(24px);
  z-index: 1001;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  visibility: hidden; opacity: 0;
  transition: opacity .35s, visibility .35s;
}
.mobile-menu.open { visibility: visible; opacity: 1; }

.mobile-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none;
  width: 36px; height: 36px;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 0;
}
.mobile-close span {
  display: block; width: 18px; height: 1px;
  background: var(--c-white);
}
.mobile-close span:first-child { transform: rotate(45deg) translateY(.5px); }
.mobile-close span:last-child  { transform: rotate(-45deg) translateY(-.5px); }

.mobile-menu nav ul { text-align: center; }
.mobile-menu nav li { margin: 14px 0; }
.mobile-menu nav button {
  background: none; border: none;
  color: var(--c-white);
  font-family: var(--f-sans);
  font-size: 28px; font-weight: 300;
  display: flex; align-items: center; gap: 16px;
  opacity: .8; transition: opacity .2s;
}
.mobile-menu nav button:hover { opacity: 1; }
.nav-num {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--c-accent); width: 24px; text-align: right;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100vw; height: 100dvh;
  overflow: hidden;
}

/* Sidebar */
.industry-sidebar {
  position: absolute; bottom: 40px; left: 40px;
  display: flex; flex-direction: column;
  z-index: 100; pointer-events: auto;
}
.industry-btn {
  background: none; border: none;
  color: var(--c-white);
  font-family: var(--f-mono);
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 9px 0; text-align: left;
  opacity: 0;
  transition: opacity .3s, color .3s;
  position: relative;
}
.industry-btn::before {
  content: '';
  position: absolute; left: -16px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 1px;
  background: var(--c-accent);
  transition: width .3s var(--ease-out);
}
.industry-btn:hover, .industry-btn.active { opacity: 1; color: var(--c-accent); }
.industry-btn.active::before { width: 10px; }

/* Mobile toggle */
.industry-mobile {
  display: none;
  position: absolute; bottom: 80px; left: 24px;
  z-index: 100;
}
.industry-mobile-toggle {
  display: flex; align-items: center; gap: 8px;
  background: none;
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  color: var(--c-white);
  font-family: var(--f-mono);
  font-size: 10px; font-weight: 600;
  letter-spacing: .1em; padding: 8px 16px;
  backdrop-filter: blur(8px);
  transition: background .3s, border-color .3s;
}
.industry-mobile-toggle:hover {
  background: var(--c-w08);
  border-color: var(--c-accent-20);
}

/* Center */
.hero-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center; pointer-events: none;
  width: 90%;
}
.hero-badge {
  font-family: var(--f-mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: .12em;
  display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 24px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  padding: 7px 18px;
  opacity: 0;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 8px var(--c-accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .6; transform: scale(1.3); }
}
.hero-badge .sep { opacity: .35; }
.hero-badge .dim { opacity: .3; }

.hero-headline {
  font-family: var(--f-mono);
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 300; line-height: 1.08;
  color: var(--c-white);
  opacity: 0;
  display: flex; flex-direction: column; align-items: center;
}
.hl-line { display: block; overflow: hidden; }

.hero-sub {
  font-family: var(--f-mono);
  font-size: clamp(11px, 1.2vw, 14px);
  color: var(--c-w30);
  letter-spacing: .2em; text-transform: uppercase;
  margin-top: 16px;
  opacity: 0;
}

/* Hero CTA */
.hero-cta {
  position: absolute; bottom: 40px; right: 40px;
  z-index: 100; transform: translateY(80px);
}
.pill-cta {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--c-white);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--r-pill);
  padding: 10px 22px;
  backdrop-filter: blur(10px);
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .3s, border-color .3s, color .3s;
}
.pill-cta:hover {
  background: var(--c-accent-10);
  border-color: var(--c-accent-20);
  color: var(--c-accent);
}

/* ── Industry Panels ────────────────────────────────────────── */
.industry-panels {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 50;
}
.ipanel {
  position: absolute; inset: 0;
  opacity: 0; pointer-events: none;
  transition: opacity .5s var(--ease-out);
  backdrop-filter: blur(16px);
  background: rgba(0,0,0,0.7);
}
.ipanel.active { opacity: 1; pointer-events: auto; }

.ipanel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  width: calc(100% - 280px);
  height: 90dvh;
  margin: auto; margin-right: 0;
  padding: 20px;
  position: absolute; right: 0; top: 0; bottom: 0;
}
.ipanel-cell {
  position: relative; padding: 32px;
  display: flex;
}
.cell-br { align-items: flex-end; justify-content: flex-end; }
.cell-bl { align-items: flex-end; justify-content: flex-start; }
.cell-tr { align-items: flex-start; justify-content: flex-end; }
.cell-tl { align-items: flex-start; justify-content: flex-start; }

.ipanel-title {
  font-family: var(--f-mono);
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 300; line-height: 1.1;
  max-width: 360px;
}

.ipanel-tags {
  font-family: var(--f-mono); font-size: 9.5px;
  letter-spacing: .15em; color: var(--c-accent);
  text-transform: uppercase; margin-bottom: 14px;
}
.ipanel-copy {
  max-width: 280px; font-size: 13.5px;
  line-height: 1.65; color: var(--c-w80);
  padding-left: 14px;
  border-left: 1px solid var(--c-accent-20);
}

.ipanel-stat {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; width: 100%; height: 100%;
}
.stat-big {
  font-family: var(--f-mono);
  font-size: clamp(52px, 7vw, 84px);
  font-weight: 700; line-height: 1;
  color: var(--c-white);
}
.ipanel-stat.danger .stat-big { color: var(--c-danger); text-shadow: 0 0 30px rgba(255,59,59,.3); }
.ipanel-stat.accent .stat-big { color: var(--c-accent); text-shadow: 0 0 30px rgba(0,212,255,.3); }
.guarantee-stat .stat-big {
  font-size: clamp(72px, 9vw, 110px);
  color: var(--c-accent);
  text-shadow: 0 0 40px rgba(0,212,255,.25);
}
.stat-unit {
  font-family: var(--f-mono); font-size: clamp(20px, 3vw, 36px);
  color: var(--c-accent); margin-left: 4px;
}
.stat-desc {
  font-family: var(--f-mono); font-size: 10px;
  color: var(--c-w30); margin-top: 10px; line-height: 1.5;
}

/* ── Ticker band ────────────────────────────────────────────── */
.ticker-band {
  position: relative; z-index: 10;
  overflow: hidden;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  background: var(--c-surface);
  padding: 14px 0;
}
.ticker-track {
  display: flex; align-items: center; gap: 32px;
  white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
  width: max-content;
}
.ticker-track span {
  font-family: var(--f-mono);
  font-size: 10px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--c-w30);
}
.ticker-dot {
  color: var(--c-accent) !important;
  font-size: 14px !important;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Content Sections ───────────────────────────────────────── */
.main-content { position: relative; z-index: 10; }

.content-section {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 40px;
  background: var(--c-black);
  position: relative;
}
.section-alt     { background: var(--c-surface); }
.section-dark-alt{ background: #030303; }
.section-guarantee{ background: var(--c-black); }
.section-contact { background: var(--c-surface); }

.section-inner { max-width: 1200px; margin: 0 auto; width: 100%; }
.section-header { margin-bottom: 64px; }

.section-label {
  display: block;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--c-accent); margin-bottom: 20px;
}
.section-title {
  font-family: var(--f-mono);
  font-size: clamp(34px, 4.8vw, 66px);
  font-weight: 300; line-height: 1.08;
}
.section-sub {
  font-size: 15px; color: var(--c-w60);
  max-width: 460px; margin-top: 20px; line-height: 1.75;
}

/* ── Pillars ────────────────────────────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--c-border);
  margin-bottom: 40px;
}
.pillar {
  padding: 36px 28px;
  border-right: 1px solid var(--c-border);
  position: relative;
  transition: background .3s;
  overflow: hidden;
}
.pillar:last-child { border-right: none; }
.pillar::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--c-accent), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.pillar:hover { background: var(--c-w04); }
.pillar:hover::before { transform: scaleX(1); }

.pillar-header {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.pillar-num {
  font-family: var(--f-mono); font-size: 10px;
  color: var(--c-w30); letter-spacing: .1em;
}
.pillar-icon { color: var(--c-w30); }
.pillar:hover .pillar-icon { color: var(--c-accent); transition: color .3s; }

.pillar h3 {
  font-family: var(--f-mono); font-size: 16px;
  font-weight: 400; margin-bottom: 12px;
}
.pillar p {
  font-size: 13.5px; color: var(--c-w60); line-height: 1.75;
  margin-bottom: 24px;
}

.pillar-stat {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px;
  border-top: 1px solid var(--c-border); padding-top: 20px;
}
.ps-num {
  font-family: var(--f-mono); font-size: 36px;
  font-weight: 700; line-height: 1;
}
.ps-unit { font-family: var(--f-mono); font-size: 20px; margin-left: 2px; }
.ps-label {
  width: 100%; font-family: var(--f-mono); font-size: 9.5px;
  color: var(--c-w30); margin-top: 4px; letter-spacing: .05em;
}

/* Cost block */
.cost-block {
  border: 1px solid var(--c-border);
  padding: 40px;
  background: var(--c-w04);
  position: relative; overflow: hidden;
}
.cost-block::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--c-danger);
}
.cost-label {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--c-danger); margin-bottom: 24px;
}
.cost-equation {
  display: flex; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.cost-item { text-align: center; }
.cost-num {
  display: block;
  font-family: var(--f-mono); font-size: clamp(28px, 4vw, 48px);
  font-weight: 700; line-height: 1; margin-bottom: 6px;
}
.cost-desc {
  font-family: var(--f-mono); font-size: 9.5px;
  color: var(--c-w30); line-height: 1.5; letter-spacing: .04em;
}
.cost-item.highlight .cost-num { font-size: clamp(36px, 5vw, 60px); }
.cost-op {
  font-family: var(--f-mono); font-size: 28px;
  color: var(--c-w30); flex-shrink: 0;
}

/* ── Services ───────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--c-border);
  margin-bottom: 48px;
}
.service-card {
  background: var(--c-surface);
  padding: 0;
  display: flex; flex-direction: column;
  transition: background .3s;
  overflow: hidden;
  position: relative;
}
.service-card:hover { background: var(--c-surface2); }

.service-top {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 20px 28px 0;
}
.service-num { font-family: var(--f-mono); font-size: 10px; color: var(--c-w30); }
.service-accent-line {
  height: 1px; flex: 1; margin-left: 16px;
  background: linear-gradient(90deg, var(--c-accent), transparent);
}

.service-visual {
  height: 120px; margin: 20px 28px;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.sv-1 { background: linear-gradient(135deg, rgba(0,212,255,0.06), rgba(0,212,255,0.02)); border: 1px solid var(--c-accent-10); }
.sv-2 { background: linear-gradient(135deg, rgba(0,212,255,0.04), rgba(0,200,150,0.04)); border: 1px solid rgba(0,212,255,0.08); }
.sv-3 { background: linear-gradient(135deg, rgba(0,212,255,0.03), rgba(0,212,255,0.08)); border: 1px solid var(--c-accent-10); }
.sv-icon { color: var(--c-accent); opacity: .7; transition: opacity .3s; }
.service-card:hover .sv-icon { opacity: 1; }

.service-num-label {
  display: none; /* hidden, kept for ref */
}
.service-card h3 {
  font-family: var(--f-mono); font-size: 18px;
  font-weight: 400; margin: 0 28px 8px;
}
.service-tags {
  font-family: var(--f-mono); font-size: 9.5px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-accent); margin: 0 28px 14px;
  opacity: .7;
}
.service-card > p:last-of-type {
  font-size: 13.5px; color: var(--c-w60);
  line-height: 1.75; margin: 0 28px 20px;
  flex: 1;
}
.service-result {
  margin: 0 28px 28px;
  padding-top: 16px;
  border-top: 1px solid var(--c-border);
  display: flex; align-items: baseline; gap: 8px;
}
.sr-num { font-family: var(--f-mono); font-size: 24px; font-weight: 700; }
.sr-label { font-family: var(--f-mono); font-size: 10px; color: var(--c-w30); }

/* Flow diagram */
.flow-diagram {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
  border: 1px solid var(--c-border);
  padding: 24px;
  background: var(--c-w04);
}
.flow-step {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  padding: 16px 20px;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-w60);
  border-radius: 4px;
  transition: background .3s, color .3s;
}
.flow-step:hover { background: var(--c-w08); color: var(--c-white); }
.flow-icon { color: var(--c-w30); transition: color .3s; }
.flow-step:hover .flow-icon { color: var(--c-white); }
.accent-step { color: var(--c-accent); }
.accent-step .flow-icon { color: var(--c-accent); }
.success-step { color: var(--c-success); }
.success-step .flow-icon { color: var(--c-success); }
.flow-arrow {
  font-family: var(--f-mono); font-size: 16px;
  color: var(--c-w30); padding: 0 4px;
}

/* ── VSL Section ─────────────────────────────────────────────── */
.section-vsl {
  background: var(--c-surface);
  min-height: auto;
  padding: 80px 40px;
}
.vsl-wrap { max-width: 860px; margin: 0 auto; text-align: center; }
.vsl-top { margin-bottom: 32px; }
.vsl-sub {
  font-size: 16px; color: var(--c-w60);
  line-height: 1.7; max-width: 560px; margin: 12px auto 0;
}
.vsl-player {
  border: 1px solid var(--c-border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--c-surface2);
  margin-bottom: 24px;
  position: relative;
}
.vsl-placeholder {
  height: 420px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px;
  background: radial-gradient(circle at center, rgba(0,212,255,0.04) 0%, transparent 70%);
  border: 1px dashed var(--c-border);
  border-radius: 7px;
}
.vsl-play-btn {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(0,212,255,0.1);
  border: 1px solid var(--c-accent-20);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-accent);
  transition: background .3s, transform .3s;
}
.vsl-play-btn:hover { background: rgba(0,212,255,0.18); transform: scale(1.06); }
.vsl-coming-label {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--c-w30);
}
.vsl-coming-sub {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--c-w30); opacity: .7;
}
.vsl-cta { display: flex; justify-content: center; }
.vsl-notify-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 11px;
  color: var(--c-accent);
  border: 1px solid var(--c-accent-20);
  border-radius: var(--r-pill);
  padding: 10px 22px;
  background: var(--c-accent-10);
  transition: background .3s, border-color .3s;
}
.vsl-notify-btn:hover {
  background: var(--c-accent-20);
  border-color: rgba(0,212,255,.5);
}

/* ── Insight Block (replaces cost equation) ──────────────────── */
.insight-block {
  border: 1px solid var(--c-border);
  padding: 40px;
  background: var(--c-w04);
  position: relative; overflow: hidden;
}
.insight-block::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--c-danger);
}
.insight-label {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--c-danger); margin-bottom: 28px;
}
.insights-list { display: flex; flex-direction: column; gap: 20px; }
.insight-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.insight-arrow {
  font-family: var(--f-mono); font-size: 14px;
  color: var(--c-danger); flex-shrink: 0; margin-top: 2px;
}
.insight-item p {
  font-size: 14px; color: var(--c-w80);
  line-height: 1.7; margin: 0;
}

/* ── Exclusion Section ──────────────────────────────────────── */
.section-exclusion {
  background: var(--c-black);
  border-top: 1px solid var(--c-border);
}
.exclusion-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  border: 1px solid var(--c-border);
  margin-bottom: 48px;
  overflow: hidden;
}
.exclusion-col { padding: 40px; }
.no-col { background: rgba(255,59,59,0.02); }
.yes-col { background: rgba(0,212,255,0.02); }
.exclusion-col-label {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: .15em; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 28px; padding-bottom: 20px;
  border-bottom: 1px solid var(--c-border);
}
.excl-icon { font-size: 14px; }
.no-icon { color: var(--c-danger); }
.yes-icon { color: var(--c-success); }

.exclusion-items { display: flex; flex-direction: column; gap: 16px; }
.exclusion-item {
  display: flex; align-items: flex-start; gap: 14px;
}
.excl-mark {
  font-family: var(--f-mono); font-weight: 700;
  font-size: 13px; flex-shrink: 0; margin-top: 1px;
  color: var(--c-danger);
}
.yes-mark { color: var(--c-success); }
.exclusion-item p {
  font-size: 13.5px; color: var(--c-w60);
  line-height: 1.65; margin: 0;
}
.no-item p { opacity: .75; }
.yes-item p { opacity: 1; }
.exclusion-divider {
  width: 1px; background: var(--c-border); flex-shrink: 0;
}

.exclusion-cta {
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
}
.exclusion-cta-note {
  font-family: var(--f-mono); font-size: 13px;
  color: var(--c-w60); font-style: italic;
}

/* ── Contact Form ────────────────────────────────────────────── */
.contact-form { margin-top: 0; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group-full { margin-bottom: 16px; }
.form-label {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-w30);
}
.form-input {
  background: var(--c-w04);
  border: 1px solid var(--c-border);
  border-radius: 4px;
  color: var(--c-white);
  font-family: var(--f-sans); font-size: 14px;
  padding: 12px 16px;
  outline: none;
  transition: border-color .3s, background .3s;
  width: 100%;
  -webkit-appearance: none;
}
.form-input::placeholder { color: var(--c-w30); }
.form-input:focus {
  border-color: var(--c-accent);
  background: rgba(0,212,255,0.04);
}
.form-select {
  cursor: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-select option { background: #0a0a0a; color: var(--c-white); }
.form-submit { margin-top: 8px; width: 100%; text-align: center; }
.form-note {
  font-family: var(--f-mono); font-size: 10px;
  color: var(--c-w30); text-align: center; margin-top: 10px;
}

/* Header social links */
.header-social {
  display: flex; align-items: center; gap: 4px;
  margin-right: 12px;
}
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  color: var(--c-w30);
  transition: color .3s, background .3s;
}
.social-link:hover {
  color: var(--c-white);
  background: var(--c-w08);
}

/* Contact direct link */
.contact-direct { margin-top: 28px; }
.contact-direct-label {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-w30); margin-bottom: 12px;
}
.direct-links {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px;
}
.wa-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 12px;
  color: var(--c-success);
  border: 1px solid rgba(0,200,150,.3);
  border-radius: var(--r-pill);
  padding: 9px 18px;
  background: rgba(0,200,150,.06);
  transition: background .3s, border-color .3s;
}
.wa-btn:hover {
  background: rgba(0,200,150,.12);
  border-color: rgba(0,200,150,.5);
}
.calendly-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 12px;
  color: var(--c-accent);
  border: 1px solid var(--c-accent-20);
  border-radius: var(--r-pill);
  padding: 9px 18px;
  background: var(--c-accent-10);
  transition: background .3s, border-color .3s;
}
.calendly-btn:hover {
  background: var(--c-accent-20);
  border-color: rgba(0,212,255,.5);
}

/* Social pills row in contact */
.contact-social-row {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.social-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-mono); font-size: 11px;
  color: var(--c-w30);
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  transition: color .3s, border-color .3s, background .3s;
}
.social-pill:hover {
  color: var(--c-white);
  border-color: var(--c-w30);
  background: var(--c-w08);
}

/* Footer social */
.footer-social {
  display: flex; align-items: center; gap: 6px; margin-left: auto;
}
.footer-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  color: var(--c-w30);
  transition: color .3s;
}
.footer-social-link:hover { color: var(--c-white); }

/* ── Cases ──────────────────────────────────────────────────── */
.cases-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1px; background: var(--c-border);
  margin-bottom: 1px;
}
.cases-grid-single { grid-template-columns: 1fr; max-width: 760px; margin-left: auto; margin-right: auto; }
.case-logo {
  display: block; max-width: 140px; height: auto;
  margin: 0 0 20px; opacity: .95;
}
.case-card {
  background: var(--c-surface); padding: 40px;
  transition: background .3s;
  display: flex; flex-direction: column;
}
.case-card:hover { background: var(--c-surface2); }

.case-header {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 16px;
}
.case-tag {
  font-family: var(--f-mono); font-size: 9.5px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-w30);
}
.case-status {
  font-family: var(--f-mono); font-size: 9px;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: var(--r-pill);
}
.case-status.active {
  color: var(--c-success);
  border: 1px solid rgba(0,200,150,.3);
  background: rgba(0,200,150,.06);
}
.case-status.building {
  color: var(--c-accent);
  border: 1px solid var(--c-accent-20);
  background: var(--c-accent-10);
}

.case-card h3 { font-family: var(--f-mono); font-size: 22px; font-weight: 400; margin-bottom: 6px; }
.case-location {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--c-w30); margin-bottom: 18px;
  display: flex; align-items: center; gap: 6px;
}
.case-desc {
  font-size: 13.5px; color: var(--c-w60);
  line-height: 1.75; margin-bottom: 28px; flex: 1;
}
.case-metrics { display: flex; gap: 28px; margin-bottom: 24px; }
.metric-num {
  display: block; font-family: var(--f-mono);
  font-size: 28px; font-weight: 700; margin-bottom: 4px;
}
.metric-label {
  display: block; font-family: var(--f-mono);
  font-size: 9.5px; color: var(--c-w30); line-height: 1.5;
}
.case-cta {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--c-accent); letter-spacing: .05em;
  transition: opacity .3s;
}
.case-cta:hover { opacity: .7; }

/* Stats row */
.stats-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--c-border);
}
.stat-row-item {
  padding: 36px 28px;
  border-right: 1px solid var(--c-border);
  transition: background .3s;
}
.stat-row-item:last-child { border-right: none; }
.stat-row-item:hover { background: var(--c-w04); }
.stat-row-num {
  display: block; font-family: var(--f-mono);
  font-size: clamp(36px, 4vw, 52px); font-weight: 700;
  line-height: 1; margin-bottom: 8px;
}
.stat-row-label {
  display: block; font-family: var(--f-mono);
  font-size: 9.5px; color: var(--c-w30); line-height: 1.5;
}

/* ── Guarantee ──────────────────────────────────────────────── */
.guarantee-wrap { max-width: 100%; }
.guarantee-title { font-size: clamp(36px, 5vw, 66px); }
.guarantee-sub {
  font-size: 16px; color: var(--c-w60);
  margin: 24px 0 48px; line-height: 1.75;
  max-width: 560px;
}

.guarantee-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--c-border);
  margin-bottom: 48px;
}
.guarantee-card {
  background: var(--c-surface); padding: 28px 24px;
  transition: background .3s;
}
.guarantee-card:hover { background: var(--c-surface2); }
.gc-icon { color: var(--c-accent); margin-bottom: 16px; }
.guarantee-card h4 {
  font-family: var(--f-mono); font-size: 14px;
  font-weight: 400; margin-bottom: 8px;
}
.guarantee-card p { font-size: 13px; color: var(--c-w60); line-height: 1.65; }

.guarantee-pricing {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--c-border);
  margin-bottom: 48px; overflow: hidden;
}
.gp-item {
  flex: 1; padding: 24px 28px;
  display: flex; flex-direction: column; gap: 4px;
}
.gp-label { font-family: var(--f-mono); font-size: 10px; color: var(--c-w30); letter-spacing: .1em; }
.gp-value { font-family: var(--f-mono); font-size: 22px; font-weight: 700; }
.gp-divider { width: 1px; height: 60px; background: var(--c-border); flex-shrink: 0; }

/* ── CTAs ───────────────────────────────────────────────────── */
.cta-btn {
  display: inline-block;
  font-family: var(--f-mono); font-size: 13px;
  padding: 16px 32px; border-radius: var(--r-pill);
  transition: opacity .25s, transform .25s;
  letter-spacing: .02em;
}
.cta-btn:hover { opacity: .85; transform: translateY(-1px); }

.accent-btn {
  color: #000; background: var(--c-accent);
  box-shadow: 0 0 30px rgba(0,212,255,.2);
}
.accent-btn:hover { box-shadow: 0 0 40px rgba(0,212,255,.35); }

/* ── Contact ────────────────────────────────────────────────── */
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; min-height: 100vh;
}
.contact-sub {
  font-size: 16px; color: var(--c-w60);
  max-width: 440px; margin-bottom: 40px; line-height: 1.75;
}
.contact-actions { margin-bottom: 0; }
.contact-note {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--c-w30); margin-top: 14px;
}

/* Demo chat block */
.demo-block {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 8px; overflow: hidden;
}
.demo-label {
  padding: 14px 20px;
  border-bottom: 1px solid var(--c-border);
  font-family: var(--f-mono); font-size: 9.5px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-w60);
  display: flex; align-items: center; gap: 8px;
}
.demo-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 8px var(--c-accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
.demo-chat {
  padding: 20px; display: flex;
  flex-direction: column; gap: 12px;
}
.chat-msg {
  max-width: 85%; padding: 10px 14px;
  border-radius: 8px; position: relative;
}
.chat-msg p { font-size: 13px; line-height: 1.55; margin-bottom: 4px; }
.chat-time {
  font-family: var(--f-mono); font-size: 9px;
  display: flex; align-items: center; gap: 4px;
}
.incoming {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--c-border);
  align-self: flex-start;
}
.incoming .chat-time { color: var(--c-w30); }
.outgoing {
  background: rgba(0,212,255,0.08);
  border: 1px solid var(--c-accent-20);
  align-self: flex-end;
}
.outgoing .chat-time { color: var(--c-accent); }

.demo-caption {
  padding: 12px 20px;
  border-top: 1px solid var(--c-border);
  font-family: var(--f-mono); font-size: 10px;
  color: var(--c-w30); font-style: italic;
}

/* Contact footer */
.contact-footer {
  position: relative; z-index: 10;
  display: flex; gap: 32px; padding: 24px 40px;
  border-top: 1px solid var(--c-border);
  background: var(--c-surface);
}
.cf-brand {
  font-family: var(--f-mono); font-weight: 700;
  font-size: 13px; color: var(--c-white);
}
.contact-footer span:not(.cf-brand) {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--c-w30);
}
.cf-tagline { margin-left: auto; color: var(--c-accent) !important; }

/* ── Scroll reveal ──────────────────────────────────────────── */
.reveal-item {
  opacity: 0;
  transform: translateY(32px);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .header-right { display: none; }
  .hamburger { display: flex; }
  .industry-sidebar { display: none; }
  .industry-mobile  { display: block; }

  .ipanel-grid {
    width: 100%;
    grid-template-columns: 1fr; grid-template-rows: auto;
    height: auto; max-height: 100dvh; overflow-y: auto;
  }
  .ipanel-cell { padding: 20px 24px; }

  .pillars-grid, .services-grid { grid-template-columns: 1fr; }
  .pillar, .service-card { border-right: none; border-bottom: 1px solid var(--c-border); }
  .pillar:last-child, .service-card:last-child { border-bottom: none; }

  .exclusion-container { grid-template-columns: 1fr; }
  .exclusion-divider { width: 100%; height: 1px; }
  .form-row { grid-template-columns: 1fr; }

  .cases-grid { grid-template-columns: 1fr; }
  .case-card { border-right: none; border-bottom: 1px solid var(--c-border); }
  .case-card:last-child { border-bottom: none; }

  .guarantee-grid { grid-template-columns: 1fr 1fr; }

  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-row-item:nth-child(2n) { border-right: none; }
  .stat-row-item { border-bottom: 1px solid var(--c-border); }
  .stat-row-item:last-child { border-bottom: none; }

  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-footer { flex-wrap: wrap; gap: 8px; }
  .cf-tagline { margin-left: 0; }
}

@media (max-width: 768px) {
  .site-header { padding: 0 20px; height: 60px; }
  .content-section { padding: 80px 20px; }
  .hero-cta { right: 20px; bottom: 20px; }
  .industry-mobile { left: 20px; bottom: 80px; }
  .section-title { font-size: clamp(28px, 8vw, 44px); }
  .hero-headline { font-size: clamp(34px, 9vw, 52px); }
  .guarantee-grid { grid-template-columns: 1fr; }
  .guarantee-pricing { flex-direction: column; }
  .gp-divider { width: 100%; height: 1px; }
  .contact-footer { padding: 20px; }
  .vsl-placeholder { height: 240px; }
  .ticker-track { animation-duration: 20s; }
}

/* ═══════════════════════════════════════════════════════════════
   EXTENDED ANIMATIONS — 21st.dev style
   ═══════════════════════════════════════════════════════════════ */

/* ── Word reveal wrapper ────────────────────────────────────── */
.ww-outer {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.12;
}
.ww-inner { display: inline-block; }

/* ── Text scramble random char ──────────────────────────────── */
.sc-rand {
  color: var(--c-accent);
  opacity: 0.4;
  font-weight: 600;
}

/* ── Section cursor spotlight ───────────────────────────────── */
.section-spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at var(--sx, 50%) var(--sy, 50%),
    rgba(0, 212, 255, 0.028) 0%,
    transparent 55%
  );
  pointer-events: none;
  z-index: 1;
  opacity: 0;
}
.section-inner { position: relative; z-index: 2; }

/* ── Section entry scan-line ────────────────────────────────── */
.scan-line-flash {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--c-accent) 40%, rgba(0,212,255,.6) 50%, var(--c-accent) 60%, transparent 100%);
  pointer-events: none;
  z-index: 20;
  box-shadow: 0 0 8px var(--c-accent);
}

/* ── CTA button shimmer sweep ───────────────────────────────── */
.accent-btn { position: relative; overflow: hidden; }
.accent-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-18deg);
  animation: shimmer-sweep 4s ease-in-out 1.5s infinite;
}
@keyframes shimmer-sweep {
  0%   { left: -80%; opacity: 0; }
  8%   { opacity: 1; }
  42%  { left: 130%; opacity: 0; }
  100% { left: 130%; opacity: 0; }
}

/* ── Card hover glow ────────────────────────────────────────── */
.pillar:hover {
  box-shadow: 0 0 0 1px rgba(0,212,255,0.14), 0 8px 40px rgba(0,212,255,0.06);
}
.service-card:hover {
  box-shadow: 0 0 0 1px rgba(0,212,255,0.11), 0 12px 48px rgba(0,212,255,0.05);
}
.case-card:hover {
  box-shadow: 0 0 0 1px rgba(0,212,255,0.11), 0 8px 32px rgba(0,212,255,0.05);
}
.guarantee-card:hover {
  box-shadow: 0 0 0 1px rgba(0,212,255,0.12), 0 6px 24px rgba(0,212,255,0.04);
}

/* ── Ambient floating orb — sistema section ─────────────────── */
.section-alt { overflow: hidden; }
.section-alt::before {
  content: '';
  position: absolute;
  width: 700px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(0,212,255,0.024) 0%, transparent 68%);
  border-radius: 50%;
  top: 20%; right: -10%;
  pointer-events: none;
  animation: orb-drift 14s ease-in-out infinite;
}
@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0)  scale(1);    opacity: .7; }
  33%       { transform: translate(-5%, 8%)  scale(1.07); opacity: 1; }
  66%       { transform: translate(6%, -5%) scale(0.94); opacity: .8; }
}

/* ── Ambient orb — casos/resultados section ─────────────────── */
.section-dark-alt { overflow: hidden; }
.section-dark-alt::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,212,255,0.018) 0%, transparent 65%);
  border-radius: 50%;
  bottom: 10%; left: 5%;
  pointer-events: none;
  animation: orb-drift 16s ease-in-out 3s infinite reverse;
}

/* ── Pulsing glow — garantía section ───────────────────────── */
.section-guarantee { overflow: hidden; }
.section-guarantee::before {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(0,212,255,0.025) 0%, transparent 60%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: guar-pulse 7s ease-in-out infinite;
}
@keyframes guar-pulse {
  0%, 100% { opacity: .5;  transform: translate(-50%,-50%) scale(1);    }
  50%       { opacity: 1;   transform: translate(-50%,-50%) scale(1.12); }
}

/* ── Glitch flash on counters ───────────────────────────────── */
@keyframes glitch-anim {
  0%   { clip-path: inset(0 0 95% 0); transform: translateX(-2px); opacity: 1; }
  20%  { clip-path: inset(40% 0 40% 0); transform: translateX(2px); }
  40%  { clip-path: inset(70% 0 0 0);  transform: translateX(-1px); }
  60%  { clip-path: inset(20% 0 60% 0); transform: translateX(1px); }
  80%  { clip-path: inset(0 0 80% 0);  transform: translateX(0); }
  100% { clip-path: inset(0 0 0 0);    transform: none; opacity: 1; }
}
.glitch-flash {
  animation: glitch-anim 0.35s steps(2) forwards;
  color: var(--c-accent) !important;
}

/* ── Contact section ambient ────────────────────────────────── */
.section-contact { overflow: hidden; }
.section-contact::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,212,255,0.018) 0%, transparent 65%);
  border-radius: 50%;
  top: -20%; right: -5%;
  pointer-events: none;
  animation: orb-drift 18s ease-in-out 2s infinite;
}

/* ── VSL section pulse ring on play button ──────────────────── */
.vsl-play-btn::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.25);
  animation: play-ring 2.5s ease-out infinite;
}
.vsl-play-btn::after {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.12);
  animation: play-ring 2.5s ease-out .5s infinite;
}
.vsl-play-btn { position: relative; }
@keyframes play-ring {
  0%   { transform: scale(1);   opacity: .8; }
  100% { transform: scale(1.5); opacity: 0;  }
}

/* ── Animated cyan accent line on section entry ─────────────── */
.section-label { position: relative; display: inline-block; }
.section-label::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--c-accent);
  box-shadow: 0 0 6px var(--c-accent);
  transition: width .8s var(--ease-out);
}
.section-label.label-line::after { width: 100%; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .2s !important;
  }
  .reveal-item { opacity: 1; transform: none; }
  .ticker-track { animation: none; }
}
