/* ══════════════════════════════════════════════════
   index.css — Landing page DBLinkOn
   Mobile-first · #04080f · #1d8fff · #ffffff
══════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────── */
:root {
  --bg:        #04080f;
  --surface:   rgba(8,14,28,0.88);
  --surface2:  rgba(12,18,36,0.96);
  --border:    rgba(255,255,255,0.07);
  --border2:   rgba(255,255,255,0.13);
  --blue:      #1d8fff;
  --blue-dim:  rgba(29,143,255,0.12);
  --emerald:   #22d3a8;
  --rose:      #ff4d6d;
  --amber:     #ffb830;
  --violet:    #a78bfa;
  --text:      #ffffff;
  --muted:     rgba(255,255,255,0.42);
  --mono:      'DM Mono', monospace;
  --ease:      cubic-bezier(.16,1,.3,1);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100svh;
  overflow-x: hidden;
}

/* ── FONDO ───────────────────────────────────────── */
.bg-glow {
  position: fixed; z-index: 0; pointer-events: none;
  border-radius: 50%; filter: blur(80px);
}
.bg-glow--tl {
  width: 500px; height: 500px;
  top: -150px; left: -150px;
  background: radial-gradient(circle, rgba(29,143,255,0.14) 0%, transparent 70%);
}
.bg-glow--br {
  width: 400px; height: 400px;
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, rgba(29,143,255,0.08) 0%, transparent 70%);
}

.noise {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.022;
  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' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.grid-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.01) 1px, transparent 1px);
  background-size: 44px 44px;
}

/* ── KEYFRAMES ───────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%,100% { opacity:1; box-shadow:0 0 0 0 rgba(34,211,168,.5); }
  50%      { opacity:.8; box-shadow:0 0 0 6px rgba(34,211,168,0); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes notif-in {
  from { opacity:0; transform: translateX(30px); }
  to   { opacity:1; transform: translateX(0); }
}
@keyframes bar-grow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}
@keyframes scroll-anim {
  0%   { opacity:0; transform:scaleY(0); transform-origin:top; }
  50%  { opacity:1; transform:scaleY(1); }
  100% { opacity:0; transform:scaleY(1); transform-origin:bottom; }
}

/* ── REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.visible         { opacity:1; transform:none; }
.reveal.reveal-d1       { transition-delay:.1s; }
.reveal.reveal-d2       { transition-delay:.2s; }
.reveal.reveal-d3       { transition-delay:.3s; }
.reveal.reveal-d4       { transition-delay:.4s; }

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: fixed; top:0; left:0; right:0; z-index:100;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px;
  background: rgba(4,8,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}

.nav-brand       { display:flex; align-items:center; gap:9px; text-decoration:none; }
.nav-icon        { width:32px; height:32px; border-radius:9px; background:var(--blue-dim); border:1px solid rgba(29,143,255,0.3); display:flex; align-items:center; justify-content:center; }
.nav-icon svg    { width:14px; height:14px; stroke:var(--blue); fill:none; stroke-width:2.2; stroke-linecap:round; }
.nav-logo-text   { font-family:'Syne',sans-serif; font-size:16px; font-weight:800; letter-spacing:-.01em; color:var(--text); }
.nav-logo-text em { font-style:normal; color:var(--blue); }
.nav-links       { display:flex; align-items:center; gap:24px; }
.nav-link        { font-family:var(--mono); font-size:9px; font-weight:500; letter-spacing:.15em; text-transform:uppercase; color:var(--muted); text-decoration:none; transition:color .2s; }
.nav-link:hover  { color:var(--text); }
.nav-cta         { font-family:'Syne',sans-serif; font-size:9px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; padding:7px 16px; border-radius:20px; background:var(--blue-dim); color:var(--blue); border:1px solid rgba(29,143,255,0.3); text-decoration:none; transition:all .2s; }
.nav-cta:hover   { background:rgba(29,143,255,0.2); }

@media (max-width:640px) { .nav-links { display:none; } }

/* ── SECCIONES ───────────────────────────────────── */
section { position:relative; z-index:1; }
.section-inner { max-width:1100px; margin:0 auto; padding:80px 20px; }
@media (min-width:768px) { .section-inner { padding:96px 32px; } }

.section-tag {
  display:inline-flex; align-items:center; gap:7px;
  font-family:var(--mono); font-size:9px; font-weight:500;
  letter-spacing:.2em; text-transform:uppercase; color:var(--muted); margin-bottom:14px;
}
.section-tag::before { content:''; display:inline-block; width:18px; height:1px; background:var(--muted); }

.section-title {
  font-family:'Syne',sans-serif;
  font-size:clamp(26px,5vw,46px); font-weight:800;
  letter-spacing:-.025em; line-height:1.1; margin-bottom:14px; color:var(--text);
}

.section-sub { font-size:15px; color:var(--muted); line-height:1.72; max-width:500px; }
.section-sub--center { margin:0 auto; text-align:center; }
.section-head { margin-bottom:48px; }
.section-head--center { text-align:center; }

/* ── BOTONES ─────────────────────────────────────── */
.btn-primary {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 24px; border-radius:14px;
  background:var(--blue); color:#fff;
  font-family:'Syne',sans-serif; font-size:12px; font-weight:800;
  letter-spacing:.08em; text-transform:uppercase; text-decoration:none;
  transition:all .22s var(--ease); position:relative; overflow:hidden;
}
.btn-primary--large { padding:15px 28px; font-size:13px; }
.btn-primary::before { content:''; position:absolute; top:0; left:-100%; width:100%; height:100%; background:linear-gradient(90deg,transparent,rgba(255,255,255,.12),transparent); transition:left .5s; }
.btn-primary:hover        { transform:translateY(-2px); box-shadow:0 14px 32px rgba(29,143,255,0.45); }
.btn-primary:hover::before{ left:100%; }
.btn-primary svg          { width:16px; height:16px; }

.btn-ghost {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 22px; border-radius:14px;
  color:var(--muted); font-family:var(--mono); font-size:11px; font-weight:500;
  letter-spacing:.1em; text-transform:uppercase;
  text-decoration:none; border:1px solid var(--border);
  background:rgba(255,255,255,0.03); transition:all .2s;
}
.btn-ghost:hover { color:var(--text); border-color:var(--border2); background:rgba(255,255,255,0.06); }

/* ── HERO ────────────────────────────────────────── */
.hero {
  position:relative; z-index:1;
  min-height:100svh;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; padding:80px 20px 60px;
  gap:0;
}

.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 14px; border-radius:20px;
  background:rgba(34,211,168,0.08); border:1px solid rgba(34,211,168,0.2);
  margin-bottom:28px;
  animation:fade-up .6s var(--ease) both;
}
.hero-badge-dot  { width:6px; height:6px; border-radius:50%; background:var(--emerald); animation:pulse 2s infinite; flex-shrink:0; }
.hero-badge-text { font-family:var(--mono); font-size:9.5px; font-weight:500; letter-spacing:.15em; text-transform:uppercase; color:var(--emerald); }

.hero-title {
  font-family:'Syne',sans-serif;
  font-size:clamp(32px,8vw,64px); font-weight:800;
  line-height:1.08; letter-spacing:-.03em;
  max-width:760px; margin-bottom:20px;
  color:var(--text);
  animation:fade-up .7s .1s var(--ease) both;
}
.hero-title-accent {
  background:linear-gradient(135deg,var(--blue) 0%,#5ab0ff 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}

.hero-sub {
  font-size:clamp(14px,2.5vw,17px); color:var(--muted); line-height:1.72;
  max-width:520px; margin:0 auto 32px;
  animation:fade-up .7s .2s var(--ease) both;
}

.hero-ctas {
  display:flex; gap:12px; flex-wrap:wrap; justify-content:center;
  animation:fade-up .7s .3s var(--ease) both;
  margin-bottom:48px;
}

/* ── PHONE MOCKUP ────────────────────────────────── */
.phone-mockup {
  position:relative;
  animation:fade-up .8s .4s var(--ease) both;
  margin-bottom:40px;
}

.phone-frame {
  width:220px;
  background:rgba(10,16,32,0.95);
  border:1.5px solid rgba(29,143,255,0.3);
  border-radius:32px;
  overflow:hidden;
  box-shadow:
    0 0 0 6px rgba(29,143,255,0.05),
    0 40px 80px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.06);
  animation:float 4s ease-in-out 2s infinite;
  margin:0 auto;
}

.phone-notch {
  width:72px; height:6px;
  background:rgba(255,255,255,0.12);
  border-radius:0 0 6px 6px;
  margin:10px auto 0;
}

.phone-screen { padding:16px; }

.ps-header {
  display:flex; align-items:center; gap:8px; margin-bottom:12px;
}
.ps-logo-box {
  width:28px; height:28px; border-radius:8px;
  background:var(--blue-dim); border:1px solid rgba(29,143,255,0.3);
  display:flex; align-items:center; justify-content:center;
}
.ps-brand { font-family:'Syne',sans-serif; font-size:12px; font-weight:800; color:var(--text); }
.ps-brand em { font-style:normal; color:var(--blue); }

.ps-biz-name {
  font-family:'Syne',sans-serif; font-size:14px; font-weight:700;
  text-align:center; margin-bottom:6px; color:var(--text);
}
.ps-question {
  font-family:var(--mono); font-size:8px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--muted); text-align:center; margin-bottom:14px;
}

.ps-stars {
  display:flex; gap:4px; justify-content:center; margin-bottom:14px;
}
.ps-star {
  display:flex; flex-direction:column; align-items:center; gap:2px;
  width:32px; height:44px;
  background:rgba(255,255,255,0.03); border:1px solid var(--border);
  border-radius:10px; justify-content:center;
  font-size:14px; color:rgba(255,255,255,0.15);
}
.ps-star span { font-family:var(--mono); font-size:8px; color:rgba(255,255,255,0.2); }
.ps-star--active { background:rgba(255,184,48,0.12); border-color:rgba(255,184,48,0.35); color:#ffb830; }
.ps-star--active span { color:#ffb830; }

.ps-powered {
  font-family:var(--mono); font-size:7.5px; letter-spacing:.12em; text-transform:uppercase;
  color:rgba(255,255,255,0.18); text-align:center; padding-bottom:6px;
}

/* Notificación Telegram flotante */
.tg-notif {
  position:absolute; top:20px; right:-20px;
  background:#1e2433; border:1px solid rgba(29,143,255,0.3); border-radius:14px;
  padding:10px 12px; display:flex; align-items:center; gap:8px;
  box-shadow:0 8px 24px rgba(0,0,0,0.5);
  animation:notif-in .7s 1.8s var(--ease) both;
  min-width:180px;
  z-index:10;
}
.tg-notif-icon {
  width:28px; height:28px; border-radius:50%; background:#0088cc;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.tg-notif-title { font-family:'Syne',sans-serif; font-size:9px; font-weight:700; color:var(--rose); }
.tg-notif-text  { font-family:var(--mono); font-size:8px; color:var(--muted); margin-top:2px; }

@media (max-width:420px) { .tg-notif { right:0; } }

/* ── HERO STATS ROW ──────────────────────────────── */
.hero-stats-row {
  display:flex; align-items:center; justify-content:center;
  gap:0; border:1px solid var(--border); border-radius:16px; overflow:hidden;
  background:rgba(8,14,28,0.8); backdrop-filter:blur(16px);
  max-width:360px; width:100%;
  animation:fade-up .7s .5s var(--ease) both;
}
.hero-stat-item { flex:1; padding:16px 10px; text-align:center; }
.hsi-sep { width:1px; height:36px; background:var(--border); }
.hsi-num { display:block; font-family:'Syne',sans-serif; font-size:20px; font-weight:800; letter-spacing:-.03em; color:var(--text); }
.hsi-num--blue    { color:var(--blue); }
.hsi-num--emerald { color:var(--emerald); }
.hsi-label { display:block; font-family:var(--mono); font-size:8px; color:var(--muted); letter-spacing:.12em; text-transform:uppercase; margin-top:3px; }

/* ── SCROLL HINT ─────────────────────────────────── */
.scroll-hint {
  position:absolute; bottom:28px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:5px;
}
.scroll-hint-text { font-family:var(--mono); font-size:8.5px; letter-spacing:.18em; text-transform:uppercase; color:rgba(255,255,255,0.18); }
.scroll-line { width:1px; height:30px; background:linear-gradient(var(--border),transparent); animation:scroll-anim 2s 1s infinite; }

/* ── FLOW STEPS ──────────────────────────────────── */
.section-flow .section-inner { padding-top:80px; padding-bottom:80px; }

.flow-steps {
  display:flex; flex-direction:column; gap:0;
  position:relative;
}

@media (min-width:900px) {
  .flow-steps { flex-direction:row; align-items:flex-start; gap:0; }
}

.flow-step {
  background:var(--surface); border:1px solid var(--border);
  border-radius:20px; padding:28px 24px; flex:1;
  position:relative;
  transition:border-color .25s, transform .25s;
}
.flow-step:hover { border-color:var(--border2); transform:translateY(-3px); }

.flow-step-num {
  font-family:'Syne',sans-serif; font-size:32px; font-weight:800;
  letter-spacing:-.06em; opacity:.1; line-height:1; margin-bottom:14px; color:var(--text);
}

.flow-step-icon {
  width:44px; height:44px; border-radius:12px;
  display:flex; align-items:center; justify-content:center; margin-bottom:14px;
}
.flow-step-icon svg { width:20px; height:20px; }
.flow-step-icon--blue   { background:rgba(29,143,255,0.1); border:1px solid rgba(29,143,255,0.2); }
.flow-step-icon--amber  { background:rgba(255,184,48,0.1);  border:1px solid rgba(255,184,48,0.2); }
.flow-step-icon--rose   { background:rgba(255,77,109,0.1);   border:1px solid rgba(255,77,109,0.2); }
.flow-step-icon--emerald{ background:rgba(34,211,168,0.1);  border:1px solid rgba(34,211,168,0.2); }

.flow-step-title { font-family:'Syne',sans-serif; font-size:14px; font-weight:700; margin-bottom:8px; line-height:1.3; }
.flow-step-desc  { font-size:12.5px; color:var(--muted); line-height:1.68; margin-bottom:14px; }

.flow-step-tags  { display:flex; gap:5px; flex-wrap:wrap; }
.fst {
  font-family:var(--mono); font-size:8.5px; letter-spacing:.1em; text-transform:uppercase;
  padding:3px 8px; border-radius:20px;
  background:rgba(255,255,255,0.04); border:1px solid var(--border2); color:var(--muted);
}
.fst--rose    { color:var(--rose);    border-color:rgba(255,77,109,0.25);  background:rgba(255,77,109,0.07); }
.fst--emerald { color:var(--emerald); border-color:rgba(34,211,168,0.25); background:rgba(34,211,168,0.07); }

.flow-connector {
  display:flex; align-items:center; justify-content:center;
  padding:12px 0;
}
@media (min-width:900px) {
  .flow-connector {
    padding:0 4px; align-self:center;
    transform:none; flex-shrink:0;
  }
  .flow-connector svg { transform:none; }
}
@media (max-width:899px) {
  .flow-connector svg { transform:rotate(90deg); }
}

/* ── TELEGRAM SECTION ────────────────────────────── */
.section-telegram { background:rgba(8,14,28,0.5); }
.section-telegram .section-inner { padding-top:80px; padding-bottom:80px; }

.tg-layout {
  display:flex; flex-direction:column; gap:48px; align-items:center;
}
@media (min-width:900px) {
  .tg-layout { flex-direction:row; gap:64px; align-items:flex-start; }
}

.tg-content { flex:1; }

.tg-features { list-style:none; display:flex; flex-direction:column; gap:14px; margin-top:24px; }
.tg-feature  { display:flex; align-items:flex-start; gap:10px; font-size:14px; color:rgba(255,255,255,0.75); line-height:1.5; }
.tg-feature-dot { width:8px; height:8px; border-radius:50%; flex-shrink:0; margin-top:5px; }
.tg-feature-dot--rose    { background:var(--rose); }
.tg-feature-dot--blue    { background:var(--blue); }
.tg-feature-dot--emerald { background:var(--emerald); }
.tg-feature-dot--amber   { background:var(--amber); }

/* ── TELEGRAM PHONE MOCKUP ───────────────────────── */
.tg-mockup { flex-shrink:0; width:100%; max-width:320px; }

.tg-phone {
  background:#0e1420; border:1px solid rgba(29,143,255,0.2);
  border-radius:20px; overflow:hidden;
  box-shadow:0 32px 64px rgba(0,0,0,0.5);
}

.tg-chat-header {
  display:flex; align-items:center; gap:10px;
  padding:14px 16px; border-bottom:1px solid rgba(255,255,255,0.06);
  background:#161d2e;
}
.tg-bot-avatar {
  width:36px; height:36px; border-radius:50%; background:#0088cc;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.tg-bot-name   { font-family:'Syne',sans-serif; font-size:13px; font-weight:700; color:var(--text); }
.tg-bot-status { font-family:var(--mono); font-size:9px; color:#0088cc; }

.tg-messages { padding:14px; display:flex; flex-direction:column; gap:10px; }

.tg-msg {
  background:#1a2236; border-radius:14px 14px 14px 4px;
  padding:12px 14px; position:relative;
  border-left:3px solid;
}
.tg-msg--alert { border-left-color:var(--rose); }
.tg-msg--ok    { border-left-color:var(--emerald); }

.tg-msg-title { font-family:'Syne',sans-serif; font-size:11px; font-weight:800; margin-bottom:8px; color:var(--text); }
.tg-msg-row   { font-family:var(--mono); font-size:10px; color:rgba(255,255,255,0.6); margin-bottom:3px; display:flex; gap:4px; }
.tg-lbl       { color:var(--muted); }
.tg-msg-row--link .tg-link { color:var(--blue); cursor:pointer; }
.tg-msg-comment { font-size:11px; color:rgba(255,255,255,0.7); font-style:italic; margin-top:8px; line-height:1.4; }
.tg-msg-contact { font-family:var(--mono); font-size:9px; color:var(--violet); margin-top:6px; font-weight:600; }
.tg-msg-time    { font-family:var(--mono); font-size:9px; color:var(--muted); text-align:right; margin-top:6px; }

.tg-input-bar {
  display:flex; align-items:center; gap:10px;
  padding:12px 14px; border-top:1px solid rgba(255,255,255,0.06);
  background:#161d2e;
}
.tg-input-field { flex:1; font-family:var(--mono); font-size:11px; color:var(--muted); }
.tg-send-btn    { width:28px; height:28px; border-radius:50%; background:var(--blue-dim); display:flex; align-items:center; justify-content:center; }

/* ── DASHBOARD PREVIEW ───────────────────────────── */
.section-dashboard .section-inner { padding-top:80px; padding-bottom:80px; }

.dash-preview {
  background:var(--surface); border:1px solid var(--border);
  border-radius:24px; overflow:hidden; margin-top:40px;
  box-shadow:0 32px 64px rgba(0,0,0,0.4);
}

.dash-bar {
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 20px; background:rgba(4,8,15,0.8);
  border-bottom:1px solid var(--border);
}
.dash-bar-brand { display:flex; align-items:center; gap:6px; font-family:'Syne',sans-serif; font-size:11px; font-weight:700; color:var(--text); }
.dash-bar-live  { display:flex; align-items:center; gap:5px; font-family:var(--mono); font-size:9px; color:var(--emerald); }
.dash-live-dot  { width:6px; height:6px; border-radius:50%; background:var(--emerald); animation:pulse 2s infinite; }

.dash-kpis { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--border); }
.dash-kpi  { padding:20px 16px; text-align:center; background:var(--surface2); }
.dash-kpi-num   { font-family:'Syne',sans-serif; font-size:28px; font-weight:800; letter-spacing:-.04em; line-height:1; }
.dash-kpi-label { font-family:var(--mono); font-size:8px; color:var(--muted); letter-spacing:.12em; text-transform:uppercase; margin-top:4px; }
.dash-kpi--blue    .dash-kpi-num { color:var(--blue); }
.dash-kpi--emerald .dash-kpi-num { color:var(--emerald); }
.dash-kpi--rose    .dash-kpi-num { color:var(--rose); }

.dash-chart { padding:20px; border-bottom:1px solid var(--border); }
.dash-chart-label { font-family:var(--mono); font-size:9px; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); margin-bottom:14px; }
.dash-bars { display:flex; align-items:flex-end; gap:8px; height:80px; }
.dash-bar-wrap { flex:1; display:flex; flex-direction:column; align-items:center; gap:4px; height:100%; justify-content:flex-end; }
.dash-bar-wrap span { font-family:var(--mono); font-size:8px; color:var(--muted); }
.dash-col {
  width:100%; border-radius:5px 5px 0 0;
  height:var(--h); min-height:4px;
  animation:bar-grow .8s 1s var(--ease) both;
  transform-origin:bottom;
}
.dash-col[data-color="rose"]   { background:rgba(255,77,109,0.7); }
.dash-col[data-color="amber"]  { background:rgba(255,184,48,0.65); }
.dash-col[data-color="blue"]   { background:rgba(29,143,255,0.7); }
.dash-col[data-color="emerald"]{ background:rgba(34,211,168,0.75); }

.dash-recent { padding:16px 20px; display:flex; flex-direction:column; gap:10px; }
.dash-recent-item { display:flex; align-items:center; gap:10px; }
.dash-chip { font-family:var(--mono); font-size:8.5px; font-weight:500; letter-spacing:.1em; text-transform:uppercase; padding:3px 8px; border-radius:20px; white-space:nowrap; }
.dash-chip--emerald { background:rgba(34,211,168,0.12); color:var(--emerald); border:1px solid rgba(34,211,168,0.2); }
.dash-chip--rose    { background:rgba(255,77,109,0.12);  color:var(--rose);    border:1px solid rgba(255,77,109,0.2); }
.dash-chip--amber   { background:rgba(255,184,48,0.12);  color:var(--amber);   border:1px solid rgba(255,184,48,0.2); }
.dash-comment { font-size:12px; color:rgba(255,255,255,0.6); overflow:hidden; text-overflow:ellipsis; white-space:nowrap; font-style:italic; }

/* Export badges */
.export-badges {
  display:flex; gap:10px; flex-wrap:wrap; justify-content:center;
  margin-top:20px;
}
.export-badge {
  display:inline-flex; align-items:center; gap:7px;
  padding:10px 16px; border-radius:12px;
  background:var(--surface); border:1px solid var(--border);
  font-family:var(--mono); font-size:10px; color:var(--muted);
  transition:border-color .2s;
}
.export-badge:hover { border-color:var(--border2); color:var(--text); }

/* ── CTA ─────────────────────────────────────────── */
.section-cta .section-inner { padding:80px 20px; }

.cta-box {
  background:linear-gradient(135deg, rgba(29,143,255,0.08) 0%, rgba(34,211,168,0.04) 100%);
  border:1px solid rgba(29,143,255,0.22);
  border-radius:28px; padding:56px 28px; text-align:center;
  position:relative; overflow:hidden;
}
@media (min-width:768px) { .cta-box { padding:72px 48px; } }
.cta-box::before {
  content:''; position:absolute; top:0; left:0; right:0; height:1px;
  background:linear-gradient(90deg,transparent,rgba(29,143,255,0.55),transparent);
}
.cta-glow {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:400px; height:250px;
  background:radial-gradient(ellipse,rgba(29,143,255,0.1) 0%,transparent 70%);
  pointer-events:none;
}

.cta-badge { display:inline-flex; align-items:center; gap:8px; padding:6px 14px; border-radius:20px; background:rgba(34,211,168,0.08); border:1px solid rgba(34,211,168,0.2); margin-bottom:24px; position:relative; }
.cta-title {
  font-family:'Syne',sans-serif;
  font-size:clamp(26px,5vw,44px); font-weight:800;
  letter-spacing:-.025em; line-height:1.15;
  color:var(--text); max-width:600px; margin:0 auto 16px;
  position:relative;
}
.cta-title em {
  font-style:normal;
  background:linear-gradient(135deg,var(--blue),#5ab0ff);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.cta-sub  { font-size:15px; color:var(--muted); line-height:1.7; max-width:440px; margin:0 auto 36px; position:relative; }
.cta-actions { display:flex; gap:12px; flex-wrap:wrap; justify-content:center; position:relative; }

/* ── FOOTER ──────────────────────────────────────── */
footer {
  position:relative; z-index:1;
  border-top:1px solid var(--border); padding:36px 20px;
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:14px;
}
.footer-brand    { font-family:'Syne',sans-serif; font-size:14px; font-weight:800; letter-spacing:-.01em; color:var(--text); }
.footer-brand em { font-style:normal; color:var(--blue); }
.footer-copy     { font-family:var(--mono); font-size:9.5px; color:var(--muted); letter-spacing:.09em; }
.footer-links    { display:flex; gap:20px; }
.footer-link     { font-family:var(--mono); font-size:9px; color:var(--muted); letter-spacing:.12em; text-transform:uppercase; text-decoration:none; transition:color .2s; }
.footer-link:hover { color:var(--text); }
@media (max-width:640px) { footer { flex-direction:column; align-items:flex-start; } }