:root {
  --bg: #060a08;
  --bg-elevated: #0c120f;
  --bg-card: #121a15;
  --bg-card-hover: #182018;
  --border: rgba(61, 139, 46, 0.22);
  --border-strong: rgba(74, 222, 128, 0.4);
  --purple: #3d8b2e;
  --purple-bright: #4ade80;
  --purple-dim: #2d6a22;
  --purple-glow: rgba(61, 139, 46, 0.35);
  --text: #f4faf6;
  --muted: #9cb0a4;
  --green: #4ade80;
  --green-bg: rgba(74, 222, 128, 0.1);
  --radius: 18px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(45, 106, 34, 0.25), transparent),
    radial-gradient(circle at 85% 15%, rgba(61, 139, 46, 0.1), transparent 30%),
    radial-gradient(circle at 10% 80%, rgba(74, 222, 128, 0.06), transparent 25%);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(6, 10, 8, 0.88);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px var(--purple-glow));
}

.brand span {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.brand-pilot {
  color: var(--purple-bright);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav a {
  color: var(--muted);
  font-size: 0.92rem;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}

.nav a:hover {
  color: var(--text);
  background: rgba(61, 139, 46, 0.1);
}

.lang-select {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font: inherit;
  min-width: 9.5rem;
  max-width: 100%;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
  font-size: 1.1rem;
}

.hero {
  padding: 3rem 0 1.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: linear-gradient(135deg, rgba(61, 139, 46, 0.15), rgba(45, 106, 34, 0.06));
  color: var(--purple-bright);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 24px rgba(61, 139, 46, 0.12);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin: 0 0 1rem;
  background: linear-gradient(135deg, #fff 0%, #e9d5ff 55%, #c084fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .lead {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 42ch;
  margin-bottom: 1.35rem;
}

.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.pillar {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.88rem;
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn--primary {
  background: linear-gradient(135deg, #c084fc, #7c3aed);
  color: #fff;
  box-shadow: 0 12px 32px rgba(45, 106, 34, 0.35);
}

.btn--primary:not(.btn--disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(45, 106, 34, 0.45);
}

.btn--disabled {
  opacity: 0.75;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-icon {
  width: 1.15em;
  height: 1.15em;
}

.cta-hint {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.hero-visual {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow), 0 0 60px rgba(61, 139, 46, 0.15);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(6, 6, 12, 0.5));
  pointer-events: none;
  z-index: 1;
}

.hero-visual img {
  width: 100%;
}

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.metric {
  text-align: center;
  padding: 1rem 0.5rem;
  border-radius: 14px;
  background: rgba(61, 139, 46, 0.05);
  border: 1px solid var(--border);
}

.metric-emoji {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.metric-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.section {
  padding: 4.5rem 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(61, 139, 46, 0.05), transparent);
}

.section-head {
  margin-bottom: 2rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple-bright);
  margin-bottom: 0.5rem;
}

.section h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.025em;
}

.section .section-lead {
  color: var(--muted);
  max-width: 62ch;
  margin: 0;
  font-size: 1.05rem;
}

.questions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.75rem;
  margin: 2rem 0;
  padding: 0;
}

.questions li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.15s, background 0.15s;
}

.questions li:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
}

.q-emoji {
  font-size: 1.35rem;
  line-height: 1.2;
  flex-shrink: 0;
}

.why-close {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: linear-gradient(135deg, rgba(61, 139, 46, 0.1), rgba(74, 222, 128, 0.05));
  font-size: 1.02rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.feature-card--wide {
  grid-column: 1 / -1;
}

@media (min-width: 700px) {
  .feature-card--wide {
    grid-column: span 2;
  }
}

.icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(61, 139, 46, 0.2), rgba(45, 106, 34, 0.08));
  border: 1px solid var(--border);
  color: var(--purple-bright);
  margin-bottom: 0.85rem;
}

.icon-wrap svg {
  width: 22px;
  height: 22px;
}

.feature-card h3 {
  margin: 0 0 0.45rem;
  color: var(--text);
  font-size: 1.08rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.insights {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.insight {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--green);
  background: var(--green-bg);
  border-radius: 0 12px 12px 0;
  color: #bbf7d0;
  font-size: 0.92rem;
}

.future-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.85rem;
  padding: 0;
  margin: 0;
}

.future-list li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.future-list .icon-wrap {
  margin: 0;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.future-list .icon-wrap svg {
  width: 20px;
  height: 20px;
}

.rewards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.reward-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, border-color 0.2s;
}

.reward-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.reward-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.reward-card figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  font-weight: 600;
  font-size: 1rem;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.reward-emoji {
  font-size: 1.2rem;
}

.vision-box {
  text-align: center;
  padding: 3rem 1.5rem;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(circle at top, rgba(61, 139, 46, 0.18), transparent 55%),
    var(--bg-card);
  box-shadow: 0 0 80px rgba(61, 139, 46, 0.1);
}

.vision-logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 0 20px var(--purple-glow));
}

.vision-pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.vision-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.vision-pillar span:first-child {
  font-size: 1.75rem;
}

.vision-tagline {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--purple-bright);
  margin: 0.5rem 0;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0 2.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-brand img {
  width: 28px;
  height: 28px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--purple-bright);
  text-decoration: none;
  font-weight: 500;
}

.footer-social a:hover {
  text-decoration: underline;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 1.25rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 1.1rem 0;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--purple-bright);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  line-height: 1.6;
}

.notify-box {
  margin-top: 1.75rem;
  padding: 1.25rem 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.notify-title {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.notify-lead {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.notify-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.notify-input {
  flex: 1 1 12rem;
  min-width: 0;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font: inherit;
}

.notify-input:focus {
  outline: 2px solid var(--purple-dim);
  outline-offset: 2px;
}

.notify-consent {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--muted);
  cursor: pointer;
}

.notify-consent input {
  margin-top: 0.2rem;
  accent-color: var(--purple);
}

.notify-msg {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
}

.notify-msg--success {
  color: var(--green);
}

.notify-msg--error {
  color: #f87171;
}

.notify-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.share-bar {
  margin-top: 1.5rem;
}

.share-label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.55rem;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font: inherit;
  font-size: 0.85rem;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.share-btn:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
}

.share-btn[data-copied]::after {
  content: ' ✓ ' attr(data-copied);
  color: var(--green);
}

.footer-product {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-legal a,
.footer-social a {
  color: var(--purple-bright);
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
}

.btn--ghost:hover {
  border-color: var(--border-strong);
}

.legal-page {
  padding: 3rem 0 4rem;
}

.legal-page h1 {
  margin: 0 0 0.5rem;
}

.legal-eyebrow {
  color: var(--purple-bright);
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.legal-intro {
  color: var(--muted);
  margin-bottom: 2rem;
}

.legal-page section {
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.15rem;
  margin: 0 0 0.6rem;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.error-page {
  min-height: 80vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem 1rem;
}

.error-box {
  max-width: 32rem;
}

.error-code-old {
  margin: 1rem 0 0;
  font-size: 1rem;
  color: var(--muted);
  text-decoration: line-through;
  opacity: 0.5;
}

.error-page .error-code {
  font-size: 5.5rem;
  margin: 0.15rem 0 0.5rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--green), var(--purple-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.error-tagline {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--purple-bright);
}

.error-lead {
  color: var(--muted);
  margin: 0 0 0.75rem;
  line-height: 1.65;
}

.error-hint {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
  font-style: italic;
}

.error-footer-note {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.error-footer-note a {
  color: var(--purple-bright);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .metrics-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
  }

  .nav--open {
    display: flex;
  }

  .notify-row {
    flex-direction: column;
  }

  .notify-submit {
    width: 100%;
  }

  .header-inner {
    position: relative;
  }
}

.dashboard-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow), 0 0 60px rgba(61, 139, 46, 0.12);
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.dash-species {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green-bg);
  color: var(--green);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.dash-score-wrap {
  text-align: center;
  margin: 1.25rem 0;
}

.dash-score-label {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.dash-score {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  text-shadow: 0 0 30px rgba(74, 222, 128, 0.35);
}

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.dash-metric {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem;
}

.dash-metric-label {
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.dash-metric-value {
  font-size: 1.05rem;
  font-weight: 600;
}

.dash-metric-status {
  font-size: 0.7rem;
  color: var(--green);
  margin-top: 0.15rem;
}

.dash-insight {
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid rgba(250, 204, 21, 0.25);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font-size: 0.82rem;
  color: #fde68a;
  line-height: 1.45;
}

.species-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.species-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 0.75rem;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 500;
  transition: border-color 0.15s, background 0.15s;
}

.species-chip:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
}

.species-chip span:first-child {
  font-size: 1.6rem;
}

.reward-card--text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}

.species-chip--more {
  border-style: dashed;
  border-color: var(--border-strong);
  color: var(--purple-bright);
  font-weight: 600;
}

.reward-card--text .reward-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--purple-bright);
  margin-bottom: 0.35rem;
}
