:root {
  --bg: #050805;
  --bg2: #081108;
  --text: #d7ffd7;
  --muted: #89b489;
  --line: rgba(120, 255, 120, 0.10);
  --glass: rgba(20, 35, 20, 0.22);
  --glass-strong: rgba(10, 25, 10, 0.34);
  --green: #6dff6d;
  --green-soft: #98ff98;
  --green-deep: #2aff7a;
  --shadow: 0 0 30px rgba(80, 255, 120, 0.15);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 50% 30%, rgba(70, 255, 70, 0.08), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(70, 255, 70, 0.05), transparent 30%),
    linear-gradient(180deg, var(--bg2), var(--bg));
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body {
  position: relative;
}

.noise,
.grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.grid {
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 95%);
  opacity: 0.6;
}

.noise {
  opacity: 0.035;
  background-image:
    radial-gradient(circle at 20% 20%, #ffffff 0.5px, transparent 0.5px),
    radial-gradient(circle at 80% 40%, #ffffff 0.5px, transparent 0.5px),
    radial-gradient(circle at 40% 80%, #ffffff 0.5px, transparent 0.5px);
  background-size: 9px 9px;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 48px 24px 32px;
}

.hero {
  flex: 1 1 auto;
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 32px;
  padding-top: 3vh;
}

.logo-wrap {
  width: min(900px, 92vw);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.logo {
  width: 100%;
  max-width: 820px;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 18px rgba(100, 255, 100, 0.12))
    drop-shadow(0 0 48px rgba(100, 255, 100, 0.08));
}

.hero-copy {
  text-align: center;
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green-soft);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.82;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(40px, 8vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: #e9ffe9;
  text-shadow: 0 0 24px rgba(100, 255, 100, 0.10);
}

.sub {
  margin: 14px auto 0;
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 19px);
  line-height: 1.65;
}

.cta-zone {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 6px;
}

.cta {
  position: relative;
  width: min(1100px, 95vw);
  min-height: 180px;
  border-radius: 40px;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  overflow: hidden;

  border: 1px solid rgba(130, 255, 130, 0.28);
  background:
    linear-gradient(135deg, rgba(10, 20, 10, 0.42), rgba(20, 40, 20, 0.18)),
    rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  box-shadow:
    inset 0 0 0 1px rgba(160, 255, 160, 0.06),
    0 0 30px rgba(70, 255, 70, 0.08),
    0 18px 80px rgba(0, 0, 0, 0.45);

  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cta::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 42px;
  padding: 1px;
  background: linear-gradient(
    120deg,
    rgba(180,255,180,0.06),
    rgba(100,255,100,0.45),
    rgba(180,255,180,0.06)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.cta::after {
  content: "";
  position: absolute;
  width: 45%;
  height: 220%;
  top: -60%;
  left: -18%;
  transform: rotate(18deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(130, 255, 130, 0.14),
    rgba(210, 255, 210, 0.04),
    transparent
  );
  filter: blur(6px);
  transition: left 0.45s ease;
}

.cta:hover {
  transform: translateY(-4px) scale(1.005);
  border-color: rgba(140, 255, 140, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(170, 255, 170, 0.08),
    0 0 50px rgba(70, 255, 70, 0.16),
    0 24px 100px rgba(0, 0, 0, 0.52);
}

.cta:hover::after {
  left: 72%;
}

.cta-label {
  position: relative;
  z-index: 1;
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: lowercase;
  color: #d9ffd9;
  text-shadow:
    0 0 12px rgba(90,255,90,0.18),
    0 0 24px rgba(90,255,90,0.06);
}

.cta-meta {
  position: relative;
  z-index: 1;
  font-size: clamp(14px, 2vw, 18px);
  color: var(--green-soft);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .page {
    padding: 26px 16px 20px;
  }

  .hero {
    gap: 20px;
    padding-top: 2vh;
  }

  .cta {
    min-height: 150px;
    border-radius: 28px;
  }

  .cta::before {
    border-radius: 30px;
  }
}
