:root {
  color-scheme: light;
  --ink: #161512;
  --muted: #645f56;
  --paper: #f0ece3;
  --panel: #fbfaf5;
  --line: #d5cec0;
  --deep: #22201b;
  --moss: #596452;
  --oxide: #a85f3f;
  --sage: #c8d0bc;
  --chalk: #fffdf8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

main {
  overflow: hidden;
}

section {
  padding: clamp(44px, 7vw, 94px) clamp(18px, 5vw, 72px);
}

.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(135deg, rgba(251, 250, 245, 0.98), rgba(240, 236, 227, 0.9) 48%, rgba(89, 100, 82, 0.23)),
    var(--panel);
  border-bottom: 1px solid var(--line);
}

nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: var(--deep);
  font-size: 14px;
}

nav span {
  color: var(--muted);
  text-align: right;
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  align-items: center;
  gap: clamp(32px, 7vw, 84px);
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 850;
  color: var(--moss);
}

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

h1 {
  max-width: 880px;
  font-size: clamp(45px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
  margin-bottom: 24px;
  font-weight: 760;
}

h2 {
  max-width: 840px;
  font-size: clamp(35px, 5vw, 55px);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 22px;
  font-weight: 750;
}

h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.intro,
.panel p,
article p,
.step p,
.timeline p {
  color: var(--muted);
  line-height: 1.65;
}

.intro {
  max-width: 720px;
  font-size: 20px;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 850;
  border: 1px solid var(--deep);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--oxide);
}

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

.secondary {
  color: var(--deep);
  background: rgba(255, 253, 248, 0.8);
}

.phone {
  position: relative;
  padding: 18px;
  border: 1px solid var(--deep);
  border-radius: 30px;
  background: #22201b;
  box-shadow: 0 24px 80px rgba(34, 32, 27, 0.24);
}

.phone-top {
  display: flex;
  gap: 6px;
  margin: 4px 0 20px;
}

.phone-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  opacity: 0.9;
}

.step {
  padding: 18px;
  margin-bottom: 12px;
  border-radius: 18px;
  background: var(--chalk);
  animation: rise 700ms ease both;
}

.step:nth-child(3) {
  animation-delay: 120ms;
}

.step:nth-child(4) {
  animation-delay: 240ms;
}

.step small {
  color: var(--moss);
  font-weight: 850;
  text-transform: uppercase;
}

.step strong {
  display: block;
  margin: 8px 0;
  color: var(--deep);
}

.proof-band {
  padding-top: 28px;
  padding-bottom: 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.proof-band p {
  margin: 0;
  color: var(--muted);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.chips span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--deep);
  font-size: 13px;
  font-weight: 750;
}

.fit,
.faq {
  background: var(--chalk);
}

.fit-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f3ea;
}

article span {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--oxide);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: 16px;
  background: var(--paper);
}

.panel {
  border-radius: 8px;
  border: 1px solid var(--line);
  padding: clamp(28px, 5vw, 54px);
  background: var(--panel);
}

.panel.dark {
  background: var(--deep);
  color: white;
}

.panel.dark .eyebrow,
.panel.dark p {
  color: #d8d0c2;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  line-height: 1.6;
  color: var(--muted);
}

li:last-child {
  border-bottom: 0;
}

li strong {
  color: var(--deep);
}

.journey {
  background: var(--deep);
  color: white;
}

.journey .eyebrow,
.journey .timeline p {
  color: #d8d0c2;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.timeline div {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.07);
}

.timeline strong {
  display: block;
  margin-bottom: 12px;
}

.faq-grid article {
  min-height: 210px;
  background: var(--panel);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 880px) {
  .hero {
    min-height: auto;
  }

  nav,
  .proof-band {
    align-items: flex-start;
    flex-direction: column;
  }

  nav span {
    text-align: left;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
    padding-top: 56px;
  }

  .fit-grid,
  .faq-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  article,
  .timeline div {
    min-height: auto;
  }

  .chips {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  section {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 34px;
  }

  .intro {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }
}
