:root {
  --bg: #0B0B12;
  --surface: #14141E;
  --surface2: #1E1E2E;
  --accent: #FF5722;
  --accent-dim: rgba(255, 87, 34, 0.15);
  --text: #F5F5F0;
  --text-muted: #8A8A9A;
  --text-dim: #5A5A6A;
  --border: rgba(255, 255, 255, 0.07);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Figtree', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0 64px;
}
.hero-bg-glow {
  position: absolute;
  top: -200px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,87,34,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-left { display: flex; flex-direction: column; gap: 24px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(255,87,34,0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  width: fit-content;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text);
}
.headline-accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 460px;
}

.cta-link {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: -0.01em;
}
.cta-link:hover {
  background: #e64a19;
  transform: translateY(-1px);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.hero-proof strong { color: var(--text); }
.proof-sep {
  width: 1px; height: 14px;
  background: var(--border);
}

/* ── REPORT MOCKUP ── */
.report-mockup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,87,34,0.08);
}
.mockup-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
}
.mockup-dots { display: flex; gap: 6px; }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-red { background: #FF5F57; }
.dot-yellow { background: #FEBC2E; }
.dot-green { background: #28C840; }
.mockup-url { font-size: 12px; color: var(--text-dim); font-family: monospace; flex: 1; }
.mockup-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(255,87,34,0.25);
  padding: 3px 8px;
  border-radius: 4px;
}
.mockup-content { padding: 20px; }
.mockup-with-badge { position: relative; }
.mockup-with-badge .report-date { font-size: 12px; color: var(--text-dim); }
.score-badge {
  display: flex;
  align-items: center;
  gap: 6px;
}
.score-ring-badge { width: 48px; height: 48px; flex-shrink: 0; }
.score-badge-text { display: flex; flex-direction: column; line-height: 1; }
.badge-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.badge-denom { font-size: 11px; color: var(--text-muted); }
.report-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.report-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.report-date { font-size: 12px; color: var(--text-dim); }

.score-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.score-circle {
  position: relative;
  width: 96px;
  height: 96px;
  flex-shrink: 0;
}
.score-ring { width: 96px; height: 96px; }
.score-circle-sm { width: 64px; height: 64px; }
.score-ring-sm { width: 64px; height: 64px; }
.score-value-sm { font-size: 0.85em; }
.score-value {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.score-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.score-denom { font-size: 13px; color: var(--text-muted); }
.score-meta {}
.score-label { font-size: 13px; color: var(--text-muted); margin-bottom: 4px; }
.score-status {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
}

.issue-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.issue-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--surface2);
  border-radius: 8px;
  padding: 10px 12px;
}
.issue-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.issue-icon.ok { background: #28C840; }
.issue-text { display: flex; flex-direction: column; gap: 1px; }
.issue-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.issue-item:nth-child(3) .issue-label { color: #28C840; }
.issue-desc { font-size: 12px; color: var(--text-muted); }

.quick-wins { background: var(--accent-dim); border-radius: 8px; padding: 10px 12px; }
.wins-label { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.wins-items { display: flex; gap: 6px; flex-wrap: wrap; }
.win-chip {
  background: var(--surface);
  border: 1px solid rgba(255,87,34,0.3);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 3px 10px;
}

/* ── SECTIONS ── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 48px;
}

/* ── PROBLEM ── */
.problem { padding: 80px 0; }
.problem-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.problem-stat {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}
.problem-desc { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.problem-quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.problem-quote blockquote {
  font-size: 17px;
  color: var(--text);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 10px;
}
.problem-quote cite { font-size: 13px; color: var(--text-dim); }

/* ── HOW IT WORKS ── */
.works { padding: 80px 0; }
.works-inner { max-width: 900px; margin: 0 auto; padding: 0 40px; }
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 40px;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.5;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.step-content p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.step-connector {
  width: 60px;
  flex-shrink: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
  margin-top: 30px;
  align-self: flex-start;
}
.works-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 14px;
  color: var(--text-muted);
  border-left: 3px solid var(--accent);
}
.works-note p { line-height: 1.7; }

/* ── CATEGORIES ── */
.categories { padding: 80px 0; }
.categories-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.cat-card:hover {
  border-color: rgba(255,87,34,0.3);
  transform: translateY(-2px);
}
.cat-icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.cat-card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.cat-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ── PRICING ── */
.pricing { padding: 80px 0; }
.pricing-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}
.pricing-free { border-color: var(--border); }
.pricing-mid { border-color: rgba(255,87,34,0.35); box-shadow: 0 0 0 1px rgba(255,87,34,0.15), 0 20px 60px rgba(0,0,0,0.3); }
.pricing-premium { border-color: var(--border); }

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.plan-price {
  margin-bottom: 8px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
}
.plan-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}
.plan-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-features li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.plan-features li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(255,87,34,0.3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23FF5722' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan-cta { margin-bottom: 10px; }
.plan-btn {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}
.plan-btn-free {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.plan-btn-free:hover { border-color: rgba(255,255,255,0.2); color: var(--text); }
.plan-btn-mid {
  background: var(--accent);
  color: #fff;
}
.plan-btn-mid:hover { background: #e64a19; }
.plan-btn-premium {
  background: var(--surface2);
  border: 1px solid rgba(255,87,34,0.4);
  color: var(--accent);
}
.plan-btn-premium:hover { border-color: var(--accent); background: var(--accent-dim); }
.plan-note { font-size: 12px; color: var(--text-dim); text-align: center; }

.pricing-disclaimer {
  margin-top: 40px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.pricing-disclaimer p { font-size: 12px; color: var(--text-dim); line-height: 1.6; }

/* ── CLOSING ── */
.closing {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
}
.closing-inner { max-width: 700px; margin: 0 auto; padding: 0 40px; text-align: center; }
.closing-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 24px;
}
.closing-content p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.closing-cta { margin-top: 32px; }
.closing-cta span {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-muted);
}

/* ── FOOTER ── */
.footer { padding: 40px 0; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.footer-brand { margin-bottom: 20px; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  display: block;
  margin-bottom: 8px;
}
.footer-brand p { font-size: 13px; color: var(--text-dim); max-width: 320px; }
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--text); }
.footer-bottom p { font-size: 12px; color: var(--text-dim); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; gap: 24px; }
  .step-connector { display: none; }
}
@media (max-width: 600px) {
  .hero-inner, .problem-inner, .works-inner, .categories-inner, .pricing-inner, .closing-inner, .footer-inner { padding: 0 20px; }
  .cat-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 50px; }
  .problem, .works, .categories, .pricing, .closing { padding: 60px 0; }
}