/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 1218:0 Unexpected "<"

**/
<style>
  /* ══════════════════════════════════════════════
     SHOPIFY RESET — hides Dawn theme header on this page
  ══════════════════════════════════════════════ */
  .shopify-section-header,
  header.site-header,
  #shopify-section-header,
  .section-header {
    display: none !important;
  }

  /* ══════════════════════════════════════════════
     SCOPED RESET — prevents Dawn CSS from bleeding in
  ══════════════════════════════════════════════ */
  #nmg-landing,
  #nmg-landing *,
  #nmg-landing *::before,
  #nmg-landing *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: inherit;
    line-height: inherit;
  }

  /* ══════════════════════════════════════════════
     NUCLEAR COLOUR OVERRIDE
     Forces all text to be visible against dark bg,
     overriding anything Shopify/Dawn injects
  ══════════════════════════════════════════════ */
  #nmg-landing h1,
  #nmg-landing h2,
  #nmg-landing h3,
  #nmg-landing h4,
  #nmg-landing h5,
  #nmg-landing h6 {
    color: #FFFFFF !important;
  }

  #nmg-landing p,
  #nmg-landing li,
  #nmg-landing span,
  #nmg-landing div {
    color: inherit;
  }

  #nmg-landing p { color: #AABBCC !important; }
  #nmg-landing li { color: #AABBCC !important; }

  /* Sections must have correct backgrounds */
  #nmg-landing section,
  #nmg-landing div.stats-bar,
  #nmg-landing div.announce-bar {
    background-color: transparent;
  }

  #nmg-landing {
    --gold: #C9A84C;
    --gold-lt: #F0D080;
    --gold-dim: #8A6E2F;
    --navy: #0A1628;
    --navy-d: #060E1A;
    --navy-mid: #0D1E36;
    --white: #FFFFFF;
    --off-white: #F0EAE0;
    --gray: #888888;
    --gray-lt: #AABBCC;
    --dark: #111111;

    background: #060E1A !important;
    color: #F0EAE0 !important;
    font-family: 'Barlow', sans-serif !important;
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
  }

  /* ── NOISE TEXTURE OVERLAY ── */
  #nmg-landing::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
  }

  /* ── TYPOGRAPHY ── */
  #nmg-landing .display {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.02em;
  }

  #nmg-landing .condensed {
    font-family: 'Barlow Condensed', sans-serif !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* ── LAYOUT ── */
  #nmg-landing .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
  }

  #nmg-landing .container-wide {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
  }

  /* ══════════════════════════════════════════════
     ANNOUNCEMENT BAR
  ══════════════════════════════════════════════ */
  #nmg-landing .announce-bar {
    background: #C9A84C !important;
    padding: 1px 1px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
  }

  #nmg-landing .announce-bar p {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #060E1A !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  #nmg-landing .announce-bar span {
    text-decoration: line-through;
    opacity: 0.6;
    margin-right: 6px;
  }

  /* ══════════════════════════════════════════════
     HERO
  ══════════════════════════════════════════════ */
  #nmg-landing .hero {
    min-height: 55vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 10px 10px;
    position: relative;
    overflow: hidden;
    background: #060E1A !important;
  }

  #nmg-landing .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.08) 0%, transparent 70%),
      radial-gradient(ellipse 60% 80% at 20% 80%, rgba(10,22,40,0.9) 0%, transparent 60%),
      radial-gradient(ellipse 60% 80% at 80% 20%, rgba(6,14,26,0.8) 0%, transparent 60%);
    z-index: 0;
  }

  #nmg-landing .hero::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 1px;
    height: 65px;
    background: linear-gradient(to bottom, transparent, #C9A84C);
    z-index: 1;
  }

  #nmg-landing .hero-inner {
    position: relative;
    z-index: 2;
    animation: nmgFadeUp 1s ease both;
  }

  @keyframes nmgFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  #nmg-landing .hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #C9A84C !important;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }

  #nmg-landing .hero-eyebrow::before,
  #nmg-landing .hero-eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: #8A6E2F;
  }

  #nmg-landing .hero-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 700 !important;
    font-size: clamp(64px, 12vw, 130px) !important;
    line-height: 0.9 !important;
    letter-spacing: -0.02em;
    color: #FFFFFF !important;
    margin-bottom: 8px;
  }

  #nmg-landing .hero-title .gold { color: #F0D080 !important; }
  #nmg-landing .hero-title .outline {
    -webkit-text-stroke: 1px #8A6E2F;
    color: transparent !important;
  }

  #nmg-landing .hero-subtitle {
    font-family: 'Cormorant Garamond', serif !important;
    font-style: italic;
    font-size: clamp(18px, 3vw, 26px) !important;
    color: #AABBCC !important;
    margin: 24px 0 48px;
    font-weight: 300;
  }

  #nmg-landing .hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  #nmg-landing .btn-primary {
    display: inline-block;
    background: #C9A84C !important;
    color: #060E1A !important;
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 800 !important;
    font-size: 15px !important;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 18px 20px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none !important;
    border-radius: 0 !important;
  }

  #nmg-landing .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #F0D080;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  #nmg-landing .btn-primary:hover::before { transform: translateX(0); }
  #nmg-landing .btn-primary span { position: relative; z-index: 1; color: #060E1A !important; }

  #nmg-landing .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201,168,76,0.3);
  }

  #nmg-landing .price-display {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: 13px !important;
    letter-spacing: 0.1em;
    color: #888888 !important;
  }

  #nmg-landing .price-display strong {
    color: #F0D080 !important;
    font-size: 18px !important;
  }

  #nmg-landing .price-display s { color: #888888 !important; }

  #nmg-landing .hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: nmgBounce 2s infinite;
  }

  @keyframes nmgBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
  }

  #nmg-landing .hero-scroll span {
    display: block;
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, #C9A84C, transparent);
    margin: 0 auto;
  }

  /* ══════════════════════════════════════════════
     SECTION DIVIDER
  ══════════════════════════════════════════════ */
  #nmg-landing .divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 auto 60px;
    max-width: 300px;
  }

  #nmg-landing .divider::before, #nmg-landing .divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, #8A6E2F);
  }

  #nmg-landing .divider::after {
    background: linear-gradient(to left, transparent, #8A6E2F);
  }

  #nmg-landing .divider-diamond {
    width: 8px;
    height: 8px;
    background: #C9A84C;
    transform: rotate(45deg);
    flex-shrink: 0;
  }

  /* ══════════════════════════════════════════════
     PROBLEM SECTION
  ══════════════════════════════════════════════ */
  #nmg-landing .problem-section {
    padding: 20px 20px;
    background: linear-gradient(to bottom, #060E1A, #0A1628) !important;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  #nmg-landing .section-label {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #C9A84C !important;
    margin-bottom: 24px;
    display: block;
  }

  #nmg-landing .problem-statement {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(28px, 5vw, 52px) !important;
    font-weight: 600 !important;
    line-height: 1.15;
    color: #FFFFFF !important;
    max-width: 750px;
    margin: 0 auto 40px;
  }

  #nmg-landing .problem-statement em {
    font-style: italic;
    color: #F0D080 !important;
  }

  #nmg-landing .problem-body {
    font-size: 17px !important;
    color: #AABBCC !important;
    max-width: 580px;
    margin: 0 auto 60px;
    line-height: 1.8;
  }

  #nmg-landing .problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2px;
    max-width: 900px;
    margin: 0 auto;
  }

  #nmg-landing .problem-card {
    background: #0D1E36 !important;
    padding: 36px 28px;
    text-align: left;
    border-top: 2px solid #8A6E2F !important;
    transition: border-color 0.3s;
  }

  #nmg-landing .problem-card:hover { border-color: #C9A84C !important; }

  #nmg-landing .problem-card-x {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 36px !important;
    color: #8A6E2F !important;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 14px;
  }

  #nmg-landing .problem-card h3 {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFFFFF !important;
    margin-bottom: 10px;
  }

  #nmg-landing .problem-card p {
    font-size: 14px !important;
    color: #888888 !important;
    line-height: 1.7;
  }

  /* ══════════════════════════════════════════════
     TEASE / SECRET SECTION
  ══════════════════════════════════════════════ */
  #nmg-landing .tease-section {
    padding: 20px 20-px;
    background: #0A1628 !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  #nmg-landing .tease-section::before {
    content: 'NEW MONEY';
    position: absolute;
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 900;
    font-size: clamp(80px, 18vw, 200px);
    color: rgba(201,168,76,0.03);
    white-space: nowrap;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: 0.05em;
    pointer-events: none;
  }

  #nmg-landing .tease-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  #nmg-landing .tease-headline {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(36px, 6vw, 68px) !important;
    font-weight: 700;
    line-height: 1.05;
    color: #FFFFFF !important;
    margin-bottom: 28px;
  }

  #nmg-landing .tease-headline .gold { color: #F0D080 !important; }

  #nmg-landing .tease-body {
    font-size: 17px !important;
    color: #AABBCC !important;
    line-height: 1.8;
    margin-bottom: 60px;
  }

  #nmg-landing .reveal-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
  }

  #nmg-landing .reveal-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 28px;
    background: #0D1E36 !important;
    border-left: 3px solid #C9A84C !important;
    transition: all 0.3s;
  }

  #nmg-landing .reveal-item:hover {
    background: rgba(201,168,76,0.05) !important;
    transform: translateX(6px);
  }

  #nmg-landing .reveal-number {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 32px !important;
    font-weight: 700;
    color: #8A6E2F !important;
    line-height: 1;
    flex-shrink: 0;
    min-width: 36px;
  }

  #nmg-landing .reveal-text h4 {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FFFFFF !important;
    margin-bottom: 6px;
  }

  #nmg-landing .reveal-text p {
    font-size: 14px !important;
    color: #888888 !important;
    line-height: 1.6;
  }

  /* ══════════════════════════════════════════════
     STATS BAR
  ══════════════════════════════════════════════ */
  #nmg-landing .stats-bar {
    background: #C9A84C !important;
    padding: 48px 24px;
    position: relative;
    z-index: 1;
  }

  #nmg-landing .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }

  #nmg-landing .stat-item { padding: 0 20px; }

  #nmg-landing .stat-num {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(42px, 7vw, 72px) !important;
    font-weight: 700;
    color: #060E1A !important;
    line-height: 1;
    display: block;
  }

  #nmg-landing .stat-label {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(6,14,26,0.6) !important;
    display: block;
    margin-top: 6px;
  }

  /* ══════════════════════════════════════════════
     BUNDLE SECTION
  ══════════════════════════════════════════════ */
  #nmg-landing .bundle-section {
    padding: 20px 20px;
    background: #060E1A !important;
    position: relative;
    z-index: 1;
  }

  #nmg-landing .bundle-header {
    text-align: center;
    margin-bottom: 70px;
  }

  #nmg-landing .bundle-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(38px, 6vw, 64px) !important;
    font-weight: 700;
    color: #FFFFFF !important;
    line-height: 1.1;
    margin-bottom: 16px;
  }

  #nmg-landing .bundle-title span { color: #F0D080 !important; }

  #nmg-landing .bundle-sub {
    font-size: 16px !important;
    color: #888888 !important;
    max-width: 500px;
    margin: 0 auto;
  }

  #nmg-landing .books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2px;
    margin-bottom: 60px;
  }

  #nmg-landing .book-card {
    background: #0D1E36 !important;
    padding: 44px 32px;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #8A6E2F !important;
    transition: border-color 0.3s;
  }

  #nmg-landing .book-card:hover { border-color: #C9A84C !important; }

  #nmg-landing .book-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 120px; height: 120px;
    background: radial-gradient(circle at top right, rgba(201,168,76,0.06), transparent);
  }

  #nmg-landing .book-num {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 80px !important;
    font-weight: 700;
    color: rgba(201,168,76,0.08) !important;
    position: absolute;
    top: 12px;
    right: 20px;
    line-height: 1;
    pointer-events: none;
  }

  #nmg-landing .book-label {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #C9A84C !important;
    margin-bottom: 12px;
    display: block;
  }

  #nmg-landing .book-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 28px !important;
    font-weight: 700;
    color: #FFFFFF !important;
    line-height: 1.15;
    margin-bottom: 20px;
  }

  #nmg-landing .book-tagline {
    font-family: 'Cormorant Garamond', serif !important;
    font-style: italic;
    font-size: 15px !important;
    color: #F0D080 !important;
    margin-bottom: 24px;
    display: block;
  }

  #nmg-landing .book-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
  }

  #nmg-landing .book-features li {
    font-size: 13.5px !important;
    color: #AABBCC !important;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
  }

  #nmg-landing .book-features li::before {
    content: '→';
    color: #8A6E2F !important;
    flex-shrink: 0;
    font-size: 12px;
    margin-top: 1px;
  }

  /* Value Stack */
  #nmg-landing .value-stack {
    background: #0D1E36 !important;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto 50px;
    border: 1px solid #8A6E2F !important;
    position: relative;
  }

  #nmg-landing .value-stack::before {
    content: 'TOTAL VALUE';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #0D1E36 !important;
    padding: 0 12px;
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    letter-spacing: 0.25em;
    color: #C9A84C !important;
  }

  #nmg-landing .value-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(201,168,76,0.1) !important;
  }

  #nmg-landing .value-row:last-child { border-bottom: none !important; }

  #nmg-landing .value-row span:first-child {
    font-size: 14px !important;
    color: #AABBCC !important;
  }

  #nmg-landing .value-row span:last-child {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #F0D080 !important;
    letter-spacing: 0.05em;
  }

  #nmg-landing .value-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 0;
    margin-top: 8px;
    border-top: 2px solid #8A6E2F !important;
  }

  #nmg-landing .value-total span:first-child {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 800 !important;
    font-size: 16px !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #FFFFFF !important;
  }

  #nmg-landing .value-total .price-strike {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 22px !important;
    color: #888888 !important;
    text-decoration: line-through;
    margin-right: 12px;
  }

  #nmg-landing .value-total .price-real {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 42px !important;
    font-weight: 700;
    color: #F0D080 !important;
    line-height: 1;
  }

  /* ══════════════════════════════════════════════
     CTA SECTION
  ══════════════════════════════════════════════ */
  #nmg-landing .cta-section {
    padding: 20px 20px;
    background: #0A1628 !important;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  #nmg-landing .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(201,168,76,0.07), transparent);
  }

  #nmg-landing .cta-inner { position: relative; z-index: 1; }

  #nmg-landing .cta-headline {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(36px, 6vw, 70px) !important;
    font-weight: 700;
    color: #FFFFFF !important;
    line-height: 1.05;
    margin-bottom: 20px;
  }

  #nmg-landing .cta-headline span { color: #F0D080 !important; }

  #nmg-landing .cta-sub {
    font-size: 17px !important;
    color: #AABBCC !important;
    max-width: 500px;
    margin: 0 auto 48px;
    line-height: 1.7;
  }

  #nmg-landing .cta-box {
    background: #0D1E36 !important;
    border: 1px solid #8A6E2F !important;
    max-width: 480px;
    margin: 0 auto;
    padding: 48px 40px;
  }

  #nmg-landing .cta-price-block {
    margin-bottom: 32px;
  }

  #nmg-landing .cta-price-label {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #C9A84C !important;
    margin-bottom: 10px;
    display: block;
  }

  #nmg-landing .cta-price {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 78px !important;
    font-weight: 700;
    color: #FFFFFF !important;
    line-height: 1;
  }

  #nmg-landing .cta-price sup {
    font-size: 32px !important;
    vertical-align: super;
    color: #F0D080 !important;
  }

  #nmg-landing .cta-price-was {
    font-size: 14px !important;
    color: #888888 !important;
    margin-top: 6px;
  }

  #nmg-landing .cta-price-was s { color: #888888 !important; }

  #nmg-landing .btn-buy {
    display: block;
    width: 100%;
    background: #C9A84C !important;
    color: #060E1A !important;
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 900 !important;
    font-size: 16px !important;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 20px 24px;
    border: none !important;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none !important;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    border-radius: 0 !important;
  }

  #nmg-landing .btn-buy::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #F0D080;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }

  #nmg-landing .btn-buy:hover::after { transform: scaleX(1); }
  #nmg-landing .btn-buy span { position: relative; z-index: 1; color: #060E1A !important; }
  #nmg-landing .btn-buy:hover { box-shadow: 0 16px 48px rgba(201,168,76,0.25); }

  #nmg-landing .cta-guarantee {
    font-size: 12px !important;
    color: #888888 !important;
    line-height: 1.6;
    margin-top: 20px;
  }

  #nmg-landing .cta-guarantee strong { color: #AABBCC !important; }

  #nmg-landing .cta-includes {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(201,168,76,0.15) !important;
  }

  #nmg-landing .cta-include-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px !important;
    color: #AABBCC !important;
    text-align: left;
  }

  #nmg-landing .cta-include-item::before {
    content: '✓';
    color: #C9A84C !important;
    font-weight: 700;
    flex-shrink: 0;
  }

  /* ══════════════════════════════════════════════
     TESTIMONIALS
  ══════════════════════════════════════════════ */
  #nmg-landing .testimonials {
    padding: 40px 20px;
    background: #060E1A !important;
    position: relative;
    z-index: 1;
  }

  #nmg-landing .testimonials-header {
    text-align: center;
    margin-bottom: 60px;
  }

  #nmg-landing .testimonials-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(30px, 5vw, 50px) !important;
    font-weight: 700;
    color: #FFFFFF !important;
    margin-bottom: 12px;
  }

  #nmg-landing .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
    max-width: 950px;
    margin: 0 auto;
  }

  #nmg-landing .testimonial-card {
    background: #0D1E36 !important;
    padding: 36px 30px;
    position: relative;
  }

  #nmg-landing .testimonial-quote {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 64px !important;
    color: #C9A84C !important;
    line-height: 0.6;
    margin-bottom: 16px;
    opacity: 0.4;
  }

  #nmg-landing .testimonial-text {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 18px !important;
    font-style: italic;
    color: #F0EAE0 !important;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  #nmg-landing .testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  #nmg-landing .testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #8A6E2F !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 18px !important;
    font-weight: 700;
    color: #060E1A !important;
    flex-shrink: 0;
  }

  #nmg-landing .testimonial-name {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FFFFFF !important;
    display: block;
  }

  #nmg-landing .testimonial-detail {
    font-size: 12px !important;
    color: #8A6E2F !important;
  }

  /* ══════════════════════════════════════════════
     FAQ
  ══════════════════════════════════════════════ */
  #nmg-landing .faq-section {
    padding: 100px 24px;
    background: #0A1628 !important;
    position: relative;
    z-index: 1;
  }

  #nmg-landing .faq-header {
    text-align: center;
    margin-bottom: 60px;
  }

  #nmg-landing .faq-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(30px, 5vw, 50px) !important;
    font-weight: 700;
    color: #FFFFFF !important;
  }

  #nmg-landing .faq-list {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  #nmg-landing .faq-item {
    background: #0D1E36 !important;
    overflow: hidden;
  }

  #nmg-landing .faq-question {
    width: 100%;
    background: none !important;
    border: none !important;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: #FFFFFF !important;
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s;
    gap: 16px;
    box-shadow: none !important;
    outline: none;
  }

  #nmg-landing .faq-question:hover { color: #F0D080 !important; }

  #nmg-landing .faq-icon {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 28px !important;
    color: #C9A84C !important;
    flex-shrink: 0;
    transition: transform 0.3s;
    line-height: 1;
  }

  #nmg-landing .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
  }

  #nmg-landing .faq-answer-inner {
    padding: 0 28px 24px;
    font-size: 15px !important;
    color: #AABBCC !important;
    line-height: 1.75;
  }

  #nmg-landing .faq-item.open .faq-icon { transform: rotate(45deg); }
  #nmg-landing .faq-item.open .faq-answer { max-height: 300px; }

  /* ══════════════════════════════════════════════
     FINAL CTA
  ══════════════════════════════════════════════ */
  #nmg-landing .final-cta {
    padding: 60px 24px;
    background: #060E1A !important;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  #nmg-landing .final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,168,76,0.06), transparent);
  }

  #nmg-landing .final-cta-inner { position: relative; z-index: 1; }

  #nmg-landing .final-cta-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(42px, 8vw, 90px) !important;
    font-weight: 700;
    line-height: 0.95;
    color: #FFFFFF !important;
    margin-bottom: 32px;
  }

  #nmg-landing .final-cta-title .gold { color: #F0D080 !important; }
  #nmg-landing .final-cta-title .dim { color: #8A6E2F !important; }

  #nmg-landing .final-cta-body {
    font-family: 'Cormorant Garamond', serif !important;
    font-style: italic;
    font-size: clamp(18px, 3vw, 26px) !important;
    color: #AABBCC !important;
    max-width: 560px;
    margin: 0 auto 52px;
    line-height: 1.5;
  }

  /* ══════════════════════════════════════════════
     FOOTER
  ══════════════════════════════════════════════ */
  #nmg-landing footer {
    background: #060E1A !important;
    border-top: 1px solid rgba(201,168,76,0.15) !important;
    padding: 40px 24px;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  #nmg-landing footer p {
    font-size: 12px !important;
    color: #888888 !important;
    line-height: 1.8;
  }

  #nmg-landing footer strong { color: #8A6E2F !important; }

  #nmg-landing footer a {
    color: #8A6E2F !important;
    text-decoration: none !important;
  }

  /* ══════════════════════════════════════════════
     SCROLL ANIMATIONS
  ══════════════════════════════════════════════ */
  #nmg-landing .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  #nmg-landing .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ══════════════════════════════════════════════
     RESPONSIVE
  ══════════════════════════════════════════════ */
  @media (max-width: 600px) {
    #nmg-landing .problem-grid { grid-template-columns: 1fr; }
    #nmg-landing .books-grid { grid-template-columns: 1fr; }
    #nmg-landing .testimonials-grid { grid-template-columns: 1fr; }
    #nmg-landing .stats-grid { grid-template-columns: repeat(2, 1fr); }
    #nmg-landing .value-stack { padding: 32px 24px; }
    #nmg-landing .cta-box { padding: 36px 24px; }
  }
</style>