/* ============================================
   false.lv — design tokens from logo gradient
   ============================================ */
:root {
  --c-cyan: #00D4FF;
  --c-blue: #0B6CFF;
  --c-magenta: #FF2EB3;
  --c-pink: #FF1493;
  --c-orange: #FF7A29;
  --c-yellow: #FFD83A;

  --bg-0: #070912;
  --bg-1: #0D1124;
  --bg-2: #141938;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.09);
  --border-2: rgba(255, 255, 255, 0.16);

  --text: #F3F5FF;
  --text-dim: #B8BFD8;
  --text-mute: #7D86A6;

  --grad-main: linear-gradient(90deg, var(--c-cyan) -10%, var(--c-magenta) 55%, var(--c-orange) 110%);
  --grad-soft: linear-gradient(135deg, rgba(0,212,255,0.15) 0%, rgba(255,46,179,0.15) 50%, rgba(255,122,41,0.15) 100%);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 10px 30px -8px rgba(255, 46, 179, 0.35);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --maxw: 1200px;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-0);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

/* ambient gradient background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1000px 700px at 15% -10%, rgba(0, 212, 255, 0.18), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(255, 46, 179, 0.16), transparent 55%),
    radial-gradient(800px 600px at 50% 110%, rgba(255, 122, 41, 0.14), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* layout */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section { padding: clamp(64px, 10vw, 120px) 0; position: relative; z-index: 1; }
.section-tight { padding: clamp(48px, 7vw, 80px) 0; position: relative; z-index: 1; }

/* typography */
h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.02em; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
p { color: var(--text-dim); }
.lead { font-size: clamp(1.05rem, 1.8vw, 1.25rem); color: var(--text-dim); }

.gradient-text {
  background: var(--grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-cyan);
  padding: 6px 14px;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  background: var(--surface);
  margin-bottom: 20px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  background: rgba(7, 9, 18, 0.72);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
}
.logo img { height: 36px; width: auto; }
.header .logo { height: 72px; display: flex; align-items: center; overflow: visible; }
.header .logo img { height: 120px; width: auto; margin: -24px 0; }
.footer .logo img { height: 48px; }
.logo-text { font-family: var(--font-mono); letter-spacing: -0.02em; }

.nav { display: flex; align-items: center; gap: 8px; }
.nav a {
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--text-dim);
  font-weight: 500;
  transition: all 0.2s var(--ease);
}
.nav a:hover { color: var(--text); background: var(--surface); }
.nav a.active { color: var(--text); }

.header-right { display: flex; align-items: center; gap: 12px; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  background: var(--surface);
}
.lang-switch a {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mute);
  transition: all 0.2s var(--ease);
}
.lang-switch a.active {
  background: var(--grad-main);
  color: #0a0d1d;
}

.burger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--border-2);
  border-radius: 10px;
  align-items: center; justify-content: center;
  background: var(--surface);
}
.burger span {
  display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px;
  position: relative;
}
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--text); border-radius: 2px;
}
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  min-height: 44px;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--grad-main);
  background-clip: padding-box;
  color: #0a0d1d;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn-secondary {
  background: var(--surface);
  border-color: var(--border-2);
  color: var(--text);
}
.btn-secondary:hover { background: var(--surface-2); border-color: var(--text); }
.btn-sm { padding: 10px 16px; font-size: 0.88rem; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0 clamp(64px, 10vw, 120px);
  overflow: hidden;
}
.hero-content { max-width: 840px; margin: 0 auto; text-align: center; }
.hero h1 { margin-bottom: 24px; }
.hero h1 .mono {
  font-family: var(--font-mono);
  padding: 0 0.1em;
}
.hero .lead { margin-bottom: 40px; max-width: 640px; margin-left: auto; margin-right: auto; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-marquee {
  margin-top: 72px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex; gap: 48px; justify-content: center; flex-wrap: wrap;
  color: var(--text-mute);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-marquee span { opacity: 0.75; }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head p { margin-top: 14px; }

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-soft);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-2);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-main);
  color: #0a0d1d;
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 { margin-bottom: 10px; position: relative; z-index: 1; }
.service-card p { position: relative; z-index: 1; font-size: 0.95rem; }

/* ============================================
   PRICING TABLE
   ============================================ */
.pricing-wrap {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  overflow-x: auto;
  box-shadow: var(--shadow);
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.pricing-table thead th {
  text-align: left;
  padding: 18px 24px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mute);
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}
.pricing-table tbody tr { transition: background 0.2s var(--ease); }
.pricing-table tbody tr:hover { background: rgba(255, 255, 255, 0.025); }
.pricing-table tbody tr + tr td { border-top: 1px solid var(--border); }
.pricing-table td {
  padding: 22px 24px;
  vertical-align: top;
}
.pricing-table td:first-child { font-weight: 600; color: var(--text); width: 28%; }
.pricing-table td:nth-child(2) { color: var(--text-dim); font-size: 0.95rem; }
.pricing-table td:last-child {
  text-align: right;
  font-family: var(--font-mono);
  font-weight: 700;
  white-space: nowrap;
  width: 18%;
}
.pricing-table td:last-child .price-val {
  background: var(--grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.15rem;
}
.pricing-table td:last-child .price-suffix {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-mute);
  font-size: 0.75rem;
  margin-top: 2px;
}
.pricing-foot {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center;
  margin-top: 28px; padding: 0 4px;
}
.pricing-foot p { color: var(--text-mute); font-size: 0.92rem; }

/* group rows */
.pricing-group td {
  padding: 14px 24px;
  background: rgba(0, 212, 255, 0.05);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-cyan);
  border-top: 1px solid var(--border) !important;
}

/* ============================================
   WHY / FEATURES
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.why-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}
.why-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--c-magenta);
  margin-bottom: 12px;
}
.why-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.why-card p { font-size: 0.95rem; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: clamp(48px, 8vw, 80px) clamp(28px, 5vw, 64px);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(255, 46, 179, 0.12), rgba(255, 122, 41, 0.12)),
    var(--bg-1);
  border: 1px solid var(--border-2);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { margin-bottom: 28px; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.form-card {
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-dim);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  color: var(--text);
  transition: all 0.2s var(--ease);
  min-height: 44px;
}
.form-group textarea { min-height: 140px; resize: vertical; font-family: inherit; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-cyan);
  background: rgba(0, 212, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-mute); }
.form-consent {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 6px 0 20px;
  font-size: 0.88rem; color: var(--text-dim);
}
.form-consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--c-magenta); }

.form-status {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.92rem;
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.35);
  color: var(--c-cyan);
}
.form-status.error {
  display: block;
  background: rgba(255, 46, 179, 0.1);
  border: 1px solid rgba(255, 46, 179, 0.35);
  color: var(--c-magenta);
}

.contact-info h2 { margin-bottom: 18px; }
.contact-info-list { list-style: none; margin-top: 20px; }
.contact-info-list li {
  padding: 18px 0;
  border-top: 1px solid var(--border);
}
.contact-info-list li:first-child { border-top: 0; padding-top: 0; }
.contact-info-list .label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  margin-bottom: 6px;
}
.contact-info-list .value { color: var(--text); font-weight: 500; }
.contact-info-list a.value:hover { color: var(--c-cyan); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.93rem; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-dim); font-size: 0.93rem; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-mute);
  font-size: 0.85rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
  .header .logo img { height: 72px; margin: -8px 0; }
  .header-right .btn-primary { display: none; }
  .header-inner { gap: 12px; }

  /* pricing table → card list on mobile */
  .pricing-wrap { overflow: visible; }
  .pricing-table { min-width: 0; display: block; }
  .pricing-table thead { display: none; }
  .pricing-table tbody, .pricing-table tr, .pricing-table td { display: block; width: 100%; }
  .pricing-table tbody tr + tr td { border-top: 0; }

  .pricing-table tbody tr.pricing-group td {
    padding: 18px 20px 8px;
    background: transparent;
    border-top: 1px solid var(--border) !important;
  }
  .pricing-table tbody tr.pricing-group + tr td { border-top: 0; }

  .pricing-table tbody tr:not(.pricing-group) {
    padding: 16px 20px 20px;
    border-top: 1px solid var(--border);
    position: relative;
  }
  .pricing-table tbody tr:not(.pricing-group) td {
    padding: 0;
    width: auto;
  }
  .pricing-table tbody tr:not(.pricing-group) td:first-child {
    font-size: 1.02rem;
    margin-bottom: 6px;
    padding-right: 0;
  }
  .pricing-table tbody tr:not(.pricing-group) td:nth-child(2) {
    font-size: 0.92rem;
    color: var(--text-dim);
    margin-top: 6px;
    margin-bottom: 12px;
  }
  .pricing-table tbody tr:not(.pricing-group) td:last-child {
    position: static;
    text-align: left;
    width: 100%;
    white-space: normal;
    padding-top: 4px;
    border-top: 1px dashed rgba(255,255,255,0.06);
    padding-top: 10px;
  }
  .pricing-table td:last-child .price-val { font-size: 1.25rem; }
  .pricing-table td:last-child .price-suffix { display: inline; margin-left: 6px; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-1);
    padding: 12px;
    border-bottom: 1px solid var(--border);
  }
  .nav.open a { padding: 14px 16px; border-radius: 10px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .hero-marquee { gap: 20px; font-size: 0.78rem; }
}

/* ============================================
   CAPTCHA
   ============================================ */
.captcha-group { margin-bottom: 14px; }
.captcha-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: stretch;
}
.captcha-question {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  min-height: 44px;
  background: var(--grad-soft);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  user-select: none;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 100;
  background: rgba(13, 17, 36, 0.95);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.35s var(--ease);
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.cookie-banner-text h3 { font-size: 1rem; margin-bottom: 4px; }
.cookie-banner-text p { font-size: 0.9rem; color: var(--text-dim); }
.cookie-banner-text a { color: var(--c-cyan); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 720px) {
  .cookie-banner-inner { grid-template-columns: 1fr; gap: 14px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1; }
}

/* ============================================
   POLICY PAGE (cookies / privacy)
   ============================================ */
.policy-article h2 {
  font-size: 1.35rem;
  margin: 40px 0 14px;
}
.policy-article h3 {
  font-size: 1.08rem;
  margin: 28px 0 10px;
  color: var(--text);
}
.policy-article p { margin-bottom: 14px; }
.policy-article .policy-list { list-style: disc; margin: 10px 0 20px 22px; }
.policy-article .policy-list li { margin-bottom: 8px; color: var(--text-dim); }
.cookies-table code {
  font-family: var(--font-mono);
  background: rgba(0, 212, 255, 0.08);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.86rem;
  color: var(--c-cyan);
}
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-mono);
}
.tag-essential { background: rgba(0, 212, 255, 0.14); color: var(--c-cyan); }
.tag-analytics { background: rgba(255, 46, 179, 0.14); color: var(--c-magenta); }
.tag-marketing { background: rgba(255, 122, 41, 0.14); color: var(--c-orange); }

/* focus visible */
:focus-visible {
  outline: 2px solid var(--c-cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== Insights ===== */
.insights-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.insights-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-dim); font-size: 13px; font-weight: 500;
  transition: background 0.15s var(--ease), color 0.15s var(--ease), border-color 0.15s var(--ease);
}
.insights-tag:hover { background: rgba(0,212,255,0.08); color: var(--c-cyan); border-color: rgba(0,212,255,0.3); }
.insights-tag.active { background: var(--c-cyan); color: #05080F; border-color: var(--c-cyan); }
.insights-tag-count { opacity: 0.6; font-size: 11px; }

.insights-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.insights-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; overflow: hidden;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.insights-card:hover { border-color: rgba(0,212,255,0.3); transform: translateY(-2px); }
.insights-card-link { display: block; color: inherit; }
.insights-card-cover { aspect-ratio: 16 / 9; overflow: hidden; background: rgba(255,255,255,0.02); }
.insights-card-cover img { width: 100%; height: 100%; object-fit: cover; }
.insights-card-body { padding: 20px 22px; }
.insights-card-meta { display: flex; gap: 8px; color: var(--text-mute); font-size: 12px; margin-bottom: 10px; }
.insights-card-title { font-size: 1.25rem; font-weight: 700; margin: 0 0 10px; line-height: 1.3; }
.insights-card-excerpt { color: var(--text-dim); font-size: 0.92rem; line-height: 1.6; margin: 0 0 14px; }
.insights-card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.insights-tag-mini {
  font-size: 11px; color: var(--text-mute); padding: 3px 10px;
  border-radius: 999px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
}
a.insights-tag-mini:hover { color: var(--c-cyan); border-color: rgba(0,212,255,0.3); }

.insights-pagination { display: flex; justify-content: center; gap: 6px; margin-top: 40px; }
.insights-pagination a {
  min-width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px; padding: 0 10px; font-size: 13px; font-weight: 500;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); color: var(--text-dim);
}
.insights-pagination a.active { background: var(--c-cyan); color: #05080F; border-color: var(--c-cyan); }

.insights-breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 12px; color: var(--text-mute); margin-bottom: 24px; flex-wrap: wrap; }
.insights-breadcrumb a { color: var(--text-dim); }
.insights-breadcrumb a:hover { color: var(--c-cyan); }
.insights-breadcrumb .current { color: var(--text); max-width: 420px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.insights-article-head { margin-bottom: 32px; }
.insights-article-head h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.2; margin: 0 0 16px; }
.insights-article-meta { display: flex; gap: 8px; color: var(--text-mute); font-size: 13px; flex-wrap: wrap; }
.insights-article-cover { margin: 0 0 32px; border-radius: 14px; overflow: hidden; }
.insights-article-cover img { width: 100%; height: auto; display: block; }
.insights-article-body { font-size: 1.05rem; line-height: 1.8; color: var(--text); }
.insights-article-body p { margin: 0 0 20px; }
.insights-article-body h2 { font-size: 1.6rem; margin: 40px 0 16px; }
.insights-article-body h3 { font-size: 1.25rem; margin: 32px 0 12px; }
.insights-article-body a { color: var(--c-cyan); text-decoration: underline; text-underline-offset: 3px; }
.insights-article-body ul, .insights-article-body ol { margin: 0 0 20px; padding-left: 24px; }
.insights-article-body li { margin-bottom: 8px; }
.insights-article-body blockquote { margin: 24px 0; padding: 16px 22px; border-left: 3px solid var(--c-magenta); background: rgba(255,46,179,0.04); border-radius: 0 8px 8px 0; color: var(--text-dim); font-style: italic; }
.insights-article-body img { max-width: 100%; height: auto; border-radius: 10px; margin: 20px 0; }
.insights-article-body code { background: rgba(255,255,255,0.06); padding: 2px 6px; border-radius: 4px; font-family: 'JetBrains Mono', monospace; font-size: 0.9em; }
.insights-article-body pre { background: #070912; border: 1px solid rgba(255,255,255,0.08); padding: 16px 20px; border-radius: 10px; overflow-x: auto; margin: 20px 0; }
.insights-article-body pre code { background: none; padding: 0; }

.insights-survey {
  margin: 40px 0; padding: 24px 26px;
  background: rgba(0,212,255,0.04); border: 1px solid rgba(0,212,255,0.2); border-radius: 14px;
}
.insights-survey h3 { margin: 0 0 18px; font-size: 1.1rem; }
.insights-survey-form { display: flex; flex-direction: column; gap: 10px; }
.insights-survey-option {
  display: flex; gap: 10px; align-items: center;
  padding: 12px 14px; border-radius: 10px;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer; transition: background 0.15s var(--ease), border-color 0.15s var(--ease);
}
.insights-survey-option:hover { background: rgba(0,212,255,0.06); border-color: rgba(0,212,255,0.3); }
.insights-survey-form .btn { align-self: flex-start; margin-top: 6px; }
.insights-survey-results { display: flex; flex-direction: column; gap: 14px; }
.insights-survey-result-top { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; }
.insights-survey-pct { font-family: 'JetBrains Mono', monospace; color: var(--c-cyan); font-weight: 600; }
.insights-survey-bar { height: 6px; border-radius: 4px; background: rgba(255,255,255,0.06); overflow: hidden; }
.insights-survey-bar div { height: 100%; background: linear-gradient(90deg, var(--c-cyan), var(--c-magenta)); }
.insights-survey-result.mine .insights-survey-bar div { background: var(--c-cyan); }

.insights-share {
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.insights-share-label { font-size: 13px; color: var(--text-mute); margin-right: 8px; }
.insights-share-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 8px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-dim); font-size: 13px; font-weight: 500; cursor: pointer;
  transition: background 0.15s var(--ease), color 0.15s var(--ease), border-color 0.15s var(--ease);
}
.insights-share-btn:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.insights-share-btn.facebook:hover { color: #1877F2; border-color: rgba(24,119,242,0.4); }
.insights-share-btn.twitter:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
.insights-share-btn.linkedin:hover { color: #0A66C2; border-color: rgba(10,102,194,0.4); }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
