:root {
  /* Brand */
  --color-primary: #22c55e;
  --color-primary-hover: #16a34a;

  /* Accent */
  --color-accent: #34d399;

  /* Neutrals */
  --color-neutral-dark: #0b0f0d;
  --color-neutral-mid: #111827;
  --color-neutral-light: #f9fafb;
  --color-neutral-muted: #9ca1a7;

  /* UI */
  --color-border: rgba(255,255,255,0.08);
  --color-glow: rgba(34,197,94,0.35);

  /* Layout */
  --max: 1100px;
  --pad: 18px;
}

* { box-sizing: border-box; }

/* Base */
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
}

a { color: inherit; text-decoration: none; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: var(--color-neutral-dark);
  border-bottom: 1px solid var(--color-border);
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand-name {
  font-weight: 800;
  letter-spacing: .2px;
}

/* Nav */
.nav-list {
  list-style: none;
  display: flex;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.nav-list a { opacity: .85; }
.nav-list a:hover { opacity: 1; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
  color: #07110a;
  font-weight: 950;
  letter-spacing: .2px;
  transform: translateZ(0);
  box-shadow: 0 0 0 0 rgba(0,0,0,0);
}

.btn:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  box-shadow: 0 18px 52px -22px rgba(34,197,94,0.58);
}

.btn-outline {
  background: rgba(0,0,0,0.22);
  color: var(--color-neutral-light);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  box-shadow: 0 18px 52px -22px rgba(34,197,94,0.58);
}

/* Hero */
.hero {
  padding: 72px 0;
  background:
    radial-gradient(1100px 420px at 12% 8%, rgba(34,197,94,0.28), transparent 60%),
    radial-gradient(800px 340px at 78% 28%, rgba(52,211,153,0.14), transparent 62%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,0));
  position: relative;
  overflow: hidden;
}

.hero::after{
  content:"";
  position:absolute;
  inset:-40px -40px auto -40px;
  height: 220px;
  background: linear-gradient(90deg, rgba(34,197,94,0.22), rgba(52,211,153,0.08), rgba(0,0,0,0));
  filter: blur(18px);
  opacity: .9;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-inner h1 {
  font-size: 2.6rem;
  margin: 0 0 10px;
  line-height: 1.1;
  text-shadow: 0 22px 60px rgba(0,0,0,0.55);
}

.hero-inner p {
  margin: 0;
  color: rgba(249,250,251,0.90);
  max-width: 64ch;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* ✅ LEVEL 2 Aggressive Badge */
.hero-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(34,197,94,0.30);
  background: linear-gradient(135deg, rgba(34,197,94,0.14), rgba(255,255,255,0.03));
  box-shadow:
    0 24px 80px -40px rgba(34,197,94,0.70),
    inset 0 0 0 1px rgba(255,255,255,0.06);
  max-width: fit-content;
}

.hero-logo-wrap {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(0,0,0,0.20);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 22px 70px -44px rgba(34,197,94,0.85);
}

.hero-logo {
  width: 84px;
  height: 84px;
  object-fit: contain;
  filter: drop-shadow(0 24px 44px rgba(34,197,94,0.55));
}

.hero-slogan {
  display: grid;
  gap: 3px;
  line-height: 1.02;
}

.hero-slogan-top {
  font-weight: 950;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: rgba(249,250,251,0.86);
}

.hero-slogan-bottom {
  font-weight: 1000;
  font-size: 1.7rem;
  letter-spacing: 0.1px;
  position: relative;
}

.hero-slogan-strong {
  color: var(--color-primary);
  text-shadow: 0 0 22px rgba(34,197,94,0.55);
  position: relative;
}

.hero-slogan-strong::after{
  content:"";
  position:absolute;
  left:-6px;
  right:-6px;
  bottom:-6px;
  height: 12px;
  background: linear-gradient(90deg, rgba(34,197,94,0.55), rgba(52,211,153,0.15), rgba(34,197,94,0.0));
  filter: blur(2px);
  border-radius: 999px;
  z-index: -1;
}

.hero-slogan-tagline {
  font-weight: 750;
  color: rgba(249,250,251,0.78);
  font-size: 0.95rem;
}

/* Proof Pills */
.hero-proof{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 18px;
}

.proof-pill{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.20);
  backdrop-filter: blur(8px);
  font-size: .95rem;
}

.proof-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background: var(--color-primary);
  box-shadow: 0 0 18px rgba(34,197,94,0.75);
}

/* Sections */
.section { padding: 44px 0; }

.section h2 {
  margin: 0 0 14px;
  font-size: 1.4rem;
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

/* Cards */
.card {
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
}

.thumb {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
}

/* Review Cards + Stars */
.review-card h3 { margin-top: 6px; }

.review-stars {
  color: var(--color-primary);
  font-size: 1.15rem;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 0 16px rgba(34, 197, 94, 0.50);
}

.home .review-stars { font-size: 1.2rem; }

/* Tablet */
@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Mobile */
@media (max-width: 540px) {
  .grid { grid-template-columns: 1fr; }

  .hero { padding: 58px 0; }

  .hero-inner h1 { font-size: 1.95rem; }

  .hero-brand {
    width: 100%;
    max-width: 100%;
  }

  .hero-logo-wrap {
    width: 76px;
    height: 76px;
  }

  .hero-logo {
    width: 64px;
    height: 64px;
  }

  .hero-slogan-bottom { font-size: 1.35rem; }
}

/* CTA */
.cta { border-top: 1px solid var(--color-border); }

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--color-border);
}

.footer-inner { display: grid; gap: 10px; }

.footer-small {
  opacity: .7;
  font-size: .9rem;
  margin-top: 8px;
}

/* Header polish + mobile nav */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: transparent;
  color: inherit;
  font-weight: 700;
}

.nav { border-top: 1px solid rgba(255,255,255,.08); }

.nav .nav-list {
  justify-content: center;
  flex-wrap: wrap;
  padding: 12px 0;
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-block; }

  .nav { display: none; }
  .nav.is-open { display: block; }

  .nav .nav-list {
    justify-content: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 12px 0 16px;
  }

  .nav .nav-list a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.10);
  }
}
