@charset "utf-8";
/*-- Easy Method Grant Funnel: copy and paste block start --*/

#emds-funnel-root .emds-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 16, 24, 0.72);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 1050;
}
#emds-funnel-root .emds-modal-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}

#emds-funnel-root .emds-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1060;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
#emds-funnel-root .emds-modal.is-visible {
  display: flex;
}

#emds-funnel-root .emds-modal-card {
  width: min(100%, 560px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  color: #22353b;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,.26);
  overflow: hidden;
  border: 1px solid #d7dee6;
}
#emds-funnel-root .emds-modal-card--wide {
  width: min(100%, 700px);
  max-height: 90vh;
}

#emds-funnel-root .emds-modal-header {
  padding: 22px 26px 10px;
  border-bottom: 1px solid #e8eff1;
}
#emds-funnel-root .emds-modal-header--left {
  text-align: left;
}
#emds-funnel-root .emds-modal-header--center {
  text-align: center;
}
#emds-funnel-root .emds-modal-header h2,
#emds-funnel-root .emds-modal-header h3 {
  margin: 0;
  font-size: 1.72rem;
  line-height: 1.16;
  color: #102c33;
}
#emds-funnel-root .emds-subtitle {
  margin-top: 6px;
  font-size: 1.02rem;
  font-weight: 700;
  color: #0c5b61;
}

#emds-funnel-root .emds-modal-body {
  padding: 22px 26px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  font-size: 1.04rem;
  color: #22353b;
}
#emds-funnel-root .emds-modal-body p {
  margin: 0 0 14px;
  line-height: 1.68;
}

#emds-funnel-root .emds-modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding: 0 26px 24px;
}
#emds-funnel-root .emds-modal-footer--single {
  justify-content: center;
}
#emds-funnel-root .emds-modal-footer--form {
  padding: 10px 0 0;
}

#emds-funnel-root .emds-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  border: 0;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .02em;
  cursor: pointer;
}
#emds-funnel-root .emds-btn-primary {
  background: yellow;
  color: #000;
    border: 2px solid #0A4D52; 
}
#emds-funnel-root .emds-btn-primary:hover {
  background: #08474c;
}
    
#emds-funnel-root .emds-btn[disabled] {
  opacity: 1;
  cursor: wait;
}

#emds-funnel-root .emds-btn-primary.is-loading {
  background: #0a4d52;
  color: #ffffff;
  position: relative;
  pointer-events: none;
  min-width: 300px;
}

#emds-funnel-root .emds-btn-primary.is-loading::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-right: 10px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  animation: emdsSpin .7s linear infinite;
}

@keyframes emdsSpin {
  to {
    transform: rotate(360deg);
  }
}    
    
    
#emds-funnel-root .emds-btn-secondary {
  background: #edf2f7;
  color: #1f2937;
}
#emds-funnel-root .emds-btn-secondary:hover {
  background: #dfe7ef;
}

#emds-funnel-root .emds-progress-wrap {
  background: #f3f8f8;
  border-bottom: 1px solid #dbe7e8;
  padding: 18px 26px 20px;
}
#emds-funnel-root .emds-progress-label {
  margin: 0 0 10px;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #33626a;
}
#emds-funnel-root .emds-progress-track {
  width: 100%;
  height: 10px;
  background: #dce8ea;
  border-radius: 999px;
  overflow: hidden;
}
#emds-funnel-root .emds-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #6db7bc 0%, #0c5b61 100%);
  border-radius: 999px;
  transition: width .25s ease;
}
#emds-funnel-root .emds-step-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}
#emds-funnel-root .emds-step {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
}
#emds-funnel-root .emds-step-dot {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid #bfd3d7;
  background: #ffffff;
  color: #6d8488;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}
#emds-funnel-root .emds-step.is-complete .emds-step-dot {
  background: #0c5b61;
  border-color: #0c5b61;
  color: #ffffff;
}
#emds-funnel-root .emds-step.is-current .emds-step-dot {
  background: #ffeb00;
  border-color: #d4b800;
  color: #1f2937;
  box-shadow: 0 0 0 3px rgba(255, 235, 0, 0.28);
}

#emds-funnel-root .emds-question-shell {
  background: #eef7f6;
  border-top: 1px solid #d6e7e5;
  border-bottom: 1px solid #d6e7e5;
  padding: 22px 26px;
}
#emds-funnel-root .emds-question-card {
  background: #dff0ee;
  border: 2px solid #8ebfba;
  border-radius: 12px;
  padding: 22px 20px;
}
#emds-funnel-root .emds-question-text {
  margin: 0;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.42;
  color: #11343a;
}

#emds-funnel-root .emds-option-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}
#emds-funnel-root .emds-answer-btn {
  width: 100%;
  text-align: left;
  border: 2px solid #a9c6cc;
  background: #fff;
  color: #1f363c;
  border-radius: 10px;
  padding: 15px 16px;
  font-size: 1.03rem;
  line-height: 1.45;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(16,44,51,.05);
  transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}
#emds-funnel-root .emds-answer-btn:hover,
#emds-funnel-root .emds-answer-btn:focus-visible {
  border-color: #0c5b61;
  background: #eef9fa;
  box-shadow: 0 0 0 4px rgba(12,91,97,.14);
  transform: translateY(-1px);
  outline: none;
}
#emds-funnel-root .emds-answer-btn:active {
  background: #dff4f6;
  transform: translateY(0);
}

#emds-funnel-root .emds-back-row {
  padding: 14px 26px 20px;
  display: flex;
  justify-content: center;
}
#emds-funnel-root .emds-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #315a62;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}
#emds-funnel-root .emds-back-btn:hover {
  color: #1d4349;
  text-decoration: underline;
}
#emds-funnel-root .emds-back-arrow {
  font-size: 1.1rem;
  line-height: 1;
}

#emds-funnel-root .emds-field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}
#emds-funnel-root .emds-field span {
  font-weight: 600;
}
#emds-funnel-root .emds-field input {
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 1rem;
}
#emds-funnel-root .emds-field input:focus {
  outline: none;
  border-color: #0c5b61;
  box-shadow: 0 0 0 3px rgba(12,91,97,.14);
}

#emds-funnel-root .emds-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  line-height: 1.5;
}
#emds-funnel-root .emds-check input {
  margin-top: 3px;
}

#emds-funnel-root .emds-form-errors {
  border: 1px solid #f1b5b5;
  background: #fff3f3;
  color: #8a1f1f;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 18px;
  display: none;
}
#emds-funnel-root .emds-form-errors ul,
#emds-funnel-root .emds-fail-reasons ul {
  margin: 0;
  padding-left: 20px;
}

#emds-funnel-root .emds-success-hero {
  background: linear-gradient(135deg, #eaf6f7 0%, #dbeef0 100%);
  border-top: 1px solid #d0e4e6;
  border-bottom: 1px solid #d0e4e6;
  padding: 26px 26px 24px;
  text-align: center;
}
#emds-funnel-root .emds-success-kicker {
  margin: 0 0 8px;
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #0f3f46;
  text-shadow: 0 1px 0 rgba(255,255,255,.7);
}
#emds-funnel-root .emds-success-subtitle {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.45;
  font-weight: 700;
  color: #225862;
}
#emds-funnel-root .emds-success-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f7fcfc 100%);
  border: 3px solid #0c5b61;
  border-radius: 14px;
  padding: 24px 20px 22px;
  box-shadow: 0 10px 24px rgba(12,91,97,.12), inset 0 0 0 3px #dff1f3;
  text-align: center;
}
#emds-funnel-root .emds-success-card::before {
  content: "WAITING LIST";
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #0c5b61;
  color: #ffffff;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
#emds-funnel-root .emds-success-card-title {
  margin: 0 0 10px;
  font-size: 1.45rem;
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #0f3f46;
}
#emds-funnel-root .emds-success-card-linkline {
  margin: 0 0 18px;
  font-size: 1.08rem;
  line-height: 1.3;
  font-weight: 800;
  color: #0c5b61;
}
#emds-funnel-root .emds-success-card-text {
  margin: 0 auto;
  max-width: 34ch;
  font-size: 1rem;
  line-height: 1.7;
  color: #1f2937;
}
#emds-funnel-root .emds-success-bottom-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 14px 26px 24px;
  flex-wrap: wrap;
  width: 100%;
}

#emds-funnel-root .emds-secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid #b8cfd4;
  border-radius: 6px;
  background: #f4fafb;
  color: #21545e;
  font-weight: 700;
  font-size: .98rem;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  box-sizing: border-box;
}
#emds-funnel-root button.emds-secondary-action {
  appearance: none;
  -webkit-appearance: none;
}
#emds-funnel-root .emds-secondary-action:hover {
  background: #e7f3f5;
  border-color: #90b5bc;
  color: #163f46;
}

#emds-funnel-root .emds-lead-hero {
  background: #eef7f6;
  border-top: 1px solid #d6e7e5;
  border-bottom: 1px solid #d6e7e5;
  padding: 22px 26px;
  text-align: center;
}
#emds-funnel-root .emds-lead-subtitle {
  margin-top: 6px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  color: #315a62;
}
#emds-funnel-root .emds-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

#emds-funnel-root .emds-disclaimer-hero {
  background: #e8f3f4;
  border-left: 6px solid #0c5b61;
  border-radius: 12px;
  padding: 18px 20px;
  width: 100%;
}
#emds-funnel-root .emds-disclaimer-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 11px;
  background: #0c5b61;
  color: #fff;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
#emds-funnel-root .emds-disclaimer-hero h2 {
  margin: 0;
  font-size: clamp(1.65rem, 1.3rem + 1vw, 2.15rem);
  line-height: 1.12;
  color: #12343b;
}

#emds-funnel-root .emds-fail-reasons {
  margin-top: 16px;
  padding: 14px 16px;
  background: #fff5f5;
  border: 1px solid #efcaca;
  border-radius: 12px;
}
#emds-funnel-root .emds-fail-reasons li {
  margin-bottom: 8px;
  font-size: 1.02rem;
  line-height: 1.55;
  font-weight: 600;
  color: #7a1f1f;
}

#emds-funnel-root .emds-waitlist-success-wrap {
  padding: 22px 26px 10px;
  background: #f5fbf6;
}
#emds-funnel-root .emds-waitlist-success-box {
  background: #e6f7ea;
  border: 2px solid #5aa469;
  border-radius: 12px;
  padding: 22px 20px;
  color: #173b22;
  box-shadow: 0 6px 18px rgba(32, 84, 44, 0.08);
}
#emds-funnel-root .emds-waitlist-success-box h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  line-height: 1.15;
  font-weight: 900;
  color: #14532d;
  text-transform: uppercase;
  letter-spacing: .03em;
}
#emds-funnel-root .emds-waitlist-success-box p {
  margin: 0 0 12px;
  font-size: 1.04rem;
  line-height: 1.68;
  color: #1f3d27;
}
#emds-funnel-root .emds-waitlist-success-box p:last-child {
  margin-bottom: 0;
}

#emds-funnel-root .emds-caution-wrap {
  padding: 8px 26px 24px;
  background: #fff8f9;
}
#emds-funnel-root .emds-caution-box {
  background: #ffe9ee;
  border: 2px solid #d64545;
  border-radius: 12px;
  padding: 18px 18px 16px;
  color: #6f1d1b;
  box-shadow: 0 6px 16px rgba(166, 55, 55, 0.08);
  text-align: center;
}
#emds-funnel-root .emds-caution-title {
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 12px;
  background: #ffd6de;
  border: 1px solid #d64545;
  border-radius: 999px;
  font-size: .92rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #9b1c1c;
}
#emds-funnel-root .emds-caution-text {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  font-weight: 700;
  color: #7f1d1d;
}
#emds-funnel-root .emds-close-row {
  display: flex;
  justify-content: center;
  padding: 4px 26px 26px;
}
#emds-funnel-root .emds-btn-close {
  background: #0c5b61;
  color: #fff;
}
#emds-funnel-root .emds-btn-close:hover {
  background: #08474c;
}

#emds-funnel-root .emds-field-hint {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6b7280;
}

#emds-funnel-root .emds-field input.emds-invalid {
  background: #fff0f3;
  border-color: #d9485f;
  box-shadow: 0 0 0 3px rgba(217,72,95,.14);
}

#emds-funnel-root .emds-field input.emds-invalid::placeholder {
  color: #b76a76;
}

#emds-funnel-root .emds-check.emds-invalid {
  background: #fff0f3;
  border: 1px solid #f0b7c1;
  border-radius: 10px;
  padding: 10px 12px;
}

#emds-funnel-root .emds-form-errors {
  border: 1px solid #e58b9b;
  background: #fff0f3;
  color: #8f1d35;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 18px;
  display: none;
  font-size: 1rem;
}

#emds-funnel-root .emds-form-errors li {
  margin-bottom: 6px;
  font-weight: 700;
}



@media (max-width: 640px) {
  #emds-funnel-root .emds-modal {
    padding: 14px;
    align-items: center;
    justify-content: center;
  }

  #emds-funnel-root .emds-modal-card,
  #emds-funnel-root .emds-modal-card--wide {
    width: 100%;
    max-height: 60vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}


  #emds-funnel-root .emds-modal-header,
  #emds-funnel-root .emds-modal-body,
  #emds-funnel-root .emds-modal-footer,
  #emds-funnel-root .emds-progress-wrap,
  #emds-funnel-root .emds-question-shell,
  #emds-funnel-root .emds-back-row,
  #emds-funnel-root .emds-success-hero,
  #emds-funnel-root .emds-success-bottom-row,
  #emds-funnel-root .emds-lead-hero,
  #emds-funnel-root .emds-waitlist-success-wrap,
  #emds-funnel-root .emds-caution-wrap,
  #emds-funnel-root .emds-close-row {
    padding-left: 18px;
    padding-right: 18px;
  }

  #emds-funnel-root .emds-question-card,
  #emds-funnel-root .emds-success-card,
  #emds-funnel-root .emds-disclaimer-hero,
  #emds-funnel-root .emds-waitlist-success-box,
  #emds-funnel-root .emds-caution-box {
    padding: 18px 16px;
  }

  #emds-funnel-root .emds-modal-header h2,
  #emds-funnel-root .emds-modal-header h3 {
    font-size: 1.48rem;
  }

  #emds-funnel-root .emds-modal-body {
    font-size: 1rem;
  }

  #emds-funnel-root .emds-question-text {
    font-size: 1.1rem;
  }

  #emds-funnel-root .emds-answer-btn {
    font-size: 1rem;
    padding: 14px 15px;
  }

  #emds-funnel-root .emds-btn {
    width: 100%;
  }

  #emds-funnel-root .emds-modal-footer {
    flex-direction: column;
  }

  #emds-funnel-root .emds-step-dot {
    width: 30px;
    height: 30px;
    font-size: .92rem;
  }

  #emds-funnel-root .emds-success-kicker {
    font-size: 1.7rem;
  }

  #emds-funnel-root .emds-success-card-title {
    font-size: 1.25rem;
  }

  #emds-funnel-root .emds-success-bottom-row {
    flex-direction: column;
    gap: 12px;
    position: relative;
    left: 0;
  }

  #emds-funnel-root .emds-secondary-action {
    width: 100%;
    max-width: 320px;
  }

  #emds-funnel-root .emds-disclaimer-kicker {
    font-size: 0.76rem;
  }

  #emds-funnel-root .emds-name-row {
    grid-template-columns: 1fr;
  }

  #emds-funnel-root .emds-waitlist-success-box h3 {
    font-size: 1.28rem;
  }
}

