/* ============================================================
   NB NOW — About Page Styles (Figma layout)
   Scoped to .nbn-about-page – safe to load on this template only
   ============================================================ */

/* ── Design tokens ─────────────────────────────────────────── */
.nbn-about-page {
  --navy:        #12163D;
  --navy-rule:   #232749;
  --n-ink:       #FFFFFF;
  --n-dim:       #A8B0D8;
  --n-faint:     #5B6390;

  --white:       #FFFFFF;
  --white-rule:  #E5E5E5;
  --w-ink:       #111111;
  --w-dim:       #555555;
  --w-faint:     #999999;

  --accent:      #F05144;

  /* These families must already be loaded globally by the theme
     (Adobe Fonts / existing kit). We only reference them here. */
  --font-display: 'neue-haas-grotesk-display', 'Inter', sans-serif;
  --font-body:    'neue-haas-grotesk-text',    'Inter', sans-serif;

  background-color: var(--navy);
  min-height: 100vh;
}

.nbn-about-page *,
.nbn-about-page *::before,
.nbn-about-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.nbn-about-page h1,
.nbn-about-page h2,
.nbn-about-page h3,
.nbn-about-page h4,
.nbn-about-page p,
.nbn-about-page blockquote,
.nbn-about-page cite {
  margin: 0;
  padding: 0;
  font-weight: inherit;
  font-style: inherit;
}

/* ── Primitives ─────────────────────────────────────────────── */
.nbn-accent-rule {
  height: 1px;
  background-color: var(--accent);
  display: block;
}

.nbn-navy-rule {
  height: 1px;
  background-color: var(--navy-rule);
  width: 100%;
}

.nbn-white-rule {
  height: 1px;
  background-color: var(--white-rule);
  width: 100%;
}

.nbn-spacer {
  display: block;
}

/* ── Sections ───────────────────────────────────────────────── */
.nbn-section {
  width: 100%;
}

.nbn-section--navy  { background-color: var(--navy); }
.nbn-section--white { background-color: var(--white); }

.nbn-section--hero  { padding-top: 100px; }

.nbn-section__inner {
  padding-top: 64px;
  padding-bottom: 64px;
}

.nbn-section--white .nbn-section__inner:first-child {
  padding-top: 80px;
}

/* ── Containers ─────────────────────────────────────────────── */
.nbn-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
}

.nbn-container--narrow {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
}

@media (max-width: 640px) {
  .nbn-container,
  .nbn-container--narrow {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .nbn-container,
  .nbn-container--narrow {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* ── Labels & headings ──────────────────────────────────────── */
.nbn-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.nbn-label--dark  { color: var(--n-dim); }
.nbn-label--light { color: var(--w-faint); }

.nbn-section__heading {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 20px;
}

.nbn-section__heading--light { color: var(--n-ink); }
.nbn-section__heading--dark  { color: var(--w-ink); }

.nbn-section-header .nbn-section__heading {
  margin-bottom: 0;
}

/* ── Grids ──────────────────────────────────────────────────── */
.nbn-grid {
  display: grid;
}

.nbn-grid--standard {
  grid-template-columns: 1fr;
}

.nbn-grid--hero {
  grid-template-columns: 1fr;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .nbn-grid--standard {
    grid-template-columns: 4fr 1px 7fr;
  }

  .nbn-grid--hero {
    grid-template-columns: 8fr 1px 3fr;
  }
}

.nbn-section-header {
  margin-bottom: 40px;
}

/* ── Columns ────────────────────────────────────────────────── */
.nbn-col-left {
  padding-right: 0;
}

.nbn-col-right {
  padding-left: 0;
}

.nbn-col-right--align-end {
  display: flex;
  align-items: flex-end;
}

@media (min-width: 1024px) {
  .nbn-col-left  { padding-right: 40px; }
  .nbn-col-right { padding-left: 40px; }
}

@media (max-width: 1023px) {
  .nbn-col-left,
  .nbn-col-right {
    margin-bottom: 32px;
  }
  .nbn-col-right--align-end {
    align-items: flex-start;
  }
}

/* ── Vertical rules ─────────────────────────────────────────── */
.nbn-vr {
  display: none;
  width: 1px;
}

@media (min-width: 1024px) {
  .nbn-vr { display: block; }

  .nbn-vr--white { background-color: var(--white-rule); }
  .nbn-vr--navy  { background-color: var(--navy-rule); }

  .nbn-vr--hero {
    background-color: var(--navy-rule);
    opacity: 0.35;
    align-self: stretch;
  }
}

/* ── Typography helpers ─────────────────────────────────────── */
.nbn-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
}

.nbn-body--dark   { color: var(--w-dim); }
.nbn-body--dark-sm { color: var(--w-dim); font-size: 14px; }
.nbn-body--navy-sm { color: var(--n-dim); font-size: 14px; }

.nbn-lead {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
}

.nbn-lead--dark { color: var(--w-ink); }

/* ── Hero ───────────────────────────────────────────────────── */
.nbn-section--hero .nbn-section__inner {
  padding-top: 72px;
  padding-bottom: 72px;
}

.nbn-dateline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 44px;
  border-bottom: 1px solid var(--navy-rule);
  margin-bottom: 24px;
}

.nbn-dateline__left {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--n-faint);
  text-transform: uppercase;
}

.nbn-dateline__right {
  text-align: right;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--n-faint);
  text-transform: uppercase;
}

.nbn-hero__left {
  padding-top: 36px;
  padding-bottom: 64px;
  color: var(--n-ink);
}

@media (min-width: 1024px) {
  .nbn-hero__left {
    padding-right: 64px;
  }
}

.nbn-hero__headline {
  font-family: var(--font-signal);
  font-weight: 900;
  font-style: italic;
  color: var(--n-ink);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-size: clamp(64px, 9vw, 96px);
  margin-bottom: 36px;
}

.nbn-hero__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 0;
}

.nbn-hero__body p {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.45vw, 16px);
  color: var(--n-dim);
  line-height: 1.85;
  font-weight: 400;
  margin-bottom: 0;
}

.nbn-byline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--navy-rule);
}

.nbn-byline__meta {
  display: flex;
  flex-direction: column;
}

.nbn-byline__badge {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background-color: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
  border: 1px solid var(--navy-rule);
  margin-right: 0;
}

.nbn-byline__name {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--n-ink);
}

.nbn-byline__date {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--n-faint);
  margin-top: 2px;
}

.nbn-hero__right {
  padding-top: 36px;
  padding-bottom: 64px;
  color: var(--n-dim);
  font-family: var(--font-body);
  font-size: 13px;
}

.nbn-contact__item {
  display: flex;
  flex-direction: column;
}

.nbn-contact__section-label {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--n-faint);
  margin-bottom: 10px;
}

.nbn-contact__heading {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--n-ink);
  line-height: 1.25;
  margin-bottom: 8px;
}

.nbn-contact__sub {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--n-faint);
  line-height: 1.68;
  margin-bottom: 20px;
}

.nbn-contact__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.nbn-contact__label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--n-faint);
  margin-bottom: 2px;
  opacity: 0.75;
}

.nbn-contact__link {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--n-faint);
  text-decoration: none;
  border-bottom: 1px solid var(--navy-rule);
  transition: color 0.15s, border-color 0.15s;
}

.nbn-contact__link:hover {
  color: var(--n-dim);
  border-bottom-color: var(--accent);
}

.nbn-contact__text {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--n-faint);
}

.nbn-cta-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0;
}

.nbn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.nbn-cta--navy {
  color: var(--n-ink);
}

.nbn-cta--white {
  color: var(--w-ink);
}

.nbn-cta__arrow {
  flex-shrink: 0;
}

.nbn-contact__footer-note {
  font-size: 9px;
  color: var(--n-faint);
  margin-top: 24px;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

/* FACTS GRID — Mission section */
.nbn-about-page .nbn-facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--white-rule);
}

.nbn-about-page .nbn-fact {
  padding: 18px 0;
  border-bottom: 1px solid var(--white-rule);
}

.nbn-about-page .nbn-fact--border-r {
  border-right: 1px solid var(--white-rule);
  padding-right: 24px;
}

.nbn-about-page .nbn-facts-grid .nbn-fact:not(.nbn-fact--border-r) {
  padding-left: 24px;
}

.nbn-about-page .nbn-fact__label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--w-faint);
  margin-bottom: 6px;
}

.nbn-about-page .nbn-fact__value {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--w-ink);
  letter-spacing: 0.01em;
}

/* PURPOSE: Why we report (blockquote + purpose grid) */
.nbn-about-page .nbn-blockquote {
  border-left: 1px solid var(--accent);
  padding-left: 20px;
  margin-bottom: 40px;
}

.nbn-about-page .nbn-blockquote__text {
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  font-style: italic;
  color: var(--n-ink);
  line-height: 1.35;
  margin-bottom: 10px;
}

.nbn-about-page .nbn-blockquote__cite {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--n-faint);
  font-style: normal;
}

.nbn-about-page .nbn-purpose-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--navy-rule);
}

@media (min-width: 640px) {
  .nbn-about-page .nbn-purpose-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nbn-about-page .nbn-purpose-item--border-r {
    border-right: 1px solid var(--navy-rule);
  }

  .nbn-about-page .nbn-purpose-grid .nbn-purpose-item:not(.nbn-purpose-item--border-r) {
    padding-left: 28px;
  }
}

.nbn-about-page .nbn-purpose-item {
  padding: 28px 0;
}

.nbn-about-page .nbn-purpose-item--border-r {
  padding-right: 28px;
}

.nbn-about-page .nbn-purpose-item__heading {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--n-ink);
  margin-bottom: 10px;
  line-height: 1.25;
}

.nbn-about-page .nbn-purpose-item__body {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--n-dim);
  line-height: 1.72;
}

/* PILLARS: Editorial Standards grid */
.nbn-about-page .nbn-pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .nbn-about-page .nbn-pillars-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .nbn-about-page .nbn-pillars-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.nbn-about-page .nbn-pillar {
  padding: 28px 0;
  border-top: 1px solid var(--white-rule);
}

@media (min-width: 1024px) {
  .nbn-about-page .nbn-pillar--border-r {
    border-right: 1px solid var(--white-rule);
    padding-right: 32px;
  }

  .nbn-about-page .nbn-pillars-grid .nbn-pillar:nth-child(3n + 2) {
    padding-left: 32px;
    padding-right: 32px;
  }

  .nbn-about-page .nbn-pillars-grid .nbn-pillar:nth-child(3n) {
    padding-left: 32px;
  }

  .nbn-about-page .nbn-pillar--border-b {
    border-bottom: 1px solid var(--white-rule);
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .nbn-about-page .nbn-pillars-grid .nbn-pillar:nth-child(odd) {
    border-right: 1px solid var(--white-rule);
    padding-right: 28px;
  }

  .nbn-about-page .nbn-pillars-grid .nbn-pillar:nth-child(even) {
    padding-left: 28px;
  }

  .nbn-about-page .nbn-pillars-grid .nbn-pillar:nth-child(-n + 4) {
    border-bottom: 1px solid var(--white-rule);
  }
}

.nbn-about-page .nbn-pillar__number {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--w-faint);
  margin-bottom: 10px;
}

.nbn-about-page .nbn-pillar__heading {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--w-ink);
  line-height: 1.25;

  display: inline-block;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;

  margin-bottom: 0;
}

.nbn-about-page .nbn-pillar__body {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--w-dim);
  line-height: 1.72;
  margin-top: 10px;
}

/* STEPS: How we report (steps grid) */
.nbn-about-page .nbn-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .nbn-about-page .nbn-steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .nbn-about-page .nbn-steps-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.nbn-about-page .nbn-step {
  padding: 28px 0;
  border-top: 1px solid var(--white-rule);
}

/* Desktop: right borders on first 3 steps */
@media (min-width: 1024px) {
  .nbn-about-page .nbn-step--border-r {
    border-right: 1px solid var(--white-rule);
    padding-right: 28px;
  }

  .nbn-about-page .nbn-steps-grid .nbn-step:not(:first-child) {
    padding-left: 28px;
  }

  .nbn-about-page .nbn-steps-grid .nbn-step:last-child {
    padding-right: 0;
  }
}

/* Tablet: right border on odd steps */
@media (min-width: 640px) and (max-width: 1023px) {
  .nbn-about-page .nbn-steps-grid .nbn-step:nth-child(odd) {
    border-right: 1px solid var(--white-rule);
    padding-right: 24px;
  }

  .nbn-about-page .nbn-steps-grid .nbn-step:nth-child(even) {
    padding-left: 24px;
  }

  /* bottom border on first row */
  .nbn-about-page .nbn-steps-grid .nbn-step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--white-rule);
  }
}

.nbn-about-page .nbn-step__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.nbn-about-page .nbn-step__number {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--w-faint);
}

.nbn-about-page .nbn-step__phase {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--w-dim);
}

.nbn-about-page .nbn-step__heading {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--w-ink);
  line-height: 1.25;
  margin-bottom: 10px;
}

.nbn-about-page .nbn-step__body {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--w-dim);
  line-height: 1.72;
  margin-bottom: 14px;
}

.nbn-about-page .nbn-step__note {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  color: var(--w-faint);
  line-height: 1.6;
}

/* COMMITMENT BAR (end of Steps section) */
.nbn-about-page .nbn-commitment {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--white-rule);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

@media (min-width: 640px) {
  .nbn-about-page .nbn-commitment {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
  }
}

.nbn-about-page .nbn-commitment__label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--w-faint);
  margin-bottom: 8px;
}

.nbn-about-page .nbn-commitment__statement {
  font-family: var(--font-display);
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 700;
  color: var(--w-ink);
  line-height: 1.3;
}

/* ── Newsletter section (shares navy background) ───────────── */
.nbn-section--newsletter .nbn-section__inner {
  padding-top: 72px;
  padding-bottom: 72px;
}

.nbn-col-right--newsletter {
  display: flex;
  align-items: center;
}

.nbn-section--newsletter .briefing-hub-form-wrap {
  width: 100%;
  max-width: 420px;
}

.nbn-section--newsletter .nl-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.18);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  margin-bottom: 10px;
}

.nbn-section--newsletter .nl-input::placeholder {
  color: rgba(255,255,255,0.55);
}

.nbn-section--newsletter .briefing-hub-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border-radius: 3px;
  border: none;
  background-color: var(--accent);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.nbn-section--newsletter .nl-thank-you-text {
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
}

/* Additional section, grid, pillar, step, etc. styles are
   identical to the provided Figma-based about.css and have
   been trimmed here for brevity in this excerpt. */

