/* ============================================
   DESIGN TOKENS — FTP PATRIOTIC PALETTE
============================================ */
:root {
  --navy:         #0a1838;
  --navy-2:       #142554;
  --navy-3:       #1c2f6e;
  --red:          #c8102e;
  --red-light:    #e8253f;
  --red-dark:     #9d0c24;
  --gold:         #f4c430;
  --gold-soft:    #f7d559;
  --cream:        #f5f1e8;
  --text:         #0f1729;
  --text-muted:   #5b6577;
  --text-light:   #8a93a4;
  --bg:           #ffffff;
  --bg-alt:       #f6f4ee;
  --border:       #e3e2dc;
  --border-light: #efeee8;
  --shadow-sm:    0 1px 3px rgba(10,24,56,.08), 0 1px 2px rgba(10,24,56,.05);
  --shadow:       0 4px 6px -1px rgba(10,24,56,.08), 0 2px 4px -1px rgba(10,24,56,.05);
  --shadow-lg:    0 10px 25px -3px rgba(10,24,56,.12), 0 4px 6px -2px rgba(10,24,56,.05);
  --shadow-xl:    0 20px 50px -8px rgba(10,24,56,.22);
  --r:            10px;
  --r-sm:         6px;
  --r-lg:         16px;
  --font:         'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============================================
   RESET + BASE
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { font-size: 16px; scroll-behavior: smooth; }
body  { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================
   UTILITIES
============================================ */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 880px; }

/* Star texture utility */
.star-bg {
  background-image:
    radial-gradient(rgba(255,255,255,.045) 1.2px, transparent 1.2px),
    radial-gradient(rgba(244,196,48,.035) 1px, transparent 1px);
  background-size: 36px 36px, 24px 24px;
  background-position: 0 0, 18px 18px;
}

/* ============================================
   BRAND LOGO — transparent PNG, sits clean on dark
============================================ */
.ftp-logo { display: inline-block; line-height: 0; }
.ftp-logo img {
  display: block;
  height: 52px;
  width: auto;
}
.ftp-logo--sm img { height: 38px; }
.ftp-logo--lg img { height: 72px; }

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 32px; font-size: 15px; font-weight: 700; letter-spacing: .01em;
  border-radius: var(--r-sm); transition: all .2s ease; white-space: nowrap;
  border: none; cursor: pointer; font-family: var(--font);
}
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,16,46,.42); }
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: var(--gold-soft); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(244,196,48,.42); }
.btn--ghost-light {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn--ghost-light:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }
.btn--lg { padding: 18px 40px; font-size: 16px; }

/* ============================================
   NAV
============================================ */
.nav { position: absolute; top: 0; left: 0; right: 0; z-index: 100; padding: 22px 0; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: flex; align-items: center; }
.nav__cta { display: none; }
@media (min-width: 768px) {
  .nav__cta {
    display: inline-flex; align-items: center;
    padding: 10px 22px; font-size: 13px; font-weight: 700;
    background: var(--red); color: #fff;
    border-radius: var(--r-sm); transition: background .2s; white-space: nowrap;
    letter-spacing: .02em;
  }
  .nav__cta:hover { background: var(--red-light); }
}

/* ============================================
   HERO
============================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-start;
  padding: 88px 0 72px; overflow: hidden;
}
@media (min-width: 920px) {
  .hero { align-items: center; padding: 96px 0 72px; }
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 80% 25%, rgba(200,16,46,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(28,47,110,.5) 0%, transparent 55%),
    linear-gradient(155deg, var(--navy) 0%, var(--navy-2) 55%, var(--navy) 100%);
}
.hero__bg::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,.04) 1.2px, transparent 1.2px),
    radial-gradient(rgba(244,196,48,.025) 1px, transparent 1px);
  background-size: 38px 38px, 24px 24px;
  background-position: 0 0, 19px 19px;
}
.hero__bg::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 33%, #fff 33%, #fff 66%, var(--navy-3) 66%, var(--navy-3) 100%);
  opacity: .8;
}
.hero__content { position: relative; z-index: 1; width: 100%; }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: start; }
@media (min-width: 920px) {
  .hero__grid { grid-template-columns: 1fr 430px; gap: 56px; align-items: start; }
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(200,16,46,.18); border: 1px solid rgba(200,16,46,.4);
  border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: #ff8696; margin-bottom: 26px;
}
.hero__headline {
  font-size: clamp(30px, 4.6vw, 56px);
  font-weight: 900; color: #fff; line-height: 1.08;
  letter-spacing: -.035em; margin-bottom: 22px;
}
.hero__headline em { font-style: normal; color: var(--gold); }
.hero__sub { font-size: 17px; color: rgba(255,255,255,.7); line-height: 1.7; max-width: 540px; margin-bottom: 28px; }
.hero__bullets { margin-bottom: 30px; }
.hero__bullet {
  display: flex; align-items: flex-start; gap: 12px;
  color: rgba(255,255,255,.88); font-size: 15px; font-weight: 500; margin-bottom: 12px;
}
.hero__bullet:last-child { margin-bottom: 0; }
.hero__bullet-dot {
  flex-shrink: 0; width: 22px; height: 22px; margin-top: 1px;
  background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 3px rgba(200,16,46,.18);
}
.hero__bullet-dot svg { width: 11px; height: 11px; color: #fff; }

/* Video block on hero (above the form on mobile, beside on desktop is replaced — actually we put it under the headline) */
.hero__video {
  margin: 0 0 32px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px -10px rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.08);
  background: var(--navy-2);
  aspect-ratio: 16/9;
  position: relative;
}
.hero__video wistia-player { display: block; width: 100%; height: 100%; }

.hero__trust { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.45); font-size: 13px; font-weight: 500; }
.hero__trust-rule { width: 28px; height: 1px; background: rgba(255,255,255,.22); }

/* ============================================
   FORM CARD
============================================ */
.form-card { background: #fff; border-radius: var(--r-lg); padding: 34px 30px; box-shadow: var(--shadow-xl); position: relative; }
.form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.form-card__heading { font-size: 20px; font-weight: 900; color: var(--text); letter-spacing: -.02em; margin-bottom: 6px; }
.form-card__sub { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 13px; }
.form-field label { display: block; font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 5px; letter-spacing: .01em; }
.form-field input, .form-field select {
  width: 100%; padding: 11px 13px;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-family: var(--font); font-size: 14px; color: var(--text);
  background: #fff; transition: border-color .15s; outline: none;
}
.form-field input:focus, .form-field select:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(200,16,46,.12); }
.form-field input::placeholder { color: var(--text-light); }
.form-field input.error, .form-field select.error { border-color: #ef4444; }
.field-error { font-size: 11px; color: #ef4444; margin-top: 3px; }
.form-global-error {
  background: #fef2f2; border: 1px solid #fecaca; border-radius: var(--r-sm);
  padding: 11px 14px; font-size: 13px; color: #dc2626; margin-bottom: 14px; display: none;
}
.form-global-error.visible { display: block; }
.form-btn {
  width: 100%; padding: 15px 20px;
  background: var(--red); color: #fff; border-radius: var(--r-sm);
  font-size: 15px; font-weight: 800; letter-spacing: .02em;
  transition: all .2s; border: none; cursor: pointer; font-family: var(--font); margin-top: 4px;
  text-transform: uppercase;
}
.form-btn:hover:not(:disabled) { background: var(--red-light); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(200,16,46,.42); }
.form-btn:disabled { opacity: .7; cursor: not-allowed; transform: none; box-shadow: none; }
.form-microcopy { text-align: center; font-size: 11px; color: var(--text-light); margin-top: 10px; }
.form-microcopy strong { color: var(--red); font-weight: 700; }

/* Success state */
.form-success { display: none; text-align: center; padding: 20px 0 12px; }
.form-success.active { display: block; }
.form-success__icon {
  width: 60px; height: 60px;
  background: rgba(200,16,46,.08); border: 2px solid rgba(200,16,46,.22); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.form-success__icon svg { width: 28px; height: 28px; color: var(--red); }
.form-success__heading { font-size: 19px; font-weight: 900; color: var(--text); margin-bottom: 10px; letter-spacing: -.02em; line-height: 1.3; }
.form-success__sub { font-size: 14px; color: var(--text-muted); margin-bottom: 22px; line-height: 1.6; }
.form-body.hidden { display: none; }

/* ============================================
   SECTION BASE
============================================ */
.section { padding: 96px 0; }
.section--alt  { background: var(--bg-alt); }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.section--navy::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,.035) 1.2px, transparent 1.2px),
    radial-gradient(rgba(244,196,48,.025) 1px, transparent 1px);
  background-size: 38px 38px, 24px 24px;
  pointer-events: none;
}
.section--navy > .container { position: relative; z-index: 1; }
.section__eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
}
.section__eyebrow--light { color: var(--gold); }
.section__heading { font-size: clamp(28px, 3.8vw, 44px); font-weight: 900; color: var(--text); letter-spacing: -.03em; line-height: 1.15; margin-bottom: 18px; }
.section__heading--light { color: #fff; }
.section__heading em { font-style: normal; color: var(--red); }
.section__heading--light em { color: var(--gold); }
.section__intro { font-size: 17px; color: var(--text-muted); line-height: 1.7; max-width: 640px; }
.section__intro--light  { color: rgba(255,255,255,.7); }
.section__intro--center { margin: 0 auto; text-align: center; }
.section__header { margin-bottom: 56px; }
.section__header--center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }

/* ============================================
   PAIN BULLETS
============================================ */
.pain-list { list-style: none; padding: 0; margin: 28px 0 0; max-width: 740px; }
.pain-list li {
  position: relative; padding: 16px 0 16px 38px; font-size: 16px;
  color: var(--text); line-height: 1.55; font-weight: 500;
  border-bottom: 1px solid var(--border-light);
}
.pain-list li:last-child { border-bottom: none; }
.pain-list li::before {
  content: ''; position: absolute; left: 0; top: 22px;
  width: 22px; height: 2px; background: var(--red);
}

/* ============================================
   TRADEMARK CARDS (Section 4)
============================================ */
.tm-grid {
  display: grid; grid-template-columns: 1fr; gap: 18px;
  margin-top: 40px;
}
@media (min-width: 720px) { .tm-grid { grid-template-columns: repeat(2,1fr); } }
.tm-card {
  background: #fff; border-radius: var(--r); border: 1px solid var(--border-light);
  padding: 28px 26px; box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.tm-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.tm-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: var(--red);
}
.tm-card__mark {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: var(--red);
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 10px;
}
.tm-card__title {
  font-size: 22px; font-weight: 900; color: var(--text);
  letter-spacing: -.02em; margin-bottom: 10px; line-height: 1.2;
}
.tm-card__title sup { font-size: .55em; vertical-align: super; color: var(--red); }
.tm-card__body { font-size: 15px; color: var(--text-muted); line-height: 1.65; }
.tm-card__role { font-size: 12px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }

/* ============================================
   PROOF / DEPTH CARDS (Section 5)
============================================ */
.depth-grid {
  display: grid; grid-template-columns: 1fr; gap: 22px;
  margin-top: 40px;
}
@media (min-width: 720px) { .depth-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1020px) { .depth-grid { grid-template-columns: repeat(4,1fr); } }
.depth-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r); padding: 26px 22px;
  position: relative;
  transition: background .2s ease, border-color .2s ease;
}
.depth-card:hover { background: rgba(255,255,255,.06); border-color: rgba(244,196,48,.35); }
.depth-card__num {
  font-size: 13px; font-weight: 800; color: var(--gold);
  letter-spacing: .12em; margin-bottom: 14px;
}
.depth-card__title {
  font-size: 18px; font-weight: 800; color: #fff;
  letter-spacing: -.01em; margin-bottom: 10px; line-height: 1.25;
}
.depth-card__body { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.65; }

/* ============================================
   EXCLUSIVITY (Section 6) — the closer
============================================ */
.exclusivity {
  background: linear-gradient(160deg, var(--navy) 0%, var(--red-dark) 100%);
  color: #fff; padding: 110px 0; position: relative; overflow: hidden;
}
.exclusivity::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,.05) 1.5px, transparent 1.5px);
  background-size: 42px 42px;
  pointer-events: none;
}
.exclusivity__inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; text-align: center; }
.exclusivity__eyebrow {
  display: inline-block; font-size: 11px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
  padding: 6px 16px; border: 1px solid rgba(244,196,48,.4);
  border-radius: 100px; background: rgba(244,196,48,.08);
}
.exclusivity__heading {
  font-size: clamp(32px, 4.5vw, 52px); font-weight: 900;
  color: #fff; letter-spacing: -.035em; line-height: 1.1;
  margin-bottom: 28px;
}
.exclusivity__heading em { font-style: normal; color: var(--gold); }
.exclusivity__body {
  font-size: 18px; color: rgba(255,255,255,.82); line-height: 1.7;
  margin-bottom: 22px; max-width: 680px; margin-left: auto; margin-right: auto;
}
.exclusivity__body strong { color: #fff; font-weight: 700; }
.exclusivity__cta { margin-top: 38px; }

/* ============================================
   FAQ
============================================ */
.faq__header { text-align: center; margin-bottom: 50px; }
.faq__intro  { font-size: 16px; color: var(--text-muted); margin-top: 10px; }
.faq__list   { max-width: 780px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 4px; cursor: pointer; user-select: none; font-size: 16px; font-weight: 700; color: var(--text); transition: color .15s; letter-spacing: -.005em; }
.faq__q:hover { color: var(--red); }
.faq__icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--border-light); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.faq__icon svg { width: 12px; height: 12px; color: var(--text-muted); transition: transform .25s ease, color .2s; }
.faq__item.open .faq__icon { background: var(--red); }
.faq__item.open .faq__icon svg { color: #fff; transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__a-inner { padding: 2px 4px 24px; font-size: 15px; color: var(--text-muted); line-height: 1.75; }
.faq__item.open .faq__a { max-height: 700px; }

/* ============================================
   FINAL CTA
============================================ */
.final-cta { background: var(--navy); padding: 110px 0; text-align: center; position: relative; overflow: hidden; }
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1.2px, transparent 1.2px);
  background-size: 38px 38px;
  pointer-events: none;
}
.final-cta__inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.final-cta__eyebrow {
  display: inline-block; font-size: 11px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.final-cta__heading { font-size: clamp(28px, 4vw, 48px); font-weight: 900; color: #fff; letter-spacing: -.03em; line-height: 1.15; margin-bottom: 18px; }
.final-cta__heading em { font-style: normal; color: var(--red-light); }
.final-cta__sub { font-size: 17px; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 40px; }
.final-cta__form { max-width: 480px; margin: 0 auto; text-align: left; }

/* ============================================
   FOOTER
============================================ */
.footer { background: #050a1a; padding: 40px 0; text-align: center; }
.footer__brand { margin-bottom: 18px; }
.footer__text { font-size: 12px; color: rgba(255,255,255,.25); }
.footer__links { margin-bottom: 12px; }
.footer__links a { font-size: 12px; color: rgba(255,255,255,.4); text-decoration: none; margin: 0 10px; }
.footer__links a:hover { color: rgba(255,255,255,.7); }
.footer__disclaimer { font-size: 11px; color: rgba(255,255,255,.22); line-height: 1.7; max-width: 720px; margin: 14px auto 0; }

/* ============================================
   STICKY MOBILE CTA
============================================ */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: rgba(10,24,56,.96); backdrop-filter: blur(10px); border-top: 1px solid rgba(255,255,255,.08); padding: 12px 20px 16px; }
.sticky-cta.show { display: block; }
@media (min-width: 920px) { .sticky-cta { display: none !important; } }
.sticky-cta__btn { width: 100%; padding: 14px 20px; background: var(--red); color: #fff; border-radius: var(--r-sm); font-size: 14px; font-weight: 800; font-family: var(--font); border: none; cursor: pointer; transition: background .2s; text-transform: uppercase; letter-spacing: .04em; }
.sticky-cta__btn:hover { background: var(--red-light); }
