/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --bg: #0c0a18;
  --bg2: #130f26;
  --card: #18142e;
  --card2: #1e1937;
  --border: #26203e;
  --border2: #362e5a;
  --green: #9ee034;
  --green-dark: #7ab827;
  --green-glow: rgba(158, 224, 52, 0.14);
  --purple: #9b4dff;
  --purple-soft: #c084fc;
  --purple-glow: rgba(155, 77, 255, 0.14);
  --text: #f0ecff;
  --text2: #9b91b5;
  --text3: #544d6e;
  --red: #e84040;
  --amber: #e5c15a;
  --r: 14px;
  --r-sm: 8px;
  --r-lg: 22px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
  font-family: inherit;
}
ul {
  list-style: none;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 96px 0;
}
.section-alt {
  background: var(--bg2);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-glow);
  border: 1px solid rgba(158, 224, 52, 0.28);
  border-radius: 999px;
  padding: 5px 14px;
}

.section-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 16px 0 12px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text2);
  line-height: 1.7;
  max-width: 520px;
}
.center {
  text-align: center;
}
.center .section-sub {
  margin: 0 auto;
}

.gradient-text {
  background: linear-gradient(90deg, var(--green), #c5f462);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 13px 26px;
  border: none;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--green);
  color: #0c1a00;
  box-shadow: 0 6px 28px rgba(158, 224, 52, 0.32);
}
.btn-primary:hover {
  background: #b2f040;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(158, 224, 52, 0.42);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
}
.btn-lg {
  font-size: 1.05rem;
  padding: 16px 32px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 20px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text2);
}
.check-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 10, 24, 0.88);
  backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo-text {
  display: inline-flex;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.logo-text .logo-img {
  height: 40px;
  width: auto;
  margin-right: 8px;
  display: block;
}
.logo-text .alien {
  color: rgb(157, 65, 255);
  /* color: var(--purple-soft); */
}
.logo-text .keeper {
  color: var(--green);
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 36px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 24px;
}
.hero-badge {
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  color: #e06534;
  /* color: var(--green); */
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 460px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-footnote {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 0.82rem;
  color: var(--text3);
}
.hero-footnote::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   PAIN SECTION
   ============================================================ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.pain-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  position: relative;
}
.pain-quote {
  font-size: 3.5rem;
  color: var(--border2);
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: 4px;
}
.pain-text {
  font-size: 0.93rem;
  color: var(--text2);
  line-height: 1.65;
}
.pain-text strong {
  color: var(--text);
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.feat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  transition:
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.feat-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.feat-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--green-glow);
  border: 1px solid rgba(158, 224, 52, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 16px;
}
.feat-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.feat-card p {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.6;
}

/* ============================================================
   SPOTLIGHT SECTIONS
   ============================================================ */
.spotlight-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  margin-bottom: 20px;
}
.spotlight-card.flip .spotlight-vis {
  order: -1;
}
.spotlight-text .tag {
  margin-bottom: 18px;
}
.spotlight-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.spotlight-text p {
  font-size: 0.95rem;
  color: var(--text2);
  line-height: 1.7;
}

.spotlight-vis {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--r);
  padding: 24px;
  min-height: 260px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Queue visual (spotlight 1) */
.queue-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.queue-row {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 9px;
  padding: 10px 12px;
  font-size: 0.75rem;
}
.queue-row.overdue {
  background: rgba(232, 64, 64, 0.1);
  border: 1px solid rgba(232, 64, 64, 0.2);
}
.queue-row.good {
  background: rgba(158, 224, 52, 0.07);
  border: 1px solid rgba(158, 224, 52, 0.14);
}
.queue-row.dnd-row {
  background: rgba(155, 77, 255, 0.07);
  border: 1px solid rgba(155, 77, 255, 0.18);
}
.queue-animal {
  font-weight: 700;
  color: var(--amber);
  font-size: 0.78rem;
}
.queue-detail {
  font-size: 0.65rem;
}
.queue-row.overdue .queue-detail {
  color: #e89090;
}
.queue-row.good .queue-detail {
  color: var(--text2);
}
.queue-row.dnd-row .queue-detail {
  color: var(--purple-soft);
}
.queue-pill {
  margin-left: auto;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}
.pill-red {
  background: var(--red);
  color: white;
}
.pill-ok {
  background: rgba(158, 224, 52, 0.2);
  color: var(--green);
}
.pill-dnd {
  background: rgba(155, 77, 255, 0.2);
  color: var(--purple-soft);
}

/* Chart visual (spotlight 2) */
.chart-wrap {
  width: 100%;
}
.chart-title {
  font-size: 0.62rem;
  color: var(--text3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 110px;
  padding: 0 2px;
}
.bar-grp {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  flex: 1;
}
.bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  transition: opacity 0.2s;
}
.bar.a {
  background: var(--green);
  opacity: 0.85;
}
.bar.b {
  background: var(--purple);
  opacity: 0.6;
}
.bar-labels {
  display: flex;
  gap: 8px;
  padding: 6px 2px 0;
  margin-bottom: 14px;
}
.bar-label {
  flex: 1;
  font-size: 0.58rem;
  color: var(--text3);
  text-align: center;
}
.bar-legend {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 18px;
}
.bar-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  color: var(--text2);
}
.bar-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
}
.chart-divider {
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.molt-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.molt-label {
  font-size: 0.6rem;
  color: var(--text2);
  width: 42px;
  flex-shrink: 0;
  text-align: right;
}
.molt-track {
  flex: 1;
  height: 5px;
  background: var(--border);
  border-radius: 3px;
  position: relative;
}
.molt-fill {
  height: 100%;
  border-radius: 3px;
  position: absolute;
  top: 0;
  left: 0;
}
.molt-val {
  font-size: 0.6rem;
  color: var(--text3);
  width: 38px;
}

/* Sharing visual (spotlight 3) */
.activity-feed {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.feed-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
}
.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}
.av-owner {
  background: rgba(155, 77, 255, 0.2);
  color: var(--purple-soft);
}
.av-helper {
  background: rgba(158, 224, 52, 0.15);
  color: var(--green);
}
.feed-who {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 2rem;
}
.feed-what {
  font-size: 0.68rem;
  color: var(--text2);
}
.feed-meta {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
  margin-top: 6px;
}
.feed-time {
  font-size: 0.6rem;
  color: var(--text3);
}
.role-badge {
  font-size: 0.6rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
}
.role-owner {
  background: rgba(155, 77, 255, 0.2);
  color: var(--purple-soft);
}
.role-helper {
  background: rgba(158, 224, 52, 0.15);
  color: var(--green);
}

.care-queue-img {
  width: 100%;
  max-width: 300px;
  border-radius: var(--r);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.analytics-img {
  width: 100%;
  max-width: 505px;
  border-radius: var(--r);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ============================================================
   ROADMAP
   ============================================================ */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 44px;
}
.roadmap-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
}
.roadmap-item.upcoming {
  opacity: 0.6;
}
.rm-icon {
  font-size: 1.3rem;
  margin-top: 1px;
  flex-shrink: 0;
}
.rm-status {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.rm-status.live {
  color: var(--green);
}
.rm-status.soon {
  color: var(--amber);
}
.rm-desc {
  font-size: 0.88rem;
  color: var(--text2);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--r-lg);
  padding: 52px;
  max-width: 540px;
  margin: 48px auto 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.pricing-plan {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 8px;
}
.pricing-tagline {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.pricing-value {
  font-size: 0.9rem;
  color: var(--text2);
  margin-bottom: 32px;
  line-height: 1.6;
}
.pricing-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin-bottom: 36px;
}
.pricing-perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text2);
}
.pricing-perks li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
}
.pricing-note {
  font-size: 0.78rem;
  color: var(--text3);
  margin-top: 16px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(150deg, #0f0c22 0%, #160e30 50%, #0c1808 100%);
  border-top: 1px solid var(--border);
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 1.05rem;
  color: var(--text2);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 32px 24px;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text3);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--text2);
}
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-social a {
  display: flex;
}
.footer-social img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text3);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 64px 24px;
  }
  /* .hero-visual {
    display: none;
  } */
  .pain-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .spotlight-card {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 32px;
  }
  .spotlight-card.flip .spotlight-vis {
    order: 0;
  }
  .roadmap-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card {
    padding: 36px 24px;
  }
}
@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 64px 0;
  }
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-actions .btn {
    justify-content: center;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-right {
    align-items: flex-start;
  }
}

/* ============================================================
   SCROLL FADE-IN
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 760px;
  background: #18142e;
  border: 1px solid #26203e;
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 9999;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  color: #9b91b5;
  line-height: 1.55;
}
#cookie-banner p {
  flex: 1;
  margin: 0;
}
#cookie-banner p a {
  color: #9b4dff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
#cookie-banner p a:hover {
  color: #c084fc;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: stretch;
}
#cookie-necessary,
#cookie-allow-all {
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 0.875rem;
  width: 148px;
}
#cookie-necessary {
  background: transparent;
  border: 1px solid #362e5a;
  color: #9b91b5;
  font-weight: 500;
  transition:
    border-color 0.2s,
    color 0.2s;
}
#cookie-necessary:hover {
  border-color: #9b91b5;
  color: #f0ecff;
}
#cookie-allow-all {
  background: #9ee034;
  border: none;
  color: #0c0a18;
  font-weight: 600;
  transition: background 0.2s;
}
#cookie-allow-all:hover {
  background: #7ab827;
}
@media (max-width: 580px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
  }
}
