:root {
  --green: #b6f42b;
  --green-deep: #82c21b;
  --ink: #0d1108;
  --bg: #fbfdf7;
  --muted: #5c6357;
  --card: #ffffff;
  --border: rgba(13, 17, 8, 0.08);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}
.glow-a {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(182, 244, 43, 0.55), transparent 70%);
  top: -180px;
  left: -160px;
}
.glow-b {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(130, 194, 27, 0.35), transparent 70%);
  bottom: -200px;
  right: -140px;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 24px 32px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.brand {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(24px, 6vw, 56px);
}

.logo {
  height: clamp(36px, 6vw, 52px);
  width: auto;
}

.hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: rgba(182, 244, 43, 0.12);
  border: 1px solid rgba(182, 244, 43, 0.3);
  padding: 8px 16px;
  border-radius: 999px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(182, 244, 43, 0.6);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(182, 244, 43, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(182, 244, 43, 0); }
  100% { box-shadow: 0 0 0 0 rgba(182, 244, 43, 0); }
}

h1 {
  font-size: clamp(32px, 6vw, 58px);
  line-height: 1.1;
  font-weight: 800;
  margin: 0;
  max-width: 16ch;
  letter-spacing: -0.02em;
}

.accent {
  background: linear-gradient(100deg, var(--green-deep), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--muted);
  max-width: 46ch;
  line-height: 1.6;
  margin: 0;
}

.countdown {
  display: flex;
  gap: clamp(10px, 3vw, 20px);
  margin-top: clamp(16px, 4vw, 32px);
}

.c-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px clamp(14px, 3vw, 22px);
  min-width: 68px;
  box-shadow: 0 6px 20px rgba(13, 17, 8, 0.04);
}

.c-num {
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}

.c-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 4px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: clamp(48px, 8vw, 80px);
}

.pillar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px 22px;
  text-align: left;
  box-shadow: 0 6px 20px rgba(13, 17, 8, 0.03);
}

.pillar-icon {
  color: var(--green-deep);
  font-size: 20px;
  margin-bottom: 10px;
}

.pillar h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
}

.pillar p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.footer {
  margin-top: auto;
  padding-top: clamp(40px, 8vw, 64px);
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 14px;
}

.socials a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  opacity: 0.7;
  transition: opacity 0.15s;
}

.socials a:hover {
  opacity: 1;
  color: var(--green-deep);
}
