/* ── Scoped base ─────────────────────────────────────────────── */
.svf-page [id] {
  scroll-margin-top: calc(var(--top-ribbon-height, 0px) + var(--masthead-height, 88px) + 24px);
}

.svf-page,
.svf-page p,
.svf-page li,
.svf-page td {
  font-size: 16px !important;
  line-height: 1.7;
}

/* ── Hero ────────────────────────────────────────────────────── */
.svf-hero .hero-panel { max-width: 100%; }

.page-section.page-section--tinted.svf-page{
  padding-top: 0 !important;
  /* Clip 100vw full-bleed elements (jumpnav, section backgrounds) so they
     don't cause a horizontal scrollbar on Windows (scrollbar ≈ 17px wide).
     overflow-x: clip does NOT create a scroll container, so position:sticky
     on .svf-jumpnav continues to work correctly. */
  overflow-x: clip;
}

.svf-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* ── Page flow ───────────────────────────────────────────────── */
.svf-page__flow {
  display: grid;
  gap: 0;
}

/* ── Jump nav ────────────────────────────────────────────────── */
.svf-jumpnav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 24px 12px;
  position: sticky;
  top: calc(var(--top-ribbon-height, 0px) + var(--masthead-height, 88px) + 0px);
  z-index: 8;
  background: rgba(244, 247, 251, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(7, 54, 95, 0.09);
  /* Full viewport width — works because site-shell has no overflow:hidden */
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.svf-jumpnav a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 999px;
  border: 1px solid rgba(7, 54, 95, 0.14);
  background: #fff;
  color: var(--ndc-blue-deep);
  text-decoration: none;
  white-space: nowrap;
  transition: background 150ms, color 150ms, border-color 150ms;
}

.svf-jumpnav a:hover,
.svf-jumpnav a.is-active {
  background: var(--ndc-blue-deep);
  color: #fff;
  border-color: transparent;
}

/* ── Section shell ───────────────────────────────────────────── */
.svf-section {
  display: grid;
  gap: 20px;
  padding: clamp(32px, 4vw, 52px) 0;
  border-bottom: 1px solid rgba(7, 54, 95, 0.08);
}

.svf-section:last-child { border-bottom: none; }

.svf-section__heading {
  display: grid;
  gap: 5px;
  max-width: 760px;
}

.svf-section__heading h2 {
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  line-height: 1.3;
  color: var(--ndc-blue-deep);
}

.svf-section__heading .eyebrow { font-size: 11px; }

/* ── Overview ────────────────────────────────────────────────── */
.svf-overview {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.4fr);
  align-items: start;
}

.svf-overview__image img {
  width: 100%;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.svf-overview__content { display: grid; gap: 0; }

.svf-overview__content .eyebrow { margin-bottom: 4px; font-size: 11px; }

.svf-overview__content h2 {
  margin: 0 0 16px;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.25;
  color: var(--ndc-blue-deep);
}

.svf-overview__visible p,
.svf-overview__expandable p {
  margin: 0 0 12px;
}

.svf-overview__visible p:last-child,
.svf-overview__expandable p:last-child {
  margin-bottom: 0;
}

.svf-overview__expandable { margin-top: 12px; }

/* Read more button */
.svf-readmore {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: #075b91;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 150ms;
  min-height: unset;
}

.svf-readmore:hover { opacity: 0.75; }

/* ── Timeline section skin ───────────────────────────────────── */
.svf-section--timeline {
  position: relative;
  border-bottom: none;
  padding: clamp(48px, 6vw, 80px) 0;
}

/* Full-width background strip — extends beyond .site-shell */
.svf-section--timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background: linear-gradient(150deg, #0b2a0c 0%, #164e18 40%, #1e6022 100%);
  z-index: 0;
  pointer-events: none;
}

/* Image texture overlay */
.svf-section--timeline::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background: url('https://ndc-mockup1.transcend-enterprise.com/wp-content/uploads/2026/07/timeline-scaled.jpg') center / cover no-repeat;
  opacity: 0.07;
  z-index: 1;
  pointer-events: none;
}

/* Lift all direct children above bg layers */
.svf-section--timeline > * {
  position: relative;
  z-index: 2;
}

/* Heading — centered, white, large */
.svf-section--timeline .svf-section__heading {
  text-align: center;
  max-width: none;
  margin-bottom: 44px;
}

.svf-section--timeline .svf-section__heading .eyebrow {
  color: rgba(255, 255, 255, 0.856);
  letter-spacing: 0.12em;
}

.svf-section--timeline .svf-section__heading h2 {
  color: #fff !important;
  font-size: clamp(2rem, 4vw, 4rem);
  margin: 5px 0 0;
  line-height: 1.2;
}

/* ── Timeline layout ─────────────────────────────────────────── */
.svf-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Center vertical line */
.svf-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-50%);
  pointer-events: none;
}

.svf-timeline__entry {
  display: grid;
  grid-template-columns: 1fr 36px 1fr;
  align-items: flex-start;
  padding-bottom: 36px;
  position: relative;
}

.svf-timeline__entry:last-child { padding-bottom: 0; }

/* Odd: card LEFT, dot center */
.svf-timeline__entry:nth-child(odd) .svf-timeline__card {
  grid-column: 1;
  grid-row: 1;
  padding-right: 26px;
  text-align: right;
  margin-left: auto; /* hug center line */
}

.svf-timeline__entry:nth-child(odd) .svf-timeline__dot {
  grid-column: 2;
  grid-row: 1;
}

/* Even: dot center, card RIGHT */
.svf-timeline__entry:nth-child(even) .svf-timeline__card {
  grid-column: 3;
  grid-row: 1;
  padding-left: 26px;
  text-align: left;
  margin-right: auto; /* hug center line */
}

.svf-timeline__entry:nth-child(even) .svf-timeline__dot {
  grid-column: 2;
  grid-row: 1;
}

/* Dot */
.svf-timeline__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.18), 0 2px 12px rgba(0, 0, 0, 0.3);
  justify-self: center;
  align-self: flex-start;
  margin-top: 7px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* Card — solid white for strong contrast on dark green */
.svf-timeline__card {
  background: #fff;
  border: none;
  border-radius: 10px;
  padding: 18px 22px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
  max-width: 400px;
  width: 100%;
}

#svf-partners,
#svf-portfolio,
#svf-structure{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 0;
}

#svf-partners .heading-font,
#svf-portfolio .svf-section__heading .heading-font,
#svf-structure .heading-font{
  font-size: clamp(1.5rem, 3vw, 3rem);
  text-align: center;
}

#svf-partners .svf-section__heading .eyebrow{
  text-align: center;
}

#svf-structure .svf-section__heading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.svf-timeline__year {
  display: block;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ndc-gold);
  margin-bottom: 5px;
}

.svf-timeline__card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ndc-blue-deep);
  margin: 0 0 7px;
  line-height: 1.3;
}

.svf-timeline__card p {
  font-size: 13px;
  color: var(--ndc-muted, #555);
  margin: 0;
  line-height: 1.65;
}

/* ── Org Chart (Structure section) ──────────────────────────── */
.svf-org-chart {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.svf-org-card {
  flex: 1;
  position: relative;
  /* Top padding creates room for the circle to overflow above the card */
  padding-top: 58px;
  display: flex;
  flex-direction: column;
}

/* ── Colored ring (z-index 1 — sits BEHIND the card body) */
.svf-org-card__ring {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 116px;
  height: 116px;
  border-radius: 50%;
  border: 10px solid var(--org-color);
  background: transparent;
  z-index: 1;
}

/* ── Card body (z-index 2 — covers the bottom half of the ring → C-arc effect) */
.svf-org-card__body {
  position: relative;
  z-index: 2;
  flex: 1;
  background: var(--org-bg);
  border-radius: 18px;
  padding: 70px 24px 28px;
  text-align: center;
  border: 1px solid var(--org-border);
}

/* ── White icon circle (z-index 3 — floats above both ring and card) */
.svf-org-card__icon {
  position: absolute;
  top: 8px; /* sits inside the ring border */
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svf-org-card__icon svg {
  width: 34px;
  height: 34px;
  color: var(--org-color);
  stroke: var(--org-color);
}

.svf-org-card__body h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--org-color);
  margin: 0 0 12px;
}

.svf-org-card__body p {
  font-size: 13px;
  color: var(--ndc-muted, #666);
  margin: 0;
  line-height: 1.7;
}

/* Color variants */
.svf-org-card--blue {
  --org-color: var(--ndc-blue);
  --org-bg: #edf3fa;
  --org-border: rgba(15, 76, 129, 0.12);
}

.svf-org-card--gold {
  --org-color: var(--ndc-gold);
  --org-bg: #fdf5e6;
  --org-border: rgba(221, 148, 37, 0.14);
}

.svf-org-card--green {
  --org-color: var(--ndc-green);
  --org-bg: #edf6ec;
  --org-border: rgba(79, 154, 75, 0.14);
}

/* ── Partners full-bleed white ───────────────────────────────── */
.svf-section--partners {
  position: relative;
  border-bottom: none;
  text-align: center;
}

.svf-section--partners::before {
  content: "";
  position: absolute;
  top: 0; left: 50%; bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background: #fff;
  z-index: 0;
  pointer-events: none;
}

.svf-section--partners > * {
  position: relative;
  z-index: 1;
}

.svf-section--partners .svf-section__heading {
  text-align: center;
  max-width: none;
}

/* ── Portfolio ───────────────────────────────────────────────── */
.svf-portfolio {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.svf-portfolio__card {
  border: 1px solid rgba(7, 54, 95, 0.1);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(7, 54, 95, 0.07);
  display: flex;
  flex-direction: column;
}

.svf-portfolio__image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #f5f7fa;
  flex-shrink: 0;
}

.svf-portfolio__image img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 50%;
  background: #fff;
  padding: 16px;
  box-shadow: 0 4px 16px rgba(7, 54, 95, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svf-portfolio__card:hover .svf-portfolio__image img {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(7, 54, 95, 0.16);
}

.svf-portfolio__body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.svf-portfolio__body h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--ndc-blue-deep);
}

.svf-portfolio__body p { margin: 0 0 10px; }

.svf-portfolio__body ul {
  margin: 0 0 14px;
  padding-left: 18px;
}

.svf-portfolio__body li { margin-bottom: 5px; color: var(--ndc-muted); }
.svf-portfolio__body li:last-child { margin-bottom: 0; }

.svf-portfolio__visit {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  padding-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ndc-blue);
  text-decoration: none;
  border-top: 1px solid rgba(7, 54, 95, 0.08);
  transition: color 0.2s, gap 0.2s;
}

.svf-portfolio__visit:hover {
  color: var(--ndc-green);
  gap: 8px;
}

/* ── Partners ────────────────────────────────────────────────── */
#svf-partners{
  background-color: white !important;
  padding: 150px 0;
}

.svf-partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  align-items: center;
  justify-items: center;
}

.svf-partner-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  position: relative;
  text-decoration: none;
  transition: filter 0.25s, opacity 0.25s;
  width: 100%;
}

.svf-partner-tile:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.svf-partner-tile img {
  max-width: 100%;
  max-height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Tooltip */
.svf-partner-tile::after {
  content: attr(data-label);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(10, 28, 58, 0.88);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s, transform 0.15s;
  z-index: 10;
}

.svf-partner-tile:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Fallback when no logo is set */
.svf-partner-tile__fallback {
  font-size: 13px;
  font-weight: 600;
  color: var(--ndc-muted);
  text-align: center;
  line-height: 1.4;
}

/* ── Guidelines Blueprint ────────────────────────────────────── */
.svf-section--guidelines {
  position: relative;
  border-bottom: none;
  padding: clamp(52px, 7vw, 96px) 0;
}

#svf-guidelines .heading-font{
  font-size: clamp(1.5rem, 3vw, 3rem);
  color: #fff !important;
  text-align: center;
}

.svf-section--guidelines::before {
  content: "";
  position: absolute;
  top: 0; left: 50%; bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #071e3d 0%, #0a3060 45%, #093d28 100%);
  z-index: 0;
  pointer-events: none;
}

.svf-section--guidelines > * {
  position: relative;
  z-index: 1;
}

/* Centered header */
.svf-blueprint__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(28px, 4vw, 44px);
}

.svf-blueprint__header  h2{
  font-size: clamp(1.5rem, 3vw, 3rem) IM !important;
}

.svf-blueprint__header .eyebrow,
.svf-blueprint__header h2,
.svf-blueprint__header p {
  color: #fff;
}

.svf-blueprint__header h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  margin: 6px 0 16px;
  line-height: 1.2;
}

.svf-blueprint__header p {
  opacity: 0.78;
  margin: 0 0 10px;
  font-size: 14px;
}

.svf-blueprint__header p:last-child { margin-bottom: 0; }

/* Two cards */
.svf-blueprint__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.svf-blueprint__card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.svf-blueprint__card h3 {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255, 255, 255, 0.993);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 1;
}

/* Question mark overlay on eligibility card */
.svf-blueprint__card--eligibility::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--qmark-bg) center/cover no-repeat;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

.svf-blueprint__card--eligibility > * {
  position: relative;
  z-index: 1;
}

/* Check icons for documentary requirements */
.svf-blueprint__card ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  flex: 1;
  position: relative;
  z-index: 1;
}

.svf-blueprint__card--docs > ul > li,
.svf-blueprint__doclist > li {
  color: rgb(255, 255, 255);
  margin-bottom: 8px;
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}

.svf-blueprint__doclist > li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #6ee885;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.5;
}

.svf-blueprint__doclist > li:last-child { margin-bottom: 0; }

/* Nested children - no check icon, just dash */
.svf-blueprint__doclist > li > ul {
  margin-top: 5px;
  padding-left: 4px;
  list-style: none;
}

.svf-blueprint__doclist > li > ul > li {
  color: rgba(255, 255, 255, 0.959);
  font-size: 13px;
  margin-bottom: 3px;
  padding-left: 14px;
  position: relative;
}

.svf-blueprint__doclist > li > ul > li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.35);
}

/* Eligibility list - keep bullets but color them */
.svf-blueprint__card--eligibility ul {
  padding-left: 18px;
  list-style: disc;
}

.svf-blueprint__card--eligibility li {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 9px;
  line-height: 1.55;
}

.svf-blueprint__card--eligibility li:last-child { margin-bottom: 0; }

/* CTA button */
.svf-blueprint__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  padding: 11px 22px;
  background: #fff;
  color: var(--ndc-blue-deep);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.2s, color 0.2s, gap 0.2s;
  position: relative;
  z-index: 1;
}

.svf-blueprint__cta:hover {
  background: var(--ndc-gold);
  color: #fff;
  gap: 10px;
}

/* ── Investment Process ──────────────────────────────────────── */
.svf-blueprint__process {
  background: rgba(255, 255, 255, 0.11);
  border: 1.5px solid rgba(221, 172, 60, 0.45);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 40px) clamp(24px, 4vw, 48px);
  box-shadow: 0 0 40px rgba(221, 172, 60, 0.08) inset;
}

.svf-blueprint__process-label {
  text-align: center;
  font-size: 20px !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ndc-gold);
  margin: 0 0 28px;
}

.svf-blueprint__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

/* Connecting line */
.svf-blueprint__steps::before {
  content: "";
  position: absolute;
  top: 26px;
  left: calc(100% / 8);
  right: calc(100% / 8);
  height: 2px;
  background: linear-gradient(90deg, var(--ndc-gold), rgba(221, 172, 60, 0.2));
  z-index: 0;
  pointer-events: none;
}

.svf-blueprint__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.svf-blueprint__step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ndc-gold);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(221, 172, 60, 0.55);
  letter-spacing: -0.02em;
}

.svf-blueprint__step h4 {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 7px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.svf-blueprint__step p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

/* ── CIP section additions ───────────────────────────────────── */
.svf-blueprint__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: clamp(20px, 3vw, 36px) 0 clamp(24px, 3vw, 40px);
}

.svf-blueprint__sub-heading {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: #fff;
  margin: 0 0 18px;
  line-height: 1.2;
}

.svf-blueprint__sub-for {
  font-style: italic; text-transform: lowercase; font-weight:500; margin-right: 0.25em;
}

.svf-blueprint__header--cip {
  margin-bottom: 20px;
  max-width: 800px;
  text-align: center;
}

.svf-blueprint__header--cip p {
  opacity: 0.78;
  color: #fff;
  font-size: 14px;
  margin: 0;
}

/* CIP accreditation conditions use check icons */
.svf-blueprint__card--cip ul {
  padding-left: 0;
  list-style: none;
}

.svf-blueprint__card--cip li {
  padding-left: 22px;
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 10px;
  line-height: 1.6;
}

.svf-blueprint__card--cip li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6ee885;
  font-weight: 700;
}

/* Grouped documentary requirements list */
.svf-blueprint__grouplist {
  padding-left: 0 !important;
  list-style: none !important;
  overflow-y: auto;
  max-height: 340px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
}

.svf-blueprint__docgroup {
  margin-bottom: 14px !important;
  padding-left: 0 !important;
}

.svf-blueprint__docgroup::before { display: none !important; }

.svf-blueprint__docgroup-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.svf-blueprint__docgroup-note {
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.7;
  font-size: 10px;
}

.svf-blueprint__docgroup > ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.svf-blueprint__docgroup > ul > li {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  margin-bottom: 4px;
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.svf-blueprint__docgroup > ul > li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.35);
}

.svf-blueprint__card-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin: 0 0 14px;
  position: relative;
  z-index: 1;
}

/* ── Readiness widget ────────────────────────────────────────── */
.svf-readiness-widget {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.7fr);
  align-items: start;
}

.svf-readiness__intro h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ndc-blue-deep);
}

.svf-readiness__intro p { margin: 0 0 8px; }
.svf-readiness__intro p:last-child { margin-bottom: 0; }

.svf-readiness__result {
  border: 1px solid rgba(7, 54, 95, 0.1);
  border-radius: 10px;
  padding: 16px 18px;
  background: #fff;
}

.svf-readiness__badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(7, 91, 145, 0.1);
  color: var(--ndc-blue-deep);
  margin-bottom: 10px;
  width: fit-content;
}

.svf-readiness__result.is-ready .svf-readiness__badge {
  background: rgba(33, 130, 74, 0.12);
  color: #1d6f41;
}

.svf-readiness__result.is-needs-work .svf-readiness__badge {
  background: rgba(209, 122, 18, 0.12);
  color: #9b5a0d;
}

.svf-readiness__result h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 5px;
  color: var(--ndc-blue-deep);
}

.svf-readiness__result p { margin: 0; font-size: 13px; color: var(--ndc-muted); }

/* ── Application form shell ──────────────────────────────────── */
.svf-form-shell {
  display: grid;
  gap: 24px;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: start;
}

/* Sidebar: simple step list */
.svf-form-sidebar {
  position: sticky;
  top: calc(var(--top-ribbon-height, 0px) + var(--masthead-height, 88px) + 80px);
  display: grid;
  gap: 2px;
  height: fit-content;
}

.svf-form-sidebar__step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
}

.svf-form-sidebar__step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  background: rgba(7, 54, 95, 0.08);
  color: var(--ndc-blue-deep);
  border: none;
}

.svf-form-sidebar__step strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--ndc-ink);
  display: block;
}

.svf-form-sidebar__step p {
  font-size: 11px;
  color: var(--ndc-muted);
  margin: 1px 0 0;
}

.svf-form-sidebar__step.is-active {
  background: rgba(7, 91, 145, 0.06);
  border-color: rgba(7, 91, 145, 0.16);
  box-shadow: none;
  color: var(--ndc-blue-deep);
}

.svf-form-sidebar__step.is-active span {
  background: var(--ndc-blue-deep);
  color: #fff;
}

.svf-form-sidebar__step.is-active strong { color: var(--ndc-blue-deep); }

/* Form main panel */
.svf-application-form {
  display: grid;
  gap: 0;
  background: #fff;
  border: 1px solid rgba(7, 54, 95, 0.11);
  border-radius: 12px;
  overflow: hidden;
}

.svf-form-step[hidden] { display: none !important; }

.svf-form-step {
  display: grid;
  gap: 22px;
  padding: 26px 28px;
}

.svf-form-step__header {
  border-bottom: 1px solid rgba(7, 54, 95, 0.08);
  padding-bottom: 14px;
}

.svf-form-step__header .eyebrow { font-size: 11px; }

.svf-form-step__header h3 {
  margin: 3px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--ndc-blue-deep);
}

/* Field atoms */
.svf-fieldset { display: grid; gap: 14px; }
.svf-conditional-block { display: grid; gap: 14px; }

.svf-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ndc-ink);
  margin-bottom: 5px;
}

.svf-help {
  font-size: 12px;
  color: var(--ndc-muted);
  margin: 0 0 6px;
}

/* Inputs */
.svf-input,
.svf-application-form input[type="text"],
.svf-application-form input[type="email"],
.svf-application-form input[type="url"],
.svf-application-form input[type="file"],
.svf-application-form select {
  width: 100%;
  background: #fff;
  border: 1.5px solid rgba(7, 54, 95, 0.18);
  border-radius: 7px;
  color: var(--ndc-ink);
  font: inherit;
  font-size: 14px;
  min-height: 42px;
  padding: 10px 12px;
  box-sizing: border-box;
}

.svf-input:focus,
.svf-application-form input:focus,
.svf-application-form select:focus {
  border-color: #075b91;
  box-shadow: 0 0 0 3px rgba(7, 91, 145, 0.1);
  outline: none;
}

/* Two-col grid */
.svf-two-col,
.svf-upload-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;          /* align cell bottoms so inputs line up horizontally */
}

/* Within each cell, stack label → help → input; input hugs the bottom */
.svf-two-col > div,
.svf-upload-grid > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.svf-two-col > div > .svf-label,
.svf-upload-grid > div > .svf-label {
  margin-bottom: 0;         /* gap handles spacing */
}

.svf-two-col > div > .svf-input,
.svf-upload-grid > div > .svf-input {
  margin-top: auto;         /* push input to bottom when cell has extra space */
}

/* File inputs: block display, restrained padding, max-width safe */
input[type="file"].svf-input {
  display: block;
  padding: 6px 8px;
  line-height: 1.5;
  cursor: pointer;
  max-width: 100%;
  overflow: hidden;
}

.svf-two-col__full,
.svf-upload-grid__full { grid-column: 1 / -1; }

/* Source choice cards — clean radio-like */
.svf-choice-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.svf-choice-card { cursor: pointer; display: block; }

.svf-choice-card input { position: absolute; left: -9999px; }

.svf-choice-card span {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid rgba(7, 54, 95, 0.16);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ndc-ink);
  background: #fff;
  min-height: unset;
  transition: border-color 150ms, background 150ms;
}

.svf-choice-card span::before {
  content: "";
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 50%;
  border: 2px solid rgba(7, 54, 95, 0.25);
  background: #fff;
  transition: border-color 150ms, background 150ms;
}

.svf-choice-card:hover span { border-color: rgba(7, 91, 145, 0.4); }

.svf-choice-card input:checked + span {
  border-color: #075b91;
  background: rgba(7, 91, 145, 0.04);
  color: var(--ndc-blue-deep);
  box-shadow: none;
  transform: none;
}

.svf-choice-card input:checked + span::before {
  border-color: #075b91;
  background: #075b91;
  box-shadow: inset 0 0 0 3px #fff;
}

/* Partner select */
.svf-partner-select {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.svf-partner-card { cursor: pointer; display: block; }

.svf-partner-card input { position: absolute; left: -9999px; }

.svf-partner-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(7, 54, 95, 0.16);
  border-radius: 8px;
  padding: 12px 10px;
  min-height: 54px;
  text-align: center;
  background: #fff;
  transition: border-color 150ms, background 150ms;
}

.svf-partner-card input:checked + .svf-partner-card__media,
.svf-partner-card:hover .svf-partner-card__media {
  border-color: #075b91;
  background: rgba(7, 91, 145, 0.04);
  color: var(--ndc-blue-deep);
  box-shadow: none;
  transform: none;
}

.svf-partner-card__text { font-size: 12px; font-weight: 600; line-height: 1.35; }
.svf-partner-card__media img { max-height: 34px; width: auto; }

/* Inline radios */
.svf-inline-radios {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.svf-inline-radios label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  cursor: pointer;
}

.svf-inline-radios input[type="radio"] {
  width: 15px;
  height: 15px;
  accent-color: #075b91;
}

/* Readiness list (inside form) */
.svf-readiness-list { display: grid; gap: 0; }

.svf-readiness-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(7, 54, 95, 0.07);
}

.svf-readiness-item:last-child { border-bottom: none; }

.svf-readiness-item p {
  margin: 0;
  font-size: 13px;
  flex: 1;                  /* question takes remaining space */
}

/* Yes/No container — fixed width so they don't jump */
.svf-readiness-item .svf-inline-radios {
  flex-shrink: 0;
  gap: 20px;
}

/* Ensure radio label text is always the same color */
.svf-inline-radios label {
  color: var(--ndc-ink, #1a1a2e);
  font-weight: 600;
}

.svf-inline-radios input[type="radio"] {
  accent-color: #075b91;
  cursor: pointer;
}

/* Consent block */
.svf-consent-block {
  display: grid;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(7, 54, 95, 0.1);
  border-radius: 8px;
  background: rgba(7, 91, 145, 0.03);
}

.svf-consent-block h4 {
  font-size: 13px;
  font-weight: 700;
  margin: 0;
  color: var(--ndc-blue-deep);
}

.svf-consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  cursor: pointer;
}

.svf-consent-check input[type="checkbox"] {
  width: 15px;
  height: 15px;
  min-width: 15px;
  margin-top: 2px;
  accent-color: #075b91;
}

/* Submit checklist */
.svf-submit-checklist {
  display: grid;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 8px;
  background: rgba(7, 91, 145, 0.03);
  border: 1px solid rgba(7, 91, 145, 0.1);
}

.svf-submit-checklist h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--ndc-blue-deep);
  margin: 0 0 4px;
}

.svf-submit-checklist ul { margin: 0; padding-left: 18px; }
.svf-submit-checklist li { font-size: 13px; margin-bottom: 5px; }
.svf-submit-checklist li:last-child { margin-bottom: 0; }

/* Form actions row */
.svf-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 6px;
  border-top: 1px solid rgba(7, 54, 95, 0.08);
  justify-content: space-between;
  align-items: center;
}

.svf-form-actions .action-btn { min-width: 170px; }

/* Honeypot */
.svf-honeypot {
  height: 0;
  left: -9999px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  width: 0;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1180px) {
  .svf-process__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .svf-partner-select { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .svf-partner-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .svf-blueprint__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .svf-blueprint__steps::before { display: none; }

  .svf-blueprint__step {
    padding: 0;
  }

  /* Org chart: two cards top row, one centered below */
  .svf-org-chart {
    flex-wrap: wrap;
    justify-content: center;
  }

  .svf-org-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 220px;
    max-width: 320px;
  }

  .svf-overview,
  .svf-readiness-widget {
    grid-template-columns: 1fr;
  }

  .svf-overview__image img { max-height: 280px; width: 100%; }
  .svf-overview__image { order: -1; }

  .svf-form-shell {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .svf-form-sidebar {
    position: static;
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: thin;
    padding-bottom: 4px;
  }

  .svf-form-sidebar__step {
    flex: 0 0 auto;
  }

  .svf-portfolio,
  .svf-guidelines__grid,
  .svf-two-col,
  .svf-upload-grid,
  .svf-choice-grid {
    grid-template-columns: 1fr;
  }

  .svf-partner-select { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .svf-jumpnav { overflow-x: auto; scrollbar-width: thin; flex-wrap: nowrap; justify-content: flex-start; padding: 10px 16px 12px; }
  .svf-jumpnav a { flex: 0 0 auto; }

  .svf-blueprint__cards { grid-template-columns: 1fr; }
  .svf-blueprint__steps { grid-template-columns: 1fr; }
  .svf-blueprint__steps::before { display: none; }

  /* Org chart: single column on phones */
  .svf-org-card {
    flex: 1 1 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  /* Timeline: collapse to single-column left-aligned */
  .svf-section--timeline { padding: 36px 0; }

  .svf-section--timeline .svf-section__heading { margin-bottom: 28px; }

  .svf-timeline::before {
    left: 8px;
    transform: none;
  }

  .svf-timeline__entry,
  .svf-timeline__entry:nth-child(even),
  .svf-timeline__entry:nth-child(odd) {
    grid-template-columns: 16px 1fr;
    gap: 0 16px;
    padding-bottom: 24px;
  }

  .svf-timeline__entry:nth-child(odd) .svf-timeline__card,
  .svf-timeline__entry:nth-child(even) .svf-timeline__card {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    padding: 14px 16px;
  }

  .svf-timeline__entry:nth-child(odd) .svf-timeline__dot,
  .svf-timeline__entry:nth-child(even) .svf-timeline__dot {
    grid-column: 1;
    grid-row: 1;
  }

  .svf-form-step { padding: 18px; }

  .svf-process__steps {
    grid-template-columns: 1fr;
    border-radius: 8px;
  }

  .svf-process__step {
    border-right: none;
    border-bottom: 1px solid rgba(7, 54, 95, 0.09);
  }

  .svf-process__step:last-child { border-bottom: none; }

  .svf-readiness-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .svf-form-actions {
    flex-direction: column-reverse;
    justify-content: stretch;
  }

  .svf-form-actions .action-btn {
    width: 100%;
    min-width: unset;
    text-align: center;
  }
}

/* ══════════════════════════════════════════════════════════════════
   SVF STARTUP APPLICATION PAGE  (scoped to .svf-app-page)
   ══════════════════════════════════════════════════════════════════ */

/* ── Hero ──────────────────────────────────────────────────────── */
.svf-app-hero {
  background: linear-gradient(135deg, #071e3d 0%, #0a3060 55%, #093d28 100%);
  padding: clamp(52px, 7vw, 88px) 0 clamp(40px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}
.svf-app-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(221,172,60,0.08) 0%, transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(110,232,133,0.06) 0%, transparent 40%);
  pointer-events: none;
}
.svf-app-hero .site-shell { position: relative; z-index: 1; }
.svf-app-hero .eyebrow {
  color: var(--ndc-gold, #ddac3c);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.svf-app-hero h1 {
  color: #fff !important;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
}
.svf-app-hero p {
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  max-width: 560px;
  margin: 0;
}

/* ── Stepper bar ───────────────────────────────────────────────── */
.svf-app-stepper-wrap {
  background: #fff;
  border-bottom: 1px solid rgba(7,54,95,0.1);
  padding: 0;
  position: sticky;
  top: calc(var(--top-ribbon-height, 0px) + var(--masthead-height, 88px));
  z-index: 8;
}
.svf-app-stepper {
  display: flex;
  align-items: flex-start;   /* steps top-align; line uses margin-top to meet circle center */
  justify-content: center;
  padding: 28px 0 22px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.svf-app-stepper::-webkit-scrollbar { display: none; }

/* Each step: circle on top, label below, centered */
.svf-app-stepper__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 auto;
  min-width: 96px;
  max-width: 140px;
}

/* Connecting line sits between step divs at circle-center height */
.svf-app-stepper__line {
  flex: 1;
  min-width: 40px;
  height: 2px;
  background: rgba(7,54,95,0.15);
  margin-top: 19px;          /* 40px circle ÷ 2  minus 1px (half line height) */
  align-self: flex-start;
  transition: background 0.35s;
}
.svf-app-stepper__line.is-done {
  background: var(--ndc-gold, #ddac3c);
}

/* Circle */
.svf-app-stepper__circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(7,54,95,0.2);
  background: #f4f7fb;
  color: rgba(7,54,95,0.45);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 10px;
  transition: background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s;
}
.svf-app-stepper__step.is-active .svf-app-stepper__circle {
  background: var(--ndc-gold, #ddac3c);
  border-color: var(--ndc-gold, #ddac3c);
  color: #fff;
  box-shadow: 0 4px 16px rgba(221,172,60,0.45);
}
.svf-app-stepper__step.is-done .svf-app-stepper__circle {
  background: var(--ndc-blue-deep, #07365f);
  border-color: var(--ndc-blue-deep, #07365f);
  color: #fff;
  font-size: 0;
}
.svf-app-stepper__step.is-done .svf-app-stepper__circle::before {
  content: "\2713";
  font-size: 16px;
}

/* Labels below the circle, centered */
.svf-app-stepper__labels {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.svf-app-stepper__labels strong {
  font-size: 12px;
  font-weight: 800;
  color: rgba(7,54,95,0.4);
  line-height: 1.3;
  transition: color 0.25s;
}
.svf-app-stepper__labels span {
  font-size: 11px;
  color: rgba(7,54,95,0.35);
  line-height: 1.3;
  transition: color 0.25s;
}
.svf-app-stepper__step.is-active .svf-app-stepper__labels strong,
.svf-app-stepper__step.is-done  .svf-app-stepper__labels strong {
  color: var(--ndc-blue-deep, #07365f);
}
.svf-app-stepper__step.is-active .svf-app-stepper__labels span,
.svf-app-stepper__step.is-done  .svf-app-stepper__labels span {
  color: rgba(7,54,95,0.6);
}

/* ── Step 1 intro text ─────────────────────────────────────────── */
.svf-app-form .svf-form-step__intro {
  font-size: 13px;
  color: rgba(7,54,95,0.65);
  margin: 4px 0 0;
}

/* ── Readiness panel ───────────────────────────────────────────── */
.svf-readiness-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── reCAPTCHA ─────────────────────────────────────────────────── */
.svf-recaptcha-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.svf-recaptcha-error {
  color: #c0392b;
  font-size: 12px;
  font-weight: 600;
  margin: 0;
}
.svf-readiness-error {
  color: #c0392b;
  font-size: 12px;
  font-weight: 600;
  margin: 0;
}

/* ── Check button spinner ──────────────────────────────────────── */
.svf-check-btn { gap: 10px; }
.svf-check-btn__spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: svf-spin 0.7s linear infinite;
  flex-shrink: 0;
}
@keyframes svf-spin { to { transform: rotate(360deg); } }

/* ── Eligibility result panels ─────────────────────────────────── */
.svf-eligibility-result[hidden] { display: none !important; }

.svf-eligibility-result {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 12px;
  animation: svf-fadein 0.3s ease;
}
@keyframes svf-fadein { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Ineligible */
.svf-eligibility-result--fail {
  background: #fff8f7;
  border: 1.5px solid rgba(192,57,43,0.25);
}
.svf-eligibility-result--fail .svf-eligibility-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #c0392b;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svf-eligibility-result--fail h3 {
  margin: 0;
  font-size: 16px;
  color: #c0392b;
}
.svf-eligibility-result--fail p {
  margin: 0;
  font-size: 13px;
  color: rgba(7,54,95,0.75);
}
.svf-failed-list {
  margin: 0;
  padding: 0 0 0 20px;
  display: grid;
  gap: 6px;
}
.svf-failed-list li {
  font-size: 13px;
  color: #c0392b;
}
.svf-retry-btn {
  align-self: flex-start;
}

/* Eligible */
.svf-eligibility-result--pass {
  background: transparent;
  border: none;
  padding: 0;
  gap: 24px;
}
.svf-eligibility-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 10px;
  background: #f0faf2;
  border: 1.5px solid rgba(46,160,67,0.3);
  color: #1a7e31;
  font-size: 13px;
  font-weight: 700;
}
.svf-eligibility-badge span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #2ea043;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}

/* ── Form buttons (light background override) ──────────────────── */
.svf-app-form .button-primary {
  background: var(--ndc-blue-deep, #07365f);
  color: #fff;
  border: none;
  transition: background 0.2s;
}
.svf-app-form .button-primary:hover {
  background: #0a4a80;
}
.svf-app-form .button-secondary {
  background: transparent;
  color: var(--ndc-blue-deep, #07365f);
  border: 1.5px solid rgba(7,54,95,0.25);
  transition: background 0.2s, border-color 0.2s;
}
.svf-app-form .button-secondary:hover {
  background: rgba(7,54,95,0.06);
  border-color: rgba(7,54,95,0.45);
}

/* ── Form wrap ─────────────────────────────────────────────────── */
.svf-app-form-wrap {
  background: #f4f7fb;
  min-height: 60vh;
  padding: clamp(36px, 5vw, 64px) 0 clamp(52px, 7vw, 96px);
}
.svf-app-form {
  background: #fff;
  border: 1px solid rgba(7,54,95,0.1);
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(7,54,95,0.07);
  padding: clamp(28px, 4vw, 52px);
}

/* Step header on the application page */
.svf-app-form .svf-form-step__header {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(7,54,95,0.09);
}
.svf-app-form .svf-form-step__header .eyebrow {
  color: var(--ndc-gold, #ddac3c);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.svf-app-form .svf-form-step__header h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--ndc-blue-deep, #07365f);
  margin: 0;
  line-height: 1.1;
}

/* ── CTA row (Apply Now + Self-Assess) ─────────────────────────── */
.svf-blueprint__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.svf-blueprint__cta-row .svf-blueprint__cta {
  margin-top: 0;
}
.svf-blueprint__cta--apply {
  background: var(--ndc-gold, #ddac3c);
  color: #fff !important;
}
.svf-blueprint__cta--apply:hover {
  background: #c49a28;
  color: #fff !important;
  gap: 10px;
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .svf-app-stepper__labels span { display: none; }   /* hide subtitle, keep step name */
  .svf-app-stepper__step { min-width: 72px; }
  .svf-app-stepper__line { min-width: 20px; }
}
@media (max-width: 420px) {
  .svf-app-stepper__labels { display: none; }        /* circle-only on very small screens */
  .svf-app-stepper__step { min-width: 40px; }
  .svf-app-stepper__line { min-width: 16px; }
}
@media (max-width: 560px) {
  .svf-blueprint__cta-row { flex-direction: column; align-items: flex-start; }
  .svf-app-form { padding: 20px 16px; }
}

/* ── Submission status notices (scoped to application page) ─────── */
.svf-app-form-wrap .svf-status-notice {
  display: block;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}
.svf-status-notice--success {
  background: #f0faf2;
  border: 1.5px solid rgba(46,160,67,0.3);
  color: #1a7e31;
}
.svf-status-notice--info {
  background: #f0f6ff;
  border: 1.5px solid rgba(7,91,145,0.25);
  color: #07365f;
}
.svf-status-notice--warning {
  background: #fff8f0;
  border: 1.5px solid rgba(180,90,20,0.25);
  color: #994f00;
}

/* ── Post-submit success screen ─────────────────────────────────── */
.svf-submit-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: clamp(48px, 7vw, 80px) clamp(24px, 5vw, 48px);
  background: #fff;
  border: 1px solid rgba(7,54,95,0.1);
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(7,54,95,0.07);
  max-width: 580px;
  margin: 0 auto;
}
.svf-submit-success__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #2ea043;
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(46,160,67,0.35);
  flex-shrink: 0;
}
.svf-submit-success h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--ndc-blue-deep, #07365f);
  margin: 0;
  line-height: 1.1;
}
.svf-submit-success p {
  font-size: 14px;
  color: rgba(7,54,95,0.7);
  margin: 0;
  max-width: 460px;
}

/* ── Ensure [hidden] wins over display:flex/block on JS-toggled elements ── */
.svf-app-page [hidden] { display: none !important; }

/* ── Submit loading overlay (scoped: only on SVF application page) ── */
.svf-app-page .svf-submit-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(7, 54, 95, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.svf-app-page .svf-submit-overlay[hidden] {
  display: none;
}
.svf-submit-overlay__box {
  background: #fff;
  border-radius: 16px;
  padding: 40px 48px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(7, 54, 95, 0.25);
}
.svf-submit-overlay__spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(7, 54, 95, 0.15);
  border-top-color: #07365f;
  border-radius: 50%;
  animation: svf-overlay-spin 0.75s linear infinite;
  margin: 0 auto 24px;
}
@keyframes svf-overlay-spin {
  to { transform: rotate(360deg); }
}
.svf-submit-overlay__title {
  font-size: 15px;
  font-weight: 700;
  color: #07365f;
  margin: 0 0 8px;
  line-height: 1.4;
}
.svf-submit-overlay__note {
  font-size: 12px;
  color: rgba(7, 54, 95, 0.6);
  margin: 0;
  line-height: 1.5;
}

/* ── CIP application coming-soon card ───────────────────────────── */
.svf-cip-coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: clamp(48px, 7vw, 80px) clamp(24px, 5vw, 56px);
  background: #fff;
  border: 1px solid rgba(7, 54, 95, 0.1);
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(7, 54, 95, 0.07);
  max-width: 620px;
  margin: 0 auto;
}
.svf-cip-coming-soon__icon {
  color: var(--ndc-blue-deep, #07365f);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svf-cip-coming-soon__badge {
  display: inline-block;
  background: #fff5e0;
  color: #7a4a00;
  border: 1px solid #e5c166;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 14px;
}
.svf-cip-coming-soon h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--ndc-blue-deep, #07365f);
  margin: 0;
  line-height: 1.15;
}
.svf-cip-coming-soon p {
  font-size: 14px;
  color: rgba(7, 54, 95, 0.7);
  margin: 0;
  max-width: 480px;
  line-height: 1.7;
}
.svf-cip-coming-soon__contact {
  background: rgba(7, 54, 95, 0.04);
  border: 1px solid rgba(7, 54, 95, 0.1);
  border-radius: 10px;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.svf-cip-coming-soon__contact-label {
  font-size: 12px !important;
  color: rgba(7, 54, 95, 0.5) !important;
  text-transform: uppercase;
  letter-spacing: .4px;
  font-weight: 600;
  margin: 0 !important;
}
.svf-cip-coming-soon__email {
  font-size: 15px;
  font-weight: 700;
  color: var(--ndc-blue-deep, #07365f);
  text-decoration: none;
  border-bottom: 1.5px solid currentColor;
}
.svf-cip-coming-soon__email:hover {
  opacity: .75;
}
