/* ============================================
   SafeOps Landing — Visual-First Design
   ============================================ */

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

:root {
  --brand: #3b82f6;
  --brand-light: #60a5fa;
  --brand-dark: #2563eb;
  --accent: #06d6a0;
  --accent-dark: #05b384;
  --dark: #0b1120;
  --dark-card: #111827;
  --dark-border: #1e293b;
  --light-bg: #f8fafc;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-dark: #0f172a;
  --gradient-brand: linear-gradient(135deg, #3b82f6, #06d6a0);
  --gradient-hero: linear-gradient(135deg, #0b1120 0%, #1e1b4b 50%, #0b1120 100%);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body.landing-body {
  font-family: var(--font);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Utilities ---------- */
.container-lp { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 48px;
}

/* ---------- Buttons ---------- */
.btn-primary-lp {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 36px;
  background: var(--gradient-brand);
  color: #fff; font-weight: 700; font-size: 1rem;
  border: none; border-radius: 50px; cursor: pointer;
  transition: var(--transition);
}
.btn-primary-lp:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(59,130,246,0.35); }
.btn-outline-lp {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 36px;
  background: transparent; color: var(--text-primary);
  font-weight: 700; font-size: 1rem;
  border: 2px solid var(--dark-border); border-radius: 50px; cursor: pointer;
  transition: var(--transition);
}
.btn-outline-lp:hover { border-color: var(--brand); color: var(--brand-light); transform: translateY(-2px); }
.hero-btns { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ---------- NAV ---------- */
.nav-lp {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: var(--transition); background: transparent;
}
.nav-lp.scrolled {
  background: rgba(11,17,32,0.88); backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--dark-border); padding: 10px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-size: 1.4rem; font-weight: 800; }
.nav-logo-icon {
  width: 36px; height: 36px; background: var(--gradient-brand);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-secondary); transition: var(--transition); }
.nav-links a:hover { color: var(--text-primary); }
.nav-cta { padding: 10px 24px !important; font-size: 0.875rem !important; background: #fff !important; color: #0f172a !important; }
.nav-mobile-toggle { display: none; background: none; border: none; color: var(--text-primary); font-size: 1.5rem; cursor: pointer; }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; background: var(--gradient-hero); overflow: hidden;
  padding: 90px 0 50px;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.12; pointer-events: none; }
.hero-glow-1 { width: 500px; height: 500px; background: var(--brand); top: -200px; right: -100px; }
.hero-glow-2 { width: 500px; height: 500px; background: var(--accent); bottom: -200px; left: -100px; opacity: 0.08; }

/* Hero top text — compact centered */
.hero-top {
  position: relative; z-index: 2; text-align: center;
  max-width: 680px; margin: 0 auto 36px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 900;
  line-height: 1.12; letter-spacing: -0.03em; margin-bottom: 12px;
}
.hero p { font-size: 1.05rem; color: var(--text-secondary); margin-bottom: 24px; }
.hero-btns { justify-content: center; }

/* ---- Hero Browser Mockup ---- */
.hero-browser {
  position: relative; z-index: 2;
  background: #0d1321; border: 1px solid #1e293b;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(59,130,246,0.06);
  max-width: 1060px; margin: 0 auto;
}
.hb-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 16px; background: rgba(0,0,0,0.5);
  border-bottom: 1px solid #1e293b;
}
.hb-dot { width: 10px; height: 10px; border-radius: 50%; }
.hb-dot.red { background: #ef4444; }
.hb-dot.yellow { background: #eab308; }
.hb-dot.green { background: #22c55e; }
.hb-url {
  margin-left: 12px; font-size: 0.65rem; color: #475569; font-weight: 500;
  background: rgba(255,255,255,0.03); padding: 4px 14px; border-radius: 6px;
  border: 1px solid #1e293b;
}
.hb-body { display: grid; grid-template-columns: 160px 1fr; min-height: 340px; }

/* Sidebar */
.hb-sidebar {
  padding: 14px 0; border-right: 1px solid #1e293b;
  display: flex; flex-direction: column; gap: 2px;
}
.hb-nav-logo {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 16px 14px; font-size: 0.8rem; font-weight: 800; color: #f1f5f9;
  border-bottom: 1px solid #1e293b; margin-bottom: 6px;
}
.hb-logo-icon {
  width: 24px; height: 24px; border-radius: 6px; background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
}
.hb-nav-item {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 16px; font-size: 0.7rem; font-weight: 500; color: #64748b;
  border-left: 2px solid transparent; transition: all 0.2s;
}
.hb-nav-item.active {
  color: #60a5fa; background: rgba(59,130,246,0.06);
  border-left-color: #3b82f6;
}

/* Main content area */
.hb-main { padding: 16px; display: flex; flex-direction: column; gap: 12px; }

/* KPI row */
.hb-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.hb-kpi {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.02); border: 1px solid #1e293b;
  border-radius: 10px; padding: 12px;
}
.hb-kpi-icon {
  width: 36px; height: 36px; min-width: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.hb-kpi-icon.blue { background: rgba(59,130,246,0.12); color: #60a5fa; }
.hb-kpi-icon.green { background: rgba(6,214,160,0.12); color: #06d6a0; }
.hb-kpi-icon.amber { background: rgba(234,179,8,0.12); color: #eab308; }
.hb-kpi-icon.red { background: rgba(239,68,68,0.12); color: #ef4444; }
.hb-kpi-val { font-size: 1.2rem; font-weight: 900; line-height: 1.2; letter-spacing: -0.02em; }
.hb-kpi-lbl { font-size: 0.6rem; color: #64748b; font-weight: 500; }

/* Row: chart + approval + activity */
.hb-row { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 12px; }
.hb-panel {
  background: rgba(255,255,255,0.02); border: 1px solid #1e293b;
  border-radius: 10px; padding: 14px;
}
.hb-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.hb-panel-title { font-size: 0.72rem; font-weight: 700; color: #94a3b8; }
.hb-badge-up {
  font-size: 0.6rem; font-weight: 700; color: #06d6a0;
  padding: 2px 8px; background: rgba(6,214,160,0.1); border-radius: 50px;
}

/* Bar chart */
.hb-bars { display: flex; align-items: flex-end; gap: 8px; height: 110px; }
.hb-bar-col {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px;
  height: 100%; justify-content: flex-end;
}
.hb-bar-col > span:last-child { font-size: 0.55rem; color: #475569; font-weight: 500; }
.hb-bar {
  width: 100%; border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #60a5fa, #3b82f6);
  height: 0; transition: height 1s cubic-bezier(0.4,0,0.2,1);
}
.hb-bar.g { background: linear-gradient(180deg, #34d399, #06d6a0); }
.hb-bar.a { background: linear-gradient(180deg, #fbbf24, #d97706); }
.hb-bar.animate { height: var(--h); }

/* Chart summary legend below bars */
.hb-chart-summary {
  display: flex; flex-direction: column; gap: 6px;
  margin-top: 12px; padding-top: 10px; border-top: 1px solid #1e293b;
}
.hb-cs-item {
  display: flex; align-items: center; gap: 8px; font-size: 0.62rem;
}
.hb-cs-dot { width: 8px; height: 8px; min-width: 8px; border-radius: 2px; }
.hb-cs-label { color: #94a3b8; flex: 1; }
.hb-cs-val { color: #e2e8f0; font-weight: 800; }

/* Bar value labels */
.hb-bar-val {
  font-size: 0.55rem; font-weight: 700; color: #94a3b8;
  opacity: 0; transition: opacity 0.4s ease 1.2s;
}
.hb-bar.animate ~ .hb-bar-val,
.hb-bar-col:has(.hb-bar.animate) .hb-bar-val { opacity: 1; }

/* Approval flow */
.hb-appr-flow { display: flex; flex-direction: column; gap: 0; }
.hb-appr-step {
  display: flex; align-items: center; gap: 10px; padding: 6px 0;
}
.hb-appr-av {
  width: 28px; height: 28px; min-width: 28px; border-radius: 50%;
  background: #1e293b; display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 800; color: #64748b;
}
.hb-appr-av.done { background: rgba(6,214,160,0.15); color: #06d6a0; }
.hb-appr-av.current { background: rgba(59,130,246,0.15); color: #60a5fa; }
.hb-appr-av.pulse-ring { animation: pulseRing 2s infinite; }
@keyframes pulseRing {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59,130,246,0.3); }
  50% { box-shadow: 0 0 0 6px rgba(59,130,246,0); }
}
.hb-appr-info strong { font-size: 0.68rem; color: #e2e8f0; display: block; }
.hb-appr-tag {
  font-size: 0.55rem; font-weight: 700; padding: 1px 8px; border-radius: 50px;
}
.hb-appr-tag.approved { background: rgba(6,214,160,0.1); color: #06d6a0; }
.hb-appr-tag.pending { background: rgba(59,130,246,0.1); color: #60a5fa; }
.hb-appr-connector {
  width: 2px; height: 8px; background: #1e293b; margin-left: 13px;
}

/* Animated approval steps — slide in staggered */
.hb-anim-step {
  opacity: 0; transform: translateX(-10px);
  animation: slideInStep 0.5s ease forwards;
  animation-delay: calc(var(--si) * 0.6s + 0.8s);
}
.hb-anim-conn {
  opacity: 0; animation: fadeIn 0.3s ease forwards;
  animation-delay: calc(var(--ci) * 0.6s + 1.1s);
}
@keyframes slideInStep {
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn { to { opacity: 1; } }

/* Activity feed */
.hb-activity { display: flex; flex-direction: column; gap: 0; }
.hb-act-item {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.03);
}
.hb-act-item:last-child { border-bottom: none; }
.hb-act-dot { width: 6px; height: 6px; min-width: 6px; border-radius: 50%; }
.hb-act-text { font-size: 0.62rem; color: #94a3b8; flex: 1; }
.hb-act-text strong { color: #e2e8f0; }
.hb-act-time { font-size: 0.55rem; color: #475569; white-space: nowrap; }

/* Animated activity items — fade in staggered */
.hb-anim-act {
  opacity: 0; transform: translateY(6px);
  animation: slideUpAct 0.4s ease forwards;
  animation-delay: calc(var(--ai) * 0.3s + 1.5s);
}
@keyframes slideUpAct {
  to { opacity: 1; transform: translateY(0); }
}

/* Shimmer (used by feature cards) */
.shimmer { animation: shimmer 2s infinite; }
@keyframes shimmer { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }

/* ---------- FEATURES STRIP ---------- */
.features-strip { padding: 100px 0; }
.strip-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.strip-card {
  background: #131c2e; border: 1px solid #253049;
  border-radius: var(--radius-lg); padding: 0 0 28px 0;
  transition: var(--transition); overflow: hidden; text-align: center;
}
.strip-card:hover { transform: translateY(-6px); border-color: rgba(59,130,246,0.4); box-shadow: 0 12px 40px rgba(59,130,246,0.08); }
.strip-visual { padding: 12px 12px 0; }
.strip-svg { width: 100%; height: auto; display: block; }
.strip-card h3 { font-size: 1.15rem; font-weight: 800; margin: 16px 0 4px; letter-spacing: -0.01em; }
.strip-card p { font-size: 0.85rem; color: var(--text-secondary); padding: 0 20px; }

/* Card animations — visible by default, enhanced on hover */
.auto-check { stroke-dasharray: 20; stroke-dashoffset: 0; stroke: #06d6a0; }
.strip-card:hover .auto-check.ac1 { animation: drawCheck 0.4s ease forwards 0.1s; }
.strip-card:hover .auto-check.ac2 { animation: drawCheck 0.4s ease forwards 0.3s; }
.strip-card:hover .auto-check.ac3 { animation: drawCheck 0.4s ease forwards 0.5s; }

.shield-fill-anim { opacity: 0.6; transition: opacity 1s ease; }
.strip-card:hover .shield-fill-anim { opacity: 1; }
.shield-check { stroke-dasharray: 40; stroke-dashoffset: 0; }
.strip-card:hover .shield-check { animation: drawCheck 0.6s ease forwards 0.5s; }

.orbit-dot { opacity: 0.7; }

/* Approval rings — partially visible by default */
.approval-ring { stroke-dashoffset: 60; transition: stroke-dashoffset 0.8s ease; }
.strip-card:hover .ar1 { stroke-dashoffset: 0; transition-delay: 0.1s; }
.strip-card:hover .ar2 { stroke-dashoffset: 0; transition-delay: 0.5s; }
.strip-card:hover .ar3 { stroke-dashoffset: 30; transition-delay: 0.9s; }

.sig-draw { stroke-dasharray: 100; stroke-dashoffset: 0; }
.strip-card:hover .sig-draw { animation: sigAnim 1.5s ease forwards 0.3s; }
@keyframes sigAnim { to { stroke-dashoffset: 0; } }

.stamp-anim { opacity: 0.8; transform: scale(1); transition: all 0.4s ease; }
.strip-card:hover .stamp-anim { opacity: 1; transform: scale(1.05); }

/* Tree — visible by default */
.tree-node { opacity: 0.7; transition: opacity 0.3s ease; }
.tree-line { opacity: 0.5; transition: opacity 0.3s ease; }
.tree-badge { opacity: 0.7; transition: opacity 0.3s ease; transform-origin: center; }
.strip-card:hover .tree-node { opacity: 1; }
.strip-card:hover .tree-line { opacity: 1; }
.strip-card:hover .tree-badge { opacity: 1; }

/* Chat bubbles — visible by default */
.chat-bubble { opacity: 0.7; transition: opacity 0.4s ease, transform 0.4s ease; }
.strip-card:hover .cb1 { opacity: 1; }
.strip-card:hover .cb2 { opacity: 1; }
.strip-card:hover .cb3 { opacity: 1; }

/* Typing dots */
.typing-dot { animation: typingBounce 1.4s infinite; }
.td2 { animation-delay: 0.2s; }
.td3 { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.3; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* ---------- HOW IT WORKS ---------- */
.how-section { padding: 100px 0; background: linear-gradient(180deg, var(--dark) 0%, #0f172a 100%); }
.timeline-visual { position: relative; margin-top: 16px; }
.timeline-svg { width: 100%; height: 20px; display: block; margin-bottom: -10px; }
.timeline-fill { transition: stroke-dashoffset 2.5s ease; }
.timeline-fill.active { stroke-dashoffset: 0; }

.timeline-steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; position: relative; z-index: 2; }
.tl-step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.tl-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--dark-card); border: 2px solid var(--dark-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); margin-bottom: 12px;
  transition: all 0.5s ease;
}
.tl-step.lit .tl-icon { border-color: var(--brand); color: var(--brand-light); box-shadow: 0 0 24px rgba(59,130,246,0.2); background: rgba(59,130,246,0.08); }
.tl-step.done .tl-icon { border-color: var(--accent); color: var(--accent); box-shadow: 0 0 24px rgba(6,214,160,0.2); background: rgba(6,214,160,0.08); }
.tl-step span { font-size: 0.85rem; font-weight: 700; color: var(--text-secondary); transition: color 0.5s ease; }
.tl-step.lit span { color: var(--text-primary); }
.tl-step.done span { color: var(--accent); }

/* ---------- DASHBOARD PREVIEW ---------- */
.dash-section { padding: 100px 0; }
.dash-mockup {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  max-width: 1060px; margin: 0 auto;
}
.dash-bar-top {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px; background: rgba(0,0,0,0.5);
  border-bottom: 1px solid var(--dark-border);
}
.dot-r, .dot-y, .dot-g { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ef4444; }
.dot-y { background: #eab308; }
.dot-g { background: #22c55e; }
.dash-bar-title { font-size: 0.7rem; font-weight: 600; color: var(--text-secondary); margin-left: 8px; }
.dash-body { display: grid; grid-template-columns: 140px 1fr; gap: 0; }

/* Sidebar */
.dash-sidebar {
  padding: 12px 0; border-right: 1px solid var(--dark-border);
  display: flex; flex-direction: column; gap: 2px;
}
.dash-nav-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; font-size: 0.72rem; font-weight: 500;
  color: var(--text-secondary); cursor: default; transition: all 0.2s;
  border-left: 2px solid transparent;
}
.dash-nav-item.active {
  color: var(--brand-light); background: rgba(59,130,246,0.06);
  border-left-color: var(--brand);
}

/* Main area */
.dash-main { padding: 14px 16px; display: flex; flex-direction: column; gap: 14px; }

/* KPI row */
.dash-kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.d-kpi {
  background: rgba(255,255,255,0.02); border: 1px solid var(--dark-border);
  border-radius: 10px; padding: 12px; display: flex; align-items: center; gap: 10px;
}
.d-kpi-icon {
  width: 32px; height: 32px; min-width: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.d-kpi-text { min-width: 0; }
.d-kpi-val { font-size: 1.2rem; font-weight: 900; letter-spacing: -0.02em; line-height: 1.2; }
.d-kpi-lbl { font-size: 0.65rem; color: var(--text-secondary); white-space: nowrap; }

/* Charts row */
.dash-charts-row { display: grid; grid-template-columns: 1.2fr 0.9fr 0.9fr; gap: 10px; }
.dash-panel {
  background: rgba(255,255,255,0.02); border: 1px solid var(--dark-border);
  border-radius: 10px; padding: 12px;
}
.dash-panel-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.dash-panel-title { font-size: 0.72rem; font-weight: 700; color: var(--text-secondary); }
.dash-panel-badge {
  font-size: 0.6rem; font-weight: 700; color: #06d6a0; padding: 2px 8px;
  background: rgba(6,214,160,0.1); border-radius: 50px;
}

/* Bar chart */
.dash-bars-wrap { display: flex; align-items: flex-end; gap: 6px; height: 100px; }
.d-bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; height: 100%; justify-content: flex-end; }
.d-bar {
  width: 100%; border-radius: 3px 3px 0 0;
  height: 0; transition: height 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.d-bar.animate { height: var(--h); }
.d-bar-label { font-size: 0.55rem; color: var(--text-secondary); font-weight: 500; }

/* Donut */
.dash-donut-wrap { display: flex; align-items: center; gap: 12px; }
.dash-donut-svg { width: 80px; height: 80px; min-width: 80px; }
.donut-seg { transition: stroke-dashoffset 1.2s ease; }
.donut-legend { display: flex; flex-direction: column; gap: 4px; }
.donut-legend-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.65rem; color: var(--text-secondary);
}
.donut-legend-item strong { color: var(--text-primary); margin-left: auto; }
.dl-dot { width: 6px; height: 6px; min-width: 6px; border-radius: 50%; }

/* Activity feed */
.dash-activity { display: flex; flex-direction: column; gap: 6px; }
.dash-activity-item {
  display: flex; align-items: center; gap: 8px;
  padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.03);
}
.dash-activity-item:last-child { border-bottom: none; }
.da-dot { width: 6px; height: 6px; min-width: 6px; border-radius: 50%; }
.da-text { font-size: 0.65rem; color: var(--text-secondary); flex: 1; min-width: 0; }
.da-text strong { color: var(--text-primary); }
.da-time { font-size: 0.6rem; color: #475569; white-space: nowrap; }

/* ---------- ROLES ---------- */
.roles-section { padding: 100px 0; background: linear-gradient(180deg, var(--dark) 0%, #0f172a 100%); }
.roles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.role-card {
  background: #131c2e; border: 1px solid #253049;
  border-radius: var(--radius-lg); padding: 32px 20px;
  text-align: center; transition: var(--transition);
}
.role-card:hover { transform: translateY(-6px); border-color: rgba(59,130,246,0.4); box-shadow: 0 8px 32px rgba(59,130,246,0.08); }
.role-anim { margin-bottom: 16px; }
.role-svg { width: 80px; height: 80px; margin: 0 auto; display: block; }
.role-ring { stroke-dashoffset: 80; transition: stroke-dashoffset 1s ease; }
.role-card:hover .role-ring { stroke-dashoffset: 0; }
.role-check { stroke-dasharray: 40; stroke-dashoffset: 0; }
.role-card:hover .role-check { animation: drawCheck 0.5s ease forwards 0.3s; }
.role-rays { opacity: 0.5; transition: opacity 0.5s ease; }
.role-card:hover .role-rays { opacity: 1; }
.role-card h4 { font-size: 1rem; font-weight: 800; margin-bottom: 2px; }
.role-card p { font-size: 0.8rem; color: var(--text-secondary); }

/* ---------- FINAL CTA ---------- */
.final-cta {
  padding: 120px 0; position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px; background: radial-gradient(circle, rgba(59,130,246,0.08), transparent 60%);
  pointer-events: none;
}
.final-cta .section-title { margin-bottom: 32px; }

/* ---------- FOOTER ---------- */
.footer-lp { padding: 32px 0; border-top: 1px solid var(--dark-border); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 0.85rem; color: var(--text-secondary); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.85rem; color: var(--text-secondary); transition: var(--transition); }
.footer-links a:hover { color: var(--text-primary); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .roles-grid { grid-template-columns: 1fr 1fr; }
  .timeline-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .timeline-svg { display: none; }
  .dash-charts-row { grid-template-columns: 1fr 1fr; }
  .dash-kpi-row { grid-template-columns: 1fr 1fr; }
  .hb-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: rgba(11,17,32,0.95);
    backdrop-filter: blur(20px); padding: 24px; border-bottom: 1px solid var(--dark-border);
  }
  .hero h1 { font-size: 2rem; }
  .hb-body { grid-template-columns: 1fr; }
  .hb-sidebar { display: none; }
  .hb-kpis { grid-template-columns: 1fr 1fr; }
  .hb-row { grid-template-columns: 1fr; }
  .hb-bar-val { display: none; }
  .strip-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .timeline-steps { grid-template-columns: 1fr 1fr; }
  .dash-body { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
  .dash-kpi-row { grid-template-columns: 1fr 1fr; }
  .dash-charts-row { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 2rem; }
  .footer-inner { flex-direction: column; gap: 12px; }
}
