@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #FFFFFF;
  color: #111827;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: #22C55E; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ─── Variables ─── */
:root {
  --navy:      #0A1628;
  --green:     #22C55E;
  --green-hover:#16A34A;
  --green-soft:#DCFCE7;
  --bg:        #FFFFFF;
  --text:      #111827;
  --text-muted:#6B7280;
  --border:    #E5E7EB;
  --bg-soft:   #F9FAFB;
  --radius:    10px;
  --radius-btn:6px;
  --max-w:     1100px;
}

/* ─── Container ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ─── Navigation ─── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(34,197,94,0.2);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  height: 60px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 17px; color: #fff; text-decoration: none;
}
.nav-logo img { width: 28px; height: 28px; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: #fff; text-decoration: none; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; border-radius: var(--radius-btn);
  cursor: pointer; transition: all 0.15s; border: none; font-family: inherit;
  text-decoration: none;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-hover); text-decoration: none; color: #fff; }
.btn-outline { background: transparent; color: var(--green); border: 1.5px solid var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; text-decoration: none; }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { border-color: #fff; text-decoration: none; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-md { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 14px 28px; font-size: 15px; }

/* ─── Hero ─── */
.hero {
  background: var(--navy);
  padding: 96px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(34,197,94,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; line-height: 1.1;
  color: #fff; margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero h1 em { color: var(--green); font-style: normal; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.7);
  max-width: 640px; margin: 0 auto 36px;
}
.hero-cta { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.3);
  color: var(--green); font-size: 12px; font-weight: 600;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 24px;
}
.hero-badge .dot { width:6px; height:6px; border-radius:50%; background:var(--green); animation: pulse 2s infinite; }

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

/* ─── Funnel Diagram ─── */
.funnel-section { padding: 80px 0; background: var(--bg-soft); }
.funnel-section h2 { text-align:center; font-size:2rem; font-weight:800; color:var(--navy); margin-bottom:12px; }
.funnel-section .section-sub { text-align:center; color:var(--text-muted); margin-bottom:56px; max-width:560px; margin-left:auto; margin-right:auto; }
.funnel { display:flex; flex-direction:column; align-items:center; gap:0; max-width:640px; margin:0 auto; }
.funnel-stage {
  width:100%; padding: 20px 28px;
  background:#fff; border: 1px solid var(--border);
  border-radius: var(--radius);
  display:flex; align-items:center; gap:20px;
  position:relative; margin-bottom:4px;
  transition: box-shadow 0.2s;
}
.funnel-stage:hover { box-shadow: 0 4px 20px rgba(34,197,94,0.15); }
.funnel-stage:nth-child(1) { width:100%; }
.funnel-stage:nth-child(3) { width:88%; }
.funnel-stage:nth-child(5) { width:76%; }
.funnel-stage:nth-child(7) { width:64%; }
.funnel-stage:nth-child(9) { width:52%; }
.funnel-arrow {
  text-align:center; color:var(--green); font-size:20px; line-height:1;
  padding:2px 0; width:100%;
}
.funnel-icon {
  width:44px; height:44px; border-radius:10px;
  background: var(--green-soft);
  display:flex; align-items:center; justify-content:center;
  font-size:20px; flex-shrink:0;
}
.funnel-stage-content { flex:1; }
.funnel-stage-content h3 { font-size:15px; font-weight:700; color:var(--navy); margin-bottom:2px; }
.funnel-stage-content p { font-size:13px; color:var(--text-muted); }
.funnel-agent-badge {
  display:inline-flex; align-items:center; gap:5px;
  background: var(--green-soft); border: 1px solid var(--green);
  color: var(--green-hover); font-size:11px; font-weight:700;
  padding:3px 10px; border-radius:100px; white-space:nowrap;
}

/* ─── Problem / Solution ─── */
.problem-solution { padding: 80px 0; }
.ps-grid { display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:start; }
.ps-card { background:var(--bg-soft); border:1px solid var(--border); border-radius:var(--radius); padding:32px; }
.ps-card.solution { background: var(--navy); border-color: rgba(34,197,94,0.3); }
.ps-card h3 { font-size:1.1rem; font-weight:700; margin-bottom:16px; }
.ps-card.problem h3 { color:var(--navy); }
.ps-card.solution h3 { color:var(--green); }
.ps-list { list-style:none; display:flex; flex-direction:column; gap:10px; }
.ps-list li { display:flex; align-items:flex-start; gap:10px; font-size:14px; }
.ps-card.problem .ps-list li { color:var(--text-muted); }
.ps-card.solution .ps-list li { color:rgba(255,255,255,0.85); }
.ps-list li::before { content:''; flex-shrink:0; width:6px; height:6px; border-radius:50%; margin-top:8px; }
.ps-card.problem .ps-list li::before { background:#EF4444; }
.ps-card.solution .ps-list li::before { background:var(--green); }

/* ─── Stats strip ─── */
.stats-strip { background: var(--navy); padding: 60px 0; }
.stats-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; text-align:center; }
.stat-num { font-size:2.5rem; font-weight:800; color:var(--green); line-height:1; margin-bottom:6px; }
.stat-label { font-size:14px; color:rgba(255,255,255,0.65); }

/* ─── Features ─── */
.features-section { padding: 80px 0; }
.features-section h2 { text-align:center; font-size:2rem; font-weight:800; color:var(--navy); margin-bottom:12px; }
.features-section .section-sub { text-align:center; color:var(--text-muted); margin-bottom:56px; }
.features-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.feature-card {
  background:var(--bg-soft); border:1px solid var(--border); border-radius:var(--radius);
  padding:28px; transition: box-shadow 0.2s;
}
.feature-card:hover { box-shadow: 0 4px 20px rgba(34,197,94,0.12); border-color:var(--green); }
.feature-icon { font-size:28px; margin-bottom:14px; }
.feature-card h3 { font-size:15px; font-weight:700; color:var(--navy); margin-bottom:8px; }
.feature-card p { font-size:13px; color:var(--text-muted); line-height:1.6; }

/* ─── Section labels ─── */
.section-label {
  display:inline-block; font-size:11px; font-weight:700; letter-spacing:0.08em;
  text-transform:uppercase; color:var(--green); margin-bottom:12px;
}

/* ─── Pricing ─── */
.pricing-section { padding: 80px 0; background:var(--bg-soft); }
.pricing-section h2 { text-align:center; font-size:2rem; font-weight:800; color:var(--navy); margin-bottom:12px; }
.pricing-section .section-sub { text-align:center; color:var(--text-muted); margin-bottom:56px; }
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; align-items:start; }
.pricing-card {
  background:#fff; border:1px solid var(--border);
  border-radius:var(--radius); padding:32px; position:relative;
}
.pricing-card.featured {
  border-color: var(--green); border-width:2px;
  box-shadow: 0 8px 32px rgba(34,197,94,0.15);
}
.pricing-badge {
  position:absolute; top:-12px; left:50%; transform:translateX(-50%);
  background:var(--green); color:#fff; font-size:11px; font-weight:700;
  padding:3px 14px; border-radius:100px; white-space:nowrap;
}
.pricing-name { font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:0.06em; color:var(--text-muted); margin-bottom:8px; }
.pricing-price { font-size:2.5rem; font-weight:800; color:var(--navy); line-height:1; margin-bottom:4px; }
.pricing-price span { font-size:1rem; font-weight:500; color:var(--text-muted); }
.pricing-desc { font-size:13px; color:var(--text-muted); margin-bottom:24px; padding-bottom:24px; border-bottom:1px solid var(--border); }
.pricing-features { list-style:none; display:flex; flex-direction:column; gap:10px; margin-bottom:28px; }
.pricing-features li { display:flex; align-items:flex-start; gap:8px; font-size:14px; color:var(--text); }
.pricing-features li::before { content:'✓'; color:var(--green); font-weight:700; flex-shrink:0; }

/* ─── CTA Banner ─── */
.cta-banner { padding: 80px 0; background: var(--navy); text-align:center; }
.cta-banner h2 { font-size:2rem; font-weight:800; color:#fff; margin-bottom:16px; }
.cta-banner p { color:rgba(255,255,255,0.7); margin-bottom:32px; max-width:520px; margin-left:auto; margin-right:auto; }
.cta-banner .btn-cta-wrap { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ─── Blog ─── */
.blog-section { padding:80px 0; }
.blog-section h2 { text-align:center; font-size:2rem; font-weight:800; color:var(--navy); margin-bottom:12px; }
.blog-section .section-sub { text-align:center; color:var(--text-muted); margin-bottom:56px; }
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.blog-card {
  background:#fff; border:1px solid var(--border); border-radius:var(--radius);
  padding:24px; display:flex; flex-direction:column;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.blog-card:hover { box-shadow: 0 4px 20px rgba(34,197,94,0.1); border-color:var(--green); }
.blog-card-cat { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:0.06em; color:var(--green); margin-bottom:10px; }
.blog-card h3 { font-size:15px; font-weight:700; color:var(--navy); line-height:1.4; margin-bottom:10px; flex:1; }
.blog-card p { font-size:13px; color:var(--text-muted); margin-bottom:16px; }
.blog-card-link { font-size:13px; font-weight:600; color:var(--green); }
.blog-card-link:hover { text-decoration:underline; }

/* ─── Page header ─── */
.page-header {
  background: var(--navy);
  padding: 72px 0 56px;
  text-align:center;
}
.page-header h1 { font-size:2.5rem; font-weight:800; color:#fff; margin-bottom:12px; }
.page-header p { color:rgba(255,255,255,0.7); max-width:560px; margin:0 auto; }

/* ─── Article ─── */
.article-header { background:var(--navy); padding:72px 0 56px; }
.article-header h1 { font-size:clamp(1.6rem,3.5vw,2.4rem); font-weight:800; color:#fff; line-height:1.2; margin-bottom:16px; max-width:760px; }
.article-meta { display:flex; align-items:center; gap:16px; flex-wrap:wrap; }
.article-meta .cat { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:0.06em; color:var(--green); }
.article-meta .date { font-size:13px; color:rgba(255,255,255,0.5); }
.article-meta .read { font-size:13px; color:rgba(255,255,255,0.5); }
.article-body { max-width:720px; margin:0 auto; padding:60px 24px 80px; }
.article-body h2 { font-size:1.4rem; font-weight:700; color:var(--navy); margin:40px 0 14px; }
.article-body h3 { font-size:1.1rem; font-weight:700; color:var(--navy); margin:28px 0 10px; }
.article-body p { font-size:15px; line-height:1.75; color:var(--text); margin-bottom:18px; }
.article-body ul, .article-body ol { margin:0 0 18px 20px; }
.article-body li { font-size:15px; line-height:1.75; color:var(--text); margin-bottom:6px; }
.article-body strong { color:var(--navy); }
.article-body blockquote { border-left:3px solid var(--green); padding:12px 20px; background:var(--bg-soft); margin:24px 0; border-radius:0 var(--radius) var(--radius) 0; }
.article-body blockquote p { margin:0; color:var(--text-muted); font-style:italic; }
.article-cta { background:var(--navy); border-radius:var(--radius); padding:32px; text-align:center; margin-top:48px; }
.article-cta h3 { color:#fff; font-size:1.2rem; font-weight:700; margin-bottom:10px; }
.article-cta p { color:rgba(255,255,255,0.65); margin-bottom:20px; font-size:14px; }

/* ─── Signup form ─── */
.signup-section { padding:80px 0; }
.signup-form-wrap { max-width:560px; margin:0 auto; background:#fff; border:1px solid var(--border); border-radius:var(--radius); padding:40px; }
.form-group { margin-bottom:20px; }
.form-group label { display:block; font-size:13px; font-weight:600; color:var(--navy); margin-bottom:6px; }
.form-group input, .form-group select {
  width:100%; padding:11px 14px; border:1px solid var(--border);
  border-radius:var(--radius-btn); font-size:14px; font-family:inherit;
  color:var(--text); background:#fff; transition:border-color 0.15s;
  -webkit-appearance:none;
}
.form-group input:focus, .form-group select:focus {
  outline:none; border-color:var(--green);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.15);
}
.form-submit-btn {
  width:100%; padding:14px; background:var(--green); color:#fff;
  border:none; border-radius:var(--radius-btn); font-size:15px; font-weight:700;
  font-family:inherit; cursor:pointer; transition:background 0.15s;
}
.form-submit-btn:hover { background:var(--green-hover); }
.form-success { display:none; text-align:center; padding:24px 0; }
.form-success .success-icon { font-size:40px; margin-bottom:12px; }
.form-success h3 { font-size:1.1rem; font-weight:700; color:var(--navy); margin-bottom:8px; }
.form-success p { font-size:14px; color:var(--text-muted); }

/* ─── Cookie consent ─── */
#cookie-banner {
  display:none; position:fixed; bottom:20px; left:20px; right:20px; z-index:9999;
  background: var(--navy); border:1px solid rgba(34,197,94,0.3);
  border-radius:var(--radius); padding:20px 24px;
  display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  max-width:800px; margin-left:auto; margin-right:auto;
}
#cookie-banner p { font-size:13px; color:rgba(255,255,255,0.8); flex:1; min-width:200px; }
#cookie-banner a { color:var(--green); }
.cookie-btns { display:flex; gap:10px; flex-shrink:0; }

/* ─── Footer ─── */
footer {
  background: var(--navy);
  border-top:1px solid rgba(34,197,94,0.15);
  padding: 48px 0 32px;
}
.footer-inner { display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:40px; margin-bottom:40px; }
.footer-brand { }
.footer-logo { display:flex; align-items:center; gap:10px; font-weight:700; color:#fff; margin-bottom:12px; }
.footer-logo img { width:24px; height:24px; }
.footer-tagline { font-size:13px; color:rgba(255,255,255,0.5); line-height:1.6; max-width:220px; }
.footer-col h4 { font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:0.08em; color:rgba(255,255,255,0.4); margin-bottom:14px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:8px; }
.footer-col ul li a { font-size:13px; color:rgba(255,255,255,0.6); }
.footer-col ul li a:hover { color:#fff; text-decoration:none; }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.08); padding-top:24px; display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.footer-bottom p { font-size:12px; color:rgba(255,255,255,0.35); }

/* ─── About / Team / Prose ─── */
.prose-section { padding:64px 0; }
.prose-wrap { max-width:720px; margin:0 auto; }
.prose-wrap h2 { font-size:1.4rem; font-weight:700; color:var(--navy); margin:40px 0 14px; }
.prose-wrap p { font-size:15px; line-height:1.75; color:var(--text); margin-bottom:18px; }
.prose-wrap ul { margin:0 0 18px 20px; }
.prose-wrap li { font-size:15px; line-height:1.75; color:var(--text); margin-bottom:6px; }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .ps-grid { grid-template-columns:1fr; }
  .stats-grid { grid-template-columns:1fr; gap:24px; }
  .features-grid { grid-template-columns:1fr; }
  .pricing-grid { grid-template-columns:1fr; }
  .blog-grid { grid-template-columns:1fr; }
  .footer-inner { grid-template-columns:1fr 1fr; gap:32px; }
  .hero { padding:64px 0 56px; }
  .funnel-stage { width:100% !important; }
  .nav-links a:not(.btn) { display:none; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns:1fr; }
  .hero-cta { flex-direction:column; align-items:stretch; }
}
