@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700;800&display=swap');
/* ==========================================================================
   Fluint Design System · Colors + Type Tokens
   --------------------------------------------------------------------------
   Tokens derived from fluint.io marketing site + product. Load this file in
   any artifact that wants Fluint's look:
     <link rel="stylesheet" href="/colors_and_type.css">
   ========================================================================== */

/* Inter + IBM Plex Mono via Google Fonts (Inter confirmed on fluint.io;
   mono is a reasonable match for the small amount of UI/meta copy) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500&family=Fraunces:ital,wght@1,400&display=swap');

:root {
  /* --------------------------------------------------------------------
     CORE PALETTE
     -------------------------------------------------------------------- */

  /* Brand gradient — the single most-identifiable Fluint mark */
  --flu-orange:        #258BBE;   /* warm end of the brand gradient */
  --flu-orange-600:    #186D98;
  --flu-orange-100:    #FBEADE;
  --flu-blue:          #258BBE;   /* cool end of the brand gradient */
  --flu-blue-700:      #186D98;
  --flu-blue-100:      #D9ECF5;

  /* Canonical gradient direction (top-left → bottom-right on logo ring) */
  --flu-gradient:          linear-gradient(135deg, var(--flu-orange) 0%, var(--flu-blue) 100%);
  --flu-gradient-soft:     linear-gradient(135deg, #FBEADE 0%, #D9ECF5 100%);
  --flu-gradient-ai:       linear-gradient(120deg, #258BBE 0%, #B96FA7 50%, #258BBE 100%); /* AI-accent variant */
  --flu-gradient-text:     linear-gradient(90deg, #258BBE 0%, #258BBE 100%);

  /* Neutrals — pulled from fluint.io's near-black + warm greys */
  --flu-ink:           #0A0A0A;   /* body + logo black */
  --flu-ink-700:       #1F1F1F;
  --flu-ink-500:       #4A4A4A;
  --flu-ink-400:       #6F6F6F;
  --flu-ink-300:       #9A9A9A;
  --flu-ink-200:       #D4D4D4;
  --flu-ink-100:       #ECECEC;
  --flu-ink-50:        #F5F4F1;   /* warm off-white background */
  --flu-paper:         #FAFAF7;   /* page bg */
  --flu-white:         #FFFFFF;

  /* Semantic */
  --flu-success:       #2E7D52;
  --flu-warn:          #C88A2E;
  --flu-danger:        #C0442F;
  --flu-info:          var(--flu-blue);

  /* Deal-stage accents (product surface) */
  --flu-stage-1:       #8DB6C9;   /* early */
  --flu-stage-2:       #258BBE;
  --flu-stage-3:       #6E86A8;
  --flu-stage-4:       #D97A52;
  --flu-stage-5:       #258BBE;   /* late */

  /* --------------------------------------------------------------------
     FG / BG / LINE — semantic roles
     -------------------------------------------------------------------- */
  --flu-fg-1:          var(--flu-ink);           /* primary text */
  --flu-fg-2:          var(--flu-ink-500);       /* secondary text */
  --flu-fg-3:          var(--flu-ink-400);       /* muted / meta */
  --flu-fg-inv:        var(--flu-white);         /* text on dark */

  --flu-bg-1:          var(--flu-paper);         /* page */
  --flu-bg-2:          var(--flu-ink-50);        /* muted / section alt */
  --flu-bg-3:          var(--flu-white);         /* cards on warm bg */
  --flu-bg-dark:       var(--flu-ink);           /* inverted section */

  --flu-line-1:        rgba(10,10,10,0.10);      /* hairline */
  --flu-line-2:        rgba(10,10,10,0.18);      /* stronger */
  --flu-line-gradient: var(--flu-gradient);      /* ring / highlight */

  /* --------------------------------------------------------------------
     TYPOGRAPHY
     -------------------------------------------------------------------- */
  --flu-font-sans:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --flu-font-mono:     'IBM Plex Mono', 'SF Mono', ui-monospace, Menlo, monospace;
  --flu-font-display:  'Inter', -apple-system, 'Segoe UI', sans-serif;    /* Fluint uses Inter at display sizes, tight tracking */
  --flu-font-accent:   'Fraunces', Georgia, serif;                        /* for the occasional italic pull-quote */

  /* Scale — mobile-first, tuned to Fluint's big display headlines */
  --flu-text-xs:       12px;
  --flu-text-sm:       14px;
  --flu-text-base:     16px;
  --flu-text-md:       18px;
  --flu-text-lg:       20px;
  --flu-text-xl:       24px;
  --flu-text-2xl:      32px;
  --flu-text-3xl:      40px;
  --flu-text-4xl:      56px;
  --flu-text-5xl:      72px;
  --flu-text-6xl:      96px;   /* section starter "01", "02" markers */

  --flu-lh-tight:      1.05;
  --flu-lh-snug:       1.2;
  --flu-lh-normal:     1.5;
  --flu-lh-relaxed:    1.65;

  --flu-tr-tight:      -0.03em;     /* display */
  --flu-tr-snug:       -0.015em;
  --flu-tr-wide:       0.02em;      /* eyebrows, labels */
  --flu-tr-caps:       0.12em;      /* uppercase meta */

  --flu-fw-regular:    400;
  --flu-fw-medium:     500;
  --flu-fw-semi:       600;
  --flu-fw-bold:       700;
  --flu-fw-black:      800;

  /* --------------------------------------------------------------------
     SPACE / RADIUS / SHADOW / MOTION
     -------------------------------------------------------------------- */
  --flu-space-0:       0;
  --flu-space-1:       4px;
  --flu-space-2:       8px;
  --flu-space-3:       12px;
  --flu-space-4:       16px;
  --flu-space-5:       20px;
  --flu-space-6:       24px;
  --flu-space-8:       32px;
  --flu-space-10:      40px;
  --flu-space-12:      48px;
  --flu-space-16:      64px;
  --flu-space-20:      80px;
  --flu-space-24:      96px;
  --flu-space-32:      128px;

  --flu-radius-xs:     4px;
  --flu-radius-sm:     8px;
  --flu-radius-md:     12px;
  --flu-radius-lg:     16px;
  --flu-radius-xl:     24px;
  --flu-radius-2xl:    32px;
  --flu-radius-pill:   999px;

  /* Dual-glow shadow — Fluint's signature (orange + blue soft offsets,
     mirrors the logo ring glow on the Olli avatar). */
  --flu-shadow-glow:
    4px 4px 10px rgba(37, 139, 190, 0.20),
    -4px -4px 10px rgba(37, 139, 190, 0.20);
  --flu-shadow-glow-lg:
    6px 6px 20px rgba(37, 139, 190, 0.25),
    -6px -6px 20px rgba(37, 139, 190, 0.22);

  /* Standard elevations */
  --flu-shadow-sm:     0 1px 2px rgba(10,10,10,0.06);
  --flu-shadow-md:     0 4px 14px rgba(10,10,10,0.08);
  --flu-shadow-lg:     0 16px 40px rgba(10,10,10,0.10);
  --flu-shadow-inset:  inset 0 0 0 1px rgba(10,10,10,0.06);

  /* Motion */
  --flu-ease-out:      cubic-bezier(0.22, 1, 0.36, 1);
  --flu-ease-in-out:   cubic-bezier(0.65, 0, 0.35, 1);
  --flu-dur-fast:      120ms;
  --flu-dur-base:      200ms;
  --flu-dur-slow:      360ms;
}

/* ==========================================================================
   SEMANTIC ELEMENT STYLES
   Apply by adding .flu to a scope root, or opt-in with individual classes.
   ========================================================================== */

.flu, .flu * { box-sizing: border-box; }

.flu {
  font-family: var(--flu-font-sans);
  font-size: var(--flu-text-base);
  line-height: var(--flu-lh-normal);
  color: var(--flu-fg-1);
  background: var(--flu-bg-1);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.flu h1, .flu-h1 {
  font-family: var(--flu-font-display);
  font-size: clamp(40px, 6vw, var(--flu-text-5xl));
  line-height: var(--flu-lh-tight);
  letter-spacing: var(--flu-tr-tight);
  font-weight: var(--flu-fw-bold);
  color: var(--flu-fg-1);
  text-wrap: balance;
  margin: 0 0 var(--flu-space-6);
}

.flu h2, .flu-h2 {
  font-size: clamp(28px, 4vw, var(--flu-text-3xl));
  line-height: var(--flu-lh-snug);
  letter-spacing: var(--flu-tr-snug);
  font-weight: var(--flu-fw-bold);
  margin: 0 0 var(--flu-space-4);
  text-wrap: balance;
}

.flu h3, .flu-h3 {
  font-size: var(--flu-text-xl);
  line-height: var(--flu-lh-snug);
  letter-spacing: var(--flu-tr-snug);
  font-weight: var(--flu-fw-semi);
  margin: 0 0 var(--flu-space-3);
}

.flu h4, .flu-h4 {
  font-size: var(--flu-text-md);
  line-height: var(--flu-lh-snug);
  font-weight: var(--flu-fw-semi);
  margin: 0 0 var(--flu-space-2);
}

.flu p, .flu-p {
  font-size: var(--flu-text-base);
  line-height: var(--flu-lh-relaxed);
  color: var(--flu-fg-2);
  margin: 0 0 var(--flu-space-4);
  text-wrap: pretty;
}

.flu-lead {
  font-size: var(--flu-text-lg);
  line-height: var(--flu-lh-relaxed);
  color: var(--flu-fg-2);
}

.flu-eyebrow {
  font-size: var(--flu-text-xs);
  font-weight: var(--flu-fw-semi);
  letter-spacing: var(--flu-tr-caps);
  text-transform: uppercase;
  color: var(--flu-fg-3);
}

.flu-meta, .flu code, .flu-mono {
  font-family: var(--flu-font-mono);
  font-size: var(--flu-text-sm);
}

.flu-accent-italic {
  font-family: var(--flu-font-accent);
  font-style: italic;
  font-weight: 400;
}

.flu a, .flu-link {
  color: var(--flu-ink);
  text-decoration: underline;
  text-decoration-color: var(--flu-line-2);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--flu-dur-base) var(--flu-ease-out);
}
.flu a:hover, .flu-link:hover { text-decoration-color: var(--flu-orange); }

/* Gradient text utility — reserve for hero moments, not body copy */
.flu-text-gradient {
  background: var(--flu-gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Dot-pattern background (Fluint's signature section texture) */
.flu-dot-bg {
  background-image: radial-gradient(rgba(10,10,10,0.12) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* ============================================================
   Nate Nasralla — Services
   Layered on Fluint tokens (colors_and_type.css)
   ============================================================ */
:root {
  --nn-a1: #258BBE;
  --nn-a2: #186D98;
  --nn-grad: linear-gradient(100deg, var(--nn-a1) 0%, var(--nn-a2) 100%);
  --nn-radius: 14px;
  --nn-maxw: 1120px;
  --nn-font-head: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Geist is the primary headline font throughout */
.nn-root .nn-h2, .nn-root .nn-hero__h1, .nn-root .nn-card__title,
.nn-root .nn-proof__quote, .nn-root .nn-foot__h2, .nn-root .nn-tier__name {
  font-family: var(--nn-font-head);
}

html { scroll-behavior: smooth; }

/* ---- Typeface toggle: Geist (larger, easy-to-follow reading mode) ---- */
[data-typeface="geist"] {
  --flu-font-sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
[data-typeface="geist"] .nn-root {
  letter-spacing: 0.002em;
}
[data-typeface="geist"] .nn-sub { font-size: 22px; line-height: 1.6; }
[data-typeface="geist"] .nn-hero__lead { font-size: clamp(20px, 2.2vw, 26px); line-height: 1.6; }
[data-typeface="geist"] .nn-choice__q { font-size: 20px; line-height: 1.4; }
[data-typeface="geist"] .nn-card__oneliner { font-size: 21px; line-height: 1.55; }
[data-typeface="geist"] .nn-card__fit { font-size: 19px; }
[data-typeface="geist"] .nn-card__list li { font-size: 18.5px; line-height: 1.55; }
[data-typeface="geist"] .nn-card__unique p { font-size: 18px; line-height: 1.6; }
[data-typeface="geist"] .nn-pos__row p { font-size: 19px; line-height: 1.6; }
[data-typeface="geist"] .nn-path__desc { font-size: 17px; line-height: 1.6; }
[data-typeface="geist"] .nn-path__name { font-size: 23px; }
[data-typeface="geist"] .nn-about__lead { font-size: 21px; line-height: 1.6; }
[data-typeface="geist"] .nn-h2 { letter-spacing: -0.02em; }

.nn-root {
  background: var(--flu-paper);
  color: var(--flu-ink);
}
html { overflow-x: clip; }
body { margin: 0; overflow-x: clip; }
.nn-root ::selection { background: rgba(37, 139, 190, 0.22); }

/* ---- shared type ---- */
.nn-h2 {
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 14px;
  text-wrap: balance;
}
.nn-h2--inv { color: #fff; }
.nn-sub {
  font-size: 20px;
  line-height: 1.55;
  color: var(--flu-fg-2);
  max-width: 560px;
  margin: 0;
  text-wrap: pretty;
}
.nn-eyebrow {
  font-family: var(--flu-font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--flu-fg-3);
  margin-bottom: 18px;
}
.nn-grad {
  background: var(--nn-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* neutralize design-system anchor defaults (.flu a { color/underline }) */
.nn-root a { text-decoration: none; }

/* ---- buttons ---- */
.nn-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 13px 20px;
  border-radius: calc(var(--nn-radius) - 4px);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--flu-ease-out),
              background 0.18s var(--flu-ease-out),
              box-shadow 0.18s var(--flu-ease-out);
}
.nn-btn__arrow { transition: transform 0.2s var(--flu-ease-out); }
.nn-btn:hover .nn-btn__arrow { transform: translateX(3px); }
a.nn-btn--dark, .nn-btn--dark { background: var(--flu-ink); color: #fff; }
.nn-btn--dark:hover { background: #000; transform: translateY(-1px); }
a.nn-btn--light, .nn-btn--light { background: #fff; color: var(--flu-ink); }
.nn-btn--light:hover { transform: translateY(-1px); box-shadow: var(--flu-shadow-md); }
a.nn-btn--ghost, .nn-btn--ghost {
  background: transparent;
  color: var(--flu-ink);
  border-color: var(--flu-line-2);
}
.nn-btn--ghost:hover { border-color: var(--flu-ink); }

/* ---- chips ---- */
.nn-chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--flu-font-mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--flu-ink);
  background: var(--flu-ink-50);
  border: 1px solid var(--flu-line-1);
  padding: 7px 13px;
  border-radius: 999px;
}
.nn-chip--line { background: #fff; }
.nn-chiprow { display: flex; flex-wrap: wrap; gap: 8px; }

/* ============================================================
   Nav
   ============================================================ */
.nn-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--flu-line-1);
}
.nn-nav__inner {
  max-width: var(--nn-maxw);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nn-nav__brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
}
.nn-nav__brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
.nn-nav__mark {
  display: inline-flex;
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.06em;
  line-height: 1;
}
.nn-nav__mark > span:first-child, .nn-nav__mark > span:first-child * { color: #000000 !important; }
.nn-nav__mark > span:last-child, .nn-nav__mark > span:last-child * { color: var(--nn-a1) !important; }
.nn-nav__lock { display: flex; flex-direction: column; gap: 2px; }
.nn-nav__brandname {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--flu-ink);
  line-height: 1.05;
}
.nn-nav__logo { height: 40px; width: auto; display: block; }
.nn-nav__name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--flu-ink);
}
.nn-nav__role {
  font-family: var(--flu-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nn-a1);
  line-height: 1;
}
.nn-nav__right { display: flex; align-items: center; gap: 12px; }
.nn-nav__menu {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0 auto;
}
.nn-nav__menu a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--flu-fg-2);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.16s var(--flu-ease-out);
}
.nn-nav__menu a:hover { color: var(--flu-ink); }
@media (max-width: 940px) { .nn-nav__menu { display: none; } }
.nn-nav__ghost { padding: 11px 18px; font-size: 15px; }
@media (max-width: 620px) { .nn-nav__ghost { display: none; } }
.nn-nav__backed {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--flu-fg-2);
  text-decoration: none;
  padding: 6px 12px 6px 6px;
  border: 1px solid var(--flu-line-1);
  border-radius: 999px;
  background: #fff;
}
.nn-nav__backed img { border-radius: 50%; }
.nn-nav__backed:hover { border-color: var(--flu-line-2); }

/* ============================================================
   Hero
   ============================================================ */
.nn-hero {
  position: relative;
  max-width: var(--nn-maxw);
  margin: 0 auto;
  padding: 92px 28px 64px;
}
.nn-hero__dot {
  position: absolute;
  inset: 0 0 auto 0;
  height: 420px;
  background-image: radial-gradient(rgba(10, 10, 10, 0.10) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse 70% 100% at 18% 0%, #000 0%, transparent 72%);
  mask-image: radial-gradient(ellipse 70% 100% at 18% 0%, #000 0%, transparent 72%);
  pointer-events: none;
  opacity: 0;
}
[data-texture="on"] .nn-hero__dot { opacity: 1; }
.nn-hero__inner { position: relative; max-width: 860px; }
.nn-hero__inner--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  column-gap: 56px;
  row-gap: 28px;
  align-items: stretch;
}
.nn-hero__copy { align-self: end; }
.nn-hero__foot { grid-column: 1 / -1; }
.nn-hero__foot .nn-hero__lead { max-width: none; font-size: clamp(19px, 2.05vw, 24px); }
.nn-hero__portrait { margin: 0; position: relative; }
.nn-hero__portrait .nn-hero__frame {
  border-radius: var(--nn-radius);
  overflow: hidden;
  box-shadow: var(--flu-shadow-md);
  position: absolute;
  inset: 0;
}
.nn-hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 30%;
  transform: scale(1.5);
  transform-origin: 62% 30%;
  display: block;
}
.nn-hero__portrait figcaption {
  font-family: var(--flu-font-mono);
  font-size: 12px;
  color: var(--flu-fg-3);
  margin-top: 12px;
}
.nn-hero__h1 {
  font-size: clamp(42px, 6.6vw, 82px);
  line-height: 1.0;
  letter-spacing: -0.038em;
  font-weight: 700;
  margin: 0 0 24px;
  text-wrap: balance;
}
.nn-hero__uline {
  background: color-mix(in srgb, var(--nn-a1) 22%, transparent);
  border-radius: 4px;
  padding: 0.02em 0.12em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
  color: var(--flu-fg-2);
  max-width: 660px;
  margin: 0 0 34px;
  text-wrap: pretty;
}
.nn-hero__lead b { color: var(--flu-ink); font-weight: 600; }
.nn-hero__ctas { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 40px; }
.nn-hero__ctas .nn-btn { padding: 18px 30px; font-size: 18px; border-radius: calc(var(--nn-radius) - 2px); }

/* ============================================================
   Stats
   ============================================================ */
.nn-stats {
  max-width: var(--nn-maxw);
  margin: 0 auto;
  padding: 8px 28px 84px;
}
.nn-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-top: 1px solid var(--flu-line-1);
  border-bottom: 1px solid var(--flu-line-1);
}
.nn-stats__cell {
  padding: 34px 22px;
  text-align: left;
}
.nn-stats__cell + .nn-stats__cell { border-left: 1px solid var(--flu-line-1); }
.nn-stats__num {
  font-family: var(--flu-font-mono);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  background: var(--nn-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nn-stats__lbl {
  font-size: 14px;
  line-height: 1.45;
  color: var(--flu-fg-2);
  margin-top: 14px;
  max-width: 240px;
}

/* ============================================================
   Logo bar (horizontally scrolling marquee)
   ============================================================ */
.nn-logobar {
  max-width: var(--nn-maxw);
  margin: 0 auto;
  padding: 64px 0 84px;
}
.nn-logobar__label {
  font-family: var(--flu-font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--flu-fg-3);
  text-align: center;
  padding: 0 28px 26px;
}
.nn-logobar__viewport {
  overflow: hidden;
  border-top: 1px solid var(--flu-line-1);
  border-bottom: 1px solid var(--flu-line-1);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.nn-logobar__track {
  display: flex;
  width: max-content;
  animation: nnlogoscroll 46s linear infinite;
}
.nn-logobar:hover .nn-logobar__track { animation-play-state: paused; }
.nn-logobar__slot {
  flex: 0 0 auto;
  width: 190px;
  height: 116px;
  padding: 30px 28px;
  box-sizing: border-box;
  border-right: 1px solid var(--flu-line-1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nn-logobar__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: grayscale(1);
  opacity: 0.65;
  transition: filter 0.2s var(--flu-ease-out), opacity 0.2s var(--flu-ease-out);
}
.nn-logobar__slot:hover .nn-logobar__img { filter: grayscale(0); opacity: 1; }
@keyframes nnlogoscroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .nn-logobar__track { animation: none; }
  .nn-logobar__viewport { overflow-x: auto; }
}

/* ============================================================
   Guide (JTBD + offerings)
   ============================================================ */
.nn-guide {
  max-width: var(--nn-maxw);
  margin: 0 auto;
  padding: 16px 28px 96px;
}
.nn-guide__head { max-width: 980px; margin: 0 auto; padding: 80px 0 8px; text-align: center; }
.nn-guide__head .nn-h2 { white-space: nowrap; }
@media (max-width: 900px) { .nn-guide__head .nn-h2 { white-space: normal; } }
.nn-guide__arrows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0 0;
}
.nn-guide__arrows span {
  position: relative;
  height: 34px;
}
.nn-guide__arrows span::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 2px; height: 26px;
  background: var(--flu-line-2);
  transform: translateX(-50%);
}
.nn-guide__arrows span::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  width: 8px; height: 8px;
  border-right: 2px solid var(--flu-line-2);
  border-bottom: 2px solid var(--flu-line-2);
  transform: translateX(-50%) rotate(45deg);
}
@media (max-width: 620px) { .nn-guide__arrows { display: none; } }
.nn-branch { margin: 22px 0 6px; text-align: center; }
.nn-branch__cue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-family: var(--flu-font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--nn-grad);
  padding: 6px 14px;
  border-radius: 999px;
}
.nn-branch__lines {
  position: relative;
  height: 42px;
  margin-top: 4px;
}
.nn-branch__trunk {
  position: absolute;
  top: 0; left: 50%;
  width: 2px; height: 18px;
  background: var(--flu-line-2);
  transform: translateX(-50%);
}
.nn-branch__rail {
  position: absolute;
  top: 18px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: var(--flu-line-2);
}
.nn-branch__drop {
  position: absolute;
  top: 18px;
  width: 2px; height: 24px;
  background: var(--flu-line-2);
  transform: translateX(-50%);
}
.nn-branch__drop::after {
  content: "";
  position: absolute;
  bottom: -3px; left: 50%;
  width: 7px; height: 7px;
  border-right: 2px solid var(--flu-line-2);
  border-bottom: 2px solid var(--flu-line-2);
  transform: translateX(-50%) rotate(45deg);
}

/* choice grid */
.nn-choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 14px;
}
.nn-choice {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--flu-line-1);
  border-radius: var(--nn-radius);
  padding: 34px 30px 30px;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.18s var(--flu-ease-out),
              box-shadow 0.18s var(--flu-ease-out),
              border-color 0.18s var(--flu-ease-out);
}
.nn-choice:hover { transform: translateY(-4px); box-shadow: var(--flu-shadow-lg); border-color: var(--nn-a1); }
.nn-choice__route {
  font-family: var(--flu-font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nn-a1);
  font-weight: 500;
}
.nn-choice__step {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--flu-line-2);
  font-family: var(--flu-font-mono);
  font-size: 15px;
  color: var(--flu-fg-2);
}
.nn-choice:hover .nn-choice__step { border-color: var(--nn-a1); color: var(--nn-a1); }
.nn-choice__tag {
  font-family: var(--flu-font-mono);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--nn-a1);
  font-weight: 500;
}
.nn-choice__q {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--flu-ink);
  letter-spacing: -0.02em;
  flex: 1;
  text-wrap: balance;
}
.nn-choice__to {
  font-size: 15px;
  font-weight: 600;
  color: var(--flu-fg-2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
}
.nn-choice__cue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--flu-font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--nn-grad);
  padding: 10px 18px;
  border-radius: 999px;
  transition: gap 0.18s var(--flu-ease-out);
}
.nn-choice:hover .nn-choice__cue { gap: 12px; }
.nn-choice.is-active {
  border-color: transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--nn-grad) border-box;
  border: 1.5px solid transparent;
  box-shadow: var(--flu-shadow-glow);
}
.nn-choice.is-active .nn-choice__to { color: var(--flu-ink); }

.nn-reset-row {
  height: 0;
  overflow: hidden;
  margin-bottom: 0;
}
.nn-reset-row.is-shown { height: auto; margin-bottom: 14px; }
.nn-reset {
  background: none;
  border: none;
  font-family: var(--flu-font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--flu-fg-3);
  cursor: pointer;
  padding: 8px 0;
}
.nn-reset:hover { color: var(--flu-ink); }

/* offering cards */
.nn-offerings {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}
.nn-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--flu-line-1);
  border-radius: var(--nn-radius);
  transition: box-shadow 0.22s var(--flu-ease-out),
              opacity 0.22s var(--flu-ease-out),
              border-color 0.22s var(--flu-ease-out),
              transform 0.22s var(--flu-ease-out);
}
.nn-card.is-dimmed { opacity: 0.46; }
.nn-card.is-matched {
  border-color: transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--nn-grad) border-box;
  border: 1.5px solid transparent;
  box-shadow: var(--flu-shadow-glow-lg);
}
.nn-card.is-open { box-shadow: var(--flu-shadow-lg); }
.nn-card__flag {
  position: absolute;
  top: -11px;
  left: 26px;
  font-family: var(--flu-font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--nn-grad);
  padding: 4px 11px;
  border-radius: 999px;
  z-index: 2;
}
.nn-card__head {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 28px 28px;
  font-family: inherit;
}
.nn-card__num {
  font-family: var(--flu-font-mono);
  font-size: 15px;
  font-weight: 500;
  color: var(--flu-fg-3);
  padding-top: 4px;
  letter-spacing: 0.04em;
}
.nn-card__headmain { flex: 1; min-width: 0; }
.nn-card__titlerow {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.nn-card__title {
  font-size: clamp(24px, 2.8vw, 30px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0;
  line-height: 1.1;
}
.nn-card__kicker {
  font-family: var(--flu-font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nn-a1);
}
.nn-card__oneliner {
  font-size: 19px;
  line-height: 1.5;
  color: var(--flu-fg-2);
  margin: 0 0 12px;
  max-width: 680px;
  text-wrap: pretty;
}
.nn-card__format {
  font-family: var(--flu-font-mono);
  font-size: 13.5px;
  letter-spacing: 0.02em;
  color: var(--flu-fg-3);
}
.nn-card__chev {
  color: var(--flu-fg-3);
  flex-shrink: 0;
  transition: transform 0.26s var(--flu-ease-out), color 0.2s;
  padding-top: 2px;
}
.nn-card.is-open .nn-card__chev { transform: rotate(180deg); color: var(--flu-ink); }
.nn-card__head:hover .nn-card__chev { color: var(--flu-ink); }

/* expand mechanism — JS-measured inline max-height with NO transition anywhere.
   This engine pins any transitioned property at its pre-change value, so neither
   sizing nor content visibility may depend on a transition. Expansion is instant. */
.nn-card__expand {
  max-height: 0;
  overflow: hidden;
}
.nn-card__expandinner { overflow: hidden; }
.nn-card__body {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  padding: 4px 28px 32px 72px;
  border-top: 1px solid var(--flu-line-1);
  margin-top: 4px;
  padding-top: 26px;
}
.nn-card__lbl {
  font-family: var(--flu-font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nn-a1);
  margin-bottom: 12px;
}
.nn-guide .nn-h2 { font-size: clamp(34px, 4.6vw, 54px); }
.nn-card__fit {
  font-size: 17.5px;
  line-height: 1.55;
  color: var(--flu-fg-1);
  margin: 0;
  font-weight: 500;
}
.nn-card__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.nn-card__list li {
  display: flex;
  gap: 12px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--flu-fg-2);
}
.nn-card__tick { color: var(--nn-a1); font-weight: 700; flex-shrink: 0; }
.nn-card__col--side { display: flex; flex-direction: column; gap: 22px; }
.nn-card__unique {
  background: var(--flu-ink-50);
  border-radius: calc(var(--nn-radius) - 2px);
  padding: 18px 20px;
}
.nn-card__unique p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--flu-fg-1);
  text-wrap: pretty;
}
.nn-card__col--side .nn-btn { align-self: flex-start; }

/* ============================================================
   Edge (dark)
   ============================================================ */
.nn-edge {
  background: var(--flu-ink);
  color: #fff;
  margin-top: 8px;
}
.nn-edge__inner {
  max-width: var(--nn-maxw);
  margin: 0 auto;
  padding: 92px 28px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.nn-edge__lead {
  font-size: 18px;
  line-height: 1.6;
  color: #C4C4C4;
  max-width: 560px;
  margin: 0 0 36px;
}
.nn-edge__lead b { color: #fff; font-weight: 600; }
.nn-edge__points { display: grid; gap: 22px; }
.nn-edge__pt {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 18px;
  align-items: baseline;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.nn-edge__ptnum {
  font-family: var(--flu-font-mono);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #fff;
}
.nn-edge__ptlbl { font-size: 14.5px; line-height: 1.5; color: #A8A8A8; }
.nn-edge__art {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  padding: 34px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--flu-shadow-glow-lg);
}
.nn-edge__art svg { width: 100%; height: auto; display: block; }

/* GTM stack-flow diagram */
.nn-flow__src { fill: #ECECEC; font-size: 13px; font-weight: 500; font-family: var(--flu-font-sans); }
.nn-flow__hub { fill: #fff; font-size: 14.5px; font-weight: 700; font-family: var(--flu-font-sans); letter-spacing: -0.01em; }
.nn-flow__sub { fill: #8FA3B0; font-size: 10.5px; font-family: var(--flu-font-mono); letter-spacing: 0.04em; }
.nn-flow__out { fill: #fff; font-size: 12.5px; font-weight: 600; font-family: var(--flu-font-sans); }
.nn-flow__dash { stroke-dasharray: 5 9; animation: nnflow 1.7s linear infinite; }
@keyframes nnflow { to { stroke-dashoffset: -56; } }
@media (prefers-reduced-motion: reduce) { .nn-flow__dash { animation: none; } }

.nn-creds-bar {
  list-style: none;
  max-width: var(--nn-maxw);
  margin: 0 auto;
  padding: 0 28px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--flu-line-2);
  border-bottom: 1px solid var(--flu-line-2);
  background: linear-gradient(100deg, rgba(37, 139, 190,0.07) 0%, rgba(37,139,190,0.09) 100%);
  border-radius: var(--nn-radius);
}
.nn-creds-wrap { padding: 72px 28px 0; background: transparent; }
.nn-creds-wrap .nn-creds-bar { margin: 0 auto; }
.nn-creds-bar li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 26px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--flu-ink);
}
.nn-creds-bar li + li { border-left: 1px solid var(--flu-line-1); }
.nn-creds-bar .nn-about__crednum { font-size: 14px; }
@media (max-width: 940px) {
  .nn-creds-bar { grid-template-columns: repeat(2, 1fr); }
  .nn-creds-bar li:nth-child(2n+1) { padding-left: 0; border-left: none; }
  .nn-creds-bar li:nth-child(n+3) { border-top: 1px solid var(--flu-line-1); }
}
@media (max-width: 600px) {
  .nn-creds-bar { grid-template-columns: 1fr; }
  .nn-creds-bar li { padding-left: 0 !important; border-left: none !important; }
  .nn-creds-bar li + li { border-top: 1px solid var(--flu-line-1); }
}

/* ============================================================
   Watch (video example)
   ============================================================ */
.nn-watch { background: var(--flu-ink-50); color: var(--flu-ink); border-top: 1px solid var(--flu-line-1); border-bottom: 1px solid var(--flu-line-1); }
.nn-watch__inner { max-width: var(--nn-maxw); margin: 0 auto; padding: 88px 28px; }
.nn-watch__head { max-width: none; margin-bottom: 32px; }
.nn-watch__head .nn-h2 { color: var(--flu-ink); }
.nn-watch__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--nn-radius);
  overflow: hidden;
  box-shadow: var(--flu-shadow-glow-lg);
  background: #000;
}
.nn-watch__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ============================================================
   Sales stage map (Process Builds)
   ============================================================ */
.nn-stagemap-wrap { margin: 0; padding: 24px 28px 0 72px; }
.nn-stagemap {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  gap: 7px;
  align-items: stretch;
}
.nn-sm__bar {
  grid-column: 1 / 25;
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.nn-sm__bar--ink {
  background: #0d1b2c;
  color: #fff;
  justify-content: center;
  min-height: 64px;
  font-size: 18px;
}
.nn-sm__bar--grad {
  background: linear-gradient(100deg, #1a4067 0%, #258BBE 100%);
  color: #fff;
  justify-content: center;
}
.nn-sm__bar--soft {
  background: #efeee9;
  color: #123a5e;
  border: 1px solid var(--flu-line-1);
}
.nn-sm__bar--soft.has-tick { border-left: 4px solid #4f8fbf; }
.nn-sm__bar--soft.is-center { justify-content: center; }
.nn-sm__stages {
  grid-column: 1 / 25;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 2px;
  background: var(--flu-line-1);
  border-radius: 8px;
  overflow: hidden;
}
.nn-sm__stage {
  background: #143454;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  min-height: 58px;
}
.nn-stagemap-wrap figcaption {
  font-family: var(--flu-font-mono);
  font-size: 11.5px;
  line-height: 1.4;
  color: var(--flu-fg-3);
  margin-top: 12px;
  text-wrap: pretty;
}
@media (max-width: 720px) {
  .nn-stagemap-wrap { padding-left: 28px; overflow-x: auto; }
  .nn-stagemap { min-width: 640px; }
}

/* ============================================================
   Card image gallery
   ============================================================ */
.nn-gallery {
  display: grid;
  gap: 16px;
  padding: 24px 28px 0 72px;
}
.nn-gallery--2 { grid-template-columns: 1fr 1fr; }
.nn-figure { margin: 0; }
.nn-figure__frame {
  border-radius: calc(var(--nn-radius) - 2px);
  overflow: hidden;
  border: 1px solid var(--flu-line-1);
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nn-figure--photo .nn-figure__frame { background: var(--flu-ink-50); }
.nn-figure--photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nn-figure--art-light .nn-figure__frame { background: #fff; padding: 14px; }
.nn-figure--art-light img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.nn-figure--art-dark .nn-figure__frame { background: #0A0A0A; padding: 8px; }
.nn-figure--art-dark img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.nn-figure figcaption {
  font-family: var(--flu-font-mono);
  font-size: 11.5px;
  line-height: 1.4;
  color: var(--flu-fg-3);
  margin-top: 9px;
  text-wrap: pretty;
}

/* ============================================================
   Proof
   ============================================================ */
.nn-proof {
  max-width: var(--nn-maxw);
  margin: 0 auto;
  padding: 96px 28px;
}
.nn-proof__inner { max-width: none; }
.nn-proof__featured {
  display: grid;
  grid-template-columns: 1.9fr 0.6fr;
  gap: 44px;
  align-items: stretch;
  margin: 8px 0 40px;
}
.nn-proof__quote { font-size: clamp(22px, 2.7vw, 33px);
  line-height: 1.32;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 24px;
  text-wrap: pretty;
  color: var(--flu-ink);
}
.nn-proof__quote u {
  text-decoration: none;
  background: color-mix(in srgb, var(--nn-a2) 20%, transparent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--nn-a2) 20%, transparent);
  border-radius: 3px;
  color: var(--flu-ink);
}
.nn-proof__by { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.nn-proof__avatar {
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--flu-line-1);
  box-shadow: var(--flu-shadow-md);
  flex-shrink: 0;
}
.nn-proof__byname { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.nn-proof__name { font-size: 16px; font-weight: 700; }
.nn-proof__role {
  font-family: var(--flu-font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--flu-fg-3);
}
.nn-proof__photo {
  margin: 0;
  border-radius: var(--nn-radius);
  overflow: hidden;
  aspect-ratio: auto;
  min-width: 0;
  box-shadow: var(--flu-shadow-md);
}
.nn-proof__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; transform: scale(1.28); transform-origin: center 30%; display: block; }
.nn-proof__second {
  border-top: 1px solid var(--flu-line-1);
  padding-top: 56px;
  margin: 24px 0 0;
  display: flex;
  align-items: flex-start;
  gap: 22px;
}
.nn-proof__second blockquote {
  margin: 0;
  font-size: 28px;
  line-height: 1.45;
  color: var(--flu-fg-1);
  max-width: 900px;
  text-wrap: pretty;
}
.nn-proof__second blockquote mark {
  background: color-mix(in srgb, var(--nn-a2) 20%, transparent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--nn-a2) 20%, transparent);
  border-radius: 3px;
  color: var(--flu-ink);
}
.nn-proof__avatar--sm { width: 68px; height: 68px; box-shadow: none; margin-top: 4px; object-position: center 15%; }
.nn-proof__secondby {
  display: block;
  margin-top: 16px;
  font-family: var(--flu-font-mono);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--flu-fg-3);
}
.nn-proof__secondby strong { color: var(--flu-ink); font-weight: 700; }

/* ============================================================
   About
   ============================================================ */
.nn-about {
  background: var(--flu-ink-50);
  border-top: 1px solid var(--flu-line-1);
  border-bottom: 1px solid var(--flu-line-1);
}
.nn-about__inner {
  max-width: var(--nn-maxw);
  margin: 0 auto;
  padding: 56px 28px 88px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.nn-about__intro { max-width: 560px; }
.nn-about__photo { margin: 0; }
.nn-about__photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: 50% 32%;
  display: block;
  border-radius: var(--nn-radius);
  box-shadow: var(--flu-shadow-md);
}
.nn-about__lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--flu-fg-2);
  margin: 0 0 18px;
  text-wrap: pretty;
}
.nn-about__lead b { color: var(--flu-ink); font-weight: 600; }
.nn-about__denver {
  font-size: 16px;
  line-height: 1.55;
  color: var(--flu-fg-2);
  margin: 0 0 28px;
}
.nn-about__portrait { margin: 0; }
.nn-about__portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 30%;
  display: block;
  border-radius: var(--nn-radius);
  box-shadow: var(--flu-shadow-md);
}
.nn-about__portrait figcaption {
  font-family: var(--flu-font-mono);
  font-size: 12px;
  color: var(--flu-fg-3);
  margin-top: 12px;
}
.nn-about__creds {
  max-width: var(--nn-maxw);
  margin: 0 auto;
  padding: 8px 28px 88px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.nn-about__creds li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px 20px 8px 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--flu-ink);
  border-top: 1px solid var(--flu-line-2);
}
.nn-about__crednum {
  font-family: var(--flu-font-mono);
  font-size: 13px;
  color: var(--nn-a1);
  letter-spacing: 0.04em;
}

/* ============================================================
   Books
   ============================================================ */
.nn-books {
  max-width: var(--nn-maxw);
  margin: 0 auto;
  padding: 0 28px 88px;
}
.nn-books__lbl {
  font-family: var(--flu-font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nn-a1);
  margin-bottom: 20px;
  padding-top: 40px;
  border-top: 1px solid var(--flu-line-1);
}
.nn-books__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.nn-book {
  display: flex;
  gap: 22px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--flu-line-1);
  border-radius: var(--nn-radius);
  padding: 22px;
  text-decoration: none;
  transition: transform 0.18s var(--flu-ease-out), box-shadow 0.18s var(--flu-ease-out), border-color 0.18s var(--flu-ease-out);
}
.nn-book:hover { transform: translateY(-3px); box-shadow: var(--flu-shadow-md); border-color: var(--flu-line-2); }
.nn-book__cover {
  flex-shrink: 0;
  width: 104px;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--flu-line-1);
  background: var(--flu-ink-50);
}
.nn-book__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nn-book__meta { min-width: 0; }
.nn-book__title { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 6px; color: var(--flu-ink); }
.nn-book__tag { font-size: 14px; line-height: 1.4; color: var(--flu-fg-2); margin: 0 0 12px; text-wrap: pretty; }
.nn-book__link {
  display: inline-flex;
  gap: 6px;
  font-family: var(--flu-font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--nn-a1);
  font-weight: 500;
}
@media (max-width: 760px) {
  .nn-books__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Footer
   ============================================================ */
.nn-foot { background: var(--flu-ink); color: #fff; }
.nn-foot__cta {
  max-width: 900px;
  margin: 0 auto;
  padding: 96px 28px 80px;
  text-align: center;
}
.nn-foot__h2 {
  font-size: clamp(24px, 3.6vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 16px;
  white-space: nowrap;
}
.nn-foot__sub {
  font-size: 26px;
  line-height: 1.5;
  font-weight: 300;
  color: #D6D6D6;
  margin: 0 0 24px;
  text-wrap: pretty;
}
.nn-foot__paths {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 auto 30px;
}
.nn-foot__path {
  font-family: var(--flu-font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 9px 16px;
}
.nn-foot__path--solid { background: var(--nn-grad); border-color: transparent; }
.nn-foot__patharrow { color: #6F6F6F; }
.nn-foot__pathor { font-family: var(--flu-font-mono); font-size: 12px; color: #6F6F6F; }
.nn-foot__base {
  max-width: var(--nn-maxw);
  margin: 0 auto;
  padding: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.nn-foot__brand { display: flex; align-items: center; gap: 10px; }
.nn-foot__logo { height: 46px; width: auto; display: block; border-radius: 8px; filter: brightness(0) invert(1); }
.nn-foot__mark {
  display: inline-flex;
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.06em;
  line-height: 1;
}
.nn-foot__mark > span:first-child { color: #fff; }
.nn-foot__mark > span:last-child { color: var(--nn-a1); }
.nn-foot__name { font-size: 15px; font-weight: 700; color: #fff; }
.nn-foot__dot { color: #555; }
.nn-foot__backed {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #A8A8A8;
  text-decoration: none;
}
.nn-foot__backed img { border-radius: 50%; }
.nn-foot__backed:hover { color: #fff; }
.nn-foot__sig {
  font-family: var(--flu-font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #6F6F6F;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 940px) {
  .nn-branch__lines { display: none; }
  .nn-branch { margin-bottom: 16px; }
  .nn-choices { grid-template-columns: repeat(2, 1fr); }
  .nn-card__body { grid-template-columns: 1fr; gap: 26px; padding-left: 28px; }
  .nn-gallery { padding-left: 28px; }
  .nn-edge__inner { grid-template-columns: 1fr; gap: 40px; }
  .nn-edge__art { order: -1; max-width: 520px; }
  .nn-hero__inner--split { grid-template-columns: 1fr; gap: 24px; }
  .nn-hero__portrait { order: -1; position: static; }
  .nn-hero__portrait .nn-hero__frame { position: static; aspect-ratio: 16 / 10; }
  .nn-about__inner { grid-template-columns: 1fr; gap: 36px; }
  .nn-about__photo { max-width: 520px; order: -1; }
  .nn-about__creds { grid-template-columns: repeat(2, 1fr); }
  .nn-proof__featured { grid-template-columns: 1fr; gap: 28px; }
  .nn-proof__photo { aspect-ratio: 16 / 9; order: -1; }
}
@media (max-width: 600px) {
  .nn-nav__lock { display: none; }
  .nn-nav__backed span { display: none; }
  .nn-stats__grid { grid-template-columns: 1fr; }
  .nn-stats__cell + .nn-stats__cell { border-left: none; border-top: 1px solid var(--flu-line-1); }
  .nn-choices { grid-template-columns: 1fr; }
  .nn-card__head { gap: 14px; padding: 22px 20px; }
  .nn-card__num { display: none; }
  .nn-gallery { padding: 20px 20px 0; }
  .nn-gallery--2 { grid-template-columns: 1fr; }
  .nn-edge__pt { grid-template-columns: 1fr; gap: 6px; }
  .nn-about__creds { grid-template-columns: 1fr; }
  .nn-hero { padding-top: 56px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
}

/* ============================================================
   Positioning — problems (top) → solutions (scroll down)
   ============================================================ */
.nn-pos {
  background: var(--flu-ink);
  color: #fff;
}
.nn-pos__inner {
  max-width: var(--nn-maxw);
  margin: 0 auto;
  padding: 112px 28px;
}
.nn-pos__collbl {
  font-family: var(--flu-font-mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7A7A7A;
  margin-bottom: 32px;
  padding-top: 40px;
}
.nn-pos__title {
  color: #fff;
  max-width: none;
  margin: 0 0 56px;
  font-size: clamp(30px, 4vw, 52px);
}
.nn-pos__title .nn-grad { display: inline; }
.nn-pos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.nn-pos__cell {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.nn-posicon { width: 76px; height: 76px; flex-shrink: 0; }
.nn-pos__cell p {
  margin: 0;
  font-family: var(--nn-font-head);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
/* problems: muted */
.nn-pos__grid--problem .nn-posicon { color: #6A6A6A; }
.nn-pos__grid--problem .nn-pos__cell p { color: #8C8C8C; font-weight: 500; }
/* the turn between the rows */
.nn-pos__turn {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--nn-a1);
  margin: 72px 0 44px;
}
.nn-pos__turn span {
  font-family: var(--flu-font-mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
/* solutions: revealed + highlighted on scroll, aligned under each problem */
.nn-pos__grid--solution .nn-pos__cell {
  padding-top: 26px;
  border-top: 2px solid rgba(255,255,255,0.10);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--flu-ease-out), transform 0.6s var(--flu-ease-out), border-color 0.6s var(--flu-ease-out);
}
.nn-pos__grid--solution.is-revealed .nn-pos__cell { opacity: 1; transform: none; border-top-color: var(--nn-a1); }
.nn-pos__grid--solution .nn-posicon { color: var(--nn-a1); }
.nn-pos__grid--solution .nn-pos__cell p { color: #fff; font-weight: 600; }
@media (max-width: 720px) {
  .nn-pos__inner { padding: 80px 24px; }
  .nn-pos__grid { grid-template-columns: 1fr; gap: 30px; }
  .nn-pos__turn { margin: 30px 0; }
  .nn-posicon { width: 44px; height: 44px; }
}

/* ============================================================
   Pathway — how to engage over time
   ============================================================ */
.nn-path {
  background: var(--flu-paper);
  border-top: 1px solid var(--flu-line-1);
  --nn-gutter: max(28px, calc((100% - var(--nn-maxw)) / 2));
}
.nn-path__inner { max-width: none; margin: 0; padding: 0; }
.nn-path__head {
  max-width: var(--nn-maxw);
  margin: 0 auto;
  padding: 80px 28px 40px;
}

/* full-bleed, flat, modern stacked strips */
.nn-path__stack { display: flex; flex-direction: column; gap: 0; }
.nn-tier {
  border-top: 1px solid var(--flu-line-2);
  transition: background 0.2s var(--flu-ease-out);
}
.nn-tier:last-child { border-bottom: 1px solid var(--flu-line-2); }
.nn-tier.is-featured { background: linear-gradient(100deg, rgba(37, 139, 190,0.05), rgba(37,139,190,0.06)); }
.nn-tier.is-flash { animation: nntierflash 1.7s var(--flu-ease-out); }
@keyframes nntierflash {
  0% { background: transparent; box-shadow: inset 4px 0 0 var(--nn-a1); }
  20% { background: var(--flu-ink-50); box-shadow: inset 4px 0 0 var(--nn-a1); }
  100% { background: transparent; box-shadow: inset 0 0 0 var(--nn-a1); }
}
.nn-tier.is-featured.is-flash { animation: nntierflash 1.7s var(--flu-ease-out); }
@media (prefers-reduced-motion: reduce) { .nn-tier.is-flash { animation: none; } }
.nn-tier__bar {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
  text-align: left;
  padding: 30px var(--nn-gutter);
  background: none;
  border: none;
  border-bottom: 1px solid transparent;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.nn-tier.is-open .nn-tier__bar { border-bottom-color: var(--flu-line-1); background: var(--flu-ink-50); }
.nn-tier.is-featured.is-open .nn-tier__bar { background: transparent; }
.nn-tier__bar:hover { background: color-mix(in srgb, var(--flu-ink-50) 60%, transparent); }
.nn-tier__chev { color: var(--flu-fg-3); flex-shrink: 0; transition: transform 0.3s var(--flu-ease-out), color 0.2s; }
.nn-tier.is-open .nn-tier__chev { transform: rotate(180deg); color: var(--flu-ink); }
.nn-tier__layers {
  display: flex;
  flex-direction: column-reverse;
  gap: 3px;
  width: 22px;
  flex-shrink: 0;
}
.nn-tier__layer { height: 5px; border-radius: 1px; background: var(--nn-grad); }
.nn-tier__price {
  font-family: var(--nn-font-head);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--flu-ink);
  width: 200px;
  flex-shrink: 0;
  white-space: nowrap;
}
.nn-tier__mid { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 5px; }
.nn-tier__name {
  font-family: var(--nn-font-head);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--flu-ink);
}
.nn-tier__teaser { font-size: 16px; line-height: 1.45; color: var(--flu-fg-2); }
.nn-tier__principle {
  font-family: var(--flu-font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nn-a1);
  white-space: nowrap;
  flex-shrink: 0;
}
.nn-tier__expand { display: grid; grid-template-rows: 1fr; transition: grid-template-rows 0.34s var(--flu-ease-out); }
.nn-tier:not(.is-open) .nn-tier__expand { grid-template-rows: 0fr; }
.nn-tier__inner { overflow: hidden; min-height: 0; }
.nn-tier__body {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding: 36px var(--nn-gutter) 64px;
}
.nn-tier__desc { font-size: 17px; line-height: 1.55; color: var(--flu-fg-1); margin: 0 0 22px; text-wrap: pretty; max-width: 640px; }
.nn-tier__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 0 0 4px;
  padding: 26px var(--nn-gutter);
  border-top: 1px solid var(--flu-line-1);
  border-bottom: 1px solid var(--flu-line-1);
}
.nn-tier__metalbl {
  display: block;
  font-family: var(--flu-font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nn-a1);
  margin-bottom: 10px;
  font-weight: 700;
}
.nn-tier__meta p { margin: 0; font-size: 20px; line-height: 1.4; color: var(--flu-ink); font-weight: 500; }
.nn-tier__points { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 10px; }
.nn-tier__points li { display: flex; gap: 12px; font-size: 15.5px; line-height: 1.5; color: var(--flu-fg-2); }
.nn-tier__tick { color: var(--nn-a1); font-weight: 700; flex-shrink: 0; }
.nn-tier__links { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-bottom: 22px; }
.nn-tier__links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--nn-a2);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--nn-a2) 35%, transparent);
  padding-bottom: 1px;
}
.nn-tier__links a:hover { border-bottom-color: var(--nn-a2); }
.nn-tier__logos { margin-bottom: 24px; }
.nn-logowall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 140px));
  gap: 12px;
}
.nn-logoslot {
  height: 60px;
  background: #fff;
  border: 1px solid var(--flu-line-1);
  border-radius: calc(var(--nn-radius) - 4px);
  overflow: hidden;
}
.nn-tier__logoslbl {
  display: block;
  font-family: var(--flu-font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--flu-fg-3);
  margin-bottom: 10px;
}
.nn-tier__ctarow { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.nn-tier__fig {
  margin: 0;
  border-radius: var(--nn-radius);
  overflow: hidden;
  aspect-ratio: 16 / 11;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nn-tier__fig--photo { background: var(--flu-ink-50); }
.nn-tier__fig--photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nn-tier__fig--art-light { background: #fff; border: 1px solid var(--flu-line-1); padding: 16px; }
.nn-tier__fig--art-light img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.nn-tier__fig--art-dark { background: #0A0A0A; padding: 12px; }
.nn-tier__fig--art-dark img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.nn-tier__covers { display: flex; gap: 20px; justify-content: center; }
/* free-tier: two frameworks side by side */
.nn-fw { padding: 30px var(--nn-gutter) 40px; }
.nn-fw__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.nn-fw__card { display: flex; flex-direction: column; align-items: flex-start; min-width: 0; }
.nn-fw__fig {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--nn-radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--flu-line-1);
  margin-bottom: 20px;
}
.nn-fw__fig img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nn-fw__fig--cover { background: var(--flu-ink-50); }
.nn-fw__fig--cover img { object-fit: contain; padding: 18px; }
.nn-fw__fig--banner { aspect-ratio: auto; background: #fff; }
.nn-fw__fig--banner img { height: auto; object-fit: contain; }
.nn-fw__fig--graphic { aspect-ratio: 16 / 11; background: var(--flu-ink-50); border: 1px solid var(--flu-line-1); }
.nn-fw__fig--graphic img { object-fit: cover; object-position: center; padding: 0; }
.nn-fw__fig--showcase {
  aspect-ratio: 16 / 11;
  border: 1px solid var(--flu-line-1);
  background: radial-gradient(120% 100% at 50% 0%, #fff 0%, var(--flu-ink-50) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  overflow: hidden;
}
.nn-fw__fig--showcase img {
  max-width: 96%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.25s var(--flu-ease-out);
}
.nn-fw__card:hover .nn-fw__fig--showcase img { transform: scale(1.03); }
.nn-fw__fig--showcase.showcase--fill { padding: 0; }
.nn-fw__fig--showcase.showcase--fill img { max-width: 118%; max-height: 128%; transform: scale(1.02); }
.nn-fw__card:hover .nn-fw__fig--showcase.showcase--fill img { transform: scale(1.05); }
.nn-fw__fig--covers { aspect-ratio: 16 / 11; background: var(--flu-ink-50); display: flex; align-items: stretch; justify-content: center; gap: 14px; padding: 0; overflow: hidden; }
.nn-fw__fig--covers img { flex: 1; min-width: 0; height: 100%; width: 50%; object-fit: cover; object-position: top center; border-radius: 0; box-shadow: none; }
.nn-fw__ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; }
.nn-fw__rating { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; }
.nn-fw__stars { color: var(--nn-a1); font-size: 17px; letter-spacing: 2px; }
.nn-fw__ratingtxt { font-size: 14px; color: var(--flu-fg-2); }
.nn-fw__ratingtxt b { color: var(--flu-ink); font-weight: 700; }
.nn-fw__fig image-slot { width: 100%; height: 100%; display: block; }
.nn-fw__title { font-family: var(--nn-font-head); font-size: 24px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 10px; }
.nn-fw__desc { font-size: 17px; line-height: 1.5; color: var(--flu-fg-2); margin: 0 0 20px; text-wrap: pretty; }
.nn-fw__card .nn-path__cta { margin-top: auto; background: var(--flu-ink); color: #fff; border-color: var(--flu-ink); }
.nn-fw__card .nn-path__cta:hover { background: #000; border-color: #000; }
.nn-fw__ctas .nn-path__cta { background: var(--flu-ink); color: #fff; border-color: var(--flu-ink); }
.nn-fw__ctas .nn-path__cta:hover { background: #000; }
.nn-fw__logos { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--flu-line-1); }
.nn-fw__logos .nn-logowall { grid-template-columns: repeat(3, minmax(0, 180px)); }
@media (max-width: 720px) { .nn-fw__grid { grid-template-columns: 1fr !important; gap: 30px; } }
.nn-cover {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--flu-shadow-lg);
  transition: transform 0.18s var(--flu-ease-out);
}
.nn-cover:hover { transform: translateY(-3px); }
.nn-cover img { display: block; height: 240px; width: auto; }
.nn-path__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  color: var(--flu-ink);
  padding: 12px 20px;
  border-radius: calc(var(--nn-radius) - 4px);
  border: 1px solid var(--flu-line-2);
  transition: transform 0.18s var(--flu-ease-out), background 0.18s, color 0.18s;
}
.nn-path__cta:hover { transform: translateY(-1px); border-color: var(--flu-ink); }
.nn-path__cta.is-solid { background: var(--flu-ink); color: #fff; border-color: var(--flu-ink); }
.nn-path__cta.is-solid:hover { background: #000; }
.nn-path__note {
  font-family: var(--flu-font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nn-a1);
}
@media (max-width: 820px) {
  .nn-tier__body { grid-template-columns: 1fr; gap: 24px; padding-bottom: 34px; }
  .nn-tier__fig { order: -1; aspect-ratio: 16 / 9; }
  .nn-tier__meta { grid-template-columns: 1fr; gap: 16px; padding-left: var(--nn-gutter); padding-right: var(--nn-gutter); }
}
@media (max-width: 760px) {
  .nn-tier__bar { flex-wrap: wrap; gap: 6px 18px; padding-top: 24px; padding-bottom: 24px; }
  .nn-tier__price { width: auto; order: 1; }
  .nn-tier__principle { order: 2; margin-left: auto; }
  .nn-tier__mid { order: 4; flex-basis: 100%; }
  .nn-tier__layers { display: none; }
}

/* ============================================================
   FAQ
   ============================================================ */
.nn-faq {
  background: var(--flu-paper);
  border-top: 1px solid var(--flu-line-1);
}
.nn-faq__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 96px 28px;
}
.nn-faq__head { margin-bottom: 40px; }
.nn-faq__list { list-style: none; margin: 0; padding: 0; }
.nn-faq__item { border-top: 1px solid var(--flu-line-2); }
.nn-faq__item:last-child { border-bottom: 1px solid var(--flu-line-2); }
.nn-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: clamp(18px, 2.1vw, 21px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--flu-ink);
  padding: 26px 4px;
}
.nn-faq__icon {
  flex-shrink: 0;
  color: var(--nn-a1);
  transition: transform 0.28s var(--flu-ease-out);
}
.nn-faq__vbar { transition: opacity 0.2s var(--flu-ease-out); transform-origin: center; }
.nn-faq__item.is-open .nn-faq__vbar { opacity: 0; }
.nn-faq__item.is-open .nn-faq__icon { transform: rotate(90deg); }
.nn-faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s var(--flu-ease-out);
}
.nn-faq__item.is-open .nn-faq__a { grid-template-rows: 1fr; }
.nn-faq__ainner { overflow: hidden; min-height: 0; }
.nn-faq__ainner p {
  margin: 0;
  padding: 0 60px 28px 4px;
  font-size: 17px;
  line-height: 1.62;
  color: var(--flu-fg-2);
  text-wrap: pretty;
}
@media (max-width: 560px) { .nn-faq__ainner p { padding-right: 4px; } }

/* --- v2 mobile overflow hardening (prevents grid/image min-content blowout + long-button overflow) --- */
.nn-root img, .nn-root svg, .nn-root iframe { max-width: 100%; }
@media (max-width: 940px) {
  .nn-hero__inner--split > *, .nn-about__inner > *, .nn-proof__featured > *, .nn-proof__main > *,
  .nn-edge__inner > *, .nn-tier__body > *, .nn-tier__inner > *, .nn-fw__grid > *, .nn-gallery > *,
  .nn-tier__covers > *, .nn-books__grid > *, .nn-choices > *, .nn-pos__grid > * { min-width: 0; }
  .nn-hero__ctas .nn-btn { white-space: normal; }
}
