:root {
  color-scheme: light;
  --bg: #f6f7f4;
  --surface: #ffffff;
  --surface-soft: #edf4f2;
  --ink: #10201c;
  --muted: #5f6f69;
  --line: rgba(16, 32, 28, 0.12);
  --accent: #0f8f72;
  --accent-dark: #076650;
  --accent-soft: #cdece4;
  --warm: #e7f36f;
  --shadow: 0 28px 80px rgba(17, 43, 36, 0.12);
  --radius: 28px;
  --max-width: 1180px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.brand-hire {
  --bg: #faf7f2;
  --surface-soft: #f8e8dc;
  --ink: #231c2b;
  --muted: #716875;
  --line: rgba(35, 28, 43, 0.12);
  --accent: #ef6544;
  --accent-dark: #b63c25;
  --accent-soft: #ffd8ca;
  --warm: #ffd55b;
  --shadow: 0 28px 80px rgba(56, 29, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 2%, rgba(255, 255, 255, 0.95), transparent 34rem),
    var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.noscript,
.inactive-banner {
  padding: 10px 20px;
  background: #241e2a;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.site-header,
footer {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header {
  height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.brand__mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent) 30%, transparent);
}

.header-cta {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
}

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

.hero {
  min-height: 650px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 48px;
  padding: 72px;
  border-radius: 42px;
  color: #fff;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--ink) 93%, #000), var(--ink));
  box-shadow: var(--shadow);
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--warm);
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.99;
  letter-spacing: -0.065em;
}

h2 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.hero__lead {
  max-width: 690px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 0;
  border-radius: 15px;
  cursor: pointer;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

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

.button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 45%, transparent);
  outline-offset: 3px;
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.button--primary {
  color: var(--ink);
  background: var(--warm);
  box-shadow: 0 14px 30px color-mix(in srgb, var(--warm) 20%, transparent);
}

.conversion-section .button--primary,
.fatal-error .button--primary {
  color: #fff;
  background: var(--accent);
}

.button--ghost {
  color: var(--ink);
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--line);
}

.price-chip {
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.price-chip strong {
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
}

.hero__visual {
  position: relative;
  min-height: 420px;
  z-index: 1;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(5px);
  opacity: 0.25;
  z-index: 0;
}

.hero__glow--one {
  width: 520px;
  height: 520px;
  right: -200px;
  top: -220px;
  background: var(--accent);
}

.hero__glow--two {
  width: 280px;
  height: 280px;
  right: 130px;
  bottom: -180px;
  background: var(--warm);
}

.mock-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.mock-card--chart,
.mock-card--profile {
  width: 310px;
  height: 330px;
  top: 26px;
  right: 22px;
  transform: rotate(4deg);
}

.mock-card--chart {
  padding: 28px;
}

.mock-card__top {
  display: flex;
  gap: 6px;
  margin-bottom: 42px;
}

.mock-card__top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-soft);
}

.mock-card--chart p {
  font-weight: 850;
}

.bars {
  height: 150px;
  display: flex;
  align-items: end;
  gap: 12px;
  padding-top: 10px;
  border-bottom: 1px solid var(--line);
}

.bars i {
  width: 32px;
  height: var(--height);
  display: block;
  border-radius: 8px 8px 2px 2px;
  background: var(--accent);
}

.bars i:nth-child(2n) {
  background: var(--warm);
}

.mock-card--signal {
  right: 155px;
  bottom: 30px;
  min-width: 280px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  transform: rotate(-3deg);
}

.mock-card--signal strong,
.mock-card--signal small {
  display: block;
}

.mock-card--signal small {
  margin-top: 2px;
  color: var(--muted);
}

.signal-dot {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 8px solid var(--accent-soft);
  border-radius: 50%;
  background: var(--accent);
}

.mock-card--profile {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-content: start;
  gap: 22px;
  padding: 32px;
}

.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, var(--warm) 0 19%, transparent 20%),
    linear-gradient(150deg, var(--accent-soft), var(--accent));
}

.profile-lines {
  padding-top: 10px;
}

.profile-lines i {
  height: 12px;
  display: block;
  margin-bottom: 12px;
  border-radius: 8px;
  background: #ebe6ec;
}

.profile-lines i:nth-child(2) {
  width: 72%;
}

.profile-lines i:nth-child(3) {
  width: 48%;
}

.match {
  grid-column: 1 / -1;
  width: max-content;
  margin-top: 60px;
  padding: 8px 12px;
  border-radius: 100px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  font-size: 13px;
  font-weight: 850;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 16px 45px rgba(18, 40, 34, 0.05);
}

.stat {
  display: flex;
  flex-direction: column;
  padding: 28px 34px;
}

.stat + .stat {
  border-left: 1px solid var(--line);
}

.stat strong {
  font-size: 24px;
  letter-spacing: -0.035em;
}

.stat span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding-block: 130px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.check-list li {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  font-weight: 650;
}

.check-list__icon {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--accent-dark);
  background: var(--accent-soft);
  font-size: 14px;
  font-weight: 900;
}

.process-section {
  padding: 92px;
  border-radius: 38px;
  background: var(--surface-soft);
}

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

.process-card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--accent) 14%, transparent);
  border-radius: 24px;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
}

.process-card > span {
  display: block;
  margin-bottom: 58px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

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

.conversion-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 80px;
  align-items: start;
}

.conversion-copy {
  position: sticky;
  top: 40px;
  padding-top: 28px;
}

.conversion-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 19px;
}

.conversion-price {
  display: flex;
  flex-direction: column;
  margin: 34px 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.conversion-price strong {
  font-size: 34px;
  letter-spacing: -0.04em;
}

.conversion-price span {
  color: var(--muted);
}

.honesty-note {
  font-size: 14px !important;
}

.form-card {
  min-height: 530px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}

.form-progress span {
  height: 5px;
  border-radius: 6px;
  background: var(--line);
}

.form-progress span.is-active {
  background: var(--accent);
}

.form-heading > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.form-heading h3 {
  margin-top: 5px;
  margin-bottom: 28px;
  font-size: 29px;
}

.form-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 16px;
}

.field {
  min-width: 0;
}

.field:has(textarea),
.field--checkbox {
  grid-column: 1 / -1;
}

.field > label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 780;
}

.field > label span {
  color: var(--accent);
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: var(--bg);
  transition:
    border-color 160ms ease,
    background-color 160ms ease;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
  border-color: color-mix(in srgb, var(--accent) 42%, var(--line));
}

.field small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.field--checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 550;
}

.field--checkbox input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
}

.field--checkbox a,
.footer__meta a,
.analytics-consent a {
  color: var(--accent-dark);
}

.field-error {
  min-height: 18px;
  display: block;
  margin-top: 4px;
  color: #bd2b2b;
  font-size: 12px;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #bd2b2b;
  background: #fff7f7;
}

.form-global-error {
  min-height: 24px;
  margin-top: 10px;
  color: #bd2b2b;
  font-size: 14px;
  font-weight: 700;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.success-card,
.inactive-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.success-card__icon,
.inactive-card__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--accent-dark);
  background: var(--accent-soft);
  font-size: 24px;
  font-weight: 900;
}

.success-card p,
.inactive-card p {
  max-width: 540px;
  color: var(--muted);
}

.success-card .button {
  margin-top: 18px;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  column-gap: 100px;
}

.faq-section .eyebrow,
.faq-section h2 {
  grid-column: 1;
}

.faq-list {
  grid-column: 2;
  grid-row: 1 / span 3;
  border-top: 1px solid var(--line);
}

.faq-list details {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  max-width: 700px;
  margin: 14px 0 0;
  color: var(--muted);
}

footer {
  min-height: 180px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer__meta {
  text-align: right;
}

.footer__meta p {
  margin: 0 0 8px;
}

.legal-page {
  width: min(calc(100% - 40px), 780px);
  margin: 0 auto;
  padding: 80px 0 120px;
  line-height: 1.7;
}

.legal-page h1 {
  margin: 14px 0 22px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.legal-page h2 {
  margin-top: 48px;
  font-size: 24px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.legal-page a {
  color: var(--accent-dark);
}

.legal-page__updated {
  font-size: 14px;
}

.page-loader,
.fatal-error {
  min-height: 100vh;
  display: grid;
  place-content: center;
  text-align: center;
}

.page-loader span {
  width: 34px;
  height: 34px;
  margin: 0 auto 14px;
  border: 3px solid var(--accent-soft);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 800ms linear infinite;
}

.launchpad {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.launchpad__inner {
  width: min(calc(100% - 40px), 760px);
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.launchpad__inner ul {
  padding-left: 20px;
}

.launchpad__inner li {
  margin: 10px 0;
}

.analytics-consent {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  width: min(calc(100% - 40px), 520px);
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.analytics-consent p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
}

.analytics-consent > div {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.analytics-consent .button {
  min-height: 42px;
  padding: 9px 14px;
  font-size: 13px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 920px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 58px 44px;
  }

  .hero__visual {
    min-height: 360px;
  }

  .split-section,
  .conversion-section,
  .faq-section {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .conversion-copy {
    position: static;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: auto;
  }

  .process-card > span {
    margin-bottom: 28px;
  }

  .faq-list {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .site-header,
  footer,
  .hero,
  .section,
  .stats {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .site-header {
    height: 72px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 42px 24px;
    border-radius: 28px;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 35px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero__visual {
    min-height: 320px;
  }

  .mock-card--chart,
  .mock-card--profile {
    width: 260px;
    height: 290px;
    right: 0;
  }

  .mock-card--signal {
    right: 25px;
    min-width: 245px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .stat + .stat {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding-block: 88px;
  }

  .process-section {
    padding: 58px 24px;
  }

  .form-card {
    min-height: 0;
    padding: 28px 20px;
  }

  .form-fields {
    grid-template-columns: 1fr;
  }

  .field:has(textarea),
  .field--checkbox {
    grid-column: auto;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .form-actions .button {
    width: 100%;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
  }

  .footer__meta {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
