/* ============================================================
   nol3m — Brutal Rave Poster Design
   ============================================================ */

:root {
  --lime: #a8ff3e;
  --lime-dark: #7acc1e;
  --black: #080808;
  --black-2: #0f0f0f;
  --white: #f5f5f5;
  --gray: #888;
  --gray-dark: #333;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* ── FONTS ────────────────────────────────── */
.azonix, h1, h2, .hero-line span, .pb-title, .contact-title,
.footer-big, .nav-logo, .pb-number, .ms-num, .ss-num,
.manifesto-label, .section-label, .cf-submit, .contact-email,
.contact-label, .pb-features span, .nav-link, .nav-cta,
.hero-badge, .loader-text, .ptag, .mm-header, .mm-total {
  font-family: 'Azonix', 'Bebas Neue', 'Inter', sans-serif;
  letter-spacing: 0.02em;
}

/* ── CURSOR ───────────────────────────────── */
.cursor {
  position: fixed;
  width: 40px; height: 40px;
  border: 2px solid var(--lime);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s, border-color 0.2s;
  mix-blend-mode: difference;
}

.cursor-dot {
  position: fixed;
  width: 6px; height: 6px;
  background: var(--lime);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor.active {
  width: 70px; height: 70px;
  background: rgba(168,255,62,0.1);
}

/* ── LOADER ───────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--lime);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.loader-text {
  display: flex;
  gap: 4px;
}

.loader-text span {
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 900;
  color: var(--black);
  display: inline-block;
  transform: translateY(60px);
  opacity: 0;
  animation: loaderChar 0.5s forwards;
}

.loader-text span:nth-child(1) { animation-delay: 0.0s; }
.loader-text span:nth-child(2) { animation-delay: 0.1s; }
.loader-text span:nth-child(3) { animation-delay: 0.2s; }
.loader-text span:nth-child(4) { animation-delay: 0.3s; }
.loader-text span:nth-child(5) { animation-delay: 0.4s; }

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

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(0,0,0,0.2);
  border-radius: 2px;
  overflow: hidden;
}

.loader-progress {
  height: 100%;
  background: var(--black);
  width: 0;
  transition: width 0.05s linear;
}

.loader.done {
  transform: translateY(-100%);
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1) 0.2s;
}

/* ── NAV ──────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 20px 40px;
  transition: all 0.3s;
  mix-blend-mode: normal;
}

.nav.scrolled {
  background: rgba(8,8,8,0.95);
  padding: 14px 40px;
  border-bottom: 1px solid var(--gray-dark);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  color: var(--lime);
  text-decoration: none;
  font-weight: 900;
}

.nav-logo-img {
  height: 36px;
  width: 36px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.1);
}

.nav-logo-text {
  font-family: 'Azonix', 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
}

/* Logo flotante en hero */
.deco-logo-float {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.deco-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.05) contrast(1.1);
  animation: float 6s ease-in-out infinite;
}

/* Logo en footer */
.footer-logo-row {
  padding: 30px 40px 0;
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 80px;
  width: 80px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.1);
  opacity: 0.7;
}

.nav-center {
  display: flex;
  gap: 32px;
  margin: 0 auto;
}

.nav-link {
  font-size: 0.75rem;
  color: var(--gray);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--lime); }

.nav-cta {
  font-size: 0.75rem;
  color: var(--black);
  background: var(--lime);
  padding: 8px 20px;
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-cta:hover { background: var(--white); }

.nav-arrow { transition: transform 0.2s; }
.nav-cta:hover .nav-arrow { transform: translateX(4px); }

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
  margin-left: auto;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--lime);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.mobile-menu.open { transform: translateX(0); }

.mm-link {
  font-size: clamp(2rem, 8vw, 4rem);
  color: var(--black);
  text-decoration: none;
  font-weight: 900;
  font-family: 'Azonix', 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}

.mm-link:hover { opacity: 0.6; }

/* ── HERO ─────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: 120px 40px 60px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.hero-noise {
  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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--gray);
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--lime);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.hero-badge-right {
  font-size: 0.65rem;
  color: var(--gray);
}

/* HERO TITLE */
.hero-main {
  position: relative;
  z-index: 2;
  margin: 20px 0;
}

.hero-title-wrap {
  display: flex;
  flex-direction: column;
}

.hero-line {
  overflow: hidden;
  line-height: 0.9;
}

.ht-word {
  display: block;
  font-size: clamp(4rem, 11vw, 11rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  transform: translateY(110%);
  animation: revealLine 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  letter-spacing: -0.01em;
}

.ht-word.outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}

.ht-word.dark {
  color: var(--black);
}

.ht-icon {
  display: inline-block;
  font-size: clamp(2rem, 5vw, 5rem);
  color: var(--lime);
  transform: translateY(110%);
  animation: revealLine 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  margin-left: 20px;
}

.line-1 .ht-word { animation-delay: 0.1s; }
.line-2 .ht-word { animation-delay: 0.2s; }
.line-3 .ht-word { animation-delay: 0.3s; }
.line-3 .ht-icon { animation-delay: 0.35s; }
.line-4 .ht-word { animation-delay: 0.4s; }
.line-5 .ht-word { animation-delay: 0.5s; }

.lime-bg-line {
  background: var(--lime);
  padding: 4px 8px;
  margin: 4px 0;
  display: inline-flex;
  width: fit-content;
}

@keyframes revealLine {
  to { transform: translateY(0); }
}

/* Hero bottom */
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 2;
}

.hero-bottom-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
}


.hero-desc-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 400px;
  border-left: 2px solid var(--lime);
  padding-left: 16px;
}

.hero-desc-label {
  font-family: 'Azonix', 'Bebas Neue', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--lime);
  font-weight: 700;
}

.hero-desc {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.65;
  opacity: 0.75;
}

.hero-scroll-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  border: 1px solid var(--gray-dark);
  padding: 14px 24px;
  transition: all 0.3s;
  font-family: 'Azonix', 'Bebas Neue', sans-serif;
}

.hero-scroll-btn:hover {
  background: var(--lime);
  color: var(--black);
  border-color: var(--lime);
}

.scroll-arrow {
  display: inline-block;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* HERO DECO */
.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.deco-circle {
  position: absolute;
  right: -80px; top: 50%;
  transform: translateY(-50%);
  width: 400px; height: 400px;
  border: 2px solid var(--lime);
  border-radius: 50%;
  opacity: 0.15;
  animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow { to { transform: translateY(-50%) rotate(360deg); } }

.deco-skull {
  position: absolute;
  right: 180px; top: 30%;
  font-size: 2rem;
  color: var(--lime);
  animation: float 4s ease-in-out infinite;
}

.deco-star {
  position: absolute;
  color: var(--lime);
}

.star-1 {
  right: 100px; bottom: 30%;
  font-size: 1rem;
  animation: float 3s ease-in-out infinite 0.5s;
}

.star-2 {
  right: 250px; top: 25%;
  font-size: 0.7rem;
  animation: float 5s ease-in-out infinite 1s;
}

.deco-tag {
  position: absolute;
  right: 40px; bottom: 80px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gray);
  font-weight: 700;
  border: 1px solid var(--gray-dark);
  padding: 6px 10px;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(5deg); }
}

/* ── MARQUEE ──────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--gray-dark);
  border-bottom: 1px solid var(--gray-dark);
  padding: 14px 0;
  white-space: nowrap;
  background: var(--black-2);
}

.marquee-lime {
  background: var(--lime);
  border-color: var(--lime-dark);
}

.marquee-track {
  display: inline-flex;
  gap: 32px;
  animation: marqueeScroll 25s linear infinite;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--gray);
  font-weight: 700;
  font-family: 'Azonix', 'Bebas Neue', sans-serif;
}

.marquee-lime .marquee-track {
  color: var(--black);
}

.marquee-reverse {
  animation: marqueeScrollReverse 20s linear infinite;
}

.mx { color: var(--lime); }
.marquee-lime .mx { color: var(--black); opacity: 0.4; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marqueeScrollReverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* ── PRODUCTS ─────────────────────────────── */
.products-section {
  padding: 80px 40px;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gray);
  font-weight: 700;
  border-bottom: 1px solid var(--gray-dark);
  padding-bottom: 20px;
  margin-bottom: 60px;
  font-family: 'Azonix', 'Bebas Neue', sans-serif;
}

.products-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--gray-dark);
  border: 1px solid var(--gray-dark);
}

.product-block {
  background: var(--black);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.product-block:hover { background: var(--black-2); }

.pb-number {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 5rem;
  color: var(--gray-dark);
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s;
}

.product-block:hover .pb-number { color: #222; }

.pb-inner {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.pb-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pb-tags { display: flex; gap: 8px; align-items: center; }

.ptag {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border: 1px solid var(--gray-dark);
  color: var(--gray);
}

.ptag-live {
  color: var(--lime);
  border-color: rgba(168,255,62,0.3);
  background: rgba(168,255,62,0.08);
}

.pb-skull {
  font-size: 1.5rem;
  color: var(--lime);
}

.pb-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.92;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.outline-text {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}

/* MOCK UI */
.pb-image {
  border: 1px solid var(--gray-dark);
  border-radius: 8px;
  overflow: hidden;
  font-size: 0.72rem;
  height: 340px;
  position: relative;
  background: #0d1117;
}

.pb-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.product-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
  transition: transform 0.5s ease;
}

.product-block:hover .product-screenshot {
  transform: scale(1.02);
}

/* Fallback cuando la imagen no carga */
.img-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    -45deg,
    #0d1117 0px,
    #0d1117 10px,
    #111820 10px,
    #111820 20px
  );
  border: 2px dashed var(--gray-dark);
}

.img-fallback-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 24px;
}

.ifb-icon { font-size: 2.5rem; }

.ifb-name {
  font-family: 'Azonix', 'Bebas Neue', sans-serif;
  font-size: 1rem;
  color: var(--lime);
  letter-spacing: 0.1em;
}

.ifb-hint {
  font-size: 0.72rem;
  color: var(--gray);
  line-height: 1.5;
}

.ifb-hint code {
  color: var(--lime);
  background: rgba(168,255,62,0.1);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
}

/* ── LANA APP MOCK (fiel al producto real) ── */
.lana-app {
  display: flex;
  height: 300px;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
}

/* Sidebar navy */
.lana-sidebar {
  width: 110px;
  background: #0d1623;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  padding: 10px 0 6px;
  border-right: 1px solid #1c2a3a;
}

.lana-logo-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 8px 10px;
  border-bottom: 1px solid #1c2a3a;
  margin-bottom: 6px;
}

.lana-logo-icon {
  width: 22px; height: 22px;
  background: #1a9e5c;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.lana-logo-name {
  font-size: 0.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-family: 'Azonix', 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
}

.lana-logo-sub {
  font-size: 0.45rem;
  color: #1a9e5c;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.lana-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 0 4px;
}

.lana-nav-item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 6px;
  color: #4a6a8a;
  font-size: 0.62rem;
  border-radius: 5px;
  cursor: default;
  position: relative;
}

.lni { font-size: 0.6rem; flex-shrink: 0; }

.lana-active {
  color: #1a9e5c;
  background: rgba(26,158,92,0.12);
}

.lana-nav-active-billing {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.lna-dot {
  width: 5px; height: 5px;
  background: #1a9e5c;
  border-radius: 50%;
  position: absolute;
  right: 6px;
  animation: blink 1.5s infinite;
}

.lana-plan {
  margin: 6px 4px;
  background: rgba(26,158,92,0.15);
  border: 1px solid rgba(26,158,92,0.3);
  border-radius: 5px;
  padding: 5px 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lana-plan-badge {
  font-size: 0.5rem;
  color: #1a9e5c;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.lana-plan-beta {
  font-size: 0.45rem;
  color: #f59e0b;
  background: rgba(245,158,11,0.15);
  padding: 1px 4px;
  border-radius: 3px;
  font-weight: 700;
  width: fit-content;
}

.lana-nav-bottom {
  border-top: 1px solid #1c2a3a;
  padding: 4px 4px 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.lana-small { font-size: 0.55rem; padding: 4px 6px; }

/* Main panel */
.lana-main {
  flex: 1;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* KPIs */
.lana-kpis {
  display: flex;
  gap: 1px;
  background: #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.lana-kpi {
  flex: 1;
  background: #fff;
  padding: 7px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lkpi-icon {
  font-size: 0.8rem;
  width: 18px; height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
}

.lkpi-icon.warn { background: rgba(239,68,68,0.1); color: #ef4444; }
.lkpi-icon.green { background: rgba(26,158,92,0.1); color: #1a9e5c; font-weight: 700; font-size: 0.65rem; }
.lkpi-icon.orange { background: rgba(245,158,11,0.1); color: #f59e0b; }

.lkpi-val { font-size: 0.9rem; font-weight: 800; color: #0f172a; line-height: 1; }
.lkpi-val.green { color: #1a9e5c; }
.lkpi-lab { font-size: 0.45rem; color: #94a3b8; font-weight: 700; letter-spacing: 0.04em; }

/* Billing panel */
.lana-billing {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.lbill-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
}

.lbill-title {
  font-size: 0.68rem;
  font-weight: 700;
  color: #0f172a;
}

.lbill-tabs {
  display: flex;
  gap: 2px;
}

.ltab {
  font-size: 0.55rem;
  padding: 3px 7px;
  border-radius: 4px;
  color: #94a3b8;
  cursor: default;
  font-weight: 600;
}

.ltab.active {
  background: #fff;
  color: #0f172a;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

.lbill-totals {
  display: flex;
  gap: 1px;
  background: #e2e8f0;
  padding: 1px;
}

.lbt {
  flex: 1;
  background: #fff;
  padding: 5px 8px;
}

.lbt-lab {
  font-size: 0.45rem;
  color: #94a3b8;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.lbt-val {
  font-size: 0.75rem;
  font-weight: 800;
  color: #0f172a;
}

.lbt-val.green { color: #1a9e5c; }
.lbt-total { background: #f0fdf4; }

.lbill-table {
  flex: 1;
  overflow: hidden;
}

.lbill-row {
  display: grid;
  grid-template-columns: 1.2fr 0.4fr 1.2fr 0.6fr;
  gap: 4px;
  padding: 4px 8px;
  border-bottom: 1px solid #f1f5f9;
  align-items: center;
  color: #334155;
  font-size: 0.58rem;
}

.lbill-head {
  color: #94a3b8;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: #f8fafc;
}

.lstatus {
  font-size: 0.48rem;
  font-weight: 700;
  padding: 2px 4px;
  border-radius: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lstatus.pagada { color: #1a9e5c; background: rgba(26,158,92,0.1); border: 1px solid rgba(26,158,92,0.25); }
.lstatus.rectif { color: #6366f1; background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.2); }
.lstatus.rectada { color: #64748b; background: #f1f5f9; border: 1px solid #e2e8f0; }

/* Chat strip */
.lana-chat-strip {
  background: #fff;
  border-top: 1px solid #e2e8f0;
  padding: 5px 8px;
  display: flex;
  gap: 6px;
  align-items: center;
}

.lcs-msg {
  font-size: 0.55rem;
  padding: 4px 8px;
  border-radius: 8px;
  max-width: 50%;
  line-height: 1.3;
}

.lcs-msg.user {
  background: #1a9e5c;
  color: #fff;
  margin-left: auto;
  border-radius: 8px 8px 2px 8px;
}

.lcs-msg.bot {
  background: #f1f5f9;
  color: #334155;
  border-radius: 8px 8px 8px 2px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.lcs-tag {
  font-size: 0.45rem;
  background: rgba(26,158,92,0.15);
  color: #1a9e5c;
  padding: 1px 4px;
  border-radius: 3px;
  font-weight: 700;
}

/* Cluber mock */
.cluber-ui {
  flex-direction: column;
  height: auto;
  padding: 12px;
}

.cluber-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.ch-dot {
  width: 20px; height: 20px;
  background: #1e3a5f;
  border: 2px solid #3b82f6;
  border-radius: 4px;
  flex-shrink: 0;
}

.ch-name { font-size: 0.72rem; font-weight: 700; color: var(--white); }
.ch-sub { font-size: 0.58rem; color: #444; }

.cluber-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  margin-bottom: 12px;
}

.cs-item {
  background: #0d1015;
  border: 1px solid #1a1d25;
  padding: 8px;
}

.cs-val { font-size: 0.9rem; font-weight: 700; color: var(--white); }
.cs-lab { font-size: 0.55rem; color: #444; }
.cs-delta { font-size: 0.6rem; color: #22c55e; font-weight: 700; }
.cs-delta.down { color: #ef4444; }

.cluber-bars {}
.cb-label { font-size: 0.58rem; color: #444; margin-bottom: 4px; }
.bars-row { display: flex; gap: 3px; align-items: flex-end; height: 36px; }
.b { flex: 1; background: #1a3050; border-radius: 1px 1px 0 0; min-height: 4px; }
.b.active { background: #3b82f6; }

/* FEATURES */
.pb-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pb-features span {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--lime);
  border: 1px solid rgba(168,255,62,0.3);
  padding: 3px 8px;
  background: rgba(168,255,62,0.06);
}

.pb-desc {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: auto;
}

/* ── MANIFESTO ────────────────────────────── */
.manifesto-section {
  padding: 80px 40px;
  background: var(--black-2);
  border-top: 1px solid var(--gray-dark);
}

.manifesto-inner { max-width: 1180px; margin: 0 auto; }

.manifesto-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gray);
  font-weight: 700;
  border-bottom: 1px solid var(--gray-dark);
  padding-bottom: 20px;
  margin-bottom: 0;
}

.manifesto-steps {
  display: flex;
  flex-direction: column;
}

.ms-step {
  display: grid;
  grid-template-columns: 120px 1fr 60px;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-dark);
  transition: background 0.2s;
}

.ms-step:hover { background: rgba(168,255,62,0.02); }
.ms-step-alt { direction: rtl; }
.ms-step-alt > * { direction: ltr; }

.ms-num {
  font-size: 4rem;
  color: var(--gray-dark);
  line-height: 1;
  transition: color 0.3s;
}

.ms-step:hover .ms-num { color: var(--lime); }

.ms-content h3 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-family: 'Azonix', 'Bebas Neue', sans-serif;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.ms-step:hover .ms-content h3 { color: var(--lime); }

.ms-content p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 500px;
}

.ms-deco {
  font-size: 1.5rem;
  color: var(--gray-dark);
  text-align: center;
  transition: color 0.3s, transform 0.3s;
}

.ms-step:hover .ms-deco {
  color: var(--lime);
  transform: scale(1.4) rotate(10deg);
}

/* ── STATS STRIP ──────────────────────────── */
.stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 60px 40px;
  background: var(--lime);
  border-top: 1px solid var(--lime-dark);
  border-bottom: 1px solid var(--lime-dark);
}

.ss-item-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.ss-num {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--black);
  line-height: 1;
  font-weight: 900;
}

.ss-lab {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: rgba(0,0,0,0.5);
  text-align: center;
  font-weight: 700;
  font-family: 'Azonix', 'Bebas Neue', sans-serif;
}

.ss-divider {
  font-size: 1.5rem;
  color: rgba(0,0,0,0.2);
}

/* ── CONTACT ──────────────────────────────── */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.contact-left {
  padding: 80px 60px 80px 40px;
  background: var(--black);
  border-right: 1px solid var(--gray-dark);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gray);
  font-weight: 700;
}

.contact-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-sub {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 340px;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--lime);
  text-decoration: none;
  font-weight: 700;
  font-family: 'Azonix', 'Bebas Neue', sans-serif;
  border-bottom: 1px solid var(--lime);
  padding-bottom: 4px;
  transition: gap 0.2s, color 0.2s;
  width: fit-content;
}

.contact-email:hover { gap: 20px; }

.contact-decos {
  display: flex;
  gap: 16px;
  margin-top: auto;
}

.cd-item {
  font-size: 1.2rem;
  color: var(--gray-dark);
  transition: color 0.3s;
}

.contact-left:hover .cd-item { color: var(--lime); }

/* FORM */
.contact-right {
  padding: 80px 40px 80px 60px;
  background: var(--black-2);
  display: flex;
  align-items: center;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cf-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cf-group label {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--gray);
  font-weight: 700;
  font-family: 'Azonix', 'Bebas Neue', sans-serif;
}

.cf-group input,
.cf-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gray-dark);
  padding: 10px 0;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  transition: border-color 0.2s;
  resize: none;
  outline: none;
}

.cf-group input:focus,
.cf-group textarea:focus {
  border-color: var(--lime);
}

.cf-group input::placeholder,
.cf-group textarea::placeholder {
  color: #333;
}

.cf-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--lime);
  color: var(--black);
  border: none;
  padding: 16px 24px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  font-weight: 900;
  cursor: none;
  transition: all 0.2s;
  margin-top: 8px;
}

.cf-submit:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.cf-btn-arrow { font-size: 1.2rem; transition: transform 0.2s; }
.cf-submit:hover .cf-btn-arrow { transform: translateX(6px); }

/* ── FOOTER ───────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--gray-dark);
  overflow: hidden;
}

.footer-top {
  padding: 40px 40px 0;
  overflow: hidden;
}

.footer-big {
  font-size: clamp(6rem, 18vw, 18rem);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px var(--gray-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  transition: -webkit-text-stroke-color 0.5s;
}

.footer:hover .footer-big { -webkit-text-stroke-color: rgba(168,255,62,0.3); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-top: 1px solid var(--gray-dark);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--gray);
  font-weight: 600;
  font-family: 'Azonix', 'Bebas Neue', sans-serif;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-links-row a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links-row a:hover { color: var(--lime); }

/* ── SCROLL ANIMATIONS ────────────────────── */
[data-scroll] {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-scroll="fade-up"] { transform: translateY(50px); }
[data-scroll="slide-left"] { transform: translateX(-80px); }
[data-scroll="slide-right"] { transform: translateX(80px); }

[data-scroll].in-view {
  opacity: 1;
  transform: none;
}

/* ── CARD VISUALS (CSS-only product screens) ── */
.cv {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.lana-cv { background: #0d1623; }
.cluber-cv { background: #0a0f1a; }

.cv-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0;
}

.cv-glow-blob {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none; z-index: 0;
  opacity: 0.4;
}
.green-blob { background: #22c55e; top: -60px; right: -40px; }
.blue-blob { background: #3b82f6; top: -60px; right: -40px; }

.cv-expand-hint {
  position: absolute;
  bottom: 10px; right: 12px;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
  font-weight: 700;
  z-index: 10;
  transition: color 0.2s;
  font-family: 'Azonix','Bebas Neue',sans-serif;
}
.pb-image:hover .cv-expand-hint { color: var(--lime); }
.pb-image { cursor: pointer; }

/* Top bar */
.cv-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative; z-index: 2;
  flex-shrink: 0;
}

.cv-brand { display: flex; align-items: center; gap: 7px; }
.cv-brand-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: blink 1.5s infinite;
}
.blue-dot { background: #3b82f6; }

.cv-brand-logo {
  height: 20px; width: 20px;
  object-fit: contain;
  mix-blend-mode: screen;
}

.cv-brand-name {
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  font-family: 'Azonix','Bebas Neue',sans-serif;
  letter-spacing: 0.05em;
}
.cv-brand-name em { font-style: normal; color: rgba(255,255,255,0.45); font-weight: 400; font-family: 'Inter',sans-serif; font-size: 0.62rem; }

.cv-status-pill {
  font-size: 0.55rem;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.06em;
}

.cv-club-name {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

/* KPI row */
.cv-kpi-row {
  display: flex;
  padding: 10px 14px;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative; z-index: 2;
  flex-shrink: 0;
}

.cv-kpi-card {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 7px 8px;
  display: flex; flex-direction: column; gap: 2px;
}

.cv-kpi-num {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-family: 'Azonix','Bebas Neue',sans-serif;
}

.cv-kpi-lbl {
  font-size: 0.52rem;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
}

.cv-kpi-delta {
  font-size: 0.58rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
}

/* Table (LANA) */
.cv-table-wrap {
  flex: 1;
  padding: 8px 14px;
  display: flex; flex-direction: column; gap: 3px;
  position: relative; z-index: 2;
  overflow: hidden;
}

.cv-tr {
  display: grid;
  grid-template-columns: 1.1fr 0.5fr 1.3fr 0.7fr;
  gap: 4px;
  align-items: center;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.55);
}

.cv-tr-head {
  font-size: 0.5rem;
  color: rgba(255,255,255,0.2);
  font-weight: 700;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  padding-bottom: 6px !important;
}

.cv-mono { font-family: monospace; font-size: 0.58rem; }

.cv-pill {
  font-size: 0.5rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

/* Chat */
.cv-chat-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px 14px;
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative; z-index: 2;
  flex-shrink: 0;
}

.cv-bubble {
  font-size: 0.6rem;
  padding: 5px 10px;
  border-radius: 8px;
  max-width: 80%;
  line-height: 1.4;
}

.user-b {
  background: rgba(168,255,62,0.15);
  color: var(--lime);
  align-self: flex-end;
  border-radius: 8px 8px 2px 8px;
}

.bot-b {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  align-self: flex-start;
  border-radius: 8px 8px 8px 2px;
  display: flex; gap: 5px; align-items: center;
}

/* Chart (Cluber) */
.cv-chart-wrap {
  flex: 1;
  padding: 8px 14px;
  display: flex; flex-direction: column; gap: 6px;
  position: relative; z-index: 2;
  overflow: hidden;
}

.cv-chart-label {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
}

.cv-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 60px;
}

.cv-bar {
  flex: 1;
  background: rgba(59,130,246,0.25);
  border-radius: 2px 2px 0 0;
  min-height: 4px;
  transition: background 0.2s;
}
.cv-bar-peak { background: #3b82f6; }
.cv-chart-wrap:hover .cv-bar { background: rgba(59,130,246,0.35); }
.cv-chart-wrap:hover .cv-bar-peak { background: #60a5fa; }

.cv-chart-x {
  display: flex;
  justify-content: space-between;
  font-size: 0.48rem;
  color: rgba(255,255,255,0.2);
}

.cv-source-row {
  display: flex;
  gap: 14px;
  padding: 7px 14px;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative; z-index: 2;
  flex-shrink: 0;
}

.cv-src {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.58rem;
  color: rgba(255,255,255,0.5);
}

.cv-src-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── FAQ ──────────────────────────────────── */
.faq-section {
  background: var(--black);
  border-top: 1px solid var(--gray-dark);
  padding: 80px 40px;
}
.faq-inner { max-width: 900px; margin: 0 auto; }
.faq-header { margin-bottom: 56px; }
.faq-label {
  font-family: 'Azonix','Bebas Neue',sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--lime);
  display: block;
  margin-bottom: 16px;
}
.faq-title { font-size: clamp(2rem,5vw,3.5rem); line-height: 0.95; font-weight: 900; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--gray-dark); transition: border-color 0.2s; }
.faq-item:last-child { border-bottom: 1px solid var(--gray-dark); }
.faq-item.open { border-color: var(--lime); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: none;
  gap: 24px;
  transition: color 0.2s;
}
.faq-q:hover, .faq-item.open .faq-q { color: var(--lime); }
.faq-icon {
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--lime);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.3s; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }
.faq-a p { color: var(--gray); font-size: 0.93rem; line-height: 1.7; max-width: 720px; }

@media (max-width: 768px) {
  .faq-section { padding: 60px 24px; }
  .faq-q { font-size: 0.9rem; }
}

/* ── LIGHTBOX ─────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.lb-content {
  position: relative;
  z-index: 1;
  width: min(90vw, 1100px);
  max-height: 85vh;
  overflow: hidden;
  border: 1px solid var(--gray-dark);
  border-radius: 12px;
  transform: scale(0.9);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.open .lb-content {
  transform: scale(1);
}

.lb-content .cv {
  height: 85vh;
  max-height: 700px;
}

.lb-close {
  position: absolute;
  top: 20px; right: 20px;
  z-index: 2;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--gray-dark);
  color: var(--white);
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.lb-close:hover {
  background: var(--lime);
  color: var(--black);
  border-color: var(--lime);
}

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 1024px) {
  .products-layout { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; }
  .contact-left { padding: 60px 40px; border-right: none; border-bottom: 1px solid var(--gray-dark); }
  .contact-right { padding: 60px 40px; }
  .ms-step { grid-template-columns: 80px 1fr 40px; gap: 24px; }
}

@media (max-width: 768px) {
  .nav-center { display: none; }
  .nav-cta { display: none; }
  .burger { display: flex; }
  .nav { padding: 16px 24px; }

  .hero { padding: 100px 24px 40px; }
  .hero-badge-right { display: none; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero-bottom-right { align-items: flex-start; gap: 20px; }


  .products-section { padding: 60px 24px; }
  .pb-inner { padding: 28px; }
  .pb-title { font-size: 2.4rem; }

  .manifesto-section { padding: 60px 24px; }
  .ms-step { grid-template-columns: 60px 1fr; gap: 16px; }
  .ms-deco { display: none; }

  .stats-strip { gap: 40px; flex-wrap: wrap; padding: 40px 24px; }

  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-top { padding: 24px 24px 0; }

  .deco-circle { display: none; }
  .deco-skull, .deco-tag { display: none; }

  .cursor, .cursor-dot { display: none; }
  body { cursor: auto; }
}

/* ── FAQ ─────────────────────────────────── */
.faq-section {
  padding: 80px 40px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--gray-dark);
  border: 1px solid var(--gray-dark);
}

.faq-item {
  background: var(--black);
  padding: 30px;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-item:hover {
  background: var(--black-2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Azonix', 'Bebas Neue', sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--white);
  letter-spacing: 0.05em;
}

.faq-plus {
  color: var(--lime);
  font-size: 1.8rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-plus {
  transform: rotate(45deg);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.4s;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  margin-top: 20px;
}

.faq-answer p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 800px;
}

@media (max-width: 768px) {
  .faq-section { padding: 60px 24px; }
  .faq-item { padding: 24px; }
}

/* ── INSIGHTS ────────────────────────────── */
.insights-section {
  padding: 80px 40px;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.insight-card {
  border: 1px solid var(--gray-dark);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--black);
  transition: all 0.3s;
}

.insight-card:hover {
  border-color: var(--lime);
  transform: translateY(-5px);
  background: var(--black-2);
}

.ic-tag {
  font-family: 'Azonix', 'Bebas Neue', sans-serif;
  font-size: 0.62rem;
  color: var(--lime);
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(168,255,62,0.2);
  width: fit-content;
  padding-bottom: 4px;
}

.ic-title {
  font-family: 'Azonix', 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--white);
}

.ic-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

.ic-more {
  margin-top: auto;
  font-family: 'Azonix', 'Bebas Neue', sans-serif;
  font-size: 0.65rem;
  color: var(--gray);
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: color 0.2s;
}

.insight-card:hover .ic-more {
  color: var(--lime);
}


@media (max-width: 1024px) {
  .insights-grid { grid-template-columns: 1fr; }
}
/* ── FOOTER EXPANSION ───────────────────── */
.footer-columns {
  display: flex;
  justify-content: flex-end;
  gap: 80px;
  padding: 0 40px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-label {
  font-family: 'Azonix', 'Bebas Neue', sans-serif;
  font-size: 0.65rem;
  color: var(--gray);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.footer-col a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

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

@media (max-width: 1024px) {
  .footer-columns {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 40px;
    margin-top: 20px;
  }
}

.footer-legal-links {
  display: flex;
  gap: 16px;
  font-size: 0.65rem;
  color: var(--gray-dark);
  margin-bottom: 20px;
}

.footer-legal-links a {
  color: var(--gray-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal-links a:hover {
  color: var(--lime);
}

@media (max-width: 768px) {
  .footer-legal-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}



