/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ffffff;
  --bg-2: #F7F8FA;
  --hero-bg: #0A1628;
  --hero-text: #ffffff;
  --fg: #0A1628;
  --fg-2: #4A5568;
  --accent: #B8FF5A;
  --accent-dark: #8BD63A;
  --surface: #F0F2F5;
  --border: #E2E8F0;
  --card-bg: #ffffff;
  --dash-bg: #1B2B4B;
  --dash-surface: #243654;
  --dash-text: #E8F0FF;
  --dash-label: #8BA3C7;
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Figtree', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--fg);
  text-decoration: none;
}

.logo span { color: var(--accent-dark); }

.footer-logo { color: white; }
.footer-logo span { color: var(--accent); }

nav { display: flex; gap: 32px; }

nav a {
  text-decoration: none;
  color: var(--fg-2);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
}

nav a:hover { color: var(--fg); }

/* === HERO === */
.hero {
  background: var(--hero-bg);
  position: relative;
  overflow: hidden;
  padding: 80px 24px 100px;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { color: white; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 255, 90, 0.12);
  border: 1px solid rgba(184, 255, 90, 0.3);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-content h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: white;
}

.highlight { color: var(--accent); }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  line-height: 1.65;
  max-width: 440px;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* === DASHBOARD CARD === */
.dash-card {
  background: var(--dash-bg);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(184,255,90,0.08);
  position: relative;
}

.dash-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -20px;
  width: 120px;
  height: 80px;
  background: var(--accent);
  opacity: 0.06;
  border-radius: 50%;
  filter: blur(30px);
}

.dash-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.dash-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dash-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.5s infinite;
}

.dash-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.dash-metric {
  background: var(--dash-surface);
  border-radius: 10px;
  padding: 12px;
}

.dm-label {
  display: block;
  font-size: 0.7rem;
  color: var(--dash-label);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dm-val {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: white;
}

.dm-delta {
  display: block;
  font-size: 0.68rem;
  color: var(--dash-label);
  margin-top: 2px;
}

.dm-delta.up { color: #68D391; }

.dash-spark {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 48px;
  margin-bottom: 12px;
}

.spark-bar {
  flex: 1;
  background: linear-gradient(to top, #B8FF5A, rgba(184,255,90,0.3));
  border-radius: 3px 3px 0 0;
  min-height: 8px;
}

.dash-card-footer {
  background: var(--dash-surface);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.78rem;
  color: var(--dash-label);
}

.dash-msg strong { color: var(--accent); }

/* === PROOF === */
.proof {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
}

.proof-inner { max-width: 1200px; margin: 0 auto; }

.proof-label {
  text-align: center;
  font-size: 0.8rem;
  color: var(--fg-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 20px;
}

.proof-types {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.proof-tag {
  background: white;
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--fg);
}

/* === SECTION HEADER === */
.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-head h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 12px;
}

.section-head p {
  font-size: 1.05rem;
  color: var(--fg-2);
  max-width: 500px;
  margin: 0 auto;
}

/* === FEATURES === */
.features { padding: 96px 24px; background: var(--bg); }
.features-inner { max-width: 1100px; margin: 0 auto; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10,22,40,0.1);
}

.fc-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.fc-1 .fc-icon { background: #E8F5E9; color: #2E7D32; }
.fc-2 .fc-icon { background: #E3F2FD; color: #1565C0; }
.fc-3 .fc-icon { background: #FFF3E0; color: #E65100; }
.fc-4 .fc-icon { background: #F3E5F5; color: #7B1FA2; }
.fc-5 .fc-icon { background: #E0F7FA; color: #00838F; }
.fc-6 .fc-icon { background: #FBE9E7; color: #BF360C; }

.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--fg-2);
  line-height: 1.55;
}

/* === PROBLEMS === */
.problems {
  padding: 96px 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problems-inner { max-width: 1100px; margin: 0 auto; }

.problems h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
  color: var(--fg);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.problem-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.p-emoji { font-size: 1.8rem; display: block; margin-bottom: 12px; }

.problem-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.problem-card p {
  font-size: 0.85rem;
  color: var(--fg-2);
  line-height: 1.55;
}

.problems-resolve {
  text-align: center;
}

.problems-resolve p {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-dark);
}

/* === PROCESS === */
.process { padding: 96px 24px; background: var(--bg); }
.process-inner { max-width: 1000px; margin: 0 auto; }

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-dark);
  line-height: 1;
  flex-shrink: 0;
}

.step-body h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.step-body p {
  font-size: 0.88rem;
  color: var(--fg-2);
  line-height: 1.55;
}

.step-arrow { color: var(--fg-2); flex-shrink: 0; opacity: 0.4; }

/* === PRICING === */
.pricing { padding: 96px 24px; background: var(--bg-2); border-top: 1px solid var(--border); }
.pricing-inner { max-width: 1100px; margin: 0 auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: transform 0.2s;
}

.pricing-card:hover { transform: translateY(-4px); }

.pc-featured {
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 1px var(--accent-dark), 0 16px 48px rgba(184,255,90,0.12);
}

.pc-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-dark);
  color: #0A1628;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pc-header { margin-bottom: 24px; }

.pc-tier {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-2);
  display: block;
  margin-bottom: 8px;
}

.pc-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.price-amt {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--fg);
}

.price-per {
  font-size: 1rem;
  color: var(--fg-2);
}

.pc-desc {
  font-size: 0.88rem;
  color: var(--fg-2);
  line-height: 1.5;
}

.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pc-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--fg);
}

.pc-features li svg {
  color: var(--accent-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

.pc-cta {
  width: 100%;
  margin-top: 24px;
  padding: 12px;
  background: var(--fg);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: 'Figtree', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}

.pc-cta:hover { background: #1a2d4a; }
.pc-cta:disabled { opacity: 0.5; cursor: not-allowed; }

.pc-featured .pc-cta { background: var(--accent-dark); color: #0A1628; }
.pc-featured .pc-cta:hover { background: var(--accent); }

/* === CLOSING === */
.closing {
  padding: 96px 24px;
  background: var(--hero-bg);
  position: relative;
  overflow: hidden;
}

.closing-deco {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.cd-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(184,255,90,0.08);
}

.cd-ring-1 { width: 400px; height: 400px; top: -200px; right: 0; }
.cd-ring-2 { width: 600px; height: 600px; top: -300px; right: -100px; }
.cd-ring-3 { width: 800px; height: 800px; top: -400px; right: -200px; }

.closing-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.closing-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: white;
  margin-bottom: 24px;
  line-height: 1.2;
}

.closing-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 620px;
}

.closing-cta {
  margin-top: 20px;
  font-weight: 500;
  color: rgba(255,255,255,0.8) !important;
}

/* === FOOTER === */
.site-footer {
  background: #060E1C;
  padding: 64px 24px 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.fl-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fl-head {
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.fl-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.fl-col a:hover { color: white; }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 32px; }
  .step-arrow { transform: rotate(90deg); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  nav { gap: 20px; }
}

@media (max-width: 600px) {
  .hero { padding: 56px 20px 72px; }
  .hero-stats-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-stat-divider { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .problems-grid { grid-template-columns: 1fr; }
  nav { display: none; }
  .section-head h2 { font-size: 1.6rem; }
  .pricing-card { padding: 20px; }
}