:root {
  --navy-950: #1f253f;
  --navy-900: #2c3457;
  --navy-800: #3a4370;
  --navy-100: #e6e8ee;
  --navy-50: #f3f4f7;
  --lime: #afd024;
  --lime-dark: #7d9809;
  --muted: #9ea3b2;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--navy-950);
  color: var(--navy-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

a {
  color: var(--lime);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.nav {
  border-bottom: 1px solid rgba(243, 244, 247, 0.08);
  padding: 20px 0;
}

.nav-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-50);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #d4ee4d, var(--lime) 60%, var(--lime-dark));
  box-shadow: 0 2px 6px rgba(175, 208, 36, 0.3);
  position: relative;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 35% 30%, rgba(255, 255, 255, 0.6), transparent 40%);
}

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

.nav-links a {
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--navy-50);
  text-decoration: none;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

h1 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 12px;
}

h1 .accent {
  color: var(--lime);
}

.meta {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 48px;
}

h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

h2 .accent-bar {
  display: inline-block;
  width: 4px;
  height: 18px;
  background: var(--lime);
  border-radius: 2px;
  margin-right: 10px;
  vertical-align: -2px;
}

h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--navy-50);
}

p, li {
  color: rgba(243, 244, 247, 0.82);
  font-size: 16px;
  margin-bottom: 12px;
}

ul, ol {
  padding-left: 22px;
  margin-bottom: 12px;
}

li {
  margin-bottom: 6px;
}

strong {
  color: var(--navy-50);
  font-weight: 600;
}

.hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 96px 24px 64px;
  text-align: center;
}

.hero h1 {
  font-size: 56px;
  letter-spacing: -1.5px;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin: 16px auto 0;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime);
  color: var(--navy-950);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 24px;
  border-radius: 14px;
  margin-top: 32px;
  transition: transform 0.15s ease;
}

.cta:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.footer {
  border-top: 1px solid rgba(243, 244, 247, 0.08);
  padding: 32px 24px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

.footer a {
  color: var(--muted);
  margin: 0 12px;
}

.footer a:hover {
  color: var(--navy-50);
  text-decoration: none;
}

@media (max-width: 600px) {
  h1 { font-size: 32px; }
  .hero h1 { font-size: 40px; }
  h2 { font-size: 19px; }
  .container { padding: 40px 20px 64px; }
  .hero { padding: 64px 20px 48px; }
  .nav-links { gap: 16px; font-size: 13px; }
}
</content>
</invoke>