.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.78rem;
}

.mission-eyebrow {
  color: #647700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: #07100d;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #e2ff78;
}

.btn.secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--text);
}

.btn.secondary:hover {
  border-color: var(--accent);
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  width: clamp(150px, 24vw, 245px);
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-copy {
  max-width: 760px;
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 58px;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: #dce5e0;
  padding: 9px 14px;
  font-size: 0.88rem;
}

.card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, var(--panel), var(--panel-2));
  box-shadow: var(--shadow);
  padding: 30px;
}

.card-number {
  color: var(--accent);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(213, 255, 63, 0.1);
  color: var(--accent);
  margin-bottom: 18px;
  font-size: 1.3rem;
}

.mission {
  background: #eff4f1;
  color: #07100d;
}

.mission p {
  color: #4e5c55;
}

.mission-quote {
  font-size: clamp(1.8rem, 4vw, 3.35rem);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.stage-title {
  margin-top: 18px;
  font-size: 2.6rem;
}

.audience-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.audience-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d8e1dc;
  font-size: 0.86rem;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-item {
  border: 1px solid var(--line);
  border-radius: 15px;
  color: #e8efeb;
  padding: 16px 18px;
}

.contact-form-card {
  display: flex;
  height: 100%;
}

.contact-form {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.contact-form textarea {
  flex: 1 1 auto;
  min-height: 150px;
}

.recaptcha-notice {
  margin: 2px 2px 0;
  color: #93a29b;
  font-size: 0.8rem;
  line-height: 1.45;
}

.recaptcha-notice a {
  color: #c2cfca;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form {
  position: relative;
}

.contact-form.is-submitting .btn {
  pointer-events: none;
  opacity: 0.9;
}

.contact-form.is-success .btn {
  pointer-events: none;
  opacity: 1;
  background: #b7e93c;
  border-color: #b7e93c;
}

.contact-form.is-error .btn {
  background: #ff9f9f;
  border-color: #ff9f9f;
  color: #07100d;
}

.btn-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(7, 16, 13, 0.25);
  border-top-color: #07100d;
  border-radius: 50%;
  display: none;
  animation: spin 0.7s linear infinite;
}

.contact-form.is-submitting .btn-spinner {
  display: inline-block;
}

.fine {
  color: #88958e;
  font-size: 0.84rem;
}

@media (max-width: 860px) {
  .nav-links a:not(.btn) {
    display: none;
  }

  .brand-logo {
    width: clamp(140px, 42vw, 190px);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
