/* =========================================================
   NIPPON FITNESS · TARIF-FINDER
   MASTER CSS V1.1.0
   Light-first · Montserrat · #db0000 · keine Diagonalen
   ========================================================= */


/* =========================================================
   GLOBALER MODAL-TRIGGER · #tarif-finden
   ========================================================= */

html.nftf-modal-lock,
body.nftf-modal-lock {
  overflow: hidden !important;
}

.nftf-modal[hidden] {
  display: none !important;
}

.nftf-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.nftf-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.nftf-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,15,15,.78);
}

.nftf-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1480px, calc(100vw - 36px));
  max-height: calc(100vh - 36px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #fafafa;
  border-radius: 16px;
  box-shadow: 0 28px 90px rgba(0,0,0,.28);
  -webkit-overflow-scrolling: touch;
}

.nftf-modal__toolbar {
  position: sticky;
  top: 0;
  z-index: 80;
  height: 0;
  pointer-events: none;
}

.nftf-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(23,23,23,.14);
  border-radius: 50%;
  background: rgba(255,255,255,.96);
  box-shadow: 0 8px 24px rgba(0,0,0,.09);
  cursor: pointer;
  pointer-events: auto;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nftf-modal__close span::before,
.nftf-modal__close span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #171717;
  transform-origin: center;
}

.nftf-modal__close span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nftf-modal__close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nftf-modal__close:hover,
.nftf-modal__close:focus-visible {
  background: #171717;
  border-color: #171717;
  transform: translateY(-1px);
}

.nftf-modal__close:hover span::before,
.nftf-modal__close:hover span::after,
.nftf-modal__close:focus-visible span::before,
.nftf-modal__close:focus-visible span::after {
  background: #fff;
}

.nftf-modal__close:focus-visible {
  outline: 2px solid #db0000;
  outline-offset: 3px;
}

.nftf-modal .nftf__inner {
  width: min(calc(100% - 54px), 1380px);
  padding-top: clamp(68px, 6vw, 92px);
  padding-bottom: clamp(54px, 5vw, 78px);
}

@media (max-width: 767px) {
  .nftf-modal {
    padding: 0;
  }

  .nftf-modal__dialog {
    width: 100vw;
    max-height: 100dvh;
    min-height: 100dvh;
    border-radius: 0;
  }

  .nftf-modal__close {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
  }

  .nftf-modal .nftf__inner {
    width: min(calc(100% - 30px), 1380px);
    padding-top: 70px;
  }
}

.nftf {
  --nftf-red: #db0000;
  --nftf-dark: #1c1c1c;
  --nftf-dark-2: #252525;
  --nftf-ink: #171717;
  --nftf-copy: #414141;
  --nftf-muted: #747474;
  --nftf-line: #e3e3e3;
  --nftf-soft: #f5f5f5;
  --nftf-white: #ffffff;
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fafafa;
  color: var(--nftf-ink);
  font-family: "Montserrat", Arial, sans-serif;
  isolation: isolate;
}

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

.nftf button,
.nftf a {
  font: inherit;
}

.nftf button {
  appearance: none;
}

.nftf a {
  color: inherit;
  text-decoration: none;
}

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

.nftf__ambient {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  width: 1px;
  pointer-events: none;
}

.nftf__ambient--one {
  left: 7%;
  background: rgba(219,0,0,.06);
}

.nftf__ambient--two {
  right: 10%;
  background: rgba(20,20,20,.035);
}

.nftf__inner {
  width: min(calc(100% - 64px), 1380px);
  margin: 0 auto;
  padding: clamp(82px, 8vw, 122px) 0 clamp(76px, 7vw, 110px);
}

/* =========================================================
   HEADER
   ========================================================= */

.nftf__header {
  max-width: 880px;
  margin: 0 auto clamp(42px, 5vw, 66px);
  text-align: center;
}

.nftf__index {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 21px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.nftf__index span {
  color: var(--nftf-ink);
}

.nftf__index i {
  width: 34px;
  height: 1px;
  background: rgba(23,23,23,.34);
}

.nftf__index strong {
  color: #7a7a7a;
  font-weight: 800;
}

.nftf__eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--nftf-red);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nftf__header h2 {
  margin: 0;
  color: var(--nftf-ink);
  font-size: clamp(39px, 4.2vw, 64px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.047em;
}

.nftf__header > p {
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--nftf-muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.72;
}

/* =========================================================
   APP SHELL
   ========================================================= */

.nftf__shell {
  display: grid;
  grid-template-columns: 318px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  max-width: 1240px;
  margin: 0 auto;
}

.nftf__rail,
.nftf__stage {
  border-radius: 16px;
}

.nftf__rail {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 680px;
  padding: 29px 26px 25px;
  overflow: hidden;
  background: var(--nftf-dark);
  color: #fff;
  box-shadow: 0 22px 56px rgba(0,0,0,.09);
}

.nftf__rail::before,
.nftf__rail::after {
  content: "";
  position: absolute;
  width: 1px;
  pointer-events: none;
}

.nftf__rail::before {
  top: 0;
  bottom: 0;
  left: 13px;
  background: rgba(255,255,255,.05);
}

.nftf__rail::after {
  top: 30px;
  right: 0;
  height: 74px;
  background: var(--nftf-red);
}

.nftf__rail-head {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.nftf__rail-head span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255,255,255,.45);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
}

.nftf__rail-head strong {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .055em;
}

.nftf__rail-steps {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.nftf__rail-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 8px 8px 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: opacity 220ms ease, transform 220ms ease;
}

.nftf__rail-steps li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 3px;
  height: 0;
  transform: translateY(-50%);
  background: var(--nftf-red);
  transition: height 220ms ease;
}

.nftf__rail-steps li > span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: rgba(255,255,255,.47);
  font-size: 9px;
  font-weight: 900;
}

.nftf__rail-steps li strong,
.nftf__rail-steps li small {
  display: block;
}

.nftf__rail-steps li strong {
  color: rgba(255,255,255,.78);
  font-size: 9px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: .12em;
}

.nftf__rail-steps li small {
  max-width: 175px;
  margin-top: 4px;
  overflow: hidden;
  color: rgba(255,255,255,.36);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nftf__rail-steps li.is-active::after {
  height: 34px;
}

.nftf__rail-steps li.is-active > span {
  border-color: var(--nftf-red);
  background: var(--nftf-red);
  color: #fff;
}

.nftf__rail-steps li.is-active strong,
.nftf__rail-steps li.is-active small {
  color: #fff;
}

.nftf__rail-steps li.is-complete:not(.is-active) > span {
  border-color: rgba(219,0,0,.55);
  color: #fff;
}

.nftf__rail-steps li.is-complete:not(.is-active) > span::after {
  content: "✓";
  position: absolute;
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: var(--nftf-dark);
  color: var(--nftf-red);
  font-size: 12px;
}

.nftf__rail-foot {
  margin-top: auto;
  padding-top: 24px;
}

.nftf__rail-foot > span {
  display: block;
  width: 26px;
  height: 2px;
  margin-bottom: 13px;
  background: var(--nftf-red);
}

.nftf__rail-foot p {
  margin: 0;
  color: rgba(255,255,255,.47);
  font-size: 11px;
  line-height: 1.6;
}

.nftf__rail-foot strong {
  color: rgba(255,255,255,.8);
  font-weight: 800;
}

.nftf__stage {
  position: relative;
  min-width: 0;
  min-height: 680px;
  padding: 28px clamp(28px, 4vw, 52px) 34px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--nftf-line);
  box-shadow: 0 22px 56px rgba(0,0,0,.055);
}

.nftf__stage::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(28px, 4vw, 52px);
  width: 46px;
  height: 3px;
  background: var(--nftf-red);
}

/* =========================================================
   PROGRESS
   ========================================================= */

.nftf__progress {
  position: relative;
  z-index: 2;
  margin-bottom: 46px;
}

.nftf__progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
}

.nftf__progress-meta > span {
  color: var(--nftf-ink);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
}

.nftf__progress-meta button,
.nftf__result-footer button,
.nftf__backline button {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: #8a8a8a;
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nftf__progress-meta button:hover,
.nftf__progress-meta button:focus-visible,
.nftf__result-footer button:hover,
.nftf__result-footer button:focus-visible,
.nftf__backline button:hover,
.nftf__backline button:focus-visible {
  color: var(--nftf-red);
  outline: none;
}

.nftf__progress-track {
  width: 100%;
  height: 2px;
  overflow: hidden;
  background: #ededed;
}

.nftf__progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--nftf-red);
  transition: width 380ms cubic-bezier(.2,.8,.2,1);
}

.nftf__live {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

/* =========================================================
   SCREEN TRANSITIONS
   ========================================================= */

.nftf__screen {
  min-width: 0;
}

.nftf__screen.is-active {
  animation: nftf-enter 360ms cubic-bezier(.2,.75,.2,1) both;
}

@keyframes nftf-enter {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   START
   ========================================================= */

.nftf__start {
  max-width: 820px;
  padding: clamp(18px, 3vw, 42px) 0 10px;
}

.nftf__screen-kicker,
.nftf__question-head > span,
.nftf__subeyebrow {
  display: block;
  color: var(--nftf-red);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nftf__start h3,
.nftf__question-head h3 {
  margin: 10px 0 0;
  color: var(--nftf-ink);
  font-size: clamp(33px, 3.5vw, 50px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.04em;
}

.nftf__start h3 span {
  display: block;
  color: #777;
}

.nftf__start > p,
.nftf__question-head p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--nftf-muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
}

.nftf__start-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0 36px;
  background: var(--nftf-line);
  border: 1px solid var(--nftf-line);
}

.nftf__start-facts > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-height: 75px;
  padding: 19px 20px;
  background: #fafafa;
}

.nftf__start-facts strong {
  color: var(--nftf-ink);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.nftf__start-facts span {
  color: #747474;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

/* =========================================================
   QUESTIONS / OPTIONS
   ========================================================= */

.nftf__question-head {
  max-width: 840px;
  margin-bottom: 30px;
}

.nftf__options {
  display: grid;
  gap: 11px;
}

.nftf__options--five,
.nftf__options--four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nftf__options--five .nftf__option:last-child {
  grid-column: 1 / -1;
}

.nftf__options--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nftf__option {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0,1fr) 24px;
  gap: 15px;
  align-items: center;
  min-width: 0;
  min-height: 112px;
  padding: 19px 18px;
  overflow: hidden;
  border: 1px solid #dfdfdf;
  border-radius: 10px;
  background: #fff;
  color: var(--nftf-ink);
  cursor: pointer;
  text-align: left;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.nftf__option::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 0;
  transform: translateY(-50%);
  background: var(--nftf-red);
  transition: height 220ms ease;
}

.nftf__option:hover,
.nftf__option:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(219,0,0,.45);
  box-shadow: 0 14px 30px rgba(0,0,0,.055);
  outline: none;
}

.nftf__option:hover::before,
.nftf__option:focus-visible::before,
.nftf__option.is-selected::before {
  height: 58%;
}

.nftf__option.is-selected {
  border-color: var(--nftf-dark-2);
  background: var(--nftf-dark-2);
  color: #fff;
  box-shadow: 0 16px 34px rgba(0,0,0,.12);
}

.nftf__option-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid #e2e2e2;
  border-radius: 50%;
  background: #fafafa;
  color: #4c4c4c;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.nftf__option-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nftf__option.is-selected .nftf__option-icon {
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: #fff;
}

.nftf__option-copy {
  min-width: 0;
}

.nftf__option-copy strong,
.nftf__option-copy small,
.nftf__option-copy em {
  display: block;
}

.nftf__option-copy strong {
  color: inherit;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .035em;
}

.nftf__option-copy small {
  margin-top: 5px;
  color: #777;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.45;
}

.nftf__option-copy em {
  width: max-content;
  max-width: 100%;
  margin-top: 8px;
  padding: 5px 8px;
  border-radius: 99px;
  background: #f2f2f2;
  color: #606060;
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nftf__option.is-selected .nftf__option-copy small {
  color: rgba(255,255,255,.57);
}

.nftf__option.is-selected .nftf__option-copy em {
  background: rgba(255,255,255,.09);
  color: #fff;
}

.nftf__option-arrow {
  color: #a5a5a5;
  font-size: 18px;
  transition: transform 180ms ease, color 180ms ease;
}

.nftf__option:hover .nftf__option-arrow,
.nftf__option:focus-visible .nftf__option-arrow {
  transform: translateX(3px);
  color: var(--nftf-red);
}

.nftf__option.is-selected .nftf__option-arrow {
  color: #fff;
}

.nftf__backline {
  display: flex;
  align-items: center;
  margin-top: 25px;
  padding-top: 18px;
  border-top: 1px solid #ededed;
}

.nftf__backline button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

/* =========================================================
   MODULES
   ========================================================= */

.nftf__module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.nftf__module {
  position: relative;
  min-height: 105px;
  padding: 18px 16px 16px;
  overflow: hidden;
  border: 1px solid #dedede;
  border-radius: 9px;
  background: #fff;
  color: var(--nftf-ink);
  cursor: pointer;
  text-align: left;
  transition: border-color 200ms ease, background 200ms ease, color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.nftf__module:hover,
.nftf__module:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(219,0,0,.42);
  box-shadow: 0 12px 28px rgba(0,0,0,.05);
  outline: none;
}

.nftf__module.is-selected {
  border-color: var(--nftf-dark-2);
  background: var(--nftf-dark-2);
  color: #fff;
}

.nftf__module-check {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 18px;
  height: 18px;
  border: 1px solid #cfcfcf;
  border-radius: 50%;
  transition: background 180ms ease, border-color 180ms ease;
}

.nftf__module.is-selected .nftf__module-check {
  border-color: var(--nftf-red);
  background: var(--nftf-red);
}

.nftf__module.is-selected .nftf__module-check::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}

.nftf__module strong,
.nftf__module small {
  display: block;
  max-width: calc(100% - 22px);
}

.nftf__module strong {
  padding-top: 24px;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: .035em;
}

.nftf__module small {
  margin-top: 5px;
  color: #7a7a7a;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.45;
}

.nftf__module.is-selected small {
  color: rgba(255,255,255,.55);
}

.nftf__module--none {
  background: #f7f7f7;
}

.nftf__module-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 22px;
}

/* =========================================================
   NOTICES
   ========================================================= */

.nftf__notice {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 22px;
  padding: 14px 16px;
  border-left: 2px solid var(--nftf-red);
  background: #f7f7f7;
}

.nftf__notice > span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--nftf-red);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}

.nftf__notice p {
  margin: 1px 0 0;
  color: #666;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.55;
}

.nftf__notice--soft {
  border-left-color: #303030;
}

.nftf__notice--soft > span {
  background: #303030;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.nftf__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 46px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .06em;
  text-align: center;
  text-transform: uppercase;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.nftf__button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.nftf__button:hover svg,
.nftf__button:focus-visible svg {
  transform: translateX(3px);
}

.nftf__button--large {
  min-height: 52px;
  padding-inline: 27px;
}

.nftf__button--primary {
  border-color: #242424;
  background: #242424;
  color: #fff;
}

.nftf__button--primary:hover,
.nftf__button--primary:focus-visible {
  border-color: var(--nftf-red);
  background: var(--nftf-red);
  color: #fff;
  outline: none;
  box-shadow: 0 12px 28px rgba(219,0,0,.17);
}

.nftf__button--outline {
  border-color: #303030;
  background: transparent;
  color: #242424;
}

.nftf__button--outline:hover,
.nftf__button--outline:focus-visible {
  border-color: var(--nftf-red);
  background: var(--nftf-red);
  color: #fff;
  outline: none;
}

.nftf__button--ghost {
  border-color: #e0e0e0;
  background: #f6f6f6;
  color: #3c3c3c;
}

.nftf__button--ghost:hover,
.nftf__button--ghost:focus-visible {
  border-color: #242424;
  background: #242424;
  color: #fff;
  outline: none;
}

/* =========================================================
   RESULT
   ========================================================= */

.nftf__stage:has([data-nftf-screen="result"].is-active) {
  padding: 0;
}

.nftf__stage:has([data-nftf-screen="result"].is-active)::before,
.nftf__stage:has([data-nftf-screen="result"].is-active) > .nftf__progress {
  display: none;
}

.nftf__result {
  min-height: 678px;
  background: #fff;
}

.nftf__result-hero {
  position: relative;
  min-height: 292px;
  padding: 35px clamp(28px, 4vw, 52px) 33px;
  overflow: hidden;
  background: #1b1b1b;
  color: #fff;
}

.nftf__result-hero::before,
.nftf__result-hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  pointer-events: none;
}

.nftf__result-hero::before {
  right: 20%;
  background: rgba(255,255,255,.06);
}

.nftf__result-hero::after {
  right: 20%;
  top: 36px;
  bottom: auto;
  height: 68px;
  background: var(--nftf-red);
}

.nftf__result-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.nftf__result-topline span {
  color: rgba(255,255,255,.43);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .17em;
}

.nftf__result-topline strong {
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
}

.nftf__signal {
  position: absolute;
  top: 83px;
  right: clamp(28px, 5vw, 63px);
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 55px;
}

.nftf__signal i {
  display: block;
  width: 4px;
  background: var(--nftf-red);
  animation: nftf-signal 700ms cubic-bezier(.2,.8,.2,1) both;
}

.nftf__signal i:nth-child(1) { height: 20px; }
.nftf__signal i:nth-child(2) { height: 36px; animation-delay: 80ms; }
.nftf__signal i:nth-child(3) { height: 52px; animation-delay: 160ms; }

@keyframes nftf-signal {
  from { transform: scaleY(0); transform-origin: bottom; opacity: .2; }
  to { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
}

.nftf__result-kicker {
  display: block;
  max-width: calc(100% - 90px);
  margin-top: 31px;
  color: var(--nftf-red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}

.nftf__result-hero h3 {
  margin: 5px 0 0;
  color: #fff;
  font-size: clamp(44px, 6vw, 74px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.055em;
}

.nftf__result-claim {
  margin: 8px 0 0;
  color: rgba(255,255,255,.63);
  font-size: 13px;
  font-weight: 700;
}

.nftf__price {
  position: absolute;
  right: clamp(28px, 4vw, 52px);
  bottom: 30px;
  min-width: 235px;
  padding-left: 19px;
  border-left: 2px solid var(--nftf-red);
  text-align: right;
}

.nftf__price > span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255,255,255,.37);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .10em;
}

.nftf__price > div {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 7px;
}

.nftf__price strong {
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: -.045em;
}

.nftf__price small {
  color: rgba(255,255,255,.47);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
}

.nftf__price p {
  margin: 3px 0 0;
  color: rgba(255,255,255,.42);
  font-size: 8px;
  font-weight: 600;
}

.nftf__result-main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 0;
}

.nftf__why,
.nftf__configuration,
.nftf__compare,
.nftf__actions {
  padding: 30px clamp(24px, 3vw, 38px);
}

.nftf__why {
  border-right: 1px solid var(--nftf-line);
  border-bottom: 1px solid var(--nftf-line);
}

.nftf__configuration {
  border-bottom: 1px solid var(--nftf-line);
}

.nftf__subeyebrow {
  font-size: 9px;
  letter-spacing: .12em;
}

.nftf__why h4 {
  margin: 8px 0 20px;
  color: var(--nftf-ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.nftf__why ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nftf__why li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}

.nftf__why li > span {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 1px solid #dedede;
  border-radius: 50%;
  color: var(--nftf-red);
  font-size: 8px;
  font-weight: 900;
}

.nftf__why li p {
  margin: 2px 0 0;
  color: #626262;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.55;
}

.nftf__config-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  background: #e5e5e5;
}

.nftf__config-grid > div {
  min-width: 0;
  padding: 13px 14px;
  background: #fafafa;
}

.nftf__config-grid span,
.nftf__config-modules > span {
  display: block;
  color: #999;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .10em;
}

.nftf__config-grid strong {
  display: block;
  margin-top: 4px;
  overflow: hidden;
  color: #262626;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nftf__config-modules {
  margin-top: 14px;
  padding: 13px 14px;
  border-left: 2px solid var(--nftf-red);
  background: #f7f7f7;
}

.nftf__config-modules p {
  margin: 5px 0 0;
  color: #444;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
}

.nftf__compare {
  position: relative;
  border-right: 1px solid var(--nftf-line);
  background: #f6f6f6;
}

.nftf__compare::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 0;
  width: 2px;
  background: var(--nftf-red);
}

.nftf__compare.is-max::before {
  background: #242424;
}

.nftf__compare-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

.nftf__compare-head span {
  display: block;
  color: #939393;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .11em;
}

.nftf__compare-head h4 {
  margin: 5px 0 0;
  color: #1d1d1d;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.025em;
}

.nftf__compare-head > strong {
  flex: 0 0 auto;
  padding: 6px 8px;
  border-radius: 99px;
  background: #fff;
  color: var(--nftf-red);
  font-size: 8px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .05em;
}

.nftf__compare > p {
  margin: 15px 0 0;
  color: #686868;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.6;
}

.nftf__compare-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.nftf__compare-facts span {
  padding: 6px 8px;
  border: 1px solid #dddddd;
  border-radius: 99px;
  background: #fff;
  color: #565656;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .05em;
}

.nftf__textlink {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: #232323;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.nftf__textlink span {
  color: var(--nftf-red);
  transition: transform 180ms ease;
}

.nftf__textlink:hover,
.nftf__textlink:focus-visible {
  color: var(--nftf-red);
  outline: none;
}

.nftf__textlink:hover span,
.nftf__textlink:focus-visible span {
  transform: translateX(3px);
}

.nftf__actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nftf__button--checkout {
  width: 100%;
  min-height: 52px;
}

.nftf__checkout-note {
  display: block;
  margin: 8px 0 0;
  color: #8a8a8a;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.nftf__actions-secondary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 17px;
}

.nftf__actions-secondary .nftf__button {
  width: 100%;
  min-height: 42px;
  font-size: 8px;
}

.nftf__result-footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px clamp(24px, 3vw, 38px);
  border-top: 1px solid var(--nftf-line);
}

/* =========================================================
   RESPONSIVE · TABLET
   ========================================================= */

@media (max-width: 1080px) {
  .nftf__inner {
    width: min(calc(100% - 40px), 1180px);
  }

  .nftf__shell {
    grid-template-columns: 270px minmax(0, 1fr);
  }

  .nftf__rail {
    padding-inline: 22px;
  }

  .nftf__module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nftf__options--three {
    grid-template-columns: 1fr;
  }

  .nftf__options--three .nftf__option {
    min-height: 98px;
  }

  .nftf__result-main {
    grid-template-columns: 1fr;
  }

  .nftf__why,
  .nftf__compare {
    border-right: 0;
  }

  .nftf__configuration,
  .nftf__compare,
  .nftf__actions {
    border-bottom: 1px solid var(--nftf-line);
  }

  .nftf__price {
    position: static;
    max-width: 360px;
    margin-top: 24px;
    text-align: left;
  }

  .nftf__price > div {
    justify-content: flex-start;
  }

  .nftf__result-hero {
    min-height: 360px;
  }
}

@media (max-width: 900px) {
  .nftf__inner {
    width: min(calc(100% - 32px), 850px);
  }

  .nftf__shell {
    display: block;
  }

  .nftf__rail {
    display: none;
  }

  .nftf__stage {
    min-height: 650px;
  }

  .nftf__options--five,
  .nftf__options--four {
    grid-template-columns: 1fr;
  }

  .nftf__options--five .nftf__option:last-child {
    grid-column: auto;
  }

  .nftf__option {
    min-height: 96px;
  }
}

/* =========================================================
   RESPONSIVE · MOBILE
   ========================================================= */

@media (max-width: 600px) {
  .nftf__inner {
    width: min(calc(100% - 24px), 560px);
    padding: 66px 0 70px;
  }

  .nftf__header {
    margin-bottom: 34px;
  }

  .nftf__index {
    margin-bottom: 17px;
  }

  .nftf__eyebrow,
  .nftf__screen-kicker,
  .nftf__question-head > span {
    font-size: 12px;
  }

  .nftf__header h2 {
    font-size: clamp(34px, 11vw, 45px);
    line-height: 1;
  }

  .nftf__header > p,
  .nftf__start > p,
  .nftf__question-head p,
  .nftf__result-claim {
    font-size: 12px;
  }

  .nftf__stage {
    min-height: 620px;
    padding: 24px 18px 26px;
    border-radius: 13px;
  }

  .nftf__stage::before {
    left: 18px;
    width: 38px;
  }

  .nftf__progress {
    margin-bottom: 33px;
  }

  .nftf__start {
    padding-top: 8px;
  }

  .nftf__start h3,
  .nftf__question-head h3 {
    font-size: clamp(29px, 9vw, 38px);
    line-height: 1.02;
  }

  .nftf__start-facts {
    grid-template-columns: 1fr;
    margin: 27px 0 28px;
  }

  .nftf__start-facts > div {
    min-height: 59px;
    padding: 13px 16px;
  }

  .nftf__start-facts strong {
    font-size: 22px;
  }

  .nftf__button--large,
  .nftf__module-footer .nftf__button {
    width: 100%;
  }

  .nftf__question-head {
    margin-bottom: 24px;
  }

  .nftf__options,
  .nftf__module-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .nftf__option {
    grid-template-columns: 43px minmax(0,1fr) 20px;
    gap: 12px;
    min-height: 88px;
    padding: 14px 13px;
    border-radius: 8px;
  }

  .nftf__option-icon {
    width: 41px;
    height: 41px;
  }

  .nftf__option-icon svg {
    width: 22px;
    height: 22px;
  }

  .nftf__option-copy strong {
    font-size: 10px;
  }

  .nftf__option-copy small {
    font-size: 9px;
  }

  .nftf__module {
    min-height: 88px;
    padding: 14px;
  }

  .nftf__module strong {
    padding-top: 18px;
  }

  .nftf__notice {
    margin-top: 17px;
    padding: 12px 13px;
  }

  .nftf__backline {
    margin-top: 20px;
  }

  .nftf__stage:has([data-nftf-screen="result"].is-active) {
    padding: 0;
  }

  .nftf__result-hero {
    min-height: 382px;
    padding: 27px 20px 29px;
  }

  .nftf__result-topline {
    padding-bottom: 16px;
  }

  .nftf__signal {
    top: 72px;
    right: 22px;
  }

  .nftf__result-kicker {
    margin-top: 31px;
    font-size: 8px;
  }

  .nftf__result-hero h3 {
    max-width: calc(100% - 50px);
    font-size: clamp(42px, 15vw, 60px);
  }

  .nftf__price {
    max-width: none;
    margin-top: 26px;
    padding-left: 14px;
  }

  .nftf__price > span {
    font-size: 7px;
  }

  .nftf__why,
  .nftf__configuration,
  .nftf__compare,
  .nftf__actions {
    padding: 24px 19px;
  }

  .nftf__config-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nftf__compare-head {
    display: block;
  }

  .nftf__compare-head > strong {
    display: inline-block;
    margin-top: 10px;
  }

  .nftf__result-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 19px 20px;
  }

  .nftf__actions-secondary {
    gap: 7px;
  }
}

@media (max-width: 380px) {
  .nftf__inner {
    width: calc(100% - 16px);
  }

  .nftf__stage {
    padding-inline: 14px;
  }

  .nftf__config-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .nftf *,
  .nftf *::before,
  .nftf *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

.nftf__term-note {
  margin: 12px 0 0;
  color: #858585;
  font-size: 8px;
  font-weight: 600;
  line-height: 1.55;
}

/* Link-CTAs behalten ihre explizite Buttonfarbe trotz lokaler Link-Normalisierung. */
.nftf a.nftf__button--primary,
.nftf a.nftf__button--primary:visited {
  color: #ffffff;
}

@media (max-width: 600px) {
  .nftf__result-hero h3 {
    max-width: calc(100% - 35px);
    font-size: clamp(38px, 12.5vw, 52px);
    white-space: nowrap;
  }
}
