:root {
  --bg: #050806;
  --panel: rgba(11, 17, 13, 0.86);
  --panel-2: #0d1410;
  --line: rgba(90, 255, 170, 0.16);
  --text: #f3fff8;
  --muted: #97b0a0;
  --accent: #32f29a;
  --accent-2: #8dffbf;
  --shadow: 0 0 0 1px rgba(80, 255, 166, 0.08), 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --radius-sm: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(50, 242, 154, 0.18), transparent 20%),
    radial-gradient(circle at 80% 30%, rgba(50, 242, 154, 0.1), transparent 22%),
    linear-gradient(180deg, #060806 0%, #07100b 52%, #050806 100%);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.glow {
  position: absolute;
  inset: auto;
  width: 320px;
  height: 320px;
  filter: blur(70px);
  border-radius: 50%;
  background: rgba(50, 242, 154, 0.16);
  pointer-events: none;
  z-index: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(5, 8, 6, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(50, 242, 154, 0.2), rgba(50, 242, 154, 0.04));
  box-shadow: inset 0 0 0 1px rgba(141, 255, 191, 0.18), 0 8px 30px rgba(0, 0, 0, 0.35);
  color: var(--accent);
  font-size: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #03110a;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  box-shadow: 0 12px 32px rgba(50, 242, 154, 0.22);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.hero {
  position: relative;
  padding: 72px 0 30px;
  overflow: clip;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--accent-2);
  background: rgba(50, 242, 154, 0.08);
  box-shadow: inset 0 0 0 1px rgba(50, 242, 154, 0.12);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 10ch;
}

.hero p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.stat {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.stat strong {
  display: block;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin-bottom: 6px;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
}

.hero-card {
  position: relative;
  padding: 22px;
  background: linear-gradient(180deg, rgba(8, 14, 10, 0.98), rgba(10, 18, 12, 0.88));
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 520px;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(141, 255, 191, 0.08), transparent 25%),
    linear-gradient(135deg, transparent 40%, rgba(50, 242, 154, 0.08));
  pointer-events: none;
}

.screen {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.dots {
  display: flex;
  gap: 6px;
}

.dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.mini-card,
.service-card,
.review,
.faq-item,
.cta-panel,
.feature,
.pricing-card {
  background: var(--panel);
  border-radius: var(--radius-sm);
  box-shadow: inset 0 0 0 1px var(--line);
}

.mini-card {
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.mini-card strong,
.service-card h3,
.pricing-card h3,
.review h4,
.feature h3 {
  margin: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(50, 242, 154, 0.12);
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 700;
}

.progress {
  height: 9px;
  width: 100%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
  margin-top: 12px;
}

.progress span {
  display: block;
  width: 84%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: inherit;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pet-visual {
  position: relative;
  min-height: 190px;
  padding: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(
    135deg,
    rgba(50, 242, 154, 0.04),
    rgba(255, 255, 255, 0.015)
  );
}

.pet-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 78% 52%,
    rgba(50, 242, 154, 0.10),
    transparent 48%
  );
  pointer-events: none;
}

.pet-emoji {
  font-size: 72px;
  line-height: 1;
  margin-top: 10px;
  opacity: 0.92;
  transform: translateY(10px);
  filter: none;
  position: relative;
  z-index: 1;
}

section {
  padding: 42px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.7;
}

.services-grid,
.features-grid,
.reviews-grid,
.pricing-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 1px rgba(141, 255, 191, 0.2), 0 22px 50px rgba(0, 0, 0, 0.28);
}

.icon-box {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(50, 242, 154, 0.1);
  color: var(--accent);
  font-size: 24px;
  margin-bottom: 16px;
}

.service-card p,
.feature p,
.pricing-card p,
.review p,
.faq-answer,
.footer-copy {
  color: var(--muted);
  line-height: 1.7;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
}

.features-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.feature {
  padding: 22px;
  min-height: 220px;
}

.feature.large {
  min-height: 100%;
  background:
    radial-gradient(circle at 85% 10%, rgba(50, 242, 154, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(11, 17, 13, 0.96), rgba(11, 17, 13, 0.86));
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dff9eb;
  font-weight: 600;
}

.check i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-style: normal;
  background: rgba(50, 242, 154, 0.14);
  color: var(--accent);
  font-size: 12px;
}

.reviews-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review {
  padding: 22px;
}

.stars {
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #d7f8e5;
  font-size: 14px;
  font-weight: 700;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card {
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  transform: translateY(-6px);
  box-shadow: inset 0 0 0 1px rgba(141, 255, 191, 0.2), 0 24px 60px rgba(0, 0, 0, 0.28);
}

.price {
  font-size: 2.6rem;
  line-height: 1;
  margin: 18px 0 10px;
  font-weight: 800;
}

.price small {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
  display: grid;
  gap: 12px;
}

.price-list li {
  display: flex;
  gap: 10px;
  color: #ddf8e8;
}

.price-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
}

.faq-wrap {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 18px 20px;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border: none;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  padding: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, margin-top 0.25s ease;
  margin-top: 0;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  margin-top: 12px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background:
    radial-gradient(circle at 20% 50%, rgba(50, 242, 154, 0.16), transparent 25%),
    linear-gradient(180deg, rgba(10, 18, 12, 0.97), rgba(10, 18, 12, 0.88));
}

.cta-panel h3 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
}

.site-footer {
  padding: 30px 0 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  align-items: start;
}

.footer-title {
  margin: 0 0 12px;
  font-size: 15px;
  color: #dbffee;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-copy {
  margin-top: 20px;
  font-size: 13px;
}

.mobile-menu {
  display: none;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .hero-grid,
  .features-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .reviews-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav-links,
  .nav-actions .btn-secondary {
    display: none;
  }

  .mobile-menu {
    display: inline-flex;
  }

  .nav.open {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav.open .nav-links {
    display: grid;
    width: 100%;
    order: 3;
    padding: 10px 0 2px;
    gap: 14px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-stats,
  .dashboard-grid,
  .services-grid,
  .reviews-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    padding-bottom: 36px;
  }
}