:root {
  --green: #006838;
  --green-light: #9cd76d;
  --white: #ffffff;
  --black: #231f20;
  --gray: #d7d7d7;
  --deep: #07120d;
  --deep-2: #0b1c14;
  --muted: #66736c;
  --soft: #f5f8f4;
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Ubuntu', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.55;
}

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

img { max-width: 100%; display: block; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.section-tight {
  padding: 68px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(156, 215, 109, 0.35);
  border-radius: 999px;
  color: var(--green-light);
  background: rgba(156, 215, 109, 0.08);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green-light);
  box-shadow: 0 0 18px rgba(156, 215, 109, 0.9);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(0, 104, 56, 0.28);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #0c8a4d);
}

.btn-light {
  color: var(--deep);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(156, 215, 109, 0.24), transparent 28%),
    radial-gradient(circle at 84% 16%, rgba(0, 104, 56, 0.34), transparent 34%),
    linear-gradient(135deg, #050706 0%, #07120d 46%, #0c1c15 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 85%);
}

.hero::after {
  content: '';
  position: absolute;
  width: 720px;
  height: 720px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(156, 215, 109, 0.14);
  border-radius: 50%;
  box-shadow: inset 0 0 90px rgba(156, 215, 109, 0.05);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 92px 0 72px;
}

.logo-mark {
  width: 280px;
  height: 110px;
  margin: 0 auto 34px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.logo-mark span {
  width: 240px;
  height: 78px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 10px 18px;
}

.logo-mark img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.hero h1 {
  max-width: 860px;
  margin: 28px auto 18px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero p {
  max-width: 730px;
  margin: 0 auto;
  color: rgba(255,255,255,0.78);
  font-size: clamp(18px, 2.4vw, 24px);
}

.hero .subcopy {
  max-width: 660px;
  margin-top: 18px;
  color: rgba(255,255,255,0.68);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.marketplaces {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.marketplaces span {
  color: rgba(255,255,255,0.68);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.section-label {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.045em;
  color: var(--black);
}

.lead {
  margin: 22px 0 0;
  font-size: 20px;
  color: #3d4742;
}

.text-block p {
  margin: 18px 0 0;
  color: #46514b;
  font-size: 17px;
}

.feature-panel {
  border-radius: var(--radius-xl);
  padding: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 10%, rgba(156, 215, 109, 0.22), transparent 34%),
    linear-gradient(135deg, var(--deep), var(--deep-2));
  box-shadow: var(--shadow);
}

.feature-panel strong {
  display: block;
  margin-bottom: 12px;
  color: var(--green-light);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.feature-panel p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 22px;
  line-height: 1.35;
}

.soft-section {
  background: var(--soft);
}

.checks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.check-card {
  min-height: 174px;
  padding: 24px;
  border: 1px solid rgba(0, 104, 56, 0.12);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.05);
}

.check-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-weight: 700;
  margin-bottom: 18px;
}

.check-card h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.3;
}

.coming-line {
  margin: 32px 0 0;
  color: var(--green);
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  text-align: center;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 38px;
}

.audience-card {
  position: relative;
  padding: 30px;
  min-height: 310px;
  border-radius: var(--radius-xl);
  color: var(--white);
  overflow: hidden;
  background: linear-gradient(145deg, var(--deep), #0f261c);
}

.audience-card::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  right: -64px;
  bottom: -64px;
  border-radius: 50%;
  background: rgba(156, 215, 109, 0.12);
}

.audience-number {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--deep);
  background: var(--green-light);
  font-weight: 700;
  margin-bottom: 22px;
}

.audience-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255,255,255,0.84);
  font-size: 18px;
}

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

.centered .lead {
  margin-left: auto;
  margin-right: auto;
}

.lead-form-wrap {
  margin-top: 34px;
  border-radius: var(--radius-xl);
  padding: 10px;
  background: linear-gradient(135deg, rgba(0, 104, 56, 0.16), rgba(156, 215, 109, 0.2));
  box-shadow: 0 24px 70px rgba(0, 104, 56, 0.12);
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  background: var(--white);
}

.lead-form input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(35, 31, 32, 0.12);
  border-radius: 999px;
  padding: 0 18px;
  font: inherit;
  outline: none;
  background: #fbfcfb;
}

.lead-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 104, 56, 0.08);
}

.microcopy {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.proof {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0,104,56,0.96), rgba(7,18,13,0.98)),
    radial-gradient(circle at 84% 20%, rgba(156,215,109,0.28), transparent 36%);
}

.proof h2,
.proof .section-label {
  color: var(--white);
}

.proof .lead {
  color: rgba(255,255,255,0.78);
}

.proof-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.proof-pills span {
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);
  font-weight: 500;
}

.mcsac-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 42px;
  border-radius: var(--radius-xl);
  background: var(--soft);
  border: 1px solid rgba(0, 104, 56, 0.14);
}

.mcsac-card h2 {
  max-width: 720px;
}

.mcsac-card p {
  max-width: 760px;
}

.footer {
  padding: 58px 0 38px;
  color: var(--white);
  background: var(--deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.footer h3 {
  margin: 0 0 12px;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.footer p {
  margin: 0;
  color: rgba(255,255,255,0.68);
}

.footer-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
}

.footer-form input {
  min-height: 48px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  font: inherit;
  outline: none;
}

.footer-form input::placeholder {
  color: rgba(255,255,255,0.46);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.54);
  font-size: 14px;
}

.footer-bottom a {
  color: var(--green-light);
  font-weight: 700;
}

@media (max-width: 980px) {
  .intro-grid,
  .footer-grid,
  .mcsac-card {
    grid-template-columns: 1fr;
  }

  .checks,
  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .lead-form .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 70px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 72px 0 54px;
  }

  .logo-mark {
    width: 210px;
    height: 84px;
    border-radius: 16px;
  }

  .logo-mark span {
    width: 180px;
    height: 60px;
    border-radius: 12px;
    padding: 8px 12px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .checks,
  .audience-grid,
  .footer-form {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: auto;
  }

  .mcsac-card {
    padding: 28px;
  }
}

/* Extra utility classes to eliminate inline style attributes */
.mt-34 { margin-top: 34px; }
.mt-24 { margin-top: 24px; }
.mt-10 { margin-top: 10px; }
.status-msg-success {
  padding: 40px 20px;
  text-align: center;
  color: var(--green);
  background: var(--white);
  border-radius: 22px;
}
.status-msg-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.status-msg-title {
  margin: 0 0 8px;
  font-size: 22px;
  color: var(--black);
}
.status-msg-text {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}
.status-msg-error {
  color: var(--green-light);
  padding: 10px 0;
  font-weight: 500;
}
