* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f5f8f1;
  color: #111a15;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid #dfe6da;
  background: #ffffff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 26px;
  font-weight: 900;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 750;
  color: #2b332e;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  background: #276c45;
  color: #ffffff;
  padding: 0 22px;
  text-decoration: none;
  font-weight: 900;
}

.button.secondary {
  border: 1px solid #b9c6b7;
  background: #ffffff;
  color: #111a15;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #101712;
  color: #ffffff;
  padding: clamp(56px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(10 15 12 / 0.76), rgb(10 15 12 / 0.9)),
    url("/daybot-mark.svg") center / cover;
  content: "";
}

.hero-inner,
.section-inner {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 22px;
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.1);
  padding: 8px 12px;
  color: #8cffbc;
  font-size: 14px;
  font-weight: 850;
}

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

h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(44px, 8vw, 84px);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
}

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

.lead {
  max-width: 780px;
  margin-bottom: 34px;
  color: rgb(255 255 255 / 0.8);
  font-size: clamp(18px, 2.5vw, 23px);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.section {
  padding: clamp(48px, 8vw, 88px) clamp(20px, 5vw, 72px);
}

.section.white {
  background: #ffffff;
}

.section.dark {
  background: #111a15;
  color: #ffffff;
}

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

.card {
  border: 1px solid #dbe5d7;
  border-radius: 8px;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 1px 2px rgb(17 26 21 / 0.05);
}

.dark .card {
  border-color: rgb(255 255 255 / 0.14);
  background: rgb(255 255 255 / 0.06);
}

.card p,
.body-copy {
  color: #59645d;
  font-size: 17px;
  line-height: 1.7;
}

.dark .card p,
.dark .body-copy {
  color: rgb(255 255 255 / 0.72);
}

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

.list li {
  border: 1px solid #dbe5d7;
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
  font-weight: 750;
  line-height: 1.5;
}

.footer {
  border-top: 1px solid #dfe6da;
  background: #ffffff;
  padding: 28px clamp(20px, 5vw, 72px);
  color: #59645d;
  font-size: 14px;
  font-weight: 650;
}

@media (max-width: 780px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}
