:root {
  --black: #0a0a0a;
  --black-2: #111111;
  --black-3: #181818;
  --yellow: #ffd60a;
  --yellow-dim: #b89b00;
  --white: #f5f5f5;
  --gray: #a3a3a3;
  --gray-dark: #525252;
  --line: #262626;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--yellow); color: var(--black); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; letter-spacing: -0.02em; }

a { color: inherit; }

/* ---------- shared bits ---------- */

.kicker {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 20px;
}

.section { padding: 110px 0; border-top: 1px solid var(--line); }

.section-title { font-size: clamp(30px, 4.5vw, 46px); font-weight: 700; max-width: 820px; }

.section-lead { color: var(--gray); max-width: 640px; margin-top: 22px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding: 16px 30px;
  border: 1px solid transparent;
  transition: all 0.18s ease;
  cursor: pointer;
}

.btn-primary { background: var(--yellow); color: var(--black); }
.btn-primary:hover { background: var(--white); }

.btn-ghost { border-color: var(--gray-dark); color: var(--white); }
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); }

.btn .arrow { transition: transform 0.18s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- nav ---------- */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo span { color: var(--yellow); }

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

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--yellow); }

.nav-cta {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  background: var(--yellow);
  color: var(--black) !important;
  padding: 10px 20px;
  text-decoration: none;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--gray-dark);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 8px 14px;
  cursor: pointer;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 60% 0%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 60% 0%, black 30%, transparent 75%);
  opacity: 0.6;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 72px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;
}

.hero h1 .hl {
  color: var(--yellow);
  position: relative;
}

.hero-sub {
  color: var(--gray);
  font-size: 19px;
  max-width: 580px;
  margin-top: 26px;
}

.hero-cred {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.cred-chip {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--white);
  border: 1px solid var(--line);
  background: var(--black-2);
  padding: 9px 15px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.cred-chip::before { content: "✓"; color: var(--yellow); font-weight: 700; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 42px; }

.hero-photo {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 400px;
}

.photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--black-2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.photo-frame::after {
  content: "";
  position: absolute;
  top: 16px; right: -16px;
  width: 100%; height: 100%;
  border: 1px solid var(--yellow);
  z-index: -1;
}

.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

.photo-placeholder {
  text-align: center;
  color: var(--gray-dark);
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 20px;
}
.photo-placeholder .icon { font-size: 44px; display: block; margin-bottom: 14px; opacity: 0.7; }

.photo-tag {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 700;
  padding: 10px 16px;
  line-height: 1.45;
}

/* ---------- intro / about ---------- */

.trust-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
  margin-top: 8px;
}

.trust-copy p { color: var(--gray); margin-top: 20px; }
.trust-copy p strong { color: var(--white); font-weight: 600; }
.trust-copy p:first-child { margin-top: 0; }

.intro-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.intro-link {
  font-family: var(--font-mono);
  font-size: 13.5px;
  text-decoration: none;
  color: var(--white);
  border: 1px solid var(--line);
  background: var(--black-2);
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all 0.15s;
}
.intro-link:hover { border-color: var(--yellow); color: var(--yellow); }
.intro-link .tick { color: var(--yellow); }

.stat-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 56px;
}

.stat-card {
  background: var(--black-2);
  padding: 32px 28px;
  transition: background 0.2s;
}
.stat-card:hover { background: var(--black-3); }

.stat-card .num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
}

.stat-card .label {
  display: block;
  margin-top: 12px;
  font-size: 15px;
  color: var(--gray);
}

.trust-photo .photo-frame { aspect-ratio: 4 / 4.6; }
.trust-photo .photo-frame::after { top: -16px; left: -16px; right: auto; }

/* ---------- comparison (ways of writing) ---------- */

.compare-intro {
  color: var(--gray);
  max-width: 720px;
  margin-top: 24px;
  font-size: 19px;
}
.compare-intro strong { color: var(--white); }

.compare-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.compare-card {
  border: 1px solid var(--line);
  background: var(--black-2);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.compare-card:hover { border-color: var(--gray-dark); transform: translateY(-4px); }

.compare-card.win { border-color: var(--yellow); }
.compare-card.win::before {
  content: "RECOMMENDED";
  position: absolute;
  top: -13px;
  left: 26px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--yellow);
  color: var(--black);
  padding: 5px 12px;
}

.compare-card h3 { font-size: 20px; margin-bottom: 14px; }
.compare-card .desc { color: var(--gray); font-size: 14.5px; line-height: 1.6; flex-grow: 1; }
.compare-card.win .desc { color: var(--white); }

.compare-meta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.compare-meta .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--gray);
}
.compare-meta .row + .row { margin-top: 12px; }
.compare-meta .cost { color: var(--white); font-weight: 500; }

.meter { display: inline-flex; gap: 5px; }
.meter i {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--line);
}
.meter i.on { background: var(--yellow); }

/* ---------- what your resume needs ---------- */

.needs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 52px;
}

.need-panel {
  border: 1px solid var(--line);
  background: var(--black-2);
  padding: 40px 38px;
}

.need-panel .need-label {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--yellow);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.need-panel h3 { font-size: 26px; }
.need-panel p { color: var(--gray); margin-top: 18px; }
.need-panel p strong { color: var(--white); }

.check-title {
  margin-top: 26px;
  font-size: 14.5px;
  color: var(--white);
  font-weight: 600;
}

.check-list { list-style: none; margin-top: 18px; }
.check-list li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  color: var(--gray);
  font-size: 15.5px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: "✓";
  color: var(--yellow);
  font-weight: 700;
  font-family: var(--font-mono);
  flex-shrink: 0;
}

/* ---------- before/after ---------- */

.ba-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
  margin-top: 60px;
}

.ba-doc {
  border: 1px solid var(--line);
  background: var(--black-2);
  display: flex;
  flex-direction: column;
}

.ba-doc.after { border-color: var(--yellow); }

.ba-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--gray);
}

.ba-doc.after .ba-titlebar { color: var(--yellow); border-bottom-color: rgba(255, 214, 10, 0.35); }

.ba-titlebar .dots { display: flex; gap: 6px; }
.ba-titlebar .dots i {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--line);
}
.ba-doc.after .dots i { background: var(--yellow-dim); }
.ba-titlebar .fname { margin-left: 8px; }

.ba-body { padding: 30px 28px; display: flex; flex-direction: column; gap: 13px; flex-grow: 1; }

.skel { height: 11px; background: var(--black-3); border-radius: 2px; }
.skel.head { height: 18px; width: 55%; background: var(--gray-dark); }
.skel.sub { width: 78%; }
.skel.w90 { width: 90%; }
.skel.w70 { width: 70%; }
.skel.w60 { width: 60%; }
.skel.w40 { width: 40%; }
.skel.gap { margin-top: 12px; }

.ba-doc.after .skel { background: #2e2a14; }
.ba-doc.after .skel.head { background: var(--yellow); width: 45%; height: 16px; }
.ba-doc.after .skel.accent { background: var(--yellow-dim); }

.ba-caption {
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--gray);
}
.ba-doc.after .ba-caption { color: var(--white); border-top-color: rgba(255, 214, 10, 0.35); }

.ba-arrow {
  align-self: center;
  font-family: var(--font-mono);
  color: var(--yellow);
  font-size: 30px;
  font-weight: 700;
}

.ba-note { margin-top: 36px; color: var(--gray); max-width: 640px; }

/* ---------- process ---------- */

.process-list {
  list-style: none;
  margin-top: 52px;
  border-top: 1px solid var(--line);
}

.process-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  align-items: baseline;
  padding: 32px 8px;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s, padding-left 0.15s;
}
.process-list li:hover { background: var(--black-2); padding-left: 20px; }

.process-list .idx {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
  color: var(--yellow);
}

.process-list h3 {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.4vw, 24px);
  font-weight: 600;
}
.process-list p { color: var(--gray); margin-top: 10px; font-size: 16px; max-width: 640px; }
.process-list p strong { color: var(--white); }

/* ---------- pricing ---------- */

.free-review {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  border: 1px solid var(--yellow);
  background: linear-gradient(135deg, rgba(255, 214, 10, 0.06), transparent 55%);
  padding: 42px 46px;
  margin-top: 52px;
}

.free-review .badge {
  justify-self: start;
  align-self: start;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  background: var(--yellow);
  color: var(--black);
  padding: 8px 14px;
  white-space: nowrap;
}

.free-review h3 { font-size: 26px; }
.free-review p { color: var(--gray); margin-top: 10px; max-width: 560px; }

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

.tier-card {
  border: 1px solid var(--line);
  background: var(--black-2);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}

.tier-card:hover { border-color: var(--yellow); transform: translateY(-4px); }

.tier-card.featured { border-color: var(--yellow); }

.tier-card.featured::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -13px;
  left: 32px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--yellow);
  color: var(--black);
  padding: 5px 12px;
}

.tier-card .tier-name { font-family: var(--font-display); font-size: 24px; font-weight: 700; }
.tier-card .tier-exp {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gray);
  margin-top: 8px;
}

.tier-card .price {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin: 26px 0 4px;
}

.tier-features {
  list-style: none;
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  flex-grow: 1;
}
.tier-features li {
  display: flex;
  gap: 11px;
  align-items: baseline;
  color: var(--white);
  font-size: 15px;
  padding: 8px 0;
}
.tier-features li::before {
  content: "✓";
  color: var(--yellow);
  font-weight: 700;
  font-family: var(--font-mono);
  flex-shrink: 0;
}

.pricing-cta { margin-top: 48px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.guarantee-note { font-family: var(--font-mono); font-size: 13px; color: var(--gray-dark); max-width: 340px; }
.guarantee-note strong { color: var(--yellow-dim); }

/* ---------- faq ---------- */

.faq-list { margin-top: 52px; border-top: 1px solid var(--line); max-width: 860px; }

details { border-bottom: 1px solid var(--line); }

summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px 8px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  transition: color 0.15s;
}
summary::-webkit-details-marker { display: none; }
summary:hover { color: var(--yellow); }

summary .marker {
  font-family: var(--font-mono);
  color: var(--yellow);
  font-size: 22px;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.2s;
}

details[open] summary { color: var(--yellow); }
details[open] .marker { transform: rotate(45deg); }

.faq-answer { padding: 0 8px 28px; color: var(--gray); max-width: 720px; }
.faq-answer strong { color: var(--white); }

/* ---------- final cta ---------- */

.final-cta {
  position: relative;
  text-align: center;
  padding: 130px 0;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 90% at 50% 100%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 50% 100%, black 20%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.final-cta .container { position: relative; }

.final-cta h2 { font-size: clamp(34px, 5vw, 54px); font-weight: 700; }
.final-cta h2 span { color: var(--yellow); }

.final-cta p { color: var(--gray); max-width: 620px; margin: 24px auto 0; font-size: 18px; }
.final-cta p + p { margin-top: 16px; }
.final-cta p strong { color: var(--white); }

.final-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 44px; }

/* ---------- footer ---------- */

footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

footer .fine {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--gray-dark);
}

/* ---------- responsive ---------- */

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-photo { justify-self: start; }
  .trust-grid { grid-template-columns: 1fr; gap: 56px; }
  .compare-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-card.win { order: -1; }
  .needs-grid { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .tier-card.featured { order: -1; }
  .free-review { grid-template-columns: 1fr; gap: 24px; padding: 34px 30px; }
  .ba-grid { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); padding: 4px 0; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--black);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}

@media (max-width: 780px) {
  .section { padding: 80px 0; }
  .compare-grid { grid-template-columns: 1fr; }
  .process-list li { grid-template-columns: 56px 1fr; gap: 16px; }
  .free-review { padding: 30px 24px; }
  .need-panel { padding: 30px 26px; }
}
