/* Founding Partner flow — scoped under .fpx / .fpx-body. Values from _ref prototype. */

.fpx-body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: #08090B;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #E7E9ED;
  -webkit-tap-highlight-color: transparent;
}

.fpx {
  --ink: #08090B;
  --surface: #101216;
  --surface-2: #161920;
  --line: #232733;
  --line-soft: #1B1F27;
  --red: #E8252C;
  --red-deep: #C32327;
  --red-dim: rgba(232, 37, 44, 0.14);
  --white: #FFFFFF;
  --text: #E7E9ED;
  --muted: #9AA1AE;
  --faint: #666D7A;
  --ok: #2F9E63;
  --r: 14px;
  --pad: 22px;

  box-sizing: border-box;
  width: 100%;
  max-width: 412px;
  min-height: 100svh;
  min-height: 100dvh;
  margin: 0 auto;
  background: var(--ink);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.fpx *,
.fpx *::before,
.fpx *::after {
  box-sizing: border-box;
}

/* ---------- brand bar ---------- */
.fpx .fpx-bar {
  padding: 16px var(--pad) 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  background: var(--ink);
  position: relative;
  z-index: 5;
}

.fpx .fpx-wordmark {
  font-family: "Anton", Impact, sans-serif;
  font-size: 16px;
  letter-spacing: 0.055em;
  color: var(--red);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 5px;
}

.fpx .fpx-wordmark::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
}

.fpx .fpx-invite {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 5px 10px;
}

/* ---------- progress ---------- */
.fpx .fpx-track {
  height: 2px;
  background: var(--line-soft);
  flex-shrink: 0;
  position: relative;
  z-index: 5;
}

.fpx .fpx-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--red-deep), var(--red));
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- stage ---------- */
.fpx .fpx-stage {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.fpx .fpx-screen {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 var(--pad) 118px;
  opacity: 0;
  transform: translateX(24px);
  pointer-events: none;
  transition:
    opacity 0.26s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.26s cubic-bezier(0.22, 1, 0.36, 1);
}

.fpx .fpx-screen.fpx-on {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.fpx .fpx-screen.fpx-out {
  opacity: 0;
  transform: translateX(-16px);
  transition-duration: 0.18s;
}

/* ---------- shared type (later steps) ---------- */
.fpx .fpx-back {
  background: none;
  border: 0;
  color: var(--faint);
  font: inherit;
  font-size: 12.5px;
  font-weight: 500;
  padding: 16px 0 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.fpx .fpx-back:hover {
  color: var(--muted);
}

.fpx .fpx-back:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
  border-radius: 4px;
}

.fpx [hidden] {
  display: none !important;
}

.fpx .fpx-step {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin: 18px 0 12px;
}

.fpx .fpx-h2 {
  font-size: 26px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.021em;
  color: var(--white);
  margin: 0 0 10px;
}

.fpx .fpx-sub {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 26px;
}

.fpx .fpx-q {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 4px;
  line-height: 1.45;
}

.fpx .fpx-hint {
  font-size: 12px;
  color: var(--faint);
  margin: 0 0 14px;
}

/* ---------- landing ---------- */
.fpx .fpx-eyebrow {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin: 22px 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fpx .fpx-eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

.fpx .fpx-h1 {
  font-family: "Anton", Impact, sans-serif;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.004em;
  color: var(--white);
  margin: 0 0 18px;
}

.fpx .fpx-h1 em {
  font-style: normal;
  color: var(--red);
}

.fpx .fpx-lede {
  font-size: 14px;
  line-height: 1.58;
  color: var(--muted);
  margin: 0 0 22px;
}

/* signature: ProofScore card */
.fpx .fpx-panel {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  padding: 17px 16px 15px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.fpx .fpx-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 37, 44, 0.55), transparent);
}

.fpx .fpx-panel-h {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fpx .fpx-live {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--ok);
}

.fpx .fpx-live::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ok);
  animation: fpx-pulse 2s ease-in-out infinite;
}

@keyframes fpx-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.28;
  }
}

.fpx .fpx-id {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 9px;
}

.fpx .fpx-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #20242D;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.fpx .fpx-id-t {
  flex: 1;
  min-width: 0;
}

.fpx .fpx-id-t b {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.fpx .fpx-id-t span {
  font-size: 11px;
  color: var(--faint);
}

.fpx .fpx-ring {
  position: relative;
  width: 54px;
  height: 54px;
  flex-shrink: 0;
}

.fpx .fpx-ring svg {
  transform: rotate(-90deg);
}

.fpx .fpx-ring .fpx-ring-bg {
  stroke: #232833;
}

.fpx .fpx-ring .fpx-arc {
  stroke: var(--red);
  stroke-linecap: round;
  stroke-dasharray: 150.8;
  stroke-dashoffset: 150.8;
  transition: stroke-dashoffset 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.fpx .fpx-ring .fpx-num {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.fpx .fpx-ring .fpx-num b {
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.fpx .fpx-ring .fpx-num i {
  font-style: normal;
  font-size: 5.5px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--faint);
  margin-top: 2px;
}

.fpx .fpx-av-line {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--red);
  text-align: right;
  margin-bottom: 15px;
  opacity: 0;
  transition: opacity 0.45s;
}

.fpx .fpx-av-line.fpx-in {
  opacity: 1;
}

.fpx .fpx-entry {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #151920;
  border: 1px solid var(--line-soft);
  border-radius: 11px;
  padding: 11px 11px 10px;
  margin-bottom: 8px;
}

.fpx .fpx-eic {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  flex-shrink: 0;
  background: #1E232C;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fpx .fpx-etx {
  flex: 1;
  min-width: 0;
}

.fpx .fpx-etx b {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 3px;
}

.fpx .fpx-etx span {
  display: block;
  font-size: 10px;
  line-height: 1.4;
  color: var(--faint);
}

.fpx .fpx-badges {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
  align-items: flex-end;
}

.fpx .fpx-bg-v,
.fpx .fpx-bg-a {
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 3px 7px;
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(3px);
  transition:
    opacity 0.34s,
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.fpx .fpx-bg-v {
  color: var(--red);
  background: rgba(232, 37, 44, 0.1);
  border: 1px solid rgba(232, 37, 44, 0.3);
}

.fpx .fpx-bg-a {
  color: var(--ok);
  background: rgba(47, 158, 99, 0.1);
  border: 1px solid rgba(47, 158, 99, 0.32);
}

.fpx .fpx-bg-v::before,
.fpx .fpx-bg-a::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.fpx .fpx-bg-v.fpx-in,
.fpx .fpx-bg-a.fpx-in {
  opacity: 1;
  transform: none;
}

.fpx .fpx-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 13px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
}

.fpx .fpx-foot .fpx-k {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 4px;
}

.fpx .fpx-foot .fpx-v {
  font-size: 12px;
  font-style: italic;
  color: var(--muted);
}

.fpx .fpx-foot > b {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ok);
  background: rgba(47, 158, 99, 0.12);
  border: 1px solid rgba(47, 158, 99, 0.3);
  border-radius: 100px;
  padding: 5px 10px;
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 0.4s,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.fpx .fpx-foot > b.fpx-in {
  opacity: 1;
  transform: none;
}

.fpx .fpx-next-h {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0 0 12px;
}

.fpx .fpx-steps {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
}

.fpx .fpx-steps li {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text);
  padding: 0 0 11px 17px;
  position: relative;
}

.fpx .fpx-steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

/* ---------- inputs (later phases) ---------- */
.fpx .fpx-field {
  margin-bottom: 17px;
}

.fpx .fpx-field-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 7px;
}

.fpx .fpx-field-label span {
  color: var(--faint);
  font-weight: 400;
  font-size: 11.5px;
}

.fpx .fpx-input {
  width: 100%;
  height: 50px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 0 14px;
  color: var(--white);
  font: inherit;
  font-size: 15px;
  transition: border-color 0.18s, background 0.18s;
}

.fpx .fpx-input::placeholder {
  color: #4C525E;
}

.fpx .fpx-input:focus {
  outline: none;
  border-color: var(--red);
  background: var(--surface-2);
}

/* ---------- chips (later phases) ---------- */
.fpx .fpx-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.fpx .fpx-chip {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 15px;
  font: inherit;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition:
    transform 0.12s ease,
    border-color 0.18s,
    background 0.18s,
    color 0.18s;
}

.fpx .fpx-chip:hover {
  border-color: #333949;
}

.fpx .fpx-chip:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.fpx .fpx-chip.fpx-press {
  transform: scale(0.96);
}

.fpx .fpx-chip.fpx-sel {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.fpx .fpx-chip.fpx-enter {
  opacity: 0;
  transform: translateY(7px);
  animation: fpx-chipIn 0.32s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes fpx-chipIn {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- terms (later phases) ---------- */
.fpx .fpx-terms {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 2px solid var(--red);
  border-radius: var(--r);
  padding: 20px 17px;
  margin: 4px 0 26px;
}

.fpx .fpx-fee {
  font-family: "Anton", Impact, sans-serif;
  font-size: 31px;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 5px;
}

.fpx .fpx-fee-k {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 15px;
}

.fpx .fpx-terms p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 12px;
}

.fpx .fpx-terms p:last-child {
  margin: 0;
}

.fpx .fpx-terms b {
  color: var(--text);
  font-weight: 600;
}

.fpx .fpx-rule {
  height: 1px;
  background: var(--line);
  margin: 15px 0;
}

.fpx .fpx-check {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 15px 14px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color 0.18s;
}

.fpx .fpx-check:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.fpx .fpx-check.fpx-on {
  border-color: var(--red);
}

.fpx .fpx-box {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  margin-top: 1px;
  border: 1.5px solid #3D4350;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s, border-color 0.16s;
}

.fpx .fpx-check.fpx-on .fpx-box {
  background: var(--red);
  border-color: var(--red);
}

.fpx .fpx-box svg {
  opacity: 0;
  transition: opacity 0.16s;
}

.fpx .fpx-check.fpx-on .fpx-box svg {
  opacity: 1;
}

.fpx .fpx-check p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
}

/* ---------- slots / date rail ---------- */
.fpx .fpx-rail {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 16px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.fpx .fpx-rail::-webkit-scrollbar {
  display: none;
}

.fpx .fpx-day {
  flex: 0 0 auto;
  width: 52px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 7px 0 6px;
  text-align: center;
  font: inherit;
  color: var(--text);
  cursor: pointer;
  transition:
    transform 0.12s ease,
    border-color 0.18s,
    background 0.18s;
}

.fpx .fpx-day i {
  font-style: normal;
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 3px;
}

.fpx .fpx-day b {
  display: block;
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  color: var(--white);
}

.fpx .fpx-day u {
  text-decoration: none;
  display: block;
  font-size: 9px;
  color: var(--faint);
  margin-top: 3px;
}

.fpx .fpx-day:hover {
  border-color: #333949;
}

.fpx .fpx-day:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.fpx .fpx-day.fpx-press {
  transform: scale(0.94);
}

.fpx .fpx-day.fpx-on {
  background: var(--red);
  border-color: var(--red);
}

.fpx .fpx-day.fpx-on i,
.fpx .fpx-day.fpx-on b,
.fpx .fpx-day.fpx-on u {
  color: #fff;
}

.fpx .fpx-day.fpx-on u {
  color: rgba(255, 255, 255, 0.85);
}

.fpx .fpx-day.fpx-off {
  background: #0e1013;
  border-color: var(--line-soft);
  cursor: not-allowed;
  pointer-events: none;
}

.fpx .fpx-day.fpx-off i,
.fpx .fpx-day.fpx-off u {
  color: #3e434e;
}

.fpx .fpx-day.fpx-off b {
  color: #3e434e;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.fpx .fpx-times-h {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 9px;
}

.fpx .fpx-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  align-items: stretch;
}

.fpx .fpx-slot {
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 8px 9px 7px;
  font: inherit;
  color: var(--text);
  cursor: pointer;
  transition:
    transform 0.12s ease,
    border-color 0.18s,
    background 0.18s;
}

.fpx .fpx-slot b {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.fpx .fpx-slot small {
  display: block;
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #454b57;
  margin-top: 2px;
}

.fpx .fpx-slot:hover {
  border-color: #333949;
}

.fpx .fpx-slot:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.fpx .fpx-slot.fpx-press {
  transform: scale(0.96);
}

.fpx .fpx-slot.fpx-sel {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.fpx .fpx-slot.fpx-sel small {
  color: rgba(255, 255, 255, 0.8);
}

.fpx .fpx-slot.fpx-off {
  background: #0e1013;
  border-color: var(--line-soft);
  cursor: not-allowed;
  pointer-events: none;
}

.fpx .fpx-slot.fpx-off b {
  color: #3e434e;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.fpx .fpx-slot.fpx-none {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--faint);
  font-size: 12.5px;
  font-weight: 400;
  background: none;
  border: 1px dashed var(--line);
  cursor: default;
  pointer-events: none;
  padding: 16px;
}

/* ---------- confirmed (later phases) ---------- */
.fpx .fpx-tick {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red-dim);
  border: 1px solid rgba(232, 37, 44, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 34px 0 20px;
  animation: fpx-pop 0.5s cubic-bezier(0.22, 1.4, 0.36, 1) both;
}

@keyframes fpx-pop {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fpx .fpx-booked {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 17px;
  margin: 0 0 18px;
}

.fpx .fpx-booked .fpx-k {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 7px;
}

.fpx .fpx-booked .fpx-v {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}

.fpx .fpx-ghost {
  width: 100%;
  height: 48px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.18s;
}

.fpx .fpx-ghost:hover {
  border-color: #39404F;
}

.fpx .fpx-ghost:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.fpx .fpx-save {
  margin: 28px 0 8px;
}

.fpx .fpx-save:disabled {
  background: #2A2E38;
  color: #5C626E;
  cursor: not-allowed;
}

.fpx .fpx-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 30px 0 20px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}

.fpx .fpx-divider::before,
.fpx .fpx-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* ---------- footer CTA ---------- */
.fpx .fpx-dock {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px var(--pad) 20px;
  background: linear-gradient(180deg, rgba(8, 9, 11, 0) 0%, var(--ink) 26%);
  z-index: 6;
}

.fpx .fpx-cta {
  width: 100%;
  height: 54px;
  background: var(--red);
  border: 0;
  border-radius: 12px;
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.005em;
  transition:
    transform 0.12s ease,
    background 0.18s,
    opacity 0.18s;
}

.fpx .fpx-cta:hover {
  background: #F42A31;
}

.fpx .fpx-cta:active {
  transform: scale(0.985);
}

.fpx .fpx-cta:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.fpx .fpx-cta[disabled] {
  background: #2A2E38;
  color: #5C626E;
  cursor: not-allowed;
}

.fpx .fpx-assure {
  text-align: center;
  font-size: 11.5px;
  color: var(--faint);
  margin: 10px 0 0;
  line-height: 1.45;
}

.fpx .tp-form-privacy-note {
  margin: 16px 0 0;
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--faint);
}

.fpx .tp-form-privacy-note a {
  color: #c8ccd4;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.fpx .fpx-dock.fpx-hide {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .fpx *,
  .fpx *::before,
  .fpx *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .fpx .fpx-screen,
  .fpx .fpx-screen.fpx-out,
  .fpx .fpx-chip.fpx-enter,
  .fpx .fpx-chip.fpx-press {
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  .fpx .fpx-live::before {
    animation: none;
  }

  .fpx .fpx-bg-v,
  .fpx .fpx-bg-a,
  .fpx .fpx-av-line,
  .fpx .fpx-foot > b {
    opacity: 1;
    transform: none;
  }
}
