:root {
  color-scheme: light;
  --ink: #111317;
  --muted: #626a73;
  --line: #e4e7eb;
  --soft: #f7f8fa;
  --brand: #ee3157;
  --brand-dark: #b91538;
  --black: #07080a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

.wrap {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--black);
  color: #fff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.logo {
  display: block;
  width: 166px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--brand);
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.hero {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 48px;
  padding: 70px 0 66px;
}

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

h1 {
  max-width: 520px;
  font-size: clamp(48px, 6.4vw, 82px);
  line-height: 0.98;
  font-weight: 880;
}

h2 {
  max-width: 620px;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.03;
  font-weight: 880;
}

.statement-line {
  max-width: 560px;
  margin-top: 24px;
  color: var(--ink);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.12;
  font-weight: 850;
}

.lead {
  max-width: 585px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.actions {
  margin-top: 28px;
}

.hero-img {
  width: 100%;
  display: block;
}

.section {
  padding: 76px 0;
}

.section.soft {
  background: var(--soft);
}

.split {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: start;
  gap: 48px;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: #fff0f4;
  font-size: 13px;
  font-weight: 850;
}

.body-copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

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

.card {
  min-height: 166px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.card::before {
  content: "";
  display: block;
  width: 34px;
  height: 5px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--brand);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.feature-pill {
  min-height: 72px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
  font-weight: 820;
}

.contact {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 48px;
  align-items: start;
}

.form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.field,
.full {
  display: grid;
  gap: 7px;
}

.full {
  grid-column: 1 / -1;
}

label {
  color: #3d4650;
  font-size: 13px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfd6de;
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

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

.hidden-field {
  position: absolute;
  left: -9999px;
}

.submit-button {
  width: 100%;
}

.form-status {
  min-height: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.form-status.success {
  color: #137a4f;
}

.form-status.error {
  color: var(--brand-dark);
}

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .wrap {
    width: min(100% - 28px, 680px);
  }

  .nav-links {
    display: none;
  }

  .hero,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .cards,
  .feature-list,
  .form {
    grid-template-columns: 1fr;
  }
}
