:root {
  color-scheme: light;
  --bg: #f6f4ef;
  --ink: #1f2a2e;
  --muted: #69777b;
  --line: #d9d2c5;
  --surface: #ffffff;
  --panel: #ebe7dd;
  --accent: #176b5b;
  --accent-strong: #0f4f45;
  --accent-soft: #dcece7;
  --gold: #c58a2b;
  --danger: #a23b3b;
  --shadow: 0 18px 45px rgba(38, 45, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(31, 42, 46, 0.12);
  background: rgba(246, 244, 239, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
}

.nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  min-height: calc(100vh - 64px);
  padding: clamp(42px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  max-width: 830px;
  font-size: clamp(2.4rem, 5.6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  font-size: 1.05rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 670px;
  color: var(--muted);
  font-size: 1.13rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.resume-preview {
  display: flex;
  justify-content: center;
}

.paper {
  width: min(100%, 440px);
  min-height: 540px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.paper-header {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.paper-header span {
  width: 42px;
  height: 5px;
  border-radius: 999px;
  background: var(--accent);
}

.paper-header span:nth-child(2) {
  background: var(--gold);
}

.paper-header span:nth-child(3) {
  background: var(--line);
}

.paper h2 {
  margin-bottom: 4px;
  font-size: 1.7rem;
}

.muted,
.paper p {
  color: var(--muted);
}

.paper-section {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.paper-section ul {
  padding-left: 18px;
  color: var(--muted);
}

.band {
  padding: 0 clamp(18px, 5vw, 72px) 64px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.metrics div {
  min-height: 118px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.metrics div:last-child {
  border-right: 0;
}

.metrics strong {
  display: block;
  font-size: 2.1rem;
  line-height: 1;
}

.metrics span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(260px, 0.72fr) minmax(280px, 1fr);
  gap: 26px;
  align-items: start;
  border-top: 1px solid rgba(31, 42, 46, 0.1);
}

.split p {
  color: var(--muted);
}

.kit-list {
  display: grid;
  gap: 10px;
}

.kit-item {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--ink);
  padding: 14px;
  text-align: left;
  cursor: pointer;
}

.kit-item span {
  color: var(--accent);
  font-weight: 800;
}

.kit-item.active {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.kit-panel {
  min-height: 318px;
  border-radius: 8px;
  background: var(--accent-strong);
  color: #fff;
  padding: 28px;
}

.panel-label {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
  text-transform: uppercase;
}

.kit-panel ul {
  padding-left: 18px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.proof {
  background: var(--panel);
}

.comparison {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 18px;
}

.sample {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 24px;
}

.sample-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  color: var(--muted);
}

.sample-top span {
  border-radius: 999px;
  padding: 4px 10px;
  background: var(--panel);
  font-size: 0.85rem;
  font-weight: 800;
}

.before .sample-top span {
  color: var(--danger);
}

.after {
  border-color: rgba(23, 107, 91, 0.42);
}

.after .sample-top span {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.sample li {
  margin-bottom: 10px;
  color: var(--muted);
}

.process {
  border-top: 1px solid rgba(31, 42, 46, 0.1);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.steps div {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 24px;
}

.steps span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

.steps h3 {
  margin-top: 24px;
}

.steps p {
  color: var(--muted);
}

.contact {
  background: #233133;
  color: #fff;
}

.contact p {
  color: rgba(255, 255, 255, 0.72);
}

.contact .eyebrow {
  color: #8fd0bf;
}

.join-box {
  max-width: 760px;
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
}

.join-box strong {
  display: block;
  margin-bottom: 8px;
}

.join-box span {
  display: inline-block;
  margin-top: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  padding: 4px 8px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.lead-form {
  display: grid;
  max-width: 860px;
  margin-top: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font: inherit;
  padding: 11px 12px;
}

.lead-form select option {
  color: var(--ink);
}

.lead-form textarea {
  min-height: 118px;
  resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.lead-form input[name="_honey"] {
  display: none;
}

.lead-form .full,
.lead-form button {
  grid-column: 1 / -1;
}

.share {
  background: var(--surface);
}

.share-panel {
  max-width: 860px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  padding: 24px;
}

.share-panel p {
  color: var(--muted);
}

.copy-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--accent-strong);
  font-weight: 700;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .metrics,
  .comparison,
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .metrics,
  .comparison,
  .lead-form,
  .steps {
    grid-template-columns: 1fr;
  }

  .metrics div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics div:last-child {
    border-bottom: 0;
  }

  .footer {
    flex-direction: column;
  }
}
