/* =============================================
   TalentRadar — Landing Page Theme
   ============================================= */

:root {
  --bg: #0D1117;
  --bg-card: #161B22;
  --bg-card-hover: #1C2128;
  --fg: #E6EDF3;
  --fg-muted: #8B949E;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --accent-border: rgba(245, 166, 35, 0.25);
  --blue: #58A6FF;
  --blue-dim: rgba(88, 166, 255, 0.1);
  --radius: 8px;
}

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

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

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 166, 35, 0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

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

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 140px 48px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  width: fit-content;
}

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

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

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}

.headline-accent {
  color: var(--accent);
  display: block;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 48px;
}

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

.stat { display: flex; flex-direction: column; gap: 2px; }

.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
}

.stat-label { font-size: 12px; color: var(--fg-muted); }

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(245, 166, 35, 0.2);
}

/* ---- RADAR ---- */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
}

.radar-container {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245, 166, 35, 0.15);
}

.radar-ring-1 { width: 100%; height: 100%; }
.radar-ring-2 { width: 70%; height: 70%; }
.radar-ring-3 { width: 40%; height: 40%; }

.radar-center {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-blip {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.blip-1 { top: 15%; left: 50%; transform: translateX(-50%); }
.blip-2 { top: 50%; right: 10%; transform: translateY(-50%); }
.blip-3 { bottom: 15%; left: 25%; }
.blip-4 { bottom: 30%; right: 20%; width: 7px; height: 7px; }

.radar-sweep {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(245, 166, 35, 0.08) 30deg,
    transparent 60deg
  );
  animation: sweep 4s linear infinite;
}

@keyframes sweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ---- CANDIDATE CARDS ---- */
.candidate-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 420px;
}

.candidate-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid rgba(245, 166, 35, 0.15);
  border-radius: var(--radius);
  padding: 14px 18px;
  transition: background 0.2s, border-color 0.2s;
}

.candidate-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(245, 166, 35, 0.35);
}

.card-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.card-info { flex: 1; }
.card-name { font-size: 14px; font-weight: 600; color: var(--fg); }
.card-role { font-size: 12px; color: var(--fg-muted); margin-top: 1px; }
.card-score {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 4px;
}

/* ---- MANIFESTO ---- */
.manifesto {
  padding: 80px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.manifesto-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.manifesto-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 800px;
  margin-bottom: 32px;
}

.manifesto-headline em {
  font-style: normal;
  color: var(--accent);
}

.manifesto-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
}

.manifesto-body p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.manifesto-rule {
  margin-top: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-border), transparent);
}

/* ---- SHARED SECTION STYLES ---- */
.section-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 48px;
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
  padding: 80px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr 280px;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid rgba(245, 166, 35, 0.1);
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.5;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

.step-connector {
  display: none;
}

/* Step visuals */
.step-visual-1 .input-mock,
.step-visual-2 .source-pills,
.step-visual-3 .rank-list {
  background: var(--bg-card);
  border: 1px solid rgba(245, 166, 35, 0.15);
  border-radius: var(--radius);
  padding: 20px;
}

.input-line {
  height: 10px;
  border-radius: 4px;
  background: rgba(245, 166, 35, 0.15);
  margin-bottom: 10px;
}
.input-line-title { height: 14px; width: 70%; }
.input-line-sm { width: 85%; }
.input-line-md { width: 55%; margin-bottom: 0; }

.source-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.source-pill {
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
}

.rank-list { display: flex; flex-direction: column; gap: 10px; }

.rank-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rank-num {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--fg-muted);
  width: 16px;
  flex-shrink: 0;
}

.rank-bar {
  height: 8px;
  background: linear-gradient(90deg, var(--accent), rgba(245, 166, 35, 0.3));
  border-radius: 4px;
  flex: 1;
}

.rank-pct {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  width: 36px;
  text-align: right;
  flex-shrink: 0;
}

/* ---- CHANNELS ---- */
.channels {
  padding: 80px 48px;
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid rgba(245, 166, 35, 0.08);
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.channel-card {
  background: var(--bg-card);
  border: 1px solid rgba(245, 166, 35, 0.1);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s, background 0.2s;
}

.channel-card:hover {
  border-color: rgba(245, 166, 35, 0.3);
  background: var(--bg-card-hover);
}

.channel-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.channel-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}

.channel-card p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ---- WHY ---- */
.why {
  padding: 80px 48px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  border-top: 1px solid rgba(245, 166, 35, 0.08);
}

/* Comparison table */
.comparison-table {
  background: var(--bg-card);
  border: 1px solid rgba(245, 166, 35, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 32px;
}

.comp-header,
.comp-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.comp-header {
  background: rgba(245, 166, 35, 0.05);
  border-bottom: 1px solid rgba(245, 166, 35, 0.1);
}

.comp-header .comp-col {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  text-align: center;
  padding: 12px 16px;
}

.comp-col-active {
  color: var(--accent) !important;
  background: var(--accent-dim);
}

.comp-col-label {
  font-size: 13px;
  color: var(--fg-muted);
  padding: 14px 16px;
}

.comp-row {
  border-bottom: 1px solid rgba(245, 166, 35, 0.05);
}

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

.comp-row .comp-col {
  font-size: 13px;
  color: var(--fg);
  text-align: center;
  padding: 12px 16px;
}

.comp-row .comp-col-label {
  color: var(--fg-muted);
}

/* Why right side */
.why-quote {
  font-size: 18px;
  color: var(--fg);
  line-height: 1.6;
  font-style: italic;
  padding: 24px;
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 32px;
}

.why-stats {
  display: flex;
  gap: 32px;
}

.why-stat { display: flex; flex-direction: column; gap: 4px; }

.why-stat-val {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
}

.why-stat-lbl { font-size: 12px; color: var(--fg-muted); }

/* ---- CLOSING ---- */
.closing {
  padding: 100px 48px;
  text-align: center;
  border-top: 1px solid rgba(245, 166, 35, 0.08);
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.closing-radar {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.cr-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245, 166, 35, 0.2);
}

.cr-ring-1 { width: 100%; height: 100%; }
.cr-ring-2 { width: 65%; height: 65%; }
.cr-ring-3 { width: 30%; height: 30%; }

.cr-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--fg);
}

.closing-sub {
  font-size: 15px;
  color: var(--fg-muted);
  font-style: italic;
}

/* ---- FOOTER ---- */
footer {
  padding: 32px 48px;
  border-top: 1px solid rgba(245, 166, 35, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--fg-muted);
}

.footer-note {
  font-size: 13px;
  color: var(--fg-muted);
}

/* ---- HERO IMAGE + OVERLAY ---- */
.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(245, 166, 35, 0.2);
}

.hero-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(13, 17, 23, 0.85);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  backdrop-filter: blur(8px);
}

.ai-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  animation: pulse 2s infinite;
}

/* ---- HERO ACTIONS ---- */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #0D1117;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: #e8941a;
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--fg-muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.btn-ghost:hover { color: var(--fg); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--fg);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(245, 166, 35, 0.3);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.btn-large {
  padding: 16px 32px;
  font-size: 15px;
}

/* ---- NAV ACTIONS ---- */
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #0D1117;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-cta:hover { background: #e8941a; }

/* ---- ASSESSMENT LAYER (How It Works step 2) ---- */
.step-header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.assessment-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(88, 166, 255, 0.1);
  border: 1px solid rgba(88, 166, 255, 0.25);
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.assessment-outcomes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.outcome {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-muted);
}

.outcome-icon { flex-shrink: 0; }

.assess-bar {
  height: 6px;
  background: rgba(245, 166, 35, 0.15);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 10px;
}

.assess-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), rgba(245, 166, 35, 0.5));
  border-radius: 3px;
  transition: width 0.5s ease;
}

.assessment-box {
  background: var(--bg-card);
  border: 1px solid rgba(245, 166, 35, 0.15);
  border-radius: var(--radius);
  padding: 18px;
}

.assess-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 6px;
}

.assess-score {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.assess-note {
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.assess-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--fg-muted);
  margin-top: 4px;
}

.step-assessment {
  background: rgba(88, 166, 255, 0.03);
  border: 1px solid rgba(88, 166, 255, 0.1);
  border-radius: 10px;
  padding: 32px;
  margin: 8px 0;
}

.step-last { border-bottom: 1px solid rgba(245, 166, 35, 0.08); }

/* ---- REVENUE SECTION ---- */
.revenue-section {
  padding: 80px 48px;
  border-top: 1px solid rgba(245, 166, 35, 0.08);
  background: linear-gradient(180deg, transparent 0%, rgba(245, 166, 35, 0.03) 100%);
}

.revenue-inner {
  max-width: 1400px;
  margin: 0 auto;
}

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

.revenue-card {
  background: var(--bg-card);
  border: 1px solid rgba(245, 166, 35, 0.1);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
}

.revenue-card:hover {
  border-color: rgba(245, 166, 35, 0.3);
  transform: translateY(-2px);
}

.revenue-card-featured {
  border-color: rgba(245, 166, 35, 0.35);
  background: var(--bg-card-hover);
}

.rev-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0D1117;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.rev-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.rev-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}

.rev-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  flex: 1;
}

.rev-tag {
  display: inline-flex;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  width: fit-content;
}

.rev-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(245, 166, 35, 0.25);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  margin-top: 4px;
}

.rev-cta:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
}

/* ---- HONEST SECTION ---- */
.honest-section {
  padding: 80px 48px;
  border-top: 1px solid rgba(245, 166, 35, 0.08);
}

.honest-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.honest-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.honest-callout {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(245, 166, 35, 0.05);
  border: 1px solid rgba(245, 166, 35, 0.15);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 32px;
}

.hc-icon { flex-shrink: 0; margin-top: 2px; }

.honest-callout p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  font-style: italic;
}

.trust-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid rgba(245, 166, 35, 0.1);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s;
}

.trust-card:hover { border-color: rgba(245, 166, 35, 0.25); }

.tc-icon { margin-bottom: 10px; }

.trust-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
}

.trust-card p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ---- SOCIAL PROOF ---- */
.social-proof {
  padding: 80px 48px;
  border-top: 1px solid rgba(245, 166, 35, 0.08);
}

.sp-inner {
  max-width: 1400px;
  margin: 0 auto;
}

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

.sp-card {
  background: var(--bg-card);
  border: 1px solid rgba(245, 166, 35, 0.1);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s;
}

.sp-card:hover { border-color: rgba(245, 166, 35, 0.25); }

.sp-stars {
  display: flex;
  gap: 3px;
}

.sp-quote {
  font-size: 14px;
  color: var(--fg);
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}

.sp-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sp-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.sp-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}

.sp-role {
  font-size: 11px;
  color: var(--fg-muted);
  margin-top: 2px;
}

.sp-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(245, 166, 35, 0.08);
  flex-wrap: wrap;
}

.sp-logo-label {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 500;
}

.sp-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sp-logo-item {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
}

.sp-logo-sep {
  color: rgba(245, 166, 35, 0.3);
  font-size: 12px;
}

/* ---- CLOSING ACTIONS ---- */
.closing-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.closing-cta-note {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 16px;
}

/* ---- FOOTER LINKS ---- */
.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--fg); }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-actions { display: flex; }
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 24px 60px;
    gap: 48px;
  }
  .hero-right { order: -1; }
  .manifesto, .how-it-works, .channels, .why, .revenue-section, .honest-section, .social-proof {
    padding: 48px 24px;
  }
  .step {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .step-num { font-size: 24px; }
  .step-visual { display: none; }
  .step-assessment { padding: 20px; }
  .channel-grid { grid-template-columns: 1fr; }
  .why, .honest-inner { grid-template-columns: 1fr; gap: 48px; }
  .revenue-grid { grid-template-columns: 1fr; }
  .sp-grid { grid-template-columns: 1fr; }
  .trust-cards { grid-template-columns: 1fr; }
  .closing { padding: 64px 24px; }
  .closing-actions { flex-direction: column; gap: 12px; }
  footer {
    padding: 24px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    align-items: center;
  }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}
