/* ─── Background effects ──────────────────────────────────────────────── */
.bg-effects {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
}
.blur-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(108,255,155,0.7) 0%, transparent 70%);
}
.blur-2 {
  width: 600px;
  height: 600px;
  bottom: -200px;
  right: -150px;
  background: radial-gradient(circle, rgba(46,220,122,0.5) 0%, transparent 70%);
}
.blur-3 {
  width: 450px;
  height: 450px;
  top: 40%;
  left: 45%;
  background: radial-gradient(circle, rgba(168,255,200,0.35) 0%, transparent 70%);
}

/* ─── Eyebrow / section labels ────────────────────────────────────────── */
.eyebrow,
.section-label,
.micro-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 14px;
}

.micro-label {
  color: var(--text-muted);
  margin-bottom: 6px;
  font-size: 11px;
  letter-spacing: 0.12em;
}

/* ─── Section intro block ─────────────────────────────────────────────── */
.section-intro {
  max-width: 720px;
  margin-bottom: 36px;
}
.section-intro h2 {
  font-size: 36px;
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-intro p {
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 620px;
}

/* ─── Split callout (2-column side-by-side) ──────────────────────────── */
.split-callout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 100px;
  padding: 40px;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-soft);
  align-items: start;
}
.split-callout h2 {
  font-size: 32px;
  line-height: 1.15;
  margin-top: 8px;
}
.split-callout p {
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 12px;
}
.split-callout p:last-child { margin-bottom: 0; }
.split-callout strong {
  color: var(--green-highlight);
  font-weight: 600;
}

@media (max-width: 900px) {
  .split-callout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px;
  }
  .split-callout h2 { font-size: 26px; }
}

/* ─── Feature grid — 3 cols on desktop ────────────────────────────────── */
@media (min-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 700px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  transition: 0.25s ease;
  padding: 28px 24px;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(108,255,155,0.3);
  box-shadow: 0 0 25px rgba(108,255,155,0.08);
}
.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 16px;
  color: var(--green-highlight);
}
.feature-card p {
  color: var(--text-soft);
  line-height: 1.55;
  font-size: 14px;
}
.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(108,255,155,0.25), rgba(46,220,122,0.1));
  border: 1px solid rgba(108,255,155,0.25);
}

/* ─── How-it-works steps ──────────────────────────────────────────────── */
.how-grid .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.step-card {
  padding: 28px 24px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: 0.25s ease;
}
.step-card:hover {
  border-color: rgba(108,255,155,0.25);
  transform: translateY(-3px);
}
.step-number {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--green-primary);
}
.step-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}
.step-card p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
}
@media (max-width: 768px) {
  .how-grid .steps { grid-template-columns: 1fr; }
}

/* ─── Animals section ─────────────────────────────────────────────────── */
.animal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.animal-chip {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(255,255,255,0.04);
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
  transition: 0.2s ease;
}
.animal-chip:hover {
  border-color: rgba(108,255,155,0.4);
  color: var(--green-highlight);
  background: rgba(108,255,155,0.06);
  transform: translateY(-2px);
}

/* ─── CTA & waitlist form polish ──────────────────────────────────────── */
.cta-section {
  border: 1px solid var(--border-soft);
  background: linear-gradient(135deg, var(--bg-card), rgba(108,255,155,0.04));
}
.cta-section h2 {
  font-size: 32px;
  margin-bottom: 12px;
}
.cta-section p {
  color: var(--text-soft);
  margin-bottom: 20px;
}
.waitlist-form {
  max-width: 520px;
  margin: 20px auto 0;
}
.waitlist-form button {
  color: #041109;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s ease;
}
.waitlist-form button:hover {
  background: var(--green-secondary);
  box-shadow: 0 0 24px rgba(108,255,155,0.3);
}
.form-message {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 14px;
}
@media (max-width: 600px) {
  .waitlist-form {
    flex-direction: column;
  }
  .waitlist-form button {
    width: 100%;
  }
}

/* ─── Footer polish ───────────────────────────────────────────────────── */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 30px 0;
  border-top: 1px solid var(--border-soft);
  font-size: 13px;
  text-align: left;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--green-highlight);
}
@media (max-width: 600px) {
  .site-footer {
    justify-content: center;
    text-align: center;
  }
}

/* ─── Hero responsive collapse ──────────────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
  }
  .hero-copy h1 {
    font-size: 38px;
  }
  .section h2 {
    font-size: 28px;
  }
}

/* ─── Global image sizing guardrails ─────────────────────────────────── */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.logo-icon {
  height: 36px !important;
  width: auto !important;
  max-width: 40px !important;
}

.hero-logo {
  max-width: 240px !important;
  width: 100% !important;
  height: auto !important;
  margin: 12px 0 !important;
}

.hero-visual {
  max-width: 380px;
  width: 100%;
  justify-self: center;
}
.phone-shell {
  max-width: 100%;
  width: 100%;
}
.phone-shell img,
.phone-screen img {
  max-width: 100%;
  height: auto;
}

.feature-icon,
.insight-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.eye-mark,
.eye-mark * {
  width: 100% !important;
  height: 100% !important;
  max-width: 40px !important;
  max-height: 40px !important;
}

/* ─── Button styling — override anchor defaults ───────────────────────── */
a.btn,
.btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  padding: 14px 26px !important;
  border-radius: 14px !important;
  font-weight: 600 !important;
  min-height: 52px;
}
a.btn-primary,
.btn-primary {
  background: var(--green-primary) !important;
  color: #041109 !important;
  border: none;
}
a.btn-secondary,
.btn-secondary {
  background: transparent !important;
  color: var(--text-main) !important;
  border: 1px solid var(--border-soft);
}
a.btn:hover {
  text-decoration: none !important;
}

/* ─── Container + overflow safety ─────────────────────────────────────── */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  background: var(--bg-main) !important;
  color: var(--text-main) !important;
  min-height: 100vh;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px 24px 40px;
  width: 100%;
}

.site-header {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

/* ─── Desktop layout (900px+) ─────────────────────────────────────────── */
@media (min-width: 900px) {
  .hero {
    display: grid !important;
    grid-template-columns: 1.1fr 0.9fr !important;
    gap: 60px !important;
    align-items: start;
    margin-top: 60px;
  }
  .hero-copy {
    grid-column: 1;
    grid-row: 1;
  }
  .hero-visual {
    grid-column: 2;
    grid-row: 1;
    max-width: 380px;
    justify-self: end;
    align-self: center;
  }
  .stats {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 680px !important;
    margin-top: 40px;
  }

  .feature-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
  }

  .how-grid .steps {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
  }

  .split-callout {
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    padding: 56px;
  }
}

/* ─── Mid-range (700–899px) ───────────────────────────────────────────── */
@media (max-width: 899px) {
  .hero {
    grid-template-columns: 1fr !important;
  }
  .hero-visual {
    max-width: 320px;
    margin: 0 auto;
  }
  .stats {
    grid-template-columns: 1fr 1fr 1fr !important;
    max-width: 100% !important;
  }
}

@media (max-width: 899px) and (min-width: 700px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 699px) {
  .feature-grid {
    grid-template-columns: 1fr !important;
  }
  .hero-logo { max-width: 180px !important; }
  .logo-icon { height: 32px !important; }
  .hero-visual { max-width: 320px; }
}

@media (max-width: 600px) {
  .hero-logo { max-width: 150px !important; }
}

/* ─── Headline width constraint ───────────────────────────────────────── */
.hero-copy h1 {
  max-width: 540px;
}
.hero-copy p {
  max-width: 520px;
}
/* ─── Force dark background everywhere ────────────────────────────────── */
html {
  background: #05080A !important;
}

body {
  background: #05080A !important;
  color: #FFFFFF !important;
}

main,
.container {
  background: transparent !important;
}