:root {
  --ink: #141922;
  --ink-soft: #3e4652;
  --muted: #717987;
  --paper: #f7f5ef;
  --white: #ffffff;
  --line: #d9d5c8;
  --steel: #2e5e75;
  --copper: #b25f2a;
  --field: #596b3f;
  --signal: #d9a23a;
  --blueprint: #19354c;
  --shadow: 0 18px 52px rgba(20, 25, 34, 0.1);
  --page: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(20, 25, 34, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(20, 25, 34, 0.032) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
  color: var(--ink);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 4px;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(217, 213, 200, 0.92);
  background: rgba(247, 245, 239, 0.92);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
}

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

.nav-link,
.nav-button {
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  padding: 12px 16px;
}

.nav-link {
  color: var(--ink-soft);
}

.nav-button {
  background: var(--ink);
  color: var(--paper);
}

.hero {
  padding: 76px 0 70px;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.36fr);
  gap: 56px;
  align-items: end;
}

.kicker,
.eyebrow {
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin-top: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 68px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
}

.lead {
  max-width: 760px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.66;
}

.hero-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 26px;
}

.hero-note strong {
  display: block;
  font-size: 20px;
  line-height: 1.25;
}

.hero-note p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 15px;
}

.accent-bar {
  height: 12px;
  background:
    linear-gradient(90deg, var(--steel) 0 25%, var(--copper) 25% 50%, var(--field) 50% 75%, var(--signal) 75% 100%);
}

.section {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}

.section-white {
  background: rgba(255, 255, 255, 0.72);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(280px, 0.34fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 30px;
}

h2 {
  margin-top: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.1;
}

.section-copy {
  color: var(--ink-soft);
  font-size: 16px;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 16px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(20, 25, 34, 0.06);
  padding: 24px;
}

.card h3 {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.24;
}

.card p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 15px;
}

.list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 23px;
  color: var(--ink-soft);
  font-size: 15px;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper);
}

.steps {
  display: grid;
  border: 1px solid var(--line);
  background: var(--white);
}

.step {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 22px;
  border-bottom: 1px solid var(--line);
  padding: 23px;
}

.step:last-child {
  border-bottom: 0;
}

.step-index {
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
}

.step h3 {
  font-size: 20px;
  font-weight: 820;
  line-height: 1.24;
}

.step p {
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 15px;
}

.cta {
  background: var(--ink);
  color: var(--paper);
  padding: 72px 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(280px, 0.34fr);
  gap: 44px;
  align-items: center;
}

.cta .eyebrow {
  color: var(--signal);
}

.cta h2 {
  color: var(--paper);
}

.cta p {
  max-width: 660px;
  margin-top: 18px;
  color: rgba(247, 245, 239, 0.76);
}

.cta-actions {
  display: grid;
  gap: 12px;
}

.contact-link {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(247, 245, 239, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--paper);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  padding: 16px 20px 16px 24px;
}

.contact-link span:last-child {
  color: var(--signal);
}

@media (max-width: 900px) {
  .hero-grid,
  .section-head,
  .cta-grid,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 34px;
  }

  .nav-actions .nav-link {
    display: none;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--page));
  }

  .hero {
    padding: 48px 0;
  }

  h1 {
    font-size: 39px;
  }

  .lead {
    font-size: 16px;
  }

  .section {
    padding: 56px 0;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 20px;
  }
}
