:root {
  font-family: Arial, Helvetica, sans-serif;
  color: #262a24;
  background: #fff;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
a:focus-visible {
  outline: 3px solid #7d9b47;
  outline-offset: 5px;
}
html {
  scroll-behavior: smooth;
}
.wrap {
  width: min(1220px, calc(100% - 64px));
  margin-inline: auto;
}
.site-header {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-block: 28px;
}
.brand {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1.4px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.brand-mark {
  background: #c7f464;
  font-size: 25px;
  line-height: 34px;
  width: 34px;
  text-align: center;
  border-radius: 10px;
  margin-right: 9px;
}
.brand-dot {
  color: #8fb54c;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  font-size: 13px;
}
.site-header nav a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  white-space: nowrap;
  line-height: 1.2;
}
.header-login {
  min-width: 100px;
  min-height: 48px;
  flex-shrink: 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 22px;
  border-radius: 14px;
  background: #c7f464;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  transition: background 0.15s;
}
.button:hover {
  background: #b7e84e;
}
.button-large {
  padding: 20px 26px;
  font-size: 15px;
}
.hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 48px;
  padding-block: 70px 65px;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 1.7px;
  font-weight: 750;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #788566;
}
h1 {
  text-wrap: balance;
  font-size: clamp(40px, 4.6vw, 64px);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -2.5px;
  margin: 26px 0;
}
h1 em {
  font-style: normal;
  background: linear-gradient(transparent 70%, #d4f59d 70%);
  white-space: nowrap;
}
.hero-description {
  max-width: 450px;
  font-size: 16px;
  line-height: 1.9;
  color: #737a6d;
  margin-bottom: 30px;
}
.audiences {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-block: 20px;
  border-block: 1px solid #ecefe6;
  color: #7d8475;
  font-size: 13px;
}
.audiences-window {
  min-width: 0;
  flex: 1;
  overflow-x: auto;
}
.is-ready .audiences-window {
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 24px,
    #000 calc(100% - 24px),
    transparent
  );
}
.audiences-track {
  display: flex;
  width: max-content;
}
.audiences-list {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-shrink: 0;
  list-style: none;
  margin: 0;
  padding: 4px 26px 4px 0;
}
.audiences-list li {
  display: flex;
  align-items: center;
  gap: 26px;
  white-space: nowrap;
}
.audiences-list li::after {
  content: "·";
  color: #a7bd88;
}
.is-ready .audiences-track {
  animation: professions-scroll 110s linear infinite;
}
@keyframes professions-scroll {
  to {
    transform: translateX(-50%);
  }
}
.features {
  padding-block: 85px;
}
.section-intro {
  margin-bottom: 34px;
}
.section-intro h2,
.start-section h2 {
  font-size: 43px;
  letter-spacing: -1.9px;
  line-height: 1.2;
  font-weight: 650;
  margin: 8px 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
}
.feature-card {
  border-top: 2px solid #dce8c9;
  padding-top: 24px;
}
.feature-card h3 {
  font-size: 21px;
  letter-spacing: -0.5px;
  margin: 0 0 12px;
}
.feature-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: #737a6d;
}
.start-section {
  border-top: 1px solid #e6ebdf;
  padding-block: 45px 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.start-section h2 {
  font-size: 37px;
}
.start-section p:last-child {
  font-size: 13px;
  color: #879179;
  line-height: 1.8;
}
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-block: 30px;
  border-top: 1px solid #e6ebdf;
}
.site-footer .brand {
  font-size: 24px;
}
.site-footer > span,
.site-footer > a:last-child {
  font-size: 11px;
  color: #849176;
}
@media (max-width: 1000px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .feature-card:last-child {
    grid-column: 1 / -1;
  }
  .feature-card h3 {
    font-size: 18px;
  }
  .feature-card p {
    font-size: 13px;
  }
  .hero {
    gap: 30px;
  }
  h1 {
    letter-spacing: -2px;
  }
}
@media (max-width: 700px) {
  .wrap {
    width: calc(100% - 36px);
  }
  .site-header {
    padding-block: 22px;
    gap: 10px;
  }
  .brand {
    font-size: 24px;
  }
  .site-header nav {
    display: none;
  }
  .header-login {
    margin-left: auto;
    min-width: 80px;
    padding-inline: 16px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-block: 25px 38px;
    gap: 35px;
  }
  .hero h1 {
    font-size: clamp(38px, 8vw, 52px);
    letter-spacing: -1.8px;
  }
  .hero-description {
    font-size: 14px;
    line-height: 1.8;
  }
  .audiences {
    font-size: 10px;
    gap: 13px;
  }
  .features {
    padding-block: 48px;
  }
  .section-intro h2 {
    font-size: 35px;
  }
  .feature-grid {
    gap: 24px;
  }
  .start-section {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 40px;
  }
  .start-section h2 {
    font-size: 31px;
  }
  .site-footer {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
  }
  .site-footer > span {
    width: 100%;
    order: 2;
  }
}
@media (prefers-reduced-motion: reduce) {
  .is-ready .audiences-track {
    animation: none;
  }
  .is-ready .audiences-window {
    overflow-x: auto;
    mask-image: none;
  }
  .audiences-list[aria-hidden] {
    display: none;
  }
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
