
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy:    #1a2340;
    --navy-lt: #2c3a5e;
    --gold:     #ffbf00;
    --gold-lt: #c9a852;
    --sage:    #5a8c62;
    --amber:   #9e7e28;
    --mist:    #f5f6f8;
    --white:   #ffffff;
    --rule:    rgba(26,35,64,0.09);
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--navy);
    font-family: 'Inter', sans-serif;
    color: var(--white);
    overflow-x: hidden;
  }

  /* ── HERO BAND ── */
  .nm-hero {
    position: relative;
    min-height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 8vw 80px;
    overflow: hidden;
  }

  /* Animated grid background */
  .grid-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(184,149,53,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(184,149,53,0.06) 1px, transparent 1px);
    background-size: 64px 64px;
    animation: gridDrift 30s linear infinite;
  }
  @keyframes gridDrift {
    from { transform: translate(0,0); }
    to   { transform: translate(64px, 64px); }
  }

  /* Pulse rings */
  .pulse-wrap {
    position: absolute;
    top: 50%; right: 10%;
    transform: translateY(-50%);
    width: 480px; height: 480px;
  }
  .pulse-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(184,149,53,0.15);
    animation: pulseRing 4s ease-out infinite;
  }
  .pulse-ring:nth-child(2) { animation-delay: 1.3s; }
  .pulse-ring:nth-child(3) { animation-delay: 2.6s; }
  @keyframes pulseRing {
    0%   { transform: scale(0.3); opacity: 0.7; }
    100% { transform: scale(1);   opacity: 0; }
  }
  .pulse-core {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--sage);
    box-shadow: 0 0 0 6px rgba(90,140,98,0.15), 0 0 0 14px rgba(90,140,98,0.07);
    animation: corePulse 2s ease-in-out infinite;
  }
  @keyframes corePulse {
    0%, 100% { transform: translate(-50%,-50%) scale(1); }
    50%       { transform: translate(-50%,-50%) scale(1.3); }
  }

  /* Hero content */
  .nm-hero-content { position: relative; z-index: 2; max-width: 640px; }

  .nm-eyebrow {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.7s 0.1s ease forwards;
  }
  .nm-eyebrow::before {
    content: '';
    width: 32px; height: 1px;
    background: var(--gold);
    opacity: 0.5;
  }

  .nm-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 7vw, 80px);
    font-weight: 300;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.7s 0.25s ease forwards;
  }
  .nm-headline em { font-style: italic; color: var(--gold-lt); }

  .nm-lead {
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255,255,255,0.5);
    max-width: 520px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.7s 0.4s ease forwards;
  }

  .nm-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(184,149,53,0.25);
    padding: 10px 20px;
    border-radius: 2px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    opacity: 0;
    animation: fadeUp 0.7s 0.55s ease forwards;
  }
  .status-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--sage);
    box-shadow: 0 0 8px var(--sage);
    animation: corePulse 2s ease-in-out infinite;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── PROBLEM BAND ── */
  .nm-problem {
    background: #ffbf00;
    padding: 80px 8vw;
    position: relative;
    overflow: hidden;
  }
  .nm-problem::before {
    content: '"';
    position: absolute;
    top: -40px; left: 6vw;
    font-family: 'Cormorant Garamond', serif;
    font-size: 320px;
    font-weight: 600;
    color: rgba(184,149,53,0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
  }
  .problem-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 3.5vw, 38px);
    font-weight: 300;
    font-style: italic;
    color: #1a2340;
    line-height: 1.45;
    max-width: 760px;
    margin-bottom: 24px;
  }
  .problem-quote strong {
    font-style: normal;
    font-weight: 600;
    color: #1a2340;
  }
  .problem-note {
    font-size: 15px;
    font-weight: 300;
    color: #1a2340;
    letter-spacing: 0.5px;
    line-height: 1.7;
    max-width: 560px;
  }

  /* ── WHAT WE MONITOR ── */
  .nm-monitors {
    background: var(--navy);
    padding: 100px 8vw;
  }
  .section-label {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .section-label::before { content: ''; width: 24px; height: 1px; background: var(--gold); opacity: 0.4; }

  .section-title {
    font-family: 'Inter', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 60px;
    max-width: 540px;
  }
  .section-title em { font-style: italic; color: #ffbf00; }

  .monitor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
  }

  .monitor-item {
    background: var(--navy);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
    cursor: default;
  }
  .monitor-item::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.35s ease;
  }
  .monitor-item:hover { background: #1f2b4a; }
  .monitor-item:hover::before { width: 100%; }

  .monitor-icon {
    width: 100px; height: 100px;
    border: 1px solid rgba(184,149,53,0.2);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 16px;
    transition: border-color 0.3s;
  }
  .monitor-item:hover .monitor-icon { border-color: var(--gold); }

  .monitor-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 0.2px;
  }
  .monitor-desc {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.38);
    line-height: 1.7;
  }

  /* Live indicator bar */
  .monitor-live {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sage);
    opacity: 0.7;
  }
  .live-bar {
    display: flex;
    gap: 2px;
    align-items: flex-end;
    height: 14px;
  }
  .live-bar span {
    width: 2px;
    background: var(--sage);
    border-radius: 1px;
    animation: barAnim 1.4s ease-in-out infinite;
  }
  .live-bar span:nth-child(1) { height: 4px;  animation-delay: 0s; }
  .live-bar span:nth-child(2) { height: 10px; animation-delay: 0.15s; }
  .live-bar span:nth-child(3) { height: 6px;  animation-delay: 0.3s; }
  .live-bar span:nth-child(4) { height: 12px; animation-delay: 0.45s; }
  .live-bar span:nth-child(5) { height: 7px;  animation-delay: 0.6s; }
  @keyframes barAnim {
    0%,100% { opacity: 0.3; }
    50%      { opacity: 1; }
  }

  /* ── WHY IT MATTERS ── */
  .nm-why {
    background: #0f1520;
    padding: 100px 8vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .why-left .section-label { margin-bottom: 16px; }
  .why-left .section-title { margin-bottom: 24px; }

  .why-body {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    line-height: 1.85;
    margin-bottom: 36px;
  }

  .nm-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--gold);
    padding: 14px 28px;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--gold);
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.25s ease;
    cursor: pointer;
    background: none;
    font-family: 'DM Sans', sans-serif;
  }
  .nm-cta:hover { background: #ffbf00; color: var(--navy); }
  .nm-cta::after { content: '→'; font-size: 14px; }

  /* Stats column */
  .why-stats { display: flex; flex-direction: column; gap: 1px; }

  .stat-block {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 32px 36px;
    position: relative;
    transition: background 0.3s;
  }
  .stat-block:hover { background: rgba(255,255,255,0.06); }
  .stat-block::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 3px; height: 0;
    background: var(--gold);
    transition: height 0.35s ease;
  }
  .stat-block:hover::before { height: 100%; }

  .stat-num {
    font-family: 'Inter', serif;
    font-size: 52px;
    font-weight: 300;
    color:#ffbf00;
    line-height: 1;
    margin-bottom: 6px;
  }
  .stat-label {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
  }
  .stat-sub {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.28);
    line-height: 1.6;
  }

  /* ── CLOSING BAND ── */
  .nm-close {
    background: var(--gold);
    padding: 72px 8vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  .close-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 300;
    color: var(--navy);
    line-height: 1.2;
    max-width: 560px;
  }
  .close-text strong { font-weight: 600; }
  .nm-cta-dark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--navy);
    padding: 16px 32px;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    font-family: 'DM Sans', sans-serif;
    white-space: nowrap;
  }
  .nm-cta-dark:hover { background: #0f1520; transform: translateY(-2px); }
  .nm-cta-dark::after { content: '→'; font-size: 14px; }

  /* ── SCROLL REVEAL ── */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  @media (max-width: 768px) {
    .nm-why { grid-template-columns: 1fr; gap: 48px; }
    .pulse-wrap { display: none; }
    .nm-close { flex-direction: column; align-items: flex-start; }
    .monitor-grid { grid-template-columns: 1fr; }
  }
