/* ── Variables ──────────────────────────────── */
:root {
  --bg:          #0d0f0e;
  --bg-card:     #131816;
  --bg-card-alt: #111412;
  --border:      #1e2622;
  --border-alt:  #2a332c;
  --text:        #e8ede9;
  --text-muted:  #7a8f84;
  --green:       #4ade80;
  --green-dim:   #22c55e;
  --green-bg:    #0f1f15;
  --green-border:#1a3d24;
  --red:         #f87171;
  --red-bg:      #1f0f0f;
}

/* ── Reset & Base ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  line-height: 1.65;
  font-size: 16px;
}

a { color: var(--green); text-decoration: none; transition: color 0.15s; }
a:hover { color: #86efac; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ───────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 15, 14, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
}

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

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.15s;
}

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

.nav-cta {
  background: var(--green-bg);
  color: var(--green) !important;
  border: 1px solid var(--green-border);
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 0.8rem !important;
}

.nav-cta:hover { background: var(--green-border); }

/* ── Buttons ──────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: #0d0f0e;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: 8px;
  letter-spacing: 0.02em;
  transition: background 0.15s, transform 0.1s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #86efac;
  color: #0d0f0e;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 24px;
  border-radius: 8px;
  border: 1px solid var(--border-alt);
  transition: border-color 0.15s, background 0.15s;
}

.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-bg);
}

/* ── Section Utility ─────────────────────── */
.section { padding: 96px 0; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--text);
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 48px;
}

/* ── Hero ─────────────────────────────────── */
.hero {
  padding: 120px 0 96px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid var(--green-border);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text);
}

.hero-sub {
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ── Pain Points ──────────────────────────── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
}

.pain-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 14px;
}

.pain-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.highlight-box {
  background: var(--green-bg);
  border: 1px solid var(--green-border);
  border-radius: 10px;
  padding: 20px 28px;
}

.highlight-box p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
}

.highlight-box strong { color: var(--green); }

/* ── Report Features ─────────────────────── */
.report-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.report-feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.report-feature-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-bg);
  border: 1px solid var(--green-border);
  border-radius: 10px;
}

.report-feature-content h3 {
  font-size: 0.975rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.report-feature-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Example Report ───────────────────────── */
.report-example {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  font-size: 0.875rem;
  max-width: 820px;
}

.report-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  background: #141a16;
  border-bottom: 1px solid var(--border);
}

.report-title { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.report-meta { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

.report-badge {
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid var(--green-border);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.report-section { padding: 22px 28px; border-bottom: 1px solid var(--border); }
.report-section:last-child { border-bottom: none; }

.report-section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

/* Report Table */
.report-table { width: 100%; }

.report-table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 60px;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
  font-size: 0.85rem;
}

.report-table-row:last-child { border-bottom: none; }

.report-table-row.header {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-alt);
}

.report-table-row.positive span { color: var(--text); }
.report-table-row.negative span { color: var(--text-muted); }

.trend.up   { color: var(--green) !important; font-size: 0.9rem; }
.trend.down { color: var(--red)   !important; font-size: 0.9rem; }

/* Opportunity Cards */
.opportunity-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.opportunity-card {
  background: #111412;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
}

.opp-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-muted); margin-bottom: 6px; }
.opp-value { font-size: 1.5rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.opp-detail { font-size: 0.78rem; color: var(--text-muted); }

/* Customer Insights */
.insight-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  line-height: 1.5;
}

.insight-row:last-child { margin-bottom: 0; }

.insight-tag {
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 2px;
}

.insight-tag.new  { background: var(--green-bg); color: var(--green); border: 1px solid var(--green-border); }
.insight-tag.risk { background: var(--red-bg);   color: var(--red);   border: 1px solid #3d1515; }

/* Action Points */
.action-points { display: flex; flex-direction: column; gap: 14px; }

.action-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #111412;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
}

.action-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #0d0f0e;
  font-weight: 800;
  font-size: 0.8rem;
  border-radius: 50%;
}

.action-title { font-weight: 700; font-size: 0.9rem; color: var(--text); margin-bottom: 5px; }
.action-detail { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }

.example-note {
  margin-top: 24px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ── Process ──────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}

.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
}

.process-step-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

.process-step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.process-step p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ── Pricing ──────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--green);
  background: linear-gradient(160deg, #0f1f15 0%, #111a14 100%);
  position: relative;
}

.plan-label {
  display: inline-block;
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid var(--green-border);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.plan-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.plan-price-block { margin-bottom: 16px; }

.plan-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
}

.plan-price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.plan-monthly {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green);
  margin-top: 2px;
}

.plan-monthly span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

.plan-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 24px;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.plan-features li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
}

.plan-features li strong { color: var(--text); }

.plan-cta {
  display: block;
  text-align: center;
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid var(--green-border);
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.875rem;
  transition: background 0.15s, border-color 0.15s;
}

.plan-cta:hover {
  background: var(--green-border);
  color: var(--green);
}

.pricing-card.featured .plan-cta {
  background: var(--green);
  color: #0d0f0e;
  border-color: var(--green);
}

.pricing-card.featured .plan-cta:hover {
  background: #86efac;
  border-color: #86efac;
}

.pricing-note {
  margin-top: 32px;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ── Demo Section ─────────────────────────── */
.demo-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.demo-section .section-sub { max-width: 520px; margin-left: auto; margin-right: auto; }

.demo-placeholder {
  max-width: 600px;
  margin: 40px auto 0;
  background: #0f1512;
  border: 1px dashed var(--border-alt);
  border-radius: 16px;
  padding: 56px 40px;
  text-align: center;
}

.demo-icon { font-size: 3rem; margin-bottom: 16px; }

.demo-placeholder p {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.demo-sub { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ── CTA Section ──────────────────────────── */
.cta-section {
  padding: 96px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--text);
}

.cta-section p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-sub {
  margin-top: 20px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ── Footer ──────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { padding: 80px 0 64px; }

  .process-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .opportunity-cards { grid-template-columns: 1fr; }
  .report-table-row { grid-template-columns: 2fr 1fr 1fr 40px; font-size: 0.8rem; }

  nav a:not(.nav-cta) { display: none; }

  footer .container { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; gap: 12px; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
}