/* ReamAI - Static site styles - same look as React app */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg: #050505;
  --white: #ffffff;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-400: #60a5fa;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-500: #f59e0b;
  --amber-700: #b45309;
  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --orange-500: #f97316;
  --radius: 0.5rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }

/* Utility animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px -5px rgba(37, 99, 235, 0.4); }
  50% { box-shadow: 0 0 40px -5px rgba(37, 99, 235, 0.6); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
@keyframes pulse { 50% { opacity: .5; } }
.animate-shimmer {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

/* Scroll-triggered fade-up (JS adds .visible) */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

.glass-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.glass-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-glow {
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
}

.text-gradient {
  background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Layout */
.container { max-width: 80rem; margin-left: auto; margin-right: auto; padding-left: 1.5rem; padding-right: 1.5rem; }
@media (min-width: 768px) { .container { padding-left: 3rem; padding-right: 3rem; } }

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.5s, border 0.5s, backdrop-filter 0.5s;
}
.navbar.scrolled {
  backdrop-filter: blur(24px);
  background: rgba(0,0,0,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
@media (min-width: 768px) { .navbar-inner { height: 5rem; } }
.nav-logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; color: var(--white); font-weight: 600; font-size: 1.125rem; }
.nav-logo span:last-child { color: var(--blue-500); }
.nav-desktop { display: none; }
@media (min-width: 768px) {
  .nav-desktop { display: flex; align-items: center; gap: 2rem; }
}
.nav-desktop a { font-size: 0.875rem; color: var(--slate-400); text-decoration: none; transition: color 0.3s; }
.nav-desktop a:hover { color: var(--white); }
.nav-cta {
  background: var(--blue-600); color: var(--white); border-radius: 9999px; padding: 0.5rem 1.25rem; font-size: 0.875rem; font-weight: 500;
  text-decoration: none; transition: all 0.3s; display: inline-block;
}
.nav-cta:hover { background: var(--blue-500); box-shadow: 0 0 20px -5px rgba(37,99,235,0.5); transform: translateY(-2px); }

.mobile-menu-btn { display: flex; padding: 0.5rem; color: var(--white); background: none; border: none; cursor: pointer; }
@media (min-width: 768px) { .mobile-menu-btn { display: none; } }

.mobile-menu {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
.mobile-menu.open { max-height: 300px; opacity: 1; backdrop-filter: blur(24px); background: rgba(0,0,0,0.9); border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-menu .mobile-menu-inner { padding: 1rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.mobile-menu a { color: var(--slate-400); text-decoration: none; padding: 0.5rem 0; transition: color 0.3s; }
.mobile-menu a:hover { color: var(--white); }
.mobile-menu .nav-cta { text-align: center; }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-glow-wrap { position: absolute; inset: 0; pointer-events: none; }
.hero-blur { position: absolute; top: 25%; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; border-radius: 50%; background: rgba(37,99,235,0.05); filter: blur(120px); pointer-events: none; }
.hero-content { position: relative; z-index: 10; max-width: 56rem; margin: 0 auto; padding: 8rem 1.5rem 5rem; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 9999px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); padding: 0.375rem 1rem; font-size: 0.875rem; color: var(--slate-300); backdrop-filter: blur(4px); margin-bottom: 1rem; }
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-500); animation: pulse 2s infinite; }
.hero h1 { font-size: 3rem; font-weight: 600; letter-spacing: -0.025em; line-height: 1.1; margin: 0 0 1rem; }
@media (min-width: 768px) { .hero h1 { font-size: 4.375rem; } }
.hero h1 .blue { color: var(--blue-500); }
.hero-sub { font-size: 1rem; color: var(--slate-400); line-height: 1.6; max-width: 42rem; margin: 0 auto 2rem; }
@media (min-width: 768px) { .hero-sub { font-size: 1.125rem; } }

.hero-form { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; max-width: 28rem; margin: 0 auto; width: 100%; }
@media (min-width: 640px) { .hero-form { flex-direction: row; } }
.hero-form input {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 9999px; padding: 0.875rem 1.5rem;
  color: var(--white); font-size: 0.875rem; outline: none;
}
.hero-form input::placeholder { color: var(--gray-500); }
.hero-form input:focus { ring: 2px; outline: none; box-shadow: 0 0 0 2px rgba(59,130,246,0.5); }
.hero-form button {
  background: var(--blue-600); color: var(--white); border: none; border-radius: 9999px; padding: 0.875rem 1.5rem; font-size: 0.875rem; font-weight: 500;
  cursor: pointer; transition: all 0.3s; white-space: nowrap; display: inline-flex; align-items: center; gap: 0.5rem;
  box-shadow: 0 0 20px -5px rgba(37,99,235,0.4);
}
.hero-form button:hover:not(:disabled) { background: var(--blue-500); box-shadow: 0 0 30px -5px rgba(37,99,235,0.6); transform: translateY(-2px); }
.hero-form button:disabled { opacity: 0.5; cursor: not-allowed; }

.hero-status { font-size: 0.875rem; margin-top: 0.5rem; }
.hero-status.success { color: var(--emerald-500); }
.hero-status.exists { color: var(--amber-500); }
.hero-status.error { color: var(--red-500); }

.hero-secondary { display: flex; align-items: center; justify-content: center; gap: 1.5rem; padding-top: 0.5rem; }
.hero-secondary a { font-size: 0.875rem; color: var(--slate-400); text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: color 0.3s; }
.hero-secondary a:hover { color: var(--white); }

/* Dashboard mockup */
.dashboard-wrap { position: relative; margin-top: 4rem; max-width: 56rem; margin-left: auto; margin-right: auto; }
.dashboard-glow { position: absolute; inset: -2rem; background: rgba(37,99,235,0.15); border-radius: 2rem; filter: blur(48px); }
.dashboard-box { position: relative; border-radius: 1rem; overflow: hidden; box-shadow: 0 20px 80px -20px rgba(37,99,235,0.35); }
.dashboard-chrome { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.25rem; background: #f5f5f7; border-bottom: 1px solid #e5e7eb; }
.dashboard-dots { display: flex; gap: 0.5rem; }
.dashboard-dots span { width: 12px; height: 12px; border-radius: 50%; }
.dashboard-dots .r { background: #ff5f57; }
.dashboard-dots .y { background: #febc2e; }
.dashboard-dots .g { background: #28c840; }
.dashboard-url { flex: 1; margin: 0 2rem; }
.dashboard-url-inner { background: var(--white); border-radius: 0.5rem; padding: 0.375rem 1rem; font-size: 0.75rem; color: var(--gray-500); max-width: 20rem; margin: 0 auto; text-align: center; border: 1px solid #e5e7eb; box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.dashboard-body { background: #f8f9fb; padding: 1.5rem; }
.dashboard-sidebar { display: none; }
@media (min-width: 768px) { .dashboard-sidebar { display: flex; flex-direction: column; width: 12rem; background: var(--white); border-radius: 0.75rem; padding: 1rem; border: 1px solid #f3f4f6; gap: 0.25rem; } }
.dashboard-main { flex: 1; }
.dashboard-row { display: flex; gap: 1rem; }
.dashboard-card { background: var(--white); border-radius: 0.75rem; padding: 1rem; border: 1px solid #f3f4f6; box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.dashboard-score-bar { height: 8px; background: #f3f4f6; border-radius: 9999px; overflow: hidden; margin-top: 0.5rem; }
.dashboard-score-fill { height: 100%; background: linear-gradient(to right, var(--blue-600), var(--blue-400)); border-radius: 9999px; width: 82%; }
.chart-bars { display: flex; align-items: flex-end; gap: 2px; height: 5rem; }
.chart-bar { flex: 1; border-radius: 2px 2px 0 0; background: #dbeafe; }
.chart-bar-inner { height: 70%; background: var(--blue-500); border-radius: 2px 2px 0 0; width: 100%; }
.insight-card { background: var(--blue-600); color: var(--white); padding: 1rem; border-radius: 0.75rem; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }

/* Section common */
.section { padding-top: 6rem; padding-bottom: 6rem; position: relative; }
@media (min-width: 768px) { .section { padding-top: 8rem; padding-bottom: 8rem; } }
.section-label { font-size: 0.875rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-500); margin-bottom: 1rem; }
.section-title { font-size: 2.25rem; font-weight: 500; letter-spacing: -0.025em; margin: 0 0 1rem; }
@media (min-width: 768px) { .section-title { font-size: 3rem; } }
.section-title.center { text-align: center; }
.section-sub { font-size: 1rem; color: var(--slate-400); line-height: 1.6; }
@media (min-width: 768px) { .section-sub { font-size: 1.125rem; } }

/* Problem cards */
.problem-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .problem-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .problem-grid { grid-template-columns: repeat(4, 1fr); } }
.problem-card { border-radius: 1rem; padding: 2rem; transition: all 0.3s; }
.problem-card:hover { transform: translateY(-4px); }
.problem-card .icon-wrap { width: 3rem; height: 3rem; border-radius: 0.75rem; background: rgba(37,99,235,0.1); border: 1px solid rgba(59,130,246,0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: var(--blue-400); }
.problem-card h3 { font-size: 1.125rem; font-weight: 500; color: var(--white); margin: 0 0 0.5rem; }
.problem-card p { font-size: 0.875rem; color: var(--slate-400); line-height: 1.6; margin: 0; }

/* Solution */
.solution-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .solution-grid { grid-template-columns: 1fr 1fr; } }
.solution-steps { margin-top: 2rem; }
.solution-step { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.solution-step .icon-wrap { width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; background: rgba(37,99,235,0.1); border: 1px solid rgba(59,130,246,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.solution-step p { margin: 0; }
.solution-step .step-label { font-weight: 500; color: var(--white); }
.solution-step .step-desc { font-size: 0.875rem; color: var(--slate-400); margin-top: 0.125rem; }
.solution-visual { position: relative; }
.solution-visual-glow { position: absolute; inset: -1.5rem; background: rgba(37,99,235,0.05); border-radius: 1.5rem; filter: blur(24px); }
.solution-agent-card { position: relative; border-radius: 1rem; padding: 2rem; }
.agent-line { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; }
.agent-line .done { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; }
.agent-line .done.yes { background: rgba(16,185,129,0.2); color: var(--emerald-500); }
.agent-line .done.no { background: rgba(59,130,246,0.2); color: var(--blue-400); animation: pulse 2s infinite; }

/* Features grid */
.features-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-card { border-radius: 1rem; padding: 2rem; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.02); transition: all 0.3s; overflow: hidden; }
.feature-card:hover { transform: translateY(-4px); }
.feature-card.accent { border-color: rgba(59,130,246,0.3); background: rgba(37,99,235,0.05); }
.feature-card.accent:hover { background: rgba(37,99,235,0.1); }
.feature-card .icon-wrap { width: 3rem; height: 3rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.feature-card:not(.accent) .icon-wrap { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.feature-card.accent .icon-wrap { background: rgba(37,99,235,0.2); border: 1px solid rgba(59,130,246,0.3); }
.feature-card h3 { font-size: 1.125rem; font-weight: 500; color: var(--white); margin: 0 0 0.5rem; }
.feature-card p { font-size: 0.875rem; color: var(--slate-400); line-height: 1.6; margin: 0; }
.feature-example { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1rem; background: rgba(37,99,235,0.1); border: 1px solid rgba(59,130,246,0.2); border-radius: 0.5rem; padding: 0.375rem 0.75rem; font-size: 0.875rem; font-family: monospace; color: var(--blue-400); }

/* Showcase */
.showcase-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; margin-bottom: 8rem; }
.showcase-grid:last-of-type { margin-bottom: 0; }
@media (min-width: 1024px) { .showcase-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) {
  .showcase-grid.reverse > *:first-child { order: 1; }
  .showcase-grid.reverse > *:last-child { order: 2; }
}
.showcase-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(37,99,235,0.1); border: 1px solid rgba(59,130,246,0.2); border-radius: 9999px; padding: 0.375rem 1rem; font-size: 0.75rem; font-weight: 500; color: var(--blue-400); margin-bottom: 1.5rem; }
.showcase h3 { font-size: 1.875rem; font-weight: 500; letter-spacing: -0.025em; color: var(--white); margin: 0 0 1rem; }
@media (min-width: 768px) { .showcase h3 { font-size: 2.25rem; } }
.showcase p { font-size: 1rem; color: var(--slate-400); line-height: 1.6; margin-bottom: 1rem; }
.showcase ul { list-style: none; padding: 0; margin: 0; }
.showcase li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--slate-300); margin-bottom: 0.75rem; }
.showcase li svg { flex-shrink: 0; }
.white-card { background: var(--white); border-radius: 1rem; box-shadow: 0 20px 60px -15px rgba(0,0,0,0.4); overflow: hidden; }
.white-card .pad { padding: 1.5rem; }
.score-ring { position: relative; width: 7rem; height: 7rem; flex-shrink: 0; }
.score-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.score-ring-num { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.score-ring-num .big { font-size: 1.5rem; font-weight: 700; color: var(--gray-900); }
.score-ring-num .small { font-size: 10px; color: var(--gray-400); }
.bar-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.bar-row span:first-child { font-size: 0.75rem; color: var(--gray-500); width: 3.5rem; }
.bar-track { flex: 1; height: 8px; background: #f3f4f6; border-radius: 9999px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 9999px; }
.bar-fill.emerald { background: var(--emerald-500); }
.bar-fill.amber { background: var(--amber-500); }
.bar-fill.blue { background: var(--blue-500); }
.bar-fill.orange { background: var(--orange-500); }
.insight-row { padding: 1rem; border-radius: 0.75rem; margin-bottom: 0.75rem; display: flex; align-items: flex-start; gap: 0.75rem; }
.insight-row.warning { background: var(--amber-50); border: 1px solid #fef3c7; }
.insight-row.success { background: var(--emerald-50); border: 1px solid var(--emerald-100); }
.insight-row.danger { background: var(--red-50); border: 1px solid var(--red-100); }
.rec-card { border: 1px solid #f3f4f6; border-radius: 0.75rem; padding: 1rem; margin-bottom: 0.75rem; transition: border-color 0.2s; }
.rec-card:hover { border-color: #e5e7eb; }
.rec-tags { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.75rem; flex-wrap: wrap; }
.tag { font-size: 10px; font-weight: 600; padding: 0.125rem 0.5rem; border-radius: 9999px; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 90rem; margin: 0 auto; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); } }
.pricing-card { position: relative; padding: 2rem; border-radius: 1.5rem; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.02); backdrop-filter: blur(24px); transition: all 0.3s; display: flex; flex-direction: column; }
.pricing-card.popular { border: 2px solid rgba(59,130,246,0.4); background: rgba(37,99,235,0.05); box-shadow: 0 0 40px -10px rgba(37,99,235,0.3); transform: scale(1.02); }
.pricing-card .tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--blue-600); color: var(--white); font-size: 0.75rem; font-weight: 500; padding: 0.375rem 1rem; border-radius: 9999px; }
.pricing-card h3 { font-size: 1.125rem; font-weight: 500; color: var(--white); margin: 0 0 0.25rem; }
.pricing-card .desc { font-size: 0.875rem; color: var(--slate-400); margin-bottom: 1.5rem; }
.pricing-card .price { font-size: 2.25rem; font-weight: 700; color: var(--white); }
.pricing-card .price span { color: var(--slate-500); font-size: 0.875rem; }
.pricing-card ul { list-style: none; padding: 0; margin: 0 0 2rem; flex: 1; }
.pricing-card li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--slate-300); margin-bottom: 0.75rem; }
.pricing-card .btn { display: block; text-align: center; border-radius: 9999px; padding: 0.75rem 1rem; font-size: 0.875rem; font-weight: 500; text-decoration: none; transition: all 0.3s; }
.pricing-card .btn.primary { background: var(--blue-600); color: var(--white); }
.pricing-card .btn.primary:hover { background: var(--blue-500); box-shadow: 0 0 20px -5px rgba(37,99,235,0.4); transform: translateY(-2px); }
.pricing-card .btn.secondary { background: rgba(255,255,255,0.05); color: var(--white); border: 1px solid rgba(255,255,255,0.1); }
.pricing-card .btn.secondary:hover { background: rgba(255,255,255,0.1); }
.pricing-card .pricing-year { font-size: 0.8125rem; font-weight: 500; color: var(--emerald-500); margin: -0.5rem 0 1rem; min-height: 1.25rem; }
.pricing-card .pricing-trial { margin-top: 0.75rem; padding: 0.875rem 1rem; font-size: 0.8125rem; color: var(--slate-400); text-align: center; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 0.75rem; }
.pricing-card .btn { margin-top: auto; }

/* Legal / static content pages */
.legal-page { padding-top: 6rem; padding-bottom: 5rem; min-height: 70vh; }
.legal-prose { max-width: 48rem; margin: 0 auto; }
.legal-prose h1 { font-size: 2.25rem; font-weight: 600; letter-spacing: -0.025em; margin: 0 0 1rem; color: var(--white); }
@media (min-width: 768px) { .legal-prose h1 { font-size: 2.75rem; } }
.legal-prose h2 { font-size: 1.25rem; font-weight: 600; margin: 2rem 0 0.75rem; color: var(--white); }
.legal-prose p { font-size: 0.9375rem; color: var(--slate-400); line-height: 1.75; margin: 0 0 1rem; }
.legal-prose ul { padding-left: 1.25rem; margin: 0 0 1rem; }
.legal-prose li { font-size: 0.9375rem; color: var(--slate-400); line-height: 1.65; margin-bottom: 0.5rem; }
.legal-prose a { color: var(--blue-400); text-decoration: none; }
.legal-prose a:hover { text-decoration: underline; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card { border-radius: 1rem; padding: 2rem; transition: all 0.3s; }
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card .stars { display: flex; gap: 0.25rem; margin-bottom: 1.25rem; }
.testimonial-card .quote { font-size: 0.875rem; color: var(--slate-300); line-height: 1.6; margin-bottom: 1.5rem; }
.testimonial-card .author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-card .author img { width: 2.5rem; height: 2.5rem; border-radius: 50%; object-fit: cover; }
.testimonial-card .author-name { font-size: 0.875rem; font-weight: 500; color: var(--white); }
.testimonial-card .author-role { font-size: 0.75rem; color: var(--slate-500); }

/* CTA */
.cta-section { position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to bottom, rgba(30,58,138,0.2), var(--bg), var(--bg)); }
.cta-blur { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; border-radius: 50%; background: rgba(37,99,235,0.1); filter: blur(150px); pointer-events: none; }
.cta-inner { position: relative; z-index: 10; max-width: 48rem; margin: 0 auto; padding: 0 1.5rem; text-align: center; }
@media (min-width: 768px) { .cta-inner { padding: 0 3rem; } }
.cta-inner .section-title { margin-bottom: 1.5rem; }
.cta-form { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; max-width: 28rem; margin: 0 auto 1rem; }
@media (min-width: 640px) { .cta-form { flex-direction: row; } }
.cta-form input { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 9999px; padding: 0.875rem 1.5rem; color: var(--white); font-size: 0.875rem; outline: none; }
.cta-form button { background: var(--blue-600); color: var(--white); border: none; border-radius: 9999px; padding: 0.875rem 1.5rem; font-size: 0.875rem; font-weight: 500; cursor: pointer; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.3s; white-space: nowrap; }
.cta-form button:hover:not(:disabled) { background: var(--blue-500); box-shadow: 0 0 30px -5px rgba(37,99,235,0.6); transform: translateY(-2px); }
.cta-form button:disabled { opacity: 0.5; cursor: not-allowed; }
.cta-install { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.05); color: var(--white); border: 1px solid rgba(255,255,255,0.1); border-radius: 9999px; padding: 0.75rem 1.5rem; font-size: 0.875rem; text-decoration: none; transition: all 0.3s; margin-top: 1.5rem; backdrop-filter: blur(4px); }
.cta-install:hover { background: rgba(255,255,255,0.1); }

/* Footer */
.footer { position: relative; padding-top: 5rem; padding-bottom: 3rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bg-text { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; overflow: hidden; font-size: 15vw; font-weight: 700; color: rgba(255,255,255,0.02); letter-spacing: -0.025em; white-space: nowrap; user-select: none; }
.footer-inner { position: relative; z-index: 10; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-brand .logo { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; color: var(--slate-500); line-height: 1.6; max-width: 20rem; margin: 0; }
.footer-links h4 { font-size: 0.875rem; font-weight: 500; color: var(--white); margin: 0 0 1rem; }
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links a { font-size: 0.875rem; color: var(--slate-500); text-decoration: none; display: block; margin-bottom: 0.625rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-bottom p { font-size: 0.75rem; color: var(--slate-600); margin: 0; }
.footer-bottom a { font-size: 0.75rem; color: var(--slate-600); text-decoration: none; margin-left: 1rem; transition: color 0.3s; }
.footer-bottom a:hover { color: var(--slate-400); }

/* Icon box */
.icon-box { width: 2rem; height: 2rem; border-radius: 0.5rem; background: var(--blue-600); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 0.75rem; }
.logo-text { font-weight: 600; font-size: 1.125rem; }
.logo-text .blue { color: var(--blue-500); }

/* Navbar slide-down animation (initial state) */
.navbar.navbar-initial { transform: translateY(-100%); }
.navbar.navbar-visible { transform: translateY(0); transition: transform 0.6s ease-out; }

/* AI Report & Reports Showcase */
.report-card { max-width: 42rem; margin: 0 auto; position: relative; }
.report-card .glow { position: absolute; inset: -1.5rem; background: rgba(37,99,235,0.1); border-radius: 1.5rem; filter: blur(24px); }
.report-card .card { position: relative; background: var(--white); border-radius: 1rem; box-shadow: 0 20px 60px -15px rgba(0,0,0,0.4); overflow: hidden; }
.report-header { padding: 1rem 1.5rem; background: #f9fafb; border-bottom: 1px solid #f3f4f6; display: flex; align-items: center; justify-content: space-between; }
.report-score-bar { padding: 0.75rem 1.5rem; border-bottom: 1px solid #f3f4f6; }
.report-score-bar .track { height: 10px; background: #f3f4f6; border-radius: 9999px; overflow: hidden; }
.report-score-bar .fill { height: 100%; background: linear-gradient(to right, var(--blue-600), var(--blue-400)); border-radius: 9999px; width: 78%; }
.report-block { padding: 1.25rem 1.5rem; border-bottom: 1px solid #f3f4f6; }
.report-block:last-of-type { border-bottom: none; }
.report-block h4 { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 600; color: var(--gray-900); margin: 0 0 1rem; }
.report-item { padding: 0.875rem; border-radius: 0.75rem; margin-bottom: 0.75rem; display: flex; align-items: flex-start; gap: 0.75rem; }
.report-item.red { background: var(--red-50); border: 1px solid var(--red-100); }
.report-item.amber { background: var(--amber-50); border: 1px solid var(--amber-100); }
.report-item.green { background: var(--emerald-50); border: 1px solid var(--emerald-100); }
.report-item .impact { font-size: 10px; font-weight: 600; padding: 0.125rem 0.5rem; border-radius: 9999px; }
.reports-hero { background: linear-gradient(to right, var(--blue-600), var(--blue-500)); padding: 1.25rem 1.5rem; color: var(--white); display: flex; align-items: center; justify-content: space-between; }
.reports-kpis { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; padding: 1.5rem; }
@media (min-width: 768px) { .reports-kpis { grid-template-columns: repeat(4, 1fr); } }
.reports-kpi { background: #f9fafb; border-radius: 0.75rem; padding: 1rem; border: 1px solid #f3f4f6; }
.reports-kpi .label { font-size: 0.75rem; color: var(--gray-500); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.reports-kpi .value { font-size: 1.25rem; font-weight: 700; color: var(--gray-900); }
.reports-chart { padding: 1rem; background: #f9fafb; border-radius: 0.75rem; border: 1px solid #f3f4f6; margin-bottom: 1rem; }
.reports-bars { display: flex; align-items: flex-end; gap: 0.5rem; height: 6rem; }
.reports-bars .bar { flex: 1; background: var(--blue-500); border-radius: 4px 4px 0 0; min-height: 4px; }
.reports-summary { background: #eff6ff; border: 1px solid #dbeafe; border-radius: 0.75rem; padding: 1rem; }
.reports-summary .ai-badge { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 600; color: #1e3a8a; margin-bottom: 0.5rem; }
.reports-summary .ai-badge span { width: 20px; height: 20px; border-radius: 50%; background: var(--blue-600); color: var(--white); font-size: 9px; font-weight: 700; display: flex; align-items: center; justify-content: center; }

/* How it works steps */
.how-steps { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .how-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .how-steps { grid-template-columns: repeat(4, 1fr); } }
.how-step { position: relative; }
.how-step .card { position: relative; z-index: 10; height: 100%; }
.how-step .big-num { position: absolute; top: 1rem; right: 1.5rem; font-size: 2.25rem; font-weight: 700; color: rgba(255,255,255,0.05); }

/* Fade-in from left for solution steps */
.fade-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.5s, transform 0.5s; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-in { opacity: 0; transition: opacity 0.8s; }
.fade-in.visible { opacity: 1; }
