@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/DM-Sans-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/DM-Sans-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/DM-Sans-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/DM-Sans-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #75ba2d;
  --green-dark: #2f7d32;
  --green-soft: #eaf6d7;
  --yellow: #f6c900;
  --yellow-soft: #ffe36b;
  --yellow-deep: #e0ab00;
  --ink: #20411f;
  --text: #345235;
  --muted: #5b765a;
  --paper: #fffdf6;
  --white: #ffffff;
  --border: rgba(117, 186, 45, 0.18);
  --shadow: 0 22px 60px rgba(72, 123, 42, 0.16);
  --card-shadow: 0 14px 40px rgba(49, 90, 38, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(246, 201, 0, 0.24), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(117, 186, 45, 0.22), transparent 24%),
    linear-gradient(180deg, #f9fff0 0%, var(--paper) 48%, #ffffff 100%);
  min-height: 100vh;
}

a {
  color: inherit;
}

.text-ink {
  color: var(--ink);
}

.brand-shell {
  position: relative;
  overflow: hidden;
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.brand-shell::before,
.brand-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.brand-shell::before {
  width: 360px;
  height: 360px;
  top: -180px;
  right: -100px;
  background: radial-gradient(circle, rgba(246, 201, 0, 0.25), transparent 65%);
}

.brand-shell::after {
  width: 420px;
  height: 420px;
  left: -140px;
  bottom: -240px;
  background: radial-gradient(circle, rgba(117, 186, 45, 0.18), transparent 65%);
}

.brand-shell > .row {
  position: relative;
  z-index: 1;
}

.brand-logo {
  max-width: 470px;
  margin-bottom: 1.125rem;
}

.hero-pill,
.status-label {
  display: inline-block;
  padding: 0.625rem 1rem;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-label {
  background: rgba(47, 125, 50, 0.1);
}

.hero-title {
  margin: 1rem 0 0.875rem;
  color: var(--ink);
  font-size: clamp(2.35rem, 4vw, 4.45rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-lead,
.section-copy,
.info-card p,
.panel-card p,
.waitlist-card p {
  line-height: 1.7;
}

.hero-lead {
  max-width: 58ch;
  margin-bottom: 1.5rem;
  font-size: 1.08rem;
}

.hero-tagline {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 500;
}

.btn-brand {
  color: #234020;
  background: linear-gradient(135deg, var(--yellow-soft), var(--yellow));
  border: 0;
  box-shadow: 0 16px 34px rgba(246, 201, 0, 0.28);
  font-weight: 800;
}

.btn-brand:hover,
.btn-brand:focus {
  color: #234020;
  transform: translateY(-1px);
}

.btn-outline-brand {
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid rgba(47, 125, 50, 0.18);
  font-weight: 800;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.9);
}

.waitlist-card,
.panel-card,
.info-card {
  padding: 1.75rem;
  border-radius: 1.75rem;
  border: 1px solid var(--border);
}

.waitlist-card {
  background: linear-gradient(180deg, rgba(117, 186, 45, 0.12), rgba(255, 255, 255, 0.96));
}

.panel-card,
.info-card {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--card-shadow);
}

.brand-input {
  min-height: 54px;
  border: 1px solid rgba(47, 125, 50, 0.18);
  border-radius: 1rem;
}

.brand-input:focus {
  border-color: rgba(47, 125, 50, 0.38);
  box-shadow: 0 0 0 0.25rem rgba(117, 186, 45, 0.16);
}

.consent-check {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.consent-check input {
  margin-top: 0.25rem;
}

.small-note {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

.success-message {
  display: none;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(117, 186, 45, 0.22);
  border-radius: 1rem;
  background: rgba(117, 186, 45, 0.14);
  color: var(--green-dark);
  font-weight: 700;
}

.success-message.is-visible {
  display: block;
}

.error-message {
  padding: 0.875rem 1rem;
  border: 1px solid rgba(224, 171, 0, 0.28);
  border-radius: 1rem;
  background: rgba(246, 201, 0, 0.12);
  color: #7a5a00;
  font-weight: 700;
}

.cf-turnstile {
  min-height: 65px;
}

.feature-ticks {
  padding-left: 0;
  list-style: none;
}

.feature-ticks li {
  position: relative;
  margin-bottom: 0.75rem;
  padding-left: 1.875rem;
  color: var(--ink);
  font-weight: 600;
}

.feature-ticks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--yellow-deep);
  font-weight: 900;
}

.section-head {
  max-width: 62ch;
}

.section-title {
  margin-bottom: 0.625rem;
  color: var(--ink);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  letter-spacing: -0.03em;
}

.info-card strong {
  display: inline-block;
  margin-bottom: 0.625rem;
  color: var(--green-dark);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.info-card h3 {
  margin-bottom: 0.75rem;
  color: var(--ink);
  font-size: 1.35rem;
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.125rem;
  border-top: 1px solid rgba(117, 186, 45, 0.15);
  color: #6a8067;
  font-size: 0.95rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-nav a {
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .brand-shell {
    padding: 1.375rem;
  }
}

@media (max-width: 575.98px) {
  .brand-shell {
    border-radius: 1.5rem;
    padding: 1.125rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }
}
