/* ===== AZK Consulting — Premium Dark / LinkedIn-inspired ===== */

:root {
  --bg: #06070b;
  --bg-alt: #0a0d14;
  --surface: #10141d;
  --surface-2: #141924;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --text: #f2f4f7;
  --text-dim: #a6adba;
  --text-mute: #6b7280;
  --li-blue: #0A66C2;
  --li-blue-light: #4C9AFF;
  --li-blue-dim: #0a3a6b;
  --radius: 18px;
  --radius-sm: 12px;
  --ff-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ff-serif: 'Fraunces', serif;
  --ease: cubic-bezier(.22,1,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-sans);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

/* ---------- background layers ---------- */
.bg-grid {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

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

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2.5px;
  background: linear-gradient(90deg, var(--li-blue), var(--li-blue-light), #8ec5ff);
  box-shadow: 0 0 10px rgba(76,154,255,0.7);
  z-index: 300;
}

.scroll-spine {
  position: fixed;
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  align-items: center;
}
.scroll-spine-track {
  position: relative;
  width: 2px;
  height: 220px;
  background: var(--border);
  border-radius: 2px;
}
.scroll-spine-fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(var(--li-blue), var(--li-blue-light));
  border-radius: 2px;
}
.scroll-spine-dot {
  position: absolute;
  left: 50%;
  top: 0%;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--li-blue-light);
  box-shadow: 0 0 0 4px rgba(76,154,255,0.18), 0 0 14px rgba(76,154,255,0.8);
  transform: translate(-50%, -50%);
}
@media (max-width: 1180px) {
  .scroll-spine { display: none; }
}

.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,102,194,0.14) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  transition: opacity .3s;
  will-change: transform;
}

/* ---------- utility ---------- */
.text-gradient {
  background: linear-gradient(90deg, #4C9AFF, #0A66C2 60%, #8ec5ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--li-blue-light);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 18px; height: 1px;
  background: var(--li-blue-light);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  background: rgba(10,102,194,0.1);
  border: 1px solid rgba(76,154,255,0.28);
  font-size: 13px;
  font-weight: 500;
  color: var(--li-blue-light);
  margin-bottom: 22px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--li-blue-light);
  box-shadow: 0 0 0 3px rgba(76,154,255,0.2);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; }
  50% { opacity: .4; }
}

.section-sub {
  color: var(--text-dim);
  font-size: 17px;
  max-width: 560px;
  margin-top: 14px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, border-color .25s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--li-blue), #084a8f);
  color: #fff;
  box-shadow: 0 6px 24px -6px rgba(10,102,194,0.55), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -6px rgba(10,102,194,0.7), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-ghost {
  background: rgba(255,255,255,0.03);
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
}
.btn-lg { padding: 15px 26px; font-size: 15.5px; }
.btn-nav { padding: 10px 18px; font-size: 13.5px; }

/* ---------- navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: padding .3s var(--ease), background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(6,7,11,0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
}
.brand-mark {
  width: 30px; height: 30px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--li-blue), var(--li-blue-light));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 4px 14px -4px rgba(10,102,194,0.6);
}
.brand-name em { color: var(--li-blue-light); font-style: normal; font-weight: 800; }

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-dim);
}
.nav-links a { transition: color .2s; position: relative; }
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1.5px;
  background: var(--li-blue-light);
  transition: width .25s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 28px 20px;
  background: rgba(6,7,11,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-mobile a {
  padding: 12px 0;
  font-weight: 500;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border: none; margin-top: 8px; }
.nav-mobile.open { display: flex; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 176px 0 100px;
  overflow: hidden;
  z-index: 2;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.hero-glow-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(10,102,194,0.35), transparent 70%);
  top: -180px; left: -120px;
}
.hero-glow-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(76,154,255,0.22), transparent 70%);
  bottom: -220px; right: -100px;
}
.hero-mesh {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: 0.55;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero-title {
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: 4px; }
.hero-title .line-inner { display: block; }
.js-ready .hero-title .line-inner { transform: translateY(112%); }
.hero-sub {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* profile card visual */
.hero-visual { position: relative; }
.profile-card {
  position: relative;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.02) inset;
  max-width: 400px;
  margin: 0 auto;
  transform-style: preserve-3d;
}
.profile-card-banner {
  height: 88px;
  background:
    linear-gradient(120deg, rgba(10,102,194,0.9), rgba(76,154,255,0.5) 60%, rgba(10,102,194,0.9)),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 14px);
}
.profile-card-avatar {
  width: 74px; height: 74px;
  border-radius: 50%;
  border: 4px solid var(--surface);
  margin: -37px 0 0 24px;
  background: var(--surface);
  overflow: hidden;
}
.profile-card-body { padding: 14px 24px 20px; }
.skel { border-radius: 6px; background: linear-gradient(90deg, rgba(255,255,255,0.08), rgba(255,255,255,0.14), rgba(255,255,255,0.08)); background-size: 200% 100%; animation: shimmer 2.4s infinite; }
.skel-title { width: 62%; height: 15px; margin-bottom: 10px; }
.skel-sub { width: 85%; height: 11px; margin-bottom: 16px; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

.profile-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(76,154,255,0.1);
  color: var(--li-blue-light);
  border: 1px solid rgba(76,154,255,0.22);
}

.profile-card-stats {
  display: flex;
  border-top: 1px solid var(--border);
}
.stat {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
}
.stat:first-child { border-right: 1px solid var(--border); }
.stat-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.stat-icon.up { background: rgba(74,222,128,0.15); color: #4ADE80; }
.stat-num { font-size: 17px; font-weight: 800; line-height: 1; }
.stat-label { font-size: 11.5px; color: var(--text-mute); margin-top: 3px; }

.activity-feed {
  position: absolute;
  right: -7%;
  bottom: -14%;
  width: 270px;
  background: rgba(16,20,29,0.94);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 26px 60px -16px rgba(0,0,0,0.6);
  animation: floaty 5s ease-in-out infinite;
}
.activity-feed-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 12px;
}
.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.2);
  animation: pulse-dot 2s ease-in-out infinite;
}
.activity-item {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 10px 0;
}
.activity-item + .activity-item { border-top: 1px solid var(--border); }
.activity-icon {
  width: 32px; height: 32px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.activity-icon-post { background: rgba(76,154,255,0.14); color: var(--li-blue-light); }
.activity-icon-check { background: rgba(74,222,128,0.14); color: #4ADE80; }
.activity-text strong { display: block; font-size: 12.5px; font-weight: 700; margin-bottom: 3px; }
.activity-text span { font-size: 11px; color: var(--text-mute); line-height: 1.4; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-mute);
  z-index: 2;
}
.scroll-cue-line {
  width: 1px; height: 34px;
  background: linear-gradient(var(--li-blue-light), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-cue-line::after {
  content: '';
  position: absolute; top: -34px; left: 0;
  width: 1px; height: 34px;
  background: #fff;
  animation: scrollcue 2s ease-in-out infinite;
}
@keyframes scrollcue { to { top: 34px; } }

/* ---------- marquee ---------- */
.marquee-section {
  position: relative;
  z-index: 2;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.marquee { overflow: hidden; }
.marquee-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-mute);
  letter-spacing: .02em;
}
.marquee-track span:not(.dot) { color: var(--text-dim); }
.marquee-track .dot { color: var(--li-blue); font-size: 10px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- sections generic ---------- */
.section {
  position: relative;
  z-index: 2;
  padding: 110px 0;
}
.section-head { max-width: 700px; margin-bottom: 56px; }

/* problem */
.problem { position: relative; }
.problem::before {
  content: '';
  position: absolute;
  top: -8%;
  left: 50%;
  transform: translateX(-50%);
  width: 640px; height: 320px;
  background: radial-gradient(ellipse, rgba(239,68,68,0.12), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}
.problem .container { position: relative; z-index: 1; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.problem-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 2px solid rgba(239,68,68,0.35);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.problem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(239,68,68,0.5);
  border-left-color: #ef4444;
  box-shadow: 0 20px 46px -20px rgba(239,68,68,0.35);
}
.problem-warn {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #fca5a5;
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.3);
  padding: 4px 9px;
  border-radius: 999px;
}
.problem-icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.problem-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.problem-card p { color: var(--text-dim); font-size: 14.5px; }

/* services */
.service-block {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
.service-block:last-child { border-bottom: 1px solid var(--border); }
.service-block.reverse .service-text { order: 2; }
.service-block.reverse .service-visual { order: 1; }

.service-num {
  font-family: var(--ff-serif);
  font-size: 14px;
  color: var(--text-mute);
  margin-bottom: 18px;
}
.service-icon-wrap {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-text h3 { font-size: 26px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.01em; }
.service-text > p { color: var(--text-dim); font-size: 15.5px; max-width: 440px; margin-bottom: 18px; }
.service-text ul { display: flex; flex-direction: column; gap: 10px; }
.service-text li {
  list-style: none;
  position: relative;
  padding-left: 22px;
  color: var(--text-dim);
  font-size: 14.5px;
}
.service-text li::before {
  content: '';
  position: absolute; left: 0; top: 7px;
  width: 12px; height: 12px;
  border-radius: 3px;
  background: rgba(10,102,194,0.16);
  border: 1px solid rgba(76,154,255,0.4);
}

.service-visual { position: relative; }

/* --- Visual 1: Profile compare card --- */
.compare-card {
  --p: 0%;
  position: relative;
  aspect-ratio: 4 / 3.6;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  box-shadow: 0 30px 70px -24px rgba(0,0,0,0.6);
}
.compare-before, .compare-after {
  position: absolute; inset: 0;
}
.compare-before {
  background: var(--surface);
  filter: saturate(0.35) brightness(0.8);
}
.compare-tag {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 3;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}
.tag-muted { background: rgba(0,0,0,0.5); color: var(--text-mute); }
.tag-active { background: rgba(74,222,128,0.18); color: #4ADE80; }
.compare-after-wrap {
  position: absolute; inset: 0;
  clip-path: inset(0 calc(100% - var(--p)) 0 0);
}
.compare-after {
  position: absolute; inset: 0;
  background: var(--surface-2);
}

/* mini LinkedIn-style profile mockup, shared by before/after */
.li-profile { display: flex; flex-direction: column; height: 100%; }
.li-banner {
  height: 30%;
  min-height: 58px;
  flex-shrink: 0;
  background:
    linear-gradient(120deg, rgba(10,102,194,0.9), rgba(76,154,255,0.5) 60%, rgba(10,102,194,0.9)),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 14px);
}
.li-banner-muted { background: #1c1f27; }
.li-avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 3px solid var(--surface-2);
  margin: -28px 0 0 22px;
  background: var(--surface-2);
  flex-shrink: 0;
}
.li-avatar-muted { border-color: var(--surface); background: var(--surface); }
.li-body { padding: 10px 22px 20px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.li-body h4 { font-size: 16px; font-weight: 800; }
.li-profile-muted h4 { color: var(--text-dim); }
.li-headline { font-size: 12.5px; color: var(--text-dim); line-height: 1.45; }
.li-meta { font-size: 11px; color: var(--text-mute); }
.li-actions { display: flex; gap: 8px; margin-top: 10px; }
.li-btn { font-size: 11.5px; font-weight: 700; padding: 6px 15px; border-radius: 999px; }
.li-btn-primary { background: linear-gradient(135deg, var(--li-blue), #084a8f); color: #fff; }
.li-btn-ghost { border: 1px solid var(--border-strong); color: var(--text-dim); }
.compare-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--p);
  width: 3px;
  background: var(--li-blue-light);
  box-shadow: 0 0 16px rgba(76,154,255,0.8);
  z-index: 2;
}
.compare-handle span {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--li-blue), #084a8f);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  box-shadow: 0 6px 18px -4px rgba(10,102,194,0.7);
}

/* --- Visual 2: Content calendar + post stack --- */
.content-visual {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.mini-calendar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}
.cal-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  font-size: 11px;
  color: var(--text-mute);
  margin-bottom: 12px;
  text-align: center;
}
.cal-cells {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.cal-cell {
  height: 26px;
  border-radius: 7px;
  background: rgba(255,255,255,0.03);
  display: flex; align-items: center; justify-content: center;
}
.cal-cell.cal-dot::after {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--li-blue-light);
  opacity: 0;
  transform: scale(0.3);
  transition: opacity .3s, transform .3s;
  box-shadow: 0 0 8px rgba(76,154,255,0.8);
}
.cal-cell.cal-dot.active::after { opacity: 1; transform: scale(1); }

.post-stack { position: relative; height: 220px; }
.post-card {
  position: absolute;
  inset: 0;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}
.post-card.ghost {
  background: var(--surface-2);
  border-color: var(--border);
  opacity: 0;
  transform: translateY(0) rotate(0deg);
}
.ghost-1 { z-index: 1; }
.ghost-2 { z-index: 0; }
.pc-main { z-index: 2; box-shadow: 0 24px 50px -18px rgba(0,0,0,0.55); }
.pc-head { display: flex; align-items: center; gap: 10px; }
.pc-avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--li-blue), var(--li-blue-light)); flex-shrink: 0; }
.pc-engage {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-dim);
}
.pc-engage b { color: var(--text); font-weight: 700; }

/* --- Visual 3: Outreach bulk mail queue + funnel --- */
.outreach-visual { display: flex; flex-direction: column; gap: 24px; }
.mail-queue {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
}
.mail-queue-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-dim);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.mail-count b { color: var(--li-blue-light); font-size: 14px; }
.mail-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  opacity: 0;
  transform: translateY(12px);
}
.mail-row + .mail-row { border-top: 1px solid var(--border); }
.mail-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--li-blue), var(--li-blue-light));
  flex-shrink: 0;
}
.mail-info { flex: 1; display: flex; flex-direction: column; }
.mail-status {
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.mail-status.sent { background: rgba(74,222,128,0.12); color: #4ADE80; }
.mail-status.queued { background: rgba(255,255,255,0.06); color: var(--text-mute); }
.funnel-mini {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.funnel-row { display: grid; grid-template-columns: 90px 1fr; align-items: center; gap: 12px; }
.funnel-row span { font-size: 12.5px; color: var(--text-dim); }
.funnel-bar { height: 8px; border-radius: 999px; background: rgba(255,255,255,0.05); overflow: hidden; }
.funnel-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--li-blue), var(--li-blue-light));
  box-shadow: 0 0 10px rgba(76,154,255,0.5);
}

/* process */
.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.process-line {
  position: absolute;
  top: 24px; left: 0; right: 0;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.process-line-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--li-blue), var(--li-blue-light));
  box-shadow: 0 0 12px rgba(76,154,255,0.6);
}
.process-step { position: relative; z-index: 1; }
.process-dot {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: var(--li-blue-light);
  margin-bottom: 20px;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.process-step.active .process-dot {
  border-color: var(--li-blue-light);
  background: linear-gradient(135deg, var(--li-blue), #073863);
  color: #fff;
  box-shadow: 0 0 0 6px rgba(10,102,194,0.15);
}
.process-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.process-step p { color: var(--text-dim); font-size: 14px; max-width: 240px; }

/* why */
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.why-copy h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 18px; line-height: 1.15; }
.why-copy .btn { margin-top: 28px; }
.why-list { display: flex; flex-direction: column; gap: 26px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-item svg { flex-shrink: 0; margin-top: 3px; }
.why-item h4 { font-size: 16.5px; font-weight: 700; margin-bottom: 5px; }
.why-item p { color: var(--text-dim); font-size: 14.5px; }

/* faq */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 780px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .3s;
}
.faq-item.open { border-color: rgba(76,154,255,0.35); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.faq-chevron { color: var(--text-mute); transition: transform .3s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--li-blue-light); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq-a p { padding: 0 24px 20px; color: var(--text-dim); font-size: 14.5px; max-width: 640px; }

/* final cta */
.final-cta { position: relative; padding: 60px 0 140px; overflow: hidden; }
.cta-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(10,102,194,0.35), transparent 70%);
  filter: blur(60px);
  z-index: 0;
}
.cta-box {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 70px 40px;
  border-radius: 28px;
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border-strong);
}
.cta-box h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; line-height: 1.15; }
.cta-box p { color: var(--text-dim); font-size: 16px; margin-bottom: 30px; }

/* footer */
.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  padding: 64px 0 28px;
  background: var(--bg-alt);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 44px;
}
.footer-brand p { color: var(--text-mute); font-size: 14px; margin: 14px 0 18px; max-width: 260px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--text-dim);
  display: flex; align-items: center; justify-content: center;
  transition: color .2s, border-color .2s;
}
.social-link:hover { color: var(--li-blue-light); border-color: rgba(76,154,255,0.4); }
.footer-links { display: flex; gap: 64px; }
.footer-links h5 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-mute); margin-bottom: 16px; }
.footer-links a { display: block; color: var(--text-dim); font-size: 14.5px; margin-bottom: 12px; transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-mute);
}

/* ---------- reveal animation base ----------
   Hidden state is opt-in via .js-ready (added by main.js once GSAP has
   initialized) so content stays visible if JS fails to load or run. */
.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 40px; max-width: 440px; }
  .why-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .process-line { display: none; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 140px 0 80px; }
  .service-block, .service-block.reverse { grid-template-columns: 1fr; gap: 32px; }
  .service-block.reverse .service-text { order: 1; }
  .service-block.reverse .service-visual { order: 2; }
  .process-track { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .cursor-glow { display: none; }
  .activity-feed { position: static; width: 100%; margin-top: 16px; animation: none; }
}
