:root {
  --green: #6BCB2C;
  --dark-green: #4FA81D;
  --black: #111111;
  --white: #FFFFFF;
  --gray: #B8B8B8;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
}

h1, h2, h3, .brand {
  font-family: 'League Spartan', Impact, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
}

a { color: inherit; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.nav .brand { font-size: 22px; color: var(--black); display: flex; align-items: center; gap: 10px; }
.nav .brand span { color: var(--green); }
.nav .brand img { width: 32px; height: 32px; display: block; }
.nav a.cta {
  background: var(--green);
  color: var(--black);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}
.nav a.cta:hover { background: var(--dark-green); color: var(--white); }

/* Hero */
.hero {
  background: var(--black);
  color: var(--white);
  padding: 90px 0 80px;
  text-align: center;
}
.hero h1 {
  font-size: 52px;
  line-height: 1.08;
  color: var(--white);
  max-width: 780px;
  margin: 0 auto 22px;
}
.hero h1 .accent { color: var(--green); }
.hero p.sub {
  font-size: 19px;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--green);
  color: var(--black);
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--dark-green); color: var(--white); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  border: 1px solid #333;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--green); color: var(--green); }
.hero-note { margin-top: 18px; font-size: 13px; color: #777; }
.hero-shot {
  margin: 48px auto 0;
  max-width: 920px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.hero-shot img { display: block; width: 100%; height: auto; }

/* Sections */
section { padding: 72px 0; }
.section-title { text-align: center; margin-bottom: 12px; font-size: 34px; }
.section-sub { text-align: center; color: #555; max-width: 560px; margin: 0 auto 48px; font-size: 16px; }

/* Feature grid */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 26px;
}
.feature-card .icon {
  width: 40px; height: 40px;
  background: var(--green);
  border-radius: 8px;
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { color: #555; font-size: 14.5px; margin: 0; }

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step { text-align: center; }
.step .num {
  width: 44px; height: 44px;
  background: var(--black);
  color: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
  margin: 0 auto 16px;
}
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { color: #555; font-size: 14.5px; margin: 0; }

/* Sites row */
.sites {
  text-align: center;
  color: #999;
  font-size: 14px;
  padding: 28px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.sites .names { font-weight: 700; color: #444; margin-top: 8px; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 720px;
  margin: 0 auto;
}
.price-card {
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 32px;
}
.price-card.pro { border: 2px solid var(--green); position: relative; }
.price-card .badge {
  position: absolute; top: -12px; right: 24px;
  background: var(--green); color: var(--black);
  font-size: 11px; font-weight: 800; letter-spacing: 0.05em;
  padding: 4px 10px; border-radius: 999px; text-transform: uppercase;
}
.price-card h3 { font-size: 20px; margin-bottom: 4px; }
.price-card .price { font-size: 38px; font-weight: 800; margin: 12px 0 4px; }
.price-card .price span { font-size: 15px; font-weight: 500; color: #777; }
.price-card ul { list-style: none; padding: 0; margin: 20px 0 26px; }
.price-card li { padding: 7px 0; font-size: 14.5px; color: #333; }
.price-card li:before { content: "✓ "; color: var(--green); font-weight: 800; }
.price-card .toggle { display: flex; gap: 8px; margin-bottom: 14px; }
.price-card .toggle button {
  flex: 1; padding: 8px; border-radius: 6px; border: 1px solid #ddd;
  background: var(--white); cursor: pointer; font-size: 13px; font-weight: 600;
}
.price-card .toggle button.active { background: var(--black); color: var(--white); border-color: var(--black); }
.price-card .btn-primary, .price-card .btn-secondary { width: 100%; text-align: center; }
.price-card .btn-secondary { border-color: #ddd; color: var(--black); }

/* Footer */
footer {
  background: var(--black);
  color: var(--gray);
  padding: 36px 0;
  font-size: 13.5px;
  text-align: center;
}
footer a { color: var(--gray); text-decoration: none; margin: 0 10px; }
footer a:hover { color: var(--green); }
footer .copy { margin-top: 14px; color: #555; }

/* Simple content pages (privacy/success) */
.content-page { max-width: 760px; margin: 0 auto; padding: 64px 24px; }
.content-page h1 { font-size: 32px; margin-bottom: 8px; }
.content-page .updated { color: #999; font-size: 13px; margin-bottom: 36px; }
.content-page h2 { font-size: 20px; margin: 32px 0 10px; }
.content-page p, .content-page li { color: #333; font-size: 15px; }
.content-page ul { padding-left: 20px; }

@media (max-width: 720px) {
  .hero h1 { font-size: 36px; }
  .features, .steps, .pricing-grid { grid-template-columns: 1fr; }
}
