@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,700;0,800;0,900;1,700;1,800;1,900&family=Barlow:wght@400;500;600&display=swap');

/* ============================================================
   PRO PRECISION — FUNNEL STYLES
   Brand: #070f09 bg | #4ade80 accent | Barlow Condensed + Barlow
   ============================================================ */

/* ----------------------------------------------------------
   1. FUNNEL NAV
   ---------------------------------------------------------- */

.fn-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  background: rgba(7, 15, 9, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fn-nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 48px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fn-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.fn-logo small {
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: #4ade80;
  display: block;
}

.fn-nav__email {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.fn-nav__email:hover {
  color: #4ade80;
}

@media (max-width: 600px) {
  .fn-nav__email {
    display: none;
  }
}


/* ----------------------------------------------------------
   2. PROGRESS STEPPER
   ---------------------------------------------------------- */

.fn-prog {
  background: #0d1f10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px clamp(20px, 4vw, 48px);
}

.fn-prog__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 640px;
  margin: 0 auto;
}

.fn-prog__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.fn-prog__dot {
  width: 28px;
  height: 28px;
  border-radius: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  transition: all 0.3s;
  background: transparent;
}

.fn-prog__step.is-active .fn-prog__dot {
  border-color: #4ade80;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.08);
}

.fn-prog__step.is-done .fn-prog__dot {
  background: #4ade80;
  color: #070f09;
  border-color: #4ade80;
}

.fn-prog__label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
}

.fn-prog__step.is-active .fn-prog__label {
  color: #fff;
}

.fn-prog__step.is-done .fn-prog__label {
  color: rgba(74, 222, 128, 0.65);
}

.fn-prog__line {
  flex: 1;
  max-width: 72px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  align-self: flex-start;
  margin-top: 14px;
  transition: background 0.3s;
}

.fn-prog__line.is-done {
  background: #4ade80;
}


/* ----------------------------------------------------------
   3. FORM LAYOUT
   ---------------------------------------------------------- */

.fn-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px clamp(20px, 4vw, 48px) 80px;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

@media (max-width: 840px) {
  .fn-wrap {
    grid-template-columns: 1fr;
  }
}

.fn-left {
  /* eyebrow / title / desc / includes panel */
}

.fn-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0d1f10;
  padding: clamp(24px, 3vw, 36px);
}


/* ----------------------------------------------------------
   4. FORM FIELDS
   ---------------------------------------------------------- */

.fn-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.fn-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.fn-req {
  color: #4ade80;
}

.fn-optional {
  color: rgba(255,255,255,0.4);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.fn-input {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: #fff;
  background: #111a12;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 13px 16px;
  outline: none;
  border-radius: 0;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s, background 0.2s;
}

.fn-input:focus {
  border-color: #4ade80;
  background: #131f15;
}

.fn-input::placeholder {
  color: rgba(255, 255, 255, 0.24);
}

.fn-input.is-error {
  border-color: rgba(255, 80, 80, 0.6);
}

select.fn-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234ade80' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.fn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 480px) {
  .fn-row {
    grid-template-columns: 1fr;
  }
}


/* ----------------------------------------------------------
   5. SMS CONSENT
   ---------------------------------------------------------- */

.fn-consent {
  margin: 16px 0 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fn-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
  padding: 0;
}

.fn-check__box {
  width: 19px;
  height: 19px;
  flex: none;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: #111a12;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  transition: border-color 0.18s, background 0.18s;
  margin-top: 2px;
}

.fn-check.on .fn-check__box {
  border-color: #4ade80;
  background: #4ade80;
}

.fn-check__box svg {
  opacity: 0;
  transition: opacity 0.18s;
}

.fn-check.on .fn-check__box svg {
  opacity: 1;
}

.fn-sms-legal {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.55;
  margin-top: 6px;
  padding-left: 30px;
}

.fn-sms-legal a {
  color: rgba(74, 222, 128, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.fn-sms-legal a:hover {
  color: #4ade80;
}


/* ----------------------------------------------------------
   6. SUBMIT BUTTON
   ---------------------------------------------------------- */

.fn-submit {
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 15px;
  font-weight: 800;
  color: #070f09;
  background: #4ade80;
  padding: 16px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.18s, background 0.18s;
}

.fn-submit:hover {
  transform: translateY(-2px);
  background: #6ef79a;
  box-shadow: 0 8px 24px rgba(74, 222, 128, 0.3);
}

.fn-submit:disabled {
  opacity: 0.38;
  pointer-events: none;
}


/* ----------------------------------------------------------
   7. SUCCESS SCREEN
   ---------------------------------------------------------- */

.fn-done {
  max-width: 520px;
  margin: 0 auto;
  padding: clamp(56px, 10vh, 100px) clamp(20px, 4vw, 48px);
  text-align: center;
}

.fn-done__mark {
  width: 80px;
  height: 80px;
  border: 2px solid #4ade80;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.fn-done__mark svg {
  color: #4ade80;
}

.fn-done__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1;
}

.fn-done__title em {
  color: #4ade80;
  font-style: italic;
}

.fn-done__body {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 28px;
}

.fn-done__next {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(74, 222, 128, 0.7);
}


/* ----------------------------------------------------------
   8. FUNNEL FOOTER
   ---------------------------------------------------------- */

.fn-foot {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 18px clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.fn-foot__copy {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.05em;
}

.fn-foot__links {
  display: flex;
  gap: 18px;
}

.fn-foot__links a {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.fn-foot__links a:hover {
  color: rgba(255, 255, 255, 0.65);
}


/* ----------------------------------------------------------
   9. LEFT PANEL
   ---------------------------------------------------------- */

.fn-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #4ade80;
  margin-bottom: 12px;
}

.fn-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  text-transform: uppercase;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 14px;
}

.fn-title em {
  color: #4ade80;
  font-style: italic;
}

.fn-lead {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.fn-includes {
  display: flex;
  flex-direction: column;
  gap: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.fn-includes div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.fn-includes div svg {
  color: #4ade80;
  flex: none;
}


/* ----------------------------------------------------------
   10. ERROR STATE
   ---------------------------------------------------------- */

.fn-err {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: #f97066;
  margin-top: 8px;
  line-height: 1.5;
}


/* ----------------------------------------------------------
   11. SPINNER
   ---------------------------------------------------------- */

.fn-spinner {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-top-color: #4ade80;
  border-radius: 50%;
  animation: fn-spin 0.7s linear infinite;
}

@keyframes fn-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
