:root {
  --yellow: #f0c92e;
  --gold: #d5b640;
  --olive: #a29258;
  --paper: #f2f2f3;
  --ink: #0b0c0c;
  --soft: rgba(242, 242, 243, 0.72);
  --faint: rgba(242, 242, 243, 0.42);
  --line: rgba(242, 242, 243, 0.12);
  --bad: #c45c4a;
  --good: #f0c92e;
  --radius: 24px;
  --max: 1120px;
  --header: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Manrope, "Segoe UI", sans-serif;
  background: var(--ink);
  color: var(--paper);
  line-height: 1.55;
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  display: flex;
  align-items: center;
  background: rgba(11, 12, 12, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Syne, sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand span:not(.brand-mark) {
  color: var(--yellow);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--yellow);
  color: var(--ink);
  font-family: Syne, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

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

.nav a {
  font-size: 0.9rem;
  color: var(--soft);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 8px;
  background: var(--paper);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  cursor: pointer;
}

.btn-primary {
  background: var(--yellow);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--line);
}

.hero {
  padding: 48px 0 32px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  font-family: Syne, sans-serif;
  font-size: clamp(2.5rem, 6.5vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  max-width: 14ch;
}

.hero p.lead {
  max-width: 42ch;
  margin: 20px 0 28px;
  font-size: 1.15rem;
  color: var(--soft);
}

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

.hero img.cover {
  width: 100%;
  height: min(58vh, 520px);
  object-fit: cover;
  border-radius: var(--radius);
}

.section {
  padding: 84px 0;
}

.section h2 {
  font-family: Syne, sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
  max-width: 18ch;
  margin-bottom: 18px;
}

.muted {
  color: var(--soft);
}

.vs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.vs article {
  border-radius: var(--radius);
  padding: 28px;
  min-height: 100%;
}

.vs .bad {
  background: #161616;
  border: 1px solid rgba(196, 92, 74, 0.35);
}

.vs .good {
  background: #14120a;
  border: 1px solid rgba(240, 201, 46, 0.45);
}

.vs h3 {
  font-family: Syne, sans-serif;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.vs .bad h3 {
  color: #e8a398;
}

.vs .good h3 {
  color: var(--yellow);
}

.vs ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.vs li {
  padding-left: 22px;
  position: relative;
  color: var(--soft);
}

.vs .bad li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: var(--bad);
  font-weight: 800;
}

.vs .good li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

th,
td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
}

td:nth-child(2) {
  color: #e8a398;
}

td:nth-child(3) {
  color: var(--yellow);
}

.funnel {
  display: grid;
  gap: 10px;
}

.funnel div {
  background: #161616;
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.funnel div:nth-child(1) {
  width: 100%;
}

.funnel div:nth-child(2) {
  width: 82%;
}

.funnel div:nth-child(3) {
  width: 58%;
}

.funnel div:nth-child(4) {
  width: 36%;
}

.funnel div:nth-child(5) {
  width: 18%;
  background: #3a201c;
  color: #e8a398;
}

.arrow {
  text-align: center;
  color: var(--yellow);
  font-family: Syne, sans-serif;
  font-size: 2rem;
  padding: 12px 0 28px;
}

.result {
  background: #14120a;
  border: 1px solid rgba(240, 201, 46, 0.4);
  border-radius: var(--radius);
  padding: 28px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: var(--radius);
}

.card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card span,
.card p {
  position: relative;
  z-index: 1;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 12, 12, 0.45);
}

.card .inner {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 1;
}

.card h3 {
  font-family: Syne, sans-serif;
  font-size: 1.5rem;
}

.calc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  background: #141414;
  border-radius: var(--radius);
  padding: 28px;
}

.calc label {
  display: block;
  font-size: 0.85rem;
  color: var(--olive);
  margin: 12px 0 6px;
}

.calc input {
  width: 100%;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0b0c0c;
  color: var(--paper);
  padding: 0 14px;
}

.calc-out strong {
  display: block;
  font-family: Syne, sans-serif;
  font-size: 3rem;
  color: var(--yellow);
  letter-spacing: -0.05em;
}

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

.step {
  background: #141414;
  border-radius: 18px;
  padding: 22px;
}

.step b {
  color: var(--yellow);
  font-family: Syne, sans-serif;
}

.step h3 {
  font-family: Syne, sans-serif;
  margin: 10px 0 8px;
}

.cta {
  background: var(--yellow);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 42px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.cta h2 {
  color: var(--ink);
  max-width: none;
}

.form {
  display: grid;
  gap: 10px;
}

.form input,
.form select {
  height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
}

.form .btn {
  width: 100%;
  background: var(--ink);
  color: var(--yellow);
}

.form-ok {
  display: none;
  font-weight: 800;
}

.form.is-ok .fields {
  display: none;
}

.form.is-ok .form-ok {
  display: block;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  z-index: 40;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

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

.faq p {
  margin-top: 8px;
  color: var(--soft);
}

.footer {
  padding: 28px 0 96px;
  color: var(--faint);
  font-size: 0.88rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 28px 0 48px;
}

.split a {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
}

.split img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split .copy {
  position: absolute;
  inset: auto 22px 22px;
  z-index: 1;
}

.split a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 12, 12, 0.4);
}

.quote {
  font-family: Syne, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
  line-height: 1.15;
  max-width: 22ch;
}

@media (max-width: 860px) {
  .nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px 24px;
    background: var(--ink);
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .vs,
  .cards,
  .steps,
  .calc,
  .cta,
  .split {
    grid-template-columns: 1fr;
  }

  .funnel div {
    width: 100% !important;
  }

  .sticky-cta {
    flex-direction: column;
    text-align: center;
  }

  .cta {
    padding: 24px;
  }
}
