.static-site {
  min-height: 100vh;
  margin: 0;
  background: #08080b;
  color: #eefcf4;
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.static-nav,
.static-section {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.static-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.static-brand {
  color: #56f08a;
  font-size: 22px;
  font-weight: 750;
  text-decoration: none;
}

.static-languages {
  display: flex;
  gap: 14px;
  font-size: 14px;
}

.static-languages a {
  color: #b9c7c0;
}

.static-languages a[aria-current="page"] {
  color: #56f08a;
}

.static-hero {
  display: grid;
  align-content: center;
  min-height: 72vh;
  padding: 52px 0 90px;
}

.static-eyebrow {
  margin: 0 0 18px;
  color: #56f08a;
  font:
    700 12px/1.4 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.static-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.static-hero p {
  max-width: 650px;
  margin: 26px 0 0;
  color: #c6d1cc;
  font-size: 20px;
  line-height: 1.65;
}

.static-cta {
  display: inline-block;
  width: fit-content;
  margin-top: 32px;
  padding: 14px 22px;
  border: 1px solid #22c995;
  border-radius: 999px;
  background: linear-gradient(135deg, #059669, #047857 58%, #065f46);
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.static-light {
  background: #f4f7f5;
  color: #122019;
}

.static-section {
  padding: 88px 0;
}

.static-section + .static-section {
  border-top: 1px solid #dbe6df;
}

.static-section h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.static-section p {
  max-width: 760px;
  margin: 22px 0 0;
  color: #52645b;
  font-size: 18px;
  line-height: 1.7;
}

.static-section ul {
  max-width: 760px;
  margin: 24px 0 0;
  padding-left: 22px;
  color: #384b41;
  line-height: 1.9;
}

.static-footer {
  padding: 38px 20px;
  background: #eef4f0;
  color: #52645b;
  text-align: center;
}

@media (max-width: 600px) {
  .static-nav {
    align-items: flex-start;
  }

  .static-languages {
    gap: 10px;
  }

  .static-section {
    padding: 64px 0;
  }
}
