:root {
  --paper: #f4efe6;
  --paper-soft: #fbf8f1;
  --ink: #11100e;
  --muted: #6d675f;
  --line: #ded6c8;
  --stone: #cfc5b6;
  --moss: #5f6b58;
  --moss-dark: #31382e;
  --clay: #b08a69;
  --white: #fffdf8;
  --shadow: 0 28px 80px rgba(36, 30, 20, 0.11);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 253, 248, 0.78), transparent 26%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.64), rgba(244, 239, 230, 0));
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  width: min(var(--max), calc(100% - 40px));
  margin: 18px auto 0;
  padding: 14px 16px 14px 18px;
  border: 1px solid rgba(222, 214, 200, 0.72);
  border-radius: 999px;
  background: rgba(251, 248, 241, 0.86);
  box-shadow: 0 16px 45px rgba(42, 34, 23, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.nav a {
  transition: color 160ms ease;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.header-cta {
  padding: 0 18px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.88rem;
}

.menu-toggle {
  display: none;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 72px;
  align-items: end;
  min-height: auto;
  padding: 72px 0 64px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--moss-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 6.2vw, 5.95rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4.7vw, 4.75rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.hero-intro {
  max-width: 680px;
  margin-bottom: 34px;
  color: #3d3934;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

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

.button {
  padding: 0 22px;
  border: 1px solid var(--ink);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--ink);
  color: var(--white);
}

.button.secondary {
  background: rgba(255, 253, 248, 0.48);
  color: var(--ink);
  border-color: var(--stone);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(17, 16, 14, 0.12);
  border-radius: 8px;
  background: var(--paper-soft);
  box-shadow: var(--shadow);
}

.hero-panel::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(95, 107, 88, 0.28);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(95, 107, 88, 0.12), rgba(176, 138, 105, 0.08));
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 46px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-price {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
}

.panel-price span {
  color: var(--muted);
  font-weight: 700;
}

.panel-price strong {
  font-size: 4.5rem;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-panel p {
  max-width: 270px;
  margin-bottom: 44px;
  color: var(--muted);
}

.panel-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
  color: var(--moss-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-flow i {
  display: block;
  height: 1px;
  background: var(--stone);
}

.problem,
.sprint,
.automate,
.audience,
.operating-system,
.trust,
.final-cta {
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 80px;
}

.body-copy {
  color: #403b35;
  font-size: 1.08rem;
}

.body-copy p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 44px;
}

.section-heading p:not(.section-kicker) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading.compact {
  max-width: 760px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.42);
}

.steps article {
  min-height: 270px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.steps article:last-child {
  border-right: 0;
}

.steps span {
  display: block;
  margin-bottom: 88px;
  color: var(--clay);
  font-size: 0.8rem;
  font-weight: 800;
}

.steps p,
.workflow-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.sprint-note {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 22px 26px;
  border: 1px solid rgba(49, 56, 46, 0.16);
  background: rgba(95, 107, 88, 0.08);
}

.sprint-note span {
  max-width: 620px;
  color: var(--muted);
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.workflow-list article {
  min-height: 268px;
  padding: 26px;
  background: var(--paper-soft);
}

.workflow-list article:nth-child(2),
.workflow-list article:nth-child(4) {
  background: #eee7da;
}

.audience-grid {
  display: grid;
  gap: 10px;
}

.audience-grid span {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: #3e3933;
  font-size: 1.08rem;
  font-weight: 700;
}

.audience-grid a {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: #3e3933;
  font-size: 1.08rem;
  font-weight: 700;
  transition: color 160ms ease;
}

.audience-grid a:hover {
  color: var(--ink);
}

.operating-system {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.64fr);
  gap: 90px;
  align-items: center;
}

.os-copy p:not(.section-kicker) {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.08rem;
}

.os-copy h2 {
  margin-bottom: 28px;
}

.os-stack {
  display: grid;
  gap: 10px;
  counter-reset: stack;
}

.os-stack span {
  counter-increment: stack;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.52);
  color: var(--ink);
  font-weight: 800;
}

.os-stack span::after {
  content: "0" counter(stack);
  color: var(--clay);
  font-size: 0.78rem;
}

.trust {
  display: flex;
  justify-content: center;
  text-align: center;
}

.trust-content {
  max-width: 850px;
}

.trust-content h2 {
  margin-bottom: 24px;
}

.trust-content p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.12rem;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.4fr);
  gap: 70px;
  align-items: end;
  padding-bottom: 110px;
}

.final-cta h2 {
  margin-bottom: 22px;
}

.final-cta p:not(.section-kicker) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
}

.cta-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper-soft);
}

.wide {
  width: 100%;
}

.email-link {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.quiz-page .site-header {
  grid-template-columns: auto auto;
  justify-content: space-between;
}

.quiz-hero {
  min-height: auto;
  padding: 110px 0 42px;
}

.quiz-hero h1 {
  max-width: 930px;
  font-size: clamp(3.1rem, 7vw, 6.6rem);
}

.quiz-shell {
  display: grid;
  gap: 22px;
  padding: 0 0 110px;
}

.quiz-progress {
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quiz-progress div {
  overflow: hidden;
  height: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.52);
}

.quiz-progress i {
  display: block;
  width: 20%;
  height: 100%;
  background: var(--ink);
  transition: width 200ms ease;
}

.quiz-form,
.quiz-result {
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--paper-soft);
  box-shadow: var(--shadow);
}

.quiz-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.quiz-step.active {
  display: grid;
  gap: 12px;
}

.quiz-step legend {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.75rem);
  font-weight: 800;
  line-height: 1.05;
}

.quiz-step label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(244, 239, 230, 0.54);
  color: #393530;
  font-weight: 700;
  cursor: pointer;
}

.quiz-step input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--ink);
}

.quiz-step.needs-answer label {
  border-color: rgba(176, 138, 105, 0.68);
}

.quiz-actions,
.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.quiz-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.quiz-result h2 {
  margin-bottom: 18px;
}

.quiz-result p:not(.section-kicker) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
}

.recruitment-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 56px;
  align-items: start;
  padding: 72px 0 64px;
}

.recruitment-page h1 {
  font-size: clamp(2.6rem, 4.8vw, 4.7rem);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.proof-strip span {
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.5);
  color: #403b35;
  font-size: 0.9rem;
  font-weight: 700;
}

.workflow-compare {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-soft);
  box-shadow: var(--shadow);
}

.workflow-compare article {
  display: grid;
  gap: 12px;
}

.workflow-compare p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.workflow-track {
  display: grid;
  gap: 10px;
}

.workflow-track span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  color: #37332f;
  font-weight: 700;
}

.workflow-track span + span::before {
  content: "";
  position: absolute;
  left: 22px;
  top: -11px;
  width: 1px;
  height: 10px;
  background: var(--stone);
}

.workflow-track.manual span {
  background: rgba(176, 138, 105, 0.12);
}

.workflow-track.rebuilt span {
  background: rgba(95, 107, 88, 0.1);
}

.recruitment-problem,
.agitation,
.workflows-section,
.offer,
.how-it-works,
.why-syn,
.qualification {
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

.plain-list {
  margin: 0 0 24px;
  padding-left: 20px;
}

.plain-list li + li {
  margin-top: 10px;
}

.section-note {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.bottleneck-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.bottleneck-grid span {
  min-height: 128px;
  padding: 22px;
  background: var(--paper-soft);
  color: #403b35;
  font-weight: 700;
}

.recruitment-workflow-list article {
  min-height: 280px;
}

.offer-shell {
  display: grid;
  gap: 28px;
  padding: 34px;
  border: 1px solid rgba(17, 16, 14, 0.14);
  background: var(--paper-soft);
  box-shadow: var(--shadow);
}

.offer-main {
  display: grid;
  gap: 22px;
}

.offer-main h2 {
  max-width: 900px;
}

.offer-main .button {
  justify-self: start;
}

.offer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding-top: 8px;
}

.compact-list {
  margin-bottom: 0;
}

.guarantee {
  padding: 22px;
  border: 1px solid rgba(49, 56, 46, 0.18);
  background: rgba(95, 107, 88, 0.08);
}

.principles,
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.principles article,
.fit-grid article {
  min-height: 180px;
  padding: 26px;
  background: var(--paper-soft);
}

.principles p {
  margin-bottom: 0;
  color: var(--muted);
}

.fit-grid article:nth-child(2) {
  background: #eee7da;
}

.recruitment-final-cta {
  border-top: 1px solid var(--line);
}

.cta-microcopy {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--paper-soft);
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

  .nav,
  .header-cta {
    display: none;
  }

  .site-header.menu-open {
    border-radius: 22px;
  }

  .site-header.menu-open .nav {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    width: 100%;
    padding-top: 10px;
  }

  .site-header.menu-open .nav a {
    padding: 14px 4px;
    border-top: 1px solid var(--line);
  }

  .hero,
  .recruitment-hero,
  .split,
  .operating-system,
  .final-cta {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero {
    min-height: auto;
    padding-top: 86px;
  }

  .hero-panel {
    max-width: 520px;
  }

  .steps,
  .workflow-list,
  .bottleneck-grid,
  .principles,
  .fit-grid,
  .offer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps article {
    border-bottom: 1px solid var(--line);
  }

  .steps article:nth-child(2) {
    border-right: 0;
  }

  .steps article:nth-child(3),
  .steps article:nth-child(4) {
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  .section,
  .site-header,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    margin-top: 12px;
    padding: 12px 12px 12px 14px;
  }

  .brand {
    font-size: 0.94rem;
  }

  .hero {
    padding: 60px 0 64px;
  }

  h1 {
    font-size: clamp(3.05rem, 16vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.15rem, 11vw, 3.35rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-panel {
    padding: 22px;
  }

  .panel-price strong {
    font-size: 3.8rem;
  }

  .problem,
  .sprint,
  .automate,
  .audience,
  .operating-system,
  .trust,
  .final-cta,
  .recruitment-problem,
  .agitation,
  .workflows-section,
  .offer,
  .how-it-works,
  .why-syn,
  .qualification {
    padding: 70px 0;
  }

  .steps,
  .workflow-list,
  .bottleneck-grid,
  .principles,
  .fit-grid,
  .offer-columns,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .steps article,
  .steps article:nth-child(2),
  .steps article:nth-child(3) {
    min-height: 224px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .steps article:nth-child(4) {
    border-bottom: 0;
  }

  .steps span {
    margin-bottom: 58px;
  }

  .sprint-note,
  .site-footer {
    display: grid;
  }

  .workflow-list article {
    min-height: 210px;
  }

  .bottleneck-grid span,
  .principles article,
  .fit-grid article {
    min-height: auto;
  }

  .panel-flow {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .panel-flow i {
    display: none;
  }
}
