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

:root {
  --green-50: #e1f5ee;
  --green-100: #9fe1cb;
  --green-300: #1d9e75;
  --green-500: #0f6e56;
  --green-700: #085041;

  --blue-50: #e6f1fb;
  --blue-300: #378add;
  --blue-500: #185fa5;

  --amber-50: #faeeda;
  --amber-300: #ef9f27;
  --amber-500: #854f0b;

  --coral-50: #faece7;
  --coral-300: #d85a30;
  --coral-500: #993c1d;

  --purple-50: #eeedfe;
  --purple-300: #7f77dd;
  --purple-500: #534ab7;

  --teal-50: #e1f5ee;
  --teal-500: #085041;

  --red-50: #fcebeb;
  --red-300: #e24b4a;
  --red-500: #a32d2d;

  --gray-50: #f7f6f2;
  --gray-100: #eeece5;
  --gray-200: #d3d1c7;
  --gray-400: #888780;
  --gray-600: #5f5e5a;
  --gray-800: #2c2c2a;
  --gray-900: #1a1a18;

  --bg: #fafaf7;
  --surface: #ffffff;
  --border: rgba(0, 0, 0, 0.08);
  --border-md: rgba(0, 0, 0, 0.13);

  --text-primary: #1a1a18;
  --text-secondary: #5f5e5a;
  --text-tertiary: #888780;

  --accent: #1d9e75;
  --accent-dk: #0f6e56;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 100px;

  --font-display: "DM Serif Display", Georgia, serif;
  --font-body: "Outfit", sans-serif;
  --font-mono: "DM Mono", "Courier New", monospace;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
}

html {
  scroll-behavior: smooth;
}

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

/* ─── Typography ───────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.display {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.display em {
  font-style: italic;
  color: var(--accent);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 38px);
  letter-spacing: -0.02em;
}

.mono {
  font-family: var(--font-mono);
}

/* ─── Layout Helpers ───────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 80px 0;
}

/* ─── Nav ──────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 40px;
  max-width: 1120px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: -0.3px;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  transition:
    color 0.15s,
    background 0.15s;
}

.nav-links a:hover {
  color: var(--text-primary);
  background: var(--gray-100);
}

.nav-cta {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  background: var(--text-primary);
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.15s,
    transform 0.1s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-cta:hover {
  background: var(--gray-800);
  transform: translateY(-1px);
}

/* ─── Hero ─────────────────────────────────────────────── */
.hero {
  padding: 88px 0 64px;
  overflow: hidden;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-mono);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: var(--green-50);
  color: var(--green-500);
  border: 1px solid rgba(29, 158, 117, 0.2);
  margin-bottom: 24px;
  animation: fadeUp 0.5s ease both;
}

.hero-badge svg {
  width: 12px;
  height: 12px;
}

.hero h1 {
  animation: fadeUp 0.5s 0.08s ease both;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 36px;
  animation: fadeUp 0.5s 0.16s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.5s 0.24s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.15s,
    transform 0.1s,
    box-shadow 0.15s;
  box-shadow: 0 2px 12px rgba(29, 158, 117, 0.3);
}

.btn-primary:hover {
  background: var(--accent-dk);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(29, 158, 117, 0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-md);
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
}

.btn-ghost:hover {
  background: var(--gray-100);
  color: var(--text-primary);
}

.hero-note {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  animation: fadeUp 0.5s 0.3s ease both;
}

.hero-note .dot-green {
  color: var(--accent);
}

/* ─── Hero App Preview ─────────────────────────────────── */
.hero-preview {
  animation: fadeUp 0.6s 0.2s ease both;
}

.preview-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.preview-topbar {
  padding: 12px 16px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.preview-dots {
  display: flex;
  gap: 5px;
}

.preview-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
}

.preview-dots span:nth-child(1) {
  background: #fc625d;
}
.preview-dots span:nth-child(2) {
  background: #fdbc40;
}
.preview-dots span:nth-child(3) {
  background: #35cd4b;
}

.preview-url {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 12px;
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--text-tertiary);
  text-align: center;
}

.preview-body {
  padding: 16px;
}

.preview-score-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.pscore {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px;
  text-align: center;
}

.pscore-val {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 4px;
}

.pscore-label {
  font-size: 10px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.pscore.good .pscore-val {
  color: var(--green-300);
}
.pscore.warn .pscore-val {
  color: var(--amber-300);
}
.pscore.info .pscore-val {
  color: var(--blue-300);
}

.preview-apps {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.papp {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.papp-logo {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  font-family: var(--font-mono);
  flex-shrink: 0;
}

.papp-info {
  flex: 1;
  min-width: 0;
}

.papp-role {
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.papp-co {
  font-size: 11px;
  color: var(--text-tertiary);
}

.papp-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.bar-track {
  width: 56px;
  height: 3px;
  border-radius: 10px;
  background: var(--gray-200);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 10px;
}

.papp-pct {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--text-tertiary);
  width: 26px;
  text-align: right;
}

/* ─── Manifesto Strip ──────────────────────────────────── */
.manifesto-strip {
  padding: 80px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  max-width: 820px;
}

.manifesto-text br + br {
  display: block;
  content: "";
  margin-top: 0.5em;
}

/* ─── Stats Strip ──────────────────────────────────────── */
.stats-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 48px 0;
}

.stats-inner--why {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}

.why-reasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.5;
}

.why-item i {
  font-size: 16px;
  color: var(--text-tertiary);
  flex-shrink: 0;
  margin-top: 1px;
}

.why-stat {
  text-align: center;
  padding-left: 48px;
  border-left: 1px solid var(--border);
  min-width: 200px;
}

.why-stat-context {
  font-size: 10px;
  font-family: var(--font-mono);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-tertiary);
  margin-bottom: 6px;
}

.why-stat-val {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.why-stat-val span {
  color: var(--accent);
}

.why-stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.5;
  max-width: 160px;
  margin: 0 auto 10px;
}

.why-stat-source {
  font-size: 11px;
  font-style: italic;
  font-family: var(--font-mono);
  color: var(--text-tertiary);
}

.why-stat-source a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(29, 158, 117, 0.3);
  padding-bottom: 1px;
  transition:
    color 0.15s,
    border-color 0.15s;
}

.why-stat-source a:hover {
  color: var(--accent-dk);
  border-color: var(--accent-dk);
}

.why-row-source {
  text-align: center;
  font-size: 11px;
  font-style: italic;
  font-family: var(--font-mono);
  color: var(--text-tertiary);
  padding: 16px 40px 0;
  max-width: 1120px;
  margin: 0 auto;
}

.why-row-source a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(29, 158, 117, 0.3);
  padding-bottom: 1px;
  transition:
    color 0.15s,
    border-color 0.15s;
}

.why-row-source a:hover {
  color: var(--accent-dk);
  border-color: var(--accent-dk);
}

.why-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  margin-top: 40px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}

.why-stat-card {
  padding: 28px 24px 24px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.why-stat-card:last-child {
  border-right: none;
}

.why-stat-card-val {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.why-stat-card-val span {
  color: var(--accent);
}

.why-stat-card-desc {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.55;
}

/* ─── Features Section ─────────────────────────────────── */
.features-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.overline {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  margin-bottom: 12px;
}

.features-header p {
  font-size: 17px;
  color: var(--text-secondary);
  font-weight: 300;
  margin-top: 14px;
  line-height: 1.65;
}

.features-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto auto;
  gap: 16px;
}

.feat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
  overflow: hidden;
}

.feat:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feat-wide {
  grid-column: span 8;
}
.feat-narrow {
  grid-column: span 4;
}
.feat-half {
  grid-column: span 6;
}
.feat-third {
  grid-column: span 4;
}

.feat-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.ic-green {
  background: var(--green-50);
  color: var(--green-500);
}
.ic-blue {
  background: var(--blue-50);
  color: var(--blue-500);
}
.ic-amber {
  background: var(--amber-50);
  color: var(--amber-500);
}
.ic-coral {
  background: var(--coral-50);
  color: var(--coral-500);
}
.ic-purple {
  background: var(--purple-50);
  color: var(--purple-500);
}
.ic-gray {
  background: var(--gray-100);
  color: var(--gray-600);
}

.feat h3 {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.feat p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
}

/* Wide feature with demo content */
.feat-demo {
  margin-top: 20px;
}

.keyword-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.chip {
  font-size: 12px;
  font-family: var(--font-mono);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-weight: 400;
}

.chip-found {
  background: var(--green-50);
  color: var(--green-500);
  border: 1px solid rgba(29, 158, 117, 0.2);
}
.chip-missing {
  background: var(--red-50);
  color: var(--red-500);
  border: 1px solid rgba(226, 75, 74, 0.2);
}
.chip-partial {
  background: var(--amber-50);
  color: var(--amber-500);
  border: 1px solid rgba(239, 159, 39, 0.2);
}

.mini-score-bar {
  margin-top: 14px;
}

.msb-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.msb-label {
  font-size: 12px;
  color: var(--text-secondary);
  width: 120px;
  flex-shrink: 0;
}

.msb-track {
  flex: 1;
  height: 5px;
  border-radius: 10px;
  background: var(--gray-100);
  overflow: hidden;
}

.msb-fill {
  height: 100%;
  border-radius: 10px;
}

.msb-val {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--text-tertiary);
  width: 30px;
  text-align: right;
}

.feedback-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feedback-item {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.45;
  padding: 10px 12px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.feedback-item .fi-icon {
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.fi-warn {
  color: var(--amber-300);
}
.fi-tip {
  color: var(--blue-300);
}
.fi-ok {
  color: var(--green-300);
}

/* ─── How It Works ─────────────────────────────────────── */
.how-bg {
  background: var(--gray-900);
  color: #fff;
}

.how-bg .overline {
  color: rgba(255, 255, 255, 0.35);
}
.how-bg .section-heading {
  color: #fff;
}

/* ── Flow diagram ── */
.flow-diagram {
  margin-top: 52px;
}

.flow-spine {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Nodes */
.flow-node {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  width: 100%;
  max-width: 520px;
  transition: background 0.2s;
}

.flow-node:hover {
  background: rgba(255, 255, 255, 0.08);
}

.fn-secondary {
  max-width: 340px;
}

.fn-warn {
  border-color: rgba(239, 159, 39, 0.25);
}

.fn-good {
  border-color: rgba(29, 158, 117, 0.25);
}

.fn-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  opacity: 0.9;
}

.fn-body {
  flex: 1;
}

.fn-label {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 5px;
}

.fn-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}

/* Arrows */
.flow-arrow {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
  padding: 4px 0;
}

/* Branch */
.flow-branch {
  width: 100%;
  max-width: 760px;
  position: relative;
  margin-top: 0;
}

.flow-branch-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(50% - 20px);
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.flow-branch-line::before,
.flow-branch-line::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
}

.flow-branch-line::before {
  left: 0;
}
.flow-branch-line::after {
  right: 0;
}

.flow-branch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 0;
  position: relative;
}

.flow-branch::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.flow-branch-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-top: 20px;
}

.flow-branch-label {
  font-size: 11px;
  font-family: var(--font-mono);
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 0;
}

.flow-branch-label-bad {
  background: rgba(226, 75, 74, 0.15);
  color: #e24b4a;
  border: 1px solid rgba(226, 75, 74, 0.2);
}

.flow-branch-label-good {
  background: rgba(29, 158, 117, 0.15);
  color: var(--green-100);
  border: 1px solid rgba(29, 158, 117, 0.2);
}

.flow-loop-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-family: var(--font-mono);
  color: rgba(255, 255, 255, 0.3);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-top: 4px;
}

/* ─── Tracker Section ──────────────────────────────────── */
.tracker-preview {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 56px;
}

.tracker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--gray-50);
}

.tracker-title {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.stage-pills {
  display: flex;
  gap: 6px;
}

.stage-pill {
  font-size: 11px;
  font-family: var(--font-mono);
  padding: 4px 11px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-md);
  color: var(--text-secondary);
  cursor: pointer;
  transition: background 0.12s;
}

.stage-pill.active {
  background: var(--text-primary);
  color: #fff;
  border-color: var(--text-primary);
}

.tracker-table {
  width: 100%;
  border-collapse: collapse;
}

.tracker-table th {
  font-size: 11px;
  font-weight: 500;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-tertiary);
  padding: 10px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  background: var(--gray-50);
}

.tracker-table td {
  padding: 14px 20px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.tracker-table tr:last-child td {
  border-bottom: none;
}

.tracker-table tr:hover td {
  background: var(--gray-50);
}

.company-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}

.company-avatar {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  font-family: var(--font-mono);
  flex-shrink: 0;
}

.co-role {
  font-weight: 500;
}
.co-name {
  font-size: 12px;
  color: var(--text-tertiary);
}

.status-badge {
  font-size: 11px;
  font-family: var(--font-mono);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-weight: 400;
}

.s-applied {
  background: var(--blue-50);
  color: var(--blue-500);
}
.s-interview {
  background: var(--green-50);
  color: var(--green-500);
}
.s-review {
  background: var(--amber-50);
  color: var(--amber-500);
}
.s-offer {
  background: var(--purple-50);
  color: var(--purple-500);
}

.fit-score {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
}

.fit-high {
  color: var(--green-300);
}
.fit-mid {
  color: var(--amber-300);
}
.fit-low {
  color: var(--red-300);
}

.date-cell {
  color: var(--text-tertiary);
  font-size: 12px;
  font-family: var(--font-mono);
}

/* ─── Chrome Extension ─────────────────────────────────── */
.ext-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ext-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ext-visual {
  position: relative;
}

.ext-popup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 320px;
}

.ext-popup-header {
  padding: 14px 16px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.ext-popup-header .logo {
  font-size: 15px;
}

.ext-body {
  padding: 16px;
}

.ext-job-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 3px;
}

.ext-job-co {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-bottom: 14px;
  font-family: var(--font-mono);
}

.ext-scores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}

.ext-score-box {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px;
  text-align: center;
}

.ext-score-val {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 500;
  color: var(--green-300);
  line-height: 1;
  margin-bottom: 3px;
}

.ext-score-label {
  font-size: 10px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.ext-save-btn {
  width: 100%;
  padding: 10px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.ext-content h2 {
  margin-bottom: 16px;
}

.ext-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 28px;
}

.ext-platforms {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.platform-tag {
  font-size: 12px;
  font-family: var(--font-mono);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--gray-100);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

/* ─── Pricing ──────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 480px;
  margin: 56px auto 0;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent);
  border-width: 2px;
  background: #fafdf9;
}

.pricing-label {
  font-size: 11px;
  font-weight: 500;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}

.pricing-card.featured .pricing-label {
  color: var(--accent);
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 4px;
  letter---spacing: -0.02em;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 28px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.price-amount sup {
  font-size: 22px;
  vertical-align: super;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
}

.price-period {
  font-size: 13px;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  margin-bottom: 28px;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

.feat-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.feat-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 300;
}

.feat-list li i {
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

.feat-list li .check {
  color: var(--green-300);
}
.feat-list li .cross {
  color: var(--gray-300);
}

.pricing-cta {
  width: 100%;
  margin-top: 28px;
  padding: 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--border-md);
  background: transparent;
  color: var(--text-primary);
  transition: background 0.15s;
}

.pricing-cta:hover {
  background: var(--gray-100);
}

.pricing-cta.primary-cta {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 2px 12px rgba(29, 158, 117, 0.3);
}

.pricing-cta.primary-cta:hover {
  background: var(--accent-dk);
}

.best-value-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  font-family: var(--font-mono);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* ─── FAQ / Trust ──────────────────────────────────────── */
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.trust-item i {
  font-size: 16px;
  color: var(--accent);
}

/* ─── Footer ───────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-primary);
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

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

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

.footer-copy {
  font-size: 12px;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
}

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

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-preview {
    display: none;
  }
  .why-stat-row {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
  .why-stat-card:nth-child(2) {
    border-right: none;
  }
  .why-stat-card:nth-child(3),
  .why-stat-card:nth-child(4) {
    border-top: 1px solid var(--border);
  }
  .stats-inner--why {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .why-stat {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 32px;
    min-width: unset;
  }
  .why-reasons {
    grid-template-columns: 1fr;
  }
  .how-grid {
    grid-template-columns: 1fr 1fr;
  }
  .how-step {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .flow-branch {
    grid-template-columns: 1fr;
  }
  .flow-branch::before {
    display: none;
  }
  .flow-node,
  .fn-secondary {
    max-width: 100%;
  }
  .ext-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .feat-wide,
  .feat-narrow,
  .feat-half,
  .feat-third {
    grid-column: span 12;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }
  .nav-inner {
    padding: 0 20px;
  }
  .nav-links {
    display: none;
  }
  .how-grid {
    grid-template-columns: 1fr;
  }
  .display {
    font-size: 38px;
  }
  footer {
    padding: 32px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}
