:root {
  --bg: #06110c;
  --bg-soft: #0c1812;
  --panel: rgba(10, 24, 18, 0.78);
  --panel-strong: rgba(13, 32, 23, 0.96);
  --line: rgba(113, 255, 170, 0.16);
  --line-strong: rgba(113, 255, 170, 0.34);
  --text: #f2fff7;
  --muted: #95b8a2;
  --green: #48f08f;
  --green-deep: #123b26;
  --green-soft: #b7ffd2;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(72, 240, 143, 0.16), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(72, 240, 143, 0.1), transparent 22%),
    linear-gradient(180deg, #04100b 0%, #08120f 42%, #040705 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 78%);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 88px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(180deg, #8bffb7, #24b665);
  box-shadow: 0 0 30px rgba(72, 240, 143, 0.65);
}

.topbar-link {
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-soft);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.topbar-link:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: rgba(72, 240, 143, 0.08);
}

.hero {
  padding: 6px 0 48px;
}

.hero-grid,
.proof-layout {
  display: grid;
  gap: 24px;
}

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

.proof-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-copy,
.feature-card,
.proof-card,
.stats-band article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 48px;
  min-height: 640px;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 240, 143, 0.14), transparent 70%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
}

h1 {
  max-width: 13ch;
  font-size: clamp(3.5rem, 7vw, 6.4rem);
}

h1 span {
  color: var(--green);
  text-shadow: 0 0 30px rgba(72, 240, 143, 0.25);
}

.hero-text,
.section-copy,
.feature-card p,
.proof-card p,
.stats-band span {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 64ch;
  margin: 22px 0 28px;
  font-size: 1.12rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(180deg, #6dffab 0%, #39c977 100%);
  color: #041009;
  box-shadow: 0 12px 34px rgba(57, 201, 119, 0.32);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--green-soft);
  border-color: var(--line);
}

.button-full {
  width: 100%;
}

.hero-points,
.proof-card--list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points li {
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--green-soft);
  background: rgba(72, 240, 143, 0.06);
}

main {
  display: grid;
  gap: 26px;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stats-band article {
  padding: 24px;
}

.stats-band strong {
  display: block;
  margin-bottom: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  color: var(--green);
}

.benefits-section,
.proof-section {
  padding: 24px 0 0;
}

.section-heading {
  max-width: 980px;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  max-width: 24ch;
}

.proof-section h2 {
  max-width: 30ch;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.proof-card {
  padding: 26px;
}

.feature-card__index {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.feature-card h3,
.proof-card h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.proof-card--quote {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.proof-card--quote p {
  font-size: 1.3rem;
  color: var(--text);
}

.proof-card--quote span {
  color: var(--green-soft);
}

.proof-card--list ul {
  display: grid;
  gap: 12px;
}

.proof-card--list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--panel-strong);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(113, 255, 170, 0.12);
}

.footer-branding,
.footer-note {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.footer-branding {
  padding: 24px;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-branding p,
.footer-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer-notices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.footer-note {
  padding: 24px;
}

.footer-note h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #74ffb4 0%, #37cf78 100%);
  color: #05110b;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(57, 201, 119, 0.34);
}

@media (max-width: 1024px) {
  .hero-grid,
  .proof-layout,
  .site-footer,
  .footer-notices,
  .benefits-grid,
  .stats-band {
    grid-template-columns: 1fr;
  }

  h1,
  h2 {
    max-width: none;
  }

  .hero-copy {
    min-height: auto;
    padding: 38px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 24px, 1180px);
    padding-top: 18px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 26px;
  }

  .hero-copy,
  .feature-card,
  .proof-card,
  .footer-branding,
  .footer-note,
  .stats-band article {
    border-radius: 22px;
  }

  .hero-copy,
  .feature-card,
  .proof-card,
  .footer-branding,
  .footer-note {
    padding: 22px;
  }

  .hero-copy {
    min-height: auto;
  }

  .hero-actions,
  .button,
  .topbar-link {
    width: 100%;
  }

  .hero-points {
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 12px;
    left: 12px;
    bottom: 12px;
  }
}
