﻿:root {
  --bg: #FAFAF8;
  --panel: #FFFFFFFFF;
  --border: #E8E0D8;
  --text: #1A1A1A;
  --muted: #6B6459;
  --accent: #E8642A;
  --accent-2: #C44E1A;
  --green: #10b981;
  --radius: 14px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: "Inter", system-ui, sans-serif; background: var(--bg); color: var(--text); line-height: 1.5; }
a { text-decoration: none; }

/* ── NAV ── */
.land-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.land-nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 60px; }
.land-brand { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; color: var(--text); display: flex; align-items: center; gap: 8px; }
.land-logo { color: var(--accent); font-size: 20px; }
.land-nav-links { display: flex; align-items: center; gap: 20px; }
.land-nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); transition: color 0.15s; }
.land-nav-links a:hover { color: var(--text); }
.land-signin { font-weight: 600 !important; color: var(--accent) !important; }
.land-cta-sm { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: white !important; padding: 8px 16px; border-radius: 8px; font-weight: 700 !important; transition: opacity 0.15s !important; }
.land-cta-sm:hover { opacity: 0.9; color: white !important; }
@media (max-width: 600px) { .land-nav-links a:not(.land-cta-sm) { display: none; } }

/* ── HERO ── */
.land-hero { min-height: 100vh; padding: 120px 24px 80px; background: linear-gradient(160deg, #FFF3E8 0%, #f9fafb 40%, #FFF3E8 100%); display: flex; align-items: center; overflow: hidden; }
.land-hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; width: 100%; }
@media (max-width: 860px) { .land-hero-inner { grid-template-columns: 1fr; } .hero-preview { display: none; } }

.hero-badge-wrap { margin-bottom: 20px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,100,42,0.1); border: 1px solid rgba(232,100,42,0.25); color: var(--accent); font-size: 13px; font-weight: 700; padding: 6px 14px; border-radius: 999px; animation: fadeUp 0.6s ease both; }

.land-h1 { font-size: 56px; font-weight: 900; line-height: 1.1; letter-spacing: -0.04em; margin-bottom: 20px; animation: fadeUp 0.6s 0.1s ease both; }
@media (max-width: 600px) { .land-h1 { font-size: 36px; } }

.land-typed-wrap { display: block; min-height: 1.2em; }
.land-typed { background: linear-gradient(135deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.typed-cursor { color: var(--accent); -webkit-text-fill-color: var(--accent); animation: blink 1s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

.land-subtitle { font-size: 18px; color: var(--muted); line-height: 1.65; margin-bottom: 32px; animation: fadeUp 0.6s 0.2s ease both; }
@media (max-width: 600px) { .land-subtitle { font-size: 16px; } }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; animation: fadeUp 0.6s 0.3s ease both; }
.btn-primary { display: inline-flex; align-items: center; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: white; font-weight: 700; font-size: 16px; padding: 14px 28px; border-radius: 12px; box-shadow: 0 4px 20px rgba(232,100,42,0.35); transition: transform 0.08s, opacity 0.15s, box-shadow 0.15s; }
.btn-primary:hover { opacity: 0.93; transform: translateY(-1px); box-shadow: 0 8px 28px rgba(232,100,42,0.4); color: white; }
.btn-ghost { display: inline-flex; align-items: center; font-weight: 600; font-size: 16px; padding: 14px 24px; border-radius: 12px; border: 1.5px solid var(--border); color: var(--text); transition: background 0.15s, border-color 0.15s; }
.btn-ghost:hover { background: var(--panel); border-color: var(--accent); color: var(--accent); }
.hero-note { font-size: 13px; color: var(--muted); animation: fadeUp 0.6s 0.4s ease both; }

/* ── HERO PREVIEW ── */
.hero-preview { animation: fadeUp 0.8s 0.3s ease both; }
.preview-window { background: var(--panel); border: 1px solid var(--border); border-radius: 16px; box-shadow: 0 24px 60px rgba(0,0,0,0.12); overflow: hidden; }
.preview-bar { background: var(--bg); border-bottom: 1px solid var(--border); padding: 10px 14px; display: flex; align-items: center; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28c840; }
.preview-url { margin-left: 10px; font-size: 12px; color: var(--muted); background: rgba(0,0,0,0.05); padding: 3px 12px; border-radius: 4px; }
.preview-body { padding: 28px; display: flex; gap: 24px; align-items: flex-start; }
.preview-score-ring { width: 110px; height: 110px; flex-shrink: 0; position: relative; }
.preview-score-ring svg { width: 100%; height: 100%; }
.preview-score-text { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.preview-score-text span { font-size: 28px; font-weight: 800; color: var(--text); }
.preview-score-text small { font-size: 11px; color: var(--muted); }
.preview-details { flex: 1; }
.preview-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 4px; }
.preview-rank { font-size: 15px; font-weight: 700; color: var(--green); margin-bottom: 12px; }
.preview-kws { display: flex; flex-wrap: wrap; gap: 6px; }
.kw-pill { font-size: 11px; padding: 3px 9px; border-radius: 999px; font-weight: 600; }
.kw-pill.present { background: rgba(16,185,129,0.12); color: var(--green); border: 1px solid rgba(16,185,129,0.3); }
.kw-pill.missing { background: rgba(239,68,68,0.08); color: #ef4444; border: 1px solid rgba(239,68,68,0.2); }

.animated-fade { animation: pulse 3s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.6; } }

/* ── STATS STRIP ── */
.stats-strip { background: var(--text); color: white; padding: 20px 24px; }
.stats-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.stat-item { padding: 8px 32px; text-align: center; font-size: 15px; }
.stat-item strong { display: block; font-size: 24px; font-weight: 800; color: #FBCAA3; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }
@media (max-width: 600px) { .stat-divider { display: none; } .stat-item { padding: 8px 16px; } }

/* ── SECTIONS ── */
.land-section { padding: 100px 24px; }
.land-container { max-width: 1200px; margin: 0 auto; }
.section-tag { display: inline-block; background: rgba(232,100,42,0.1); color: var(--accent); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 5px 14px; border-radius: 999px; margin-bottom: 16px; }
.section-title { font-size: 42px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 12px; line-height: 1.15; }
.section-sub { font-size: 17px; color: var(--muted); max-width: 600px; line-height: 1.6; margin-bottom: 56px; }
@media (max-width: 600px) { .section-title { font-size: 28px; } .land-section { padding: 60px 20px; } }

/* ── STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.step-card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; transition-delay: var(--delay); }
.step-card.visible { opacity: 1; transform: none; }
.step-card:hover { border-color: var(--accent); box-shadow: 0 8px 24px rgba(232,100,42,0.1); transform: translateY(-2px); }
.step-num { font-size: 12px; font-weight: 800; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 12px; }
.step-icon { font-size: 32px; margin-bottom: 12px; }
.step-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step-card > p { font-size: 14px; color: var(--muted); line-height: 1.55; margin-bottom: 16px; }

/* step demos */
.mini-upload { display: flex; align-items: center; gap: 8px; background: rgba(232,100,42,0.06); border: 1px solid rgba(232,100,42,0.2); border-radius: 8px; padding: 10px 12px; font-size: 13px; font-weight: 600; color: var(--accent); }
.mini-check { margin-left: auto; color: var(--green); }
.mini-scores { display: flex; flex-direction: column; gap: 7px; }
.mini-score-bar { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); }
.mini-score-bar .bar { flex: 1; height: 6px; background: var(--border); border-radius: 999px; overflow: hidden; }
.mini-score-bar .fill { height: 100%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); border-radius: 999px; transition: width 1.5s ease; }
.mini-rewrite { font-size: 12px; line-height: 1.5; }
.rewrite-before { padding: 8px 10px; background: rgba(239,68,68,0.06); border-radius: 6px; color: var(--muted); margin-bottom: 6px; }
.rewrite-before span, .rewrite-after span { font-weight: 700; font-size: 10px; text-transform: uppercase; margin-right: 4px; }
.rewrite-before span { color: #ef4444; }
.rewrite-after span { color: var(--green); }
.rewrite-arrow { text-align: center; font-size: 11px; color: var(--accent); font-weight: 700; margin: 4px 0; }
.rewrite-after { padding: 8px 10px; background: rgba(16,185,129,0.08); border-radius: 6px; color: var(--text); }
.mini-tracker { display: flex; gap: 6px; }
.mini-col { flex: 1; text-align: center; padding: 8px 6px; border-radius: 8px; font-size: 11px; font-weight: 700; }
.mini-col span { display: block; font-size: 18px; font-weight: 800; margin-top: 4px; }
.mini-col.applied { background: rgba(232,100,42,0.1); color: var(--accent); }
.mini-col.interview { background: rgba(245,158,11,0.1); color: #f59e0b; }
.mini-col.offer { background: rgba(16,185,129,0.12); color: var(--green); }

/* ── FEATURES GRID ── */
.features-section { background: linear-gradient(160deg, #FFF3E8 0%, #FFF3E8 100%); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.feature-card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.2s, border-color 0.2s; }
.feature-card.visible { opacity: 1; transform: none; }
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(232,100,42,0.12); border-color: var(--accent); }
.feat-icon { font-size: 28px; display: block; margin-bottom: 10px; }
.feature-card h4 { font-size: 14.5px; font-weight: 700; margin-bottom: 6px; }
.feature-card p { font-size: 13px; color: var(--muted); line-height: 1.45; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.testimonial-card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.stars { color: #f59e0b; font-size: 16px; margin-bottom: 12px; }
.testimonial-card p { font-size: 15px; color: var(--text); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.testimonial-author { font-size: 13px; color: var(--muted); }
.testimonial-author strong { color: var(--text); }

/* ── FINAL CTA ── */
.land-cta-section { background: linear-gradient(135deg, #9B2D0A 0%, #E8642A 50%, #C44E1A 100%); padding: 100px 24px; text-align: center; color: white; }
.land-cta-section h2 { font-size: 42px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 12px; }
.land-cta-section p { font-size: 18px; opacity: 0.8; margin-bottom: 32px; }
.btn-lg { font-size: 18px; padding: 18px 36px; border-radius: 14px; box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.cta-note { font-size: 13px; opacity: 0.65; margin-top: 16px; }

/* ── FOOTER ── */
.land-footer { background: var(--text); color: rgba(255,255,255,0.6); padding: 40px 24px; text-align: center; }
.land-footer .land-container { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer-brand { font-size: 18px; font-weight: 800; color: white; display: flex; align-items: center; gap: 8px; }
.land-footer p { font-size: 14px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 14px; transition: color 0.15s; }
.footer-links a:hover { color: white; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ════════════════════════════════════════════════════════════════
   DASHBOARD
   ════════════════════════════════════════════════════════════════ */

/* Responsive dashboard grid: sidebar-style left column + main area */
.dashboard-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 900px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

/* Health ring — mirrors .score-ring from existing UI */
.dash-health-ring {
  position: relative;
  width: 96px;
  height: 96px;
  flex-shrink: 0;
}
.dash-health-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.dash-health-ring__track {
  fill: none;
  stroke: var(--border);
  stroke-width: 8;
}
.dash-health-ring__fill {
  fill: none;
  stroke: url(#ringGrad);
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s ease;
}
.dash-health-ring__label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.dash-health-ring__label strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.dash-health-ring__label span {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Stat card inside dashboard panels */
.dash-stat-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.dash-stat-card:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(232, 100, 42, 0.1);
}
.dash-stat-card__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
}
.dash-stat-card__value {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}
.dash-stat-card__delta {
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
}
.dash-stat-card__delta.down {
  color: #ef4444;
}

/* Quick-action card: icon + title + short description */
.dash-quick-action {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  text-decoration: none;
  color: inherit;
}
.dash-quick-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 100, 42, 0.12);
  border-color: var(--accent);
  color: inherit;
}
.dash-quick-action__icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.dash-quick-action__body {}
.dash-quick-action__title {
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}
.dash-quick-action__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

/* Activity feed item */
.dash-activity-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.dash-activity-item:last-child {
  border-bottom: none;
}
.dash-activity-item__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 5px;
}
.dash-activity-item__dot.green  { background: var(--green); }
.dash-activity-item__dot.yellow { background: #f59e0b; }
.dash-activity-item__dot.red    { background: #ef4444; }
.dash-activity-item__dot.purple { background: var(--accent-2); }
.dash-activity-item__text {
  flex: 1;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.45;
}
.dash-activity-item__time {
  font-size: 11.5px;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Motivational quote block */
.dash-quote {
  background: linear-gradient(135deg, rgba(232,100,42,0.06), rgba(196,78,26,0.06));
  border: 1px solid rgba(232,100,42,0.18);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 14.5px;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
}
.dash-quote cite {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
}


/* ════════════════════════════════════════════════════════════════
   CAREER INTEL
   ════════════════════════════════════════════════════════════════ */

/* 2-column offer comparison grid */
.offer-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 640px) {
  .offer-compare-grid {
    grid-template-columns: 1fr;
  }
}

/* Offer card — winner gets green border + badge */
.offer-compare-grid > .offer-card {
  background: var(--panel);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  transition: box-shadow 0.18s;
}
.offer-compare-grid > .offer-card.winner {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.12);
}
.offer-compare-grid > .offer-card.winner::before {
  content: "Winner";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Horizontal score bar for offer metrics */
.offer-score-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.offer-score-bar__label {
  font-size: 12px;
  color: var(--muted);
  width: 110px;
  flex-shrink: 0;
}
.offer-score-bar__track {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.offer-score-bar__fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.8s ease;
}
.offer-score-bar__fill.good  { background: linear-gradient(90deg, var(--green), #34d399); }
.offer-score-bar__fill.warn  { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.offer-score-bar__fill.bad   { background: linear-gradient(90deg, #ef4444, #f87171); }
.offer-score-bar__pct {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  width: 32px;
  text-align: right;
  flex-shrink: 0;
}

/* Pill tags for culture signals */
.company-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
}
.company-tag.positive {
  background: rgba(16,185,129,0.1);
  color: var(--green);
  border-color: rgba(16,185,129,0.25);
}
.company-tag.neutral {
  background: rgba(107,114,128,0.08);
  color: var(--muted);
  border-color: var(--border);
}
.company-tag.negative {
  background: rgba(239,68,68,0.08);
  color: #ef4444;
  border-color: rgba(239,68,68,0.2);
}

/* Skill row: skill name + status badge + importance indicator */
.skill-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}
.skill-row:last-child {
  border-bottom: none;
}
.skill-row__name {
  flex: 1;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
}
.skill-row__status {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 999px;
}
.skill-row__status.present {
  background: rgba(16,185,129,0.12);
  color: var(--green);
}
.skill-row__status.missing {
  background: rgba(239,68,68,0.08);
  color: #ef4444;
}
.skill-row__status.partial {
  background: rgba(245,158,11,0.1);
  color: #f59e0b;
}
.skill-row__importance {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  width: 56px;
  text-align: right;
  flex-shrink: 0;
}
.skill-row__importance.high   { color: #ef4444; }
.skill-row__importance.medium { color: #f59e0b; }
.skill-row__importance.low    { color: var(--muted); }

/* Readiness ring — same geometry as dash-health-ring, accent colour */
.readiness-ring {
  position: relative;
  width: 84px;
  height: 84px;
  flex-shrink: 0;
}
.readiness-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.readiness-ring__track {
  fill: none;
  stroke: var(--border);
  stroke-width: 7;
}
.readiness-ring__fill {
  fill: none;
  stroke: var(--accent-2);
  stroke-width: 7;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s ease;
}
.readiness-ring__label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.readiness-ring__label strong {
  font-size: 19px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.readiness-ring__label span {
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Pitch card — bordered version card for interview pitch */
.pitch-card {
  background: var(--panel);
  border: 1.5px solid var(--accent);
  border-radius: var(--radius);
  padding: 22px 24px;
  position: relative;
  overflow: hidden;
}
.pitch-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.pitch-card__heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent);
  margin-bottom: 10px;
}
.pitch-card__body {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.7;
}


/* ════════════════════════════════════════════════════════════════
   ANALYTICS
   ════════════════════════════════════════════════════════════════ */

/* Horizontal funnel bar with percentage label */
.funnel-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.funnel-bar__stage {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  width: 100px;
  flex-shrink: 0;
}
.funnel-bar__track {
  flex: 1;
  height: 20px;
  background: var(--border);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.funnel-bar__fill {
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.9s ease;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
}
.funnel-bar__inner-pct {
  font-size: 10px;
  font-weight: 800;
  color: white;
  white-space: nowrap;
}
.funnel-bar__pct {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  width: 36px;
  text-align: right;
  flex-shrink: 0;
}

/* Single analytics stat block */
.analytics-stat {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.analytics-stat:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(232, 100, 42, 0.1);
}
.analytics-stat__value {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}
.analytics-stat__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin-bottom: 8px;
}
.analytics-stat__trend {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}
.analytics-stat__trend.down {
  color: #ef4444;
}

/* CSS-only bar chart using flex columns */
.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 140px;
  padding-bottom: 28px;
  position: relative;
}
/* Baseline rule */
.bar-chart::after {
  content: "";
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}
.bar-chart__bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  height: 100%;
}
.bar-chart__fill {
  width: 100%;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  transition: height 0.7s ease;
  position: relative;
}
.bar-chart__fill:hover {
  filter: brightness(1.1);
}
.bar-chart__fill::after {
  content: attr(data-value);
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
.bar-chart__label {
  font-size: 10px;
  color: var(--muted);
  font-weight: 600;
  position: absolute;
  bottom: 6px;
  white-space: nowrap;
}


/* ════════════════════════════════════════════════════════════════
   SUCCESS WALL
   ════════════════════════════════════════════════════════════════ */

/* Story card: quote + avatar + hiring details */
.story-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
  position: relative;
  overflow: hidden;
}
.story-card::before {
  content: "\201C";
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(232,100,42,0.08);
  line-height: 1;
  pointer-events: none;
}
.story-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(232, 100, 42, 0.12);
  border-color: var(--accent);
}
.story-card__quote {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

/* Avatar circle for story card */
.story-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
}
/* Fallback initials avatar */
.story-avatar--initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

/* Author row inside story card */
.story-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.story-card__author-info {}
.story-card__author-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
}
.story-card__author-role {
  font-size: 12px;
  color: var(--muted);
}

/* "Hired at X · Y weeks" stats row */
.story-stats {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.story-stats__hired {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 5px;
}
.story-stats__hired::before {
  content: "✓";
  width: 16px;
  height: 16px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  font-size: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
}
.story-stats__time {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}
.story-stats__salary {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin-left: auto;
}


/* ════════════════════════════════════════════════════════════════
   GENERAL UTILITY
   ════════════════════════════════════════════════════════════════ */

/* Toast notification — slides up from bottom */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--text);
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  white-space: nowrap;
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
  pointer-events: none;
  max-width: calc(100vw - 48px);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.toast.success { background: #065f46; }
.toast.error   { background: #7f1d1d; }
.toast.warning { background: #78350f; }
.toast.info    { background: #9B2D0A; }
.toast__icon {
  font-size: 16px;
  flex-shrink: 0;
}
.toast__msg {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.toast__close {
  font-size: 16px;
  opacity: 0.6;
  cursor: pointer;
  flex-shrink: 0;
  background: none;
  border: none;
  color: white;
  padding: 0 0 0 6px;
  line-height: 1;
  transition: opacity 0.15s;
}
.toast__close:hover { opacity: 1; }

/* Upgrade banner — sticky top CTA for free-tier users */
.upgrade-banner {
  background: linear-gradient(90deg, #9B2D0A, #E8642A, #C44E1A);
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.upgrade-banner__text {
  opacity: 0.92;
}
.upgrade-banner__text strong {
  font-weight: 800;
}
.upgrade-banner__cta {
  display: inline-flex;
  align-items: center;
  background: white;
  color: var(--accent);
  font-size: 12.5px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 999px;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.1s;
  white-space: nowrap;
}
.upgrade-banner__cta:hover {
  opacity: 0.9;
  transform: scale(1.03);
  color: var(--accent);
}
.upgrade-banner__dismiss {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color 0.15s;
}
.upgrade-banner__dismiss:hover { color: white; }

/* Onboarding overlay — full-screen modal backdrop with card */
.onboarding-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.onboarding-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.onboarding-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
  transform: scale(0.94) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
.onboarding-overlay.active .onboarding-card {
  transform: scale(1) translateY(0);
}
.onboarding-card__step {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 8px;
}
.onboarding-card__title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.onboarding-card__body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
}
.onboarding-card__progress {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
}
.onboarding-card__pip {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: var(--border);
  transition: background 0.3s;
}
.onboarding-card__pip.done   { background: var(--green); }
.onboarding-card__pip.active { background: var(--accent); }
.onboarding-card__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.onboarding-card__skip {
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.onboarding-card__skip:hover {
  color: var(--text);
  background: var(--bg);
}
.onboarding-card__next {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-size: 14.5px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
}
.onboarding-card__next:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}


