:root {
  --bg: #a9e8e2;
  --white: #ffffff;
  --accent: #e63946;
  --accent-soft: rgba(230, 57, 70, 0.12);
  --ink: #0e2e2c;
  --muted: rgba(14, 46, 42, 0.7);
  --line: rgba(14, 46, 42, 0.15);
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Poppins', Arial, sans-serif;
}

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

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons (all real links -- no <button> elements, so every CTA stays crawlable) */
.btn {
  display: inline-block;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: #c92a37;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}

.btn-ghost:hover {
  background: #fff;
  color: var(--ink);
}

/* Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 3px solid var(--accent);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  font-family: 'Love Ya Like A Sister', cursive;
  font-size: 2rem;
  color: var(--ink);
}

/* Hero (kept dark so video/overlay text stays readable) */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 20%, #143f3a 0%, #0b201d 65%);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 120px 24px 80px;
  color: #fff;
}

.hero h1 {
  font-family: 'Love Ya Like A Sister', cursive;
  font-weight: 400;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  line-height: 1.1;
  margin: 0 0 22px;
  letter-spacing: 0.01em;
}

.hero .subhead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 40px;
  line-height: 1.6;
}

.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sections (generic) */
section {
  padding: 100px 0;
}

.section-header {
  font-family: 'Love Ya Like A Sister', cursive;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  text-align: center;
  margin: 0 0 56px;
  letter-spacing: 0.01em;
}

/* Section 2: Problem cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pain-card {
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 36px 26px;
  text-align: center;
}

.pain-card h3 {
  font-size: 1.15rem;
  margin: 0 0 10px;
}

.pain-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

/* Section 3: Manifesto */
.manifesto {
  background: var(--bg);
}

.manifesto-quote {
  max-width: 760px;
  margin: 0 auto 44px;
  padding: 0;
  border: none;
  font-size: 1.3rem;
  line-height: 1.65;
  font-style: italic;
  text-align: center;
  color: var(--ink);
}

.badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.badge {
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Section 4: Product menu */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.menu-card {
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 36px 26px;
}

.menu-card h3 {
  font-size: 1.3rem;
  margin: 0 0 10px;
}

.menu-card p {
  color: var(--muted);
  margin: 0 0 20px;
  line-height: 1.5;
}

.status {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
}

/* Section 5: 3-step plan */
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step-card {
  text-align: center;
  padding: 0 12px;
}

.step-num {
  font-family: 'Love Ya Like A Sister', cursive;
  font-size: 3.8rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 1.1rem;
  margin: 0 0 8px;
}

.step-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* Section 6: Lead generator */
.leadgen {
  background: var(--bg);
}

.leadgen-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 56px 40px;
  box-shadow: 0 0 40px rgba(230, 57, 70, 0.25);
}

.leadgen-box h2 {
  font-family: 'Love Ya Like A Sister', cursive;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 16px;
  letter-spacing: 0.01em;
}

.leadgen-box p {
  color: var(--muted);
  margin: 0 0 30px;
  line-height: 1.5;
}

.leadgen-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.leadgen-form input[type="email"] {
  flex: 1 1 260px;
  padding: 14px 18px;
  border-radius: 6px;
  border: 1px solid var(--accent);
  background: rgba(255, 255, 255, 0.35);
  color: var(--ink);
  font-size: 0.95rem;
  font-family: 'Poppins', Arial, sans-serif;
}

.leadgen-form input[type="email"]::placeholder {
  color: var(--muted);
}

/* Section 7: Footer */
.site-footer {
  border-top: 3px solid var(--accent);
  padding: 60px 0 36px;
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  margin: 26px 0 34px;
  font-size: 1.6rem;
}

.footer-social a {
  transition: color 0.15s ease, transform 0.15s ease;
}

.footer-social a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.copyright {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 28px;
}

@media (max-width: 800px) {
  .card-grid,
  .menu-grid,
  .step-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 72px 0;
  }
}
