/* ─── VARIABLES ───────────────────────────────────────────── */
:root {
  --bg:         #0f0f14;
  --bg-alt:     #13131b;
  --bg-card:    #16161f;
  --bg-card-h:  #1c1c28;
  --amber:       #f5a623;
  --amber-dim:   rgba(245, 166, 35, 0.12);
  --amber-glow:  rgba(245, 166, 35, 0.06);
  --text:       #e8e8f0;
  --text-dim:   #6e6e8a;
  --text-muted: #3e3e52;
  --border:     rgba(255,255,255,0.06);
  --border-dim: rgba(255,255,255,0.04);

  --font-display: 'Syne', sans-serif;
  --font-body:    'General Sans', sans-serif;

  --max-w: 1200px;
  --pad-x: clamp(24px, 6vw, 80px);
  --pad-y: clamp(64px, 10vw, 120px);
}

/* ─── BASE ────────────────────────────────────────────────── */
*, *::before, *::after { 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-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

::selection { background: var(--amber); color: #000; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--text-muted); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-dim); }

.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad-y) var(--pad-x) 0;
  border-bottom: 1px solid var(--border-dim);
  position: relative;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
  display: inline-block;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.025em;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-headline .accent {
  color: var(--amber);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-desc {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.4;
  max-width: 100px;
}

/* Resume Card */
.hero-right { display: flex; justify-content: flex-end; }

.resume-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  width: 100%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.04) inset;
}

.resume-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(245,166,35,.2), transparent 40%);
  pointer-events: none;
  z-index: -1;
}

.resume-card-inner { margin-bottom: 20px; }

.resume-header { margin-bottom: 16px; }
.resume-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.01em;
  margin-bottom: 4px;
}
.resume-title {
  font-size: 13px;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 6px;
}
.resume-meta { font-size: 11px; color: var(--text-dim); line-height: 1.5; }

.resume-section { margin-bottom: 14px; }
.resume-section-title {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.resume-text { font-size: 11px; color: var(--text-dim); line-height: 1.55; }

.resume-job { margin-bottom: 10px; }
.job-header { font-size: 11px; color: var(--text); margin-bottom: 4px; }
.job-title { font-weight: 600; }
.job-company { color: var(--text-dim); }
.job-date { float: right; color: var(--text-muted); font-size: 10px; }
.job-bullet { font-size: 10px; color: var(--text-dim); line-height: 1.5; padding-left: 12px; position: relative; }
.job-bullet::before { content: '•'; position: absolute; left: 2px; color: var(--amber); }

.resume-skills { display: flex; flex-wrap: wrap; gap: 5px; }
.skill-tag {
  font-size: 9px;
  padding: 3px 8px;
  background: var(--amber-dim);
  color: var(--amber);
  border-radius: 4px;
  border: 1px solid rgba(245,166,35,.2);
  font-weight: 500;
}

/* ATS Badge */
.ats-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.ats-label { font-size: 11px; color: var(--text-dim); white-space: nowrap; }
.ats-score {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--amber);
}
.ats-bar { flex: 1; height: 4px; background: var(--bg-alt); border-radius: 2px; overflow: hidden; }
.ats-fill { height: 100%; background: var(--amber); border-radius: 2px; }

/* Scroll hint */
.scroll-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 60px;
  padding-bottom: 32px;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ─── PROBLEM ──────────────────────────────────────────────── */
.problem {
  padding: var(--pad-y) var(--pad-x);
  border-bottom: 1px solid var(--border-dim);
  background: var(--bg-alt);
}
.problem-inner { max-width: var(--max-w); margin: 0 auto; }

.problem-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 36px;
}

.problem-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
  max-width: 800px;
}
.problem-body p { font-size: 16px; color: var(--text-dim); line-height: 1.7; }

.problem-facts { display: flex; flex-direction: column; gap: 20px; max-width: 600px; }
.fact { display: flex; align-items: flex-start; gap: 16px; }
.fact-icon {
  width: 40px;
  height: 40px;
  background: var(--amber-dim);
  border: 1px solid rgba(245,166,35,.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber);
}
.fact-text { font-size: 15px; color: var(--text-dim); padding-top: 8px; line-height: 1.5; }
.fact-text strong { color: var(--text); }

/* ─── PROCESS ──────────────────────────────────────────────── */
.process { padding: var(--pad-y) var(--pad-x); border-bottom: 1px solid var(--border-dim); }
.process-inner { max-width: var(--max-w); margin: 0 auto; }

.process-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 64px;
  max-width: 500px;
}

.steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: grid;
  grid-template-columns: 80px 1fr 280px;
  gap: 40px;
  align-items: start;
  padding: 48px 0;
  border-top: 1px solid var(--border-dim);
}

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--text-muted);
  line-height: 1;
  letter-spacing: -.04em;
}

.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.step-desc { font-size: 15px; color: var(--text-dim); line-height: 1.65; max-width: 420px; }

/* Step visuals */
.step-visual { display: flex; align-items: center; justify-content: flex-end; }

.doc-icon { opacity: .7; }

.keyword-grid { display: flex; flex-wrap: wrap; gap: 8px; max-width: 260px; }
.kw {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 6px;
  font-weight: 500;
}
.kw-match { background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.25); color: #22c55e; }
.kw-miss { background: var(--amber-dim); border: 1px solid rgba(245,166,35,.2); color: var(--amber); }

.rewrite-visual { max-width: 280px; }
.rewrite-before {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
  padding: 12px 14px;
  background: var(--bg-alt);
  border: 1px solid var(--border-dim);
  border-radius: 8px;
  margin-bottom: 10px;
}
.rewrite-arrow { display: flex; justify-content: flex-start; padding: 4px 0; }
.rewrite-after {
  font-size: 12px;
  color: var(--text);
  line-height: 1.55;
  padding: 12px 14px;
  background: var(--amber-dim);
  border: 1px solid rgba(245,166,35,.2);
  border-radius: 8px;
}

.download-icon { opacity: .9; }

/* ─── PRICING ──────────────────────────────────────────────── */
.pricing { padding: var(--pad-y) var(--pad-x); border-bottom: 1px solid var(--border-dim); background: var(--bg-alt); }
.pricing-inner { max-width: var(--max-w); margin: 0 auto; }

.pricing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 16px;
}
.pricing-sub { font-size: 16px; color: var(--text-dim); margin-bottom: 56px; max-width: 480px; }

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
}
.pricing-card-main { border-color: rgba(245,166,35,.25); }
.pricing-card-main::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(245,166,35,.08), transparent 60%);
  pointer-events: none;
}

.card-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.card-price { margin-bottom: 12px; }
.price-amount {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -.04em;
  line-height: 1;
}
.price-per { font-size: 20px; color: var(--text-dim); font-weight: 300; }
.card-desc { font-size: 14px; color: var(--text-dim); margin-bottom: 28px; line-height: 1.5; }

.card-features { list-style: none; margin-bottom: 28px; }
.card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dim);
  padding: 8px 0;
  border-top: 1px solid var(--border-dim);
}
.card-features svg { flex-shrink: 0; margin-top: 2px; }

.card-note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 16px;
  background: var(--bg);
  border-radius: 10px;
  border: 1px solid var(--border-dim);
}

/* Compare card */
.compare-rows { display: flex; flex-direction: column; gap: 0; margin-bottom: 20px; }
.compare-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-dim);
  font-size: 13px;
  align-items: center;
}
.compare-row:last-child { border-bottom: none; }
.compare-tool { color: var(--text-dim); }
.compare-price { font-family: var(--font-display); font-weight: 600; color: var(--text); }
.compare-model { color: var(--text-muted); font-size: 11px; }
.compare-row-active .compare-tool { color: var(--amber); font-weight: 600; }
.compare-row-active .compare-price { color: var(--amber); }
.compare-row-active .compare-model { color: var(--amber); opacity: .6; }

.compare-verdict {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  padding: 16px;
  background: var(--bg);
  border-radius: 10px;
  border: 1px solid var(--border-dim);
  font-style: italic;
}

/* ─── MANIFESTO ────────────────────────────────────────────── */
.manifesto {
  padding: var(--pad-y) var(--pad-x);
  border-bottom: 1px solid var(--border-dim);
  background: var(--bg);
}
.manifesto-inner { max-width: var(--max-w); margin: 0 auto; }

.manifesto-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 40px;
  max-width: 800px;
  font-style: normal;
}

.manifesto-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 64px;
  max-width: 760px;
}
.manifesto-body p { font-size: 16px; color: var(--text-dim); line-height: 1.7; }

.manifesto-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--amber) 0%, transparent 60%);
  max-width: 600px;
  margin-bottom: 56px;
}

.manifesto-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.value-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.value-desc { font-size: 14px; color: var(--text-dim); line-height: 1.65; }

/* ─── CLOSING ─────────────────────────────────────────────── */
.closing {
  padding: var(--pad-y) var(--pad-x);
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}
.closing-inner { max-width: 720px; margin: 0 auto; }

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 16px;
}
.closing-sub {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 48px;
}
.closing-cta { margin-bottom: 48px; }
.cta-text { font-size: 16px; color: var(--text-dim); line-height: 1.7; margin-bottom: 16px; }
.cta-prompt {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: .05em;
}
.closing-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: .03em;
}

/* ─── FOOTER ───────────────────────────────────────────────── */
.footer {
  padding: 40px var(--pad-x);
  border-top: 1px solid var(--border-dim);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand { display: flex; flex-direction: column; gap: 2px; }
.footer-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.footer-tagline { font-size: 11px; color: var(--text-muted); }
.footer-note { font-size: 13px; color: var(--text-muted); }
.footer-legal { font-size: 12px; color: var(--text-muted); }

/* ─── BROWSE ───────────────────────────────────────────────── */
.hero-browse-hint {
  margin-top: 36px;
  font-size: 14px;
  color: var(--text-muted);
}
.browse-link {
  color: var(--text-dim);
  cursor: pointer;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.browse-link:hover {
  color: var(--amber);
  border-bottom-color: rgba(245,166,35,.4);
}

/* Browse page */
.browse-page { display: block; }

.browse-header {
  padding: 48px var(--pad-x) 40px;
  border-bottom: 1px solid var(--border-dim);
}
.browse-header-inner { max-width: var(--max-w); margin: 0 auto; }

.browse-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color .2s;
}
.browse-back:hover { color: var(--amber); }

.browse-title-block { max-width: 600px; }
.browse-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 12px;
}
.browse-sub { font-size: 17px; color: var(--text-dim); line-height: 1.6; }

.browse-grid-wrap {
  padding: 56px var(--pad-x) 80px;
}
.browse-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Browse card */
.resume-card-browse {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.resume-card-browse:hover {
  border-color: rgba(245,166,35,.3);
  background: var(--bg-card-h);
  transform: translateY(-2px);
}

.rcb-top { margin-bottom: 4px; }
.rcb-role {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}
.rcb-company { font-size: 13px; color: var(--amber); font-weight: 500; }

.rcb-bullets { display: flex; flex-direction: column; gap: 8px; }
.rcb-bullet {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.5;
  padding-left: 12px;
  position: relative;
}
.rcb-bullet::before { content: '•'; position: absolute; left: 2px; color: var(--amber); }

.rcb-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--border-dim);
}
.rcb-ats { font-size: 12px; color: var(--text-dim); }
.rcb-price {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--amber);
}

.rcb-preview-btn {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color .2s;
  text-align: left;
}
.rcb-preview-btn:hover { color: var(--amber); }

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal.open { display: flex; }

.modal-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  width: 100%;
  max-width: 680px;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  padding: 40px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-dim);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .2s, border-color .2s;
}
.modal-close:hover { color: var(--amber); border-color: rgba(245,166,35,.3); }

/* Full resume in modal */
.mr-header { margin-bottom: 20px; }
.mr-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.01em;
  margin-bottom: 4px;
}
.mr-title-role { font-size: 15px; color: var(--amber); font-weight: 500; margin-bottom: 6px; }
.mr-meta { font-size: 12px; color: var(--text-dim); }

.mr-section { margin-bottom: 18px; }
.mr-section-title {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--border-dim);
}
.mr-text { font-size: 13px; color: var(--text-dim); line-height: 1.6; }

.mr-job { margin-bottom: 14px; }
.mr-job-header { font-size: 13px; color: var(--text); margin-bottom: 6px; }
.mr-job-title { font-weight: 600; }
.mr-job-company { color: var(--text-dim); }
.mr-job-date { float: right; color: var(--text-muted); font-size: 11px; }
.mr-bullet { font-size: 12px; color: var(--text-dim); line-height: 1.55; padding-left: 12px; position: relative; margin-bottom: 5px; }
.mr-bullet::before { content: '•'; position: absolute; left: 2px; color: var(--amber); }

.mr-skills { display: flex; flex-wrap: wrap; gap: 6px; }
.mr-skill-tag {
  font-size: 10px;
  padding: 4px 10px;
  background: var(--amber-dim);
  color: var(--amber);
  border-radius: 5px;
  border: 1px solid rgba(245,166,35,.2);
  font-weight: 500;
}

.modal-cta {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-dim);
  text-align: center;
}
.modal-cta p { font-size: 14px; color: var(--text-dim); margin-bottom: 12px; }
.modal-cta-btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid rgba(245,166,35,.4);
  transition: color .2s, border-color .2s;
}
.modal-cta-btn:hover { color: #f5b84a; border-bottom-color: var(--amber); }

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { justify-content: flex-start; }
  .resume-card { max-width: 100%; }
  .problem-body { grid-template-columns: 1fr; }
  .step { grid-template-columns: 60px 1fr; gap: 24px; }
  .step-visual { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .manifesto-body { grid-template-columns: 1fr; }
  .manifesto-values { grid-template-columns: 1fr; gap: 28px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 900px) {
  .browse-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-desc { max-width: none; }
  .browse-grid { grid-template-columns: 1fr; }
  .browse-grid-wrap { padding: 40px var(--pad-x) 60px; }
}