/* ============================================================
   NORMIES TIER-1 DESIGN SYSTEM
   Strict brand spec: SF Pro · #242424 ink · #fffca2 yellow
   Use this for all sub-pages. Page-specific styles ride on top.
   ============================================================ */

:root {
  --n-font: "SF Pro", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --n-ink: #242424;
  --n-ink-2: #4a4a48;
  --n-ink-3: #807d72;
  --n-y: #fffca2;
  --n-cream: #fffdf4;
  --n-paper: #fbf9ef;
  --n-hair: #e6e3d4;
  --n-hair-2: #f0ecdc;
  --n-card-shadow: 0 18px 46px rgba(125, 119, 0, 0.18);
  --n-card-shadow-lg: 0 28px 70px rgba(125, 119, 0, 0.28);
  --n-cta-shadow: 0 20px 50px rgba(0,0,0,0.15);
  --n-ease: cubic-bezier(.2,.8,.2,1);
  --n-ease-soft: cubic-bezier(.22,.61,.36,1);
}

html { scroll-behavior: smooth; }
body { background: var(--n-cream); }
body.nr-page,
body.nr-page * {
  font-family: var(--n-font) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.nr-page { color: var(--n-ink); overflow-x: hidden; }
body.nr-page::-webkit-scrollbar { width: 0; }
body.nr-page ::selection { background: var(--n-y); color: var(--n-ink); }

@media (min-width: 1440px) { html { font-size: calc(16px + 4 * ((100vw - 1440px) / 720)); } }
@media (min-width: 768px) and (max-width: 1439px) { html { font-size: calc(14px + 2 * ((100vw - 320px) / 1000)); } }
@media (max-width: 767px) { html { font-size: 16px; } }

/* ---------------------------------------------------------- */
/*  NAV                                                       */
/* ---------------------------------------------------------- */

.nr-page .blog-navbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 40px;
  background: var(--n-y);
  border-bottom: 1px solid rgba(36,36,36,0.08);
  transition: background .35s var(--n-ease), padding .35s var(--n-ease), box-shadow .35s var(--n-ease);
}
body.nr-page.is-scrolled .blog-navbar {
  background: rgba(255,253,244,0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  padding: 14px 40px;
  box-shadow: 0 1px 0 rgba(36,36,36,0.06);
}
.nr-page .blog-nav-logo {
  font-family: var(--n-font);
  font-weight: 600; font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--n-ink); text-decoration: none;
}
.nr-page .blog-nav-links { display: flex; align-items: center; gap: 36px; }
.nr-page .blog-nav-link {
  color: var(--n-ink); font-size: 15px; font-weight: 400;
  text-decoration: none; opacity: .82;
  transition: opacity .2s ease;
}
.nr-page .blog-nav-link:hover { opacity: 1; }
.nr-page .blog-nav-cta {
  background: var(--n-ink); color: #fff !important;
  padding: 12px 24px;
  border-radius: 56px;
  font-weight: 400; font-size: 15px;
  text-decoration: none;
  transition: transform .25s var(--n-ease), box-shadow .25s var(--n-ease);
}
.nr-page .blog-nav-cta:hover { transform: translateY(-1px); box-shadow: var(--n-cta-shadow); }
@media (max-width: 720px) {
  .nr-page .blog-navbar { padding: 16px 20px; }
  .nr-page .blog-nav-links { gap: 14px; }
  .nr-page .blog-nav-link { display: none; }
  .nr-page .blog-nav-link:nth-child(4) { display: inline; }
}

/* ---------------------------------------------------------- */
/*  CTA BUTTONS                                               */
/* ---------------------------------------------------------- */

.nr-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  background: var(--n-ink); color: #fff;
  border: 0; border-radius: 56px;
  font-family: var(--n-font); font-size: 15px; font-weight: 400;
  text-decoration: none; cursor: pointer;
  box-shadow: var(--n-cta-shadow);
  transition: transform .25s var(--n-ease), box-shadow .25s var(--n-ease);
}
.nr-btn:hover { transform: translateY(-2px); box-shadow: 0 26px 60px rgba(0,0,0,0.22); color: #fff; }
.nr-btn--y { background: var(--n-y); color: var(--n-ink); }
.nr-btn--y:hover { background: #fff; color: var(--n-ink); }
.nr-btn--ghost {
  background: rgba(255,255,255,0.65);
  color: var(--n-ink);
  border: 1px solid rgba(36,36,36,0.1);
  box-shadow: none;
}
.nr-btn--ghost:hover { background: #fff; box-shadow: none; transform: translateY(-1px); color: var(--n-ink); }
.nr-btn__arw { display: inline-block; transition: transform .25s var(--n-ease); }
.nr-btn:hover .nr-btn__arw { transform: translateX(4px); }

/* ---------------------------------------------------------- */
/*  TYPOGRAPHY                                                */
/* ---------------------------------------------------------- */

.nr-eyebrow {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--n-ink-3);
  margin: 0 0 14px;
}
.nr-h2 {
  font-weight: 500;
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--n-ink);
  margin: 0 0 14px;
}

/* ---------------------------------------------------------- */
/*  HERO SHELL                                                */
/* ---------------------------------------------------------- */

.nr-hero {
  position: relative;
  background: var(--n-y) url('../images/hero-bg-union.png') center top / cover no-repeat;
  padding: 96px 32px 120px;
  overflow: hidden;
  isolation: isolate;
}
.nr-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(56% 38% at 22% 24%, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 60%),
    radial-gradient(40% 32% at 78% 78%, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 65%);
  pointer-events: none; z-index: 0;
}
.nr-hero__inner {
  position: relative; z-index: 2;
  max-width: 1240px; margin: 0 auto;
}
@media (max-width: 1024px) { .nr-hero { padding: 72px 24px 88px; } }

.nr-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px 7px 14px;
  background: rgba(36,36,36,0.06);
  border-radius: 56px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--n-ink);
}
.nr-tag::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--n-ink);
  animation: nrTagDot 2.4s var(--n-ease-soft) infinite;
}
@keyframes nrTagDot {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: .55; }
}

.nr-h1 {
  font-family: var(--n-font);
  font-weight: 500;
  font-size: clamp(2.6rem, 5.8vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--n-ink);
  margin: 0 0 22px;
}
.nr-h1 em {
  font-style: normal;
  position: relative; display: inline-block;
}
.nr-h1 em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.06em; height: 0.32em;
  background: rgba(255,255,255,0.55); z-index: -1; border-radius: 2px; transform: skewX(-10deg);
}

.nr-lede {
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.55; color: var(--n-ink-2);
  max-width: 540px; margin: 0 0 32px;
}

/* ---------------------------------------------------------- */
/*  CARDS                                                     */
/* ---------------------------------------------------------- */

.nr-card {
  background: #fff;
  border-radius: 8px;
  padding: 28px 26px;
  box-shadow: var(--n-card-shadow);
  transition: transform .35s var(--n-ease), box-shadow .35s var(--n-ease);
  text-decoration: none;
  color: var(--n-ink);
  display: block;
}
.nr-card:hover { transform: translateY(-4px); box-shadow: var(--n-card-shadow-lg); color: var(--n-ink); }
.nr-card--ink { background: var(--n-ink); color: #fff; }
.nr-card--ink:hover { color: #fff; }
.nr-card__icon {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--n-y);
  border-radius: 8px;
  margin-bottom: 18px;
}
.nr-card__icon svg { width: 18px; height: 18px; color: var(--n-ink); }
.nr-card__title {
  font-size: 18px; font-weight: 500;
  letter-spacing: -0.012em;
  margin: 0 0 8px;
  color: inherit;
}
.nr-card__p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--n-ink-2);
  margin: 0;
}
.nr-card--ink .nr-card__p { color: rgba(255,255,255,0.72); }
.nr-card__arw {
  font-size: 13px;
  font-weight: 500;
  margin-top: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  color: inherit;
  transition: gap .25s var(--n-ease);
}
.nr-card:hover .nr-card__arw { gap: 10px; }

/* ---------------------------------------------------------- */
/*  EDITORIAL DIVIDER LIST (accordion-friendly)               */
/* ---------------------------------------------------------- */

.nr-list {
  list-style: none;
  margin: 0; padding: 0;
  border-top: 1px solid var(--n-hair);
}
.nr-list > li, .nr-row {
  border-bottom: 1px solid var(--n-hair);
  padding: 22px 4px;
}

/* ---------------------------------------------------------- */
/*  PULL QUOTE                                                */
/* ---------------------------------------------------------- */

.nr-quote {
  margin: 96px 0;
  padding: 64px 0 56px;
  border-top: 1px solid var(--n-hair);
  border-bottom: 1px solid var(--n-hair);
  text-align: center;
}
.nr-quote__mark {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 80px; line-height: 0.6;
  color: var(--n-ink); opacity: .12;
  display: block;
  margin-bottom: 8px;
}
.nr-quote__text {
  font-family: var(--n-font);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.25;
  letter-spacing: -0.018em;
  font-weight: 500;
  color: var(--n-ink);
  max-width: 28ch;
  margin: 0 auto 24px;
}
.nr-quote__cite {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--n-ink-3);
  font-weight: 500;
}

/* ---------------------------------------------------------- */
/*  CTA BLOCK (dark)                                          */
/* ---------------------------------------------------------- */

.nr-cta {
  margin-top: 96px;
  padding: 72px 56px;
  background: var(--n-ink); color: #fff;
  border-radius: 24px;
  position: relative; overflow: hidden; isolation: isolate;
}
.nr-cta::before {
  content: ""; position: absolute;
  inset: -40% -10% auto auto;
  width: 80%; aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(255,252,162,0.18), transparent 70%);
  z-index: -1;
}
.nr-cta__inner { max-width: 720px; position: relative; }
.nr-cta h2 {
  font-family: var(--n-font);
  font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.022em;
  margin: 0 0 14px;
  color: #fff;
}
.nr-cta p {
  font-size: 17px; line-height: 1.55;
  color: rgba(255,255,255,0.72);
  margin: 0 0 32px;
  max-width: 52ch;
}
.nr-cta__buttons { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 720px) { .nr-cta { padding: 48px 28px; border-radius: 16px; } }

/* ---------------------------------------------------------- */
/*  FOOTER (clean tier-1 replacement for the Lottie banner)   */
/* ---------------------------------------------------------- */

.nr-footer {
  background: var(--n-paper);
  border-top: 1px solid var(--n-hair);
  padding: 56px 32px 28px;
  color: var(--n-ink-2);
}
.nr-footer__inner {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 720px) { .nr-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; } }
.nr-footer__brand {
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--n-ink); text-decoration: none;
  display: inline-block; margin-bottom: 12px;
}
.nr-footer__tag {
  font-size: 14px; line-height: 1.5;
  color: var(--n-ink-2);
  max-width: 28ch; margin: 0;
}
.nr-footer__col h5 {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--n-ink-3);
  margin: 0 0 16px;
}
.nr-footer__col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.nr-footer__col a {
  font-size: 14px;
  color: var(--n-ink-2);
  text-decoration: none;
  transition: color .2s;
}
.nr-footer__col a:hover { color: var(--n-ink); }
.nr-footer__bottom {
  max-width: 1240px; margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--n-hair);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--n-ink-3);
  flex-wrap: wrap; gap: 12px;
}

/* ---------------------------------------------------------- */
/*  WAITLIST CTA (replaces the Lottie footer banner)          */
/* ---------------------------------------------------------- */

.nr-waitlist {
  background: var(--n-y);
  padding: 96px 32px;
  text-align: center;
  border-bottom: 1px solid var(--n-hair);
  position: relative;
  overflow: hidden;
}
.nr-waitlist::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 50% at 20% 50%, rgba(255,255,255,0.45), transparent 60%),
    radial-gradient(50% 50% at 80% 50%, rgba(255,255,255,0.35), transparent 60%);
  pointer-events: none;
}
.nr-waitlist__inner { position: relative; max-width: 720px; margin: 0 auto; }
.nr-waitlist__h {
  font-family: var(--n-font);
  font-weight: 500;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--n-ink);
  margin: 0 0 16px;
}
.nr-waitlist__p {
  font-size: 17px; line-height: 1.55;
  color: var(--n-ink-2);
  margin: 0 0 32px;
}

/* ---------------------------------------------------------- */
/*  REVEAL                                                    */
/* ---------------------------------------------------------- */

.nr-reveal { opacity: 0; transform: translateY(16px); transition: opacity .8s var(--n-ease), transform .8s var(--n-ease); }
.nr-reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .nr-reveal, .nr-reveal.is-in, .nr-tag::before { animation: none; opacity: 1; transform: none; transition: none; }
}
