/* ============================================================
   STEALERS.CLOUD — Component styles  v2
   ============================================================ */

/* ---------- NAV ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: background 0.3s, border-color 0.3s; border-bottom: 1px solid transparent; }
.nav--solid { background: color-mix(in srgb, var(--bg) 72%, transparent); backdrop-filter: blur(16px) saturate(1.4); border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--text); }
.logo-mark-img { display: block; width: auto; filter: drop-shadow(0 0 16px var(--accent-glow)); transition: transform 0.3s var(--ease); }
.logo:hover .logo-mark-img { transform: rotate(-4deg) scale(1.04); }
.logo-word { font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: -0.01em; white-space: nowrap; }
.logo-word b { font-weight: 600; }
.logo-word span { color: var(--text-3); font-weight: 500; }

.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--text-2); text-decoration: none; font-size: 14px; transition: color 0.15s; position: relative; }
.nav-links a:hover { color: var(--text); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 0; height: 1px; background: var(--accent); transition: width 0.25s var(--ease); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 22px; }
.nav-signin { color: var(--text-2); text-decoration: none; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; font-family: var(--font-mono); transition: color 0.15s; white-space: nowrap; }
.nav-signin:hover { color: var(--accent-2); }

.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 var(--accent-glow); animation: pulse 2.4s infinite; flex: none; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0.5); } 70% { box-shadow: 0 0 0 9px rgba(var(--accent-rgb), 0); } 100% { box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0); } }

@media (max-width: 880px) { .nav-links { display: none; } .nav-signin { display: none; } }
@media (max-width: 400px) { .logo-word { display: none; } }

/* ---------- HERO ---------- */
.hero { padding: 168px 0 104px; }
.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 60px; align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 30px;
  padding: 7px 14px 7px 12px; border: 1px solid var(--line-2); border-radius: var(--r-pill, 999px);
  background: rgba(255, 255, 255, 0.02); backdrop-filter: blur(6px);
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.04em; color: var(--text-2);
}
.hero-badge b { color: var(--text); font-weight: 500; }
.hero-badge .sep { width: 1px; height: 12px; background: var(--line-2); }

.hero-title { font-size: var(--fs-display); line-height: 0.98; letter-spacing: -0.035em; max-width: 13ch; }
.hero-title .grad { display: inline; }
.hero-sub { max-width: 50ch; margin: 28px 0 0; font-size: var(--fs-lead); color: var(--text-2); text-wrap: pretty; }
.hero-cta { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero-trust { margin-top: 40px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-trust .badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--text-3); text-transform: uppercase; }
.hero-trust .badge svg { width: 14px; height: 14px; color: var(--accent); flex: none; }
.hero-trust .tdiv { width: 1px; height: 13px; background: var(--line-2); }

/* fingerprint scanner centrepiece */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 440px; }
.fp-stage { position: relative; width: min(100%, 460px); aspect-ratio: 1.16 / 1; display: flex; align-items: center; justify-content: center; }
.fp-rings { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.fp-rings span { position: absolute; width: 58%; height: 58%; border: 1px solid var(--accent-line); border-radius: 50%; opacity: 0; animation: fpring 4.2s ease-out infinite; }
.fp-rings span:nth-child(2) { animation-delay: 1.4s; }
.fp-rings span:nth-child(3) { animation-delay: 2.8s; }
@keyframes fpring { 0% { transform: scale(0.5); opacity: 0.55; } 100% { transform: scale(1.65); opacity: 0; } }

.fp-frame { position: relative; width: 100%; padding: 6%; }
.fp-img { width: 100%; height: auto; display: block; filter: drop-shadow(0 0 34px var(--accent-glow)); }
.fp-scan {
  position: absolute; left: 6%; right: 6%; top: 6%; height: 14%;
  background: linear-gradient(180deg, transparent, rgba(var(--accent-rgb), 0.22) 60%, rgba(var(--accent-rgb), 0.9));
  border-bottom: 1.5px solid var(--accent); box-shadow: 0 0 22px 2px var(--accent-glow);
  mix-blend-mode: screen; animation: fpscan 3.6s cubic-bezier(0.6, 0.05, 0.4, 0.95) infinite;
}
@keyframes fpscan { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(560%); } }
.fp-corner { position: absolute; width: 16px; height: 16px; border: 1.5px solid var(--accent); opacity: 0.8; }
.fp-corner.tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.fp-corner.tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.fp-corner.bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.fp-corner.br { bottom: 0; right: 0; border-left: 0; border-top: 0; }

.fp-chip {
  position: absolute; display: flex; flex-direction: column; gap: 2px; padding: 9px 13px;
  background: color-mix(in srgb, var(--surface) 84%, transparent); border: 1px solid var(--line-2);
  border-radius: var(--r-sm); backdrop-filter: blur(8px); box-shadow: 0 14px 34px -18px #000;
  animation: fpfloat 5.2s ease-in-out infinite;
}
.fp-chip-k { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-2); }
.fp-chip-t { font-size: 11px; color: var(--text-2); white-space: nowrap; }
.fp-chip.c1 { top: 7%; right: -6%; animation-delay: 0s; }
.fp-chip.c2 { bottom: 19%; left: -10%; animation-delay: 1.4s; }
.fp-chip.c3 { bottom: 1%; right: 5%; animation-delay: 2.6s; }
@keyframes fpfloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

@media (max-width: 940px) {
  .hero { padding: 132px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 10px; }
  .hero-visual { min-height: 320px; order: -1; }
  .fp-stage { width: min(100%, 340px); }
  .hero-title { max-width: 18ch; }
  .fp-chip.c1 { right: 0; } .fp-chip.c2 { left: 0; }
}

/* ---------- STATS instrument strip ---------- */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 44px 30px; border-right: 1px solid var(--line); position: relative; }
.stat:last-child { border-right: none; }
.stat::before { content: ""; position: absolute; top: 0; left: 0; width: 28px; height: 2px; background: var(--accent); opacity: 0.7; }
.stat-num { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.stat-num .u { color: var(--accent-2); }
.stat-label { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-3); letter-spacing: 0.08em; margin-top: 12px; text-transform: uppercase; }
@media (max-width: 760px) { .stats-inner { grid-template-columns: 1fr 1fr; } .stat:nth-child(2) { border-right: none; } .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); } }

/* ---------- Section heads ---------- */
.sec-head { margin-bottom: 60px; max-width: 760px; }
.sec-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.sec-head .eyebrow { margin-bottom: 22px; }
.sec-head h2 { font-size: var(--fs-h2); }
.sec-head .sec-sub { margin: 18px 0 0; color: var(--text-2); font-size: var(--fs-lead); text-wrap: pretty; }
.sec-head.center .sec-sub { margin-left: auto; margin-right: auto; max-width: 56ch; }

/* ---------- PLATFORM — bento grid ---------- */
.cap-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.cap-card {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line-2); border-radius: var(--r); padding: 32px 30px 36px;
  position: relative; overflow: hidden; outline: none;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.cap-card.span4 { grid-column: span 4; }
.cap-card.span3 { grid-column: span 3; }
.cap-card.span2 { grid-column: span 2; }
.cap-card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(420px 200px at var(--mx, 70%) 0%, var(--accent-soft), transparent 70%);
  transition: opacity 0.3s;
}
.cap-card:hover, .cap-card:focus-visible { transform: translateY(-3px); border-color: var(--accent-line); box-shadow: 0 24px 60px -34px #000, 0 0 0 1px var(--accent-soft); }
.cap-card:hover::after, .cap-card:focus-visible::after { opacity: 1; }
.cap-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; }
.cap-num { font-family: var(--font-mono); font-size: 12px; color: var(--accent-2); letter-spacing: 0.12em; }
.cap-tag { font-family: var(--font-mono); font-size: 10.5px; color: var(--text-3); letter-spacing: 0.14em; text-transform: uppercase; padding: 4px 9px; border: 1px solid var(--line-2); border-radius: var(--r-pill, 999px); }
.cap-icon { width: 38px; height: 38px; border-radius: var(--r-sm); display: grid; place-items: center; margin-bottom: 18px; color: var(--accent-2); background: var(--accent-soft); border: 1px solid var(--accent-line); }
.cap-icon svg { width: 19px; height: 19px; }
.cap-card h3 { font-size: var(--fs-h3); margin-bottom: 11px; }
.cap-card p { font-size: 15px; line-height: 1.6; color: var(--text-2); max-width: 46ch; }
.cap-arrow { position: absolute; right: 28px; bottom: 28px; color: var(--text-3); font-size: 19px; transition: transform 0.25s var(--ease), color 0.25s; }
.cap-card:hover .cap-arrow, .cap-card:focus-visible .cap-arrow { transform: translateX(6px); color: var(--accent-2); }

/* mini live-rail inside the wide feature card */
.cap-rail { margin-top: 24px; display: flex; gap: 8px; flex-wrap: wrap; }
.cap-rail span { font-family: var(--font-mono); font-size: 11px; color: var(--text-2); padding: 5px 10px; border: 1px solid var(--line); border-radius: var(--r-pill, 999px); background: var(--bg-2); }
.cap-rail span i { color: var(--accent); font-style: normal; }

@media (max-width: 900px) {
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .cap-card.span4, .cap-card.span3, .cap-card.span2 { grid-column: span 1; }
}
@media (max-width: 620px) { .cap-grid { grid-template-columns: 1fr; } }

/* ---------- SOURCES (video) section ---------- */
.sources { border-top: 1px solid var(--line); }
.src-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.src-visual { position: relative; display: flex; justify-content: center; }
.src-stage { position: relative; width: min(100%, 560px); border-radius: var(--r); overflow: visible; }
.src-glow { position: absolute; inset: -4%; background: radial-gradient(circle at 50% 45%, var(--accent-glow), transparent 66%); filter: blur(38px); opacity: 0.8; pointer-events: none; z-index: 0; }
.src-video {
  position: relative; z-index: 1; width: 100%; height: auto; display: block; border-radius: var(--r);
  border: 1px solid var(--line-2);
  filter: drop-shadow(0 26px 52px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 30px var(--accent-glow));
}
.src-stage .fp-corner { z-index: 2; }
.src-stage .fp-chip { z-index: 3; }
.src-stage .fp-chip.v1 { top: 8%; right: -5%; animation: fpfloat 5.2s ease-in-out infinite; }
.src-stage .fp-chip.v2 { top: 44%; left: -8%; animation: fpfloat 5.2s ease-in-out infinite 1.4s; }
.src-stage .fp-chip.v3 { bottom: 6%; right: 2%; animation: fpfloat 5.2s ease-in-out infinite 2.6s; }

.src-copy .eyebrow { margin-bottom: 22px; }
.src-copy h2 { font-size: var(--fs-h2); line-height: 1.04; }
.src-copy p { margin: 22px 0 0; font-size: var(--fs-lead); color: var(--text-2); max-width: 52ch; text-wrap: pretty; }
.src-list { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 14px; }
.src-list li { position: relative; padding-left: 28px; color: var(--text-2); font-size: 15px; }
.src-list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 13px; height: 1px; background: var(--accent); }
.src-list li b { color: var(--text); font-weight: 500; }

@media (max-width: 900px) {
  .src-grid { grid-template-columns: 1fr; gap: 40px; }
  .src-visual { order: -1; }
  .src-stage { width: min(100%, 440px); }
  .src-stage .fp-chip.v1 { right: 0; } .src-stage .fp-chip.v2 { left: 0; }
}

/* ---------- COVERAGE marquee ---------- */
.coverage { padding: 116px 0; border-top: 1px solid var(--line); }
.marquee { margin: 10px 0 84px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 24px 0; }
.marquee-track { display: flex; gap: 52px; width: max-content; animation: scroll 42s linear infinite; }
.coverage:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll { to { transform: translateX(-50%); } }
.fam { display: inline-flex; align-items: center; gap: 13px; font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--text-2); letter-spacing: -0.01em; white-space: nowrap; transition: color 0.2s; }
.fam:hover { color: var(--text); }
.fam-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: none; box-shadow: 0 0 8px var(--accent-glow); }

/* ---------- INTEL panel ---------- */
.intel { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 60px; align-items: center; }
.intel-panel { background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--line-2); border-radius: var(--r); overflow: hidden; box-shadow: 0 40px 90px -50px rgba(0, 0, 0, 0.9), 0 0 0 1px var(--accent-soft); }
.intel-bar { display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-bottom: 1px solid var(--line); background: var(--bg-2); font-family: var(--font-mono); font-size: 12px; color: var(--text-3); }
.dotrow { display: inline-flex; gap: 6px; }
.dotrow i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-3); }
.dotrow i:first-child { background: rgba(var(--danger-rgb), 0.6); }
.intel-live { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; color: var(--accent-2); }
.feed { padding: 8px 0; }
.feed-row { display: grid; grid-template-columns: 70px 100px 64px 1fr; gap: 10px; align-items: center; padding: 10px 16px; font-family: var(--font-mono); font-size: 12.5px; border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent); animation: feedin 0.6s ease both; }
.feed-row:last-child { border-bottom: none; }
@keyframes feedin { from { transform: translateX(-8px); opacity: 0.4; } to { transform: translateX(0); opacity: 1; } }
.feed-time { color: var(--text-3); }
.feed-fam { color: var(--text); }
.feed-kind { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; text-align: center; padding: 3px 0; border-radius: var(--r-xs); }
.k-ingest { color: var(--accent-2); background: rgba(var(--accent-rgb), 0.12); }
.k-match { color: var(--warn); background: rgba(255, 179, 71, 0.12); }
.k-alert { color: var(--danger); background: rgba(var(--danger-rgb), 0.14); }
.feed-msg { color: var(--text-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.intel-copy .eyebrow { margin-bottom: 18px; }
.intel-copy h3 { font-size: clamp(24px, 3vw, 32px); margin: 0 0 16px; }
.intel-copy p { font-size: 16px; color: var(--text-2); }
.intel-list { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-direction: column; gap: 13px; }
.intel-list li { position: relative; padding-left: 28px; color: var(--text-2); font-size: 15px; }
.intel-list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 13px; height: 1px; background: var(--accent); }
.intel-list .mono { color: var(--text); }
@media (max-width: 900px) { .intel { grid-template-columns: 1fr; gap: 40px; } .feed-row { grid-template-columns: 58px 84px 56px 1fr; } }

/* ---------- ACCESS / pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card { background: linear-gradient(180deg, var(--surface), var(--surface-2)); border: 1px solid var(--line-2); border-radius: var(--r); padding: 36px 32px 38px; display: flex; flex-direction: column; position: relative; transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s; }
.price-card:hover { transform: translateY(-4px); border-color: var(--line-3); }
.price-card.featured {
  border-color: var(--accent-line);
  box-shadow: 0 0 0 1px var(--accent-line), 0 40px 90px -50px var(--accent);
  background:
    radial-gradient(120% 70% at 50% 0%, var(--accent-soft), transparent 60%),
    linear-gradient(180deg, var(--surface-2), var(--surface));
}
.price-flag { position: absolute; top: -12px; left: 32px; background: linear-gradient(180deg, var(--accent-2), var(--accent)); color: var(--accent-ink); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 11px; border-radius: var(--r-pill, 999px); white-space: nowrap; box-shadow: 0 8px 22px -10px var(--accent); }
.price-name { font-size: 20px; }
.price-desc { font-size: 13px; color: var(--text-3); margin-top: 6px; }
.price-amt { display: flex; align-items: baseline; gap: 6px; margin: 22px 0 4px; }
.price-num { font-family: var(--font-display); font-size: 42px; font-weight: 600; letter-spacing: -0.03em; }
.price-per { font-family: var(--font-mono); font-size: 13px; color: var(--text-3); }
.price-note { font-family: var(--font-mono); font-size: 12px; color: var(--text-3); letter-spacing: 0.03em; }
.price-rule { height: 1px; background: var(--line); margin: 26px 0; }
.price-feats { list-style: none; padding: 0; margin: 0 0 30px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.price-feats li { display: flex; gap: 12px; font-size: 14.5px; color: var(--text-2); align-items: flex-start; }
.tick { color: var(--accent-2); flex: none; margin-top: 2px; }
.tick svg { width: 15px; height: 15px; display: block; }
.price-cta { justify-content: center; width: 100%; }
@media (max-width: 860px) { .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* ---------- FINAL CTA ---------- */
.finalcta { padding: 130px 0; text-align: center; border-top: 1px solid var(--line); position: relative; overflow: hidden; }
.finalcta::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 52% 82% at 50% 102%, var(--accent-glow), transparent 70%); pointer-events: none; }
.finalcta-inner { position: relative; max-width: 720px; margin: 0 auto; }
.finalcta h2 { font-size: clamp(32px, 5.2vw, 58px); letter-spacing: -0.035em; }
.finalcta p { max-width: 500px; margin: 22px auto 38px; color: var(--text-2); font-size: var(--fs-lead); }
.finalcta .cta-sub { margin-top: 22px; font-family: var(--font-mono); font-size: 12px; color: var(--text-3); letter-spacing: 0.06em; }

/* ---------- FOOTER ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); padding-top: 72px; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 2fr; gap: 56px; padding-bottom: 52px; }
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p { margin: 0 0 18px; font-size: 14px; max-width: 300px; color: var(--text-2); }
.footer-meta { font-family: var(--font-mono); font-size: 11px; color: var(--text-3); letter-spacing: 0.1em; display: inline-flex; gap: 12px; flex-wrap: wrap; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-cols h5 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); margin: 0 0 18px; font-weight: 500; }
.footer-cols a { display: block; color: var(--text-2); text-decoration: none; font-size: 14px; margin-bottom: 12px; transition: color 0.15s; width: fit-content; }
.footer-cols a:hover { color: var(--accent-2); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 0 30px; border-top: 1px solid var(--line); font-family: var(--font-mono); font-size: 12px; color: var(--text-3); gap: 16px; flex-wrap: wrap; }
.footer-status { display: inline-flex; align-items: center; gap: 8px; }
@media (max-width: 760px) { .footer-inner { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- CRT scanlines (tweak) ---------- */
.scanlines { position: absolute; inset: 0; background: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 3px); mix-blend-mode: overlay; }
