:root {
  color-scheme: dark;
  font-family: Inter, Arial, sans-serif;
  background: #07110f;
  color: #f4fbf9;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 12.5% 100%,
    radial-gradient(circle at 18% 16%, rgba(0, 209, 194, 0.16), transparent 30%),
    #07110f;
}

a {
  color: #52f0e5;
}

.static-nav,
.static-shell,
.static-footer {
  width: min(100% - 40px, 920px);
  margin: 0 auto;
}

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

.static-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f4fbf9;
  font-weight: 800;
  text-decoration: none;
}

.static-logo img {
  width: 34px;
  height: 34px;
}

.static-nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.static-shell {
  padding: 72px 0 64px;
}

.static-eyebrow {
  margin: 0 0 14px;
  color: #52f0e5;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 7vw, 74px);
  line-height: 0.95;
  letter-spacing: 0;
}

.static-intro {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(244, 251, 249, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.static-date {
  display: inline-block;
  margin-top: 22px;
  color: rgba(244, 251, 249, 0.62);
  font-size: 14px;
}

.static-section {
  padding: 28px 0;
  border-top: 1px solid rgba(244, 251, 249, 0.14);
}

.static-section h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.static-section p,
.static-section li {
  color: rgba(244, 251, 249, 0.76);
  line-height: 1.75;
}

.static-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.static-plan {
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(244, 251, 249, 0.14);
  background: rgba(255, 255, 255, 0.045);
  border-radius: 8px;
}

.static-plan strong {
  display: block;
  margin: 10px 0;
  font-size: 34px;
}

.static-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 28px 0 40px;
  border-top: 1px solid rgba(244, 251, 249, 0.14);
  color: rgba(244, 251, 249, 0.62);
  font-size: 14px;
}

.static-footer-links {
  display: flex;
  gap: 14px;
}

@media (max-width: 760px) {
  .static-nav,
  .static-shell,
  .static-footer {
    width: min(100% - 28px, 920px);
  }

  .static-nav,
  .static-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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