@import url('https://fonts.googleapis.com/css2?family=Anton&family=Archivo:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

/* =============================================================================
   NOFRONTIN RP — promotional landing page stylesheet
   -----------------------------------------------------------------------------
   EVERY selector in this file is scoped under `.nfrp` so the page can be
   dropped into an existing WordPress site without touching theme styles.

   Edit the tokens below (colors / fonts / spacing) to re-skin the page.
   ============================================================================= */

.nfrp{
  /* ---- design tokens ------------------------------------------------------ */
  --nfrp-ink:        #0a0a0b;   /* page background            */
  --nfrp-ink-2:      #111113;   /* raised surface             */
  --nfrp-ink-3:      #17171a;   /* highest surface            */
  --nfrp-line:       rgba(255,255,255,.09);
  --nfrp-bone:       #f2efe9;   /* primary text               */
  --nfrp-bone-dim:   #b9b4aa;   /* secondary text             */
  --nfrp-red:        #df2027;   /* brand accent               */
  --nfrp-red-hot:    #ff3b41;   /* accent hover               */
  --nfrp-red-deep:   #7a1014;   /* deep accent wash           */
  --nfrp-glass:      rgba(14,14,16,.66);
  --nfrp-font-display:'Anton', 'Arial Narrow', sans-serif;
  --nfrp-font-body:  'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --nfrp-font-mono:  'JetBrains Mono', 'Courier New', monospace;
  --nfrp-radius:     4px;
  --nfrp-scroll-offset: 88px;   /* clearance when jumping to sections        */
  --nfrp-shadow-red: 0 10px 40px -8px rgba(223,32,39,.45);

  position: relative;
  background: var(--nfrp-ink);
  color: var(--nfrp-bone);
  font-family: var(--nfrp-font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

/* scoped reset */
.nfrp, .nfrp *, .nfrp *::before, .nfrp *::after{ box-sizing:border-box; }
.nfrp *{ margin:0; padding:0; }
.nfrp img{ display:block; max-width:100%; height:auto; border:0; }
.nfrp a{ color:inherit; text-decoration:none; }
.nfrp ul, .nfrp ol{ list-style:none; }
.nfrp button{ font:inherit; color:inherit; background:none; border:0; cursor:pointer; }
/* headings declare their own color so host themes can't recolor them directly */
.nfrp h1, .nfrp h2, .nfrp h3, .nfrp h4, .nfrp h5, .nfrp h6{ color:inherit; font-weight:400; line-height:1.05; }
/* same hardening for common text elements (defeats rules like .entry-content p{color:...}) */
.nfrp p, .nfrp li, .nfrp em, .nfrp strong, .nfrp span, .nfrp figcaption, .nfrp label{ color:inherit; }

/* film-grain overlay (covers this page area only) */
.nfrp::after{
  content:""; position:absolute; inset:0; z-index:3; pointer-events:none;
  opacity:.045; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.nfrp .nfrp-wrap{ width:100%; max-width:1200px; margin:0 auto; padding:0 28px; }
@media (max-width:640px){ .nfrp .nfrp-wrap{ padding:0 18px; } }

/* ---- typography helpers --------------------------------------------------- */
.nfrp .nfrp-display{ font-family:var(--nfrp-font-display); text-transform:uppercase; letter-spacing:.01em; }
.nfrp .nfrp-mono{ font-family:var(--nfrp-font-mono); }
.nfrp .nfrp-eyebrow{
  font-family:var(--nfrp-font-mono); font-size:.72rem; font-weight:600;
  letter-spacing:.3em; text-transform:uppercase; color:var(--nfrp-red);
  display:inline-flex; align-items:center; gap:12px;
}
.nfrp .nfrp-eyebrow::before{ content:""; width:26px; height:1px; background:var(--nfrp-red); }

.nfrp section{ position:relative; scroll-margin-top:var(--nfrp-scroll-offset); }

/* ---- section header pattern ----------------------------------------------- */
.nfrp .nfrp-section{ padding:110px 0; }
@media (max-width:900px){ .nfrp .nfrp-section{ padding:80px 0; } }
@media (max-width:560px){ .nfrp .nfrp-section{ padding:64px 0; } }

.nfrp .nfrp-section-head{ margin-bottom:56px; max-width:720px; }
.nfrp .nfrp-section-head .nfrp-eyebrow{ margin-bottom:18px; }
.nfrp .nfrp-section-head h2{
  font-family:var(--nfrp-font-display); text-transform:uppercase;
  font-size:clamp(2.2rem, 5.2vw, 3.6rem); letter-spacing:.01em;
}
.nfrp .nfrp-section-head .nfrp-lede{ margin-top:16px; color:var(--nfrp-bone-dim); font-size:1.02rem; max-width:600px; }
.nfrp .nfrp-section-num{
  position:absolute; top:64px; right:0; font-family:var(--nfrp-font-mono);
  font-size:.7rem; letter-spacing:.25em; color:rgba(255,255,255,.22);
}
@media (max-width:900px){ .nfrp .nfrp-section-num{ display:none; } }

/* ---- buttons ---------------------------------------------------------------- */
.nfrp .nfrp-btn{
  position:relative; display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:16px 32px; border-radius:var(--nfrp-radius);
  font-family:var(--nfrp-font-body); font-size:.82rem; font-weight:800;
  letter-spacing:.12em; text-transform:uppercase; white-space:nowrap;
  transition:transform .18s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .25s ease;
  overflow:hidden;
}
.nfrp .nfrp-btn svg{ width:15px; height:15px; flex:none; }
.nfrp .nfrp-btn--primary{
  background:var(--nfrp-red); color:#fff; box-shadow:0 4px 22px -6px rgba(223,32,39,.55);
}
.nfrp .nfrp-btn--primary::after{        /* sheen sweep */
  content:""; position:absolute; top:0; bottom:0; left:-70%; width:45%;
  background:linear-gradient(100deg, transparent, rgba(255,255,255,.28), transparent);
  transform:skewX(-18deg); transition:left .45s ease;
}
.nfrp .nfrp-btn--primary:hover{ background:var(--nfrp-red-hot); transform:translateY(-2px); box-shadow:var(--nfrp-shadow-red); }
.nfrp .nfrp-btn--primary:hover::after{ left:130%; }
.nfrp .nfrp-btn--ghost{ border:1px solid rgba(255,255,255,.22); color:var(--nfrp-bone); background:rgba(255,255,255,.02); }
.nfrp .nfrp-btn--ghost:hover{ border-color:var(--nfrp-red); color:#fff; background:rgba(223,32,39,.08); transform:translateY(-2px); }
.nfrp .nfrp-btn--lg{ padding:19px 40px; font-size:.88rem; }

/* =============================================================================
   NAVIGATION (page-local; hidden automatically when embedded in WordPress)
   ============================================================================= */
.nfrp .nfrp-nav{
  position:sticky; top:0; z-index:50;
  background:rgba(10,10,11,.55); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid transparent;
  transition:background .3s ease, border-color .3s ease;
}
.nfrp .nfrp-nav.is-scrolled{ background:rgba(10,10,11,.92); border-bottom-color:var(--nfrp-line); }
.nfrp .nfrp-nav__inner{ display:flex; align-items:center; gap:24px; height:72px; }
.nfrp .nfrp-nav__back{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--nfrp-font-mono); font-size:.68rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--nfrp-bone-dim); transition:color .2s; flex:none;
}
.nfrp .nfrp-nav__back:hover{ color:var(--nfrp-bone); }
.nfrp .nfrp-nav__back svg{ width:14px; height:14px; }
.nfrp .nfrp-nav__links{ display:flex; gap:30px; margin:0 auto; }
.nfrp .nfrp-nav__links a{
  font-size:.76rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  color:var(--nfrp-bone-dim); padding:6px 0; position:relative; transition:color .2s;
}
.nfrp .nfrp-nav__links a::after{
  content:""; position:absolute; left:0; bottom:0; height:2px; width:100%;
  background:var(--nfrp-red); transform:scaleX(0); transform-origin:left; transition:transform .25s ease;
}
.nfrp .nfrp-nav__links a:hover,
.nfrp .nfrp-nav__links a.is-active{ color:var(--nfrp-bone); }
.nfrp .nfrp-nav__links a.is-active::after{ transform:scaleX(1); }
.nfrp .nfrp-nav__cta{ margin-left:auto; padding:11px 22px; font-size:.74rem; flex:none; }
.nfrp .nfrp-nav__links + .nfrp-nav__cta{ margin-left:0; }
.nfrp .nfrp-nav__burger{ display:none; margin-left:auto; width:44px; height:44px; align-items:center; justify-content:center; border:1px solid var(--nfrp-line); border-radius:var(--nfrp-radius); }
.nfrp .nfrp-nav__burger svg{ width:20px; height:20px; }

@media (max-width:1060px){
  .nfrp .nfrp-nav__links{ display:none; }
  .nfrp .nfrp-nav__burger{ display:inline-flex; }
  .nfrp .nfrp-nav__cta{ margin-left:0; }
  .nfrp .nfrp-nav__inner{ justify-content:flex-start; }
  .nfrp .nfrp-nav__burger{ margin-left:auto; }
  .nfrp .nfrp-nav__cta{ margin-right:12px; }
}
@media (max-width:560px){ .nfrp .nfrp-nav__back span{ display:none; } }

/* mobile drawer */
.nfrp .nfrp-drawer{
  position:fixed; inset:0; z-index:90; background:rgba(8,8,9,.97);
  display:flex; flex-direction:column; padding:24px;
  opacity:0; visibility:hidden; transition:opacity .28s ease, visibility .28s;
}
.nfrp .nfrp-drawer.is-open{ opacity:1; visibility:visible; }
.nfrp .nfrp-drawer__top{ display:flex; align-items:center; justify-content:space-between; height:48px; }
.nfrp .nfrp-drawer__close{ width:44px; height:44px; display:inline-flex; align-items:center; justify-content:center; border:1px solid var(--nfrp-line); border-radius:var(--nfrp-radius); }
.nfrp .nfrp-drawer__close svg{ width:18px; height:18px; }
.nfrp .nfrp-drawer__links{ margin:auto 0; display:flex; flex-direction:column; gap:6px; }
.nfrp .nfrp-drawer__links a{
  font-family:var(--nfrp-font-display); text-transform:uppercase;
  font-size:clamp(2rem, 9vw, 3rem); line-height:1.15; color:var(--nfrp-bone);
  display:flex; align-items:baseline; gap:14px; transition:color .2s;
}
.nfrp .nfrp-drawer__links a i{ font-family:var(--nfrp-font-mono); font-style:normal; font-size:.7rem; color:var(--nfrp-red); letter-spacing:.2em; }
.nfrp .nfrp-drawer__links a:hover{ color:var(--nfrp-red-hot); }
.nfrp .nfrp-drawer__foot{ display:flex; flex-direction:column; gap:12px; }
.nfrp .nfrp-drawer__foot .nfrp-btn{ width:100%; }

/* =============================================================================
   HERO
   ============================================================================= */
.nfrp .nfrp-hero{
  position:relative; min-height:100svh; display:flex; align-items:center;
  overflow:hidden; isolation:isolate;
}
.nfrp .nfrp-hero__bg{ position:absolute; inset:0; z-index:-2; }
.nfrp .nfrp-hero__bg img{ width:100%; height:100%; object-fit:cover; object-position:center 30%; }
@media (max-width:720px){ .nfrp .nfrp-hero__bg img{ object-position:38% top; } }
.nfrp .nfrp-hero__bg::after{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(60% 55% at 22% 78%, rgba(223,32,39,.16), transparent 65%),
    linear-gradient(180deg, rgba(10,10,11,.62) 0%, rgba(10,10,11,.28) 34%, rgba(10,10,11,.66) 72%, var(--nfrp-ink) 100%),
    linear-gradient(100deg, rgba(10,10,11,.82) 0%, rgba(10,10,11,.25) 55%, rgba(10,10,11,.55) 100%);
}
/* slow cinematic settle */
.nfrp-js .nfrp .nfrp-hero__bg img{ animation:nfrp-kenburns 16s ease-out forwards; }
@keyframes nfrp-kenburns{ from{ transform:scale(1.09) translateY(-1.5%);} to{ transform:scale(1) translateY(0);} }

.nfrp .nfrp-hero__content{ position:relative; z-index:1; padding:140px 0 120px; max-width:820px; }
.nfrp .nfrp-hero__logo{
  width:min(200px, 46vw); margin-bottom:28px;
  filter:drop-shadow(0 4px 16px rgba(0,0,0,.85)) drop-shadow(0 0 26px rgba(242,239,233,.22)) drop-shadow(0 0 60px rgba(223,32,39,.18));
}
.nfrp .nfrp-hero h1{
  font-family:var(--nfrp-font-display); text-transform:uppercase;
  font-size:clamp(2.7rem, 7.6vw, 6.4rem); line-height:.96; letter-spacing:.01em;
  text-shadow:0 4px 40px rgba(0,0,0,.55);
}
.nfrp .nfrp-hero h1 span{ display:block; }
.nfrp .nfrp-hero h1 .nfrp-accent{ color:var(--nfrp-red); }
.nfrp .nfrp-hero__sub{
  margin-top:26px; max-width:560px; color:rgba(242,239,233,.86);
  font-size:1.06rem; line-height:1.7;
}
.nfrp .nfrp-hero__ctas{ margin-top:38px; display:flex; gap:16px; flex-wrap:wrap; }

/* staggered entrance */
.nfrp-js .nfrp .nfrp-hero__logo,
.nfrp-js .nfrp .nfrp-hero__eyebrow,
.nfrp-js .nfrp .nfrp-hero h1 span,
.nfrp-js .nfrp .nfrp-hero__sub,
.nfrp-js .nfrp .nfrp-hero__ctas{
  opacity:0; transform:translateY(26px);
  animation:nfrp-rise .8s cubic-bezier(.2,.7,.2,1) forwards;
}
.nfrp-js .nfrp .nfrp-hero__logo{ animation-delay:.05s; }
.nfrp-js .nfrp .nfrp-hero__eyebrow{ animation-delay:.15s; }
.nfrp-js .nfrp .nfrp-hero h1 span:nth-child(1){ animation-delay:.22s; }
.nfrp-js .nfrp .nfrp-hero h1 span:nth-child(2){ animation-delay:.32s; }
.nfrp .nfrp-hero h1 span:nth-child(3){ margin-top:0; }
.nfrp-js .nfrp .nfrp-hero h1 span:nth-child(3){ animation-delay:.42s; }
.nfrp-js .nfrp .nfrp-hero__sub{ animation-delay:.55s; }
.nfrp-js .nfrp .nfrp-hero__ctas{ animation-delay:.68s; }
@keyframes nfrp-rise{ to{ opacity:1; transform:translateY(0); } }

/* scroll indicator */
.nfrp .nfrp-hero__scroll{
  position:absolute; left:50%; bottom:30px; transform:translateX(-50%); z-index:1;
  display:flex; flex-direction:column; align-items:center; gap:10px;
  font-family:var(--nfrp-font-mono); font-size:.62rem; letter-spacing:.34em; text-transform:uppercase;
  color:rgba(242,239,233,.66); transition:color .2s;
}
.nfrp .nfrp-hero__scroll:hover{ color:var(--nfrp-bone); }
.nfrp .nfrp-hero__scroll svg{ width:18px; height:18px; animation:nfrp-bob 1.8s ease-in-out infinite; }
@keyframes nfrp-bob{ 0%,100%{ transform:translateY(0); opacity:1;} 50%{ transform:translateY(6px); opacity:.55;} }

@media (max-width:720px){
  .nfrp .nfrp-hero__content{ padding:150px 0 130px; }
  .nfrp .nfrp-hero__ctas{ flex-direction:column; align-items:stretch; }
  .nfrp .nfrp-hero__ctas .nfrp-btn{ width:100%; padding:18px 28px; }
}

/* =============================================================================
   MARQUEE BAND
   ============================================================================= */
.nfrp .nfrp-marquee{ border-top:1px solid var(--nfrp-line); border-bottom:1px solid var(--nfrp-line); background:var(--nfrp-ink-2); overflow:hidden; padding:15px 0; }
.nfrp .nfrp-marquee__track{ display:flex; width:max-content; animation:nfrp-scroll 30s linear infinite; }
.nfrp .nfrp-marquee:hover .nfrp-marquee__track{ animation-play-state:paused; }
.nfrp .nfrp-marquee__track span{
  font-family:var(--nfrp-font-display); text-transform:uppercase; font-size:1rem; letter-spacing:.06em;
  color:var(--nfrp-bone-dim); padding:0 26px; white-space:nowrap;
}
.nfrp .nfrp-marquee__track span em{ color:var(--nfrp-red); font-style:normal; }
@keyframes nfrp-scroll{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* =============================================================================
   WELCOME / ABOUT
   ============================================================================= */
.nfrp .nfrp-about__grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:64px; align-items:center; }
@media (max-width:960px){ .nfrp .nfrp-about__grid{ grid-template-columns:1fr; gap:48px; } }
.nfrp .nfrp-about__copy p{ color:var(--nfrp-bone-dim); margin-top:18px; font-size:1.02rem; }
.nfrp .nfrp-about__copy p strong{ color:var(--nfrp-bone); font-weight:600; }
.nfrp .nfrp-about__tags{ display:flex; flex-wrap:wrap; gap:10px; margin-top:26px; }
.nfrp .nfrp-about__tags span{
  font-family:var(--nfrp-font-mono); font-size:.66rem; letter-spacing:.16em; text-transform:uppercase;
  padding:8px 14px; border:1px solid var(--nfrp-line); border-radius:2px; color:var(--nfrp-bone-dim);
  background:rgba(255,255,255,.02);
}

/* framed artwork */
.nfrp .nfrp-frame{ position:relative; border:1px solid var(--nfrp-line); border-radius:var(--nfrp-radius); background:var(--nfrp-ink-2); }
.nfrp .nfrp-frame::before, .nfrp .nfrp-frame::after{
  content:""; position:absolute; width:34px; height:34px; z-index:1;
  border-color:var(--nfrp-red); border-style:solid;
}
.nfrp .nfrp-frame::before{ top:-1px; left:-1px; border-width:2px 0 0 2px; }
.nfrp .nfrp-frame::after{ bottom:-1px; right:-1px; border-width:0 2px 2px 0; }
.nfrp .nfrp-frame img{ width:100%; border-radius:var(--nfrp-radius); }
.nfrp .nfrp-frame figcaption{
  position:absolute; left:14px; bottom:14px; z-index:1;
  font-family:var(--nfrp-font-mono); font-size:.62rem; letter-spacing:.2em; text-transform:uppercase;
  color:rgba(242,239,233,.85); background:rgba(10,10,11,.72); backdrop-filter:blur(6px);
  padding:8px 12px; border:1px solid rgba(255,255,255,.12); border-radius:2px;
}

/* feature cards (welcome) */
.nfrp .nfrp-cards4{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:72px; }
@media (max-width:1060px){ .nfrp .nfrp-cards4{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .nfrp .nfrp-cards4{ grid-template-columns:1fr; } }
.nfrp .nfrp-fcard{
  position:relative; padding:30px 26px; border:1px solid var(--nfrp-line); border-radius:var(--nfrp-radius);
  background:linear-gradient(180deg, var(--nfrp-ink-2), var(--nfrp-ink)); overflow:hidden;
  transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.nfrp .nfrp-fcard::before{
  content:""; position:absolute; inset:0 0 auto 0; height:2px; background:linear-gradient(90deg, var(--nfrp-red), transparent 70%);
  opacity:0; transition:opacity .25s ease;
}
.nfrp .nfrp-fcard:hover{ transform:translateY(-5px); border-color:rgba(223,32,39,.45); box-shadow:0 18px 44px -20px rgba(0,0,0,.8); }
.nfrp .nfrp-fcard:hover::before{ opacity:1; }
.nfrp .nfrp-fcard__icon{
  width:46px; height:46px; display:flex; align-items:center; justify-content:center; margin-bottom:20px;
  color:var(--nfrp-red); border:1px solid rgba(223,32,39,.35); border-radius:var(--nfrp-radius);
  background:rgba(223,32,39,.08); transition:background .25s, color .25s;
}
.nfrp .nfrp-fcard__icon svg{ width:22px; height:22px; }
.nfrp .nfrp-fcard:hover .nfrp-fcard__icon{ background:var(--nfrp-red); color:#fff; }
.nfrp .nfrp-fcard h3{ font-family:var(--nfrp-font-display); text-transform:uppercase; font-size:1.12rem; letter-spacing:.03em; margin-bottom:10px; }
.nfrp .nfrp-fcard p{ color:var(--nfrp-bone-dim); font-size:.92rem; }

/* =============================================================================
   FEATURES — WHAT AWAITS YOU
   ============================================================================= */
.nfrp .nfrp-features{ background:
  radial-gradient(70% 50% at 85% 0%, rgba(223,32,39,.06), transparent 60%),
  var(--nfrp-ink-2);
  border-top:1px solid var(--nfrp-line); border-bottom:1px solid var(--nfrp-line);
}
.nfrp .nfrp-features__grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--nfrp-line); border:1px solid var(--nfrp-line); border-radius:var(--nfrp-radius); overflow:hidden; }
@media (max-width:1060px){ .nfrp .nfrp-features__grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .nfrp .nfrp-features__grid{ grid-template-columns:1fr; } }
.nfrp .nfrp-feat{
  position:relative; padding:34px 28px 30px; background:var(--nfrp-ink-2);
  transition:background .25s ease; min-height:196px;
}
.nfrp .nfrp-feat::after{
  content:""; position:absolute; left:0; top:0; bottom:0; width:2px; background:var(--nfrp-red);
  transform:scaleY(0); transform-origin:top; transition:transform .3s ease;
}
.nfrp .nfrp-feat:hover{ background:var(--nfrp-ink-3); }
.nfrp .nfrp-feat:hover::after{ transform:scaleY(1); }
.nfrp .nfrp-feat svg{ width:24px; height:24px; color:var(--nfrp-red); margin-bottom:18px; }
.nfrp .nfrp-feat h3{ font-family:var(--nfrp-font-display); text-transform:uppercase; font-size:1.04rem; letter-spacing:.04em; margin-bottom:8px; }
.nfrp .nfrp-feat p{ color:var(--nfrp-bone-dim); font-size:.88rem; line-height:1.55; }
.nfrp .nfrp-features__note{
  margin-top:22px; font-family:var(--nfrp-font-mono); font-size:.66rem; letter-spacing:.12em;
  color:rgba(255,255,255,.32); text-transform:uppercase;
}

/* =============================================================================
   STAFF
   ============================================================================= */
.nfrp .nfrp-staff__grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
@media (max-width:1060px){ .nfrp .nfrp-staff__grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px){ .nfrp .nfrp-staff__grid{ grid-template-columns:1fr; max-width:420px; } }
.nfrp .nfrp-scard{
  position:relative; border:1px solid var(--nfrp-line); border-radius:var(--nfrp-radius);
  background:var(--nfrp-ink-2); overflow:hidden; transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.nfrp .nfrp-scard:hover{ transform:translateY(-6px); border-color:rgba(223,32,39,.5); box-shadow:0 24px 50px -22px rgba(0,0,0,.85); }
.nfrp .nfrp-scard__media{ position:relative; aspect-ratio:3/3.4; overflow:hidden; }
.nfrp .nfrp-scard__media img{ width:100%; height:100%; object-fit:cover; object-position:center top; filter:saturate(.82); transition:transform .5s ease, filter .4s ease; }
.nfrp .nfrp-scard:hover .nfrp-scard__media img{ transform:scale(1.05); filter:saturate(1.05); }
.nfrp .nfrp-scard__media::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg, transparent 45%, rgba(10,10,11,.92) 100%); }
.nfrp .nfrp-scard__role{
  position:absolute; top:14px; left:14px; z-index:1;
  font-family:var(--nfrp-font-mono); font-size:.62rem; font-weight:600; letter-spacing:.18em; text-transform:uppercase;
  color:#fff; background:rgba(223,32,39,.92); padding:6px 10px; border-radius:2px;
}
.nfrp .nfrp-scard__body{ position:relative; padding:0 24px 24px; margin-top:-58px; z-index:1; }
.nfrp .nfrp-scard__body h3{ font-family:var(--nfrp-font-display); text-transform:uppercase; font-size:1.35rem; letter-spacing:.02em; }
.nfrp .nfrp-scard__body > p{ color:var(--nfrp-bone-dim); font-size:.9rem; margin-top:8px; }
.nfrp .nfrp-scard__links{ display:flex; gap:10px; margin-top:16px; }
.nfrp .nfrp-scard__links a{
  width:36px; height:36px; display:inline-flex; align-items:center; justify-content:center;
  border:1px solid var(--nfrp-line); border-radius:2px; color:var(--nfrp-bone-dim);
  transition:border-color .2s, color .2s, background .2s;
}
.nfrp .nfrp-scard__links a:hover{ border-color:var(--nfrp-red); color:#fff; background:rgba(223,32,39,.12); }
.nfrp .nfrp-scard__links svg{ width:15px; height:15px; }
.nfrp .nfrp-staff__note{
  margin-top:26px; font-family:var(--nfrp-font-mono); font-size:.66rem; letter-spacing:.12em;
  color:rgba(255,255,255,.32); text-transform:uppercase;
}

/* =============================================================================
   COMMUNITY STATS
   ============================================================================= */
.nfrp .nfrp-community{ overflow:hidden; }
.nfrp .nfrp-community__bg{ position:absolute; inset:-12% 0; z-index:-1; will-change:transform; }
.nfrp .nfrp-community__bg img{ width:100%; height:100%; object-fit:cover; }
.nfrp .nfrp-community__bg::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, var(--nfrp-ink) 0%, rgba(10,10,11,.78) 18%, rgba(10,10,11,.78) 82%, var(--nfrp-ink) 100%),
             radial-gradient(55% 60% at 50% 45%, rgba(223,32,39,.14), transparent 70%);
}
.nfrp .nfrp-community__inner{ text-align:center; max-width:860px; margin:0 auto; position:relative; z-index:1; }
.nfrp .nfrp-community__inner .nfrp-eyebrow{ justify-content:center; }
.nfrp .nfrp-community__inner .nfrp-eyebrow::after{ content:""; width:26px; height:1px; background:var(--nfrp-red); }
.nfrp .nfrp-community h2{
  font-family:var(--nfrp-font-display); text-transform:uppercase;
  font-size:clamp(2rem, 5vw, 3.4rem); margin-top:18px;
}
.nfrp .nfrp-community__copy{ color:var(--nfrp-bone-dim); margin:18px auto 0; max-width:600px; font-size:1.02rem; }
.nfrp .nfrp-stats{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:60px; }
@media (max-width:900px){ .nfrp .nfrp-stats{ grid-template-columns:repeat(2,1fr); gap:14px; } }
.nfrp .nfrp-stat{
  padding:30px 18px 26px; border:1px solid rgba(255,255,255,.12); border-radius:var(--nfrp-radius);
  background:var(--nfrp-glass); backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);
  transition:border-color .25s ease, transform .25s ease;
}
.nfrp .nfrp-stat:hover{ border-color:rgba(223,32,39,.55); transform:translateY(-4px); }
.nfrp .nfrp-stat__num{
  font-family:var(--nfrp-font-display); font-size:clamp(2.4rem, 4.6vw, 3.6rem); line-height:1;
  text-shadow:0 0 34px rgba(223,32,39,.35);
}
.nfrp .nfrp-stat__num em{ color:var(--nfrp-red); font-style:normal; }
.nfrp .nfrp-stat__label{
  margin-top:10px; font-family:var(--nfrp-font-mono); font-size:.64rem; letter-spacing:.22em; text-transform:uppercase; color:var(--nfrp-bone-dim);
}

/* =============================================================================
   HOW TO JOIN
   ============================================================================= */
.nfrp .nfrp-join{ background:var(--nfrp-ink-2); border-top:1px solid var(--nfrp-line); border-bottom:1px solid var(--nfrp-line); }
.nfrp .nfrp-steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:34px; counter-reset:nfrp-step; }
@media (max-width:900px){ .nfrp .nfrp-steps{ grid-template-columns:1fr; gap:18px; max-width:560px; } }
.nfrp .nfrp-step{ position:relative; padding-top:8px; }
.nfrp .nfrp-step__num{
  font-family:var(--nfrp-font-display); font-size:clamp(3.6rem, 7vw, 5.4rem); line-height:1;
  color:transparent; -webkit-text-stroke:1px rgba(223,32,39,.65);
  display:block; margin-bottom:16px;
}
.nfrp .nfrp-step__line{ width:44px; height:2px; background:var(--nfrp-red); margin-bottom:20px; }
.nfrp .nfrp-step h3{ font-family:var(--nfrp-font-display); text-transform:uppercase; font-size:1.3rem; letter-spacing:.03em; }
.nfrp .nfrp-step p{ color:var(--nfrp-bone-dim); margin-top:10px; font-size:.95rem; }
.nfrp .nfrp-step:not(:last-child)::after{       /* connector */
  content:""; position:absolute; top:36px; right:-24px; width:14px; border-top:1px dashed rgba(223,32,39,.5);
}
@media (max-width:900px){ .nfrp .nfrp-step:not(:last-child)::after{ display:none; } }

/* big CTA card */
.nfrp .nfrp-joincta{
  margin-top:72px; position:relative; text-align:center; overflow:hidden;
  border:1px solid rgba(223,32,39,.35); border-radius:var(--nfrp-radius); padding:72px 30px;
  background:
    radial-gradient(60% 120% at 50% 0%, rgba(223,32,39,.14), transparent 60%),
    linear-gradient(180deg, var(--nfrp-ink-3), var(--nfrp-ink));
}
.nfrp .nfrp-joincta::before, .nfrp .nfrp-joincta::after{
  content:""; position:absolute; width:44px; height:44px; border-color:var(--nfrp-red); border-style:solid;
}
.nfrp .nfrp-joincta::before{ top:-1px; left:-1px; border-width:2px 0 0 2px; }
.nfrp .nfrp-joincta::after{ bottom:-1px; right:-1px; border-width:0 2px 2px 0; }
.nfrp .nfrp-joincta h3{ font-family:var(--nfrp-font-display); text-transform:uppercase; font-size:clamp(1.9rem, 4.6vw, 3rem); }
.nfrp .nfrp-joincta p{ color:var(--nfrp-bone-dim); max-width:520px; margin:16px auto 0; }
.nfrp .nfrp-joincta .nfrp-btn{ margin-top:32px; }
.nfrp .nfrp-joincta__alt{ display:block; margin-top:18px; font-family:var(--nfrp-font-mono); font-size:.68rem; letter-spacing:.16em; text-transform:uppercase; color:var(--nfrp-bone-dim); }
.nfrp .nfrp-joincta__alt a{ color:var(--nfrp-bone); border-bottom:1px solid rgba(223,32,39,.6); transition:color .2s; }
.nfrp .nfrp-joincta__alt a:hover{ color:var(--nfrp-red-hot); }

/* =============================================================================
   GALLERY
   ============================================================================= */
.nfrp .nfrp-gallery__grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
@media (max-width:1060px){ .nfrp .nfrp-gallery__grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .nfrp .nfrp-gallery__grid{ grid-template-columns:1fr; } }
.nfrp .nfrp-gitem{
  position:relative; display:block; overflow:hidden; border-radius:var(--nfrp-radius);
  border:1px solid var(--nfrp-line); aspect-ratio:16/10; background:var(--nfrp-ink-2);
}
.nfrp .nfrp-gitem--wide{ grid-column:span 2; }
@media (max-width:1060px){ .nfrp .nfrp-gitem--wide{ grid-column:span 2; } }
@media (max-width:560px){ .nfrp .nfrp-gitem--wide{ grid-column:span 1; } }
.nfrp .nfrp-gitem img{ width:100%; height:100%; object-fit:cover; transition:transform .6s cubic-bezier(.2,.7,.2,1), filter .4s ease; filter:saturate(.9); }
.nfrp .nfrp-gitem::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg, transparent 55%, rgba(10,10,11,.85)); opacity:.85; transition:opacity .3s; }
.nfrp .nfrp-gitem:hover img{ transform:scale(1.06); filter:saturate(1.08); }
.nfrp .nfrp-gitem:hover::after{ opacity:1; }
.nfrp .nfrp-gitem__cap{
  position:absolute; left:16px; bottom:13px; z-index:1;
  font-family:var(--nfrp-font-mono); font-size:.62rem; letter-spacing:.2em; text-transform:uppercase; color:rgba(242,239,233,.92);
  display:flex; align-items:center; gap:8px;
}
.nfrp .nfrp-gitem__cap::before{ content:""; width:14px; height:1px; background:var(--nfrp-red); }
.nfrp .nfrp-gitem__zoom{
  position:absolute; top:12px; right:12px; z-index:1; width:34px; height:34px; border-radius:2px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(10,10,11,.65); border:1px solid rgba(255,255,255,.16); color:var(--nfrp-bone);
  opacity:0; transform:translateY(6px); transition:opacity .25s, transform .25s, background .2s;
}
.nfrp .nfrp-gitem:hover .nfrp-gitem__zoom{ opacity:1; transform:translateY(0); }
.nfrp .nfrp-gitem__zoom:hover{ background:var(--nfrp-red); }
.nfrp .nfrp-gitem__zoom svg{ width:15px; height:15px; }

/* lightbox */
.nfrp .nfrp-lightbox{
  position:fixed; inset:0; z-index:120; display:flex; flex-direction:column;
  background:rgba(6,6,7,.94); backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
  opacity:0; visibility:hidden; transition:opacity .25s ease, visibility .25s;
}
.nfrp .nfrp-lightbox.is-open{ opacity:1; visibility:visible; }
.nfrp .nfrp-lightbox__top{ display:flex; align-items:center; justify-content:space-between; padding:18px 22px; }
.nfrp .nfrp-lightbox__count{ font-family:var(--nfrp-font-mono); font-size:.7rem; letter-spacing:.22em; color:var(--nfrp-bone-dim); }
.nfrp .nfrp-lightbox__close{ width:44px; height:44px; display:inline-flex; align-items:center; justify-content:center; border:1px solid var(--nfrp-line); border-radius:2px; color:var(--nfrp-bone); transition:border-color .2s, color .2s; }
.nfrp .nfrp-lightbox__close:hover{ border-color:var(--nfrp-red); color:var(--nfrp-red-hot); }
.nfrp .nfrp-lightbox__close svg{ width:18px; height:18px; }
.nfrp .nfrp-lightbox__stage{ flex:1; display:flex; align-items:center; justify-content:center; gap:18px; padding:0 22px; min-height:0; }
.nfrp .nfrp-lightbox__stage img{ max-width:min(1200px, 100%); max-height:calc(100% - 20px); object-fit:contain; border-radius:2px; box-shadow:0 30px 80px rgba(0,0,0,.6); }
.nfrp .nfrp-lightbox__nav{
  width:52px; height:52px; flex:none; display:inline-flex; align-items:center; justify-content:center;
  border:1px solid var(--nfrp-line); border-radius:2px; color:var(--nfrp-bone); background:rgba(255,255,255,.03);
  transition:border-color .2s, background .2s, color .2s;
}
.nfrp .nfrp-lightbox__nav:hover{ border-color:var(--nfrp-red); background:rgba(223,32,39,.14); color:#fff; }
.nfrp .nfrp-lightbox__nav svg{ width:18px; height:18px; }
.nfrp .nfrp-lightbox__cap{ text-align:center; padding:18px 22px 26px; font-family:var(--nfrp-font-mono); font-size:.68rem; letter-spacing:.22em; text-transform:uppercase; color:var(--nfrp-bone-dim); }
@media (max-width:640px){
  .nfrp .nfrp-lightbox__nav{ width:44px; height:44px; }
  .nfrp .nfrp-lightbox__stage{ gap:8px; padding:0 10px; }
}

/* =============================================================================
   TRAILER
   ============================================================================= */
.nfrp .nfrp-trailer{ background:var(--nfrp-ink-2); border-top:1px solid var(--nfrp-line); border-bottom:1px solid var(--nfrp-line); }
.nfrp .nfrp-player{
  position:relative; aspect-ratio:16/9; overflow:hidden; border-radius:var(--nfrp-radius);
  border:1px solid var(--nfrp-line); background:#000; box-shadow:0 40px 90px -40px rgba(0,0,0,.9);
}
.nfrp .nfrp-player__poster{ position:absolute; inset:0; }
.nfrp .nfrp-player__poster img{ width:100%; height:100%; object-fit:cover; opacity:.62; }
.nfrp .nfrp-player__poster::after{ content:""; position:absolute; inset:0; background:radial-gradient(60% 60% at 50% 45%, transparent 30%, rgba(6,6,7,.55) 100%); }
.nfrp .nfrp-player__play{
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); z-index:2;
  width:92px; height:92px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background:var(--nfrp-red); color:#fff; box-shadow:0 0 0 0 rgba(223,32,39,.5);
  transition:transform .25s ease, background .2s ease;
}
.nfrp-js .nfrp .nfrp-player__play{ animation:nfrp-pulse 2.4s ease-out infinite; }
.nfrp .nfrp-player__play:hover{ transform:translate(-50%,-50%) scale(1.07); background:var(--nfrp-red-hot); }
.nfrp .nfrp-player__play svg{ width:30px; height:30px; margin-left:4px; }
@keyframes nfrp-pulse{ 0%{ box-shadow:0 0 0 0 rgba(223,32,39,.45);} 70%{ box-shadow:0 0 0 26px rgba(223,32,39,0);} 100%{ box-shadow:0 0 0 0 rgba(223,32,39,0);} }
.nfrp .nfrp-player__label{
  position:absolute; left:22px; bottom:18px; z-index:2;
  font-family:var(--nfrp-font-mono); font-size:.64rem; letter-spacing:.24em; text-transform:uppercase; color:rgba(242,239,233,.85);
  display:flex; align-items:center; gap:10px;
}
.nfrp .nfrp-player__label::before{ content:""; width:8px; height:8px; border-radius:50%; background:var(--nfrp-red); }
.nfrp .nfrp-player iframe, .nfrp .nfrp-player video{ position:absolute; inset:0; width:100%; height:100%; border:0; }
.nfrp .nfrp-trailer__note{ margin-top:16px; text-align:center; font-family:var(--nfrp-font-mono); font-size:.66rem; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.32); }

/* =============================================================================
   FINAL CTA
   ============================================================================= */
.nfrp .nfrp-final{ position:relative; overflow:hidden; text-align:center; padding:130px 0; }
.nfrp .nfrp-final__bg{ position:absolute; inset:-10% 0; z-index:-1; will-change:transform; }
.nfrp .nfrp-final__bg img{ width:100%; height:100%; object-fit:cover; opacity:.3; }
.nfrp .nfrp-final__bg::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg, var(--nfrp-ink) 0%, rgba(10,10,11,.6) 30%, rgba(10,10,11,.72) 100%); }
.nfrp .nfrp-final__inner{ position:relative; z-index:1; max-width:760px; margin:0 auto; }
.nfrp .nfrp-final h2{ font-family:var(--nfrp-font-display); text-transform:uppercase; font-size:clamp(2.4rem, 6vw, 4.4rem); margin-top:18px; }
.nfrp .nfrp-final h2 span{ color:var(--nfrp-red); }
.nfrp .nfrp-final__sub{ color:var(--nfrp-bone-dim); font-size:1.08rem; margin-top:16px; }
.nfrp .nfrp-final__ctas{ margin-top:40px; display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
@media (max-width:640px){ .nfrp .nfrp-final__ctas{ flex-direction:column; align-items:stretch; max-width:380px; margin-left:auto; margin-right:auto; } }

/* =============================================================================
   FOOTER (page-local)
   ============================================================================= */
.nfrp .nfrp-footer{ border-top:1px solid var(--nfrp-line); background:var(--nfrp-ink); padding:64px 0 34px; }
.nfrp .nfrp-footer__grid{ display:grid; grid-template-columns:1.5fr 1fr 1fr; gap:40px; padding-bottom:44px; }
@media (max-width:820px){ .nfrp .nfrp-footer__grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:540px){ .nfrp .nfrp-footer__grid{ grid-template-columns:1fr; } }
.nfrp .nfrp-footer__brand img{ width:150px; margin-bottom:16px; }
.nfrp .nfrp-footer__brand p{ color:var(--nfrp-bone-dim); font-size:.9rem; max-width:300px; }
.nfrp .nfrp-footer h4{
  font-family:var(--nfrp-font-mono); font-size:.68rem; font-weight:600; letter-spacing:.22em; text-transform:uppercase;
  color:var(--nfrp-red); margin-bottom:16px;
}
.nfrp .nfrp-footer ul{ display:flex; flex-direction:column; gap:10px; }
.nfrp .nfrp-footer ul a{ color:var(--nfrp-bone-dim); font-size:.9rem; transition:color .2s; }
.nfrp .nfrp-footer ul a:hover{ color:var(--nfrp-bone); }
.nfrp .nfrp-footer__bottom{
  border-top:1px solid var(--nfrp-line); padding-top:22px;
  display:flex; justify-content:space-between; align-items:center; gap:14px; flex-wrap:wrap;
  font-size:.76rem; color:rgba(255,255,255,.4);
}
.nfrp .nfrp-footer__bottom a{ color:var(--nfrp-bone-dim); transition:color .2s; }
.nfrp .nfrp-footer__bottom a:hover{ color:var(--nfrp-bone); }

/* =============================================================================
   SCROLL REVEALS
   Elements with [data-reveal] slide/fade in when they enter the viewport.
   Applied only when JS is running (html.nfrp-js) — no-JS users see everything.
   ============================================================================= */
.nfrp-js .nfrp [data-reveal]{ opacity:0; transform:translateY(30px); transition:opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); transition-delay:var(--nfrp-delay, 0s); will-change:opacity, transform; }
.nfrp-js .nfrp [data-reveal].in-view{ opacity:1; transform:translateY(0); }

/* =============================================================================
   REDUCED MOTION — disable every non-essential animation
   ============================================================================= */
@media (prefers-reduced-motion:reduce){
  .nfrp .nfrp-marquee__track,
  .nfrp .nfrp-hero__scroll svg,
  .nfrp .nfrp-player__play{ animation:none !important; }
  .nfrp-js .nfrp .nfrp-hero__bg img{ animation:none; }
  .nfrp-js .nfrp .nfrp-hero__logo,
  .nfrp-js .nfrp .nfrp-hero__eyebrow,
  .nfrp-js .nfrp .nfrp-hero h1 span,
  .nfrp-js .nfrp .nfrp-hero__sub,
  .nfrp-js .nfrp .nfrp-hero__ctas{ opacity:1; transform:none; animation:none; }
  .nfrp-js .nfrp [data-reveal]{ opacity:1; transform:none; transition:none; }
  .nfrp .nfrp-gitem img,
  .nfrp .nfrp-scard__media img{ transition:none; }
}

/* =============================================================================
   WORDPRESS EMBED MODE
   When the page runs inside an existing WP site (wrapper gets .nfrp--wp),
   the page-local navigation and footer hide so they don't fight the theme.
   ============================================================================= */
.nfrp--wp .nfrp-nav,
.nfrp--wp .nfrp-drawer,
.nfrp--wp .nfrp-footer{ display:none !important; }
.nfrp--wp section{ scroll-margin-top:140px; }   /* clear the theme's sticky header */
