/* ═══════════════════════════════════════════════
   NEA KIDZ — v7.1  |  Version Doree
   Light warm — cream, gold, premium
   ═══════════════════════════════════════════════ */

:root {
  /* ── Surfaces — warm light ── */
  --bg: #FFFDF8;
  --bg-card: #F7F3EB;
  --bg-raised: #EFEBE2;
  --bg-surface: #F2EEE5;

  /* ── Text — dark on light ── */
  --text: #1A1A2E;
  --text-soft: rgba(26, 26, 46, 0.72);
  --text-muted: rgba(26, 26, 46, 0.45);
  --text-ghost: rgba(26, 26, 46, 0.06);

  /* ── Gold — sacred warmth ── */
  --gold: #D4A853;
  --gold-light: #E8C675;
  --gold-deep: #B8913A;
  --gold-glow: rgba(212, 168, 83, 0.12);
  --gold-border: rgba(212, 168, 83, 0.25);

  /* ── Trust ── */
  --emerald: #2D7A6D;
  --emerald-glow: rgba(45, 139, 78, 0.06);

  /* ── Borders ── */
  --border: rgba(26, 26, 46, 0.08);
  --border-hover: rgba(26, 26, 46, 0.15);

  /* ── Deep (emphasis/contrast) ── */
  --deep: #1A1A2E;
  --deep-soft: #232340;

  /* ── Teal accent ── */
  --teal: #1A4A42;
  --teal-soft: #2D7A6D;

  /* ── Layout ── */
  --max-w: 1200px;
  --prose-w: 720px;
  --r: 16px;
  --r-sm: 10px;
  --r-pill: 980px;

  /* ── Compat ── */
  --ash: rgba(26, 26, 46, 0.42);

  /* ── Shadows — light variant ── */
  --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.06);
  --shadow-md: 0 4px 24px rgba(26, 26, 46, 0.08);
  --shadow-lg: 0 12px 48px rgba(26, 26, 46, 0.1);
  --shadow-xl: 0 24px 64px rgba(26, 26, 46, 0.12);
  --shadow-glow: 0 0 0 1px var(--border), 0 8px 32px rgba(26, 26, 46, 0.06);
  --shadow-gold: 0 4px 24px rgba(212, 168, 83, 0.2);

  /* ── Type ── */
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;

  /* ── Motion ── */
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration: 0.6s;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 17px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--sans); background: var(--bg); color: var(--text); line-height: 1.65; overflow-x: hidden; }
main { position: relative; z-index: 1; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--sans); }

/* Anti-copy / anti-selection */
html, body, body * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

img, svg {
  -webkit-user-drag: none;
  user-drag: none;
}

::selection { background: transparent; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-card); }
::-webkit-scrollbar-thumb { background: rgba(26, 26, 46, 0.12); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(26, 26, 46, 0.22); }

/* ── Container ── */
.nk-w { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.nk-container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.nk-prose { max-width: var(--prose-w); margin: 0 auto; }

/* ═══════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════ */
.nk-display {
  font-family: var(--sans);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.06;
  color: var(--text);
}

.nk-headline {
  font-family: var(--sans);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--text);
}

.nk-title {
  font-family: var(--sans);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--text);
}

.nk-body-large {
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--text-soft);
  font-weight: 400;
}

.nk-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.nk-caption {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* ── Spacing ── */
.nk-section { padding: 120px 0; }
.nk-section-tight { padding: 80px 0; }
.nk-center { text-align: center; }

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.nk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: var(--r-pill);
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  line-height: 1;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}

.nk-btn-primary {
  background: var(--gold);
  color: var(--bg);
}

.nk-btn-primary:hover {
  background: var(--gold-light);
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(212, 168, 83, 0.25);
}

.nk-btn-gold {
  background: var(--gold);
  color: #1a1207;
}

.nk-btn-gold:hover {
  background: var(--gold-light);
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(212, 168, 83, 0.3);
}

.nk-btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-hover);
}

.nk-btn-ghost:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  transform: scale(1.02);
}

.nk-btn-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: color 0.2s;
}

.nk-btn-link:hover { color: var(--gold-light); }

.nk-btn-link::after {
  content: ' \2192';
  transition: transform 0.2s var(--ease);
  display: inline-block;
}

.nk-btn-link:hover::after { transform: translateX(4px); }

.nk-btn-group { display: flex; gap: 16px; flex-wrap: wrap; }
.nk-btn-group.nk-center { justify-content: center; }

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.nk-nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.4s var(--ease);
}

.nk-nav-bar.is-scrolled {
  top: 0 !important;
}

.nk-nav-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: saturate(120%) blur(20px);
  -webkit-backdrop-filter: saturate(120%) blur(20px);
  border-bottom: 0.5px solid var(--border);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.nk-nav-bar.is-scrolled::before { opacity: 1; }

.nk-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: relative;
  z-index: 1;
}

.nk-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  color: var(--text);
  text-decoration: none;
}

.nk-logo-img {
  display: block;
  width: auto;
  height: 46px;
  max-width: 150px;
  object-fit: contain;
}

.nk-logo em {
  font-style: normal;
  color: var(--gold);
}

.nk-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nk-nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: color 0.2s;
  letter-spacing: -0.01em;
}

.nk-nav-links a:hover { color: var(--text); }

.nk-nav-cta {
  padding: 9px 20px !important;
  font-size: 0.82rem !important;
  background: var(--gold);
  color: var(--deep) !important;
  border-radius: var(--r-pill);
  font-weight: 600;
  transition: all 0.2s var(--ease);
}

.nk-nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--deep) !important;
}

/* Search toggle */
.nk-search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text-muted);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.nk-search-toggle:hover { color: var(--text); }

/* Search overlay */
.nk-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 30vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.nk-search-overlay.is-open { opacity: 1; pointer-events: auto; }

.nk-search-form {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 560px;
  padding: 0 32px;
}

.nk-search-input {
  flex: 1;
  padding: 20px 28px;
  border: 1.5px solid var(--border-hover);
  border-radius: var(--r);
  background: var(--bg-card);
  font-family: var(--sans);
  font-size: 1.15rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.nk-search-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-glow);
}

.nk-search-input::placeholder { color: var(--text-muted); }

.nk-search-submit,
.nk-search-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 8px;
  transition: color 0.2s;
  flex-shrink: 0;
}

.nk-search-submit:hover,
.nk-search-close:hover { color: var(--text); }

/* Hamburger */
.nk-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  position: relative;
}

.nk-burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  position: absolute;
  left: 11px;
  transition: all 0.3s var(--ease);
  border-radius: 1px;
}

.nk-burger span:nth-child(1) { top: 15px; }
.nk-burger span:nth-child(2) { top: 22px; }

.nk-burger.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nk-burger.is-open span:nth-child(2) { top: 19px; transform: rotate(-45deg); }

/* Mobile menu */
.nk-mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 99;
  padding: 40px 32px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all 0.3s var(--ease);
}

.nk-mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nk-mobile-menu a {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 20px 0;
  color: var(--text);
  border-bottom: 0.5px solid var(--border);
}

/* ═══════════════════════════════════════
   READING PROGRESS BAR
   ═══════════════════════════════════════ */
.nk-progress {
  position: fixed;
  top: 64px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-light));
  z-index: 101;
  transition: width 0.15s linear;
}

/* ═══════════════════════════════════════
   IDENTITY HERO — The WHY
   ═══════════════════════════════════════ */
.nk-identity {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.nk-identity-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

.nk-identity::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 253, 248, 0.0) 0%,
    rgba(255, 253, 248, 0.3) 40%,
    rgba(255, 253, 248, 0.85) 75%,
    var(--bg) 100%
  );
  z-index: 1;
}

.nk-identity-content {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 80px 32px 60px;
}

.nk-identity-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 0.5px solid var(--border);
}

.nk-identity-stat-value {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.nk-identity-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
  display: block;
  letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════
   HERO — Cinematic Dark
   ═══════════════════════════════════════ */
.nk-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.nk-hero-content {
  text-align: center;
  max-width: 840px;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.nk-hero .nk-display { margin-bottom: 24px; }

.nk-hero .nk-body-large {
  max-width: 580px;
  margin: 0 auto 40px;
}

.nk-hero-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 0.5px solid var(--border);
}

.nk-hero-stat-value {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.nk-hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 0.03em;
}

/* Ambient gold glow — warm watercolor atmosphere */
.nk-hero::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.06) 0%, rgba(212, 168, 83, 0.02) 30%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

/* Gold horizon line at bottom */
.nk-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--gold-border) 50%, transparent 90%);
}

/* ═══════════════════════════════════════
   SECTION VARIANTS
   ═══════════════════════════════════════ */

/* Silk — subtle surface lift (replaces light gray sections) */
.nk-silk { background: var(--bg-card); }

/* Deep — dark blue contrast sections (conversion, emphasis) */
.nk-dark, .nk-deep {
  background: var(--deep);
  position: relative;
  overflow: hidden;
}

.nk-dark::before, .nk-deep::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Force light text in dark/deep sections */
.nk-dark .nk-headline,
.nk-dark .nk-title,
.nk-dark .nk-display,
.nk-deep .nk-headline,
.nk-deep .nk-title,
.nk-deep .nk-display { color: #fff; }

.nk-dark .nk-body-large,
.nk-deep .nk-body-large { color: rgba(255, 255, 255, 0.75); }

.nk-dark .nk-eyebrow,
.nk-deep .nk-eyebrow { color: var(--gold-light); }

.nk-dark .nk-pricing-guarantee,
.nk-deep .nk-pricing-guarantee { color: rgba(255, 255, 255, 0.5); }

.nk-dark .nk-pricing-card,
.nk-deep .nk-pricing-card { background: var(--deep-soft); border-color: rgba(255,255,255,0.1); }

.nk-dark .nk-pricing-name,
.nk-deep .nk-pricing-name { color: rgba(255,255,255,0.7); }

.nk-dark .nk-pricing-price,
.nk-deep .nk-pricing-price { color: #fff; }

.nk-dark .nk-pricing-price span,
.nk-dark .nk-pricing-billed,
.nk-deep .nk-pricing-price span,
.nk-deep .nk-pricing-billed { color: rgba(255,255,255,0.5); }

.nk-dark .nk-pricing-features li,
.nk-deep .nk-pricing-features li { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.08); }

.nk-dark .nk-btn-ghost,
.nk-deep .nk-btn-ghost { color: #fff; border-color: rgba(255,255,255,0.2); }

.nk-dark .nk-btn-ghost:hover,
.nk-deep .nk-btn-ghost:hover { color: var(--gold-light); border-color: var(--gold-border); }

.nk-dark .nk-btn-primary,
.nk-deep .nk-btn-primary { color: var(--deep); }

.nk-dark .nk-email-input,
.nk-deep .nk-email-input { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: #fff; }

.nk-dark .nk-email-input::placeholder,
.nk-deep .nk-email-input::placeholder { color: rgba(255,255,255,0.4); }

/* ═══════════════════════════════════════
   CARDS — Dark Glass
   ═══════════════════════════════════════ */
.nk-card {
  background: var(--bg-card);
  border-radius: var(--r);
  border: 0.5px solid var(--border);
  padding: 36px 32px;
  transition: all 0.4s var(--ease);
  position: relative;
}

.nk-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   CATEGORIES SHOWCASE
   ═══════════════════════════════════════ */
.nk-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.nk-cat-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--r);
  padding: 32px 28px;
  text-align: left;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.nk-cat-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.nk-cat-card:hover .nk-cat-arrow { transform: translateX(4px); }

.nk-cat-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-raised);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s var(--ease);
}

.nk-cat-card:hover .nk-cat-icon {
  background: var(--gold-glow);
}

.nk-cat-name {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

.nk-cat-count {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.nk-cat-arrow {
  color: var(--text-muted);
  transition: transform 0.3s var(--ease);
  margin-top: auto;
}

/* ═══════════════════════════════════════
   FEATURED ARTICLE
   ═══════════════════════════════════════ */
.nk-featured {
  background: var(--bg-card);
  border-radius: var(--r);
  border: 0.5px solid var(--border);
  padding: 56px 48px;
  color: var(--text);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.nk-featured:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.nk-featured::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.nk-featured-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  padding: 6px 14px;
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}

.nk-featured h2 {
  font-family: var(--sans);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.nk-featured h2 a { transition: opacity 0.2s; }
.nk-featured h2 a:hover { opacity: 0.8; }

.nk-featured-excerpt {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 520px;
}

.nk-featured-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.nk-featured-meta .nk-sep { margin: 0 8px; }

/* ═══════════════════════════════════════
   COLLECTIONS — Horizontal scroll
   ═══════════════════════════════════════ */
.nk-scroll-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 4px 0 20px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.nk-scroll-track::-webkit-scrollbar { display: none; }

.nk-collection {
  flex: 0 0 320px;
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--r);
  padding: 36px 32px;
  scroll-snap-align: start;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}

.nk-collection:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.nk-collection-name {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 8px;
}

.nk-collection-desc {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.6;
  flex: 1;
}

.nk-collection-meta {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 0.5px solid var(--border);
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════
   FEATURES GRID
   ═══════════════════════════════════════ */
.nk-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--r);
  overflow: hidden;
  border: 0.5px solid var(--border);
}

.nk-feature {
  background: var(--bg-card);
  padding: 48px 36px;
  text-align: center;
  transition: background 0.3s var(--ease);
}

.nk-feature:hover { background: var(--bg-raised); }

.nk-feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nk-feature-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.nk-feature-text {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   BLOG GRID
   ═══════════════════════════════════════ */
.nk-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.nk-post-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--r);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
}

.nk-post-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* Post card thumbnail */
.nk-post-thumb {
  margin: -32px -28px 20px;
  overflow: hidden;
  border-radius: var(--r) var(--r) 0 0;
  position: relative;
}

.nk-post-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.nk-post-card:hover .nk-post-thumb img {
  transform: scale(1.05);
}

.nk-post-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.nk-post-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
}

.nk-post-title {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--text);
}

.nk-post-excerpt {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.6;
  flex: 1;
}

.nk-post-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 0.5px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.nk-sep { margin: 0 6px; }

/* ═══════════════════════════════════════
   CATEGORY PILLS
   ═══════════════════════════════════════ */
.nk-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.nk-pill {
  padding: 9px 20px;
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-soft);
  background: transparent;
  border: 1px solid var(--border-hover);
  transition: all 0.25s var(--ease);
  letter-spacing: -0.01em;
}

.nk-pill:hover {
  border-color: var(--gold-border);
  color: var(--gold);
}

.nk-pill.is-active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

/* ═══════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════ */
.nk-newsletter-box {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--r);
  padding: 64px 48px;
  text-align: center;
}

.nk-newsletter-box .nk-title { margin-bottom: 12px; }
.nk-newsletter-box .nk-body-large { margin-bottom: 32px; }

.nk-email-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}

.nk-email-input {
  flex: 1;
  padding: 16px 24px;
  border: 1.5px solid var(--border-hover);
  border-radius: var(--r-pill);
  background: var(--bg-raised);
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.nk-email-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-glow);
}

.nk-email-input::placeholder { color: var(--text-muted); }

.nk-form-message {
  margin-top: 12px;
  font-size: 0.85rem;
  min-height: 1.2em;
}

.nk-form-message.success { color: var(--emerald); }
.nk-form-message.error { color: #FF3B30; }

/* ═══════════════════════════════════════
   ARCHIVE / PAGE HEADER
   ═══════════════════════════════════════ */
.nk-page-header {
  padding: 40px 0 0;
  text-align: center;
}

.nk-page-header .nk-headline { margin-bottom: 12px; }

.nk-page-header .nk-body-large {
  max-width: 520px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════ */
.nk-breadcrumb {
  padding: 16px 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.nk-breadcrumb a { color: var(--text-soft); transition: color 0.2s; }
.nk-breadcrumb a:hover { color: var(--gold); }
.nk-breadcrumb-sep { margin: 0 8px; color: var(--text-ghost); }
.nk-breadcrumb-current { color: var(--text-muted); }

/* ═══════════════════════════════════════
   ARTICLE — Header
   ═══════════════════════════════════════ */
.nk-article-header {
  padding: 32px 0 48px;
  text-align: center;
}

.nk-article-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  padding: 7px 16px;
  border: 1px solid var(--gold-border);
  border-radius: var(--r-pill);
  margin-bottom: 24px;
  transition: all 0.2s;
}

.nk-article-tag:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.nk-article-header h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: var(--prose-w);
  margin: 0 auto 24px;
  color: var(--text);
}

.nk-article-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   ARTICLE — Prose
   ═══════════════════════════════════════ */
.nk-article-body {
  max-width: var(--prose-w);
  margin: 0 auto;
  padding-bottom: 48px;
}

.nk-article-body > p:first-of-type::first-letter {
  float: left;
  font-family: var(--serif);
  font-size: 3.8em;
  line-height: 0.82;
  padding-right: 12px;
  padding-top: 6px;
  color: var(--gold);
  font-weight: 700;
}

.nk-article-body p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text-soft);
  margin-bottom: 1.6em;
}

.nk-article-body h2 {
  font-family: var(--sans);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 2.8em 0 0.8em;
  padding-top: 2em;
  border-top: 0.5px solid var(--border);
}

.nk-article-body h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }

.nk-article-body h3 {
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 2em 0 0.6em;
}

.nk-article-body ul,
.nk-article-body ol {
  margin: 0 0 1.6em 1.2em;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text-soft);
}

.nk-article-body li { margin-bottom: 0.5em; }
.nk-article-body li::marker { color: var(--gold); }

.nk-article-body blockquote {
  margin: 2.5em 0;
  padding: 32px 36px;
  border-left: 3px solid var(--gold);
  background: var(--bg-card);
  border-radius: 0 var(--r) var(--r) 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.nk-article-body blockquote p:last-child { margin-bottom: 0; }

.nk-article-body a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: var(--gold-border);
  text-underline-offset: 3px;
  transition: all 0.2s;
}

.nk-article-body a:hover { text-decoration-color: var(--gold); }

.nk-article-body strong { font-weight: 600; color: var(--text); }

.nk-article-body hr {
  border: none;
  height: 0.5px;
  background: var(--border);
  margin: 3em 0;
}

.nk-article-body img {
  border-radius: var(--r);
  margin: 2em auto;
}

/* ═══════════════════════════════════════
   TABLE OF CONTENTS
   ═══════════════════════════════════════ */
.nk-toc {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--r);
  padding: 32px 36px;
  margin: 2.5em 0;
}

.nk-toc-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
}

.nk-toc ul { list-style: none; margin: 0 !important; padding: 0; }
.nk-toc li { margin-bottom: 4px !important; }

.nk-toc li a {
  font-size: 0.88rem;
  color: var(--text-soft);
  text-decoration: none !important;
  display: block;
  padding: 6px 16px;
  border-radius: 8px;
  transition: all 0.2s var(--ease);
}

.nk-toc li a:hover {
  color: var(--gold);
  background: var(--bg-raised);
}

.nk-toc li.nk-toc-sub a {
  padding-left: 32px;
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   INLINE RELATED ("A lire aussi")
   ═══════════════════════════════════════ */
.nk-inline-related {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--r);
  padding: 28px 32px;
  margin: 2.5em 0;
}

.nk-inline-related-title {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
}

.nk-inline-related ul { list-style: none !important; margin: 0 !important; padding: 0 !important; }
.nk-inline-related li { margin-bottom: 8px !important; padding-left: 16px; position: relative; }
.nk-inline-related li::before { content: '\2192'; position: absolute; left: 0; color: var(--gold); font-size: 0.85rem; }

.nk-inline-related a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text) !important;
  text-decoration: none !important;
  transition: color 0.2s;
}

.nk-inline-related a:hover { color: var(--gold) !important; }

/* ═══════════════════════════════════════
   ARTICLE FOOTER — Tags
   ═══════════════════════════════════════ */
.nk-article-footer { border-top: 0.5px solid var(--border); }

.nk-article-tags {
  max-width: var(--prose-w);
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.nk-tag {
  padding: 6px 16px;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 500;
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  color: var(--text-soft);
  transition: all 0.2s;
}

.nk-tag:hover {
  border-color: var(--gold-border);
  color: var(--gold);
}

/* ═══════════════════════════════════════
   CATEGORY HUB LINK
   ═══════════════════════════════════════ */
.nk-category-hub { padding: 0 0 48px; }

.nk-hub-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-soft);
  transition: all 0.3s var(--ease);
}

.nk-hub-link strong { color: var(--gold); }

.nk-hub-link .nk-hub-arrow {
  transition: transform 0.3s var(--ease);
}

.nk-hub-link:hover { color: var(--text); }
.nk-hub-link:hover .nk-hub-arrow { transform: translateX(4px); }

/* ═══════════════════════════════════════
   RELATED ARTICLES
   ═══════════════════════════════════════ */
.nk-related .nk-headline { margin-bottom: 48px; }

/* ═══════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════ */
.nk-pagination { margin-top: 56px; text-align: center; }

.nk-pagination .page-numbers {
  list-style: none;
  display: flex;
  gap: 6px;
  justify-content: center;
}

.nk-pagination .page-numbers li { list-style: none; }

.nk-pagination a,
.nk-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
}

.nk-pagination a {
  color: var(--text-soft);
  background: var(--bg-card);
  border: 0.5px solid var(--border);
}

.nk-pagination a:hover {
  color: var(--text);
  border-color: var(--gold-border);
}

.nk-pagination .current {
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
}

/* ═══════════════════════════════════════
   PAGE CONTENT (generic + Ghost)
   ═══════════════════════════════════════ */
.nk-page-full {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.nk-page-content {
  max-width: var(--prose-w);
  margin: 0 auto;
}

.nk-page-content p { font-size: 1.02rem; line-height: 1.8; margin-bottom: 1.2em; color: var(--text-soft); }
.nk-page-content h2 { margin: 2em 0 0.8em; font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; color: var(--text); }
.nk-page-content h3 { margin: 1.5em 0 0.6em; font-size: 1.2rem; font-weight: 600; color: var(--text); }
.nk-page-content ul, .nk-page-content ol { margin: 0 0 1.2em 1.2em; line-height: 1.8; color: var(--text-soft); }
.nk-page-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.nk-page-content a.nk-btn-gold { color: #1a1207; text-decoration: none; }

/* ═══════════════════════════════════════
   404
   ═══════════════════════════════════════ */
.nk-404-number {
  font-family: var(--sans);
  font-size: clamp(8rem, 20vw, 16rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  display: block;
  background: linear-gradient(180deg, var(--gold) 0%, var(--bg-raised) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.nk-footer {
  background: var(--bg-card);
  color: var(--text-muted);
  padding: 72px 0 40px;
  border-top: 0.5px solid var(--border);
}

.nk-footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.6fr) repeat(4, minmax(130px, 1fr));
  gap: 36px;
  margin-bottom: 56px;
}

.nk-footer .nk-logo {
  color: var(--text);
  margin-bottom: 16px;
  display: inline-flex;
}

.nk-footer .nk-logo-img {
  height: 54px;
  max-width: 170px;
}

.nk-footer .nk-footer-logo-img {
  height: 92px;
  max-width: 150px;
}

.nk-footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 260px;
  color: var(--text-muted);
}

.nk-footer-col h4 {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.nk-footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  transition: color 0.2s;
}

.nk-footer-col a:hover { color: var(--gold); }

.nk-footer-bottom {
  border-top: 0.5px solid var(--border);
  padding-top: 24px;
  font-size: 0.78rem;
  text-align: center;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   MAGAZINE HERO
   ═══════════════════════════════════════ */
.nk-magazine {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 16px;
}

.nk-magazine-main {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--r);
  min-height: 480px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.nk-magazine-main:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
}

/* Magazine main background image */
.nk-magazine-main-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.8s var(--ease);
}

.nk-magazine-main:hover .nk-magazine-main-img {
  transform: scale(1.03);
}

.nk-magazine-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 39, 68, 0.9) 0%, rgba(26, 39, 68, 0.5) 40%, rgba(26, 39, 68, 0.15) 100%);
  z-index: 1;
  pointer-events: none;
  border-radius: var(--r);
}

.nk-magazine-main .nk-post-tag,
.nk-magazine-main .nk-post-title,
.nk-magazine-main .nk-post-excerpt,
.nk-magazine-main .nk-post-footer {
  position: relative;
  z-index: 2;
  color: #fff;
}

.nk-magazine-main .nk-post-footer { color: rgba(255,255,255,0.6); }

.nk-magazine-main .nk-post-tag { margin-bottom: 12px; }

.nk-magazine-main .nk-post-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.nk-magazine-main .nk-post-excerpt {
  max-width: 480px;
  margin-bottom: 20px;
}

.nk-magazine-main .nk-btn-link {
  position: relative;
  z-index: 2;
}

.nk-magazine-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nk-magazine-side .nk-post-card {
  flex: 1;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.nk-magazine-side .nk-post-thumb {
  margin: -32px 0 -32px -28px;
  border-radius: var(--r) 0 0 var(--r);
  flex-shrink: 0;
  width: 140px;
}

.nk-magazine-side .nk-post-thumb img {
  height: 100%;
  min-height: 120px;
}

.nk-magazine-side .nk-post-body {
  padding: 4px 0;
}

/* ═══════════════════════════════════════
   UNIVERSE SECTIONS (Category showcases)
   ═══════════════════════════════════════ */
.nk-universe {
  padding: 80px 0;
  position: relative;
}

.nk-universe.nk-silk { background: var(--bg-card); }

.nk-universe-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
}

.nk-universe-header .nk-headline {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-top: 8px;
}

.nk-universe-header .nk-body-large {
  margin-top: 8px;
  max-width: 480px;
}

/* ═══════════════════════════════════════
   FEATURE GRID (1 large + smaller)
   ═══════════════════════════════════════ */
.nk-grid-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.nk-grid-feature > .nk-post-card:first-child {
  grid-row: 1 / -1;
  justify-content: flex-end;
  padding: 36px 32px;
}

.nk-grid-feature > .nk-post-card:first-child .nk-post-title {
  font-size: 1.25rem;
  line-height: 1.3;
}

.nk-grid-feature > .nk-post-card:first-child .nk-post-excerpt {
  max-width: 380px;
}

.nk-grid-feature > .nk-post-card:first-child .nk-post-thumb img {
  height: 280px;
}

/* Category card with image */
.nk-cat-card-img {
  margin: -32px -28px 20px;
  overflow: hidden;
  border-radius: var(--r) var(--r) 0 0;
}

.nk-cat-card-img img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.nk-cat-card:hover .nk-cat-card-img img {
  transform: scale(1.05);
}

/* ═══════════════════════════════════════
   HOW IT WORKS — Steps
   ═══════════════════════════════════════ */
.nk-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.nk-step { text-align: center; }

.nk-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 1.5px solid var(--gold-border);
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s var(--ease);
}

.nk-step:hover .nk-step-num {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  transform: scale(1.08);
}

.nk-step-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.nk-step-text {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 280px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════
   PRICING
   ═══════════════════════════════════════ */
.nk-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 48px auto 0;
}

.nk-pricing-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--r);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: all 0.4s var(--ease);
}

.nk-pricing-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.nk-pricing-popular {
  border-color: var(--gold-border);
  box-shadow: 0 0 0 1px var(--gold-border), var(--shadow-gold);
}

.nk-pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.nk-pricing-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nk-pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.nk-pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.nk-pricing-billed {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.nk-pricing-save {
  color: var(--gold) !important;
  font-weight: 600;
}

.nk-pricing-features {
  list-style: none;
  text-align: left;
  margin: 0 0 32px;
  padding: 0;
}

.nk-pricing-features li {
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--text-soft);
  border-bottom: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.nk-pricing-features li::before {
  content: '\2713';
  color: var(--emerald);
  font-weight: 700;
  flex-shrink: 0;
}

.nk-pricing-features li:last-child { border-bottom: none; }

.nk-btn-block { width: 100%; text-align: center; }

.nk-pricing-guarantee {
  margin-top: 32px;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nk-pricing-guarantee svg { color: var(--emerald); flex-shrink: 0; }

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

.nk-reveal {
  opacity: 0;
  transform: translateY(32px);
}

.nk-reveal.is-visible {
  animation: fadeUp var(--duration) var(--ease) forwards;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  html { font-size: 16px; }
  .nk-section { padding: 80px 0; }
  .nk-w { padding: 0 20px; }

  .nk-identity { min-height: 80vh; }
  .nk-identity-stats { gap: 32px; flex-wrap: wrap; }
  .nk-identity-stat-value { font-size: 1.8rem; }

  .nk-hero { min-height: 85vh; }
  .nk-hero-stats { gap: 32px; flex-wrap: wrap; }
  .nk-hero-stat-value { font-size: 1.8rem; }

  .nk-nav-links { display: none; }
  .nk-burger { display: block; }

  .nk-features-grid { grid-template-columns: 1fr; }
  .nk-categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .nk-blog-grid { grid-template-columns: 1fr; }

  .nk-featured {
    grid-template-columns: 1fr;
    padding: 36px 28px;
  }

  .nk-newsletter-box { padding: 48px 28px; }

  .nk-email-form {
    flex-direction: column;
    max-width: 100%;
  }

  .nk-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .nk-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
    padding-bottom: 8px;
  }

  .nk-pills::-webkit-scrollbar { display: none; }
  .nk-pill { white-space: nowrap; flex-shrink: 0; }

  .nk-article-header h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .nk-article-body p { font-size: 1rem; }

  .nk-collection { flex: 0 0 280px; }

  .nk-magazine { grid-template-columns: 1fr; }
  .nk-magazine-main { min-height: 320px; padding: 32px 28px; }
  .nk-magazine-main .nk-post-title { font-size: 1.4rem; }

  .nk-magazine-side .nk-post-card { flex-direction: column; }
  .nk-magazine-side .nk-post-thumb { margin: -32px -28px 16px; border-radius: var(--r) var(--r) 0 0; width: auto; }
  .nk-magazine-side .nk-post-thumb img { height: 160px; min-height: auto; }

  .nk-grid-feature > .nk-post-card:first-child .nk-post-thumb img { height: 200px; }

  .nk-grid-feature { grid-template-columns: 1fr; grid-template-rows: auto; }
  .nk-grid-feature > .nk-post-card:first-child { grid-row: auto; }

  .nk-universe-header { flex-direction: column; align-items: flex-start; }

  .nk-steps { grid-template-columns: 1fr; gap: 32px; }
  .nk-step-text { max-width: 100%; }

  .nk-pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
}

@media (max-width: 480px) {
  .nk-categories-grid { grid-template-columns: 1fr; }
  .nk-hero-stats { gap: 24px; }
  .nk-footer-grid { grid-template-columns: 1fr; }
  .nk-btn { padding: 14px 28px; }
  .nk-territories-grid { grid-template-columns: 1fr !important; }
  .nk-ranks-track { gap: 12px; }
  .nk-rank { font-size: 0.72rem; }
  .nk-rank-icon { width: 40px; height: 40px; font-size: 1rem; }
  .nk-phare-grid { grid-template-columns: 1fr !important; }
}

/* ═══════════════════════════════════════
   UNIVERSE THEME — v5.0 additions
   ═══════════════════════════════════════ */

/* ── Universe Hero ── */
.nk-universe-hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.nk-universe-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}

.nk-universe-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 253, 248, 0) 0%,
    rgba(255, 253, 248, 0) 30%,
    rgba(255, 253, 248, 0.6) 60%,
    rgba(255, 253, 248, 0.95) 80%,
    var(--bg) 100%
  );
  z-index: 1;
}

.nk-universe-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 32px 80px;
  max-width: 720px;
}

.nk-universe-hero-content .nk-display {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--text);
  margin-bottom: 20px;
}

.nk-universe-hero-content .nk-body-large {
  max-width: 540px;
  margin: 0 auto 36px;
}

/* ── Territory Cards ── */
.nk-territories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.nk-territory-card {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  transition: all 0.5s var(--ease);
  cursor: pointer;
  text-decoration: none;
}

.nk-territory-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.nk-territory-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.8s var(--ease);
}

.nk-territory-card:hover .nk-territory-card-img {
  transform: scale(1.05);
}

.nk-territory-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 39, 68, 0.85) 0%, rgba(26, 39, 68, 0.3) 50%, transparent 100%);
  z-index: 1;
}

.nk-territory-card-content {
  position: relative;
  z-index: 2;
}

.nk-territory-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 4px;
}

.nk-territory-count {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.02em;
}

.nk-territory-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 6px;
  line-height: 1.4;
}

.nk-territory-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  z-index: 2;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s var(--ease);
}

.nk-territory-card:hover .nk-territory-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── Ranks / Gamification ── */
.nk-ranks-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.nk-rank {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.3s var(--ease);
}

.nk-rank:hover { color: var(--gold); }

.nk-rank-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all 0.3s var(--ease);
}

.nk-rank:hover .nk-rank-icon {
  border-color: var(--gold-border);
  background: var(--gold-glow);
  box-shadow: var(--shadow-gold);
}

.nk-rank-sep {
  font-size: 1rem;
  color: var(--border-hover);
  margin-top: -20px;
}

/* ── Le Phare (parent questions) ── */
.nk-phare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.nk-phare-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--r);
  padding: 32px 28px;
  transition: all 0.4s var(--ease);
  display: block;
}

.nk-phare-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.nk-phare-card-q {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 12px;
}

.nk-phare-card-a {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.nk-phare-card-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
}

.nk-phare-card-link::after { content: ' \2192'; }

/* ── Equipage / Natural conversion ── */
.nk-equipage {
  text-align: center;
  padding: 100px 32px;
}

.nk-equipage .nk-headline {
  font-family: var(--serif);
  color: var(--text);
  margin-bottom: 16px;
}

.nk-equipage .nk-body-large {
  color: var(--text-soft);
  max-width: 480px;
  margin: 0 auto 40px;
}

.nk-equipage .nk-btn { margin-bottom: 24px; }

/* ── Responsive additions ── */
@media (max-width: 768px) {
  .nk-universe-hero { min-height: 85vh; }
  .nk-universe-hero-content { padding-bottom: 48px; }
  .nk-territories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .nk-territory-card { aspect-ratio: 3 / 2; }
  .nk-ranks-track { gap: 12px; }
  .nk-rank { font-size: 0.72rem; }
  .nk-rank-icon { width: 44px; height: 44px; }
  .nk-phare-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   v6.0 — TOP BAR (social + login)
   ═══════════════════════════════════════ */
.nk-top-bar {
  background: var(--deep);
  height: 40px;
  display: flex;
  align-items: center;
  transition: transform 0.3s var(--ease);
  z-index: 1001;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.nk-top-bar.is-hidden {
  transform: translateY(-100%);
}

.nk-top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nk-social-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nk-social-icons a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.nk-social-icons a:hover { color: #fff; }

.nk-top-bar-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nk-btn-login {
  padding: 4px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--r-pill);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.2s;
}

.nk-btn-login:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.nk-btn-signup {
  padding: 5px 18px;
  background: var(--gold);
  border-radius: var(--r-pill);
  color: var(--deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.2s;
}

.nk-btn-signup:hover {
  background: var(--gold-light);
}

/* ═══════════════════════════════════════
   v7.0 — NAV BAR simple layout
   ═══════════════════════════════════════ */

/* ═══════════════════════════════════════
   v6.0 — HERO ENHANCEMENTS
   ═══════════════════════════════════════ */
.nk-hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.nk-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.nk-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border: 1.5px solid var(--border-hover);
  border-radius: var(--r-pill);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  transition: all 0.3s var(--ease);
  background: transparent;
  cursor: pointer;
}

.nk-btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}

/* ═══════════════════════════════════════
   v6.0 — SECTION ORNAMENT
   ═══════════════════════════════════════ */
.nk-section-ornament {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════
   v6.0 — CAROUSEL
   ═══════════════════════════════════════ */
.nk-carousel {
  position: relative;
  margin-top: 48px;
  padding: 0 48px;
}

.nk-carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 16px 0;
}

.nk-carousel-track::-webkit-scrollbar { display: none; }

.nk-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.2s var(--ease);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.nk-carousel-arrow:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
  color: var(--gold);
}

.nk-carousel-prev { left: 0; }
.nk-carousel-next { right: 0; }

/* ═══════════════════════════════════════
   v6.0 — OVAL TERRITORY CARDS (HP style)
   ═══════════════════════════════════════ */
.nk-oval-card {
  flex: 0 0 200px;
  height: 280px;
  border-radius: 100px / 140px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  transition: all 0.5s var(--ease);
  display: block;
}

.nk-oval-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 60px rgba(26, 39, 68, 0.25);
}

.nk-oval-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.nk-oval-card:hover img {
  transform: scale(1.08);
}

.nk-oval-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 39, 68, 0.8) 0%, rgba(26, 39, 68, 0.15) 50%, transparent 100%);
  z-index: 1;
}

.nk-oval-card-content {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
  padding: 0 16px;
}

.nk-oval-card-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 4px;
}

.nk-oval-card-count {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════
   v6.0 — CAPTAIN NEA
   ═══════════════════════════════════════ */
.nk-captain {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  max-width: 860px;
  margin: 0 auto;
}

.nk-captain-avatar {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-glow), var(--bg-raised));
  border: 2px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}

.nk-captain-emoji {
  font-size: 3rem;
}

.nk-captain-content {
  flex: 1;
}

.nk-captain-content .nk-headline {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-style: italic;
  color: var(--text);
}

/* ═══════════════════════════════════════
   v6.0 — STORY CARDS (carousel items)
   ═══════════════════════════════════════ */
.nk-story-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  display: block;
}

.nk-story-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.nk-story-card-img {
  height: 180px;
  overflow: hidden;
}

.nk-story-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.nk-story-card:hover .nk-story-card-img img {
  transform: scale(1.05);
}

.nk-story-card-body {
  padding: 20px;
}

.nk-story-card-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nk-story-card-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 8px;
  display: block;
}

/* ═══════════════════════════════════════
   v6.0 — STEPS (how it works)
   ═══════════════════════════════════════ */
.nk-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 860px;
  margin: 48px auto 0;
  text-align: center;
}

.nk-step h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 16px 0 8px;
}

.nk-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.nk-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--deep);
  font-size: 1.2rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}

/* ═══════════════════════════════════════
   v6.0 — FOOTER SOCIAL
   ═══════════════════════════════════════ */
.nk-footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.nk-footer-social a {
  color: var(--text-muted);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.nk-footer-social a:hover { color: var(--gold); }

/* ═══════════════════════════════════════
   v6.0 — MOBILE MENU SOCIAL
   ═══════════════════════════════════════ */
.nk-mobile-menu-social {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  margin-top: 16px;
}

.nk-mobile-menu-social a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   v6.0 — FORM MESSAGES
   ═══════════════════════════════════════ */
.nk-form-message {
  margin-top: 12px;
  font-size: 0.85rem;
  text-align: center;
  min-height: 24px;
}

.nk-form-message.is-success { color: var(--emerald); }
.nk-form-message.is-error { color: #c44; }

/* ═══════════════════════════════════════
   v6.0 — RESPONSIVE ADDITIONS
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  .nk-top-bar { display: none; }

  /* Nav links hidden on mobile */

  .nk-carousel { padding: 0 20px; }
  .nk-carousel-arrow { display: none; }
  .nk-carousel-track { gap: 16px; }

  .nk-oval-card { flex: 0 0 160px; height: 220px; }

  .nk-story-card { flex: 0 0 240px; }
  .nk-story-card-img { height: 140px; }

  .nk-captain {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .nk-captain-avatar { width: 88px; height: 88px; }
  .nk-captain-emoji { font-size: 2.2rem; }

  .nk-captain-content .nk-ranks-track {
    justify-content: center !important;
  }

  .nk-steps { grid-template-columns: 1fr; gap: 32px; }

  .nk-hero-actions { flex-direction: column; align-items: center; }
  .nk-hero-actions .nk-btn { width: 100%; max-width: 300px; }
}

@media (max-width: 480px) {
  .nk-oval-card { flex: 0 0 140px; height: 200px; }
  .nk-story-card { flex: 0 0 220px; }
}

/* ═══════════════════════════════════════
   v7.0 — FRONT PAGE (Nuit Sacree)
   ═══════════════════════════════════════ */

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 168, 83, 0.08) 15%, rgba(212, 168, 83, 0.4) 50%, rgba(212, 168, 83, 0.08) 85%, transparent 100%);
  max-width: 600px;
  margin: 0 auto;
}

/* Stars */
.stars-field {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.stars-field::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 60% at 50% 0%, rgba(30, 50, 100, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(100, 80, 160, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 30% at 20% 30%, rgba(60, 90, 140, 0.08) 0%, transparent 50%);
}

.global-stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.stars-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.star {
  position: absolute;
  border-radius: 50%;
  animation: twinkle var(--duration) ease-in-out infinite;
  animation-delay: var(--delay);
}

.star.warm {
  background: rgba(212, 168, 83, 0.6);
  box-shadow: 0 0 4px rgba(212, 168, 83, 0.3);
}

.star.bright {
  background: rgba(200, 220, 255, 0.9);
  box-shadow: 0 0 6px rgba(200, 220, 255, 0.4), 0 0 12px rgba(200, 220, 255, 0.15);
}

@keyframes twinkle {
  0%, 100% { opacity: 0.1; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

@keyframes twinkleSlow {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  30% { opacity: 0.8; transform: scale(1.2); }
  70% { opacity: 0.5; transform: scale(1.1); }
}

.shooting-star {
  position: absolute;
  width: 100px; height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.8), transparent);
  opacity: 0;
  transform: rotate(-35deg);
  animation: shoot var(--shoot-duration, 1.2s) ease-out infinite;
  animation-delay: var(--shoot-delay, 0s);
}

.shooting-star::before {
  content: '';
  position: absolute;
  left: 0; top: -1px;
  width: 4px; height: 3px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 6px 2px rgba(255,255,255,0.5);
}

@keyframes shoot {
  0% { opacity: 0; transform: rotate(-35deg) translateX(0); }
  5% { opacity: 1; }
  30% { opacity: 0.6; }
  100% { opacity: 0; transform: rotate(-35deg) translateX(500px); }
}

.crescent {
  position: absolute;
  top: 12%; right: 12%;
  width: 80px; height: 80px;
  opacity: 0.15;
  animation: moonFloat 8s ease-in-out infinite;
}

@keyframes moonFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 24px 48px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 20%, rgba(212, 168, 83, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(45, 139, 78, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 30% 60%, rgba(212, 168, 83, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 20px;
  border: 1px solid rgba(212, 168, 83, 0.25);
  border-radius: 100px;
  margin-bottom: 48px;
  background: rgba(212, 168, 83, 0.06);
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-glow);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  text-shadow: 0 0 50px rgba(212, 168, 83, 0.3);
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: wordReveal 0.6s ease forwards;
}

@keyframes wordReveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-soft);
  max-width: 640px;
  margin: 0 auto 56px;
}

.hero-subtitle strong { color: var(--text); font-weight: 400; }

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--deep);
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-deep));
  padding: 18px 42px;
  border: none;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.35), 0 0 50px rgba(212, 168, 83, 0.12);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 83, 0.45), 0 0 70px rgba(212, 168, 83, 0.18);
}

.hero-cta svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.hero-cta:hover svg { transform: translateX(3px); }

/* Stats */
.stats { padding: 0 24px 100px; position: relative; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  padding: 48px 20px;
  background: linear-gradient(180deg, rgba(212, 168, 83, 0.06) 0%, transparent 100%);
  border: 1px solid rgba(212, 168, 83, 0.08);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.stat-item:hover {
  border-color: rgba(212, 168, 83, 0.18);
}

.stat-number {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 0 40px rgba(212, 168, 83, 0.25);
}

.stat-label {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
}

.stat-sublabel {
  font-size: 0.88rem;
  color: var(--text-soft);
  margin-top: 6px;
}

/* Section headers */
.section-header { text-align: center; margin-bottom: 80px; }

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
}

/* Values */
.values { padding: 120px 24px; position: relative; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  text-align: center;
  padding: 48px 32px;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.06) 0%, rgba(212, 168, 83, 0.03) 50%, rgba(212, 168, 83, 0.05) 100%);
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: 24px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.value-card:hover {
  border-color: rgba(212, 168, 83, 0.25);
  transform: translateY(-4px);
}

.value-number {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 0 40px rgba(212, 168, 83, 0.25);
}

.value-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.value-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-soft);
}

/* Collections */
.collections { padding: 0 24px 120px; position: relative; }

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.collection-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 83, 0.1);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.collection-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.collection-card:hover {
  border-color: rgba(212, 168, 83, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 26, 46, 0.1);
}

.collection-card:hover::before { opacity: 1; }

.collection-play {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--deep);
  box-shadow: 0 4px 16px rgba(212, 168, 83, 0.3);
  transition: all 0.3s ease;
}

.collection-card:hover .collection-play {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(212, 168, 83, 0.4);
}

.collection-play svg { width: 16px; height: 16px; }

.collection-episode-count {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.collection-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 8px;
}

.collection-desc {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* Ramadan */
.ramadan { padding: 120px 24px; position: relative; }

.ramadan-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 56px;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.08) 0%, rgba(212, 168, 83, 0.04) 50%, rgba(212, 168, 83, 0.06) 100%);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ramadan-card::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.ramadan-icon {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 20px rgba(212, 168, 83, 0.3));
}

.ramadan-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 18px;
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 100px;
  margin-bottom: 28px;
}

.ramadan-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 20px;
}

.ramadan-title .gold { color: var(--gold); }

.ramadan-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-soft);
  max-width: 480px;
  margin: 0 auto 40px;
}

.ramadan-text strong { color: var(--text); font-weight: 400; }

.email-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}

.email-input {
  flex: 1;
  padding: 16px 24px;
  background: rgba(26, 26, 46, 0.04);
  border: 1px solid rgba(26, 26, 46, 0.12);
  border-radius: 100px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}

.email-input:focus {
  border-color: rgba(212, 168, 83, 0.4);
  background: rgba(26, 26, 46, 0.06);
  box-shadow: 0 0 0 4px rgba(212, 168, 83, 0.1);
}

.email-input::placeholder { color: rgba(26, 26, 46, 0.35); }

.email-submit {
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-deep));
  color: var(--deep);
  border: none;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(212, 168, 83, 0.3);
}

.email-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 168, 83, 0.4);
}

.form-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 16px; }

/* Testimonial */
.testimonial { padding: 0 24px 120px; position: relative; }

.testimonial-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 32px;
}

.testimonial-stars { display: flex; gap: 4px; justify-content: center; margin-bottom: 24px; }
.testimonial-stars svg { width: 18px; height: 18px; fill: var(--gold); }

.testimonial-quote-mark {
  font-family: var(--serif);
  font-size: 5rem;
  color: rgba(212, 168, 83, 0.15);
  line-height: 0.5;
  display: block;
  margin-bottom: 16px;
}

.testimonial-text {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-text .highlight { color: var(--gold); font-weight: 500; }

.testimonial-author {
  font-size: 0.88rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Final CTA */
.final-cta { padding: 0 24px 120px; text-align: center; }

.final-cta-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 20px;
}

.final-cta-title em {
  font-style: italic;
  color: var(--gold);
  text-shadow: 0 0 40px rgba(212, 168, 83, 0.25);
}

.final-cta-text {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.final-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--deep);
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-deep));
  padding: 18px 42px;
  border: none;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.35), 0 0 50px rgba(212, 168, 83, 0.12);
}

.final-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 83, 0.45), 0 0 70px rgba(212, 168, 83, 0.18);
}

.final-cta-button svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.final-cta-button:hover svg { transform: translateX(3px); }

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 90;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--deep);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(212, 168, 83, 0.4), 0 0 60px rgba(212, 168, 83, 0.15);
  transition: all 0.3s ease;
}

.floating-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 168, 83, 0.5);
}

.floating-cta svg { width: 14px; height: 14px; }

/* Front page reveal (different from nk-reveal) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.8s var(--ease);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* Front page responsive */
@media (max-width: 768px) {
  .hero { padding: 140px 20px 40px; }
  .hero-badge { margin-bottom: 32px; }
  .hero-subtitle { font-size: 1.05rem; margin-bottom: 40px; }
  .hero-cta { padding: 16px 36px; font-size: 0.95rem; }
  .stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .stat-item { padding: 32px 20px; }
  .values { padding: 80px 20px; }
  .values-grid { grid-template-columns: 1fr; gap: 20px; }
  .collections { padding: 0 20px 80px; }
  .collections-grid { grid-template-columns: 1fr; gap: 16px; }
  .ramadan { padding: 80px 20px; }
  .ramadan-card { padding: 56px 28px; border-radius: 24px; }
  .email-form { flex-direction: column; }
  .email-submit { width: 100%; }
  .testimonial { padding: 0 20px 80px; }
  .final-cta { padding: 0 20px 80px; }
  .floating-cta { bottom: 20px; right: 20px; }
  .floating-cta a { padding: 12px 20px; font-size: 0.82rem; }
}

/* ═══════════════════════════════════════════════
   GHOST CONTENT — Dark theme overrides
   Forces dark palette on Ghost-imported pages
   ═══════════════════════════════════════════════ */

/* ── General: force text colors in Ghost pages ── */
.nk-page-full h1,
.nk-page-full h2,
.nk-page-full h3,
.nk-page-full h4 {
  color: var(--text) !important;
  font-family: var(--serif);
}

.nk-page-full p,
.nk-page-full li,
.nk-page-full span,
.nk-page-full label,
.nk-page-full td {
  color: var(--text-soft) !important;
}

.nk-page-full strong,
.nk-page-full b {
  color: var(--text) !important;
}

.nk-page-full a {
  color: var(--gold) !important;
}

/* ── Ghost article content (inline styles override) ── */
.nk-article-body [style*="color"],
.nk-page-full [style*="color"] {
  color: var(--text-soft) !important;
}

.nk-article-body [style*="background"],
.nk-page-full [style*="background"] {
  background-color: transparent !important;
  background-image: none !important;
}

/* Ghost kg-card elements */
.nk-article-body .kg-card,
.nk-article-body .kg-bookmark-card,
.nk-article-body .kg-callout-card {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  border-radius: 12px;
  color: var(--text-soft) !important;
}

.nk-article-body .kg-bookmark-title,
.nk-article-body .kg-callout-text {
  color: var(--text) !important;
}

.nk-article-body .kg-bookmark-description,
.nk-article-body .kg-bookmark-metadata {
  color: var(--text-muted) !important;
}

/* ── Details/Summary (FAQ — contact page) ── */
.nk-page-full details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}

.nk-page-full details[open] {
  border-color: var(--gold-border);
}

.nk-page-full summary {
  color: var(--text) !important;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.05rem;
  list-style: none;
}

.nk-page-full summary::marker,
.nk-page-full summary::-webkit-details-marker {
  display: none;
}

.nk-page-full details > p,
.nk-page-full details > div {
  margin-top: 12px;
  color: var(--text-soft) !important;
}

/* ── Forms in Ghost pages ── */
.nk-page-full input[type="email"],
.nk-page-full input[type="text"],
.nk-page-full textarea,
.nk-page-full select {
  background: var(--bg-raised) !important;
  color: var(--text) !important;
  border: 1px solid var(--border) !important;
  border-radius: 8px !important;
  padding: 14px 18px !important;
  font-family: var(--sans) !important;
  font-size: 0.95rem !important;
  width: 100%;
  transition: border-color 0.2s;
}

.nk-page-full input::placeholder,
.nk-page-full textarea::placeholder {
  color: var(--text-muted) !important;
}

.nk-page-full input:focus,
.nk-page-full textarea:focus {
  border-color: var(--gold) !important;
  outline: none;
}

.nk-page-full button[type="submit"],
.nk-page-full button[type="button"] {
  background: var(--gold) !important;
  color: var(--deep) !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 14px 28px !important;
  font-weight: 600 !important;
  font-family: var(--sans) !important;
  cursor: pointer;
  transition: all 0.2s;
}

.nk-page-full button[type="submit"]:hover,
.nk-page-full button[type="button"]:hover {
  background: var(--gold-light) !important;
}

/* ── Audio elements in Ghost pages ── */
.nk-page-full audio {
  width: 100%;
  border-radius: 8px;
}

/* ═══════════════════════════════════════════════
   RAMADAN PAGE — Dark theme override
   ═══════════════════════════════════════════════ */
.nk-ram {
  --cream: var(--bg-card) !important;
  --green-deep: var(--deep) !important;
  --green: #1A4A42 !important;
  --green-light: #2D7A6D !important;
  --text-dark: var(--text) !important;
  --text-body: var(--text-soft) !important;
  --text-light: var(--text-muted) !important;
  --white: transparent !important;
  font-family: var(--sans) !important;
}

.nk-ram h1, .nk-ram h2, .nk-ram h3 {
  font-family: var(--serif) !important;
}

.nk-ram-hero {
  background: linear-gradient(160deg, var(--bg-card) 0%, var(--bg-raised) 50%, var(--bg-card) 100%) !important;
  border-radius: 16px;
}

.nk-ram-how {
  background: transparent !important;
}

.nk-ram-how h2,
.nk-ram-how h3 {
  color: var(--text) !important;
}

.nk-ram-step p {
  color: var(--text-muted) !important;
}

.nk-ram-step-num {
  background: var(--gold) !important;
  color: var(--deep) !important;
}

.nk-ram-content {
  background: var(--bg-card) !important;
  border-radius: 16px;
}

.nk-ram-feature {
  background: var(--bg-raised) !important;
}

.nk-ram-preview {
  background: transparent !important;
}

.nk-ram-audio-card {
  background: var(--bg-card) !important;
  border: 1px solid var(--border);
}

.nk-ram-audio-title {
  color: var(--text) !important;
  font-family: var(--serif) !important;
}

.nk-ram-audio-desc {
  color: var(--text-muted) !important;
}

.nk-ram-cta {
  background: linear-gradient(160deg, var(--bg-card), var(--bg-raised)) !important;
  border-radius: 16px;
}

.nk-ram-btn {
  background: var(--gold) !important;
  color: var(--deep) !important;
  font-family: var(--sans) !important;
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.35) !important;
}

.nk-ram-btn:hover {
  background: var(--gold-light) !important;
  color: var(--deep) !important;
}

.nk-ram-input {
  background: rgba(26,26,46,0.04) !important;
  border-color: rgba(26,26,46,0.15) !important;
  color: var(--text) !important;
  font-family: var(--sans) !important;
}

/* ═══════════════════════════════════════════════
   CGV PAGE — Dark theme override
   ═══════════════════════════════════════════════ */
.nk-cgv {
  --cream: transparent !important;
  --cream-dark: var(--bg-card) !important;
  --text-dark: var(--text) !important;
  background: transparent !important;
  color: var(--text-soft) !important;
  font-family: var(--sans) !important;
}

.nk-cgv h1, .nk-cgv h2, .nk-cgv h3 {
  font-family: var(--serif) !important;
  color: var(--text) !important;
}

.nk-cgv p, .nk-cgv li, .nk-cgv td {
  color: var(--text-soft) !important;
}

.nk-cgv a {
  color: var(--gold) !important;
}

.nk-cgv-header {
  background: transparent !important;
  border-bottom-color: var(--border) !important;
}

.nk-cgv-highlight,
.nk-cgv .nk-cgv-highlight {
  background: var(--bg-card) !important;
  border-color: var(--gold-border) !important;
  border-left-color: var(--gold) !important;
}

.nk-cgv table,
.nk-cgv-table {
  border-color: var(--border) !important;
}

.nk-cgv th {
  background: var(--bg-card) !important;
  color: var(--text) !important;
  border-color: var(--border) !important;
}

.nk-cgv td {
  border-color: var(--border) !important;
}

.nk-cgv-footer {
  background: transparent !important;
  border-top-color: var(--border) !important;
}

/* ═══════════════════════════════════════════════
   PAGE CONTENT — Enhanced dark styling
   ═══════════════════════════════════════════════ */
.nk-page-content strong {
  color: var(--text);
}

.nk-page-content li::marker {
  color: var(--gold);
}

/* ── Collection play button (clickable) ── */
.collection-play {
  cursor: pointer;
  border: none;
  font: inherit;
  transition: all 0.3s ease;
}

.collection-play:hover {
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(212, 168, 83, 0.5);
}

.collection-card.is-playing .collection-play {
  background: var(--gold);
  box-shadow: 0 0 24px rgba(212, 168, 83, 0.6);
  animation: pulse-play 1.5s ease-in-out infinite;
}

@keyframes pulse-play {
  0%, 100% { box-shadow: 0 0 16px rgba(212, 168, 83, 0.4); }
  50% { box-shadow: 0 0 28px rgba(212, 168, 83, 0.7); }
}

/* Emoji headings (contact, manifeste) */
.nk-page-full > h2:first-child,
.nk-page-full > p:first-child {
  font-size: 1.6rem;
  color: var(--text) !important;
  margin-bottom: 24px;
}

/* ── Contact form ── */
.nk-contact-form {
  max-width: 560px;
  margin: 0 auto;
}

.nk-form-group {
  margin-bottom: 20px;
}

.nk-form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.nk-form-group input,
.nk-form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-raised);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.nk-form-group input:focus,
.nk-form-group textarea:focus {
  border-color: var(--gold);
  outline: none;
}

.nk-form-group input::placeholder,
.nk-form-group textarea::placeholder {
  color: var(--text-muted);
}

/* ── Details/Summary in nk-page-content ── */
.nk-page-content details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}

.nk-page-content details[open] {
  border-color: var(--gold-border);
}

.nk-page-content summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 500;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nk-page-content summary::marker,
.nk-page-content summary::-webkit-details-marker {
  display: none;
}

.nk-page-content summary::after {
  content: "\25BC";
  font-size: 10px;
  color: var(--gold);
  transition: transform 0.2s;
}

.nk-page-content details[open] summary::after {
  transform: rotate(180deg);
}

.nk-page-content details > div {
  padding: 0 20px 16px;
}

.nk-page-content details > div p {
  color: var(--text-soft);
}

/* ── Audio preview styling ── */
.nk-audio-preview {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.nk-audio-preview audio {
  width: 100%;
  height: 40px;
  border-radius: 8px;
}

/* ═══════════════════════════════════════════════
   LIGHT THEME — Hide dark sky elements
   ═══════════════════════════════════════════════ */
.global-stars,
.stars-field,
.crescent,
.shooting-star { display: none !important; }

/* ── Collection audio demo ── */
.collection-card {
  cursor: pointer;
}

.collection-card.is-playing .collection-play {
  background: var(--gold);
  color: var(--deep);
}

.collection-card.is-playing .collection-play svg {
  transform: scale(1.1);
}

/* ═══════════════════════════════════════════════
   BIBLIOTHÈQUE PAGE — Override inline styles
   ═══════════════════════════════════════════════ */
.nk-page-biblio {
  max-width: 100%;
  overflow: hidden;
}

/* Kill stray <p> tags injected by WordPress */
.nk-page-biblio .nk-bib p:empty,
.nk-page-biblio .nk-bib br:first-child {
  display: none;
}

/* Hero refinement */
.nk-page-biblio .nk-bib-hero {
  background: linear-gradient(170deg, var(--bg-card) 0%, var(--bg) 60%);
  padding: 72px 24px 56px;
}

.nk-page-biblio .nk-bib-hero h1 {
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nk-page-biblio .nk-bib-hero-sub {
  color: var(--text-soft);
  font-size: 1.05rem;
}

.nk-page-biblio .nk-bib-stat-num {
  font-family: Inter, system-ui, sans-serif;
  font-weight: 700;
  color: var(--gold-deep);
}

.nk-page-biblio .nk-bib-stat-lbl {
  color: var(--text-muted);
}

/* Season cards */
.nk-page-biblio .nk-bib-season {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
  transition: box-shadow 0.3s ease;
}

.nk-page-biblio .nk-bib-season:hover {
  box-shadow: var(--shadow-md);
}

.nk-page-biblio .nk-bib-season-header {
  padding: 28px 32px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}

.nk-page-biblio .nk-bib-season-title {
  font-family: Inter, system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text);
}

.nk-page-biblio .nk-bib-season-desc {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.nk-page-biblio .nk-bib-season-count {
  background: var(--gold-glow);
  color: var(--gold-deep);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--gold-border);
}

/* Collection tiles — the main improvement */
.nk-page-biblio .nk-bib-collections {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0;
  background: transparent;
  padding: 8px;
}

.nk-page-biblio .nk-bib-coll {
  background: var(--bg);
  padding: 20px 24px;
  border-radius: 12px;
  margin: 6px;
  border: 1px solid var(--border);
  transition: all 0.25s ease;
  position: relative;
  cursor: default;
}

.nk-page-biblio .nk-bib-coll::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  width: 3px;
  height: 24px;
  background: var(--gold);
  border-radius: 0 3px 3px 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.nk-page-biblio .nk-bib-coll:hover {
  background: var(--bg-card);
  border-color: var(--gold-border);
  box-shadow: 0 2px 12px rgba(212, 168, 83, 0.1);
  transform: translateY(-2px);
}

.nk-page-biblio .nk-bib-coll:hover::before {
  opacity: 1;
}

.nk-page-biblio .nk-bib-coll-name {
  font-family: Inter, system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 4px;
}

.nk-page-biblio .nk-bib-coll-ep {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* CTA bottom */
.nk-page-biblio .nk-bib-cta {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-card) 100%);
  border-radius: 16px;
  padding: 56px 24px;
  margin-top: 24px;
}

.nk-page-biblio .nk-bib-cta h2 {
  font-family: Inter, system-ui, sans-serif;
  font-weight: 600;
  color: var(--text);
}

.nk-page-biblio .nk-bib-cta p {
  color: var(--text-soft);
}

.nk-page-biblio .nk-bib-btn {
  background: var(--gold);
  color: var(--deep) !important;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(212, 168, 83, 0.3);
}

.nk-page-biblio .nk-bib-btn:hover {
  background: var(--gold-deep);
  color: var(--deep) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 168, 83, 0.4);
}

/* Seasons wrapper */
.nk-page-biblio .nk-bib-seasons {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 48px;
}

/* Responsive */
@media (max-width: 768px) {
  .nk-page-biblio .nk-bib-collections {
    grid-template-columns: 1fr;
    padding: 4px;
  }
  .nk-page-biblio .nk-bib-coll {
    margin: 4px;
  }
  .nk-page-biblio .nk-bib-season-header {
    flex-direction: column;
    padding: 20px;
  }
}

/* ═══════════════════════════════════════════════
   TARIFS PAGE — Mosaic, FAQ, Payment methods
   ═══════════════════════════════════════════════ */

/* Mosaic grid */
.nk-tarifs-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.nk-tarifs-mosaic-item {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--r);
  cursor: default;
  transition: all 0.4s var(--ease);
}

.nk-tarifs-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.nk-tarifs-mosaic-item:hover {
  box-shadow: 0 12px 40px rgba(212, 168, 83, 0.25);
  transform: translateY(-4px);
}

.nk-tarifs-mosaic-item:hover img {
  transform: scale(1.06);
}

.nk-tarifs-mosaic-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 16px 14px;
  background: linear-gradient(0deg, rgba(26, 26, 46, 0.8) 0%, transparent 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.nk-tarifs-mosaic-label small {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.7;
}

/* Audio preview player */
.nk-preview-card { cursor: pointer; }

.nk-preview-play {
  position: absolute;
  top: 10px; right: 10px;
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  z-index: 2;
  opacity: 0.85;
}
.nk-preview-card:hover .nk-preview-play { opacity: 1; background: rgba(200,150,30,0.8); }
.nk-preview-card.nk-playing .nk-preview-play { opacity: 1; background: rgba(200,150,30,0.85); }
.nk-preview-card.nk-playing .nk-play-icon { display: none; }
.nk-preview-card.nk-playing .nk-pause-icon { display: block !important; }

.nk-preview-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: var(--gold);
  width: 0%;
  transition: width 0.2s linear;
  z-index: 2;
}

/* Extras row — small thumbnails */
.nk-tarifs-extras {
  display: flex;
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.nk-tarifs-extras::-webkit-scrollbar { display: none; }

.nk-tarifs-extra-item {
  flex: 0 0 140px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.nk-tarifs-extra-item img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.nk-tarifs-extra-item span {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 8px 6px;
  background: linear-gradient(0deg, rgba(26,26,46,0.75) 0%, transparent 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
}

/* Trial notice under pricing CTA */
.nk-trial-notice {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(212, 168, 83, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  font-size: 0.78rem;
  color: var(--text-soft);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
}
.nk-trial-notice svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 1px;
}

/* Payment block — prominent trust section */
.nk-pay-block {
  max-width: 720px;
  margin: 48px auto 0;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  text-align: center;
}

.nk-pay-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
}

.nk-pay-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.nk-pay-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.nk-pay-badge svg {
  width: 56px;
  height: 36px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.nk-pay-badge span {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
}

.nk-pay-note {
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* FAQ */
.nk-tarifs-faq {
  max-width: 720px;
  margin: 0 auto;
}

.nk-tarifs-faq details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}

.nk-tarifs-faq details[open] {
  border-color: var(--gold-border);
}

.nk-tarifs-faq summary {
  color: var(--text);
  cursor: pointer;
  font-weight: 500;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nk-tarifs-faq summary::marker,
.nk-tarifs-faq summary::-webkit-details-marker { display: none; }

.nk-tarifs-faq summary::after {
  content: '';
  width: 10px; height: 10px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}

.nk-tarifs-faq details[open] summary::after {
  transform: rotate(-135deg);
}

.nk-tarifs-faq details p {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Tarifs page responsive */
@media (max-width: 768px) {
  .nk-tarifs-mosaic { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .nk-tarifs-mosaic-item:nth-child(n+7) { display: none; }
}

@media (max-width: 480px) {
  .nk-tarifs-mosaic { grid-template-columns: 1fr; }
  .nk-tarifs-mosaic-item:nth-child(n+5) { display: none; }
}
