:root {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: #171717;
  background: #fff;
  --gold: #efa900;
  --green: #245f2c;
  --ink: #111b24;
  --cream: #fff9ef;
  --line: #e2ded5;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
}
header {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 78px;
  padding: 0.75rem clamp(1rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: grid;
  grid-template-columns: auto auto;
  width: max-content;
  line-height: 0.85;
  text-decoration: none;
  font-size: 1.65rem;
  font-weight: 900;
}
.brand strong,
h1 em {
  color: #8a5900;
  font-style: normal;
}
.brand small {
  grid-column: 1/3;
  margin-top: 0.5rem;
  font-size: 0.54rem;
  font-weight: 600;
  color: #444;
}
header nav {
  display: flex;
  gap: 1.2rem;
  margin-left: auto;
}
header nav a {
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 750;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 760px;
  background: linear-gradient(110deg, #fff 30%, #fff3d4);
}
.hero > div {
  align-self: center;
  padding: clamp(4rem, 8vw, 8rem) 2rem clamp(4rem, 8vw, 8rem)
    clamp(1rem, 7vw, 7rem);
}
.eyebrow {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
h1 {
  font-size: clamp(3.2rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  margin: 0.6rem 0 1.5rem;
}
.hero > div > p:not(.eyebrow) {
  max-width: 710px;
  color: #4b4a44;
  font-size: 1.16rem;
  line-height: 1.65;
}
.actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.2rem;
  border-radius: 9px;
  font-weight: 850;
  text-decoration: none;
}
.primary {
  background: var(--gold);
  border: 1px solid #cf8f00;
}
.secondary {
  background: white;
  border: 1px solid #333;
}
.demo-note {
  display: block;
  max-width: 620px;
  margin-top: 1.3rem;
  color: #656159;
  line-height: 1.5;
}
.hero aside {
  display: grid;
  place-items: center;
  padding: 4rem;
  background: radial-gradient(circle, #ffd979, transparent 65%);
}
.phone {
  width: min(390px, 100%);
  min-height: 600px;
  padding: 2rem;
  border: 10px solid #151515;
  border-radius: 42px;
  background: #fff;
  box-shadow: 0 25px 70px #5c3d1433;
}
.phone > span {
  font-weight: 900;
}
.phone h2 {
  font-size: 1.7rem;
  margin: 3rem 0;
}
.stat {
  display: grid;
  padding: 1.4rem;
  background: #fff8e8;
  border-radius: 14px;
}
.stat b {
  font-size: 3rem;
}
.task {
  display: flex;
  justify-content: space-between;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}
.task b {
  color: var(--green);
  font-size: 0.8rem;
}
.paths {
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 7vw, 7rem);
}
.paths h2,
.promise h2 {
  font-size: clamp(2.8rem, 5.5vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin: 0.4rem 0 3rem;
}
.paths > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.paths article {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: 12px;
}
.paths article span {
  color: #9d6b00;
  font-weight: 900;
}
.paths article h3 {
  font-size: 1.4rem;
  margin: 2rem 0 0.5rem;
}
.paths article p {
  min-height: 80px;
  color: #5c5a53;
  line-height: 1.6;
}
.paths article a {
  color: var(--green);
  font-weight: 850;
  text-decoration: none;
}
.promise {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 7vw, 7rem);
  color: white;
  background: var(--ink);
}
.promise h2 {
  margin-bottom: 0;
}
.promise .eyebrow {
  color: #a9dca4;
}
.promise > p {
  color: #d2d8d4;
  font-size: 1.15rem;
  line-height: 1.7;
}
footer {
  display: flex;
  gap: 2rem;
  padding: 2rem clamp(1rem, 5vw, 5rem);
  background: #f4f0e8;
}
footer span {
  color: #5d5b55;
}
footer nav {
  display: flex;
  gap: 1rem;
  margin-left: auto;
}
footer a {
  text-decoration: none;
}
.demo-ribbon {
  position: sticky;
  top: 0;
  z-index: 99;
  padding: 0.7rem;
  text-align: center;
  color: #2b210b;
  background: #ffd15d;
  font-weight: 750;
}
.demo-ribbon a {
  margin-left: 1rem;
}
@media (max-width: 850px) {
  header nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero aside {
    padding: 2rem;
  }
  .paths > div {
    grid-template-columns: 1fr;
  }
  .paths article p {
    min-height: 0;
  }
  .promise {
    grid-template-columns: 1fr;
  }
  footer {
    flex-wrap: wrap;
  }
  footer nav {
    margin-left: 0;
    width: 100%;
    flex-wrap: wrap;
  }
}
@media (max-width: 500px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  .actions > * {
    width: 100%;
  }
  .phone {
    min-height: 520px;
  }
  .hero aside {
    padding: 1rem;
  }
  footer {
    flex-direction: column;
  }
}
