/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #f4f9f1;
  --bg-alt: #e8f2e6;
  --fg: #0d2b1a;
  --fg-muted: #3d6b4a;
  --accent: #84cc16;
  --accent-dark: #5a9e10;
  --surface: #ffffff;
  --border: rgba(13,43,26,0.12);
  --radius: 12px;
  --font-display: 'Bebas Neue', cursive;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244,249,241,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--fg);
}

.nav-name { font-weight: 700; }

.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
}

/* === HERO === */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 48px 100px;
  min-height: 85vh;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(132,204,22,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13,43,26,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: 1px;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

/* Hero primary CTA — links to /design */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--accent);
  color: var(--fg);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-body);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-primary-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(132,204,22,0.35);
}

.hero-cta-note {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(132,204,22,0.12);
  border: 1px solid rgba(132,204,22,0.25);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-dark);
}

/* Hero right: art */
.hero-right {
  display: flex;
  justify-content: center;
  position: relative;
}

.art-container {
  position: relative;
  width: 300px;
}

.tshirt-art {
  width: 300px;
  height: 340px;
  filter: drop-shadow(0 20px 60px rgba(13,43,26,0.15));
}

.accent-circle {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(132,204,22,0.3);
}

.accent-1 { width: 180px; height: 180px; top: -20px; right: -40px; }
.accent-2 { width: 100px; height: 100px; bottom: 60px; left: -30px; border-style: dashed; }

.accent-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  top: 30px;
  right: 10px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.price-tag {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--fg);
  color: var(--accent);
  border-radius: 100px;
  padding: 10px 20px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(13,43,26,0.2);
}

.price-label { font-size: 11px; color: rgba(132,204,22,0.7); }
.price-value { font-family: var(--font-display); font-size: 28px; }
.price-sub { font-size: 11px; color: rgba(132,204,22,0.7); }

/* === SECTION COMMON === */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: 0.5px;
  line-height: 1.05;
  color: var(--fg);
}

.section-desc {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 16px auto 0;
  line-height: 1.7;
}

/* === HOW IT WORKS === */
.how-it-works {
  padding: 100px 48px;
  background: var(--fg);
  color: var(--bg);
}

.how-it-works .section-tag { color: var(--accent); }
.how-it-works .section-title { color: var(--bg); }

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}

.step {
  flex: 1;
  padding: 0 32px;
  text-align: center;
}

.step-number {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.7;
}

.step-icon { margin-bottom: 20px; }

.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.5px;
  color: var(--bg);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 15px;
  color: rgba(244,249,241,0.6);
  line-height: 1.65;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(132,204,22,0.4), rgba(132,204,22,0.1));
  margin-top: 50px;
  flex-shrink: 0;
}

/* === PRODUCT CATALOG === */
.product-catalog {
  padding: 100px 48px;
  background: var(--bg);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13,43,26,0.1);
}

.product-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--fg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}

.product-art {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.product-art svg { width: 100%; max-width: 120px; }

.product-name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.5px;
  color: var(--fg);
  margin-bottom: 8px;
}

.product-detail {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--accent-dark);
}

/* === PROOF === */
.proof {
  padding: 80px 48px;
  background: var(--bg-alt);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto 60px;
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--accent-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px 32px;
  border-left: 3px solid var(--accent);
}

.testimonial p {
  font-size: 15px;
  color: var(--fg);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 12px;
}

.testimonial cite {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: normal;
}

/* === MANIFESTO === */
.manifesto {
  padding: 100px 48px;
  background: var(--fg);
  color: var(--bg);
}

.manifesto-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 62px);
  letter-spacing: 0.5px;
  line-height: 1.05;
  color: var(--bg);
  margin-bottom: 28px;
}

.manifesto-body {
  font-size: 17px;
  color: rgba(244,249,241,0.7);
  line-height: 1.75;
  margin-bottom: 20px;
}

.manifesto-visual {
  margin-top: 48px;
  border-radius: 16px;
  overflow: hidden;
}

.manifesto-visual svg {
  width: 100%;
  height: auto;
  display: block;
}

/* === FOOTER === */
.footer {
  padding: 48px;
  text-align: center;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--fg);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.footer-legal {
  font-size: 13px;
  color: rgba(61,107,74,0.6);
}

/* === NAV LINKS (shop link + active state) === */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 7px 16px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}

.nav-link:hover,
.nav-link--active {
  background: rgba(132,204,22,0.12);
  color: var(--accent-dark);
}

/* === HERO: secondary CTA + social proof counter === */
.btn-secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: transparent;
  color: var(--fg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn-secondary-cta:hover {
  border-color: var(--accent);
  background: rgba(132,204,22,0.06);
}

.hero-social-proof { margin-top: 20px; }

.hero-crew-count {
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 500;
}

.hero-crew-count strong { color: var(--accent-dark); }

/* === SHOP PAGE === */
.shop-hero {
  background: var(--fg);
  color: var(--bg);
  padding: 80px 48px 64px;
  text-align: center;
}

.shop-hero-inner { max-width: 680px; margin: 0 auto; }

.shop-hero .section-tag {
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}

.shop-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: 0.5px;
  color: var(--bg);
  margin-bottom: 20px;
}

.shop-sub {
  font-size: 17px;
  color: rgba(244,249,241,0.7);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 28px;
}

.shop-hero-meta { margin-top: 8px; }

.shop-badge {
  display: inline-block;
  background: rgba(132,204,22,0.15);
  border: 1px solid rgba(132,204,22,0.3);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

.shop-catalog {
  background: var(--bg);
  padding: 80px 48px;
}

.shop-catalog-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.shop-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(13,43,26,0.1);
}

.shop-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.shop-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: var(--fg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  z-index: 1;
}

.shop-card-header {
  background: var(--fg);
  padding: 28px 20px 12px;
  text-align: center;
}

.shop-card-preview {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}

.shop-card-preview svg { width: 100%; height: auto; display: block; }

.shop-card-demo-label {
  font-size: 11px;
  color: rgba(244,249,241,0.45);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 8px;
  padding-bottom: 4px;
}

.shop-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.shop-product-name {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.5px;
  color: var(--fg);
  margin-bottom: 6px;
}

.shop-price-range {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--accent-dark);
  margin-bottom: 18px;
}

.shop-price-note {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg-muted);
}

.shop-specs {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}

.shop-specs li {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}

.shop-specs li::before {
  content: '✓ ';
  color: var(--accent-dark);
  font-weight: 700;
}

.shop-specs li:last-child { border-bottom: none; }

.shop-card-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.shop-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  background: var(--accent);
  color: var(--fg);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-body);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.shop-btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }

.shop-btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: transparent;
  color: var(--fg-muted);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.shop-btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: rgba(132,204,22,0.05);
}

.shop-trust {
  background: var(--bg-alt);
  padding: 32px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.shop-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-muted);
  padding: 8px 28px;
}

.trust-icon { font-size: 16px; }
.trust-divider { width: 1px; height: 24px; background: var(--border); }

/* === WAITLIST MODAL === */
.wl-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,43,26,0.6);
  backdrop-filter: blur(6px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.wl-modal.is-open { display: flex; }

.wl-modal-box {
  background: var(--surface);
  border-radius: 16px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 32px 80px rgba(13,43,26,0.25);
  animation: modal-in 0.2s ease;
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.wl-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--fg-muted);
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.wl-modal-close:hover { background: var(--bg-alt); }

.wl-modal-header { margin-bottom: 28px; }

.wl-modal-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 10px;
}

.wl-modal-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.5px;
  color: var(--fg);
  margin-bottom: 10px;
}

.wl-modal-sub {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

.wl-form { display: flex; flex-direction: column; gap: 14px; }
.wl-field { display: flex; flex-direction: column; gap: 5px; }

.wl-label { font-size: 13px; font-weight: 600; color: var(--fg); }

.wl-input {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  outline: none;
  transition: border-color 0.15s;
}

.wl-input:focus { border-color: var(--accent); }
.wl-select { appearance: none; cursor: pointer; }

.wl-status { font-size: 13px; color: #c0392b; min-height: 18px; }

.wl-btn-submit {
  padding: 14px;
  background: var(--accent);
  color: var(--fg);
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}

.wl-btn-submit:hover { background: var(--accent-dark); }
.wl-btn-submit:disabled { opacity: 0.65; cursor: not-allowed; }

.wl-fine-print { font-size: 12px; color: var(--fg-muted); text-align: center; margin-top: 6px; }

.wl-success { text-align: center; padding: 20px 0; }
.wl-success-icon { font-size: 48px; margin-bottom: 16px; }

.wl-success-title {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--fg);
  margin-bottom: 12px;
}

.wl-success-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.wl-btn-design {
  display: inline-flex;
  align-items: center;
  padding: 13px 24px;
  background: var(--accent);
  color: var(--fg);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}

.wl-btn-design:hover { background: var(--accent-dark); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .shop-catalog-inner { grid-template-columns: 1fr; }
  .shop-catalog { padding: 60px 24px; }
  .shop-hero { padding: 60px 24px 48px; }
  .trust-divider { display: none; }
  .trust-item { padding: 6px 16px; }  .hero {
    grid-template-columns: 1fr;
    padding: 60px 24px 80px;
    text-align: center;
  }
  .hero-left { order: 1; }
  .hero-right { order: 0; }
  .hero-headline { font-size: 52px; }
  .hero-sub { margin: 0 auto 32px; }
  .hero-pills { justify-content: center; }
  .hero-cta { justify-content: center; }
  .hero-social-proof { text-align: center; }
  .art-container { margin: 0 auto; }
  .steps { flex-direction: column; align-items: center; }
  .step { padding: 0 0 40px; }
  .step-connector { width: 2px; height: 40px; margin: 0; }
  .products-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .nav { padding: 16px 24px; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: 44px; }
  .proof-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 32px; }
  .stat-value { font-size: 38px; }
  .wl-modal-box { padding: 28px 20px; }
  .shop-trust { padding: 24px; }
}

/* === LOGOS PAGE — Lawn Lifestyle Series drop gallery === */

.logos-hero {
  background: #0d2b1a;
  padding: 80px 48px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.logos-hero::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(132,204,22,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.logos-hero-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(132,204,22,0.65);
  margin-bottom: 20px;
}
.logos-hero-headline {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(42px, 7vw, 72px);
  color: #84cc16;
  line-height: 1;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.logos-hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.6);
  max-width: 560px; margin: 0 auto 32px;
  line-height: 1.6;
}
.logos-hero-meta {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(132,204,22,0.12); border: 1px solid rgba(132,204,22,0.25);
  border-radius: 100px; padding: 8px 20px;
  font-size: 14px; color: #84cc16; font-weight: 500;
}

.logos-grid {
  padding: 64px 48px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 768px) {
  .logos-grid { grid-template-columns: 1fr; padding: 40px 24px; }
  .logos-hero { padding: 60px 24px 48px; }
}

.drop-tile {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(13,43,26,0.1);
  box-shadow: 0 4px 20px rgba(13,43,26,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.drop-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13,43,26,0.12);
}
.drop-tile-mockup {
  background: #0d2b1a;
  padding: 40px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  position: relative;
}
.drop-tile-badge {
  position: absolute; top: 14px; right: 14px;
  background: rgba(132,204,22,0.15);
  border: 1px solid rgba(132,204,22,0.3);
  border-radius: 6px; padding: 3px 10px;
  font-size: 11px; font-weight: 600;
  color: #84cc16; letter-spacing: 0.5px;
  text-transform: uppercase;
}
.drop-tile-badge--v3 { background: rgba(132,204,22,0.2); }
.drop-mockup-svg { width: 160px; height: auto; }
.drop-tile-body { padding: 28px 28px 24px; }
.drop-tile-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 32px; letter-spacing: 2px; color: #0d2b1a;
  margin-bottom: 8px;
}
.drop-tile-copy {
  font-size: 14px; color: #3d6b4a; line-height: 1.65;
  margin-bottom: 20px;
}
.drop-tile-cta {
  display: inline-block; background: #84cc16; color: #0d2b1a;
  padding: 11px 24px; border-radius: 10px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.3px;
  cursor: pointer; border: none; transition: background 0.15s;
  width: 100%; text-align: center;
}
.drop-tile-cta:hover { background: #6db80e; }
.drop-share-row {
  display: flex; align-items: center; gap: 8px;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid rgba(13,43,26,0.08);
}
.share-label { font-size: 12px; color: #7a9b83; font-weight: 500; }
.share-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px; border-radius: 6px; border: none;
  font-size: 12px; font-weight: 600; cursor: pointer;
  transition: background 0.15s;
}
.share-btn--x { background: #0d2b1a; color: #fff; }
.share-btn--x:hover { background: #1a3a1c; }
.share-btn--copy { background: rgba(132,204,22,0.12); color: #5a9e10; border: 1px solid rgba(132,204,22,0.3); }
.share-btn--copy:hover { background: rgba(132,204,22,0.2); }

.drop-modal {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(13,43,26,0.55); backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
}
.drop-modal.is-open { display: flex; }
.drop-modal-box {
  background: #fff; border-radius: 16px;
  width: 92%; max-width: 440px;
  padding: 36px 32px;
  position: relative;
  max-height: 90vh; overflow-y: auto;
}
.drop-modal-close {
  position: absolute; top: 16px; right: 18px;
  background: none; border: none; font-size: 22px;
  cursor: pointer; color: #7a9b83; line-height: 1;
}
.drop-modal-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: #84cc16; margin-bottom: 10px;
}
.drop-modal-headline {
  font-family: 'Bebas Neue', cursive;
  font-size: 30px; letter-spacing: 2px; color: #0d2b1a; margin-bottom: 6px;
}
.drop-modal-slug {
  display: inline-block; background: #0d2b1a; border-radius: 6px;
  padding: 3px 12px; font-family: 'Bebas Neue', cursive;
  font-size: 18px; color: #84cc16; letter-spacing: 2px;
  margin-bottom: 20px;
}
.drop-modal-sub { font-size: 14px; color: #3d6b4a; margin-bottom: 20px; line-height: 1.6; }
.drop-form-field { margin-bottom: 14px; }
.drop-form-label { display: block; font-size: 13px; font-weight: 600; color: #0d2b1a; margin-bottom: 5px; }
.drop-form-input, .drop-form-select {
  width: 100%; padding: 10px 14px; border-radius: 8px;
  border: 1.5px solid rgba(13,43,26,0.2);
  font-size: 14px; font-family: var(--font-body, sans-serif); color: #0d2b1a;
  background: #f4f9f1;
  transition: border-color 0.15s;
}
.drop-form-input:focus, .drop-form-select:focus { outline: none; border-color: #84cc16; }
.drop-form-status { font-size: 13px; color: #c0392b; min-height: 18px; margin-bottom: 4px; }
.drop-form-submit {
  width: 100%; padding: 13px; background: #84cc16; color: #0d2b1a;
  border: none; border-radius: 10px; font-size: 15px; font-weight: 700;
  cursor: pointer; letter-spacing: 0.3px; transition: background 0.15s;
  margin-top: 4px;
}
.drop-form-submit:hover { background: #6db80e; }
.drop-form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.drop-fine-print { font-size: 11px; color: #7a9b83; margin-top: 10px; text-align: center; }
.drop-success { text-align: center; padding: 12px 0; }
.drop-success-icon { font-size: 40px; margin-bottom: 12px; }
.drop-success-title { font-family: 'Bebas Neue', cursive; font-size: 28px; color: #0d2b1a; margin-bottom: 8px; }
.drop-success-body { font-size: 14px; color: #3d6b4a; line-height: 1.6; margin-bottom: 20px; }
.drop-success-link {
  display: inline-block; background: #f4f9f1; color: #0d2b1a;
  padding: 10px 20px; border-radius: 8px; font-size: 14px; font-weight: 600;
  text-decoration: none;
}

/* === MERCH SECTION (Hat + Pocket Tee — Black) === */
.merch-section {
  max-width: 1080px;
  margin: 0 auto 80px;
  padding: 0 24px;
}
.merch-section-header {
  text-align: center;
  margin-bottom: 40px;
}
.merch-section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 10px;
}
.merch-section-headline {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 2px;
  color: var(--fg);
  margin-bottom: 12px;
}
.merch-section-sub {
  font-size: 15px;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}
.merch-mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
}
@media (max-width: 680px) {
  .merch-mockup-grid { grid-template-columns: 1fr; }
}
.merch-mockup-card {
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(132,204,22,0.2);
}
.merch-mockup-label {
  padding: 14px 18px 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #84cc16;
  background: rgba(132,204,22,0.08);
  border-bottom: 1px solid rgba(132,204,22,0.15);
}
.merch-mockup-img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.merch-mockup-note {
  padding: 12px 18px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  background: #111;
}
.merch-flags {
  background: #fff8e7;
  border: 1px solid #f0c040;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 28px;
}
.merch-flags-label {
  font-size: 13px;
  font-weight: 700;
  color: #7a5c00;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.merch-flags-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.merch-flags-list li {
  font-size: 13px;
  color: #5a4500;
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}
.merch-flags-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #c09000;
}
.merch-cta {
  text-align: center;
}

/* === FULL BACK BLAST SECTION — Black Sweatshirt === */
.back-blast-section {
  max-width: 1080px;
  margin: 0 auto 80px;
  padding: 0 24px;
}
.back-blast-header {
  text-align: center;
  margin-bottom: 48px;
}
.back-blast-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 10px;
}
.back-blast-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  letter-spacing: 2px;
  color: var(--fg);
  margin-bottom: 12px;
}
.back-blast-sub {
  font-size: 15px;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}
.back-blast-why {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  background: #0d2b1a;
  color: #84cc16;
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 13px;
  line-height: 1.55;
  max-width: 600px;
  margin: 20px auto 0;
  text-align: left;
}
.back-blast-why-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* 2×2 mockup grid */
.back-blast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
}
@media (max-width: 700px) {
  .back-blast-grid { grid-template-columns: 1fr; }
}
.back-blast-card {
  background: #0a0a0a;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(132,204,22,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.back-blast-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.back-blast-card-header {
  padding: 12px 16px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(132,204,22,0.12);
}
.back-blast-card-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #84cc16;
}
.back-blast-card-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #0d2b1a;
  background: #84cc16;
  padding: 2px 8px;
  border-radius: 4px;
}
.back-blast-card-img-wrap {
  position: relative;
  overflow: hidden;
}
.back-blast-img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  display: block;
}
.back-blast-pending {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #111;
  color: #444;
  text-align: center;
  padding: 32px;
}
.back-blast-pending-icon {
  font-size: 32px;
  opacity: 0.4;
}
.back-blast-pending-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #555;
}
.back-blast-pending-sub {
  font-size: 11px;
  color: #444;
  line-height: 1.5;
  max-width: 200px;
}
.back-blast-card-footer {
  padding: 12px 16px;
  background: #0a0a0a;
  border-top: 1px solid rgba(132,204,22,0.08);
}
.back-blast-card-note {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

/* Lead candidate highlight */
.back-blast-card--lead {
  border-color: rgba(132,204,22,0.5);
  box-shadow: 0 0 0 1px rgba(132,204,22,0.25), 0 8px 32px rgba(132,204,22,0.1);
}
.back-blast-card--lead .back-blast-card-badge {
  background: #fff;
  color: #0d2b1a;
}

/* Analysis flags */
.back-blast-analysis {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 28px;
}
.back-blast-analysis-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.back-blast-analysis-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.back-blast-analysis-list li {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
}
.back-blast-analysis-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 700;
}
.back-blast-analysis-list li strong {
  color: var(--fg);
}
.back-blast-cta {
  text-align: center;
}
