:root {
  color-scheme: dark;
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #121212;
  color: #f5f7fa;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #121212;
  color: #f5f7fa;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

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

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

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #a6adb8;
  font-size: 14px;
  font-weight: 800;
}

.nav a,
.footer-links a {
  text-decoration: none;
}

.nav a:hover,
.footer-links a:hover {
  color: #ffffff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  padding: 48px 0 34px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  border: 1px solid rgba(128, 238, 156, 0.2);
  background: rgba(128, 238, 156, 0.1);
  color: #9ef5b4;
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 20px 0 16px;
  font-size: clamp(44px, 8vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 14px;
  font-size: 26px;
  line-height: 1.15;
}

h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

p,
li {
  color: #d8dee7;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 650;
}

.lead {
  max-width: 760px;
  color: #d8dee7;
  font-size: 20px;
  line-height: 1.6;
}

.cta-panel,
.box {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  border-radius: 18px;
  padding: 22px;
}

.cta {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 16px;
  border-radius: 12px;
  background: #80ee9c;
  color: #101411;
  padding: 13px 18px;
  text-decoration: none;
  font-weight: 950;
}

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

.wide {
  grid-column: 1 / -1;
}

.samples ol,
.faq dl,
.links ul {
  margin: 0;
}

.samples li {
  margin-bottom: 16px;
}

.answer {
  color: #80ee9c;
  font-weight: 900;
}

.faq dt {
  color: #ffffff;
  font-weight: 950;
  margin-top: 18px;
}

.faq dd {
  margin: 6px 0 0;
  color: #d8dee7;
  line-height: 1.7;
  font-weight: 650;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 34px;
  padding: 28px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #a6adb8;
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 800px) {
  .top,
  .hero {
    grid-template-columns: 1fr;
  }

  .top {
    align-items: flex-start;
    flex-direction: column;
  }

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