/* ═══════════════════════════════════════════════════════════════
   NorthFounders — Global Design System
   Material Design 3 principles · Dark Navy + Gold
   Font: Inter
═══════════════════════════════════════════════════════════════ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Brand palette */
  --nf-navy:          #0A1628;
  --nf-navy-800:      #0F1F3D;
  --nf-navy-700:      #152845;
  --nf-navy-600:      #1E3A5F;
  --nf-navy-500:      #2A4E78;
  --nf-gold:          #C9A84C;
  --nf-gold-light:    #E2C47A;
  --nf-gold-dark:     #A8882E;

  /* Text */
  --nf-on-navy:       #F5F8FF;
  --nf-on-navy-muted: rgba(245,248,255,0.65);
  --nf-on-navy-faint: rgba(245,248,255,0.35);

  /* Surfaces */
  --nf-surface-1:     #0F1F3D;
  --nf-surface-2:     #152845;
  --nf-surface-3:     #1E3A5F;

  /* Borders */
  --nf-border:        rgba(245,248,255,0.09);
  --nf-border-md:     rgba(245,248,255,0.18);

  /* Shadows */
  --nf-shadow-sm:     0 2px 8px rgba(0,0,0,0.30);
  --nf-shadow-md:     0 4px 24px rgba(0,0,0,0.40);
  --nf-shadow-lg:     0 8px 40px rgba(0,0,0,0.50);

  /* Radius — MD3 shape scale */
  --nf-radius-xs:     4px;
  --nf-radius-sm:     8px;
  --nf-radius-md:     12px;
  --nf-radius-lg:     16px;
  --nf-radius-xl:     28px;

  /* Layout */
  --nf-nav-h:         88px;
  --nf-section-py:    96px;
  --nf-container-w:   1200px;

  /* Typography */
  --nf-font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Base ───────────────────────────────────────────────────── */
.nf-body {
  font-family: var(--nf-font);
  background: var(--nf-navy);
  color: var(--nf-on-navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 0 !important;   /* cancel any Bootstrap body padding */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nf-body *,
.nf-body *::before,
.nf-body *::after { box-sizing: border-box; }

/* Custom scrollbar */
.nf-body::-webkit-scrollbar        { width: 8px; }
.nf-body::-webkit-scrollbar-track  { background: var(--nf-navy); }
.nf-body::-webkit-scrollbar-thumb  { background: var(--nf-navy-500); border-radius: 4px; }
.nf-body::-webkit-scrollbar-thumb:hover { background: var(--nf-gold); }

/* ── Navigation (override Bootstrap navbar) ──────────────────── */
.nf-body .navbar {
  background: rgba(10,22,40,0.92) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--nf-border) !important;
  border-radius: 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.45);
  min-height: var(--nf-nav-h);
}

.nf-body .navbar .container {
  height: var(--nf-nav-h);
  display: flex;
  align-items: center;
  max-width: none;
  width: 100%;
  padding: 0 40px;
}

/* Desktop: flexbox layout for the entire navbar-collapse */
@media (min-width: 768px) {
  .nf-body .navbar-collapse.collapse {
    display: flex !important;
    align-items: center;
    flex: 1;
    padding: 0;
    overflow: visible;
    height: auto !important;
    min-width: 0;
  }
  .nf-body .navbar-nav {
    display: flex;
    align-items: center;
    float: none !important;
    margin: 0;
    flex-shrink: 0;
  }
  .nf-body .navbar-nav.navbar-right {
    margin-left: 0;
  }
  .nf-body .nf-nav-search-form {
    display: flex;
    align-items: center;
    margin: 0 8px !important;
    padding: 0 !important;
    float: none !important;
    border: none !important;
    box-shadow: none !important;
  }
  .nf-body .nf-nav-right-group {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 10px;
    flex-shrink: 0;
  }
}

/* (responsive nav overrides moved to end of Figma CSS section) */

.nf-body .navbar-brand {
  font-family: var(--nf-font);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.025em;
  color: var(--nf-gold) !important;
  padding: 0 16px;
  height: var(--nf-nav-h);
  line-height: var(--nf-nav-h);
  display: flex;
  align-items: center;
  gap: 48px;
  text-decoration: none;
  float: left;
}
.nf-body .navbar-brand:hover,
.nf-body .navbar-brand:focus { color: var(--nf-gold-light) !important; text-decoration: none; }

.nf-body .navbar-brand img { height: 30px; width: auto; }

/* Hamburger icon bars */
.nf-body .navbar-toggle            { border-color: var(--nf-border-md); margin-top: 14px; }
.nf-body .navbar-toggle .icon-bar  { background-color: var(--nf-on-navy-muted); }
.nf-body .navbar-toggle:hover,
.nf-body .navbar-toggle:focus      { background: rgba(245,248,255,0.06); }

/* Admin "Site Pages" dropdown */
.nf-body .nf-nav-dropdown > .dropdown-toggle {
  gap: 4px;
}
.nf-body .nf-nav-dropdown-arrow {
  transition: transform 0.2s;
}
.nf-body .nf-nav-dropdown.open > .dropdown-toggle .nf-nav-dropdown-arrow {
  transform: rotate(180deg);
}
.nf-body .nf-nav-dropdown-menu {
  background: rgba(10,22,40,0.96) !important;
  backdrop-filter: blur(14px);
  border: 1px solid var(--nf-border) !important;
  border-radius: 12px !important;
  padding: 8px 0 !important;
  margin-top: 0 !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.50) !important;
  min-width: 220px;
}
.nf-body .nf-nav-dropdown-menu > li > a {
  font-family: var(--nf-font) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: var(--nf-on-navy-muted) !important;
  padding: 10px 20px !important;
  height: auto !important;
  line-height: 1.4 !important;
  display: flex !important;
  align-items: center;
  border-bottom: none !important;
  transition: background 0.15s, color 0.15s !important;
}
.nf-body .nf-nav-dropdown-menu > li > a:hover,
.nf-body .nf-nav-dropdown-menu > li > a:focus {
  background: rgba(213,180,112,0.12) !important;
  color: var(--nf-gold) !important;
}

/* Nav links — use px (Bootstrap 3 sets html font-size:10px, so rem ≠ 16px) */
.nf-body .navbar-nav > li > a {
  font-family: var(--nf-font);
  font-size: 16px;
  font-weight: 500;
  color: var(--nf-on-navy-muted) !important;
  padding: 0 12px !important;
  height: var(--nf-nav-h);
  line-height: var(--nf-nav-h);
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nf-body .navbar-nav > li > a:hover,
.nf-body .navbar-nav > li > a:focus,
.nf-body .navbar-nav > li.active > a {
  color: var(--nf-gold) !important;
  background: transparent !important;
  border-bottom-color: var(--nf-gold);
}

/* Login partial links */
.nf-body .navbar-right a,
.nf-body .navbar-right p  {
  font-family: var(--nf-font);
  font-size: 16px;
  font-weight: 500;
  color: var(--nf-on-navy-muted) !important;
}
.nf-body .navbar-right a:hover { color: var(--nf-gold) !important; }

/* Logout button inside nav */
.nf-body #logoutForm button,
.nf-body .navbar-right .btn {
  font-family: var(--nf-font);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--nf-radius-xl);
  transition: all 0.2s;
}

/* Truncate long user greeting in nav */
.nf-body #logoutForm .navbar-nav > li > a[title="Manage"] {
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}

/* ── Layout helpers ──────────────────────────────────────────── */
.nf-container {
  max-width: var(--nf-container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.nf-main { flex: 1; padding-top: var(--nf-nav-h); }

/* Content pages (non-full-width) */
.nf-content-container {
  padding: 48px 0 64px;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.nf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--nf-radius-xl);
  font-family: var(--nf-font);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  outline: none;
  line-height: 1.4;
}
.nf-btn-primary {
  background: var(--nf-gold);
  color: var(--nf-navy) !important;
}
.nf-btn-primary:hover {
  background: var(--nf-gold-light);
  color: var(--nf-navy) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.35);
}
.nf-btn-outlined {
  background: transparent;
  color: var(--nf-on-navy) !important;
  border: 1.5px solid var(--nf-border-md);
}
.nf-btn-outlined:hover {
  border-color: var(--nf-gold);
  color: var(--nf-gold) !important;
  background: rgba(201,168,76,0.07);
  transform: translateY(-2px);
}

/* ── Section utilities ───────────────────────────────────────── */
.nf-section          { padding: var(--nf-section-py) 0; }
.nf-section-sm       { padding: 64px 0; }

.nf-section-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nf-gold);
  margin-bottom: 12px;
}
.nf-section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--nf-on-navy);
  margin: 0 0 16px;
}
.nf-section-subtitle {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--nf-on-navy-muted);
}

/* Gold gradient text */
.nf-gold-text {
  background: linear-gradient(130deg, var(--nf-gold) 0%, var(--nf-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Hero ────────────────────────────────────────────────────── */
.nf-hero {
  position: relative;
  min-height: calc(100vh - var(--nf-nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--nf-navy);
}
/* Radial gradient backdrop */
.nf-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 65% at 75% 35%, rgba(30,58,95,0.75) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 15% 80%, rgba(201,168,76,0.06) 0%, transparent 65%);
  pointer-events: none;
}
/* Subtle dot-grid */
.nf-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(245,248,255,0.055) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.nf-hero-inner   { position: relative; z-index: 1; width: 100%; padding: 80px 0; }
.nf-hero-content { max-width: 660px; }

.nf-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--nf-gold);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.nf-hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.038em;
  color: var(--nf-on-navy);
  margin: 0 0 24px;
}
.nf-hero-desc {
  font-size: 1.125rem;
  line-height: 1.72;
  color: var(--nf-on-navy-muted);
  margin-bottom: 40px;
  max-width: 520px;
}
.nf-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* Stat row */
.nf-hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--nf-border);
  flex-wrap: wrap;
}
.nf-hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--nf-gold);
  line-height: 1;
  margin-bottom: 4px;
}
.nf-hero-stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--nf-on-navy-muted);
}

/* ── Features ────────────────────────────────────────────────── */
.nf-features {
  background: var(--nf-surface-1);
  border-top: 1px solid var(--nf-border);
  border-bottom: 1px solid var(--nf-border);
}
.nf-features-header  { text-align: center; margin-bottom: 64px; }
.nf-features-header .nf-section-subtitle { margin: 0 auto; max-width: 520px; }

.nf-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.nf-feature-card {
  background: var(--nf-surface-2);
  border: 1px solid var(--nf-border);
  border-radius: var(--nf-radius-lg);
  padding: 36px 32px;
  transition: border-color 0.2s, transform 0.25s, box-shadow 0.25s;
}
.nf-feature-card:hover {
  border-color: rgba(201,168,76,0.38);
  transform: translateY(-4px);
  box-shadow: var(--nf-shadow-md);
}

.nf-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--nf-radius-md);
  background: rgba(201,168,76,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
  color: var(--nf-gold);
}
.nf-feature-card h3 {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--nf-on-navy);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.nf-feature-card p {
  font-size: 0.9375rem;
  line-height: 1.68;
  color: var(--nf-on-navy-muted);
  margin: 0;
}

/* ── Founders ────────────────────────────────────────────────── */
.nf-founders           { background: var(--nf-navy); }
.nf-founders-header    { text-align: center; margin-bottom: 64px; }
.nf-founders-header .nf-section-subtitle { margin: 0 auto; max-width: 500px; }

.nf-founders-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.nf-founder-card {
  background: var(--nf-surface-1);
  border: 1px solid var(--nf-border);
  border-radius: var(--nf-radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.25s, box-shadow 0.25s;
}
.nf-founder-card:hover {
  border-color: rgba(201,168,76,0.38);
  transform: translateY(-4px);
  box-shadow: var(--nf-shadow-md);
}
.nf-founder-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.nf-founder-photo-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--nf-surface-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--nf-gold);
  letter-spacing: -0.02em;
}
.nf-founder-info     { padding: 20px 22px 24px; }
.nf-founder-name     { font-size: 1rem; font-weight: 700; color: var(--nf-on-navy); margin: 0 0 4px; }
.nf-founder-role     { font-size: 0.8125rem; color: var(--nf-gold); font-weight: 600; margin: 0 0 10px; }
.nf-founder-bio {
  font-size: 0.875rem;
  line-height: 1.62;
  color: var(--nf-on-navy-muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── CTA Section ─────────────────────────────────────────────── */
.nf-cta-section {
  background: linear-gradient(145deg, var(--nf-navy-700) 0%, var(--nf-navy-800) 100%);
  border-top: 1px solid var(--nf-border);
  border-bottom: 1px solid var(--nf-border);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.nf-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 90% at 50% 50%, rgba(201,168,76,0.075) 0%, transparent 70%);
  pointer-events: none;
}
.nf-cta-inner { position: relative; z-index: 1; }
.nf-cta-section .nf-section-subtitle { margin: 0 auto 36px; max-width: 500px; }

/* ── Footer — matches Figma blue design (#0c66a2) ──────────── */
.nf-footer {
  background: #0c66a2;
  padding: 64px 0;
}
.nf-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.nf-footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}
.nf-footer-tagline {
  font-size: 14px;
  color: #fff;
  line-height: 1.7;
  max-width: 300px;
}
.nf-footer-col-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d5b470;
  margin-bottom: 16px;
}
.nf-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nf-footer-links a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.nf-footer-links a:hover { color: #d1d5db; }
.nf-footer-connect-text {
  font-size: 14px;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 16px;
}
.nf-footer-subscribe-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #d5b470 !important;
  text-decoration: none !important;
  transition: color 0.2s;
}
.nf-footer-subscribe-link:hover { color: #e8cc8a !important; }
.nf-footer-divider {
  border-top: 1px solid #d5b470;
  padding-top: 32px;
  margin-bottom: 32px;
}
.nf-footer-disclaimer { margin-bottom: 32px; }
.nf-footer-disclaimer p {
  font-size: 12px;
  color: #fff;
  line-height: 1.7;
  margin: 0;
}
.nf-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.nf-footer-copy { font-size: 14px; color: #fff; }
.nf-footer-legal { display: flex; gap: 24px; }
.nf-footer-legal a {
  font-size: 14px;
  color: #fff !important;
  text-decoration: none !important;
  transition: color 0.2s;
}
.nf-footer-legal a:hover { color: #d1d5db !important; }

/* ── Bootstrap override for dark theme (forms / auth pages) ─── */
.nf-body h1, .nf-body h2, .nf-body h3, .nf-body h4 { font-family: var(--nf-font); color: var(--nf-on-navy); }
.nf-body p, .nf-body address, .nf-body li  { color: var(--nf-on-navy-muted); }
.nf-body a { color: var(--nf-gold); }
.nf-body a:hover { color: var(--nf-gold-light); }
.nf-body hr { border-color: var(--nf-border); }

.nf-body .form-control {
  background-color: var(--nf-surface-2);
  border: 1px solid var(--nf-border-md);
  color: var(--nf-on-navy);
  border-radius: var(--nf-radius-sm);
  font-family: var(--nf-font);
  box-shadow: none;
}
.nf-body .form-control:focus {
  background-color: var(--nf-surface-3);
  border-color: var(--nf-gold);
  color: var(--nf-on-navy);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.14);
  outline: none;
}
.nf-body .form-control::placeholder { color: var(--nf-on-navy-faint); }

.nf-body label { color: var(--nf-on-navy-muted); font-weight: 500; font-family: var(--nf-font); }

.nf-body .btn-primary,
.nf-body .btn-primary:active {
  background-color: var(--nf-gold);
  border-color: var(--nf-gold-dark);
  color: var(--nf-navy);
  font-family: var(--nf-font);
  font-weight: 600;
  border-radius: var(--nf-radius-xl);
}
.nf-body .btn-primary:hover,
.nf-body .btn-primary:focus {
  background-color: var(--nf-gold-light);
  border-color: var(--nf-gold);
  color: var(--nf-navy);
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.nf-body .btn-default {
  background-color: var(--nf-surface-2);
  border-color: var(--nf-border-md);
  color: var(--nf-on-navy);
  font-family: var(--nf-font);
  border-radius: var(--nf-radius-xl);
}
.nf-body .btn-default:hover {
  background-color: var(--nf-surface-3);
  border-color: var(--nf-border-md);
  color: var(--nf-on-navy);
}
.nf-body .text-danger  { color: #ff7474 !important; }
.nf-body .alert-danger {
  background-color: rgba(255,80,80,0.12);
  border-color: rgba(255,80,80,0.3);
  color: #ffaaaa;
  border-radius: var(--nf-radius-md);
}
.nf-body .checkbox label { font-weight: 400; }

/* Bootstrap panel → dark surface */
.nf-body .panel {
  background: var(--nf-surface-1);
  border-color: var(--nf-border-md);
  border-radius: var(--nf-radius-lg);
}
.nf-body .panel-heading {
  background: var(--nf-surface-2);
  border-color: var(--nf-border-md);
  color: var(--nf-on-navy);
  border-radius: var(--nf-radius-lg) var(--nf-radius-lg) 0 0;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nf-founders-grid { grid-template-columns: repeat(2, 1fr); }
  .nf-footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 991px) {
  .nf-body .navbar-collapse {
    background: var(--nf-navy-800);
    border-top: 1px solid var(--nf-border);
    padding: 8px 0 16px;
  }
  .nf-body .navbar-nav > li > a {
    height: auto;
    line-height: 1.5;
    padding: 10px 20px !important;
    border-bottom: none;
  }
  .nf-features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  :root { --nf-section-py: 64px; }

  .nf-hero-inner   { padding: 56px 0; }
  .nf-hero-stats   { gap: 24px; }

  .nf-features-grid  { grid-template-columns: 1fr; }
  .nf-founders-grid  { grid-template-columns: repeat(2, 1fr); }

  .nf-footer-grid    { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nf-footer-legal   { gap: 16px; }
}

@media (max-width: 480px) {
  .nf-founders-grid  { grid-template-columns: 1fr; }
  .nf-footer-grid    { grid-template-columns: 1fr; gap: 24px; }
  .nf-footer-bottom  { flex-direction: column; text-align: center; }
  .nf-hero-actions   { flex-direction: column; align-items: flex-start; }
}

/* ── Hero logo badge ─────────────────────────────────────────── */
.nf-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.nf-hero-logo-wrap {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.92;
}
.nf-hero-logo {
  width: 260px;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(201,168,76,0.22));
}

@media (max-width: 900px) {
  .nf-hero-inner      { flex-direction: column; }
  .nf-hero-logo-wrap  { order: -1; }
  .nf-hero-logo       { width: 160px; }
}

/* ── Pitch CTA band (homepage) ───────────────────────────────── */
.nf-pitch-cta-band {
  background: linear-gradient(135deg, var(--nf-navy-700) 0%, var(--nf-navy-600) 100%);
  border-top: 1px solid var(--nf-border);
  border-bottom: 1px solid var(--nf-border);
  padding: 56px 0;
}
.nf-pitch-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.nf-pitch-cta-text { flex: 1 1 360px; }
.nf-pitch-cta-title {
  font-size: clamp(1.4rem, 3vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--nf-on-navy);
  margin: 0 0 10px;
}
.nf-pitch-cta-body {
  font-size: 1rem;
  line-height: 1.68;
  color: var(--nf-on-navy-muted);
  margin: 0;
}
.nf-pitch-cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.nf-pitch-price-tag {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--nf-gold);
  line-height: 1;
}

/* ── Pitch Review page — hero (Figma blue-cyan palette) ─────── */
.nf-pr-hero {
  background: linear-gradient(135deg, #0c66a2 0%, #2d4e66 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.nf-pr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 20% 40%, rgba(6,182,212,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.nf-pr-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 64px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.nf-pr-hero-content { flex: 1 1 340px; }
.nf-pr-hero-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d5b470;
  margin: 0 0 16px;
}
.nf-pr-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 20px;
}
.nf-gold-text { color: #d5b470; }
.nf-pr-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin: 0 0 28px;
  max-width: 460px;
}
.nf-pr-price-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(213,180,112,0.12);
  border: 1px solid rgba(213,180,112,0.35);
  border-radius: 12px;
  padding: 16px 24px;
}
.nf-pr-price-amount {
  font-size: 40px;
  font-weight: 800;
  color: #d5b470;
  line-height: 1;
}
.nf-pr-price-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* Benefits list */
.nf-pr-hero-benefits {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.nf-pr-benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 20px;
  transition: background 0.2s;
}
.nf-pr-benefit:hover { background: rgba(255,255,255,0.10); }
.nf-pr-benefit-icon {
  flex-shrink: 0;
  font-size: 24px;
  color: #d5b470;
  margin-top: 2px;
}
.nf-pr-benefit strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.nf-pr-benefit p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.70);
}

/* ═══════════════════════════════════════════════════════════════
   Homepage v2 — Blue-Cyan + Gold Figma Design System
   Blue-cyan gradients · Gold #d5b470 → #e8ddc6 accents
═══════════════════════════════════════════════════════════════ */

/* ── Figma colour tokens ────────────────────────────────────── */
:root {
  --nf-fig-blue:       #0e478c;
  --nf-fig-gold:       #d5b470;
  --nf-fig-gold-light: #e8ddc6;
  --nf-fig-gold-border:#d6b470;
  --nf-fig-cream:      #ece2cd;
  --nf-fig-slate-cyan: linear-gradient(135deg, #475569 0%, #0e7490 50%, #475569 100%);
  --nf-fig-ecosystem:  #2d4e66;
  --nf-fig-dot-gray:   #94a3b8;
}

/* ── Transparent navbar on hero pages ───────────────────────── */
.nf-hero-page .nf-main { padding-top: 0; }

.nf-hero-page .navbar {
  background: transparent !important;
  border-bottom: 1px solid rgba(255,255,255,0.10) !important;
  box-shadow: none !important;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.nf-hero-page .navbar.nf-nav-scrolled {
  background: rgba(14,71,140,0.95) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(255,255,255,0.10) !important;
  box-shadow: 0 2px 24px rgba(0,0,0,0.35) !important;
}

/* brand white on hero page */
.nf-hero-page .navbar-brand              { color: #FFFFFF !important; }
.nf-hero-page .navbar-brand:hover        { color: var(--nf-fig-gold-light) !important; }
.nf-hero-page .navbar-nav > li > a       { color: rgba(255,255,255,0.90) !important; }
.nf-hero-page .navbar-nav > li > a:hover,
.nf-hero-page .navbar-nav > li.active > a {
  color: #FFFFFF !important;
  border-bottom-color: var(--nf-fig-gold) !important;
}

/* ── Navbar extras: search + newsletter ─────────────────────── */
.nf-nav-search-form {
  padding: 0;
  margin: 0 8px 0 0;
  position: relative;
}
.nf-nav-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #d6b470;
  pointer-events: none;
  z-index: 1;
}
.nf-body .navbar .nf-nav-search-input {
  background: rgba(255,255,255,0.10) !important;
  border: 1px solid var(--nf-fig-gold-border) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 8px 16px 8px 38px !important;
  font-size: 14px !important;
  font-family: var(--nf-font);
  width: 200px;
  height: 40px;
  outline: none;
  transition: border-color 0.2s, width 0.2s, background 0.2s;
  display: block;
  backdrop-filter: blur(4px);
}
.nf-nav-search-input::placeholder { color: rgba(255,255,255,0.60) !important; }
.nf-nav-search-input:focus {
  border-color: var(--nf-fig-gold-light) !important;
  background: rgba(255,255,255,0.14) !important;
  width: 240px;
  box-shadow: 0 0 0 3px rgba(213,180,112,0.20);
}

/* Navbar CTA buttons — specificity must beat .nf-body .navbar-nav > li > a */
.nf-body .navbar-nav > li.nf-nav-pitch-li { margin-right: 10px; }
.nf-body .navbar-nav > li.nf-nav-pitch-li > a,
.nf-body .navbar-nav > li.nf-nav-newsletter-li > a {
  padding: 10px 24px !important;
  height: auto !important;
  line-height: normal !important;
  margin-top: 0 !important;
  background: linear-gradient(to right, var(--nf-fig-gold), var(--nf-fig-gold-light)) !important;
  color: var(--nf-fig-blue) !important;
  border-radius: 8px !important;
  border: 1px solid white !important;
  border-bottom: 1px solid white !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  transition: box-shadow 0.2s, transform 0.2s !important;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.nf-body .navbar-nav > li.nf-nav-pitch-li > a:hover,
.nf-body .navbar-nav > li.nf-nav-newsletter-li > a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(213,180,112,0.40) !important;
  color: var(--nf-fig-blue) !important;
  border-bottom: 1px solid white !important;
}

/* Collapsed mobile nav – show search/newsletter stacked */
@media (max-width: 767px) {
  .nf-body .navbar .nf-nav-search-input { width: 100% !important; border-radius: 6px !important; margin: 4px 0; }
  .nf-body .navbar-nav > li.nf-nav-pitch-li > a,
  .nf-body .navbar-nav > li.nf-nav-newsletter-li > a { margin-top: 4px !important; border-radius: 6px !important; display: flex !important; }
}

/* ── Gold gradient CTA button ────────────────────────────────── */
.nf-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(to right, var(--nf-fig-gold), var(--nf-fig-gold-light));
  color: var(--nf-fig-blue) !important;
  border-radius: 8px;
  font-family: var(--nf-font);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none !important;
  border: 1px solid white;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  line-height: 1.4;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.nf-btn-gold:hover {
  color: var(--nf-fig-blue) !important;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(213,180,112,0.40);
}

.nf-btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  color: #fff !important;
  border-radius: 8px;
  font-family: var(--nf-font);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none !important;
  border: 1px solid var(--nf-fig-gold-border);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  line-height: 1.4;
}
.nf-btn-glass:hover {
  background: rgba(255,255,255,0.20);
  color: #fff !important;
  transform: translateY(-2px) scale(1.03);
}

/* ── Hero v2 (photo background + blue-cyan overlay) ──────────── */
.nf-hero-v2 {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.nf-hero-v2-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
/* Blue-cyan gradient overlay matching Figma */
.nf-hero-v2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(37,99,235,0.60)  0%,
    rgba(14,116,144,0.50) 50%,
    rgba(30,64,175,0.60) 100%
  );
  z-index: 1;
}

/* Animated gradient blobs */
.nf-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 2;
}
.nf-hero-blob--1 {
  top: -100px; right: -100px;
  width: 800px; height: 800px;
  background: linear-gradient(135deg, rgba(103,232,249,0.30), rgba(96,165,250,0.30));
  animation: nf-blob1 8s ease-in-out infinite;
}
.nf-hero-blob--2 {
  bottom: -100px; left: -100px;
  width: 700px; height: 700px;
  background: linear-gradient(225deg, rgba(96,165,250,0.30), rgba(103,232,249,0.30));
  animation: nf-blob2 10s ease-in-out infinite;
}
.nf-hero-blob--3 {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  background: linear-gradient(135deg, rgba(56,189,248,0.20), rgba(59,130,246,0.20));
  animation: nf-blob3 12s ease-in-out infinite;
}
@keyframes nf-blob1 {
  0%, 100% { transform: scale(1);   opacity: 0.3; }
  50%      { transform: scale(1.3); opacity: 0.5; }
}
@keyframes nf-blob2 {
  0%, 100% { transform: scale(1.2); opacity: 0.4; }
  50%      { transform: scale(1);   opacity: 0.3; }
}
@keyframes nf-blob3 {
  0%, 100% { transform: translate(-50%,-50%) scale(1);   opacity: 0.2; }
  50%      { transform: translate(-50%,-50%) scale(1.4); opacity: 0.4; }
}

.nf-hero-v2-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 24px 0 48px;
}
.nf-hero-v2-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.nf-hero-v2-inner > * { max-width: 600px; }

.nf-hero-v2-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  margin-bottom: 16px;
  display: block;
}
.nf-hero-v2-title {
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0 0 24px;
}
.nf-hero-v2-byline-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.nf-hero-v2-byline-line {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.40);
  flex-shrink: 0;
}
.nf-hero-v2-byline {
  font-size: 14px;
  color: rgba(255,255,255,0.80);
  font-style: normal;
  letter-spacing: 0.01em;
  margin: 0;
}
.nf-hero-v2-body {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.90);
  margin-bottom: 32px;
}
.nf-hero-v2-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* Scroll indicator — absolute bottom center */
.nf-hero-v2-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  transition: color 0.2s;
}
.nf-hero-v2-scroll:hover { color: #fff; text-decoration: none; }
.nf-hero-v2-scroll-arrow {
  color: var(--nf-fig-gold-border);
}
.nf-hero-v2-scroll .material-symbols-rounded {
  animation: nf-bounce 2s ease-in-out infinite;
}
@keyframes nf-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(10px); }
}

/* ── Founder Stories Library section ─────────────────────────── */
.nf-stories-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #475569 0%, #0e7490 50%, #475569 100%);
}
.nf-stories-bg-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.20;
  background-size: cover;
  background-position: center;
  mix-blend-mode: overlay;
  background-image: url('https://images.unsplash.com/photo-1586809784406-0665c2d5d819?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&q=80&w=1920');
}
.nf-stories-container { position: relative; z-index: 1; }

.nf-stories-header { margin-bottom: 48px; }
.nf-stories-title {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}
.nf-stories-subtitle {
  font-size: 16px;
  color: #fff;
  margin: 0;
}

/* Filters */
.nf-stories-filters {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.nf-stories-search-wrap {
  position: relative;
}
.nf-stories-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--nf-fig-blue);
}
.nf-stories-search {
  padding: 10px 16px 10px 38px;
  border-radius: 8px;
  border: 1px solid white;
  background: linear-gradient(to right, var(--nf-fig-gold), var(--nf-fig-gold-light));
  color: var(--nf-fig-blue);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--nf-font);
  width: 256px;
  outline: none;
}
.nf-stories-search::placeholder {
  color: var(--nf-fig-blue);
  font-weight: 600;
}
.nf-stories-select-wrap {
  position: relative;
}
.nf-stories-select {
  appearance: none;
  padding: 10px 40px 10px 16px;
  border-radius: 8px;
  border: 1px solid white;
  background: linear-gradient(to right, var(--nf-fig-gold), var(--nf-fig-gold-light));
  color: var(--nf-fig-blue);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--nf-font);
  outline: none;
  cursor: pointer;
}
.nf-stories-select-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--nf-fig-blue);
  pointer-events: none;
}

/* Featured story card */
.nf-stories-featured {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.nf-stories-featured-img {
  overflow: hidden;
}
.nf-stories-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 300px;
}
.nf-stories-featured-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nf-stories-featured-label {
  font-size: 14px;
  font-weight: 600;
  color: #0891b2;
  margin-bottom: 12px;
}
.nf-stories-featured-name {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px;
}
.nf-stories-featured-company {
  font-size: 16px;
  color: #0891b2;
  margin: 0 0 16px;
}
.nf-stories-featured-desc {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.65;
  margin: 0 0 24px;
}
.nf-stories-featured-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.nf-stories-featured-link {
  color: var(--nf-fig-blue) !important;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.2s;
}
.nf-stories-featured-link:hover { opacity: 0.7; }

/* Story cards grid */
.nf-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.nf-story-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.25s;
  cursor: pointer;
}
.nf-story-card:hover {
  border-color: #22d3ee;
  transform: translateY(-4px);
}
.nf-story-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.nf-story-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.nf-story-card:hover .nf-story-card-img img { transform: scale(1.05); }
.nf-story-card-body { padding: 24px; }
.nf-story-card-name {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 4px;
}
.nf-story-card-company {
  font-size: 16px;
  color: #0891b2;
  margin: 0 0 12px;
}
.nf-story-card-desc {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0 0 16px;
}
.nf-story-card-meta {
  font-size: 12px;
  color: #6b7280;
}

.nf-stories-cta-wrap {
  text-align: center;
  margin-top: 48px;
}

/* ── Upcoming Events section — cream-to-white gradient ────────── */
.nf-events-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--nf-fig-cream), #ffffff);
}
/* Dot grid pattern */
.nf-events-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.50;
  background-image: radial-gradient(circle, var(--nf-fig-dot-gray) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.nf-events-section .nf-container { position: relative; z-index: 1; }

.nf-events-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.nf-events-title {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px;
}
.nf-events-subtitle {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.65;
  margin: 0;
}
.nf-events-viewall {
  font-size: 15px;
  font-weight: 600;
  color: var(--nf-fig-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.nf-events-viewall:hover { opacity: 0.7; text-decoration: none; color: var(--nf-fig-blue); }

.nf-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Event card — slate-cyan gradient with rounded-3xl */
.nf-event-card {
  background: linear-gradient(135deg, #475569 0%, #0e7490 50%, #475569 100%);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.nf-event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.nf-event-card-photo {
  position: relative;
  height: 256px;
  overflow: hidden;
  flex-shrink: 0;
}
.nf-event-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nf-event-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.nf-event-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin: 0 0 8px;
}
.nf-event-card-date {
  font-size: 14px;
  font-weight: 400;
  color: #67e8f9;
  margin-bottom: 16px;
}
.nf-event-card-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.90);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 24px;
}
.nf-event-card-cta {
  display: block;
  width: 100%;
  padding: 12px 24px;
  background: linear-gradient(to right, var(--nf-fig-gold), var(--nf-fig-gold-light));
  color: var(--nf-fig-blue) !important;
  text-align: center;
  border-radius: 8px;
  font-family: var(--nf-font);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none !important;
  border: 1px solid white;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nf-event-card-cta:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(213,180,112,0.35);
  color: var(--nf-fig-blue) !important;
}

/* ── Ecosystem / Partners section ────────────────────────────── */
.nf-ecosystem-section {
  background: var(--nf-fig-ecosystem);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.nf-ecosystem-header {
  text-align: center;
  margin-bottom: 48px;
}
.nf-ecosystem-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
}
.nf-ecosystem-subtitle {
  font-size: 16px;
  color: #fff;
  margin: 0;
}
.nf-ecosystem-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  align-items: center;
  justify-items: center;
}
.nf-ecosystem-line {
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 10px;
  width: 100%;
  pointer-events: none;
}
@media (min-width: 768px) {
  .nf-ecosystem-line { display: block; }
}
.nf-ecosystem-circle {
  position: relative;
  z-index: 1;
  width: 176px;
  height: 176px;
  background: #fff;
  border-radius: 50%;
  border: 10px solid var(--nf-fig-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.2s;
}
.nf-ecosystem-circle:hover {
  transform: scale(1.10);
}
.nf-ecosystem-circle p {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  text-align: center;
  line-height: 1.3;
  margin: 0;
}

/* ── "Join the North Founders Network" CTA section ──────────── */
.nf-cta-network-section {
  position: relative;
  background: linear-gradient(to bottom, #ece2cd, #ffffff);
  padding: 80px 0;
  overflow: hidden;
}
.nf-cta-network-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #94a3b8 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.5;
  pointer-events: none;
}
.nf-cta-network-inner {
  position: relative;
  z-index: 1;
  max-width: 672px;
  margin: 0 auto;
  text-align: center;
}
.nf-cta-network-title {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 16px;
  line-height: 1.2;
}
.nf-cta-network-subtitle {
  font-size: 16px;
  color: #4b5563;
  margin: 0 0 40px;
  line-height: 1.6;
}
.nf-cta-network-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.nf-cta-network-input {
  width: 100%;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-family: var(--nf-font);
  font-size: 16px;
  color: #111827;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nf-cta-network-input::placeholder { color: #6b7280; }
.nf-cta-network-input:focus {
  border-color: #06b6d4;
  box-shadow: 0 0 0 3px rgba(6,182,212,0.2);
}
.nf-cta-network-select-wrap {
  position: relative;
}
.nf-cta-network-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  cursor: pointer;
}
.nf-cta-network-select-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #6b7280;
  pointer-events: none;
}
.nf-cta-network-btn {
  width: 100%;
  padding: 16px 32px;
  background: #2d4e66;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--nf-font);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nf-cta-network-btn:hover {
  background: #1e3a4f;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(45,78,102,0.3);
}

/* ── Navbar responsive — must come AFTER base nav rules ─────── */
@media (min-width: 768px) and (max-width: 1399px) {
  .nf-body .navbar-nav > li > a { padding: 0 8px !important; font-size: 14px; }
  .nf-body .navbar .nf-nav-search-input { width: 180px !important; font-size: 13px !important; }
  .nf-body .navbar .nf-nav-search-input:focus { width: 210px !important; }
  .nf-body .nf-nav-pitch-li,
  .nf-body .nf-nav-newsletter-li { display: none !important; }
  .nf-body .nf-nav-right-group { gap: 8px; }
}

/* ── Homepage responsive ─────────────────────────────────────── */
@media (max-width: 991px) {
  .nf-events-grid     { grid-template-columns: repeat(2, 1fr); }
  .nf-stories-grid    { grid-template-columns: repeat(2, 1fr); }
  .nf-ecosystem-grid  { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .nf-ecosystem-line  { display: none !important; }
  .nf-cta-network-inner { max-width: 540px; }
}
@media (max-width: 767px) {
  .nf-events-grid          { grid-template-columns: 1fr; }
  .nf-stories-grid         { grid-template-columns: 1fr; }
  .nf-stories-featured     { grid-template-columns: 1fr; }
  .nf-ecosystem-grid       { grid-template-columns: repeat(2, 1fr); }
  .nf-ecosystem-circle     { width: 140px; height: 140px; border-width: 7px; padding: 16px; }
  .nf-ecosystem-circle p   { font-size: 13px; }
  .nf-events-header        { flex-direction: column; align-items: flex-start; }
  .nf-hero-v2-actions      { flex-direction: column; align-items: flex-start; }
  .nf-hero-v2-content      { padding: 0 16px; }
  .nf-cta-network-section  { padding: 56px 0; }
  .nf-cta-network-title    { font-size: 28px; }
  .nf-footer-grid          { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nf-footer-legal         { gap: 16px; }
}
@media (max-width: 480px) {
  .nf-ecosystem-grid       { grid-template-columns: 1fr; }
  .nf-stories-filters      { flex-direction: column; }
  .nf-cta-network-inner    { padding: 0 8px; }
  .nf-footer-grid          { grid-template-columns: 1fr; gap: 24px; }
  .nf-footer-bottom        { flex-direction: column; text-align: center; }
}

/* ── Homepage: override global dark-theme text for light sections ─ */
.nf-body .nf-stories-featured h3,
.nf-body .nf-stories-featured h4 { color: #111827; }
.nf-body .nf-stories-featured p  { color: #4b5563; }
.nf-body .nf-stories-featured-label { color: #0891b2; }
.nf-body .nf-stories-featured-company { color: #0891b2; }
.nf-body .nf-stories-featured-link { color: var(--nf-fig-blue) !important; }

.nf-body .nf-story-card h4        { color: #111827; }
.nf-body .nf-story-card p         { color: #4b5563; }
.nf-body .nf-story-card-company   { color: #0891b2; }
.nf-body .nf-story-card-meta span { color: #6b7280; }

.nf-body .nf-events-section h2    { color: #111827; }
.nf-body .nf-events-section p     { color: #4b5563; }
.nf-body .nf-events-viewall       { color: var(--nf-fig-blue); }

.nf-body .nf-event-card h3        { color: #fff; }
.nf-body .nf-event-card p         { color: rgba(255,255,255,0.90); }
.nf-body .nf-event-card-date      { color: #67e8f9; }
.nf-body .nf-event-card-cta       { color: var(--nf-fig-blue) !important; }
.nf-body .nf-event-card-cta:hover { color: var(--nf-fig-blue) !important; }

.nf-body .nf-ecosystem-section h2 { color: #fff; }
.nf-body .nf-ecosystem-section p  { color: #fff; }
.nf-body .nf-ecosystem-circle p   { color: #1f2937; }

.nf-body .nf-stories-section h2   { color: #fff; }
.nf-body .nf-stories-section > .nf-stories-container > .nf-stories-header > p { color: #fff; }

.nf-body .nf-btn-gold             { color: var(--nf-fig-blue) !important; }

.nf-body .nf-cta-network-title    { color: #111827; }
.nf-body .nf-cta-network-subtitle { color: #4b5563; }

/* Pitch Review light-section overrides */
.nf-body .nf-pr-form-section h2   { color: #111827; }
.nf-body .nf-pr-form-section p    { color: #4b5563; }
.nf-body .nf-pr-form-section a    { color: #0c66a2; }
.nf-body .nf-pr-form-section .nf-section-label { color: #0c66a2; }
.nf-body .nf-pr-success-title     { color: #111827; }
.nf-body .nf-pr-success-body      { color: #4b5563; }
.nf-body .nf-pr-step p            { color: #4b5563; }
.nf-body .nf-pr-file-label        { color: #6b7280; }
.nf-body .nf-pr-file-label strong { color: #0c66a2; }
.nf-body .nf-pr-price-row         { color: #6b7280; }
.nf-body .nf-pr-price-val         { color: #111827; }
.nf-body .nf-pr-price-total       { color: #111827; }
.nf-body .nf-pr-price-note        { color: #9ca3af; }
.nf-body .nf-footer a             { color: #fff; }
.nf-body .nf-footer a:hover       { color: #d1d5db; }
.nf-body .nf-footer p             { color: #fff; }
.nf-body .nf-footer .nf-footer-col-title { color: #d5b470; }
.nf-body .nf-footer-disclaimer p  { color: #fff; }
.nf-body .nf-footer-copy          { color: #fff; }

/* ── Pitch Review — form section (cream/white light bg) ─────── */
.nf-pr-form-section {
  background: linear-gradient(to bottom, #ece2cd, #fff);
  position: relative;
  overflow: hidden;
}
.nf-pr-form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #94a3b8 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.3;
  pointer-events: none;
}
.nf-pr-form-wrap {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.nf-pr-form-header { margin-bottom: 40px; }
.nf-pr-form-header .nf-section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0c66a2;
  margin-bottom: 12px;
}
.nf-pr-form-header .nf-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px;
}
.nf-pr-form-header .nf-section-subtitle {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

.nf-pr-form { display: flex; flex-direction: column; gap: 24px; }

.nf-pr-field { display: flex; flex-direction: column; gap: 8px; }
.nf-body .nf-pr-label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}
.nf-pr-input {
  width: 100%;
  padding: 12px 16px !important;
  background: #fff !important;
  border: 1px solid #d1d5db !important;
  border-radius: 8px !important;
  font-family: var(--nf-font);
  font-size: 16px !important;
  color: #111827 !important;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nf-pr-input::placeholder { color: #6b7280 !important; }
.nf-pr-input:focus {
  border-color: #06b6d4 !important;
  box-shadow: 0 0 0 3px rgba(6,182,212,0.2) !important;
}
.nf-pr-field-error {
  font-size: 13px;
  color: #dc2626;
}
.nf-pr-alert {
  margin-bottom: 0;
  background: #fef2f2 !important;
  border-color: #fca5a5 !important;
  color: #991b1b !important;
  border-radius: 8px;
}

/* File upload zone */
.nf-pr-file-zone {
  position: relative;
  border: 2px dashed #d1d5db;
  border-radius: 12px;
  background: #fff;
  padding: 40px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.nf-pr-file-zone:hover,
.nf-pr-file-zone.drag-over {
  border-color: #0c66a2;
  background: rgba(12,102,162,0.04);
}
.nf-pr-file-zone.has-file { border-color: #d5b470; border-style: solid; }

.nf-pr-file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.nf-pr-file-icon { font-size: 32px; color: #0c66a2; margin-bottom: 8px; }
.nf-pr-file-label {
  margin: 0;
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}
.nf-pr-file-label strong { color: #0c66a2; }
.nf-pr-file-label span { font-size: 13px; }
.nf-pr-file-name {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #0c66a2;
}

/* Price summary box */
.nf-pr-price-summary {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px 24px;
}
.nf-pr-price-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: #6b7280;
  padding: 4px 0;
}
.nf-pr-price-val { font-weight: 600; color: #111827; }
.nf-pr-price-divider {
  border-top: 1px solid #e5e7eb;
  margin: 12px 0;
}
.nf-pr-price-total {
  font-weight: 700;
  font-size: 17px;
  color: #111827;
}
.nf-pr-price-total span:last-child { color: #0c66a2; }
.nf-pr-price-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.5;
}

.nf-pr-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  background: #2d4e66 !important;
  border-color: #2d4e66 !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nf-pr-submit-btn:hover {
  background: #1e3a4f !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(45,78,102,0.3);
  color: #fff !important;
}

/* ── Success state ───────────────────────────────────────────── */
.nf-pr-success {
  text-align: center;
  padding: 16px 0;
}
.nf-pr-success-icon {
  font-size: 56px;
  color: #10b981;
  margin-bottom: 20px;
}
.nf-pr-success-title {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px;
}
.nf-pr-success-body {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  margin: 0 0 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.nf-pr-success-body strong { color: #111827; }
.nf-pr-success-steps {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
  text-align: left;
}
.nf-pr-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 200px;
}
.nf-pr-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(to right, #d5b470, #e8ddc6);
  color: #0e478c;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nf-pr-step p {
  margin: 0;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.5;
  padding-top: 4px;
}

/* ── Admin: Pitch Submissions table ──────────────────────────── */
.nf-ps-empty {
  text-align: center;
  padding: 64px 0;
}
.nf-ps-table-wrap {
  overflow-x: auto;
  border-radius: var(--nf-radius-lg);
  border: 1px solid var(--nf-border);
}
.nf-ps-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.nf-ps-table thead {
  background: var(--nf-surface-2);
}
.nf-ps-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nf-on-navy-muted);
  border-bottom: 1px solid var(--nf-border);
  white-space: nowrap;
}
.nf-ps-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--nf-border);
  vertical-align: middle;
}
.nf-ps-table tbody tr:last-child td { border-bottom: none; }
.nf-ps-table tbody tr:hover td { background: rgba(245,248,255,0.02); }

.nf-ps-id    { color: var(--nf-on-navy-faint); font-size: 0.8125rem; }
.nf-ps-title { font-weight: 600; color: var(--nf-on-navy); }
.nf-ps-email { color: var(--nf-gold); text-decoration: none; }
.nf-ps-email:hover { color: var(--nf-gold-light); text-decoration: underline; }
.nf-ps-deck-link { color: var(--nf-gold); text-decoration: none; font-size: 0.875rem; }
.nf-ps-deck-link:hover { color: var(--nf-gold-light); }

.nf-ps-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.nf-ps-badge-pending  { background: rgba(201,168,76,0.15); color: var(--nf-gold); }
.nf-ps-badge-reviewed { background: rgba(76,175,130,0.15); color: #4caf82; }
.nf-ps-badge-paid     { background: rgba(100,180,255,0.15); color: #64b4ff; }
.nf-ps-badge-draft    { background: rgba(156,163,175,0.2); color: #9ca3af; }

/* ── Admin: Redesigned pages ─────────────────────────────────── */

/* Hero */
.nf-admin-hero {
  background: linear-gradient(135deg, #0c66a2 0%, #2d4e66 100%);
  padding: 100px 0 48px;
}
.nf-admin-hero-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d5b470;
  margin: 0 0 12px;
}
.nf-admin-hero-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.2;
}
.nf-admin-hero-meta {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
.nf-admin-hero-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.nf-admin-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  margin-bottom: 20px;
}
.nf-admin-back:hover { color: #fff; }

/* Stats row */
.nf-admin-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.nf-admin-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nf-admin-stat-num {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.nf-admin-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* Content section */
.nf-admin-detail-section {
  background: linear-gradient(to bottom, #1a3a52, #0f2a3e);
  padding: 40px 0 80px;
  min-height: 400px;
}

/* Empty state */
.nf-admin-empty {
  text-align: center;
  padding: 80px 0;
}

/* Toolbar: search + filter */
.nf-admin-toolbar {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: center;
}
.nf-admin-search-wrap {
  position: relative;
  flex: 1;
  max-width: 360px;
}
.nf-admin-search {
  width: 100%;
  padding: 10px 12px 10px 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: #e2e8f0;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
}
.nf-admin-search::placeholder { color: #6b7280; }
.nf-admin-search:focus { border-color: rgba(100,180,255,0.5); }
.nf-admin-filter {
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: #e2e8f0;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  cursor: pointer;
  appearance: auto;
}
.nf-admin-filter:focus { border-color: rgba(100,180,255,0.5); }

/* Sortable headers */
.nf-sortable { cursor: pointer; user-select: none; }
.nf-sortable:hover { color: rgba(255,255,255,0.6); }
.nf-sort-active { color: rgba(255,255,255,0.7); }
.nf-sort-icon { opacity: 0.5; margin-left: 2px; }
.nf-sort-active .nf-sort-icon { opacity: 1; }

/* Submission rows */
.nf-admin-rows {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
}
.nf-admin-row {
  display: grid;
  grid-template-columns: 2fr 100px 140px 110px 110px 36px;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.12s;
}
.nf-admin-row:hover {
  background: rgba(255,255,255,0.05);
  text-decoration: none;
}
.nf-admin-row:last-child { border-bottom: none; }
.nf-admin-row-header {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding: 10px 20px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nf-admin-row-header:hover { background: rgba(255,255,255,0.03); }
.nf-admin-col-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.nf-admin-row-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nf-admin-row-email {
  font-size: 13px;
  color: #d5b470;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nf-admin-col-status { text-align: center; }
.nf-admin-col-payment {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.nf-admin-row-paid {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nf-admin-row-unpaid {
  color: rgba(255,255,255,0.3);
}
.nf-admin-col-date {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}
.nf-admin-col-action {
  text-align: right;
  color: rgba(255,255,255,0.2);
  transition: color 0.12s;
}
.nf-admin-row:hover .nf-admin-col-action {
  color: #d5b470;
}
@media (max-width: 800px) {
  .nf-admin-row {
    grid-template-columns: 1fr auto auto;
    gap: 8px;
    padding: 10px 16px;
  }
  .nf-admin-row-header { display: none; }
  .nf-admin-col-payment,
  .nf-admin-col-date { display: none; }
  .nf-admin-col-action { display: none; }
}

/* Detail page grid */
.nf-admin-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 900px) {
  .nf-admin-detail-grid {
    grid-template-columns: 1fr;
  }
}

/* Panels & cards */
.nf-admin-deck-panel,
.nf-admin-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
}
.nf-admin-review-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.nf-admin-panel-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 700;
  color: #d5b470;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* PDF viewer */
.nf-admin-pdf-viewer {
  height: 600px;
  background: #1e1e1e;
}
.nf-admin-deck-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}
.nf-admin-deck-actions {
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Info grid */
.nf-admin-info-grid {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nf-admin-info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.nf-admin-info-label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Buttons */
.nf-admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  transition: background 0.15s;
}
.nf-admin-btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
}
.nf-admin-btn-outline:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
  text-decoration: none;
}
.nf-admin-btn-primary {
  background: #2d4e66;
  color: #fff;
}
.nf-admin-btn-primary:hover {
  background: #3a6280;
}

/* Review form */
.nf-admin-textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  color: #e2e8f0;
  font-size: 14px;
  line-height: 1.7;
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  resize: vertical;
  min-height: 200px;
  box-sizing: border-box;
}
.nf-admin-textarea:focus {
  outline: none;
  border-color: #06b6d4;
  box-shadow: 0 0 0 3px rgba(6,182,212,0.15);
}
.nf-admin-textarea::placeholder {
  color: rgba(255,255,255,0.25);
}
.nf-admin-card form,
.nf-admin-card details {
  padding: 0 20px 20px;
}

/* Review display */
.nf-admin-review-display {
  padding: 16px 20px;
}
.nf-admin-review-display p {
  color: #e2e8f0;
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 10px;
}
.nf-admin-edit-toggle {
  color: #d5b470;
  font-size: 14px;
  cursor: pointer;
  font-weight: 600;
}
.nf-admin-edit-toggle:hover {
  color: #e8c97e;
}

/* Toast notification */
.nf-admin-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 10px;
  padding: 14px 20px;
  margin-bottom: 24px;
  color: #86efac;
  font-size: 14px;
  font-weight: 500;
}

/* ── Public: View Review page ────────────────────────────────── */
.nf-vr-wrap {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.nf-vr-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}
.nf-vr-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 28px;
  border-bottom: 1px solid #e5e7eb;
}
.nf-vr-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  margin: 0;
  line-height: 1.3;
}
.nf-vr-card-subtitle {
  font-size: 13px;
  color: #6b7280;
  margin: 2px 0 0;
}
.nf-vr-review-body {
  padding: 28px;
}
.nf-vr-review-body p {
  font-size: 15px;
  line-height: 1.75;
  color: #374151;
  margin: 0 0 12px;
}
.nf-body .nf-vr-review-body p {
  color: #374151;
}
.nf-body .nf-vr-card-title {
  color: #111827;
}
.nf-body .nf-vr-card-subtitle {
  color: #6b7280;
}

/* What's Next card */
.nf-vr-next-card {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px 28px;
}
.nf-body .nf-vr-next-card h3 {
  color: #111827;
}
.nf-vr-next-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nf-vr-next-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
}
.nf-body .nf-vr-next-list li {
  color: #374151;
}
.nf-vr-cta-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #2d4e66;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.15s;
}
.nf-vr-cta-btn:hover {
  background: #3a6280;
  color: #fff;
  text-decoration: none;
}
