:root {
  --bg-dark: #050505;
  --bg-gradient-start: #0A0A0A;
  --bg-gradient-end: #121212;
  --accent-blue: #5E6AD2;
  --accent-glow: rgba(94, 106, 210, 0.4);
  --text-heading: #FAFAFA;
  --text-body: #A1A1AA;
  --text-muted: #71717A;
  --border-subtle: rgba(255, 255, 255, 0.06);
}

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

html {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  letter-spacing: -0.01em;
}

/* Animated Gradient Background */
.animated-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -2;
  background-color: var(--bg-dark);
  overflow: hidden;
}
.animated-bg::before, .animated-bg::after {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  animation: float 20s infinite ease-in-out alternate;
}
.animated-bg::before {
  background: #5E6AD2;
  top: -200px; left: -200px;
}
.animated-bg::after {
  background: #9333EA;
  bottom: -200px; right: -200px;
  animation-delay: -10s;
}
@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(0, 150px) scale(1.1); }
  66% { transform: translate(0, 100px) scale(0.9); }
  100% { transform: translate(0, 0) scale(1); }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-heading);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

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

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.text-center { text-align: center; }
.text-accent { color: var(--accent-blue); }
.text-gradient {
  background: linear-gradient(135deg, #FFFFFF, #A5B4FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.w-full { width: 100%; }
.pt-32 { padding-top: 160px; }
.pt-10 { padding-top: 40px; }
section { padding: 100px 0; }
.section-title { font-size: 3rem; margin-bottom: 20px; font-weight: 700; }
.section-subtitle { font-size: 1.125rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 56px auto; }
.section-header:not(.text-center) .section-subtitle { margin-left: 0; }

/* Components - Premium Glass Card */
.glass-card {
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 24px -8px rgba(0, 0, 0, 0.5);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.glass-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%);
  pointer-events: none;
}
.glass-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.7), 0 0 24px rgba(94, 106, 210, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 100px; /* Pill shape for premium feel */
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  border: none;
}
.btn-primary {
  background: var(--text-heading);
  color: var(--bg-dark);
  box-shadow: 0 4px 14px rgba(255,255,255,0.15);
}
.btn-primary:hover {
  background: #E4E4E7;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.25);
}
.btn-secondary {
  background: rgba(255,255,255,0.03);
  color: var(--text-heading);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 24px; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  display: flex; justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.navbar.scrolled {
  top: 16px;
}
.nav-container { 
  display: flex; align-items: center; justify-content: space-between; 
  width: 100%;
  max-width: 1152px;
  padding: 10px 24px;
  border-radius: 100px;
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
}
.navbar.scrolled .nav-container {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15);
  padding: 8px 24px;
}

/* Scrolled Text Colors (Moss text) */
.navbar.scrolled .logo { color: #2A3B32; }
.navbar.scrolled .logo .text-gradient { background: linear-gradient(135deg, #1F2922, #4A5D4E); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.navbar.scrolled .nav-links a { color: #4A5D4E; font-weight: 600; }
.navbar.scrolled .nav-links a:hover, .navbar.scrolled .nav-links a.active { color: #1F2922; }
.navbar.scrolled .btn-primary { background: #2A3B32; color: #fff; box-shadow: 0 4px 14px rgba(42, 59, 50, 0.2); }
.navbar.scrolled .btn-primary:hover { background: #1F2922; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(42, 59, 50, 0.3); }
.navbar.scrolled .mobile-menu-btn span { background: #2A3B32; }
.nav-btn { padding: 10px 24px; font-size: 0.9rem; }
.logo { font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 0; letter-spacing: -0.02em; }
.logo span, .logo .text-gradient { margin-left: 0; }
.logo-icon { font-size: 1.5rem; display: flex; align-items: center; justify-content: center; margin-right: 10px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--text-body); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.mobile-menu-btn { display: none; background: none; border: none; flex-direction: column; gap: 5px; cursor: pointer; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: #fff; transition: 0.3s; }

/* Hero */
.hero { position: relative; overflow: hidden; }
.hero-bg-glow {
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: min(600px, 100vw); height: 400px;
  background: var(--accent-blue); filter: blur(150px); opacity: 0.15; z-index: -1;
}
.hero-container { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.badge { display: inline-block; padding: 6px 16px; background: rgba(59, 130, 246, 0.1); border: 1px solid rgba(59, 130, 246, 0.2); border-radius: 30px; font-size: 0.875rem; color: #93C5FD; margin-bottom: 24px; font-weight: 600; }
.hero-title { 
  font-size: 4rem; 
  margin-bottom: 24px; 
  letter-spacing: -0.04em; 
  line-height: 1.08;
  font-weight: 800;
}
.hero-subtitle { font-size: 1.125rem; margin-bottom: 40px; color: var(--text-muted); max-width: 90%; }
.hero-actions { display: flex; gap: 16px; }

/* Perception Dashboard */
.perception-dashboard { background: rgba(10,14,30,0.85); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 24px; backdrop-filter: blur(16px); box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.06); }
.perc-header { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.mock-dots { display: flex; gap: 6px; }
.mock-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mock-dots span:nth-child(1) { background: #FF5F56; }
.mock-dots span:nth-child(2) { background: #FFBD2E; }
.mock-dots span:nth-child(3) { background: #27C93F; }
.perc-title { font-size: 0.8rem; font-weight: 600; color: #94A3B8; flex: 1; }
.perc-live { display: flex; align-items: center; gap: 5px; font-size: 0.75rem; color: #10B981; font-weight: 600; }
.perc-dot { width: 6px; height: 6px; border-radius: 50%; background: #10B981; box-shadow: 0 0 6px #10B981; animation: pulse-green 2s infinite; }

.perc-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.perc-metric { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 14px 16px; }
.perc-metric-full { grid-column: span 2; }
.perc-metric-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.perc-label { font-size: 0.72rem; color: #64748B; font-weight: 500; }
.perc-badge { font-size: 0.65rem; padding: 2px 8px; border-radius: 8px; font-weight: 700; }
.perc-badge.green { background: rgba(16,185,129,0.12); color: #34D399; border: 1px solid rgba(16,185,129,0.2); }
.perc-badge.blue { background: rgba(59,130,246,0.12); color: #93C5FD; border: 1px solid rgba(59,130,246,0.2); }
.perc-badge.amber { background: rgba(245,158,11,0.12); color: #FCD34D; border: 1px solid rgba(245,158,11,0.2); }
.perc-value { font-size: 1.7rem; font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1; }
.perc-value-sub { font-size: 1rem; font-weight: 500; color: #64748B; }
.perc-trend { font-size: 0.72rem; font-weight: 600; margin-top: 4px; }
.perc-trend.green { color: #34D399; }
.perc-trend.blue { color: #93C5FD; }
.perc-trend.amber { color: #FCD34D; }

.perc-chart-section { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 16px; }
.perc-chart-label { font-size: 0.75rem; color: #64748B; font-weight: 500; margin-bottom: 12px; }
.perc-chart-wrap { position: relative; }
.perc-svg { width: 100%; height: 80px; display: block; }
.perc-line-blue { animation: draw-perc 2.4s cubic-bezier(0.16,1,0.3,1) forwards; }
.perc-line-green { animation: draw-perc 2.8s cubic-bezier(0.16,1,0.3,1) forwards; }
.perc-fill-blue { animation: fade-perc 2.4s ease forwards; }
.perc-fill-green { animation: fade-perc 2.8s ease forwards; }
.perc-dot-end-blue { animation: pop-dot 0.4s 2.3s ease forwards; }
.perc-dot-end-green { animation: pop-dot 0.4s 2.7s ease forwards; }
@keyframes draw-perc { 0% { stroke-dashoffset: 400; } 100% { stroke-dashoffset: 0; } }
@keyframes fade-perc { 0%, 40% { opacity: 0; } 100% { opacity: 1; } }
@keyframes pop-dot { 0% { opacity: 0; r: 0; } 100% { opacity: 1; r: 3; } }
.perc-chart-legend { display: flex; gap: 16px; margin-top: 10px; }
.legend-item { font-size: 0.72rem; font-weight: 600; display: flex; align-items: center; gap: 5px; }
.legend-item::before { content: ''; width: 16px; height: 2px; border-radius: 1px; }
.legend-item.blue { color: #93C5FD; }
.legend-item.blue::before { background: #3B82F6; }
.legend-item.green { color: #34D399; }
.legend-item.green::before { background: #10B981; }

/* Proof Grid */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.proof-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: 32px 28px; border-radius: 16px; text-align: left; transition: background 0.3s, border-color 0.3s, transform 0.3s; }
.proof-card:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); transform: translateY(-4px); }
.proof-icon { font-size: 2rem; margin-bottom: 16px; display: inline-block; }
.proof-card h4 { font-size: 1.05rem; margin-bottom: 10px; font-weight: 700; }
.proof-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* Problem */
.problem-box { padding: 80px 64px; text-align: left; background: rgba(15, 23, 42, 0.4); border-color: rgba(255,255,255,0.05); }
.problem-content { max-width: 800px; margin: 0 auto; }
.problem-box .section-title { font-size: 3rem; margin-bottom: 24px; text-align: left; }
.problem-box .section-subtitle { text-align: left; margin: 0 0 48px 0; max-width: 100%; font-size: 1.25rem; line-height: 1.6; }
.problem-list { list-style: none; margin-top: 32px; display: grid; gap: 24px; perspective: 1000px; }
.problem-list li { display: flex; align-items: flex-start; gap: 20px; color: var(--text-heading); padding: 20px 24px; background: rgba(255, 255, 255, 0.02); border-radius: 16px; border: 1px solid rgba(255,255,255,0.03); transition: all 0.3s ease; cursor: default; }
.problem-list li:hover { transform: translateX(10px) translateZ(20px); background: rgba(239, 68, 68, 0.05); border-color: rgba(239, 68, 68, 0.2); box-shadow: -5px 5px 20px rgba(239, 68, 68, 0.1); }
.problem-text { display: flex; flex-direction: column; gap: 5px; }
.problem-text strong { font-size: 1.05rem; font-weight: 600; color: var(--text-heading); line-height: 1.4; }
.problem-text span { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.problem-list .check { color: #EF4444; font-weight: bold; background: rgba(239, 68, 68, 0.15); width: 32px; height: 32px; min-width: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 1rem; box-shadow: 0 0 10px rgba(239, 68, 68, 0.3); margin-top: 3px; }
@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}
.pulse-anim { animation: pulse-red 2s infinite; }

/* How it works */
.steps-list { display: flex; flex-direction: column; gap: 24px; }
.step-row { display: grid; grid-template-columns: 120px 1fr; gap: 40px; align-items: flex-start; padding: 40px; position: relative; overflow: hidden; transition: border-color 0.3s, transform 0.3s; }
.step-row:hover { border-color: rgba(255,255,255,0.12); transform: translateX(6px); }
.step-row-num { font-size: 5rem; font-weight: 800; font-family: 'Outfit', sans-serif; color: rgba(255,255,255,0.06); line-height: 1; transition: color 0.3s; user-select: none; padding-top: 4px; }
.step-row:hover .step-row-num { color: rgba(59,130,246,0.2); }
.step-row-content h3 { font-size: 1.4rem; margin-bottom: 16px; font-weight: 700; }
.step-row-content p { color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; font-size: 0.95rem; }
.step-closing { color: #fff !important; font-style: italic; font-weight: 500; border-left: 2px solid rgba(59,130,246,0.5); padding-left: 14px; margin-top: 16px !important; }
.step-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; margin: 12px 0 20px; }
.step-list li { font-size: 0.9rem; color: var(--text-muted); padding: 8px 14px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; display: flex; align-items: center; gap: 8px; transition: background 0.2s; }
.step-list li::before { content: '•'; color: #3B82F6; font-size: 1.2rem; line-height: 1; }
.step-list li:hover { background: rgba(59,130,246,0.07); border-color: rgba(59,130,246,0.2); }
/* Objective Chips */
.objective-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.obj-chip { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 14px; padding: 14px 16px; transition: background 0.3s, border-color 0.3s, transform 0.3s; }
.obj-chip:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); transform: translateX(4px); }
.obj-icon-wrap { width: 44px; height: 44px; min-width: 44px; background: rgba(255,255,255,0.04); border-radius: 10px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.06); }
.obj-icon-anim { position: relative; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; }
.obj-label { font-size: 0.82rem; font-weight: 600; color: #CBD5E1; line-height: 1.35; }

/* Sentiment bars */
.sentiment-anim { display: flex; align-items: flex-end; gap: 2px; }
.sent-bar { display: block; width: 5px; background: #34D399; border-radius: 2px; }
.sb1 { height: 8px; animation: sent-grow 2s infinite ease-in-out 0s; }
.sb2 { height: 14px; animation: sent-grow 2s infinite ease-in-out 0.2s; }
.sb3 { height: 20px; animation: sent-grow 2s infinite ease-in-out 0.4s; }
@keyframes sent-grow { 0%, 100% { opacity: 0.4; transform: scaleY(0.7); } 50% { opacity: 1; transform: scaleY(1.2); } }
.sent-arrow { font-size: 1rem; color: #34D399; font-weight: 900; margin-left: 2px; animation: arrow-bounce 1.5s infinite ease-in-out; }
@keyframes arrow-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

/* Radar / Exposure */
.exposure-anim { position: relative; }
.radar-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 50%; border: 1.5px solid rgba(59,130,246,0.6); opacity: 0; animation: radar-expand 2s infinite ease-out; }
.rr1 { width: 10px; height: 10px; animation-delay: 0s; }
.rr2 { width: 10px; height: 10px; animation-delay: 0.7s; }
@keyframes radar-expand { 0% { width: 10px; height: 10px; opacity: 0.8; } 100% { width: 30px; height: 30px; opacity: 0; } }
.radar-center { font-size: 1.1rem; position: relative; z-index: 2; animation: radar-pulse 2s infinite ease-in-out; }
@keyframes radar-pulse { 0%, 100% { transform: scale(0.9); } 50% { transform: scale(1.1); } }

/* Reputation Stars */
.reputation-anim { display: flex; gap: 2px; align-items: center; }
.rep-star { color: #FBBF24; font-size: 0.85rem; animation: star-pop 2s infinite ease-in-out; }
.rs1 { animation-delay: 0s; }
.rs2 { animation-delay: 0.2s; }
.rs3 { animation-delay: 0.4s; }
@keyframes star-pop { 0%, 100% { opacity: 0.3; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.2); } }

/* Shield / Narasi */
.narasi-anim { position: relative; }
.shield-base { font-size: 1.3rem; position: relative; z-index: 2; animation: shield-glow 2.5s infinite ease-in-out; }
@keyframes shield-glow { 0%, 100% { filter: drop-shadow(0 0 0px rgba(139,92,246,0)); } 50% { filter: drop-shadow(0 0 6px rgba(139,92,246,0.8)); } }
.shield-pulse { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 10px; height: 10px; border-radius: 50%; background: rgba(139,92,246,0.3); animation: shield-ring 2.5s infinite ease-out; }
@keyframes shield-ring { 0% { width: 10px; height: 10px; opacity: 0.6; } 100% { width: 36px; height: 36px; opacity: 0; } }

@media (max-width: 640px) { .objective-chips { grid-template-columns: 1fr; } }

/* Outcome Cards */
.outcome-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 20px; }
.outcome-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 20px 16px; display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; position: relative; overflow: hidden; transition: border-color 0.3s, transform 0.3s; }
.outcome-card:hover { border-color: rgba(255,255,255,0.15); transform: translateY(-4px); }
.oc-visual { position: relative; width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; }
.oc-glow { position: absolute; inset: -10px; border-radius: 50%; filter: blur(16px); opacity: 0.25; }
.oc-glow.green { background: #10B981; }
.oc-glow.blue { background: #3B82F6; }
.oc-glow.amber { background: #F59E0B; }
.oc-label { font-size: 0.82rem; font-weight: 600; color: #CBD5E1; line-height: 1.4; }

/* Signal Bars animation */
.signal-bars { display: flex; align-items: flex-end; gap: 4px; height: 40px; }
.bar { display: block; width: 8px; background: #10B981; border-radius: 3px; animation: bar-grow 2s infinite ease-in-out; }
.b1 { animation-delay: 0s; }
.b2 { animation-delay: 0.15s; }
.b3 { animation-delay: 0.3s; }
.b4 { animation-delay: 0.45s; }
.b5 { animation-delay: 0.6s; }
@keyframes bar-grow {
  0%, 100% { height: 8px; opacity: 0.4; }
  50% { opacity: 1; }
  25% { height: 40px; }
}
.b1 { --max-h: 16px; }
.b2 { --max-h: 24px; }
.b3 { --max-h: 40px; }
.b4 { --max-h: 30px; }
.b5 { --max-h: 20px; }

/* Momentum Ring animation */
.momentum-ring { position: relative; width: 60px; height: 60px; }
.momentum-svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.momentum-arc { animation: arc-spin 2.4s infinite cubic-bezier(0.4, 0, 0.2, 1); }
@keyframes arc-spin { 0% { stroke-dashoffset: 150; } 60% { stroke-dashoffset: 10; } 100% { stroke-dashoffset: 150; } }
.momentum-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 1.4rem; animation: icon-pulse 2.4s infinite ease-in-out; }
@keyframes icon-pulse { 0%, 100% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.7; } 60% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; } }

/* Blocks Stack animation */
.blocks-stack { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.block { display: block; border-radius: 4px; background: linear-gradient(90deg, #F59E0B, #FBBF24); animation: block-stack 2.4s infinite ease-out; }
.blk1 { width: 48px; height: 10px; animation-delay: 0.6s; }
.blk2 { width: 36px; height: 10px; animation-delay: 0.3s; }
.blk3 { width: 24px; height: 10px; animation-delay: 0s; }
@keyframes block-stack { 0%, 100% { opacity: 0.2; transform: scaleX(0.6); } 40%, 80% { opacity: 1; transform: scaleX(1); } }

@media (max-width: 768px) {
  .step-row { grid-template-columns: 1fr; gap: 16px; }
  .step-row-num { font-size: 3.5rem; }
  .step-list { grid-template-columns: 1fr; }
  .outcome-cards { grid-template-columns: 1fr; }
}

/* Platform Coverage Section */
.platforms { padding: 120px 0; }
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.platform-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.3s, box-shadow 0.4s;
  cursor: default;
}
.platform-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--p-glow, rgba(255,255,255,0.05)) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.platform-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 20px 60px var(--p-glow, rgba(0,0,0,0.3));
}
.platform-card:hover::before { opacity: 1; }

/* Platform Icon */
.platform-icon-wrap { display: flex; align-items: center; }
.platform-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: box-shadow 0.4s, transform 0.4s;
  overflow: visible;
}
.platform-icon svg {
  border-radius: 10px;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), filter 0.4s;
}
.platform-card:hover .platform-icon svg {
  transform: scale(1.08);
  filter: drop-shadow(0 4px 16px var(--p-glow, rgba(0,0,0,0.4)));
}
.platform-card:hover .platform-icon {
  box-shadow: 0 0 24px var(--p-glow, rgba(255,255,255,0.1));
}


/* Animated ring on hover */
.pi-ring {
  position: absolute;
  inset: -4px;
  border-radius: 20px;
  border: 2px solid var(--p-color, #fff);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.4s, transform 0.4s;
}
.platform-card:hover .pi-ring {
  opacity: 0.4;
  transform: scale(1.1);
  animation: ring-pulse 2s infinite;
}
@keyframes ring-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1.1); }
  50% { opacity: 0.15; transform: scale(1.2); }
}


/* Platform Info */
.platform-info h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; color: #FAFAFA; }
.platform-info p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }


/* Boost Types */
.boost-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.interactive-boost { 
  text-align: center; padding: 40px 24px; 
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  height: 240px;
}
.boost-visual { position: relative; margin-bottom: 20px; width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.03); border-radius: 50%; border: 1px solid var(--border-subtle); transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1); z-index: 2; }
.b-icon { font-size: 2.5rem; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.interactive-boost h3 { margin-bottom: 12px; transition: 0.3s; }
.b-tag { font-size: 0.75rem; padding: 6px 16px; background: rgba(255,255,255,0.05); border-radius: 20px; color: #93C5FD; font-weight: 600; border: 1px solid rgba(147, 197, 253, 0.2); transition: 0.3s; }

/* Hover Reveals */
.hover-reveal { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; background: linear-gradient(to top, rgba(15,23,42,0.95), transparent); transform: translateY(100%); opacity: 0; transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1); display: flex; flex-direction: column; align-items: center; z-index: 1; }
.hover-reveal p { font-size: 0.85rem; color: #fff; font-weight: 500; margin-top: 12px; line-height: 1.4; }
.mini-chart { width: 100%; height: 30px; position: relative; }
.mini-chart::after { content: ''; position: absolute; bottom: 0; left: 0; height: 100%; width: 0%; background: linear-gradient(90deg, transparent, rgba(94, 106, 210, 0.8)); transition: width 0.8s ease-out; }

/* Hover Interactions */
.interactive-boost:hover .boost-visual { transform: translateY(-10px) scale(1.1); background: rgba(94, 106, 210, 0.1); border-color: rgba(94, 106, 210, 0.4); box-shadow: 0 0 20px rgba(94, 106, 210, 0.2); }
.interactive-boost:hover .b-icon { transform: scale(1.1); }
.interactive-boost:hover h3 { transform: translateY(-5px); }
.interactive-boost:hover .b-tag { opacity: 0; transform: translateY(-10px); }
.interactive-boost:hover .hover-reveal { transform: translateY(0); opacity: 1; }
.interactive-boost:hover .mini-chart::after { width: 100%; }

/* Specific Icon Animations */
.interactive-boost:hover .heart-icon { animation: beat 0.8s infinite alternate; filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.5)); }
@keyframes beat { 0% { transform: scale(1.1); } 100% { transform: scale(1.3); } }
.interactive-boost:hover .comment-icon { animation: float-chat 1.5s infinite ease-in-out; }
@keyframes float-chat { 0%, 100% { transform: translateY(0) scale(1.1); } 50% { transform: translateY(-5px) scale(1.1); } }
.interactive-boost:hover .share-icon { animation: spin-link 2s infinite linear; }
@keyframes spin-link { 0% { transform: rotate(0deg) scale(1.1); } 100% { transform: rotate(360deg) scale(1.1); } }

/* Particles */
.boost-particles { position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; opacity: 0; transition: 0.3s; }
.interactive-boost:hover .boost-particles { opacity: 1; }
.boost-particles::before, .boost-particles::after { content: ''; position: absolute; width: 6px; height: 6px; background: #fff; border-radius: 50%; opacity: 0; }
.interactive-boost:hover .boost-particles::before { animation: shoot-up 1s infinite ease-out; }
.interactive-boost:hover .boost-particles::after { animation: shoot-up 1.2s infinite ease-out 0.4s; left: 70%; }
@keyframes shoot-up { 0% { transform: translateY(20px) scale(0); opacity: 0; } 50% { opacity: 1; } 100% { transform: translateY(-40px) scale(1.5); opacity: 0; } }

/* Safe */
.grid-2-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.safe-dashboard { 
  display: flex; flex-direction: column; 
  padding: 24px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}
.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.dash-title { font-size: 1.1rem; font-weight: 600; color: #fff; }
.status-badge { font-size: 0.75rem; padding: 4px 10px; border-radius: 12px; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.status-badge.safe { background: rgba(16, 185, 129, 0.15); color: #34D399; border: 1px solid rgba(16, 185, 129, 0.3); }
.status-badge.safe::before { content: ''; width: 6px; height: 6px; background: #34D399; border-radius: 50%; box-shadow: 0 0 8px #34D399; animation: pulse-green 2s infinite; }
@keyframes pulse-green { 0% { opacity: 0.5; } 50% { opacity: 1; box-shadow: 0 0 12px #34D399; } 100% { opacity: 0.5; } }

.dash-content { display: flex; flex-direction: column; gap: 24px; }
.dash-metric { display: flex; flex-direction: column; gap: 8px; }
.metric-label { font-size: 0.85rem; color: #94A3B8; font-weight: 500; }
.metric-val { font-size: 0.8rem; font-weight: 600; margin-top: 4px; }
.text-green { color: #34D399; }

/* Spam Gauge */
.spam-gauge { width: 100%; height: 8px; border-radius: 4px; background: rgba(255,255,255,0.05); display: flex; position: relative; overflow: hidden; }
.gauge-zone { height: 100%; }
.safe-zone { width: 30%; background: linear-gradient(90deg, #10B981, #34D399); }
.warn-zone { width: 40%; background: linear-gradient(90deg, #F59E0B, #FBBF24); opacity: 0.5; }
.danger-zone { width: 30%; background: linear-gradient(90deg, #EF4444, #F87171); opacity: 0.3; }
.gauge-marker { position: absolute; top: -2px; bottom: -2px; width: 4px; background: #fff; border-radius: 2px; left: 10%; box-shadow: 0 0 10px rgba(255,255,255,0.8); animation: gauge-wiggle 4s infinite ease-in-out; }
@keyframes gauge-wiggle { 0%, 100% { left: 10%; } 25% { left: 15%; } 50% { left: 8%; } 75% { left: 18%; } }

/* Pacing Slider */
.pacing-track { width: 100%; height: 6px; background: rgba(255,255,255,0.05); border-radius: 3px; position: relative; margin-top: 4px; }
.pacing-progress { position: absolute; left: 0; top: 0; bottom: 0; width: 60%; background: #93C5FD; border-radius: 3px; animation: pacing-animate 8s infinite alternate ease-in-out; }
.pacing-thumb { position: absolute; top: 50%; transform: translate(-50%, -50%); left: 60%; width: 16px; height: 16px; background: #fff; border-radius: 50%; box-shadow: 0 2px 5px rgba(0,0,0,0.2); animation: pacing-thumb-animate 8s infinite alternate ease-in-out; }
@keyframes pacing-animate { 0% { width: 30%; } 100% { width: 80%; } }
@keyframes pacing-thumb-animate { 0% { left: 30%; } 100% { left: 80%; } }

/* Delivery Chart */
.dash-chart { margin-top: 8px; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 16px; }
.chart-container { position: relative; height: 100px; width: 100%; overflow: hidden; margin-top: 12px; }
.organic-line { width: 100%; height: 100%; }
.chart-path { }
.chart-fill { }

.chart-scanner { position: absolute; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, transparent, rgba(52, 211, 153, 0.9), transparent); left: 0; box-shadow: 0 0 8px rgba(52, 211, 153, 0.6); animation: scan-line 5s infinite linear; }
@keyframes scan-line { 0% { left: 0%; opacity: 0; } 3% { opacity: 1; } 50% { left: 100%; opacity: 1; } 52%, 100% { left: 100%; opacity: 0; } }

.checklist { list-style: none; display: grid; gap: 16px; margin-top: 32px; }
.checklist li { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.checklist li::before { content: '✓'; color: #10B981; font-weight: bold; background: rgba(16, 185, 129, 0.1); width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 0.8rem; }

/* For Who */
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.who-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); padding: 24px; border-radius: 12px; text-align: center; font-weight: 600; font-size: 1.1rem; color: #fff; transition: 0.3s; }
.who-card:hover { background: rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.4); transform: translateY(-3px); }

/* FAQ */
.faq-container { max-width: 800px; }
.accordion { display: flex; flex-direction: column; gap: 16px; }
.accordion-item { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden; }
.accordion-header { padding: 20px 24px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: #fff; }
.accordion-header::after { content: '+'; font-size: 1.5rem; font-weight: 300; transition: transform 0.3s; color: var(--text-muted); }
.accordion-item.active .accordion-header::after { transform: rotate(45deg); color: var(--accent-blue); }
.accordion-item.active { border-color: rgba(59,130,246,0.3); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.accordion-content { padding: 0 24px 24px 24px; color: var(--text-muted); line-height: 1.6; }

/* Contact */
.contact-container { max-width: 900px; }
.contact-card { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; padding: 48px; }
.contact-info h2 { font-size: 2.2rem; margin-bottom: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 0.9rem; font-weight: 500; }
.form-group input, .form-group textarea { width: 100%; padding: 14px 16px; background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: #fff; font-family: inherit; transition: 0.3s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent-blue); box-shadow: 0 0 0 3px rgba(59,130,246,0.1); }
.form-success { margin-top: 16px; padding: 12px; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.2); color: #10B981; border-radius: 8px; text-align: center; font-weight: 500; }
.form-error { margin-top: 16px; padding: 12px; background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); color: #F87171; border-radius: 8px; text-align: center; font-weight: 500; }

/* Final CTA */
.final-cta { padding: 120px 0; background: radial-gradient(ellipse at center, rgba(59,130,246,0.1) 0%, transparent 70%); }
.cta-actions { display: flex; justify-content: center; gap: 16px; margin-top: 32px; }

/* Footer */
.premium-footer { border-top: 1px solid rgba(255,255,255,0.05); padding: 80px 0 40px; background: linear-gradient(to bottom, transparent, rgba(15,23,42,0.5)); }
.footer-top { display: grid; grid-template-columns: 1.5fr 2fr; gap: 64px; margin-bottom: 60px; }
.footer-brand .logo { margin-bottom: 24px; }
.brand-desc { color: #94A3B8; font-size: 0.95rem; line-height: 1.6; max-width: 400px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 { font-size: 0.95rem; margin-bottom: 24px; color: #fff; font-weight: 600; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.footer-col a { color: #94A3B8; text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.footer-col a:hover { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.3); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-text { color: #64748B; font-size: 0.85rem; }
.footer-social { display: flex; gap: 24px; }
.social-icon { color: #94A3B8; text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.social-icon:hover { color: #fff; }

@media (max-width: 992px) {
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
@media (max-width: 600px) {
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 20px; align-items: flex-start; }
}

/* Animations */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 992px) {
  .hero-container { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
  .hero-content { display: contents; }
  .badge { order: 1; margin-bottom: 16px; width: fit-content; }
  .hero-title { order: 2; font-size: 2.8rem; margin-bottom: 24px; width: 100%; text-align: left; }
  .hero-visual { order: 3; margin-top: 0; margin-bottom: 32px; width: 100%; }
  .hero-subtitle { order: 4; margin-bottom: 32px; max-width: 100%; width: 100%; text-align: left; }
  .hero-actions { order: 5; width: 100%; }
  .grid-2-col, .contact-card { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-large, .bento-wide, .bento-full { grid-column: auto; grid-row: auto; }
  .bento-flex { flex-direction: column; align-items: flex-start; gap: 16px; }
  .feature-card:last-child:nth-child(odd) { grid-column: auto; }
  .contact-card { gap: 32px; padding: 32px; }
  .problem-box { padding: 40px 32px; }
}
@media (max-width: 768px) {
  .navbar { padding: 0 16px; }
  .nav-container { padding: 8px 16px; }
  .navbar.scrolled .nav-container { padding: 6px 16px; }
  .nav-links { position: fixed; top: 90px; left: 16px; right: 16px; background: rgba(20,20,20,0.95); backdrop-filter: blur(16px); border-radius: 20px; flex-direction: column; padding: 24px; gap: 24px; border: 1px solid rgba(255,255,255,0.05); clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); transition: 0.3s; }
  .nav-links.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
  .navbar.scrolled .nav-links { background: rgba(255, 255, 255, 0.95); border: 1px solid rgba(0,0,0,0.1); }
  .navbar.scrolled .nav-links a { color: #2A3B32; }
  .mobile-menu-btn { display: flex; }
  .nav-btn { display: none; }
  .boost-grid, .who-grid, .proof-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; }
  .section-subtitle br { display: none; }
}

@media (max-width: 540px) {
  .platforms-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  .step-row { padding: 24px 16px; }
  .problem-box { padding: 28px 20px; }
  .contact-card { padding: 24px 20px; }
  .btn { padding: 12px 20px; font-size: 0.9rem; }
}

@media (max-width: 400px) {
  .container { padding: 0 12px; }
  .hero-title { font-size: 1.9rem; }
  .platforms-grid { grid-template-columns: 1fr; }
  .boost-grid { grid-template-columns: 1fr; }
}
