/* ============================================================
   NFX Capital — Design System v1.1
   Phase 1B: Premium visual design
   ============================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --black:          #050508;
  --surface:        #0C0C14;
  --navy:           #060D1F;
  --navy-mid:       #0D1B35;
  --gold:           #C9A96E;
  --gold-bright:    #D4AF37;
  --gold-dim:       rgba(201, 169, 110, 0.55);
  --gold-border:    rgba(201, 169, 110, 0.18);
  --gold-border-hv: rgba(201, 169, 110, 0.45);
  --white:          #FFFFFF;
  --text:           #E2E2E6;
  --muted:          #8B9BB4;
  --muted-dim:      rgba(139, 155, 180, 0.5);
  --border-subtle:  rgba(255, 255, 255, 0.06);

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-label: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  --section-py:   clamp(80px, 10vw, 140px);
  --section-px:   clamp(1.5rem, 5vw, 4rem);
  --container:    1200px;
  --container-sm: 800px;

  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:  cubic-bezier(0.4, 0, 1, 1);
  --dur:      0.65s;
  --dur-fast: 0.3s;

  --radius: 2px;
  --nav-h:  80px;
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.75;
  color: var(--text);
  background-color: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: var(--gold); text-decoration: none; transition: color var(--dur-fast) ease; }
a:hover { color: var(--gold-bright); }

ul, ol { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── ACCESSIBILITY ──────────────────────────────────────────── */
.skip-link {
  position: fixed;
  top: -200px;
  left: 1rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-label);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .6rem 1.2rem;
  z-index: 9999;
  transition: top .2s;
  border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; color: var(--black); }

.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  height: 1px; width: 1px;
  overflow: hidden; position: absolute;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  clip: auto !important;
  height: auto; width: auto;
  overflow: visible; position: static;
}

*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.nfx-container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--section-px);
}
.nfx-container--sm {
  max-width: var(--container-sm);
}

/* ── TYPOGRAPHY SCALE ───────────────────────────────────────── */
.nfx-display {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--white);
}
.nfx-h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.15;
  color: var(--white);
}
.nfx-h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.2;
  color: var(--white);
}
.nfx-h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  line-height: 1.3;
  color: var(--white);
}
.nfx-label {
  font-family: var(--font-label);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.nfx-body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(.95rem, 1.5vw, 1.05rem);
  line-height: 1.85;
  color: var(--muted);
}

/* ── GOLD DIVIDER ───────────────────────────────────────────── */
.nfx-line {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(201,169,110,0) 100%);
  margin-block: 1.5rem;
  transform-origin: left;
}
.nfx-line--center {
  width: 60px;
  background: var(--gold);
  margin-inline: auto;
}
.nfx-line--full {
  width: 100%;
}

/* ── SECTION HEADER ─────────────────────────────────────────── */
.nfx-section-head {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.nfx-section-head__label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.nfx-section-head__label::after {
  content: '';
  display: block;
  height: 1px;
  width: 60px;
  background: var(--gold);
  flex-shrink: 0;
}
.nfx-section-head__title { margin-top: .75rem; }
.nfx-section-head__body  { margin-top: 1.25rem; max-width: 600px; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.nfx-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-label);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .85rem 2rem;
  border: 1px solid var(--gold-border-hv);
  color: var(--gold);
  background: transparent;
  transition: background var(--dur-fast) ease, color var(--dur-fast) ease, border-color var(--dur-fast) ease;
  cursor: pointer;
  text-decoration: none;
  border-radius: var(--radius);
  white-space: nowrap;
}
.nfx-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.nfx-btn--filled {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.nfx-btn--filled:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--black);
}
.nfx-btn--ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.2);
}
.nfx-btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.nfx-link-arrow {
  font-family: var(--font-label);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: gap var(--dur-fast) ease;
  text-decoration: none;
}
.nfx-link-arrow:hover { gap: .8rem; color: var(--gold-bright); }
.nfx-link-arrow::after { content: '→'; }

/* ══════════════════════════════════════════════════════════════
   HEADER & NAVIGATION
   ══════════════════════════════════════════════════════════════ */
.nfx-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--dur-fast) ease, border-color var(--dur-fast) ease, backdrop-filter var(--dur-fast) ease;
  border-bottom: 1px solid transparent;
}
.nfx-header.is-scrolled {
  background: rgba(5, 5, 8, 0.88);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom-color: var(--gold-border);
}
.nfx-header__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--section-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.nfx-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}
.nfx-logo__mark {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: .05em;
  line-height: 1;
}
.nfx-logo__sub {
  font-family: var(--font-label);
  font-size: .55rem;
  font-weight: 500;
  letter-spacing: .3em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: .2rem;
}
.nfx-logo:hover .nfx-logo__mark { color: var(--gold-bright); }

/* Nav */
.nfx-nav { display: flex; align-items: center; gap: 2rem; }

.nfx-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2rem);
}
.nfx-nav__list a {
  font-family: var(--font-label);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--dur-fast) ease;
}
.nfx-nav__list a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--dur-fast) var(--ease);
}
.nfx-nav__list a:hover { color: var(--gold); }
.nfx-nav__list a:hover::after,
.nfx-nav__list .current-menu-item > a::after { width: 100%; }
.nfx-nav__list .current-menu-item > a { color: var(--gold); }

/* Nav CTA */
.nfx-nav__cta { margin-left: .5rem; }

/* Hamburger */
.nfx-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
}
.nfx-nav__toggle span {
  display: block;
  height: 1px;
  background: var(--gold);
  transition: width var(--dur-fast) ease, opacity var(--dur-fast) ease, transform var(--dur-fast) ease;
}
.nfx-nav__toggle span:nth-child(1) { width: 22px; }
.nfx-nav__toggle span:nth-child(2) { width: 16px; }
.nfx-nav__toggle span:nth-child(3) { width: 22px; }
.nfx-nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); width: 22px; }
.nfx-nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nfx-nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); width: 22px; }

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.nfx-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--navy);
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Geometric background layers */
.nfx-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(13,27,53,0.9) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(201,169,110,0.04) 0%, transparent 60%),
    linear-gradient(160deg, #060D1F 0%, #050508 60%, #050508 100%);
  z-index: 0;
}
.nfx-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, rgba(201,169,110,0.03) 0%, transparent 60%);
  border-left: 1px solid var(--gold-border);
  z-index: 0;
}

.nfx-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(4rem, 8vw, 7rem) var(--section-px);
}
.nfx-hero__content { max-width: 700px; }

.nfx-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.nfx-hero__eyebrow::after {
  content: '';
  display: block;
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
}

.nfx-hero__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(3rem, 6.5vw, 6rem);
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--white);
  margin-bottom: 2rem;
}
.nfx-hero__title em {
  font-style: italic;
  color: var(--gold);
}

.nfx-hero__body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.85;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 3rem;
}

.nfx-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Scroll indicator */
.nfx-hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: .4;
  animation: scrollBob 2.5s ease-in-out infinite;
}
.nfx-hero__scroll span {
  font-family: var(--font-label);
  font-size: .6rem;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
}
.nfx-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  display: block;
}
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ══════════════════════════════════════════════════════════════
   SECTIONS COMMON
   ══════════════════════════════════════════════════════════════ */
.nfx-section {
  padding-block: var(--section-py);
  padding-inline: var(--section-px);
}
.nfx-section--black  { background-color: var(--black); }
.nfx-section--navy   { background-color: var(--navy); }
.nfx-section--surface { background-color: var(--surface); }

.nfx-section__inner {
  max-width: var(--container);
  margin-inline: auto;
}

/* ══════════════════════════════════════════════════════════════
   PILLARS / STATS
   ══════════════════════════════════════════════════════════════ */
.nfx-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
  margin-top: clamp(3rem, 6vw, 5rem);
}
.nfx-pillar {
  background: var(--surface);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  transition: background var(--dur-fast) ease;
}
.nfx-pillar:hover { background: var(--navy-mid); }
.nfx-pillar__number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .75rem;
}
.nfx-pillar__title {
  font-family: var(--font-label);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .6rem;
}
.nfx-pillar__body {
  font-size: .85rem;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
}

/* ══════════════════════════════════════════════════════════════
   TWO-COLUMN LAYOUT
   ══════════════════════════════════════════════════════════════ */
.nfx-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}
.nfx-split--reverse { direction: rtl; }
.nfx-split--reverse > * { direction: ltr; }

.nfx-quote {
  border-left: 2px solid var(--gold);
  padding-left: 2rem;
}
.nfx-quote__text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 1rem;
}
.nfx-quote__attr {
  font-family: var(--font-label);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* ══════════════════════════════════════════════════════════════
   PRINCIPLES (3-column)
   ══════════════════════════════════════════════════════════════ */
.nfx-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(3rem, 6vw, 5rem);
}
.nfx-principle {
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--gold-border);
  border-top: 2px solid var(--gold);
  transition: border-color var(--dur-fast) ease, background var(--dur-fast) ease;
  border-radius: var(--radius);
}
.nfx-principle:hover {
  border-color: var(--gold-border-hv);
  background: rgba(201,169,110,0.03);
}
.nfx-principle__num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: .5;
}
.nfx-principle__title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: .75rem;
}
.nfx-principle__body {
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════════════
   RISK POINTS
   ══════════════════════════════════════════════════════════════ */
.nfx-risk-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}
.nfx-risk-point {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid var(--gold-border);
  border-left: 2px solid var(--gold);
  transition: background var(--dur-fast) ease;
}
.nfx-risk-point:hover { background: rgba(201,169,110,0.03); }
.nfx-risk-point__icon {
  width: 20px;
  flex-shrink: 0;
  margin-top: .15rem;
  color: var(--gold);
  font-size: .7rem;
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: .05em;
}
.nfx-risk-point__text {
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}
.nfx-risk-point__text strong {
  display: block;
  font-family: var(--font-label);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .35rem;
}

/* ══════════════════════════════════════════════════════════════
   ASSET CLASSES (Strategy)
   ══════════════════════════════════════════════════════════════ */
.nfx-assets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
  margin-top: clamp(3rem, 6vw, 5rem);
}
.nfx-asset {
  background: var(--navy);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  transition: background var(--dur-fast) ease;
  position: relative;
  overflow: hidden;
}
.nfx-asset::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 0;
  background: var(--gold);
  transition: height var(--dur-fast) var(--ease);
}
.nfx-asset:hover { background: var(--navy-mid); }
.nfx-asset:hover::before { height: 100%; }
.nfx-asset__label {
  font-family: var(--font-label);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.nfx-asset__title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: .6rem;
}
.nfx-asset__body {
  font-size: .85rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════════════
   POST CARDS (Perspectivas)
   ══════════════════════════════════════════════════════════════ */
.nfx-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(3rem, 6vw, 5rem);
}
.nfx-post-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gold-border);
  background: var(--surface);
  transition: border-color var(--dur-fast) ease, transform var(--dur-fast) var(--ease);
  border-radius: var(--radius);
  overflow: hidden;
}
.nfx-post-card:hover {
  border-color: var(--gold-border-hv);
  transform: translateY(-3px);
}
.nfx-post-card__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--navy);
}
.nfx-post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.nfx-post-card:hover .nfx-post-card__thumb img { transform: scale(1.04); }
.nfx-post-card__body {
  padding: clamp(1.5rem, 3vw, 2rem);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.nfx-post-card__date {
  font-family: var(--font-label);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.nfx-post-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--white);
  margin: 0;
}
.nfx-post-card__title a { color: inherit; text-decoration: none; }
.nfx-post-card__title a:hover { color: var(--gold); }
.nfx-post-card__excerpt {
  font-size: .875rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  flex: 1;
}
.nfx-post-card__link {
  margin-top: .5rem;
  align-self: flex-start;
}

/* ══════════════════════════════════════════════════════════════
   PRIVATE ACCESS CTA SECTION
   ══════════════════════════════════════════════════════════════ */
.nfx-access {
  text-align: center;
  padding-block: clamp(80px, 12vw, 160px);
  position: relative;
  overflow: hidden;
}
.nfx-access::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.nfx-access__inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-inline: auto;
  padding-inline: var(--section-px);
}
.nfx-access__label { margin-bottom: 1.5rem; }
.nfx-access__line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}
.nfx-access__title { margin-bottom: 1.5rem; }
.nfx-access__body {
  margin-bottom: 2.5rem;
  max-width: 460px;
  margin-inline: auto;
}
.nfx-access__actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════════
   INTERIOR PAGES
   ══════════════════════════════════════════════════════════════ */
.nfx-page-banner {
  padding-top: calc(var(--nav-h) + clamp(3rem, 8vw, 6rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  padding-inline: var(--section-px);
  background-color: var(--navy);
  border-bottom: 1px solid var(--gold-border);
  position: relative;
  overflow: hidden;
}
.nfx-page-banner::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 30%;
  height: 100%;
  background: radial-gradient(ellipse at right center, rgba(201,169,110,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.nfx-page-banner__inner {
  max-width: var(--container);
  margin-inline: auto;
}
.nfx-page-banner__label { margin-bottom: 1rem; }
.nfx-page-banner__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.1;
}

.nfx-page-body {
  padding-block: var(--section-py);
  padding-inline: var(--section-px);
}
.nfx-page-body__inner {
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(3rem, 8vw, 6rem);
  align-items: start;
}
.nfx-page-body__inner--full {
  grid-template-columns: 1fr;
  max-width: var(--container-sm);
}

/* Page content typography */
.entry-content { font-size: clamp(.95rem, 1.5vw, 1.05rem); font-weight: 300; color: var(--muted); line-height: 1.85; }
.entry-content p { margin-bottom: 1.25rem; }
.entry-content h2 { font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 400; color: var(--white); margin: 2.5rem 0 1rem; }
.entry-content h3 { font-family: var(--font-serif); font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 500; color: var(--white); margin: 2rem 0 .75rem; }
.entry-content h4 { font-family: var(--font-label); font-size: .7rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin: 1.5rem 0 .5rem; }
.entry-content ul, .entry-content ol { padding-left: 0; margin: .5rem 0 1.5rem; }
.entry-content li { padding: .35rem 0 .35rem 1.5rem; position: relative; border-bottom: 1px solid var(--border-subtle); }
.entry-content li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: .8em; }
.entry-content strong { color: var(--white); font-weight: 500; }
.entry-content em { font-style: italic; color: var(--muted-dim); font-size: .9em; }
.entry-content a { color: var(--gold); border-bottom: 1px solid var(--gold-border); }
.entry-content a:hover { color: var(--gold-bright); border-bottom-color: var(--gold-bright); }
.entry-content blockquote { border-left: 2px solid var(--gold); padding: 1rem 0 1rem 2rem; margin: 2rem 0; font-family: var(--font-serif); font-size: 1.2em; font-style: italic; color: var(--white); }

/* Sidebar */
.nfx-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.nfx-sidebar-card {
  border: 1px solid var(--gold-border);
  padding: 2rem;
  border-top: 2px solid var(--gold);
  margin-bottom: 1.5rem;
}
.nfx-sidebar-card__label { margin-bottom: .75rem; }
.nfx-sidebar-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: .75rem;
}
.nfx-sidebar-card__body {
  font-size: .85rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

/* ══════════════════════════════════════════════════════════════
   SINGLE ARTICLE
   ══════════════════════════════════════════════════════════════ */
.nfx-article-hero {
  padding-top: calc(var(--nav-h) + clamp(3rem, 8vw, 6rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  padding-inline: var(--section-px);
  background: var(--navy);
  border-bottom: 1px solid var(--gold-border);
}
.nfx-article-hero__inner { max-width: var(--container-sm); margin-inline: auto; }
.nfx-article-hero__meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.nfx-article-hero__date,
.nfx-article-hero__cat {
  font-family: var(--font-label);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.nfx-article-hero__cat { color: var(--gold); }
.nfx-article-hero__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.nfx-article-hero__lead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  max-width: 600px;
}

.nfx-article-body {
  padding-block: var(--section-py);
  padding-inline: var(--section-px);
}
.nfx-article-body__inner {
  max-width: var(--container-sm);
  margin-inline: auto;
}
.nfx-article-thumb {
  margin-bottom: 3rem;
  border: 1px solid var(--gold-border);
}
.nfx-article-thumb img { width: 100%; aspect-ratio: 16/8; object-fit: cover; }

.nfx-article-nav {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid var(--gold-border);
  flex-wrap: wrap;
}
.nfx-article-nav a {
  font-family: var(--font-label);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}
.nfx-article-nav a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   PERSPECTIVAS PAGE
   ══════════════════════════════════════════════════════════════ */
.nfx-perspectives-header {
  padding-top: calc(var(--nav-h) + clamp(3rem, 8vw, 6rem));
  padding-bottom: clamp(2rem, 5vw, 4rem);
  padding-inline: var(--section-px);
  background: var(--navy);
  border-bottom: 1px solid var(--gold-border);
}
.nfx-perspectives-header__inner { max-width: var(--container); margin-inline: auto; }

.nfx-perspectives-grid {
  padding-block: var(--section-py);
  padding-inline: var(--section-px);
  background: var(--black);
}
.nfx-perspectives-grid__inner { max-width: var(--container); margin-inline: auto; }
.nfx-perspectives-grid .nfx-posts-grid { margin-top: 0; }

/* ══════════════════════════════════════════════════════════════
   ACCESO PRIVADO PAGE
   ══════════════════════════════════════════════════════════════ */
.nfx-private {
  min-height: calc(100vh - var(--nav-h));
  padding-top: calc(var(--nav-h) + clamp(4rem, 10vw, 8rem));
  padding-bottom: clamp(4rem, 10vw, 8rem);
  padding-inline: var(--section-px);
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.nfx-private::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.nfx-private__inner {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.nfx-private__line { width: 60px; height: 1px; background: var(--gold); margin: 1.5rem auto; }
.nfx-private__title { margin-bottom: 1.5rem; }
.nfx-private__body { margin-bottom: 2.5rem; }
.nfx-private__actions { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.nfx-footer {
  background: #030305;
  border-top: 1px solid var(--gold-border);
  padding-top: clamp(4rem, 8vw, 6rem);
}
.nfx-footer__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--section-px);
}

.nfx-footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 6vw, 4rem);
  border-bottom: 1px solid var(--gold-border);
}
.nfx-footer__brand .nfx-logo__mark { font-size: 1.8rem; }
.nfx-footer__tagline {
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}

.nfx-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.nfx-footer__nav-col__label {
  font-family: var(--font-label);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.nfx-footer__nav-col ul { display: flex; flex-direction: column; gap: .6rem; }
.nfx-footer__nav-col a {
  font-size: .82rem;
  font-weight: 300;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--dur-fast) ease;
}
.nfx-footer__nav-col a:hover { color: var(--gold); }

.nfx-footer__disclaimer {
  padding-block: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--border-subtle);
}
.nfx-footer__disclaimer p {
  font-size: .78rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(139, 155, 180, 0.55);
  max-width: 900px;
}
.nfx-footer__disclaimer a { color: rgba(201, 169, 110, 0.5); }
.nfx-footer__disclaimer a:hover { color: var(--gold); }

.nfx-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.nfx-footer__copy, .nfx-footer__legal {
  font-family: var(--font-label);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(139, 155, 180, 0.35);
}
.nfx-footer__legal { display: flex; gap: 1.5rem; }
.nfx-footer__legal a { color: inherit; }
.nfx-footer__legal a:hover { color: var(--gold-dim); }

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS (triggered via JS IntersectionObserver)
   ══════════════════════════════════════════════════════════════ */
.nfx-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.nfx-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.nfx-fade--delay-1 { transition-delay: .1s; }
.nfx-fade--delay-2 { transition-delay: .2s; }
.nfx-fade--delay-3 { transition-delay: .3s; }
.nfx-fade--delay-4 { transition-delay: .4s; }

.nfx-line-grow {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .8s var(--ease);
}
.nfx-line-grow.is-visible { transform: scaleX(1); }

/* ══════════════════════════════════════════════════════════════
   PAGINATION
   ══════════════════════════════════════════════════════════════ */
.nfx-pagination {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-top: 4rem;
  flex-wrap: wrap;
}
.nfx-pagination a,
.nfx-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 .75rem;
  border: 1px solid var(--gold-border);
  font-family: var(--font-label);
  font-size: .65rem;
  letter-spacing: .1em;
  color: var(--muted);
  text-decoration: none;
  transition: background var(--dur-fast) ease, color var(--dur-fast) ease, border-color var(--dur-fast) ease;
}
.nfx-pagination a:hover { background: rgba(201,169,110,0.08); border-color: var(--gold-border-hv); color: var(--gold); }
.nfx-pagination .current { background: var(--gold); color: var(--black); border-color: var(--gold); }
.nfx-pagination .prev, .nfx-pagination .next { font-size: .8rem; }

/* ══════════════════════════════════════════════════════════════
   404
   ══════════════════════════════════════════════════════════════ */
.nfx-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--section-py) var(--section-px);
  padding-top: calc(var(--nav-h) + var(--section-py));
}
.nfx-404__code {
  font-family: var(--font-serif);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 300;
  color: var(--gold);
  opacity: .15;
  line-height: 1;
  margin-bottom: -1rem;
}
.nfx-404__title { margin-bottom: 1rem; }
.nfx-404__body { margin-bottom: 2rem; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nfx-pillars { grid-template-columns: repeat(2, 1fr); }
  .nfx-assets  { grid-template-columns: 1fr; }
  .nfx-footer__top { grid-template-columns: 1fr; }
  .nfx-footer__nav { grid-template-columns: repeat(2, 1fr); }
  .nfx-page-body__inner { grid-template-columns: 1fr; }
  .nfx-sidebar { position: static; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  .nfx-nav__toggle { display: flex; }
  .nfx-nav__list {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(5, 5, 8, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1.5rem var(--section-px) 2rem;
    border-bottom: 1px solid var(--gold-border);
    z-index: 999;
  }
  .nfx-nav__list.is-open { display: flex; }
  .nfx-nav__list li { width: 100%; border-bottom: 1px solid var(--border-subtle); }
  .nfx-nav__list a { display: block; padding: .9rem 0; font-size: .72rem; }
  .nfx-nav__list a::after { display: none; }
  .nfx-nav__cta { display: none; }

  .nfx-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .nfx-split--reverse { direction: ltr; }
  .nfx-principles { grid-template-columns: 1fr; }
  .nfx-posts-grid { grid-template-columns: 1fr; }
  .nfx-pillars { grid-template-columns: 1fr; }
  .nfx-assets { grid-template-columns: 1fr; }
  .nfx-footer__nav { grid-template-columns: 1fr; }
  .nfx-footer__bottom { flex-direction: column; text-align: center; }
  .nfx-footer__legal { justify-content: center; flex-wrap: wrap; }
  .nfx-access__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .nfx-hero__actions { flex-direction: column; align-items: flex-start; }
  .nfx-private__actions { flex-direction: column; align-items: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .nfx-fade { opacity: 1; transform: none; }
}

/* ════════════════════════════════════════════════════════════════
   PHASE 1B+ PREMIUM REDESIGN — appended blocks
   ════════════════════════════════════════════════════════════════ */

/* ── CANVAS PARTICLES ──────────────────────────────────────────── */
#nfx-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* ── HERO TITLE OVERRIDE ───────────────────────────────────────── */
.nfx-hero__title {
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 1.0;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 1.5rem 0 2rem;
}
.nfx-hero__scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-label);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  z-index: 2;
}
.nfx-hero__scroll-line {
  display: block;
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: nfxScrollPulse 2s ease-in-out infinite;
}
@keyframes nfxScrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ── PREMIUM BADGE ─────────────────────────────────────────────── */
.nfx-premium {
  display: inline-block;
  font-family: var(--font-label);
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: .45em 1em;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.nfx-capital-section.nfx-premium {
  border: none;
  padding: 0;
  border-radius: 0;
  display: block;
  color: inherit;
  letter-spacing: normal;
  text-transform: none;
  font-family: inherit;
  font-size: inherit;
}

/* ── AUTHORITY BAR ─────────────────────────────────────────────── */
.nfx-authority {
  background: var(--black);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 2.5rem var(--section-px);
}
.nfx-authority__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.nfx-authority__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid var(--gold-border);
  gap: .6rem;
}
.nfx-authority__item:last-child { border-right: none; }
.nfx-authority__num {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  font-style: italic;
}
.nfx-authority__label {
  font-family: var(--font-label);
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── NARRATIVE ─────────────────────────────────────────────────── */
.nfx-narrative {
  background: var(--navy);
  padding: var(--section-py) var(--section-px);
  position: relative;
  overflow: hidden;
}
.nfx-narrative::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}
.nfx-narrative::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}
.nfx-narrative__inner {
  max-width: var(--container-sm);
  margin: 0 auto;
  text-align: center;
}
.nfx-narrative__eyebrow {
  display: block;
  font-family: var(--font-label);
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.nfx-narrative__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 2rem;
}
.nfx-narrative__title em { color: var(--gold); font-style: italic; }
.nfx-narrative__body {
  font-size: clamp(.95rem, 1.5vw, 1.05rem);
  line-height: 1.9;
  color: var(--muted);
}

/* ── CAPITAL SECTION ───────────────────────────────────────────── */
.nfx-capital-section {
  background: var(--black);
  padding: var(--section-py) var(--section-px);
}
.nfx-capital-section__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.nfx-capital-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.nfx-capital-card {
  background: rgba(6,13,31,0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  transition: border-color .3s ease, transform .3s ease;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.nfx-capital-card:hover {
  border-color: var(--gold-border-hv);
  transform: translateY(-4px);
}
.nfx-capital-card__symbol {
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}
.nfx-capital-card__label {
  font-family: var(--font-label);
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.nfx-capital-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  margin: 0;
}
.nfx-capital-card__body {
  font-size: .88rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}

/* ── RISK BOARD ────────────────────────────────────────────────── */
.nfx-risk-board {
  background: var(--surface);
  padding: var(--section-py) var(--section-px);
  position: relative;
}
.nfx-risk-board::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}
.nfx-risk-board__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.nfx-risk-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  overflow: hidden;
  align-self: center;
}
.nfx-risk-cell {
  background: var(--navy);
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  transition: background .25s ease;
}
.nfx-risk-cell:hover { background: var(--navy-mid); }
.nfx-risk-cell__label {
  font-family: var(--font-label);
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.nfx-risk-cell__text {
  font-size: .86rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}

/* ── PRIVATE EXPERIENCE ────────────────────────────────────────── */
.nfx-private-exp {
  background: var(--black);
  padding: var(--section-py) var(--section-px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.nfx-private-exp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.nfx-private-exp__inner {
  max-width: var(--container-sm);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.nfx-private-exp__ornament {
  width: 1px;
  height: 4rem;
  background: linear-gradient(to bottom, transparent, var(--gold-dim));
  margin: 0 auto 2rem;
}
.nfx-private-exp__label {
  display: block;
  margin-bottom: 1.5rem;
}
.nfx-private-exp__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 2rem;
}
.nfx-private-exp__title em { color: var(--gold); font-style: italic; }
.nfx-private-exp__body {
  margin-bottom: 3rem;
}

/* ── PERSPECTIVES HOME ─────────────────────────────────────────── */
.nfx-perspectives-home {
  background: var(--navy);
  padding: var(--section-py) var(--section-px);
  position: relative;
}
.nfx-perspectives-home::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}
.nfx-perspectives-home__inner {
  max-width: var(--container);
  margin: 0 auto;
}

/* ── CINEMATIC CTA ─────────────────────────────────────────────── */
.nfx-cinematic-cta {
  background: var(--black);
  padding: var(--section-py) var(--section-px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.nfx-cinematic-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201,169,110,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.nfx-cinematic-cta__inner {
  max-width: var(--container-sm);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.nfx-cinematic-cta__eyebrow {
  display: block;
  font-family: var(--font-label);
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1.5rem;
}
.nfx-cinematic-cta__line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 2.5rem;
}
.nfx-cinematic-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 3rem;
}
.nfx-cinematic-cta__title em { color: var(--gold); font-style: italic; }

/* ── SECTION HEAD ──────────────────────────────────────────────── */
.nfx-section-head { margin-bottom: 3.5rem; }
.nfx-section-head__label { display: block; margin-bottom: 1rem; }
.nfx-section-head__title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.nfx-section-head__body {
  font-size: clamp(.9rem, 1.4vw, 1rem);
  line-height: 1.85;
  color: var(--muted);
  max-width: 600px;
}

/* ── RESPONSIVE PREMIUM ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nfx-capital-grid { grid-template-columns: repeat(2, 1fr); }
  .nfx-risk-board__inner { grid-template-columns: 1fr; gap: 3rem; }
  .nfx-authority__inner { grid-template-columns: repeat(2, 1fr); }
  .nfx-authority__item:nth-child(2) { border-right: none; }
  .nfx-authority__item:nth-child(3) { border-right: 1px solid var(--gold-border); }
}
@media (max-width: 768px) {
  .nfx-capital-grid { grid-template-columns: 1fr; }
  .nfx-risk-matrix { grid-template-columns: 1fr; }
  .nfx-narrative__title { font-size: clamp(1.5rem, 5vw, 2.2rem); }
  .nfx-cinematic-cta__title { font-size: clamp(1.7rem, 5vw, 2.5rem); }
}
@media (max-width: 640px) {
  .nfx-authority__inner { grid-template-columns: 1fr; }
  .nfx-authority__item { border-right: none; border-bottom: 1px solid var(--gold-border); }
  .nfx-authority__item:last-child { border-bottom: none; }
  .nfx-hero__title { font-size: clamp(2.4rem, 10vw, 4rem); }
}

/* NFX V3 — Header + Financial Command Center */
.nfx-header-v3{height:92px;background:linear-gradient(180deg,rgba(3,7,14,.75),transparent)}
.nfx-header-v3.is-scrolled{height:76px;background:rgba(4,8,15,.92);border-bottom-color:rgba(213,178,105,.16);box-shadow:0 18px 50px rgba(0,0,0,.24)}
.nfx-header-v3 .nfx-header__inner{max-width:1600px;padding-inline:clamp(1.25rem,3.4vw,4rem);gap:clamp(1.25rem,2.5vw,3rem)}
.nfx-header-v3 .nfx-logo{flex-direction:row;align-items:center;gap:.8rem}.nfx-logo__copy{display:flex;flex-direction:column}
.nfx-logo__monogram{display:grid;place-items:center;width:48px;height:48px;border:1px solid rgba(213,178,105,.42);background:linear-gradient(135deg,rgba(213,178,105,.13),transparent 54%),rgba(5,11,21,.88);box-shadow:inset 0 0 24px rgba(213,178,105,.06),0 10px 32px rgba(0,0,0,.28);font:600 .72rem var(--font-label);letter-spacing:.16em;color:#e5c985}
.nfx-header-v3 .nfx-logo__mark{font:500 .82rem var(--font-label);letter-spacing:.18em;text-transform:uppercase;color:#f2f1ed}.nfx-header-v3 .nfx-logo__sub{font-size:.46rem;letter-spacing:.23em;color:rgba(151,166,187,.65);margin-top:.34rem}
.nfx-nav-shell{display:flex;align-items:center;justify-content:flex-end;gap:clamp(1rem,2.2vw,2.7rem);flex:1}.nfx-header-v3 .nfx-nav{gap:0}.nfx-header-v3 .nfx-nav__list{gap:clamp(.85rem,1.45vw,1.6rem)}
.nfx-header-v3 .nfx-nav__list a{font-size:clamp(.54rem,.55vw,.64rem);letter-spacing:.12em;color:rgba(203,211,222,.72);white-space:nowrap}.nfx-header-v3 .nfx-nav__list a:hover{color:#e1c47e}
.nfx-header-actions{display:flex;align-items:center;gap:clamp(.7rem,1.25vw,1.25rem)}.nfx-lang-switch{display:flex;align-items:center;gap:.4rem;padding:.35rem .55rem;border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.025)}.nfx-lang-switch>span{width:1px;height:10px;background:rgba(255,255,255,.12)}
.nfx-lang-switch__item{padding:0;font:600 .52rem var(--font-label);letter-spacing:.08em;color:rgba(151,166,187,.52)}.nfx-lang-switch__item.is-active{color:#d9b976}.nfx-login-link{font:600 .58rem var(--font-label);letter-spacing:.14em;text-transform:uppercase;color:rgba(236,238,240,.86)}
.nfx-register-link{min-height:40px;display:inline-flex;align-items:center;gap:.75rem;padding:.65rem 1rem;border:1px solid rgba(213,178,105,.42);background:linear-gradient(110deg,rgba(213,178,105,.13),rgba(213,178,105,.025));font:600 .55rem var(--font-label);letter-spacing:.13em;text-transform:uppercase;color:#e4c57e;transition:.25s var(--ease)}.nfx-register-link:hover{color:#080b10;background:#d9b976;border-color:#d9b976;transform:translateY(-1px)}
.nfx-register-link svg,.nfx-premium-cta svg{width:16px;fill:none;stroke:currentColor;stroke-width:1.3}

.nfx-hero-v3{position:relative;min-height:max(760px,100svh);display:grid;align-items:center;overflow:hidden;padding:112px clamp(1.25rem,3.4vw,4rem) 54px;background:radial-gradient(circle at 76% 45%,rgba(18,48,68,.42),transparent 32%),radial-gradient(circle at 18% 48%,rgba(171,132,62,.08),transparent 27%),linear-gradient(124deg,#03070d 0%,#07101c 48%,#03070d 100%);isolation:isolate}
.nfx-hero-v3:before{content:"";position:absolute;inset:0;z-index:-1;opacity:.28;background-image:linear-gradient(rgba(122,150,170,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(122,150,170,.045) 1px,transparent 1px);background-size:80px 80px;mask-image:linear-gradient(to right,transparent,#000 25%,#000 85%,transparent)}
.nfx-hero-v3:after{content:"";position:absolute;inset:0;z-index:-1;pointer-events:none;background:linear-gradient(90deg,rgba(3,7,13,.28),transparent 40%,transparent 82%,rgba(3,7,13,.55));box-shadow:inset 0 -100px 100px rgba(2,5,9,.42)}
.nfx-hero-v3__ambient{position:absolute;width:48vw;aspect-ratio:1;right:-15vw;top:-26vw;border:1px solid rgba(213,178,105,.08);border-radius:50%;box-shadow:0 0 0 9vw rgba(213,178,105,.018),0 0 0 18vw rgba(213,178,105,.012)}
.nfx-hero-v3__grid{width:100%;max-width:1600px;margin:auto;display:grid;grid-template-columns:minmax(0,54fr) minmax(520px,46fr);gap:clamp(3rem,5vw,7rem);align-items:center}.nfx-hero-v3__content{max-width:770px}
.nfx-hero-v3__kicker{display:flex;align-items:center;gap:.75rem;margin-bottom:clamp(1.7rem,3vw,2.8rem);font:600 .57rem var(--font-label);letter-spacing:.19em;text-transform:uppercase;color:#c9ab6a}.nfx-hero-v3__code{margin-left:auto;color:rgba(145,161,181,.42)}
.nfx-gold-pulse{position:relative;width:7px;height:7px;flex:none;border-radius:50%;background:#e4c476;box-shadow:0 0 14px rgba(228,196,118,.8)}.nfx-gold-pulse:after{content:"";position:absolute;inset:-5px;border:1px solid rgba(228,196,118,.28);border-radius:inherit;animation:nfxGoldPulse 2.5s ease-out infinite}@keyframes nfxGoldPulse{0%{transform:scale(.5);opacity:1}75%,100%{transform:scale(1.7);opacity:0}}
.nfx-hero-v3__title{max-width:750px;font:300 clamp(3.7rem,6.1vw,7.2rem)/.88 var(--font-serif);letter-spacing:-.045em;color:#f4f3ef;text-wrap:balance;text-shadow:0 16px 50px rgba(0,0,0,.32)}.nfx-hero-v3__title em{display:inline-block;font-weight:300;color:#d8b870;background:linear-gradient(110deg,#b78e49,#f0d593 48%,#a77b39);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}
.nfx-hero-v3__lead{max-width:650px;margin-top:2rem;font:300 clamp(1.17rem,1.5vw,1.48rem)/1.45 var(--font-serif);color:rgba(231,232,229,.9)}.nfx-hero-v3__body{max-width:620px;margin-top:1rem;font-size:clamp(.86rem,.9vw,1rem);font-weight:300;line-height:1.8;color:rgba(155,171,192,.74)}
.nfx-hero-v3__actions{display:flex;gap:.85rem;margin-top:clamp(2rem,3.5vw,3rem)}.nfx-premium-cta{min-height:54px;display:inline-flex;align-items:center;justify-content:space-between;gap:1.4rem;padding:.9rem 1.3rem;border:1px solid rgba(213,178,105,.3);font:600 .61rem var(--font-label);letter-spacing:.15em;text-transform:uppercase;transition:.3s var(--ease)}.nfx-premium-cta:hover{transform:translateY(-2px)}.nfx-premium-cta--gold{min-width:240px;color:#080b10;background:linear-gradient(110deg,#b99450,#e1c47c 55%,#b58b47);box-shadow:0 12px 34px rgba(176,132,54,.14)}.nfx-premium-cta--gold:hover{color:#080b10;box-shadow:0 16px 44px rgba(205,166,91,.25)}.nfx-premium-cta--dark{min-width:220px;color:rgba(235,236,234,.88);background:rgba(255,255,255,.025)}.nfx-premium-cta--dark:hover{color:#e2c57f;background:rgba(213,178,105,.07)}
.nfx-hero-v3__signals{display:grid;grid-template-columns:repeat(4,auto);max-width:680px;gap:1rem;margin-top:clamp(2.2rem,4vw,4rem)}.nfx-hero-v3__signals span{position:relative;padding-left:.85rem;font:500 .52rem var(--font-label);letter-spacing:.12em;text-transform:uppercase;color:rgba(160,174,193,.57);white-space:nowrap}.nfx-hero-v3__signals span:before{content:"";position:absolute;left:0;top:50%;width:4px;height:4px;transform:translateY(-50%) rotate(45deg);border:1px solid rgba(213,178,105,.7)}

.nfx-hero-v3__visual{position:relative;min-width:0;perspective:1400px;filter:drop-shadow(0 34px 70px rgba(0,0,0,.45))}.nfx-market-panel{position:relative;min-height:550px;overflow:hidden;border:1px solid rgba(157,181,202,.16);background:linear-gradient(145deg,rgba(18,33,48,.92),rgba(4,10,18,.96) 65%);box-shadow:inset 0 1px rgba(255,255,255,.04),inset 0 0 80px rgba(51,94,116,.05),0 35px 90px rgba(0,0,0,.45);transform:rotateY(-3deg) rotateX(1deg);transform-style:preserve-3d}.nfx-market-panel:before{content:"";position:absolute;inset:0;pointer-events:none;background:linear-gradient(120deg,rgba(255,255,255,.035),transparent 28%,transparent 74%,rgba(213,178,105,.025))}
.nfx-market-panel__top,.nfx-market-panel__foot{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1.25rem 1.4rem;border-bottom:1px solid rgba(255,255,255,.065)}.nfx-market-panel__eyebrow,.nfx-market-panel__top strong{display:block}.nfx-market-panel__eyebrow{margin-bottom:.28rem;font:500 .48rem var(--font-label);letter-spacing:.18em;text-transform:uppercase;color:rgba(213,178,105,.65)}.nfx-market-panel__top strong{font:500 .72rem var(--font-label);letter-spacing:.09em;color:rgba(240,242,242,.88)}
.nfx-market-panel__status{display:flex;align-items:center;gap:.45rem;font:500 .48rem var(--font-label);letter-spacing:.12em;text-transform:uppercase;color:rgba(145,180,169,.72)}.nfx-market-panel__status i{width:5px;height:5px;border-radius:50%;background:#85b29d;box-shadow:0 0 9px rgba(133,178,157,.75)}
.nfx-market-panel__metrics{display:grid;grid-template-columns:repeat(3,1fr);border-bottom:1px solid rgba(255,255,255,.065)}.nfx-market-metric{padding:1.15rem 1.25rem;border-right:1px solid rgba(255,255,255,.065)}.nfx-market-metric:last-child{border:0}.nfx-market-metric span,.nfx-market-metric strong,.nfx-market-metric small{display:block}.nfx-market-metric span{font:500 .45rem var(--font-label);letter-spacing:.13em;text-transform:uppercase;color:rgba(143,160,180,.56)}.nfx-market-metric strong{margin-top:.35rem;font:400 clamp(.92rem,1.2vw,1.25rem) var(--font-label);letter-spacing:.04em;color:rgba(236,237,234,.9)}.nfx-market-metric small{margin-top:.22rem;font:500 .44rem var(--font-label);letter-spacing:.08em;text-transform:uppercase;color:rgba(213,178,105,.75)}
.nfx-trading-stage{position:relative;height:330px;overflow:hidden}.nfx-trading-canvas{display:block;width:100%;height:100%}.nfx-trading-stage__axis{position:absolute;top:1rem;right:.75rem;bottom:1rem;display:flex;flex-direction:column;justify-content:space-between;font:400 .42rem var(--font-label);letter-spacing:.08em;color:rgba(137,155,177,.38);pointer-events:none}
.nfx-capital-orbit{position:absolute;right:8%;top:12%;width:92px;aspect-ratio:1;border:1px solid rgba(213,178,105,.1);border-radius:50%;pointer-events:none;animation:nfxOrbit 18s linear infinite}.nfx-capital-orbit:before,.nfx-capital-orbit:after{content:"";position:absolute;border:1px solid rgba(213,178,105,.07);border-radius:50%}.nfx-capital-orbit:before{inset:12px}.nfx-capital-orbit:after{inset:27px}.nfx-capital-orbit span{position:absolute;width:4px;height:4px;border-radius:50%;background:rgba(226,196,127,.8);box-shadow:0 0 9px rgba(226,196,127,.7)}.nfx-capital-orbit span:nth-child(1){top:-2px;left:50%}.nfx-capital-orbit span:nth-child(2){bottom:17px;left:8px}.nfx-capital-orbit span:nth-child(3){right:7px;top:24px}@keyframes nfxOrbit{to{transform:rotate(360deg)}}
.nfx-market-panel__foot{border-top:1px solid rgba(255,255,255,.065);border-bottom:0;padding-block:.85rem;font:500 .43rem var(--font-label);letter-spacing:.1em;text-transform:uppercase;color:rgba(135,152,173,.45)}.nfx-market-panel__foot span:first-child{display:flex;align-items:center;gap:.4rem;color:rgba(213,178,105,.64)}.nfx-market-panel__foot i{width:18px;height:1px;background:#d5b269}
.nfx-float-panel{position:absolute;z-index:2;min-width:170px;padding:1rem 1.05rem;border:1px solid rgba(213,178,105,.18);background:rgba(7,14,24,.82);backdrop-filter:blur(16px) saturate(140%);box-shadow:0 18px 50px rgba(0,0,0,.35)}.nfx-float-panel span,.nfx-float-panel strong,.nfx-float-panel small{display:block}.nfx-float-panel span{font:500 .44rem var(--font-label);letter-spacing:.14em;text-transform:uppercase;color:rgba(143,160,180,.58)}.nfx-float-panel strong{margin-top:.3rem;font:500 .8rem var(--font-label);letter-spacing:.08em;color:#dec17d}.nfx-float-panel--allocation{left:-42px;bottom:66px}.nfx-float-panel--allocation div{display:flex;gap:3px;margin-top:.65rem}.nfx-float-panel--allocation i{width:22px;height:3px;background:rgba(213,178,105,.16)}.nfx-float-panel--allocation i:nth-child(-n+4){background:rgba(213,178,105,.62)}.nfx-float-panel--risk{right:-24px;top:120px}.nfx-float-panel--risk small{margin-top:.35rem;font:500 .38rem var(--font-label);letter-spacing:.12em;color:rgba(143,160,180,.43)}
.nfx-hero-v3__rail{position:absolute;left:clamp(1.25rem,3.4vw,4rem);right:clamp(1.25rem,3.4vw,4rem);bottom:1.3rem;display:flex;align-items:center;gap:1rem;font:500 .43rem var(--font-label);letter-spacing:.15em;text-transform:uppercase;color:rgba(135,152,173,.36)}.nfx-hero-v3__rail i{height:1px;flex:1;background:linear-gradient(90deg,rgba(213,178,105,.15),rgba(255,255,255,.035))}

@media(max-width:1320px){.nfx-header-v3 .nfx-nav__list li:nth-child(6){display:none}.nfx-header-v3 .nfx-logo__sub{display:none}.nfx-hero-v3__grid{grid-template-columns:minmax(0,1fr) minmax(460px,.8fr);gap:3.5rem}.nfx-hero-v3__title{font-size:clamp(3.5rem,6vw,5.6rem)}}
@media(max-width:1080px){.nfx-header-v3 .nfx-nav__toggle{display:flex;order:3}.nfx-nav-shell{position:fixed;top:0;right:0;width:min(440px,100%);height:100dvh;flex-direction:column;align-items:stretch;justify-content:flex-start;gap:2rem;padding:112px clamp(1.5rem,5vw,3rem) 2.5rem;overflow-y:auto;background:rgba(4,9,16,.98);border-left:1px solid rgba(213,178,105,.15);transform:translateX(102%);visibility:hidden;transition:transform .45s var(--ease),visibility .45s}.nfx-nav-shell.is-open{transform:translateX(0);visibility:visible}.nfx-header-v3 .nfx-nav__list{display:flex;position:static;padding:0;background:none;backdrop-filter:none;flex-direction:column;align-items:stretch;gap:0;border:0}.nfx-header-v3 .nfx-nav__list li,.nfx-header-v3 .nfx-nav__list li:nth-child(6){display:block;border-bottom:1px solid rgba(255,255,255,.065)}.nfx-header-v3 .nfx-nav__list a{display:block;padding:1rem 0;font:300 1.55rem var(--font-serif);letter-spacing:.01em;text-transform:none;color:rgba(239,239,235,.88)}.nfx-header-v3 .nfx-nav__list a:after{display:none}.nfx-header-actions{align-items:stretch;flex-wrap:wrap}.nfx-lang-switch{width:max-content}.nfx-login-link{display:flex;align-items:center;padding-inline:.5rem}.nfx-register-link{width:100%;justify-content:space-between;margin-top:.4rem}.nfx-menu-open{overflow:hidden}.nfx-hero-v3{min-height:auto;padding-top:130px;padding-bottom:80px}.nfx-hero-v3__grid{grid-template-columns:1fr;max-width:900px}.nfx-hero-v3__content{max-width:760px}.nfx-hero-v3__visual{width:min(760px,94%);margin:auto}.nfx-market-panel{transform:rotateY(-1deg)}}
@media(max-width:640px){.nfx-header-v3,.nfx-header-v3.is-scrolled{height:70px}.nfx-header-v3 .nfx-logo__monogram{width:40px;height:40px;font-size:.62rem}.nfx-header-v3 .nfx-logo__mark{font-size:.64rem;letter-spacing:.12em}.nfx-nav-shell{padding-top:86px}.nfx-hero-v3{padding:104px 1rem 62px}.nfx-hero-v3__title{font-size:clamp(3.15rem,15vw,4.7rem);line-height:.92}.nfx-hero-v3__kicker{font-size:.47rem;letter-spacing:.13em}.nfx-hero-v3__code{display:none}.nfx-hero-v3__lead{margin-top:1.5rem}.nfx-hero-v3__actions{flex-direction:column;align-items:stretch}.nfx-premium-cta,.nfx-premium-cta--gold,.nfx-premium-cta--dark{width:100%;min-width:0}.nfx-hero-v3__signals{grid-template-columns:repeat(2,1fr);gap:.8rem .4rem}.nfx-hero-v3__visual{width:100%;margin-top:.5rem}.nfx-market-panel{min-height:445px;transform:none}.nfx-market-panel__top{padding:1rem}.nfx-market-panel__status{display:none}.nfx-market-panel__metrics{grid-template-columns:1fr 1fr}.nfx-market-metric{padding:.9rem}.nfx-market-metric:nth-child(3){display:none}.nfx-trading-stage{height:270px}.nfx-market-panel__foot span:nth-child(2){display:none}.nfx-float-panel--allocation{left:10px;bottom:54px}.nfx-float-panel--risk{display:none}.nfx-capital-orbit{width:70px}.nfx-hero-v3__rail{display:none}}
@media(prefers-reduced-motion:reduce){.nfx-gold-pulse:after,.nfx-capital-orbit{animation:none}}

/* NFX V3 — Complete Home */
.nfx-v3-label{display:inline-flex;align-items:center;gap:.7rem;font:600 .55rem var(--font-label);letter-spacing:.2em;text-transform:uppercase;color:#cbaa65}.nfx-v3-label:before{content:"";width:22px;height:1px;background:linear-gradient(90deg,#d8b76f,transparent)}
.nfx-text-link{display:inline-flex;align-items:center;gap:.65rem;font:600 .56rem var(--font-label);letter-spacing:.15em;text-transform:uppercase;color:#d2b36d}.nfx-text-link span{font-size:.9rem;transition:transform .25s var(--ease)}.nfx-text-link:hover span{transform:translate(3px,-3px)}
.nfx-v3-section-head{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(280px,.75fr);gap:clamp(3rem,8vw,8rem);align-items:end;margin-bottom:clamp(3rem,6vw,5.5rem)}.nfx-v3-section-head h2{margin-top:1.2rem;font:300 clamp(2.35rem,4vw,4.5rem)/1.04 var(--font-serif);letter-spacing:-.025em;color:#f0f0ed}.nfx-v3-section-head>div:last-child{padding-bottom:.35rem}.nfx-v3-section-head p{max-width:500px;margin-bottom:1.5rem;font-size:.9rem;font-weight:300;line-height:1.85;color:rgba(153,169,190,.72)}

.nfx-authority-strip{position:relative;z-index:2;padding:0 clamp(1.25rem,3.4vw,4rem);background:#03070c;border-block:1px solid rgba(213,178,105,.13)}.nfx-authority-strip__inner{max-width:1600px;margin:auto;display:grid;grid-template-columns:repeat(4,1fr)}.nfx-authority-item{position:relative;min-height:132px;display:grid;grid-template-columns:auto 1fr;grid-template-rows:auto auto;align-content:center;column-gap:1.15rem;padding:1.5rem clamp(1rem,2vw,2.25rem);border-right:1px solid rgba(255,255,255,.055);overflow:hidden}.nfx-authority-item:first-child{border-left:1px solid rgba(255,255,255,.055)}.nfx-authority-item:after{content:"";position:absolute;inset:auto 0 0;height:1px;background:linear-gradient(90deg,transparent,#c9a65e,transparent);transform:scaleX(0);transition:transform .45s var(--ease)}.nfx-authority-item:hover:after{transform:scaleX(1)}.nfx-authority-value{grid-row:1/3;align-self:center;font:300 clamp(1.5rem,2.2vw,2.2rem) var(--font-serif);color:rgba(213,178,105,.48)}.nfx-authority-label{align-self:end;font:500 .63rem var(--font-label);letter-spacing:.15em;text-transform:uppercase;color:rgba(235,237,237,.88)}.nfx-authority-item small{align-self:start;margin-top:.25rem;font:400 .48rem var(--font-label);letter-spacing:.08em;text-transform:uppercase;color:rgba(139,157,179,.42)}

.nfx-thesis{position:relative;padding:clamp(100px,12vw,190px) clamp(1.25rem,5vw,6rem);overflow:hidden;background:radial-gradient(circle at 85% 50%,rgba(25,54,72,.14),transparent 32%),#05090f}.nfx-thesis:before{content:"";position:absolute;left:38%;top:0;bottom:0;width:1px;background:linear-gradient(transparent,rgba(213,178,105,.11),transparent)}.nfx-thesis__index{position:absolute;left:clamp(1.25rem,3vw,3.5rem);top:50%;display:flex;align-items:center;gap:.65rem;transform:translateY(-50%) rotate(-90deg);font:500 .43rem var(--font-label);letter-spacing:.19em;color:rgba(139,157,179,.3)}.nfx-thesis__index i{width:46px;height:1px;background:rgba(213,178,105,.18)}.nfx-thesis__inner{max-width:1400px;margin:auto;display:grid;grid-template-columns:minmax(220px,.65fr) minmax(0,1.6fr);gap:clamp(3rem,9vw,10rem)}.nfx-thesis__intro p{margin-top:2rem;font:300 1.05rem/1.6 var(--font-serif);letter-spacing:.03em;color:rgba(150,168,190,.52)}.nfx-thesis__statement h2{font:300 clamp(2.7rem,5.2vw,6rem)/1.02 var(--font-serif);letter-spacing:-.035em;color:#eeefed}.nfx-thesis__statement h2 em{color:#d6b56c}.nfx-thesis__copy{max-width:790px;display:grid;grid-template-columns:1fr 1fr;gap:clamp(1.5rem,4vw,4rem);margin-top:clamp(2.5rem,5vw,4.5rem);padding-top:2rem;border-top:1px solid rgba(213,178,105,.13)}.nfx-thesis__copy p{font-size:.92rem;font-weight:300;line-height:1.9;color:rgba(155,172,193,.72)}

.nfx-products-preview{position:relative;padding:clamp(100px,11vw,170px) clamp(1.25rem,3.4vw,4rem);overflow:hidden;background:radial-gradient(circle at 20% 55%,rgba(22,51,69,.2),transparent 28%),linear-gradient(180deg,#03070c,#07101a 52%,#03070c)}.nfx-products-preview:before{content:"";position:absolute;inset:0;pointer-events:none;opacity:.16;background-image:linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);background-size:70px 70px}.nfx-products-preview__inner{position:relative;max-width:1400px;margin:auto}
.nfx-bento{display:grid;grid-template-columns:repeat(4,1fr);grid-auto-rows:minmax(260px,auto);gap:12px}.nfx-bento-card{position:relative;min-width:0;display:flex;flex-direction:column;justify-content:flex-end;overflow:hidden;padding:clamp(1.5rem,2.5vw,2.4rem);border:1px solid rgba(213,178,105,.14);background:linear-gradient(145deg,rgba(15,30,44,.88),rgba(5,11,19,.96));box-shadow:inset 0 1px rgba(255,255,255,.03),0 20px 55px rgba(0,0,0,.18);color:inherit;isolation:isolate;transition:transform .4s var(--ease),border-color .4s ease,box-shadow .4s ease}.nfx-bento-card:before{content:"";position:absolute;inset:0;z-index:-1;background:radial-gradient(circle at 90% 0,rgba(213,178,105,.1),transparent 35%);opacity:.25;transition:opacity .4s ease}.nfx-bento-card:after{content:"";position:absolute;left:0;right:0;bottom:0;height:2px;background:linear-gradient(90deg,transparent,#d2ae63,transparent);transform:scaleX(0);transition:transform .45s var(--ease)}.nfx-bento-card:hover{z-index:2;color:inherit;border-color:rgba(213,178,105,.38);transform:translateY(-5px);box-shadow:inset 0 1px rgba(255,255,255,.05),0 28px 70px rgba(0,0,0,.34),0 0 35px rgba(177,133,55,.04)}.nfx-bento-card:hover:before{opacity:.75}.nfx-bento-card:hover:after{transform:scaleX(1)}.nfx-bento-card--large{grid-column:span 2;grid-row:span 2;min-height:560px}.nfx-bento-card--tall{grid-row:span 2;min-height:560px}.nfx-bento-card--wide{grid-column:span 2}.nfx-bento-card__number{position:absolute;top:1.35rem;left:1.5rem;font:500 .43rem var(--font-label);letter-spacing:.16em;color:rgba(151,170,191,.4)}.nfx-bento-card__content{position:relative;z-index:2;max-width:580px}.nfx-bento-card__icon{display:grid;place-items:center;width:38px;height:38px;margin-bottom:1.35rem;border:1px solid rgba(213,178,105,.28);background:rgba(213,178,105,.04);font:400 .68rem var(--font-label);color:#d4b46d;transition:background .35s ease,color .35s ease}.nfx-bento-card:hover .nfx-bento-card__icon{background:#d3b36a;color:#080b0f}.nfx-bento-card__title{font:400 clamp(1.45rem,2.1vw,2.2rem)/1.1 var(--font-serif);color:#f0f0ed}.nfx-bento-card__text{max-width:520px;margin-top:.9rem;font-size:.82rem;font-weight:300;line-height:1.75;color:rgba(151,169,191,.67)}.nfx-bento-card__arrow{position:absolute;right:1.4rem;top:1.2rem;font-size:1rem;color:rgba(213,178,105,.4);transition:transform .3s var(--ease),color .3s ease}.nfx-bento-card:hover .nfx-bento-card__arrow{color:#e0c17a;transform:translate(3px,-3px)}
.nfx-bento-card__visual{position:absolute;inset:12% 6% 36% 22%;opacity:.62;pointer-events:none}.nfx-bento-card__visual--architecture i{position:absolute;border:1px solid rgba(213,178,105,.12);transform:rotate(45deg)}.nfx-bento-card__visual--architecture i:nth-child(1){inset:8% 16%}.nfx-bento-card__visual--architecture i:nth-child(2){inset:18% 26%;border-color:rgba(213,178,105,.22)}.nfx-bento-card__visual--architecture i:nth-child(3){inset:29% 37%;background:rgba(213,178,105,.025)}.nfx-bento-card__visual--architecture i:nth-child(4){left:50%;top:-12%;bottom:-12%;width:1px;border:0;background:linear-gradient(transparent,rgba(213,178,105,.2),transparent);transform:none}.nfx-bento-card__visual--architecture span{position:absolute;left:50%;top:50%;width:8px;height:8px;border-radius:50%;background:#d8b76e;box-shadow:0 0 22px rgba(216,183,110,.8);transform:translate(-50%,-50%)}.nfx-bento-card__visual--strategy{inset:14% 8% 40%;display:flex;align-items:flex-end;gap:8px}.nfx-bento-card__visual--strategy:before{content:"";position:absolute;inset:0;background:repeating-linear-gradient(0deg,rgba(151,170,191,.07) 0 1px,transparent 1px 28px)}.nfx-bento-card__visual--strategy span{position:relative;z-index:1;flex:1;border-top:1px solid rgba(213,178,105,.45);background:linear-gradient(rgba(213,178,105,.18),transparent)}.nfx-bento-card__visual--strategy span:nth-child(1){height:28%}.nfx-bento-card__visual--strategy span:nth-child(2){height:52%}.nfx-bento-card__visual--strategy span:nth-child(3){height:44%}.nfx-bento-card__visual--strategy span:nth-child(4){height:78%}.nfx-bento-card__seal{position:absolute;right:9%;top:50%;width:120px;aspect-ratio:1;display:grid;place-items:center;border:1px solid rgba(213,178,105,.13);border-radius:50%;transform:translateY(-50%)}.nfx-bento-card__seal:before,.nfx-bento-card__seal:after{content:"";position:absolute;border:1px solid rgba(213,178,105,.08);border-radius:50%}.nfx-bento-card__seal:before{inset:10px}.nfx-bento-card__seal:after{inset:30px}.nfx-bento-card__seal span{font:500 .7rem var(--font-label);letter-spacing:.18em;color:#d0ad62}.nfx-bento-card__seal i{position:absolute;bottom:13px;font:400 .36rem var(--font-label);letter-spacing:.13em;text-transform:uppercase;color:rgba(151,170,191,.42)}

.nfx-risk-system{position:relative;padding:clamp(100px,11vw,170px) clamp(1.25rem,3.4vw,4rem);overflow:hidden;background:#05090f}.nfx-risk-system:before{content:"";position:absolute;width:720px;aspect-ratio:1;left:-360px;top:50%;border:1px solid rgba(213,178,105,.07);border-radius:50%;transform:translateY(-50%);box-shadow:0 0 0 100px rgba(213,178,105,.008),0 0 0 200px rgba(213,178,105,.005)}.nfx-risk-system__inner{position:relative;max-width:1400px;margin:auto;display:grid;grid-template-columns:minmax(300px,.78fr) minmax(560px,1.22fr);gap:clamp(4rem,8vw,9rem);align-items:center}.nfx-risk-system__copy h2{margin-top:1.4rem;font:300 clamp(2.55rem,4.5vw,4.8rem)/1.02 var(--font-serif);letter-spacing:-.03em;color:#f0f0ed}.nfx-risk-system__copy h2 em{color:#d5b36b}.nfx-risk-system__copy>p{max-width:520px;margin-top:2rem;font-size:.92rem;font-weight:300;line-height:1.9;color:rgba(154,171,192,.7)}.nfx-risk-system__status{display:flex;gap:2rem;margin-top:2.5rem;padding-top:1.35rem;border-top:1px solid rgba(213,178,105,.12);font:500 .48rem var(--font-label);letter-spacing:.13em;text-transform:uppercase;color:rgba(145,163,184,.5)}.nfx-risk-system__status span:first-child{display:flex;align-items:center;gap:.5rem;color:rgba(137,179,158,.72)}.nfx-risk-system__status i{width:5px;height:5px;border-radius:50%;background:#82ad99;box-shadow:0 0 9px rgba(130,173,153,.7)}
.nfx-risk-console{border:1px solid rgba(151,176,198,.14);background:linear-gradient(145deg,rgba(14,29,43,.86),rgba(5,11,19,.96));box-shadow:inset 0 1px rgba(255,255,255,.03),0 30px 80px rgba(0,0,0,.28)}.nfx-risk-console__top,.nfx-risk-console__foot{display:flex;align-items:center;justify-content:space-between;padding:1rem 1.25rem;font:500 .43rem var(--font-label);letter-spacing:.13em;text-transform:uppercase;color:rgba(142,161,182,.44)}.nfx-risk-console__top{border-bottom:1px solid rgba(255,255,255,.06)}.nfx-risk-console__top strong{font-weight:500;color:rgba(213,178,105,.72)}.nfx-risk-console__foot{border-top:1px solid rgba(255,255,255,.06)}.nfx-risk-row{min-height:92px;display:grid;grid-template-columns:34px minmax(180px,1fr) minmax(100px,.75fr) 70px;gap:1rem;align-items:center;padding:1rem 1.25rem;border-bottom:1px solid rgba(255,255,255,.055);transition:background .3s ease}.nfx-risk-row:last-child{border-bottom:0}.nfx-risk-row:hover{background:rgba(213,178,105,.035)}.nfx-risk-row__index{font:400 .5rem var(--font-label);color:rgba(213,178,105,.5)}.nfx-risk-row strong,.nfx-risk-row small{display:block}.nfx-risk-row strong{font:500 .67rem var(--font-label);letter-spacing:.08em;text-transform:uppercase;color:rgba(235,237,236,.88)}.nfx-risk-row small{margin-top:.28rem;font-size:.67rem;font-weight:300;line-height:1.45;color:rgba(144,163,185,.52)}.nfx-risk-row__meter{height:3px;background:rgba(255,255,255,.05)}.nfx-risk-row__meter i{display:block;width:var(--level);height:100%;background:linear-gradient(90deg,rgba(213,178,105,.25),#d1ad62);box-shadow:0 0 10px rgba(209,173,98,.18)}.nfx-risk-row em{font:500 .4rem var(--font-label);letter-spacing:.12em;color:rgba(137,179,158,.64)}

.nfx-private-experience{position:relative;min-height:760px;display:grid;place-items:center;overflow:hidden;padding:clamp(110px,14vw,220px) 1.25rem;background:radial-gradient(circle at 50% 48%,rgba(24,49,66,.24),transparent 28%),linear-gradient(135deg,#03070c,#08131f 48%,#03070c);text-align:center}.nfx-private-experience:before{content:"";position:absolute;inset:0;opacity:.16;background-image:linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);background-size:86px 86px}.nfx-private-experience__geometry{position:absolute;width:min(720px,72vw);aspect-ratio:1;border:1px solid rgba(213,178,105,.09);border-radius:50%}.nfx-private-experience__geometry:before,.nfx-private-experience__geometry:after,.nfx-private-experience__geometry span{content:"";position:absolute;border:1px solid rgba(213,178,105,.065);border-radius:50%}.nfx-private-experience__geometry:before{inset:12%}.nfx-private-experience__geometry:after{inset:29%}.nfx-private-experience__geometry span:nth-child(1){inset:50% -15%;border-radius:0;border-width:1px 0 0}.nfx-private-experience__geometry span:nth-child(2){inset:-15% 50%;border-radius:0;border-width:0 0 0 1px}.nfx-private-experience__geometry span:nth-child(3){width:10px;height:10px;left:50%;top:0;background:#d6b46b;box-shadow:0 0 24px rgba(214,180,107,.7);transform:translate(-50%,-50%)}.nfx-private-experience__inner{position:relative;z-index:1;max-width:880px}.nfx-private-experience h2{margin-top:1.5rem;font:300 clamp(3rem,6vw,6.5rem)/.95 var(--font-serif);letter-spacing:-.04em;color:#f2f2ef}.nfx-private-experience h2 em{color:#d8b870}.nfx-private-experience p{max-width:620px;margin:2rem auto 2.8rem;font-size:.95rem;font-weight:300;line-height:1.85;color:rgba(157,174,194,.68)}.nfx-private-experience .nfx-premium-cta{min-width:260px}.nfx-private-experience__meta{position:absolute;left:clamp(1.25rem,3.4vw,4rem);right:clamp(1.25rem,3.4vw,4rem);bottom:1.7rem;display:flex;align-items:center;gap:1rem;font:500 .42rem var(--font-label);letter-spacing:.17em;text-transform:uppercase;color:rgba(142,160,181,.3)}.nfx-private-experience__meta i{height:1px;flex:1;background:rgba(213,178,105,.1)}

.nfx-editorial{position:relative;padding:clamp(100px,11vw,170px) clamp(1.25rem,3.4vw,4rem);overflow:hidden;background:#05090f}.nfx-editorial__inner{max-width:1400px;margin:auto}.nfx-editorial-feature{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(360px,.9fr);min-height:520px;border:1px solid rgba(213,178,105,.14);background:linear-gradient(135deg,rgba(14,29,43,.7),rgba(5,11,19,.94));box-shadow:0 25px 70px rgba(0,0,0,.22)}.nfx-editorial-feature__media{position:relative;display:block;min-height:440px;overflow:hidden;background:#07111b}.nfx-editorial-feature__media:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,transparent 55%,rgba(5,11,19,.55)),linear-gradient(0deg,rgba(4,9,15,.28),transparent)}.nfx-editorial-feature__media img{width:100%;height:100%;object-fit:cover;filter:saturate(.55) contrast(1.08);transition:transform 1s var(--ease),filter .6s ease}.nfx-editorial-feature:hover .nfx-editorial-feature__media img{transform:scale(1.035);filter:saturate(.75) contrast(1.08)}.nfx-editorial-feature__fallback{position:absolute;inset:0;display:grid;place-items:center;background:radial-gradient(circle at 50%,rgba(213,178,105,.08),transparent 28%),repeating-linear-gradient(0deg,rgba(151,170,191,.035) 0 1px,transparent 1px 38px),#07111b}.nfx-editorial-feature__fallback i{position:absolute;border:1px solid rgba(213,178,105,.1);border-radius:50%}.nfx-editorial-feature__fallback i:nth-child(1){width:48%;aspect-ratio:1}.nfx-editorial-feature__fallback i:nth-child(2){width:30%;aspect-ratio:1}.nfx-editorial-feature__fallback i:nth-child(3){width:1px;height:70%;border:0;background:linear-gradient(transparent,rgba(213,178,105,.17),transparent)}.nfx-editorial-feature__fallback strong{font:400 1rem var(--font-label);letter-spacing:.3em;color:#d6b46c}.nfx-editorial-feature__content{position:relative;display:flex;flex-direction:column;justify-content:center;padding:clamp(2rem,5vw,5.5rem)}.nfx-editorial-feature__meta{display:flex;justify-content:space-between;gap:1rem;margin-bottom:2rem;font:500 .47rem var(--font-label);letter-spacing:.15em;text-transform:uppercase;color:rgba(145,163,184,.45)}.nfx-editorial-feature__meta span:first-child{color:rgba(213,178,105,.7)}.nfx-editorial-feature h3{font:300 clamp(2rem,3.5vw,3.8rem)/1.06 var(--font-serif);letter-spacing:-.025em;color:#efefec}.nfx-editorial-feature h3 a{color:inherit}.nfx-editorial-feature h3 a:hover{color:#d7b66e}.nfx-editorial-feature__excerpt{margin:1.6rem 0 2rem;font-size:.9rem;font-weight:300;line-height:1.85;color:rgba(154,171,192,.68)}.nfx-editorial-feature__excerpt p{margin:0}.nfx-editorial-feature__code{position:absolute;right:1.2rem;bottom:1rem;font:500 .38rem var(--font-label);letter-spacing:.14em;color:rgba(143,161,182,.24)}

.nfx-final-cta{position:relative;min-height:720px;display:grid;place-items:center;overflow:hidden;padding:clamp(100px,13vw,200px) 1.25rem 100px;background:radial-gradient(ellipse at 50% 100%,rgba(186,141,58,.14),transparent 42%),linear-gradient(180deg,#03070c,#020408);text-align:center}.nfx-final-cta:before{content:"";position:absolute;width:min(1000px,90vw);aspect-ratio:2/1;bottom:-35%;border:1px solid rgba(213,178,105,.12);border-radius:50%;box-shadow:0 0 0 80px rgba(213,178,105,.012),0 0 0 160px rgba(213,178,105,.008)}.nfx-final-cta__lines{position:absolute;inset:0;display:flex;justify-content:space-around;opacity:.36}.nfx-final-cta__lines i{width:1px;background:linear-gradient(transparent,rgba(213,178,105,.09),transparent)}.nfx-final-cta__inner{position:relative;z-index:1;max-width:980px}.nfx-final-cta__mark{display:block;margin-bottom:1.7rem;font:300 clamp(3rem,6vw,5rem) var(--font-serif);letter-spacing:.14em;color:rgba(213,178,105,.12)}.nfx-final-cta h2{margin-top:1.5rem;font:300 clamp(3rem,6vw,6.4rem)/.95 var(--font-serif);letter-spacing:-.04em;color:#f3f2ef}.nfx-final-cta h2 em{color:#d7b66d}.nfx-final-cta p{margin:2rem auto 2.5rem;font-size:.9rem;font-weight:300;color:rgba(154,171,192,.6)}.nfx-final-cta .nfx-premium-cta{min-width:270px}.nfx-final-cta__foot{position:absolute;left:clamp(1.25rem,3.4vw,4rem);right:clamp(1.25rem,3.4vw,4rem);bottom:1.7rem;display:flex;justify-content:space-between;padding-top:1rem;border-top:1px solid rgba(213,178,105,.1);font:500 .42rem var(--font-label);letter-spacing:.16em;text-transform:uppercase;color:rgba(143,161,182,.28)}

@media(max-width:1100px){.nfx-bento{grid-template-columns:repeat(2,1fr)}.nfx-bento-card--large{grid-column:span 2}.nfx-bento-card--tall{grid-row:span 1;min-height:300px}.nfx-risk-system__inner{grid-template-columns:1fr;gap:4rem}.nfx-risk-system__copy{max-width:760px}.nfx-editorial-feature{grid-template-columns:1fr}.nfx-editorial-feature__media{min-height:420px;max-height:520px}.nfx-editorial-feature__media:after{background:linear-gradient(0deg,rgba(5,11,19,.6),transparent 45%)}}
@media(max-width:780px){.nfx-v3-section-head{grid-template-columns:1fr;gap:2rem}.nfx-authority-strip__inner{grid-template-columns:repeat(2,1fr)}.nfx-authority-item:nth-child(2){border-right:0}.nfx-authority-item:nth-child(-n+2){border-bottom:1px solid rgba(255,255,255,.055)}.nfx-thesis:before,.nfx-thesis__index{display:none}.nfx-thesis__inner{grid-template-columns:1fr;gap:3rem}.nfx-thesis__intro p{display:none}.nfx-thesis__copy{grid-template-columns:1fr;gap:1.2rem}.nfx-bento-card--large{min-height:500px}.nfx-risk-row{grid-template-columns:28px 1fr 60px}.nfx-risk-row__meter{display:none}.nfx-private-experience{min-height:680px}.nfx-editorial-feature__media{min-height:340px}}
@media(max-width:560px){.nfx-v3-section-head h2{font-size:clamp(2.25rem,11vw,3.2rem)}.nfx-authority-strip{padding:0}.nfx-authority-item{min-height:112px;padding:1.2rem .85rem;column-gap:.7rem}.nfx-authority-value{font-size:1.25rem}.nfx-authority-label{font-size:.5rem;letter-spacing:.1em}.nfx-authority-item small{font-size:.39rem}.nfx-thesis,.nfx-products-preview,.nfx-risk-system,.nfx-editorial{padding-inline:1rem}.nfx-thesis__statement h2{font-size:clamp(2.6rem,13vw,4rem)}.nfx-bento{grid-template-columns:1fr}.nfx-bento-card,.nfx-bento-card--large,.nfx-bento-card--wide,.nfx-bento-card--tall{grid-column:auto;grid-row:auto;min-height:300px}.nfx-bento-card--large{min-height:430px}.nfx-bento-card__visual{inset:12% 2% 42% 16%}.nfx-bento-card__seal{width:88px;right:6%;top:38%}.nfx-risk-system__copy h2{font-size:clamp(2.55rem,13vw,3.8rem)}.nfx-risk-console__top,.nfx-risk-console__foot{font-size:.36rem}.nfx-risk-row{min-height:88px;grid-template-columns:22px 1fr 52px;gap:.6rem;padding:.9rem}.nfx-risk-row strong{font-size:.58rem}.nfx-risk-row small{font-size:.6rem}.nfx-risk-row em{font-size:.34rem}.nfx-private-experience__geometry{width:110vw}.nfx-private-experience h2,.nfx-final-cta h2{font-size:clamp(2.8rem,14vw,4.4rem)}.nfx-private-experience__meta{display:none}.nfx-editorial-feature__media{min-height:270px}.nfx-editorial-feature__content{padding:2rem 1.4rem 3rem}.nfx-editorial-feature__meta{flex-direction:column;gap:.4rem}.nfx-editorial-feature h3{font-size:clamp(2rem,10vw,2.8rem)}.nfx-final-cta{min-height:650px}.nfx-final-cta__foot{font-size:.35rem;letter-spacing:.08em}}

/* Editable Products and private pages */
.nfx-page-banner__lead{max-width:680px;margin-top:1.5rem}.nfx-products-catalog{padding:var(--section-py) var(--section-px);background:#05090f}.nfx-products-catalog__inner{max-width:1400px;margin:auto}.nfx-products-catalog__grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1px;background:rgba(213,178,105,.12);border:1px solid rgba(213,178,105,.12)}.nfx-product-entry{position:relative;min-height:420px;padding:clamp(2rem,4vw,4rem);background:linear-gradient(145deg,#0d1b29,#050b13);overflow:hidden}.nfx-product-entry__index{position:absolute;right:1.5rem;top:1.2rem;font:400 .5rem var(--font-label);color:rgba(213,178,105,.45)}.nfx-product-entry__label{display:block;font:500 .5rem var(--font-label);letter-spacing:.16em;text-transform:uppercase;color:#cbaa65}.nfx-product-entry h2{margin:1.2rem 0;font:300 clamp(2rem,3vw,3.2rem)/1.05 var(--font-serif);color:#f0f0ed}.nfx-product-entry__copy{max-width:560px;margin-bottom:2rem;font-size:.88rem;font-weight:300;line-height:1.85;color:rgba(154,171,192,.7)}.nfx-final-cta--compact{min-height:540px}.nfx-access-page{min-height:100vh;padding:130px var(--section-px) 80px;background:radial-gradient(circle at 20% 30%,rgba(32,64,82,.25),transparent 30%),#03070c}.nfx-access-panel{max-width:1120px;margin:auto;display:grid;grid-template-columns:1fr 1fr;border:1px solid rgba(213,178,105,.16);background:linear-gradient(145deg,rgba(14,29,43,.9),rgba(5,11,19,.98));box-shadow:0 35px 90px rgba(0,0,0,.4)}.nfx-access-panel__brand,.nfx-access-panel__form{padding:clamp(2rem,5vw,5rem)}.nfx-access-panel__brand{border-right:1px solid rgba(255,255,255,.06)}.nfx-access-panel__brand .nfx-logo__monogram{margin-bottom:3rem}.nfx-access-panel h1,.nfx-access-panel h2{margin:1.5rem 0;font:300 clamp(2.1rem,4vw,4rem)/1 var(--font-serif);color:#f1f1ed}.nfx-access-panel__brand p{font-size:.9rem;line-height:1.85;color:rgba(154,171,192,.7)}.nfx-access-panel__form h2{font-size:2rem}.nfx-access-panel label,.nfx-request-form label{display:block;margin-bottom:1rem;font:500 .52rem var(--font-label);letter-spacing:.12em;text-transform:uppercase;color:rgba(181,193,207,.68)}.nfx-access-panel input[type=text],.nfx-access-panel input[type=password],.nfx-access-panel input[type=email],.nfx-request-form select,.nfx-request-form textarea{width:100%;margin-top:.45rem;padding:.9rem;border:1px solid rgba(213,178,105,.16);background:rgba(0,0,0,.2);color:#fff;font:400 .85rem var(--font-sans)}.nfx-access-panel input[type=submit]{padding:.9rem 1.5rem;border:0;background:#d6b46c;color:#080b10;font:600 .6rem var(--font-label);letter-spacing:.14em;text-transform:uppercase}.nfx-access-panel__links{display:flex;justify-content:space-between;margin-top:1.5rem;font-size:.72rem}.nfx-request-form__check{display:flex!important;gap:.6rem;align-items:center}.nfx-request-form__check input{width:auto!important;margin:0!important}.nfx-request-form small{display:block;margin-top:1rem;color:rgba(154,171,192,.5)}.nfx-dashboard{min-height:100vh;display:grid;grid-template-columns:260px 1fr;padding-top:92px;background:#05090f}.nfx-dashboard__sidebar{display:flex;flex-direction:column;padding:2rem;border-right:1px solid rgba(213,178,105,.13);background:#03070c}.nfx-dashboard__sidebar nav{display:flex;flex-direction:column;gap:.3rem;margin:3rem 0 auto}.nfx-dashboard__sidebar nav a{padding:.8rem;font:500 .55rem var(--font-label);letter-spacing:.12em;text-transform:uppercase;color:rgba(154,171,192,.6)}.nfx-dashboard__sidebar nav a.is-active{background:rgba(213,178,105,.08);color:#d6b46c}.nfx-dashboard__main{padding:clamp(2rem,6vw,6rem)}.nfx-dashboard__main h1{margin:1.5rem 0 3rem;font:300 clamp(3rem,6vw,6rem)/1 var(--font-serif);color:#f1f1ed}.nfx-dashboard__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:rgba(213,178,105,.12);border:1px solid rgba(213,178,105,.12)}.nfx-dashboard__grid article{padding:2rem;background:#08111b}.nfx-dashboard__grid span,.nfx-dashboard__grid strong{display:block}.nfx-dashboard__grid span{font:500 .48rem var(--font-label);letter-spacing:.12em;text-transform:uppercase;color:rgba(154,171,192,.5)}.nfx-dashboard__grid strong{margin-top:.8rem;font:300 1.5rem var(--font-serif);color:#d6b46c}.nfx-dashboard__notice{margin-top:2rem;padding:1.5rem;border:1px solid rgba(213,178,105,.12);color:rgba(154,171,192,.65);font-size:.82rem}@media(max-width:800px){.nfx-products-catalog__grid,.nfx-access-panel{grid-template-columns:1fr}.nfx-access-panel__brand{border-right:0;border-bottom:1px solid rgba(255,255,255,.06)}.nfx-dashboard{grid-template-columns:1fr;padding-top:70px}.nfx-dashboard__sidebar{display:none}.nfx-dashboard__grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:520px){.nfx-products-catalog__grid,.nfx-dashboard__grid{grid-template-columns:1fr}.nfx-access-page{padding-inline:1rem}.nfx-access-panel__brand,.nfx-access-panel__form{padding:2rem 1.3rem}}

/* NFX V5 — Production visual elevation */
:root{--nfx-gold-1:#9d7131;--nfx-gold-2:#d8b86f;--nfx-gold-3:#f2d995;--nfx-ink:#02050a;--nfx-panel:#08121d;--nfx-cyan:#6e9daf}
body{background:var(--nfx-ink);background-image:radial-gradient(circle at 50% -20%,rgba(34,69,89,.12),transparent 32%)}
::selection{background:rgba(216,184,111,.9);color:#05080c}
.nfx-header-v3{isolation:isolate}.nfx-header-v3:after{content:"";position:absolute;inset:auto 0 0;height:1px;background:linear-gradient(90deg,transparent,rgba(216,184,111,.25),transparent);opacity:0;transition:opacity .3s}.nfx-header-v3.is-scrolled:after{opacity:1}.nfx-header-v3.is-scrolled .nfx-logo__monogram{box-shadow:inset 0 0 26px rgba(216,184,111,.08),0 8px 28px rgba(0,0,0,.35)}
.nfx-nav__list .current-menu-item>a{color:#e2c57e}.nfx-nav__list .current-menu-item>a:after{width:100%;box-shadow:0 0 8px rgba(216,184,111,.45)}

/* 4K command center */
.nfx-hero-v3{min-height:max(820px,100svh);background:radial-gradient(ellipse 58% 72% at 78% 44%,rgba(20,59,78,.48),transparent 65%),radial-gradient(circle at 18% 35%,rgba(181,135,54,.085),transparent 25%),linear-gradient(116deg,#02050a 0%,#07111d 48%,#02050a 100%)}
.nfx-hero-v3:before{background-size:72px 72px;opacity:.36}.nfx-hero-v3__grid{max-width:1720px}.nfx-hero-v3__content{position:relative}.nfx-hero-v3__content:before{content:"";position:absolute;left:-4rem;top:-3rem;width:1px;height:130%;background:linear-gradient(transparent,rgba(216,184,111,.18),transparent)}
.nfx-hero-v3__title{filter:drop-shadow(0 20px 50px rgba(0,0,0,.32))}.nfx-hero-v3__title em{background-size:180% 100%;animation:nfxMetal 9s ease-in-out infinite}@keyframes nfxMetal{0%,100%{background-position:0 50%}50%{background-position:100% 50%}}
.nfx-hero-v3__visual{transform:rotateX(var(--hero-rx,0deg)) rotateY(var(--hero-ry,0deg));transform-style:preserve-3d;transition:transform .2s ease-out;will-change:transform}.nfx-market-panel{min-height:590px;border-color:rgba(151,181,204,.19);background:linear-gradient(145deg,rgba(15,34,49,.96),rgba(3,8,15,.98) 68%);box-shadow:inset 0 1px rgba(255,255,255,.05),inset 0 0 120px rgba(58,111,134,.06),0 45px 120px rgba(0,0,0,.58),0 0 0 1px rgba(216,184,111,.025)}
.nfx-market-panel:after{content:"";position:absolute;inset:0;pointer-events:none;background:linear-gradient(105deg,transparent 30%,rgba(255,255,255,.018) 48%,transparent 62%);transform:translateX(-120%);animation:nfxPanelGlint 11s ease-in-out infinite}@keyframes nfxPanelGlint{0%,72%{transform:translateX(-120%)}100%{transform:translateX(120%)}}
.nfx-market-panel__top{min-height:76px}.nfx-market-panel__metrics{background:rgba(0,0,0,.12)}.nfx-market-metric{position:relative}.nfx-market-metric:after{content:"";position:absolute;left:1.25rem;right:1.25rem;bottom:0;height:1px;background:linear-gradient(90deg,rgba(216,184,111,.3),transparent);transform:scaleX(.35);transform-origin:left;transition:transform .5s var(--ease)}.nfx-market-metric:hover:after{transform:scaleX(1)}.nfx-trading-stage{height:350px}.nfx-float-panel{border-color:rgba(216,184,111,.23);box-shadow:0 26px 65px rgba(0,0,0,.46),inset 0 1px rgba(255,255,255,.035)}
.nfx-premium-cta{position:relative;overflow:hidden}.nfx-premium-cta:before{content:"";position:absolute;top:-60%;bottom:-60%;width:36px;background:rgba(255,255,255,.24);filter:blur(8px);transform:translateX(-90px) rotate(18deg);transition:transform .7s var(--ease)}.nfx-premium-cta:hover:before{transform:translateX(310px) rotate(18deg)}

/* Home depth and bento */
.nfx-authority-strip{box-shadow:0 24px 70px rgba(0,0,0,.32)}.nfx-authority-item{background:linear-gradient(180deg,rgba(255,255,255,.012),transparent);transition:background .35s ease}.nfx-authority-item:hover{background:linear-gradient(180deg,rgba(216,184,111,.045),transparent)}
.nfx-thesis{background:radial-gradient(circle at 82% 45%,rgba(31,69,88,.18),transparent 31%),linear-gradient(180deg,#040910,#02060b)}.nfx-thesis__statement h2 em,.nfx-risk-system__copy h2 em,.nfx-private-experience h2 em,.nfx-final-cta h2 em{background:linear-gradient(110deg,#a77b38,#efd38e 52%,#b98d47);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}
.nfx-products-preview{background:radial-gradient(circle at 18% 42%,rgba(28,66,86,.24),transparent 27%),radial-gradient(circle at 90% 72%,rgba(174,128,48,.05),transparent 24%),linear-gradient(180deg,#02060b,#07111c 50%,#02060b)}
.nfx-bento{gap:14px;perspective:1500px}.nfx-bento-card{border-color:rgba(216,184,111,.17);background:linear-gradient(145deg,rgba(17,37,53,.94),rgba(4,10,18,.985));transform:perspective(1100px) rotateX(var(--nfx-rotate-x,0deg)) rotateY(var(--nfx-rotate-y,0deg)) translateY(0);will-change:transform}.nfx-bento-card:hover{transform:perspective(1100px) rotateX(var(--nfx-rotate-x,0deg)) rotateY(var(--nfx-rotate-y,0deg)) translateY(-6px)}
.nfx-reactive-surface:before{background:radial-gradient(360px circle at var(--nfx-pointer-x,50%) var(--nfx-pointer-y,50%),rgba(222,190,116,.105),transparent 48%),radial-gradient(circle at 90% 0,rgba(213,178,105,.08),transparent 35%)}
.nfx-bento-card__number{padding:.35rem .5rem;border:1px solid rgba(255,255,255,.05);background:rgba(0,0,0,.13)}.nfx-bento-card--large .nfx-bento-card__title{font-size:clamp(2.1rem,3.3vw,3.6rem)}.nfx-bento-card--large .nfx-bento-card__text{font-size:.9rem}.nfx-bento-card__visual--architecture{animation:nfxDiagramFloat 8s ease-in-out infinite}@keyframes nfxDiagramFloat{0%,100%{transform:translateY(0) rotate(0)}50%{transform:translateY(-8px) rotate(.6deg)}}
.nfx-risk-system{background:radial-gradient(circle at 78% 45%,rgba(26,61,80,.16),transparent 32%),#03080e}.nfx-risk-console{position:relative;overflow:hidden;border-color:rgba(151,181,203,.18);box-shadow:0 40px 100px rgba(0,0,0,.38),inset 0 1px rgba(255,255,255,.04)}.nfx-risk-console:before{content:"";position:absolute;inset:0;pointer-events:none;background:linear-gradient(90deg,transparent,rgba(216,184,111,.025),transparent);transform:translateX(-100%);animation:nfxConsoleScan 9s linear infinite}@keyframes nfxConsoleScan{to{transform:translateX(100%)}}.nfx-risk-row__meter i{animation:nfxMeterIn 1.2s var(--ease) both;transform-origin:left}@keyframes nfxMeterIn{from{transform:scaleX(0)}to{transform:scaleX(1)}}
.nfx-editorial-feature{border-color:rgba(216,184,111,.17);box-shadow:0 40px 100px rgba(0,0,0,.34)}

/* Products landing */
.nfx-products-page-hero{min-height:620px;display:flex;align-items:center;background:radial-gradient(ellipse 55% 80% at 80% 45%,rgba(28,67,88,.38),transparent 64%),linear-gradient(118deg,#02050a,#081522 55%,#02050a)}.nfx-products-page-hero:before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(151,176,198,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(151,176,198,.035) 1px,transparent 1px);background-size:76px 76px;mask-image:linear-gradient(90deg,transparent,#000 40%,#000)}.nfx-products-page-hero .nfx-page-banner__inner{position:relative;z-index:1;width:100%;max-width:1400px}.nfx-products-page-hero .nfx-page-banner__title{max-width:900px;margin-top:1.5rem;font-size:clamp(4rem,9vw,9rem);line-height:.85;letter-spacing:-.05em}.nfx-products-catalog{background:radial-gradient(circle at 50% 10%,rgba(28,62,81,.12),transparent 30%),#03080e}.nfx-products-catalog__grid{gap:14px;background:none;border:0}.nfx-product-entry{isolation:isolate;border:1px solid rgba(216,184,111,.15);background:linear-gradient(145deg,rgba(16,35,50,.94),rgba(4,10,18,.98));box-shadow:0 24px 70px rgba(0,0,0,.22);transition:transform .4s var(--ease),border-color .4s ease}.nfx-product-entry:before{content:"";position:absolute;inset:0;z-index:-1;background:radial-gradient(400px circle at var(--nfx-pointer-x,50%) var(--nfx-pointer-y,50%),rgba(216,184,111,.09),transparent 50%)}.nfx-product-entry:after{content:"";position:absolute;right:-15%;bottom:-38%;width:55%;aspect-ratio:1;border:1px solid rgba(216,184,111,.07);border-radius:50%;box-shadow:0 0 0 35px rgba(216,184,111,.009),0 0 0 70px rgba(216,184,111,.006)}.nfx-product-entry:hover{z-index:1;border-color:rgba(216,184,111,.35);transform:translateY(-6px)}.nfx-product-entry .nfx-bento-card__icon{position:relative;z-index:1;width:48px;height:48px}.nfx-product-entry__copy{position:relative;z-index:1}.nfx-product-entry__copy p{margin-bottom:.8rem}

/* Access screens */
.nfx-access-page{position:relative;overflow:hidden;background:radial-gradient(circle at 12% 35%,rgba(31,71,91,.32),transparent 30%),radial-gradient(circle at 88% 72%,rgba(180,132,50,.06),transparent 24%),linear-gradient(125deg,#02050a,#07121d 54%,#02050a)}.nfx-access-page:before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(151,176,198,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(151,176,198,.03) 1px,transparent 1px);background-size:74px 74px;mask-image:linear-gradient(90deg,#000,transparent 75%)}.nfx-access-panel{position:relative;z-index:1;max-width:1240px;min-height:660px;border-color:rgba(216,184,111,.2);background:linear-gradient(145deg,rgba(15,34,49,.94),rgba(3,8,15,.99));box-shadow:0 50px 140px rgba(0,0,0,.58),inset 0 1px rgba(255,255,255,.04);transform:perspective(1400px) rotateX(var(--nfx-rotate-x,0deg)) rotateY(var(--nfx-rotate-y,0deg));transition:transform .2s ease-out}.nfx-access-panel:before{content:"";position:absolute;inset:0;pointer-events:none;background:radial-gradient(420px circle at var(--nfx-pointer-x,50%) var(--nfx-pointer-y,50%),rgba(216,184,111,.06),transparent 55%)}.nfx-access-panel__brand{position:relative;overflow:hidden}.nfx-access-panel__brand:after{content:"NFX / PRIVATE CLIENT ENVIRONMENT";position:absolute;left:clamp(2rem,5vw,5rem);bottom:2rem;font:500 .4rem var(--font-label);letter-spacing:.18em;color:rgba(151,170,191,.25)}.nfx-access-panel__form{position:relative;background:rgba(0,0,0,.12)}.nfx-access-panel input[type=text],.nfx-access-panel input[type=password],.nfx-access-panel input[type=email],.nfx-request-form select,.nfx-request-form textarea{min-height:52px;border-color:rgba(151,176,198,.14);background:rgba(1,5,9,.54);outline:none;transition:border-color .25s ease,box-shadow .25s ease,background .25s ease}.nfx-request-form textarea{min-height:110px;resize:vertical}.nfx-access-panel input:focus,.nfx-request-form select:focus,.nfx-request-form textarea:focus{border-color:rgba(216,184,111,.6);background:rgba(5,12,19,.8);box-shadow:0 0 0 3px rgba(216,184,111,.055),0 12px 30px rgba(0,0,0,.18)}.nfx-access-panel input[type=submit],.nfx-request-form button{min-height:52px;transition:transform .25s var(--ease),box-shadow .25s ease}.nfx-access-panel input[type=submit]:hover,.nfx-request-form button:hover{transform:translateY(-2px);box-shadow:0 15px 36px rgba(179,135,53,.2)}

/* Dashboard command interface */
.nfx-dashboard{background:radial-gradient(circle at 72% 20%,rgba(31,69,89,.18),transparent 26%),#03080e}.nfx-dashboard__sidebar{position:relative;background:linear-gradient(180deg,#02050a,#06101a);box-shadow:18px 0 60px rgba(0,0,0,.22)}.nfx-dashboard__sidebar:after{content:"SECURE ENVIRONMENT";position:absolute;left:2rem;bottom:5.5rem;font:500 .38rem var(--font-label);letter-spacing:.18em;color:rgba(151,170,191,.22)}.nfx-dashboard__sidebar nav a{position:relative;border:1px solid transparent;transition:background .25s ease,border-color .25s ease,color .25s ease}.nfx-dashboard__sidebar nav a:before{content:"";position:absolute;left:-1px;top:50%;width:2px;height:0;background:#d8b86f;transform:translateY(-50%);transition:height .3s var(--ease)}.nfx-dashboard__sidebar nav a:hover,.nfx-dashboard__sidebar nav a.is-active{border-color:rgba(216,184,111,.09);background:linear-gradient(90deg,rgba(216,184,111,.08),transparent);color:#dfc27a}.nfx-dashboard__sidebar nav a:hover:before,.nfx-dashboard__sidebar nav a.is-active:before{height:60%}.nfx-dashboard__main{position:relative}.nfx-dashboard__main:before{content:"CLIENT OVERVIEW / 01";position:absolute;right:clamp(2rem,6vw,6rem);top:2.5rem;font:500 .42rem var(--font-label);letter-spacing:.16em;color:rgba(151,170,191,.28)}.nfx-dashboard__grid{gap:12px;background:none;border:0}.nfx-dashboard__grid article{position:relative;overflow:hidden;min-height:150px;border:1px solid rgba(216,184,111,.13);background:linear-gradient(145deg,rgba(15,33,48,.94),rgba(5,11,19,.98));box-shadow:0 18px 55px rgba(0,0,0,.18);transition:transform .35s var(--ease),border-color .35s ease}.nfx-dashboard__grid article:before{content:"";position:absolute;inset:0;background:radial-gradient(260px circle at var(--nfx-pointer-x,50%) var(--nfx-pointer-y,50%),rgba(216,184,111,.09),transparent 55%)}.nfx-dashboard__grid article:after{content:"";position:absolute;right:1.4rem;bottom:1.3rem;width:34px;height:18px;border-top:1px solid rgba(216,184,111,.22);border-right:1px solid rgba(216,184,111,.12);transform:skewX(-28deg)}.nfx-dashboard__grid article:hover{border-color:rgba(216,184,111,.32);transform:translateY(-4px)}.nfx-dashboard__grid strong{font-size:clamp(1.5rem,2.2vw,2.2rem)}.nfx-dashboard__notice{border-color:rgba(151,176,198,.14);background:rgba(8,20,31,.62);box-shadow:inset 3px 0 #b89450}

/* Responsive production pass */
@media(max-width:1320px){.nfx-hero-v3{min-height:auto}.nfx-market-panel{min-height:550px}.nfx-access-panel{min-height:610px}.nfx-dashboard__grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:1080px){.nfx-hero-v3__content:before{display:none}.nfx-hero-v3__visual{transform:none}.nfx-products-page-hero{min-height:540px}.nfx-products-page-hero .nfx-page-banner__title{font-size:clamp(4rem,13vw,7rem)}.nfx-access-panel{transform:none}}
@media(max-width:800px){.nfx-products-catalog__grid{gap:10px}.nfx-product-entry{min-height:360px}.nfx-access-page{padding-top:100px}.nfx-access-panel{min-height:0}.nfx-access-panel__brand:after{display:none}.nfx-dashboard__main:before{display:none}}
@media(max-width:640px){body{line-height:1.65}.nfx-hero-v3{min-height:auto}.nfx-hero-v3__title{font-size:clamp(3rem,14.5vw,4.5rem)}.nfx-hero-v3__lead{font-size:1.1rem}.nfx-market-panel{min-height:430px}.nfx-trading-stage{height:255px}.nfx-bento{gap:10px}.nfx-bento-card{padding:1.5rem}.nfx-bento-card--large{min-height:410px}.nfx-products-page-hero{min-height:470px;padding-top:110px}.nfx-products-page-hero .nfx-page-banner__title{font-size:clamp(3.5rem,17vw,5.6rem)}.nfx-product-entry{min-height:330px;padding:1.8rem 1.4rem}.nfx-access-panel__brand,.nfx-access-panel__form{padding:2rem 1.35rem}.nfx-access-panel__brand .nfx-logo__monogram{margin-bottom:2rem}.nfx-dashboard__main{padding:2rem 1rem}.nfx-dashboard__main h1{font-size:clamp(3rem,16vw,4.5rem)}.nfx-dashboard__grid{grid-template-columns:1fr}.nfx-dashboard__grid article{min-height:125px}.nfx-final-cta{min-height:600px}}
@media(prefers-reduced-motion:reduce){.nfx-hero-v3__title em,.nfx-market-panel:after,.nfx-bento-card__visual--architecture,.nfx-risk-console:before,.nfx-risk-row__meter i{animation:none!important}.nfx-reactive-surface,.nfx-hero-v3__visual,.nfx-access-panel{transform:none!important}}
