/* ============================================================
   AFFILIATE PARTNERSHIP PAGE — affiliate.css
   Dark Mode Enforced: bg #050505, text #fff / #a3a3a3
   Glass: blur(24px), rgba(255,255,255,0.03), rgba(255,255,255,0.08)
   Sections: Hero | Why | Commissions | HIW | Audience | Gatekeeper
   ============================================================ */

/* ============================================================
   0. GLOBAL AFFILIATE TOKENS
   ============================================================ */
   #nfs-aff-hero,
   #nfs-aff-why,
   #nfs-aff-comm,
   #nfs-aff-hiw,
   #nfs-aff-aud,
   #apply {
     --aff-bg:           transparent;
     --aff-text:         #ffffff;
     --aff-muted:        #a3a3a3;
     --aff-glass-bg:     rgba(255, 255, 255, 0.03);
     --aff-glass-border: rgba(255, 255, 255, 0.08);
     --aff-glass-blur:   24px;
     --aff-accent:       #4f6ef7;
     --aff-accent-glow:  rgba(79, 110, 247, 0.35);
     --aff-purple:       #8b5cf6;
     --aff-purple-soft:  #a78bfa;
     --aff-purple-deep:  #6d28d9;
     --aff-purple-glow:  rgba(139, 92, 246, 0.40);
     --aff-purple-glow-soft: rgba(139, 92, 246, 0.16);
     --aff-orange:       #fb923c;
     --aff-orange-glow:  rgba(251, 146, 60, 0.45);
     --aff-blue:         #4d8eff;
     --aff-blue-glow:    rgba(77, 142, 255, 0.45);
     --aff-green:        #22c55e;
     --aff-gold:         #f5c842;
     --aff-gold-glow:    rgba(245, 200, 66, 0.25);
     --aff-electric:     #4f6ef7;
     --aff-electric-glow: rgba(79, 110, 247, 0.35);
     --aff-highlight:    #e8486a;
     --aff-hairline:     rgba(255, 255, 255, 0.08);
     --aff-ease:         cubic-bezier(0.16, 1, 0.3, 1);
     --aff-r-xl:         28px;
     --aff-r-lg:         18px;
     --aff-r-md:         12px;
     --aff-r-sm:         8px;
     --aff-r-pill:       999px;
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
     text-rendering: optimizeLegibility;
     box-sizing: border-box;
   }
   
   *, *::before, *::after { box-sizing: border-box; }
   
   /* ============================================================
      1. HERO SECTION
      ============================================================ */
   #nfs-aff-hero {
     position: relative;
     isolation: isolate;
     display: flex;
     align-items: center;
     justify-content: center;
     width: 100%;
     min-height: 640px;
     padding: 96px clamp(20px, 5vw, 48px);
     overflow: clip;
     background: var(--aff-bg);
     color: var(--aff-text);
     text-align: center;
   }
   
   #nfs-aff-hero .nfs-aff-hero__bg {
     position: absolute;
     inset: 0;
     z-index: -1;
     pointer-events: none;
     background:
       radial-gradient(ellipse 80% 55% at 50% -10%, rgba(139, 92, 246, 0.14) 0%, transparent 70%),
       radial-gradient(ellipse 60% 45% at 100% 50%, rgba(77, 142, 255, 0.10) 0%, transparent 65%);
   }
   
   #nfs-aff-hero .nfs-aff-hero__orb {
     position: absolute;
     border-radius: 50%;
     filter: blur(72px);
     pointer-events: none;
   }
   
   #nfs-aff-hero .nfs-aff-hero__orb--primary {
     top: -8%;
     left: 50%;
     width: clamp(280px, 42vw, 560px);
     height: clamp(280px, 42vw, 560px);
     transform: translateX(-50%);
     background: radial-gradient(circle, rgba(139, 92, 246, 0.28) 0%, rgba(139, 92, 246, 0) 68%);
   }
   
   #nfs-aff-hero .nfs-aff-hero__orb--secondary {
     right: -6%;
     bottom: 8%;
     width: clamp(200px, 28vw, 380px);
     height: clamp(200px, 28vw, 380px);
     background: radial-gradient(circle, rgba(77, 142, 255, 0.22) 0%, rgba(77, 142, 255, 0) 70%);
   }
   
   #nfs-aff-hero .nfs-aff-hero__container {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 24px;
     width: min(920px, 100%);
     margin-inline: auto;
     position: relative;
     z-index: 1;
   }
   
   #nfs-aff-hero .nfs-aff-hero__badge {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 10px 18px;
     border-radius: var(--aff-r-pill);
     background: rgba(255, 255, 255, 0.06);
     border: 1px solid rgba(255, 255, 255, 0.12);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
   }
   
   #nfs-aff-hero .nfs-aff-hero__badge-icon {
     font-size: 0.95rem;
     line-height: 1;
     flex-shrink: 0;
     color: #FFCC00 !important;
   }
   
   #nfs-aff-hero .nfs-aff-hero__badge-text {
     font-size: clamp(0.78rem, 1.6vw, 0.875rem);
     font-weight: 500;
     letter-spacing: -0.01em;
     color: rgba(255, 255, 255, 0.8);
   }
   
   #nfs-aff-hero .nfs-aff-hero__badge-highlight {
     font-weight: 700;
     color: #FF3366 !important;
   }
   
   #nfs-aff-hero .nfs-aff-hero__headline {
     margin: 0;
     max-width: 18ch;
     font-size: clamp(36px, 6.5vw, 72px);
     font-weight: 800;
     line-height: 1.02;
     letter-spacing: -0.045em;
     color: var(--aff-text);
     text-wrap: balance;
   }
   
   #nfs-aff-hero .nfs-aff-hero__subheadline {
     margin: 0;
     max-width: 600px;
     font-size: clamp(16px, 2vw, 18px);
     font-weight: 400;
     line-height: 1.65;
     letter-spacing: -0.01em;
     color: var(--aff-muted);
     text-wrap: pretty;
   }
   
   #nfs-aff-hero .nfs-aff-hero__actions {
     display: flex;
     flex-direction: row;
     flex-wrap: wrap;
     align-items: center;
     justify-content: center;
     gap: 16px;
     margin-top: 8px;
   }
   
   #nfs-aff-hero .nfs-aff-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     min-height: 48px;
     padding: 13px 32px;
     border-radius: 8px;
     border: 1px solid transparent;
     font-size: 0.9375rem;
     font-weight: 600;
     letter-spacing: -0.01em;
     text-decoration: none;
     cursor: pointer;
     transition:
       transform 0.22s var(--aff-ease),
       box-shadow 0.22s var(--aff-ease),
       background-color 0.22s ease,
       border-color 0.22s ease;
   }
   
   #nfs-aff-hero .nfs-aff-btn:focus-visible {
     outline: 2px solid var(--aff-accent);
     outline-offset: 3px;
   }
   
   #nfs-aff-hero .nfs-aff-btn--primary {
     background: var(--aff-accent);
     color: #ffffff;
     box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
   }
   
   #nfs-aff-hero .nfs-aff-btn--primary:hover {
     transform: translateY(-2px) scale(1.02);
     box-shadow: 0 10px 28px var(--aff-accent-glow), 0 2px 6px rgba(0, 0, 0, 0.18);
   }
   
   #nfs-aff-hero .nfs-aff-btn--secondary {
     background: transparent;
     color: var(--aff-text);
     border-color: rgba(255, 255, 255, 0.14);
   }
   
   #nfs-aff-hero .nfs-aff-btn--secondary:hover {
     background: rgba(255, 255, 255, 0.05);
     border-color: rgba(255, 255, 255, 0.22);
     transform: translateY(-1px);
   }
   
   @media (max-width: 768px) {
     #nfs-aff-hero {
       min-height: auto;
       padding-top: clamp(56px, 14vw, 88px);
       padding-bottom: clamp(56px, 14vw, 88px);
     }
   
     #nfs-aff-hero .nfs-aff-hero__actions {
       flex-direction: column;
       width: 100%;
       max-width: 360px;
     }
   
     #nfs-aff-hero .nfs-aff-btn {
       width: 100%;
     }
   }
   
   /* ============================================================
      2. WHY PARTNER — 3 GLASS CARDS
      ============================================================ */
   #nfs-aff-why {
     width: 100%;
     padding: 80px clamp(1.25rem, 5vw, 3rem);
     background: var(--aff-bg);
     color: var(--aff-text);
   }
   
   #nfs-aff-why .nfs-aff-why__container {
     width: min(1200px, 100%);
     margin-inline: auto;
   }
   
   #nfs-aff-why .nfs-aff-why__title {
     margin: 0 0 clamp(2rem, 5vw, 3rem);
     font-size: clamp(28px, 4vw, 40px);
     font-weight: 800;
     line-height: 1.1;
     letter-spacing: -0.04em;
     text-align: center;
     text-wrap: balance;
     color: var(--aff-text);
   }
   
   #nfs-aff-why .nfs-aff-why__grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 32px;
   }
   
   @media (min-width: 769px) {
     #nfs-aff-why .nfs-aff-why__grid {
       grid-template-columns: repeat(3, 1fr);
     }
   }
   
   #nfs-aff-why .nfs-aff-glass-card {
     display: flex;
     flex-direction: column;
     gap: 1rem;
     padding: clamp(1.5rem, 3vw, 2rem);
     border-radius: 16px;
     background: var(--aff-glass-bg);
     border: 1px solid var(--aff-glass-border);
     backdrop-filter: blur(var(--aff-glass-blur));
     -webkit-backdrop-filter: blur(var(--aff-glass-blur));
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.06);
     transition:
       transform 0.28s var(--aff-ease),
       box-shadow 0.28s var(--aff-ease),
       border-color 0.28s var(--aff-ease);
     will-change: transform;
   }
   
   #nfs-aff-why .nfs-aff-glass-card:hover {
     transform: translateY(-5px);
     border-color: rgba(255, 255, 255, 0.18);
     box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
   }
   
   #nfs-aff-why .nfs-aff-card-icon {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 56px;
     height: 56px;
     flex-shrink: 0;
     border-radius: 12px;
     background: rgba(255, 255, 255, 0.06);
     border: 1px solid var(--aff-glass-border);
     font-size: 1.6rem;
     line-height: 1;
   }
   
   #nfs-aff-why .nfs-aff-glass-card__title {
     margin: 0;
     font-size: 20px;
     font-weight: 700;
     line-height: 1.25;
     letter-spacing: -0.02em;
     color: var(--aff-text);
   }
   
   #nfs-aff-why .nfs-aff-glass-card__text {
     margin: 0;
     font-size: 16px;
     font-weight: 400;
     line-height: 1.65;
     letter-spacing: -0.01em;
     color: var(--aff-muted);
     text-wrap: pretty;
   }
   
   @media (prefers-reduced-motion: reduce) {
     #nfs-aff-why .nfs-aff-glass-card {
       transition: none;
     }
   
     #nfs-aff-why .nfs-aff-glass-card:hover {
       transform: none;
     }
   }
   
   /* ============================================================
      3. COMMISSIONS SECTION
      ============================================================ */
   #nfs-aff-comm {
     width: 100%;
     padding: 40px clamp(1rem, 3vw, 1.5rem);
     background: var(--aff-bg);
     color: var(--aff-text);
   }
   
   #nfs-aff-comm .nfs-aff-comm__wrap {
     position: relative;
     width: min(1200px, 100%);
     margin-inline: auto;
     padding: 80px 40px;
     border-radius: 32px;
     background: rgba(20, 20, 20, 0.40);
     border: 1px solid rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(32px) saturate(140%);
     -webkit-backdrop-filter: blur(32px) saturate(140%);
     box-shadow:
       0 12px 40px rgba(0, 0, 0, 0.24),
       inset 0 1px 0 rgba(255, 255, 255, 0.05);
   }
   
   #nfs-aff-comm .nfs-aff-comm__intro {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     gap: 16px;
     margin-bottom: 56px;
   }
   
   #nfs-aff-comm .nfs-aff-comm__title {
     margin: 0;
     max-width: 22ch;
     font-size: clamp(32px, 4vw, 52px);
     font-weight: 800;
     line-height: 1.08;
     letter-spacing: -0.04em;
     color: #ffffff;
     text-align: center;
     text-wrap: balance;
   }
   
   #nfs-aff-comm .nfs-aff-comm__subtitle {
     margin: 0;
     max-width: 52ch;
     font-size: 18px;
     font-weight: 400;
     line-height: 1.65;
     letter-spacing: -0.01em;
     color: #a3a3a3;
     text-align: center;
     text-wrap: pretty;
   }
   
   #nfs-aff-comm .nfs-aff-comm__cards {
     display: flex;
     flex-direction: column;
     gap: 20px;
   }
   
   #nfs-aff-comm .nfs-aff-comm__card {
     display: flex;
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
     gap: 32px;
     padding: 40px 40px;
     border-radius: 16px;
     background: rgba(30, 30, 30, 0.55);
     border: 1px solid rgba(255, 255, 255, 0.06);
     backdrop-filter: blur(20px) saturate(160%);
     -webkit-backdrop-filter: blur(20px) saturate(160%);
     box-shadow: 0 6px 24px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.07);
     opacity: 0;
     transform: translateY(40px);
     transition:
       opacity 0.8s var(--aff-ease),
       transform 0.8s var(--aff-ease),
       border-color 0.28s ease,
       box-shadow 0.28s ease;
   }
   
   #nfs-aff-comm .nfs-aff-comm__card.nfs-animate-in {
     opacity: 1;
     transform: translateY(0);
   }
   
   #nfs-aff-comm .nfs-aff-comm__card.nfs-animate-in:hover {
     transform: translateY(-3px);
   }
   
   #nfs-aff-comm .nfs-aff-comm__card-left {
     display: flex;
     flex-direction: column;
     justify-content: center;
     gap: 8px;
     flex: 0 0 38%;
     min-width: 0;
   }
   
   #nfs-aff-comm .nfs-aff-comm__card-theme {
     margin: 0;
     font-size: 36px;
     font-weight: 800;
     line-height: 1.12;
     letter-spacing: -0.03em;
     color: #ffffff;
   }
   
   #nfs-aff-comm .nfs-aff-comm__card-price {
     margin: 0;
     font-size: 15px;
     font-weight: 700;
     line-height: 1.4;
     letter-spacing: -0.01em;
     color: #0A84FF !important;
   }
   
   #nfs-aff-comm .nfs-aff-comm__card-badge {
     margin: 0;
     font-size: 13px;
     font-weight: 400;
     line-height: 1.45;
     color: #737373;
   }
   
   #nfs-aff-comm .nfs-aff-comm__card-right {
     display: flex;
     flex-direction: column;
     justify-content: center;
     gap: 8px;
     flex: 1 1 auto;
     min-width: 0;
     padding-left: 32px;
     border-left: 1px solid rgba(255, 255, 255, 0.06);
   }
   
   #nfs-aff-comm .nfs-aff-comm__card-commission {
     margin: 0;
     font-size: 18px;
     font-weight: 500;
     line-height: 1.4;
     letter-spacing: -0.02em;
     color: #ffffff;
   }
   
   #nfs-aff-comm .nfs-aff-comm__card-perk {
     margin: 0;
     font-size: 15px;
     font-weight: 400;
     line-height: 1.55;
     letter-spacing: -0.01em;
     color: #a3a3a3;
   }
   
   @media (max-width: 768px) {
     #nfs-aff-comm .nfs-aff-comm__wrap {
       padding: 40px 20px;
       border-radius: 20px;
     }
   
     #nfs-aff-comm .nfs-aff-comm__card {
       flex-direction: column;
       align-items: stretch;
       gap: 20px;
       padding: 24px 20px;
     }
   
     #nfs-aff-comm .nfs-aff-comm__card-left {
       flex: none;
       width: 100%;
     }
   
     #nfs-aff-comm .nfs-aff-comm__card-right {
       width: 100%;
       padding-left: 0;
       padding-top: 20px;
       border-left: none;
       border-top: 1px solid rgba(255, 255, 255, 0.06);
     }
   
     #nfs-aff-comm .nfs-aff-comm__card.nfs-animate-in:hover {
       transform: translateY(0);
     }
   }
   
   @media (prefers-reduced-motion: reduce) {
     #nfs-aff-comm .nfs-aff-comm__card {
       opacity: 1;
       transform: none;
       transition: none;
     }
   }
   
   /* ============================================================
      4. HOW IT WORKS — VISUAL STEP CARDS
      ============================================================ */
   #nfs-aff-hiw {
     position: relative;
     z-index: 1;
     background: var(--aff-bg);
     color: var(--aff-text);
   }
   
   #nfs-aff-hiw::before {
     content: "";
     position: absolute;
     inset: 0;
     background:
       radial-gradient(ellipse 60% 40% at 50% 0%, rgba(139, 92, 246, 0.07), transparent 60%),
       radial-gradient(ellipse 50% 35% at 100% 100%, rgba(251, 146, 60, 0.05), transparent 60%);
     pointer-events: none;
     z-index: 0;
   }
   
   #nfs-aff-hiw .nfs-aff-hiw__section {
     position: relative;
     z-index: 1;
     max-width: 1240px;
     margin: 0 auto;
     padding: clamp(48px, 8vw, 110px) clamp(20px, 4vw, 40px);
     display: flex;
     flex-direction: column;
     gap: clamp(24px, 4vw, 36px);
   }
   
   /* Clean Header */
   #nfs-aff-hiw .nfs-aff-hiw__header {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     text-align: center;
     width: 100%;
     position: relative;
     z-index: 10;
     background: transparent;
     border: none;
     box-shadow: none;
     backdrop-filter: none;
     padding: 0;
     margin-bottom: 80px;
   }
   
   #nfs-aff-hiw .nfs-aff-hiw__eyebrow {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     font-size: 12px;
     font-weight: 700;
     letter-spacing: 0.22em;
     text-transform: uppercase;
     color: var(--aff-purple-soft);
     padding: 6px 16px;
     border: 1px solid rgba(139, 92, 246, 0.35);
     border-radius: var(--aff-r-pill);
     background: transparent;
     margin: 0;
   }
   
   #nfs-aff-hiw .nfs-aff-hiw__eyebrow::before {
     content: "";
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: var(--aff-purple);
     flex-shrink: 0;
   }
   
   #nfs-aff-hiw .nfs-aff-hiw__title {
     font-size: clamp(36px, 5.5vw, 64px);
     font-weight: 800;
     letter-spacing: -0.025em;
     line-height: 1.1;
     color: #ffffff;
     margin: 20px 0;
     padding: 0;
   }
   
   #nfs-aff-hiw .nfs-aff-hiw__subtitle {
     color: #a3a3a3;
     max-width: 600px;
     line-height: 1.6;
     font-size: clamp(14px, 1.6vw, 17px);
     margin: 0;
   }
   
   /* Step Card outer glass shell */
   #nfs-aff-hiw .step-card {
     position: relative;
     border-radius: var(--aff-r-xl);
     border: 1px solid var(--aff-hairline);
     background: var(--aff-glass-bg);
     backdrop-filter: blur(30px) saturate(140%);
     -webkit-backdrop-filter: blur(20px) saturate(140%);
     padding: clamp(24px, 4vw, 48px);
     overflow: hidden;
     box-shadow:
       0 1px 0 rgba(255, 255, 255, 0.06) inset,
       0 30px 60px -30px rgba(5, 5, 5, 0.80);
   }
   
   #nfs-aff-hiw .step-card::after {
     content: "";
     position: absolute;
     width: 480px;
     height: 480px;
     border-radius: 50%;
     filter: blur(110px);
     opacity: 0.16;
     pointer-events: none;
     z-index: -1;
   }
   
   #nfs-aff-hiw .step-card--01::after {
     background: var(--aff-purple);
     top: -220px;
     left: -160px;
   }
   
   #nfs-aff-hiw .step-card--02::after {
     background: var(--aff-purple);
     bottom: -240px;
     right: -160px;
   }
   
   #nfs-aff-hiw .step-card--03::after {
     background: radial-gradient(circle at 30% 30%, var(--aff-orange), transparent 60%),
                 radial-gradient(circle at 70% 70%, var(--aff-purple), transparent 60%);
     opacity: 0.14;
     top: -180px;
     right: -140px;
   }
   
   #nfs-aff-hiw .step-card__head {
     display: flex;
     flex-direction: column;
     gap: 10px;
     margin-bottom: clamp(20px, 3vw, 32px);
   }
   
   #nfs-aff-hiw .step-card__title {
     margin: 0;
     font-size: clamp(22px, 3.2vw, 34px);
     font-weight: 800;
     letter-spacing: -0.01em;
     color: #ffffff;
   }
   
   #nfs-aff-hiw .step-card__sub {
     margin: 0;
     color: #a3a3a3;
     font-size: clamp(13px, 1.4vw, 16px);
     max-width: 640px;
   }
   
   #nfs-aff-hiw .step-card__sub--top {
     margin-top: -2px;
   }
   
   #nfs-aff-hiw .step-card__sub--below {
     margin-top: clamp(16px, 2.5vw, 24px);
     text-align: center;
     max-width: 680px;
     margin-left: auto;
     margin-right: auto;
   }
   
   /* Inner Panels */
   #nfs-aff-hiw .panel {
     border-radius: var(--aff-r-lg);
     border: 1px solid var(--aff-hairline);
     background: rgba(255, 255, 255, 0.015);
     padding: clamp(20px, 3vw, 36px);
   }
   
   #nfs-aff-hiw .panel--glow {
     border: 1px solid rgba(139, 92, 246, 0.35);
     background:
       linear-gradient(180deg,
         rgba(139, 92, 246, 0.07) 0%,
         rgba(139, 92, 246, 0.02) 40%,
         rgba(255, 255, 255, 0.015) 100%);
     box-shadow:
       0 0 0 1px rgba(139, 92, 246, 0.05) inset,
       0 0 60px -10px var(--aff-purple-glow-soft);
   }
   
   /* Grids */
   #nfs-aff-hiw .grid {
     display: grid;
     gap: clamp(20px, 3vw, 0px);
   }
   
   #nfs-aff-hiw .grid--3 {
     grid-template-columns: repeat(3, 1fr);
   }
   
   #nfs-aff-hiw .grid--2 {
     grid-template-columns: repeat(2, 1fr);
   }
   
   #nfs-aff-hiw .col {
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     gap: 10px;
     padding: 0 clamp(16px, 2.6vw, 36px);
   }
   
   #nfs-aff-hiw .grid--3 .col:first-child,
   #nfs-aff-hiw .grid--2 .col:first-child {
     padding-left: 0;
   }
   
   #nfs-aff-hiw .grid--3 .col:last-child,
   #nfs-aff-hiw .grid--2 .col:last-child {
     padding-right: 0;
   }
   
   #nfs-aff-hiw .grid--3 > .col:not(:last-child),
   #nfs-aff-hiw .grid--2.grid--divided > .col:first-child,
   #nfs-aff-hiw .panel--glow.grid--2 > .col:first-child {
     border-right: 1px solid var(--aff-hairline);
   }
   
   /* Column elements */
   #nfs-aff-hiw .col__icon {
     width: 46px;
     height: 46px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: var(--aff-r-md);
     background: rgba(255, 255, 255, 0.04);
     border: 1px solid var(--aff-hairline);
     color: #ffffff;
     margin-bottom: 4px;
   }
   
   #nfs-aff-hiw .col__icon svg {
     width: 22px;
     height: 22px;
   }
   
   #nfs-aff-hiw .col__icon--accent {
     color: var(--aff-purple-soft);
     border-color: rgba(139, 92, 246, 0.30);
     background: rgba(139, 92, 246, 0.08);
     box-shadow: 0 0 24px -6px var(--aff-purple-glow);
   }
   
   #nfs-aff-hiw .col__icon--ticket {
     position: relative;
     color: #ffffff;
     background: rgba(139, 92, 246, 0.10);
     border-color: rgba(139, 92, 246, 0.30);
     box-shadow: 0 0 24px -6px var(--aff-purple-glow);
   }
   
   #nfs-aff-hiw .col__icon--ticket .spark {
     position: absolute;
     background: var(--aff-purple-soft);
     border-radius: 1px;
     animation: nfs-aff-twinkle 2.4s ease-in-out infinite;
   }
   
   #nfs-aff-hiw .spark--a { width: 10px; height: 2px; top: -6px; right: 2px; transform: rotate(45deg); animation-delay: 0.2s; }
   #nfs-aff-hiw .spark--b { width: 6px;  height: 2px; bottom: -2px; left: -8px; transform: rotate(-30deg); animation-delay: 0.8s; }
   #nfs-aff-hiw .spark--c { width: 2px;  height: 2px; top: 4px; right: -9px; border-radius: 50%; animation-delay: 1.4s; }
   
   #nfs-aff-hiw .col__title {
     margin: 0;
     font-size: clamp(15px, 1.6vw, 18px);
     font-weight: 700;
     letter-spacing: 0.06em;
     text-transform: uppercase;
     color: #ffffff;
   }
   
   #nfs-aff-hiw .col__title--accent {
     color: var(--aff-purple-soft);
     text-shadow: 0 0 18px var(--aff-purple-glow-soft);
   }
   
   #nfs-aff-hiw .col__text {
     margin: 0;
     color: #a3a3a3;
     font-size: clamp(13px, 1.3vw, 15px);
   }
   
   #nfs-aff-hiw .col__text--muted {
     color: rgba(163, 163, 163, 0.65);
     font-size: 13px;
   }
   
   /* Mock fields */
   #nfs-aff-hiw .field-group {
     display: flex;
     flex-direction: column;
     gap: 10px;
     width: 100%;
     margin-top: 6px;
   }
   
   #nfs-aff-hiw .field {
     width: 100%;
     font-family: inherit;
     font-size: 14px;
     color: rgba(255, 255, 255, 0.84);
     background: rgba(255, 255, 255, 0.035);
     border: 1px solid var(--aff-hairline);
     border-radius: var(--aff-r-md);
     padding: 13px 16px;
     pointer-events: none;
     user-select: none;
   }
   
   #nfs-aff-hiw .field::placeholder {
     color: rgba(163, 163, 163, 0.65);
   }
   
   /* Mock Buttons */
   #nfs-aff-hiw .btn {
     appearance: none;
     border: none;
     cursor: pointer;
     font-family: inherit;
     font-weight: 700;
     letter-spacing: 0.02em;
     border-radius: var(--aff-r-md);
     transition:
       transform 0.15s var(--aff-ease),
       box-shadow 0.25s var(--aff-ease);
   }
   
   #nfs-aff-hiw .btn--purple {
     width: 100%;
     margin-top: 6px;
     padding: 14px 20px;
     font-size: 14px;
     color: #ffffff;
     background: var(--aff-purple);
     box-shadow: 0 8px 28px -8px var(--aff-purple-glow), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
     pointer-events: none;
     user-select: none;
     cursor: default;
   }
   
   #nfs-aff-hiw .btn--purple-sm {
     flex-shrink: 0;
     padding: 11px 18px;
     font-size: 13px;
     color: #ffffff;
     background: var(--aff-purple);
     box-shadow: 0 6px 20px -8px var(--aff-purple-glow);
     white-space: nowrap;
     pointer-events: none;
     user-select: none;
     cursor: default;
   }
   
   #nfs-aff-hiw .btn--outline {
     width: 100%;
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 16px 20px;
     font-size: 14px;
     background: rgba(255, 255, 255, 0.02);
     color: #ffffff;
   }
   
   #nfs-aff-hiw .btn--outline svg {
     width: 20px;
     height: 20px;
     flex-shrink: 0;
   }
   
   #nfs-aff-hiw .btn--orange {
     border: 1px solid rgba(255, 107, 0, 0.5) !important;
     border-color: rgba(255, 107, 0, 0.5) !important;
     box-shadow: 0 0 0 1px rgba(255, 107, 0, 0.05) inset, 0 0 30px -12px rgba(255, 107, 0, 0.35);
     color: #FF6B00 !important;
   }
   
   #nfs-aff-hiw .btn--orange svg { color: #FF6B00 !important; }
   
   #nfs-aff-hiw .btn--orange:hover {
     box-shadow: 0 0 0 1px rgba(255, 107, 0, 0.08) inset, 0 0 40px -8px rgba(255, 107, 0, 0.45);
     transform: translateY(-1px);
   }
   
   #nfs-aff-hiw .btn--blue {
     border: 1px solid rgba(0, 112, 186, 0.5) !important;
     border-color: rgba(0, 112, 186, 0.5) !important;
     box-shadow: 0 0 0 1px rgba(0, 112, 186, 0.05) inset, 0 0 30px -12px rgba(0, 112, 186, 0.35);
     color: #0070BA !important;
   }
   
   #nfs-aff-hiw .btn--blue svg { color: #0070BA !important; }
   
   #nfs-aff-hiw .btn--blue:hover {
     box-shadow: 0 0 0 1px rgba(0, 112, 186, 0.08) inset, 0 0 40px -8px rgba(0, 112, 186, 0.45);
     transform: translateY(-1px);
   }
   
   /* Pill / Progress */
   #nfs-aff-hiw .pill {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     margin-top: 8px;
     padding: 8px 16px;
     font-size: 12px;
     font-weight: 700;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     color: rgba(255, 255, 255, 0.84);
     background: rgba(255, 255, 255, 0.04);
     border: 1px solid var(--aff-hairline);
     border-radius: var(--aff-r-pill);
   }
   
   #nfs-aff-hiw .pill__dot {
     width: 7px;
     height: 7px;
     border-radius: 50%;
     background: var(--aff-purple);
     box-shadow: 0 0 0 3px var(--aff-purple-glow-soft), 0 0 10px var(--aff-purple-glow);
     animation: nfs-aff-pulse 2s ease-in-out infinite;
   }
   
   #nfs-aff-hiw .progress {
     width: 100%;
     height: 6px;
     border-radius: var(--aff-r-pill);
     background: rgba(255, 255, 255, 0.06);
     overflow: hidden;
     margin-top: 14px;
   }
   
   #nfs-aff-hiw .progress__fill {
     height: 100%;
     width: 62%;
     border-radius: var(--aff-r-pill);
     background: linear-gradient(90deg, var(--aff-purple-deep), var(--aff-purple-soft));
     box-shadow: 0 0 16px var(--aff-purple-glow);
     position: relative;
   }
   
   #nfs-aff-hiw .progress__fill::after {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
     width: 40%;
     animation: nfs-aff-shimmer 2.6s ease-in-out infinite;
   }
   
   /* Checklist */
   #nfs-aff-hiw .checklist {
     list-style: none;
     margin: 6px 0 0;
     padding: 0;
     display: flex;
     flex-direction: column;
     gap: 12px;
     width: 100%;
   }
   
   #nfs-aff-hiw .checklist li {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: clamp(13px, 1.3vw, 15px);
     color: rgba(255, 255, 255, 0.84);
   }
   
   #nfs-aff-hiw .checklist__icon {
     flex-shrink: 0;
     width: 20px;
     height: 20px;
     border-radius: 6px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: rgba(52, 199, 89, 0.12);
     border: 1px solid rgba(52, 199, 89, 0.35);
     color: #34C759 !important;
   }
   
   #nfs-aff-hiw .checklist__icon svg {
     width: 12px;
     height: 12px;
     color: #34C759 !important;
     stroke: #34C759 !important;
   }
   
   /* Badge */
   #nfs-aff-hiw .badge {
     display: inline-flex;
     align-items: center;
     padding: 6px 14px;
     font-size: 13px;
     font-weight: 800;
     letter-spacing: 0.04em;
     color: #ffffff;
     background: linear-gradient(135deg, var(--aff-purple-deep), var(--aff-purple));
     border-radius: var(--aff-r-sm);
     box-shadow: 0 6px 22px -8px var(--aff-purple-glow);
   }
   
   /* Code row */
   #nfs-aff-hiw .code-row {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 10px;
     width: 100%;
     margin-top: 10px;
     padding: 6px 6px 6px 16px;
     background: var(--aff-glass-bg);
     border: 1px solid var(--aff-hairline);
     border-radius: var(--aff-r-md);
     overflow: hidden;
   }
   
   #nfs-aff-hiw .code-row__value {
     flex: 1 1 auto;
     min-width: 0;
     font-family: 'SFMono-Regular', Menlo, Consolas, monospace;
     font-size: 13px;
     letter-spacing: 0.06em;
     color: rgba(255, 255, 255, 0.84);
     overflow: hidden;
     text-overflow: ellipsis;
     white-space: nowrap;
   }
   
   #nfs-aff-hiw .code-row__input {
     flex: 1 1 auto;
     min-width: 0;
     background: none;
     border: none;
     outline: none;
     font-family: inherit;
     font-size: 13px;
     color: rgba(163, 163, 163, 0.65);
     padding: 0;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
     pointer-events: none;
     user-select: none;
   }
   
   #nfs-aff-hiw .code-row .btn--purple-sm {
     flex: 0 0 auto;
   }
   
   /* Chart */
   #nfs-aff-hiw .chart {
     width: 100%;
     margin-top: 8px;
     border-radius: var(--aff-r-md);
     overflow: hidden;
   }
   
   #nfs-aff-hiw .chart svg { display: block; width: 100%; height: auto; }
   
   #nfs-aff-hiw .chart__line {
     stroke-dasharray: 620;
     stroke-dashoffset: 620;
     animation: nfs-aff-draw 2.2s var(--aff-ease) forwards 0.3s;
   }
   
   #nfs-aff-hiw .chart__dot {
     transform-origin: 400px 8px;
     animation: nfs-aff-pulse-dot 2s ease-in-out infinite 2.5s;
     opacity: 0;
     animation-fill-mode: forwards;
   }
   
   /* Orders */
   #nfs-aff-hiw .orders {
     list-style: none;
     margin: 14px 0 0;
     padding: 0;
     width: 100%;
     display: flex;
     flex-direction: column;
     gap: 10px;
   }
   
   #nfs-aff-hiw .orders li {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 12px;
     font-size: clamp(13px, 1.3vw, 14px);
   }
   
   #nfs-aff-hiw .orders__amount {
     color: #34C759 !important;
     font-weight: 600;
   }
   
   #nfs-aff-hiw .orders__amount::before {
     content: "●";
     font-size: 8px;
     color: #34C759 !important;
     margin-right: 8px;
     vertical-align: middle;
   }
   
   #nfs-aff-hiw .orders__time { color: rgba(163, 163, 163, 0.65); font-variant-numeric: tabular-nums; }
   
   #nfs-aff-hiw .badge-ghost {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     margin-top: 18px;
     padding: 8px 14px;
     font-size: 12px;
     font-weight: 600;
     color: #a3a3a3;
     background: var(--aff-glass-bg);
     border: 1px solid var(--aff-hairline);
     border-radius: var(--aff-r-pill);
   }
   
   #nfs-aff-hiw .badge-ghost svg { width: 13px; height: 13px; color: rgba(163, 163, 163, 0.65); }
   
   #nfs-aff-hiw .earnings-figure {
     margin: 4px 0;
     font-size: clamp(34px, 6vw, 56px);
     font-weight: 800;
     letter-spacing: -0.02em;
     background: linear-gradient(180deg, #ffffff, rgba(255, 255, 255, 0.81));
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
   }
   
   #nfs-aff-hiw .withdraw-actions {
     display: flex;
     flex-direction: column;
     gap: 12px;
     width: 100%;
     margin-top: clamp(12px, 2vw, 20px);
   }
   
   #nfs-aff-hiw .col--earnings { width: 100%; }
   
   /* Scroll reveal */
   #nfs-aff-hiw .nfs-animate-target {
     opacity: 0;
     transform: translateY(40px);
     transition:
       opacity 0.8s var(--aff-ease),
       transform 0.8s var(--aff-ease);
     will-change: opacity, transform;
   }
   
   #nfs-aff-hiw .nfs-animate-target.nfs-in-view {
     opacity: 1;
     transform: translateY(0);
   }
   
   #nfs-aff-hiw .step-card--01.nfs-animate-target { transition-delay: 0s; }
   #nfs-aff-hiw .step-card--02.nfs-animate-target { transition-delay: 0.12s; }
   #nfs-aff-hiw .step-card--03.nfs-animate-target { transition-delay: 0.24s; }
   
   /* HIW Animations */
   @keyframes nfs-aff-pulse {
     0%, 100% { opacity: 1; transform: scale(1); }
     50% { opacity: 0.55; transform: scale(0.85); }
   }
   
   @keyframes nfs-aff-shimmer {
     0% { transform: translateX(-120%); }
     60%, 100% { transform: translateX(280%); }
   }
   
   @keyframes nfs-aff-twinkle {
     0%, 100% { opacity: 0.25; }
     50% { opacity: 1; }
   }
   
   @keyframes nfs-aff-draw {
     to { stroke-dashoffset: 0; }
   }
   
   @keyframes nfs-aff-pulse-dot {
     0% { opacity: 0; transform: scale(0.4); }
     40% { opacity: 1; transform: scale(1.4); }
     70% { opacity: 0.7; transform: scale(1); }
     100% { opacity: 1; transform: scale(1); }
   }
   
   @media (max-width: 768px) {
     #nfs-aff-hiw .grid--3,
     #nfs-aff-hiw .grid--2 {
       grid-template-columns: 1fr;
       gap: clamp(20px, 6vw, 28px);
     }
   
     #nfs-aff-hiw .col { padding: 0; }
   
     #nfs-aff-hiw .grid--3 > .col:not(:last-child),
     #nfs-aff-hiw .grid--2.grid--divided > .col:first-child,
     #nfs-aff-hiw .panel--glow.grid--2 > .col:first-child {
       border-right: none;
       border-bottom: 1px solid var(--aff-hairline);
       padding-bottom: clamp(20px, 6vw, 28px);
     }
   
     #nfs-aff-hiw .col--earnings { align-items: stretch; }
     #nfs-aff-hiw .earnings-figure { text-align: left; }
   
     #nfs-aff-hiw .step-card--02 {
       width: 100%;
       overflow: hidden;
     }
   
     #nfs-aff-hiw .code-row {
       display: grid;
       grid-template-columns: minmax(0, 1fr) max-content;
       gap: 8px;
       width: 100%;
       padding: 8px;
       overflow: hidden;
       margin-top: 10px;
     }
   
     #nfs-aff-hiw .code-row__value,
     #nfs-aff-hiw .code-row__input {
       width: 100%;
       min-width: 0;
       white-space: nowrap;
       overflow: hidden;
       text-overflow: ellipsis;
       display: block;
       margin: 0;
       flex: unset;
     }
   }
   
   @media (max-width: 480px) {
     #nfs-aff-hiw .step-card { border-radius: 20px; }
     #nfs-aff-hiw .panel { border-radius: 14px; }
   }
   
   @media (prefers-reduced-motion: reduce) {
     #nfs-aff-hiw .nfs-animate-target {
       opacity: 1;
       transform: none;
       transition: none;
     }
   
     #nfs-aff-hiw .chart__line { animation: none; stroke-dashoffset: 0; }
     #nfs-aff-hiw .chart__dot { animation: none; opacity: 1; }
     #nfs-aff-hiw .pill__dot { animation: none; }
     #nfs-aff-hiw .progress__fill::after { display: none; }
     #nfs-aff-hiw .spark { animation: none; }
     #nfs-aff-hiw .btn { transition: none; }
   }
   
   /* ============================================================
      5. AUDIENCE SECTION
      ============================================================ */
   #nfs-aff-aud {
     width: 100%;
     padding: 100px clamp(1.25rem, 5vw, 3rem);
     background: var(--aff-bg);
     color: var(--aff-text);
     border-radius: 12px;
     border: 1px dashed rgba(255, 255, 255, 0.08);
   }
   
   #nfs-aff-aud .nfs-aff-aud__container {
     width: min(1200px, 100%);
     margin-inline: auto;
   }
   
   #nfs-aff-aud .nfs-aff-aud__header {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     margin-bottom: 60px;
     opacity: 0;
     transform: translateY(30px);
     transition:
       opacity 0.8s var(--aff-ease),
       transform 0.8s var(--aff-ease);
   }
   
   #nfs-aff-aud .nfs-aff-aud__header.nfs-animate-in {
     opacity: 1;
     transform: translateY(0);
   }
   
   #nfs-aff-aud .nfs-aff-aud__header h2 {
     margin: 0;
     font-size: clamp(32px, 5vw, 56px);
     font-weight: 800;
     line-height: 1.06;
     letter-spacing: -0.04em;
     text-wrap: balance;
     color: #ffffff;
   }
   
   #nfs-aff-aud .nfs-aff-aud__header p {
     margin: clamp(1rem, 2.5vw, 1.25rem) 0 0;
     max-width: 600px;
     font-size: 18px;
     font-weight: 400;
     line-height: 1.65;
     letter-spacing: -0.01em;
     color: #a3a3a3;
     text-wrap: pretty;
   }
   
   #nfs-aff-aud .nfs-aff-aud__grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 32px;
   }
   
   @media (min-width: 480px) and (max-width: 768px) {
     #nfs-aff-aud .nfs-aff-aud__grid {
       grid-template-columns: repeat(2, 1fr);
     }
   }
   
   @media (min-width: 769px) and (max-width: 1024px) {
     #nfs-aff-aud .nfs-aff-aud__grid {
       grid-template-columns: repeat(2, 1fr);
     }
   }
   
   @media (min-width: 1025px) {
     #nfs-aff-aud .nfs-aff-aud__grid {
       grid-template-columns: repeat(4, 1fr);
     }
   }
   
   #nfs-aff-aud .nfs-aff-aud__card {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     padding: 32px 24px;
     border-radius: 16px;
     background: rgba(255, 255, 255, 0.03);
     border: 1px solid rgba(255, 255, 255, 0.08);
     backdrop-filter: blur(16px);
     -webkit-backdrop-filter: blur(16px);
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.05);
     opacity: 0;
     transform: translateY(30px);
     transition:
       opacity 0.8s var(--aff-ease),
       transform 0.8s var(--aff-ease);
   }
   
   #nfs-aff-aud .nfs-aff-aud__card.nfs-animate-in {
     opacity: 1;
     transform: translateY(0);
   }
   
   #nfs-aff-aud .nfs-aff-aud__card-icon {
     font-size: 2.5rem;
     line-height: 1;
     margin-bottom: 4px;
   }
   
   #nfs-aff-aud .nfs-aff-aud__card-label {
     margin: 1rem 0 0;
     font-size: 16px;
     font-weight: 700;
     line-height: 1.3;
     letter-spacing: -0.02em;
     color: #ffffff;
     text-wrap: balance;
   }
   
   #nfs-aff-aud .nfs-aff-aud__cta-wrapper {
     display: flex;
     justify-content: center;
     margin-top: 60px;
     width: 100%;
   }
   
   #nfs-aff-aud .nfs-aff-aud__cta-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 18px 64px;
     font-size: 18px;
     font-weight: 600;
     color: #FFFFFF !important;
     background: #1A1A1A !important;
     background-color: #1A1A1A !important;
     border-radius: 99px;
     text-decoration: none;
     border: 1px solid rgba(255, 255, 255, 0.15) !important;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
     transition: all 0.3s ease;
   }
   
   #nfs-aff-aud .nfs-aff-aud__cta-btn:hover {
     transform: translateY(-3px);
     background-color: #1A1A1A !important;
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.55) !important;
   }
   
   @media (max-width: 768px) {
     #nfs-aff-aud .nfs-aff-aud__header h2 {
       font-size: clamp(28px, 7vw, 32px);
       letter-spacing: -0.035em;
     }
   
     #nfs-aff-aud .nfs-aff-aud__header p { font-size: 16px; }
   
     #nfs-aff-aud .nfs-aff-aud__cta-btn {
       width: min(100%, 360px);
       padding-inline: 32px;
     }
   }
   
   @media (prefers-reduced-motion: reduce) {
     #nfs-aff-aud .nfs-aff-aud__header,
     #nfs-aff-aud .nfs-aff-aud__card {
       opacity: 1;
       transform: none;
       transition: none;
     }
   
     #nfs-aff-aud .nfs-aff-aud__cta-btn {
       transition: none;
     }
   
     #nfs-aff-aud .nfs-aff-aud__cta-btn:hover {
       transform: none;
     }
   }
   
   /* ============================================================
      6. GATEKEEPER FORM
      ============================================================ */
   #apply.nfs-gate-section {
     --nfs-accent:        #9C9C9C;
     --nfs-accent-glow:   rgba(156, 156, 156, 0.35);
     --nfs-electric:      #9C9C9C;
     --nfs-electric-glow: rgba(156, 156, 156, 0.35);
     --nfs-gold:          #F5C842;
     --nfs-gold-glow:     rgba(245, 200, 66, 0.25);
     --nfs-btn-primary-bg:   #FFFFFF;
     --nfs-btn-primary-text: #1A1A1A;
     --nfs-gate-bg:       transparent;
     --nfs-gate-text:     #FFFFFF;
     --nfs-gate-muted:    #8B8B9A;
     --nfs-gate-glass-bg:     rgba(255, 255, 255, 0.05);
     --nfs-gate-glass-border: rgba(255, 255, 255, 0.10);
     --nfs-gate-glass-blur:   28px;
     --nfs-gate-radius:   20px;
     --nfs-gate-max-width: 720px;
     --nfs-gate-ring-gap: #050505;
     width: 100%;
     padding: 96px 24px !important;
     background: transparent !important;
     background-color: transparent !important;
     color: var(--nfs-gate-text);
   }
   
   #apply .nfs-gate-section__container {
     width: min(var(--nfs-gate-max-width), 100%);
     max-width: 720px !important;
     margin-inline: auto;
   }
   
   #apply .nfs-gatekeeper-header {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     padding: 0;
     margin-bottom: 50px;
     width: 100%;
   }
   
   #apply .nfs-gatekeeper-header h2 {
     color: #FFFFFF !important;
     font-size: clamp(32px, 5vw, 48px);
     font-weight: 700;
     margin: 0 0 16px;
     line-height: 1.1;
   }
   
   #apply .nfs-gatekeeper-header p {
     color: #8B8B9A !important;
     max-width: 600px;
     font-size: 16px;
     margin: 0;
     line-height: 1.6;
   }
   
   #apply .nfs-gate-form-shell {
     background: rgba(255, 255, 255, 0.05) !important;
     border: 1px solid rgba(255, 255, 255, 0.1) !important;
     border-radius: 20px !important;
     backdrop-filter: blur(28px) !important;
     -webkit-backdrop-filter: blur(28px) !important;
     padding: 32px 28px;
     box-shadow: none !important;
   }
   
   /* Progress Bar */
   #apply .nfs-gate-progress {
     position: relative;
     margin-bottom: 36px;
     padding-top: 4px;
   }
   
   #apply .nfs-gate-progress__list {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 8px;
     list-style: none;
     margin: 0;
     padding: 0 0 8px;
     position: relative;
     z-index: 1;
   }
   
   #apply .nfs-gate-progress__item {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 10px;
     text-align: center;
   }
   
   #apply .nfs-gate-progress__node {
     position: relative;
     z-index: 2;
     display: flex;
     align-items: center;
     justify-content: center;
     width: 32px;
     height: 32px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.10);
     box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.50);
     border: none;
     transition:
       background 0.3s ease,
       box-shadow 0.3s ease,
       color 0.3s ease;
   }
   
   #apply .nfs-gate-progress__num {
     font-size: 13px;
     font-weight: 700;
     line-height: 1;
     color: rgba(255, 255, 255, 0.40);
   }
   
   #apply .nfs-gate-progress__check {
     display: none;
     align-items: center;
     justify-content: center;
     width: 18px;
     height: 18px;
     border-radius: 50%;
     background: #ffffff;
     color: #9C9C9C !important;
   }
   
   #apply .nfs-gate-progress__item.is-complete .nfs-gate-progress__node {
     background: #9C9C9C !important;
     box-shadow: 0 4px 14px rgba(156, 156, 156, 0.35);
   }
   
   #apply .nfs-gate-progress__item.is-complete .nfs-gate-progress__num {
     display: none;
   }
   
   #apply .nfs-gate-progress__item.is-complete .nfs-gate-progress__check {
     display: flex;
   }
   
   #apply .nfs-gate-progress__item.is-active .nfs-gate-progress__node {
     background: #9C9C9C !important;
     box-shadow:
       0 0 0 3px var(--nfs-gate-ring-gap, #050505),
       0 0 0 6px #9C9C9C,
       0 0 18px rgba(156, 156, 156, 0.35);
   }
   
   #apply .nfs-gate-progress__item.is-active .nfs-gate-progress__num {
     color: #ffffff;
   }
   
   #apply .nfs-gate-progress__item.is-active .nfs-gate-progress__check {
     display: none;
   }
   
   #apply .nfs-gate-progress__label {
     font-size: 11px;
     font-weight: 600;
     letter-spacing: 0.06em;
     text-transform: uppercase;
     color: #9C9C9C !important;
     transition: color 0.3s ease;
   }
   
   #apply .nfs-gate-progress__item.is-active .nfs-gate-progress__label,
   #apply .nfs-gate-progress__item.is-complete .nfs-gate-progress__label {
     color: #FFFFFF !important;
   }
   
   #apply .nfs-gate-progress__track {
     position: absolute;
     left: 12.5%;
     right: 12.5%;
     top: 20px;
     height: 3px;
     border-radius: 3px;
     pointer-events: none;
     z-index: 0;
   }
   
   #apply .nfs-gate-progress__track-bg {
     position: absolute;
     inset: 0;
     background: rgba(255, 255, 255, 0.20);
     border-radius: 3px;
   }
   
   #apply .nfs-gate-progress__fill {
     position: absolute;
     inset: 0 auto 0 0;
     height: 100%;
     width: 0%;
     background: #9C9C9C !important;
     border-radius: 3px;
     box-shadow: 0 0 12px rgba(156, 156, 156, 0.35);
     transition: width 0.45s var(--aff-ease);
   }
   
   /* Viewport / Track (slider) */
   #apply .nfs-gate-form__viewport {
     overflow: hidden;
     height: auto;
   }
   
   #apply .nfs-gate-form__track {
     display: flex;
     align-items: flex-start;
     width: 400%;
     transition: transform 0.5s var(--aff-ease);
     will-change: transform;
   }
   
   #apply .nfs-gate-step {
     flex: 0 0 25%;
     min-width: 0;
     border: 0;
     margin: 0;
     padding: 0 2px;
     align-self: flex-start;
     transition: opacity 0.3s ease;
   }
   
   #apply .nfs-gate-step[aria-hidden="true"] {
     max-height: 0;
     overflow: hidden;
     opacity: 0;
     visibility: hidden;
     pointer-events: none;
     padding: 0;
     margin: 0;
     border: 0;
   }
   
   #apply .nfs-gate-step[aria-hidden="false"] {
     max-height: none;
     overflow: visible;
     opacity: 1;
     visibility: visible;
     pointer-events: auto;
   }
   
   #apply .nfs-gate-step__legend {
     display: block;
     margin-bottom: 24px;
     padding: 0;
   }
   
   #apply .nfs-gate-step__eyebrow {
     display: block;
     font-size: 11px;
     font-weight: 700;
     letter-spacing: 0.10em;
     text-transform: uppercase;
     color: #9C9C9C !important;
     margin-bottom: 6px;
   }
   
   #apply .nfs-gate-step__title {
     display: block;
     font-size: 22px;
     font-weight: 700;
     letter-spacing: -0.02em;
     color: var(--nfs-gate-text);
   }
   
   /* Fields */
   #apply .nfs-gate-field {
     margin-bottom: 20px;
   }
   
   #apply .nfs-gate-field:last-child {
     margin-bottom: 0;
   }
   
   #apply .nfs-gate-label {
     display: block;
     margin-bottom: 8px;
     font-size: 13px;
     font-weight: 600;
     color: rgba(255, 255, 255, 0.85);
   }
   
   #apply .nfs-gate-hint {
     margin: -4px 0 10px;
     font-size: 13px;
     line-height: 1.5;
     color: var(--nfs-gate-muted);
   }
   
   #apply .nfs-gate-input,
   #apply .nfs-gate-textarea {
     width: 100%;
     padding: 14px 16px;
     font-size: 15px;
     font-family: inherit;
     color: var(--nfs-gate-text);
     background: rgba(255, 255, 255, 0.04);
     border: 1px solid rgba(255, 255, 255, 0.10);
     border-radius: 12px;
     outline: none;
     transition:
       border-color 0.2s ease,
       box-shadow 0.2s ease,
       background 0.2s ease;
   }
   
   #apply .nfs-gate-input::placeholder,
   #apply .nfs-gate-textarea::placeholder {
     color: rgba(255, 255, 255, 0.30);
   }
   
   #apply .nfs-gate-input:focus,
   #apply .nfs-gate-textarea:focus {
     border-color: #9C9C9C !important;
     box-shadow: 0 0 0 3px rgba(156, 156, 156, 0.35);
     background: rgba(255, 255, 255, 0.06);
   }
   
   #apply .nfs-gate-input.is-invalid,
   #apply .nfs-gate-textarea.is-invalid {
     border-color: #f87171;
     box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.20);
   }
   
   #apply .nfs-gate-textarea {
     resize: vertical;
     min-height: 120px;
   }
   
   /* Chip grid */
   #apply .nfs-gate-chip-grid {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
     padding: 4px;
     border-radius: 12px;
     transition: box-shadow 0.2s ease;
   }
   
   #apply .nfs-gate-chip-grid.is-invalid {
     box-shadow: 0 0 0 2px rgba(248, 113, 113, 0.35);
   }
   
   #apply .nfs-gate-chip { cursor: pointer; }
   
   #apply .nfs-gate-chip input {
     position: absolute;
     opacity: 0;
     width: 0;
     height: 0;
     pointer-events: none;
   }
   
   #apply .nfs-gate-chip__label {
     display: inline-block;
     padding: 10px 18px;
     font-size: 13px;
     font-weight: 600;
     color: rgba(255, 255, 255, 0.65);
     background: rgba(255, 255, 255, 0.04);
     border: 1px solid rgba(255, 255, 255, 0.10);
     border-radius: 100px;
     transition:
       color 0.2s ease,
       background 0.2s ease,
       border-color 0.2s ease,
       box-shadow 0.2s ease;
   }
   
   #apply .nfs-gate-chip:hover .nfs-gate-chip__label {
     border-color: rgba(255, 255, 255, 0.20);
     background: rgba(255, 255, 255, 0.06);
     color: rgba(255, 255, 255, 0.85);
   }
   
   #apply .nfs-gate-chip input:checked + .nfs-gate-chip__label {
     color: #ffffff;
     background: rgba(156, 156, 156, 0.18);
     border-color: #9C9C9C !important;
     box-shadow: 0 0 0 1px #9C9C9C inset, 0 0 16px -4px rgba(156, 156, 156, 0.35);
   }
   
   /* Radio Cards */
   #apply .nfs-gate-radio-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 10px;
   }
   
   @media (max-width: 540px) {
     #apply .nfs-gate-radio-grid { grid-template-columns: 1fr; }
   }
   
   #apply .nfs-gate-radio-card { cursor: pointer; }
   
   #apply .nfs-gate-radio-card input {
     position: absolute;
     opacity: 0;
     width: 0;
     height: 0;
     pointer-events: none;
   }
   
   #apply .nfs-gate-radio-card__surface {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 14px 16px;
     border-radius: 12px;
     border: 1px solid rgba(255, 255, 255, 0.10);
     background: rgba(255, 255, 255, 0.03);
     transition:
       border-color 0.2s ease,
       background 0.2s ease,
       box-shadow 0.2s ease;
   }
   
   #apply .nfs-gate-radio-card:hover .nfs-gate-radio-card__surface {
     border-color: rgba(255, 255, 255, 0.20);
     background: rgba(255, 255, 255, 0.05);
   }
   
   #apply .nfs-gate-radio-card input:checked + .nfs-gate-radio-card__surface {
     border-color: #9C9C9C !important;
     background: rgba(156, 156, 156, 0.10);
     box-shadow: 0 0 0 1px #9C9C9C inset, 0 0 20px -4px rgba(156, 156, 156, 0.35);
   }
   
   #apply .nfs-gate-radio-card__indicator {
     flex-shrink: 0;
     width: 18px;
     height: 18px;
     border-radius: 50%;
     border: 2px solid rgba(255, 255, 255, 0.25);
     transition: border-color 0.2s ease, background 0.2s ease;
     position: relative;
   }
   
   #apply .nfs-gate-radio-card input:checked + .nfs-gate-radio-card__surface .nfs-gate-radio-card__indicator {
     border-color: #9C9C9C !important;
     background: #9C9C9C !important;
   }
   
   #apply .nfs-gate-radio-card input:checked + .nfs-gate-radio-card__surface .nfs-gate-radio-card__indicator::after {
     content: "";
     position: absolute;
     inset: 4px;
     border-radius: 50%;
     background: #fff;
   }
   
   #apply .nfs-gate-radio-card__text {
     font-size: 14px;
     font-weight: 500;
     color: rgba(255, 255, 255, 0.85);
     line-height: 1.3;
   }
   
   /* Toggle (Yes / No) */
   #apply .nfs-gate-toggle {
     display: inline-flex;
     gap: 4px;
     padding: 4px;
     border-radius: 14px;
     background: rgba(255, 255, 255, 0.04);
     border: 1px solid rgba(255, 255, 255, 0.08);
   }
   
   #apply .nfs-gate-toggle__option { cursor: pointer; }
   
   #apply .nfs-gate-toggle__option input {
     position: absolute;
     opacity: 0;
     width: 0;
     height: 0;
     pointer-events: none;
   }
   
   #apply .nfs-gate-toggle__btn {
     display: block;
     padding: 10px 28px;
     font-size: 14px;
     font-weight: 600;
     color: rgba(255, 255, 255, 0.50);
     border-radius: 10px;
     transition:
       color 0.2s ease,
       background 0.2s ease,
       box-shadow 0.2s ease;
   }
   
   #apply .nfs-gate-toggle__option input:checked + .nfs-gate-toggle__btn {
     color: #1A1A1A;
     background: #FFFFFF !important;
     box-shadow: 0 4px 16px -4px rgba(255, 255, 255, 0.25);
   }
   
   /* Conditional panels */
   #apply .nfs-gate-conditional {
     overflow: hidden;
     max-height: 0;
     opacity: 0;
     transition:
       max-height 0.4s var(--aff-ease),
       opacity 0.3s ease,
       margin 0.3s ease;
     margin-top: 0;
   }
   
   #apply .nfs-gate-conditional.is-visible {
     max-height: 400px;
     opacity: 1;
     margin-top: 4px;
   }
   
   #apply .nfs-gate-conditional.is-hidden {
     pointer-events: none;
   }
   
   /* Sandbox Card (Step 4) */
   #apply .nfs-gate-sandbox {
     position: relative;
     padding: 28px 24px;
     margin-bottom: 24px;
     border-radius: 16px;
     border: 1px solid color-mix(in srgb, var(--nfs-gold) 45%, transparent);
     background:
       linear-gradient(145deg,
         color-mix(in srgb, var(--nfs-gold) 12%, transparent) 0%,
         color-mix(in srgb, var(--nfs-gold) 4%, transparent) 50%,
         rgba(255, 255, 255, 0.02) 100%);
     box-shadow:
       0 0 0 1px color-mix(in srgb, var(--nfs-gold) 8%, transparent) inset,
       0 0 48px -8px var(--nfs-gold-glow),
       0 16px 40px -16px rgba(0, 0, 0, 0.50);
     overflow: hidden;
   }
   
   #apply .nfs-gate-sandbox__glow {
     position: absolute;
     top: -40%;
     right: -20%;
     width: 60%;
     height: 120%;
     background: radial-gradient(ellipse, var(--nfs-gold-glow) 0%, transparent 70%);
     pointer-events: none;
   }
   
   #apply .nfs-gate-sandbox__badge {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 6px 14px;
     margin-bottom: 16px;
     font-size: 11px;
     font-weight: 700;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     color: #F5C842 !important;
     background: rgba(245, 200, 66, 0.12);
     border: 1px solid rgba(245, 200, 66, 0.30);
     border-radius: 100px;
   }
   
   #apply .nfs-gate-sandbox__title {
     position: relative;
     margin: 0 0 12px;
     font-size: 20px;
     font-weight: 700;
     letter-spacing: -0.02em;
     color: #ffffff;
   }
   
   #apply .nfs-gate-sandbox__body {
     position: relative;
     margin: 0 0 16px;
     font-size: 14px;
     line-height: 1.65;
     color: rgba(255, 255, 255, 0.75);
   }
   
   #apply .nfs-gate-sandbox__list {
     position: relative;
     margin: 0;
     padding: 0;
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 8px;
   }
   
   #apply .nfs-gate-sandbox__list li {
     display: flex;
     align-items: flex-start;
     gap: 10px;
     font-size: 13px;
     color: rgba(255, 255, 255, 0.70);
     line-height: 1.4;
   }
   
   #apply .nfs-gate-sandbox__list li::before {
     content: "";
     flex-shrink: 0;
     width: 6px;
     height: 6px;
     margin-top: 6px;
     border-radius: 50%;
     background: #F5C842 !important;
     box-shadow: 0 0 8px rgba(245, 200, 66, 0.25);
   }
   
   /* Commitment checkbox */
   #apply .nfs-gate-commitment {
     display: flex;
     align-items: flex-start;
     gap: 14px;
     cursor: pointer;
     padding: 16px;
     border-radius: 12px;
     border: 1px solid rgba(255, 255, 255, 0.10);
     background: rgba(255, 255, 255, 0.02);
     transition: border-color 0.2s ease, background 0.2s ease;
   }
   
   #apply .nfs-gate-commitment:hover {
     border-color: rgba(255, 255, 255, 0.18);
     background: rgba(255, 255, 255, 0.04);
   }
   
   #apply .nfs-gate-commitment input {
     position: absolute;
     opacity: 0;
     width: 0;
     height: 0;
     pointer-events: none;
   }
   
   #apply .nfs-gate-commitment__box {
     flex-shrink: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     width: 22px;
     height: 22px;
     margin-top: 1px;
     border-radius: 6px;
     border: 2px solid rgba(255, 255, 255, 0.25);
     color: transparent;
     transition:
       border-color 0.2s ease,
       background 0.2s ease,
       color 0.2s ease;
   }
   
   #apply .nfs-gate-commitment input:checked ~ .nfs-gate-commitment__box {
     border-color: #F5C842 !important;
     background: #F5C842 !important;
     color: #0c0c12;
   }
   
   #apply .nfs-gate-commitment__text {
     font-size: 14px;
     line-height: 1.5;
     color: rgba(255, 255, 255, 0.80);
   }
   
   /* Actions */
   #apply .nfs-gate-form__actions {
     display: flex;
     justify-content: flex-end;
     gap: 12px;
     margin-top: 32px;
     padding-top: 24px;
     border-top: 1px solid rgba(255, 255, 255, 0.06);
   }
   
   #apply .nfs-gate-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     min-width: 120px;
     padding: 14px 28px;
     font-size: 14px;
     font-weight: 600;
     font-family: inherit;
     border-radius: 12px;
     border: none;
     cursor: pointer;
     transition:
       transform 0.2s ease,
       box-shadow 0.2s ease,
       background 0.2s ease,
       opacity 0.2s ease;
   }
   
   #apply .nfs-gate-btn:active:not(:disabled) { transform: translateY(1px); }
   
   #apply .nfs-gate-btn--ghost {
     color: rgba(255, 255, 255, 0.70);
     background: transparent;
     border: 1px solid rgba(255, 255, 255, 0.12);
   }
   
   #apply .nfs-gate-btn--ghost:hover {
     color: #fff;
     border-color: rgba(255, 255, 255, 0.25);
     background: rgba(255, 255, 255, 0.04);
   }
   
   #apply .nfs-gate-btn--primary {
     color: #1A1A1A !important;
     background: #FFFFFF !important;
     background-color: #FFFFFF !important;
     border: none !important;
     box-shadow: 0 8px 24px -6px rgba(255, 255, 255, 0.20);
   }
   
   #apply .nfs-gate-btn--primary:hover {
     box-shadow: 0 12px 32px -6px rgba(255, 255, 255, 0.28);
   }
   
   #apply .nfs-gate-btn--submit {
     color: #1A1A1A !important;
     background: #FFFFFF !important;
     background-color: #FFFFFF !important;
     border: none !important;
     box-shadow: 0 8px 28px -6px rgba(255, 255, 255, 0.20);
   }
   
   #apply .nfs-gate-btn--submit:hover:not(:disabled) {
     box-shadow: 0 12px 36px -6px rgba(255, 255, 255, 0.28);
   }
   
   #apply .nfs-gate-btn:disabled {
     opacity: 0.40;
     cursor: not-allowed;
     transform: none;
     box-shadow: none;
   }
   
   #apply .nfs-gate-form__status {
     margin: 16px 0 0;
     font-size: 14px;
     text-align: center;
     color: var(--nfs-gate-muted);
     min-height: 1.4em;
   }
   
   #apply .nfs-gate-form__status.is-success { color: #4ade80; }
   #apply .nfs-gate-form__status.is-error   { color: #f87171; }
   
   /* Success panel */
   #apply .nfs-gate-success {
     display: none;
     flex-direction: column;
     align-items: center;
     text-align: center;
     padding: 40px 24px;
     gap: 16px;
   }
   
   #apply .nfs-gate-success.is-visible {
     display: flex;
   }
   
   #apply .nfs-gate-success__icon {
     width: 64px;
     height: 64px;
     border-radius: 50%;
     background: rgba(156, 156, 156, 0.10);
     border: 1px solid rgba(156, 156, 156, 0.25);
     display: flex;
     align-items: center;
     justify-content: center;
     color: #9C9C9C !important;
   }
   
   #apply .nfs-gate-success__title {
     margin: 0;
     font-size: 22px;
     font-weight: 700;
     color: #ffffff;
   }
   
   #apply .nfs-gate-success__sub {
     margin: 0;
     font-size: 15px;
     color: #a3a3a3;
     max-width: 42ch;
     line-height: 1.55;
   }
   
   @media (max-width: 768px) {
     #apply .nfs-gate-form-shell {
       padding: 24px 20px;
     }
   
     #apply .nfs-gate-progress { margin-bottom: 28px; }
     #apply .nfs-gate-progress__label { font-size: 9px; }
     #apply .nfs-gate-step__title { font-size: 18px; }
   
     #apply .nfs-gate-form__actions {
       flex-direction: column-reverse;
       margin-top: 24px;
       padding-top: 20px;
     }
   
     #apply .nfs-gate-btn { width: 100%; }
   }
   
   @media (prefers-reduced-motion: reduce) {
     #apply .nfs-gate-form__track,
     #apply .nfs-gate-progress__fill,
     #apply .nfs-gate-conditional,
     #apply .nfs-gate-progress__node {
       transition: none;
     }
   }

   /* ============================================================
      STEP 2 & 3 — HIW Pro design system (monochromatic)
      ============================================================ */
   #nfs-aff-hiw .step-card--02::after,
   #nfs-aff-hiw .step-card--03::after {
     display: none !important;
     opacity: 0 !important;
   }

   #nfs-aff-hiw .step-card--02 .step-card__title,
   #nfs-aff-hiw .step-card--03 .step-card__title,
   #nfs-aff-hiw .step-card--02 .col__title,
   #nfs-aff-hiw .step-card--03 .earnings-figure,
   #nfs-aff-hiw .step-card--02 .code-row__value,
   #nfs-aff-hiw .step-card--03 .orders__amount {
     color: #FFFFFF !important;
   }

   #nfs-aff-hiw .step-card--02 .step-card__sub,
   #nfs-aff-hiw .step-card--03 .step-card__sub,
   #nfs-aff-hiw .step-card--02 .col__text,
   #nfs-aff-hiw .step-card--03 .col__title--accent,
   #nfs-aff-hiw .step-card--03 .orders__time,
   #nfs-aff-hiw .step-card--03 .badge-ghost {
     color: #A3A3A3 !important;
   }

   #nfs-aff-hiw .step-card--02 .panel--glow,
   #nfs-aff-hiw .step-card--03 .panel {
     border: 1px solid rgba(255, 255, 255, 0.1) !important;
     background: rgba(255, 255, 255, 0.03) !important;
     box-shadow: none !important;
     backdrop-filter: blur(28px) !important;
     -webkit-backdrop-filter: blur(28px) !important;
   }

   #nfs-aff-hiw .step-card--02 .badge {
     background: rgba(255, 255, 255, 0.15) !important;
     background-color: rgba(255, 255, 255, 0.15) !important;
     color: #FFFFFF !important;
     border: none !important;
     box-shadow: none !important;
   }

   #nfs-aff-hiw .step-card--02 .col__icon,
   #nfs-aff-hiw .step-card--02 .col__icon--ticket {
     border: 1px solid rgba(255, 255, 255, 0.1) !important;
     background: rgba(255, 255, 255, 0.04) !important;
     color: #8A8A8A !important;
     box-shadow: none !important;
   }

   #nfs-aff-hiw .step-card--02 .col__icon svg,
   #nfs-aff-hiw .step-card--02 .col__icon--ticket svg {
     color: #8A8A8A !important;
     stroke: #8A8A8A !important;
     fill: none !important;
     filter: drop-shadow(0 0 6px #7F7F7F) !important;
   }

   #nfs-aff-hiw .step-card--02 .col__icon--ticket .spark {
     background: #8A8A8A !important;
   }

   #nfs-aff-hiw .step-card--02 .code-row {
     background: rgba(255, 255, 255, 0.03) !important;
     border: 1px solid rgba(255, 255, 255, 0.1) !important;
     backdrop-filter: blur(28px) !important;
     -webkit-backdrop-filter: blur(28px) !important;
   }

   #nfs-aff-hiw .step-card--02 .btn--purple-sm {
     background: #000000 !important;
     background-color: #000000 !important;
     color: #FFFFFF !important;
     border: 1px solid rgba(255, 255, 255, 0.12) !important;
     box-shadow: none !important;
   }

   #nfs-aff-hiw .step-card--03 .col__title--accent {
     color: #A3A3A3 !important;
     text-shadow: none !important;
   }

   #nfs-aff-hiw .step-card--03 .chart__line {
     stroke: #8A8A8A !important;
     filter: drop-shadow(0 0 6px #7F7F7F) !important;
   }

   #nfs-aff-hiw .step-card--03 .chart__dot {
     fill: #8A8A8A !important;
     filter: drop-shadow(0 0 6px #7F7F7F) !important;
   }

   #nfs-aff-hiw .step-card--03 .badge-ghost svg {
     color: #8A8A8A !important;
     stroke: #8A8A8A !important;
   }

/* ==========================================================================
   NAFOS AFFILIATE: Typography & Uppercase Lock
   ========================================================================== */

/* Main section titles */
.nfs-aff-hero__headline,
.nfs-aff-why__title,
.nfs-aff-comm__title,
.nfs-aff-hiw__title,
#nfs-aff-aud-title,
#nfs-aff-aud .nfs-aff-aud__header h2,
#nfs-gate-main-title,
#apply .nfs-gatekeeper-header h2 {
  font-family: var(--nfs-font-fit) !important;
  text-transform: uppercase !important;
  letter-spacing: -0.02em !important;
  font-size: clamp(32px, 5vw, 64px) !important;
  line-height: 1.1 !important;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Sub-titles & card headings */
.nfs-aff-comm__card-theme,
#nfs-aff-hiw .step-card__title {
  font-family: var(--nfs-font-fit) !important;
  text-transform: uppercase !important;
  letter-spacing: -0.01em !important;
  font-size: clamp(22px, 3vw, 32px) !important;
  line-height: 1.2 !important;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

@media (max-width: 768px) {
  .nfs-aff-hero__headline,
  .nfs-aff-why__title,
  .nfs-aff-comm__title,
  .nfs-aff-hiw__title,
  #nfs-aff-aud-title,
  #nfs-aff-aud .nfs-aff-aud__header h2,
  #nfs-gate-main-title,
  #apply .nfs-gatekeeper-header h2 {
    font-size: clamp(28px, 7vw, 40px) !important;
    line-height: 1.12 !important;
  }

  .nfs-aff-comm__card-theme,
  #nfs-aff-hiw .step-card__title {
    font-size: clamp(18px, 4.5vw, 26px) !important;
    line-height: 1.15 !important;
  }

  #nfs-aff-hero .nfs-aff-hero__container,
  #nfs-aff-why .nfs-aff-why__container,
  #nfs-aff-comm .nfs-aff-comm__container,
  #nfs-aff-hiw .nfs-aff-hiw__section,
  #nfs-aff-aud .nfs-aff-aud__container,
  #apply .nfs-gate-section__container {
    padding-inline: 16px;
    min-width: 0;
  }
}