/* =========================================================
   VIVENOVA — Sistemas de videovigilancia y seguridad
   Identidad visual #1 · Dark tech · teal → indigo
   ========================================================= */

:root {
  /* color */
  --bg:        #080b13;
  --bg-2:      #0e1320;
  --bg-3:      #151c2e;
  --line:      rgba(148, 163, 184, 0.14);
  --line-2:    rgba(148, 163, 184, 0.24);
  --fg:        #eaf0fb;
  --muted:     rgba(214, 224, 240, 0.66);
  --muted-2:   rgba(214, 224, 240, 0.42);
  --teal:      #25d7c8;
  --teal-2:    #19b3c9;
  --indigo:    #6573ff;
  --accent:    var(--teal);
  --grad:      linear-gradient(120deg, #25d7c8 0%, #4f8bff 55%, #6573ff 100%);
  --grad-soft: linear-gradient(120deg, rgba(37,215,200,.16), rgba(101,115,255,.16));
  --danger:    #ff6b6b;
  --ok:        #38d39f;

  /* type */
  --display: "Space Grotesk", system-ui, sans-serif;
  --body:    "Inter", system-ui, -apple-system, sans-serif;

  /* metrics */
  --container: 1240px;
  --radius:   18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --ease:     cubic-bezier(.22,.61,.36,1);
  --shadow:   0 24px 60px -28px rgba(0,0,0,.7);
  --glow:     0 0 0 1px rgba(37,215,200,.4), 0 14px 50px -12px rgba(37,215,200,.45);
}

/* ---------- reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--fg);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

/* gradient background atmosphere */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(900px 600px at 12% -8%, rgba(37,215,200,.10), transparent 60%),
    radial-gradient(820px 620px at 92% 4%, rgba(101,115,255,.12), transparent 60%);
  pointer-events: none; z-index: 0;
}

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 28px; }
.section { position: relative; z-index: 1; padding: 104px 0; }
.section--tight { padding: 72px 0; }
@media (max-width: 760px){ .section { padding: 64px 0; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--teal); font-weight: 600;
}
.eyebrow::before { content:""; width: 26px; height: 1px; background: var(--teal); opacity: .7; }

h1,h2,h3,h4 { font-family: var(--display); font-weight: 600; line-height: 1.08; letter-spacing: -.02em; }
.h-xl { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.h-lg { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.h-md { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.lead { font-size: clamp(1.05rem, 1.7vw, 1.22rem); color: var(--muted); max-width: 60ch; }
.text-grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.muted { color: var(--muted); }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head .lead { margin-top: 18px; }
.center { text-align: center; margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; transition: transform .25s var(--ease), box-shadow .3s var(--ease), background .3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad); color: #05121a; box-shadow: 0 12px 34px -14px rgba(37,215,200,.7); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -14px rgba(37,215,200,.85); }
.btn--ghost { background: rgba(255,255,255,.03); border-color: var(--line-2); color: var(--fg); }
.btn--ghost:hover { background: rgba(255,255,255,.07); transform: translateY(-3px); }
.btn--block { width: 100%; justify-content: center; }

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; inset-inline: 0; z-index: 60;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8,11,19,.82); backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 600; font-size: 1.22rem; letter-spacing: -.02em; }
.brand .mark {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: var(--grad); color: #05121a; box-shadow: 0 8px 22px -8px rgba(37,215,200,.8);
}
.brand .mark svg { width: 19px; height: 19px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 15px; color: var(--muted); position: relative; padding: 6px 0; transition: color .25s; }
.nav-links a::after { content:""; position:absolute; left:0; bottom:0; height:2px; width:0; background: var(--grad); transition: width .3s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--fg); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line-2); border-radius: 11px; background: rgba(255,255,255,.03); position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content:""; position:absolute; left:50%; top:50%; width:18px; height:2px; background: var(--fg); border-radius:2px; translate:-50% -50%; transition: .3s var(--ease);
}
.nav-toggle span::before { translate:-50% -7px; }
.nav-toggle span::after  { translate:-50% 5px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { translate:-50% -50%; rotate: 45deg; }
.nav-toggle.open span::after  { translate:-50% -50%; rotate:-45deg; }

@media (max-width: 940px){
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .mobile-menu {
    position: fixed; inset: 76px 0 auto 0; z-index: 55;
    background: rgba(10,14,22,.98); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line); padding: 22px 28px 34px;
    display: grid; gap: 6px; transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .3s var(--ease);
  }
  .mobile-menu.open { transform: none; opacity: 1; pointer-events: auto; }
  .mobile-menu a { padding: 13px 4px; font-size: 18px; border-bottom: 1px solid var(--line); font-family: var(--display); }
  .mobile-menu .btn { margin-top: 16px; }
}
@media (min-width: 941px){ .mobile-menu { display: none; } }

/* ---------- hero ---------- */
.hero { position: relative; padding: 168px 0 96px; overflow: hidden; }
#hero-canvas { position: absolute; inset: 0; z-index: 0; opacity: .9; }
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,.04); border: 1px solid var(--line-2); font-size: 13px; color: var(--muted); margin-bottom: 26px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 4px rgba(56,211,159,.18); }
.hero h1 { margin-bottom: 22px; }
.hero .lead { margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-trust div span { display:block; font-family: var(--display); font-size: 1.9rem; font-weight: 600; }
.hero-trust div small { color: var(--muted-2); font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; }

.hero-visual { position: relative; }
.hero-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-2);
  box-shadow: var(--shadow); background: var(--bg-2);
}
.hero-card img { width: 100%; height: 480px; object-fit: cover; }
.hero-card::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 40%, rgba(8,11,19,.7)); }
.hero-chip {
  position: absolute; z-index: 3; display:flex; align-items:center; gap: 11px;
  padding: 12px 16px; border-radius: 14px; background: rgba(13,18,29,.82); backdrop-filter: blur(10px);
  border: 1px solid var(--line-2); font-size: 13.5px; box-shadow: var(--shadow);
}
.hero-chip .ic { width: 34px; height: 34px; border-radius: 10px; display:grid; place-items:center; background: var(--grad-soft); color: var(--teal); }
.hero-chip .ic svg { width: 18px; height: 18px; }
.hero-chip strong { font-family: var(--display); }
.hero-chip.c1 { left: -22px; top: 32px; }
.hero-chip.c2 { right: -16px; bottom: 96px; }

@media (max-width: 920px){
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-card img { height: 360px; }
  .hero-chip.c1 { left: 12px; } .hero-chip.c2 { right: 12px; }
}

/* ---------- marquee ---------- */
.marquee { border-block: 1px solid var(--line); padding: 22px 0; overflow: hidden; position: relative; z-index: 1; background: var(--bg-2); }
.marquee-track { display: flex; gap: 64px; width: max-content; animation: scroll-x 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { font-family: var(--display); font-size: 1.15rem; color: var(--muted-2); display: inline-flex; align-items: center; gap: 16px; }
.marquee span::after { content:"●"; color: var(--teal); font-size: 8px; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px){ .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px){ .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  position: relative; background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px; transition: transform .35s var(--ease), border-color .35s, background .35s;
  overflow: hidden;
}
.card::before {
  content:""; position:absolute; inset:0; border-radius: inherit; padding:1px;
  background: var(--grad); opacity:0; transition: opacity .35s;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events:none;
}
.card:hover { transform: translateY(-6px); background: var(--bg-3); }
.card:hover::before { opacity: 1; }
.card .ic {
  width: 54px; height: 54px; border-radius: 14px; display:grid; place-items:center;
  background: var(--grad-soft); color: var(--teal); margin-bottom: 22px; border: 1px solid var(--line-2);
}
.card .ic svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15px; }
.card .more { display:inline-flex; align-items:center; gap:7px; margin-top: 18px; color: var(--teal); font-weight:600; font-size: 14px; }
.card .more svg { width:15px; height:15px; transition: transform .3s; }
.card:hover .more svg { transform: translateX(4px); }

/* feature media split */
.split { display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items:center; }
.split.rev .split-media { order: 2; }
@media (max-width: 860px){ .split { grid-template-columns: 1fr; gap: 36px; } .split.rev .split-media{ order:0; } }
.split-media { position: relative; border-radius: var(--radius-lg); overflow:hidden; border:1px solid var(--line-2); box-shadow: var(--shadow); }
.split-media img { width:100%; height: 440px; object-fit: cover; }
.check-list { display:grid; gap: 14px; margin: 26px 0; }
.check-list li { display:flex; gap: 13px; align-items:flex-start; color: var(--muted); }
.check-list .tick { flex:none; width: 24px; height:24px; border-radius:7px; background: var(--grad-soft); color: var(--teal); display:grid; place-items:center; }
.check-list .tick svg { width:14px; height:14px; }

/* stats */
.stats { display:grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
@media (max-width:760px){ .stats { grid-template-columns: repeat(2,1fr); } }
.stat { padding: 28px; border-radius: var(--radius); border:1px solid var(--line); background: var(--bg-2); text-align:center; }
.stat .num { font-family: var(--display); font-size: clamp(2.2rem,4vw,3rem); font-weight: 600; }
.stat .num .text-grad{ display:inline; }
.stat .lbl { color: var(--muted); font-size: 13.5px; margin-top: 6px; letter-spacing:.03em; }

/* steps */
.steps { display:grid; grid-template-columns: repeat(4,1fr); gap: 22px; counter-reset: step; }
@media (max-width:860px){ .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width:520px){ .steps { grid-template-columns: 1fr; } }
.step { position:relative; padding: 30px 26px; border-radius: var(--radius); border:1px solid var(--line); background: var(--bg-2); }
.step::before { counter-increment: step; content: "0" counter(step); font-family: var(--display); font-size: 2.4rem; font-weight:600; color: transparent; -webkit-text-stroke: 1px rgba(37,215,200,.45); display:block; margin-bottom: 16px; }
.step h4 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* swiper */
.swiper { overflow: hidden; padding-bottom: 6px; }
.tcard { background: var(--bg-2); border:1px solid var(--line); border-radius: var(--radius); padding: 32px; height:auto; }
.tcard .quote { font-size: 1.08rem; line-height:1.6; margin-bottom: 22px; }
.tcard .stars { color: #ffce4d; letter-spacing: 2px; margin-bottom: 16px; }
.tcard .who { display:flex; align-items:center; gap: 13px; }
.tcard .who .av { width:46px; height:46px; border-radius:50%; background: var(--grad); display:grid; place-items:center; color:#05121a; font-family:var(--display); font-weight:600; }
.tcard .who b { font-family: var(--display); font-weight:600; }
.tcard .who small { display:block; color: var(--muted-2); }
.swiper-pagination-bullet { background: var(--muted-2); opacity:1; }
.swiper-pagination-bullet-active { background: var(--teal); width: 22px; border-radius: 4px; }
.gallery-slide { border-radius: var(--radius); overflow:hidden; border:1px solid var(--line-2); }
.gallery-slide img { width:100%; height: 300px; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-slide:hover img { transform: scale(1.06); }

/* pricing */
.plans { display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
@media (max-width:900px){ .plans { grid-template-columns: 1fr; max-width: 460px; margin-inline:auto; } }
.plan { border:1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; background: var(--bg-2); display:flex; flex-direction:column; }
.plan.featured { border-color: transparent; background: linear-gradient(var(--bg-3),var(--bg-3)) padding-box, var(--grad) border-box; border:1px solid transparent; transform: scale(1.03); box-shadow: var(--shadow); }
.plan .tag { align-self:flex-start; font-size:12px; letter-spacing:.14em; text-transform:uppercase; color: var(--teal); background: var(--grad-soft); padding: 5px 12px; border-radius:999px; margin-bottom: 16px; }
.plan h3 { font-size: 1.35rem; }
.plan .price { font-family: var(--display); font-size: 2.6rem; font-weight:600; margin: 14px 0 4px; }
.plan .price small { font-size: 1rem; color: var(--muted-2); font-weight:400; }
.plan ul { display:grid; gap: 12px; margin: 22px 0 28px; }
.plan ul li { display:flex; gap:11px; color: var(--muted); font-size: 14.5px; }
.plan ul .tick { color: var(--teal); flex:none; }
.plan .btn { margin-top:auto; }

/* accordion */
.accordion { display:grid; gap: 14px; max-width: 820px; margin-inline:auto; }
.ac-item { border:1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg-2); overflow:hidden; }
.ac-head { width:100%; text-align:left; padding: 22px 24px; display:flex; justify-content:space-between; align-items:center; gap:18px; background:transparent; color:var(--fg); font-family:var(--display); font-size: 1.08rem; }
.ac-head .pm { flex:none; width:30px; height:30px; border-radius:8px; border:1px solid var(--line-2); display:grid; place-items:center; transition: .3s; }
.ac-head .pm svg{ width:16px; height:16px; transition:.3s; }
.ac-item.open .pm { background: var(--grad); color:#05121a; }
.ac-item.open .pm svg { transform: rotate(45deg); }
.ac-body { max-height:0; overflow:hidden; transition: max-height .4s var(--ease); }
.ac-body p { padding: 0 24px 24px; color: var(--muted); }

/* CTA band */
.cta-band { position: relative; z-index:1; }
.cta-inner {
  position: relative; overflow:hidden; border-radius: var(--radius-lg); padding: 72px 56px; text-align:center;
  background: linear-gradient(var(--bg-2),var(--bg-2)) padding-box, var(--grad) border-box; border: 1px solid transparent;
}
.cta-inner::before { content:""; position:absolute; inset:0; background: radial-gradient(600px 300px at 50% -20%, rgba(37,215,200,.18), transparent 70%); }
.cta-inner > * { position: relative; }
.cta-inner h2 { margin-bottom: 18px; }
.cta-inner .lead { margin: 0 auto 30px; }
.cta-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
@media (max-width:600px){ .cta-inner { padding: 48px 24px; } }

/* ---------- forms ---------- */
.form { display:grid; gap: 18px; }
.field { display:grid; gap: 8px; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--fg); }
.field label .req { color: var(--teal); }
.field input, .field select, .field textarea {
  width:100%; padding: 13px 16px; border-radius: var(--radius-sm); border:1px solid var(--line-2);
  background: var(--bg); color: var(--fg); font: inherit; font-size: 15px; transition: border-color .25s, box-shadow .25s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(37,215,200,.16); outline:none; }
.field .err { color: var(--danger); font-size: 12.5px; display:none; align-items:center; gap:6px; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--danger); }
.field.invalid .err { display:flex; }
.row-2 { display:grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width:560px){ .row-2 { grid-template-columns: 1fr; } }
.consent { display:flex; gap:11px; align-items:flex-start; font-size: 13px; color: var(--muted); }
.consent input { width:18px; height:18px; margin-top:3px; accent-color: var(--teal); flex:none; }
.form-note { font-size: 12.5px; color: var(--muted-2); }
.form-success { display:none; padding: 16px 18px; border-radius: var(--radius-sm); background: rgba(56,211,159,.1); border:1px solid rgba(56,211,159,.4); color: var(--ok); align-items:center; gap:10px; }
.form-success.show { display:flex; }

/* contact split */
.contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items:start; }
@media (max-width:880px){ .contact-grid { grid-template-columns: 1fr; } }
.info-list { display:grid; gap: 18px; margin: 28px 0; }
.info-list li { display:flex; gap: 15px; align-items:flex-start; }
.info-list .ic { flex:none; width:46px; height:46px; border-radius:12px; background: var(--grad-soft); color: var(--teal); display:grid; place-items:center; border:1px solid var(--line-2); }
.info-list .ic svg { width:20px; height:20px; }
.info-list b { font-family: var(--display); display:block; }
.info-list span { color: var(--muted); font-size: 14.5px; }
.map-wrap { border-radius: var(--radius); overflow:hidden; border:1px solid var(--line-2); min-height: 280px; }
.map-wrap iframe { width:100%; height: 100%; min-height: 280px; border:0; filter: grayscale(.3) invert(.92) hue-rotate(170deg) contrast(.9); }

/* ---------- page hero (inner pages) ---------- */
.page-hero { position: relative; padding: 150px 0 60px; overflow:hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(700px 380px at 80% 0, rgba(101,115,255,.14), transparent 65%); }
.page-hero .container { position: relative; }
.breadcrumb { display:flex; gap:9px; align-items:center; color: var(--muted-2); font-size: 13.5px; margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb svg { width: 14px; height:14px; opacity:.6; }

/* prose (legal) */
.prose { max-width: 800px; }
.prose h2 { font-size: 1.5rem; margin: 40px 0 14px; }
.prose h3 { font-size: 1.18rem; margin: 26px 0 10px; }
.prose p, .prose li { color: var(--muted); margin-bottom: 12px; }
.prose ul { list-style: disc; padding-left: 22px; display:grid; gap:8px; margin-bottom: 16px; }
.prose a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--fg); }
.prose table { width:100%; border-collapse: collapse; margin: 18px 0; font-size: 14px; }
.prose th, .prose td { border:1px solid var(--line); padding: 10px 12px; text-align:left; }
.prose th { background: var(--bg-2); font-family: var(--display); font-weight:600; }
.prose td { color: var(--muted); }

/* ---------- footer ---------- */
.site-footer { position: relative; z-index:1; border-top:1px solid var(--line); background: var(--bg-2); padding: 72px 0 30px; }
.footer-grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width:860px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width:520px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { color: var(--muted); font-size: 14.5px; margin: 16px 0 22px; max-width: 34ch; }
.footer-col h4 { font-family: var(--display); font-size: 14px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px; }
.footer-col a { display:block; color: var(--muted); font-size: 14.5px; padding: 6px 0; transition: color .25s, transform .25s; }
.footer-col a:hover { color: var(--teal); transform: translateX(3px); }
.socials { display:flex; gap: 12px; }
.socials a {
  width: 42px; height:42px; border-radius:12px; border:1px solid var(--line-2); display:grid; place-items:center;
  color: var(--muted); transition: .3s var(--ease); background: rgba(255,255,255,.02);
}
.socials a:hover { color:#05121a; background: var(--grad); border-color: transparent; transform: translateY(-3px); }
.socials a svg { width:19px; height:19px; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; gap:18px; flex-wrap:wrap; margin-top: 52px; padding-top: 26px; border-top:1px solid var(--line); color: var(--muted-2); font-size: 13.5px; }
.footer-bottom a:hover { color: var(--teal); }

/* ---------- cookie banner ---------- */
.cookie {
  position: fixed; z-index: 90; left: 24px; right: 24px; bottom: 24px; max-width: 460px;
  background: rgba(13,18,29,.96); backdrop-filter: blur(16px); border:1px solid var(--line-2);
  border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow);
  transform: translateY(140%); transition: transform .5s var(--ease);
}
.cookie.show { transform: none; }
.cookie h4 { font-size: 1.1rem; margin-bottom: 8px; display:flex; align-items:center; gap:9px; }
.cookie h4 svg { width:20px; height:20px; color: var(--teal); }
.cookie p { color: var(--muted); font-size: 13.5px; margin-bottom: 18px; }
.cookie p a { color: var(--teal); text-decoration: underline; }
.cookie-actions { display:flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 11px 18px; font-size: 14px; }
@media (max-width:520px){ .cookie { left:12px; right:12px; bottom:12px; } }

/* ---------- reveal animation base ----------
   Hidden state applies ONLY when JS is active (.reveal-ready on <html>).
   Without JS, content stays fully visible — safe for crawlers / Google Ads. */
.reveal-ready [data-reveal],
.reveal-ready [data-reveal-group] [data-reveal-item] { opacity: 0; transform: translateY(26px); will-change: opacity, transform; }
@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  [data-reveal]{ opacity:1 !important; transform:none !important; }
  .marquee-track{ animation: none; }
}

/* badge pills */
.pill { display:inline-flex; align-items:center; gap:8px; padding:7px 14px; border-radius:999px; border:1px solid var(--line-2); background: rgba(255,255,255,.03); font-size:13px; color: var(--muted); }
.pill .d { width:7px;height:7px;border-radius:50%;background:var(--teal); }

.divider { height:1px; background: var(--line); border:0; margin: 0; }
