/* Persec Services — site-specific styles
   Sits on top of tokens.css */

.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.skip-link {
  position: absolute; left: 16px; top: 16px;
  background: var(--persec-ink); color: var(--persec-cream);
  padding: 10px 14px; border-radius: 4px;
  font-size: 14px; font-weight: 600;
  transform: translateY(-200%); transition: transform 150ms var(--ease-standard);
  z-index: 100;
}
.skip-link:focus { transform: translateY(0); }

/* ---- Top nav ---- */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 249, 245, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-default);
}
.site-nav__inner {
  display: flex; align-items: center;
  padding: 18px 0;
  gap: 48px;
}
.site-nav__logo { display: inline-flex; }
.site-nav__logo img { height: 36px; display: block; }
.site-nav__links { display: flex; gap: 28px; }
.site-nav__link {
  font-size: 14px; font-weight: 500; color: var(--fg-default);
  padding: 8px 0; position: relative;
  font-family: var(--font-sans); text-decoration: none;
}
.site-nav__link.is-active::after,
.site-nav__link[aria-current="page"]::after,
.site-nav__link:hover::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--persec-amber);
}
.site-nav__link:hover { text-decoration: none; }
.site-nav__right { margin-left: auto; display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--border-strong);
  border-radius: 4px; padding: 8px; color: var(--fg-default); cursor: pointer;
  margin-left: auto;
}

@media (max-width: 880px) {
  .site-nav__inner { gap: 16px; }
  .site-nav__links, .site-nav__right { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-nav.is-open .site-nav__inner { flex-wrap: wrap; }
  .site-nav.is-open .site-nav__links {
    display: flex; flex-direction: column; gap: 0; width: 100%;
    padding: 8px 0 16px; border-top: 1px solid var(--border-default);
  }
  .site-nav.is-open .site-nav__link { padding: 12px 0; }
  .site-nav.is-open .site-nav__right {
    display: flex; width: 100%; padding-bottom: 16px; flex-wrap: wrap;
  }
}

/* ---- Buttons ---- */
.btn {
  font-family: var(--font-sans); font-weight: 600; font-size: 15px; line-height: 1;
  padding: 14px 22px; border-radius: 4px; border: 1px solid transparent; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
  transition: background var(--dur-fast) var(--ease-standard), color var(--dur-fast) var(--ease-standard), transform var(--dur-fast) var(--ease-standard);
  text-decoration: none;
}
.btn--primary { background: var(--persec-indigo); color: var(--persec-cream); }
.btn--primary:hover { background: var(--persec-indigo-dark); text-decoration: none; }
.btn--secondary { background: var(--persec-white); color: var(--persec-ink); border-color: var(--border-strong); }
.btn--secondary:hover { background: var(--persec-cream-warm); text-decoration: none; }
.btn--ghost { background: transparent; color: var(--persec-ink); padding-left: 0; padding-right: 0; }
.btn--ghost:hover { text-decoration: none; }
.btn--ghost:hover .btn__arrow { transform: translateX(3px); }
.btn--sm { padding: 10px 16px; font-size: 13px; }
.btn--on-dark.btn--secondary { background: var(--persec-white); color: var(--persec-ink); }
.btn--on-dark.btn--ghost { background: transparent; color: var(--persec-cream); }
.btn__arrow { transition: transform var(--dur-fast) var(--ease-standard); display: inline-flex; }

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: 112px 0 128px;
  overflow: hidden;
}
.hero__inner { position: relative; z-index: 1; max-width: 920px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-muted); margin-bottom: 28px; white-space: nowrap;
}
.hero__eyebrow .pip { width: 6px; height: 6px; background: var(--persec-amber); border-radius: 50%; }
.hero__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(56px, 9vw, 120px); line-height: 0.95; letter-spacing: -0.03em;
  color: var(--fg-default);
  margin: 0 0 28px;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(transparent 62%, rgba(232, 156, 47, 0.35) 62%, rgba(232, 156, 47, 0.35) 92%, transparent 92%);
}
.hero__lede {
  font-family: var(--font-sans); font-weight: 400; font-size: 20px; line-height: 1.55;
  color: var(--fg-muted); max-width: 620px; margin: 0 0 36px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__deco {
  position: absolute; right: -120px; top: -80px;
  width: 720px; height: 720px;
  color: rgba(43, 50, 58, 0.07);
  pointer-events: none;
}
@media (max-width: 720px) {
  .hero { padding: 72px 0 88px; }
  .hero__deco { width: 480px; height: 480px; right: -180px; top: -60px; }
}

/* ---- Sections ---- */
.section { padding: 96px 0; }
.section--ink { background: var(--persec-ink); color: var(--persec-cream); }
.section--ink .eyebrow { color: rgba(250, 249, 245, 0.6); }
.section--warm { background: var(--persec-cream-warm); }
.section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; margin-bottom: 56px; flex-wrap: wrap; }
.section__title {
  font-family: var(--font-sans); font-weight: 300;
  font-size: clamp(36px, 5vw, 56px); line-height: 1.1; letter-spacing: -0.02em;
  max-width: 600px; margin: 12px 0 0;
}
.section--ink .section__title { color: var(--persec-cream); }
.section__lede { font-size: 17px; line-height: 1.6; color: var(--fg-muted); max-width: 420px; flex-shrink: 0; }
.section--ink .section__lede { color: rgba(250, 249, 245, 0.7); }

.eyebrow {
  font-size: 12px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-muted); white-space: nowrap;
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
}

/* ---- Industry strip ---- */
.industries {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
}
.industry {
  padding: 28px 20px; display: flex; flex-direction: column; gap: 12px;
  border-right: 1px solid var(--border-default);
  text-decoration: none; color: var(--fg-default);
  transition: background var(--dur-fast) var(--ease-standard);
}
.industry:last-child { border-right: none; }
.industry:hover { background: var(--persec-cream-warm); text-decoration: none; }
.industry__icon { width: 28px; height: 28px; color: var(--persec-ink); }
.industry__name { font-size: 15px; font-weight: 500; color: var(--fg-default); }
.industry__count { font-size: 12px; color: var(--fg-faint); }

@media (max-width: 880px) {
  .industries { grid-template-columns: repeat(2, 1fr); }
  .industry { border-bottom: 1px solid var(--border-default); }
  .industry:nth-child(2n) { border-right: none; }
  .industry:last-child:nth-child(odd) { grid-column: 1 / -1; }
}

/* ---- Program grid ---- */
.program-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 980px) { .program-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .program-grid { grid-template-columns: 1fr; } }

.program {
  background: var(--persec-white);
  border-radius: 8px; padding: 32px 28px; box-shadow: var(--shadow-1);
  display: flex; flex-direction: column; gap: 16px;
  transition: box-shadow var(--dur-base) var(--ease-standard), transform var(--dur-base) var(--ease-standard);
  text-decoration: none; color: var(--fg-default);
  min-height: 320px;
}
.program:hover { box-shadow: var(--shadow-2); transform: translateY(-2px); text-decoration: none; }
.program--feature { background: var(--persec-ink); color: var(--persec-cream); }
.program__eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-muted); }
.program--feature .program__eyebrow { color: rgba(250, 249, 245, 0.5); }
.program__title { font-family: var(--font-sans); font-weight: 300; font-size: 28px; line-height: 1.15; letter-spacing: -0.015em; margin: 0; color: inherit; }
.program__body { font-size: 15px; line-height: 1.55; color: var(--fg-muted); flex: 1; margin: 0; }
.program--feature .program__body { color: rgba(250, 249, 245, 0.7); }
.program__meta { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 4px 10px; border-radius: 999px; font-size: 11.5px; font-weight: 500;
  background: var(--persec-indigo-soft); color: var(--persec-indigo-ink);
  letter-spacing: 0.01em; white-space: nowrap;
}
.program--feature .chip { background: rgba(250, 249, 245, 0.12); color: var(--persec-cream); }
.program__cta { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--fg-default); font-size: 14px; white-space: nowrap; }
.program--feature .program__cta { color: var(--persec-amber); }

/* ---- Feature row (How we work) ---- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
@media (max-width: 880px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .feature-grid { grid-template-columns: 1fr; } }
.feature__num {
  font-family: var(--font-display); font-weight: 600;
  font-size: 56px; line-height: 1; letter-spacing: -0.03em;
  color: var(--persec-amber);
  margin-bottom: 20px;
}
.feature__title { font-family: var(--font-sans); font-weight: 500; font-size: 19px; margin: 0 0 10px; }
.feature__body { font-size: 14.5px; line-height: 1.6; color: var(--fg-muted); margin: 0; }
.section--ink .feature__body { color: rgba(250, 249, 245, 0.7); }

/* ---- Founder / proof ---- */
.founder {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) { .founder { grid-template-columns: 1fr; gap: 40px; } }
.founder__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--persec-ink);
}
.founder__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.92) contrast(1.02);
}
.founder__media .badge {
  position: absolute; left: 20px; bottom: 20px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px; background: rgba(43, 50, 58, 0.78); color: var(--persec-cream);
  border-radius: 999px; font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  backdrop-filter: blur(8px); white-space: nowrap;
}
.founder__media .badge .pip { width: 6px; height: 6px; background: var(--persec-amber); border-radius: 50%; }
.founder__portrait {
  position: absolute; right: -28px; bottom: -28px;
  width: 124px; height: 124px; border-radius: 50%;
  border: 4px solid var(--persec-cream);
  background: var(--persec-ink);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.founder__portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder__quote {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(26px, 2.6vw, 34px); line-height: 1.25; letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.founder__attrib { display: flex; align-items: center; gap: 14px; }
.founder__attrib-bar { width: 8px; height: 36px; background: var(--persec-amber); }
.founder__attrib-name { font-size: 15px; font-weight: 500; }
.founder__attrib-role { font-size: 13px; color: var(--fg-muted); }

/* ---- Testimonial ---- */
.quote {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(28px, 3.6vw, 44px); line-height: 1.2; letter-spacing: -0.02em;
  max-width: 920px; margin: 28px 0 0;
}
.quote__attrib { display: flex; align-items: center; gap: 16px; margin-top: 40px; }
.quote__avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--persec-ink); color: var(--persec-cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans); font-weight: 600; font-size: 16px;
  overflow: hidden;
}
.quote__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.quote__who { font-size: 15px; font-weight: 500; }
.quote__role { font-size: 13px; color: var(--fg-muted); }

/* ---- CTA band ---- */
.cta-band {
  background: var(--persec-ink); color: var(--persec-cream);
  padding: 96px 0; position: relative; overflow: hidden;
}
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; position: relative; z-index: 1; flex-wrap: wrap; }
.cta-band__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(36px, 5vw, 64px); line-height: 1.0; letter-spacing: -0.025em; margin: 0; max-width: 720px; color: var(--persec-cream); }
.cta-band__deco { position: absolute; right: -80px; bottom: -120px; width: 480px; height: 480px; color: rgba(232, 156, 47, 0.10); pointer-events: none; }

/* ---- Footer ---- */
.site-footer { background: var(--persec-ink); color: rgba(250, 249, 245, 0.85); padding: 80px 0 28px; }
.site-footer .container { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
@media (max-width: 880px) { .site-footer .container { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .site-footer .container { grid-template-columns: 1fr; } }
.site-footer__brand img { height: 40px; margin-bottom: 18px; }
.site-footer__tagline { font-size: 14px; line-height: 1.6; color: rgba(250, 249, 245, 0.6); max-width: 280px; margin: 0; }
.footcol h4 { font-family: var(--font-sans); font-weight: 500; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(250, 249, 245, 0.6); margin: 0 0 18px; }
.footcol ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footcol a { font-size: 14px; color: rgba(250, 249, 245, 0.85); text-decoration: none; }
.footcol a:hover {
  text-decoration: underline; text-decoration-color: var(--persec-amber);
  text-decoration-thickness: 2px; text-underline-offset: 4px; color: var(--persec-cream);
}
.site-footer__base {
  border-top: 1px solid rgba(250, 249, 245, 0.10); margin-top: 56px; padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: rgba(250, 249, 245, 0.5);
  grid-column: 1 / -1;
}
.site-footer__base a { color: rgba(250, 249, 245, 0.7); text-decoration: none; }
.site-footer__base a:hover {
  color: var(--persec-cream);
  text-decoration: underline; text-decoration-color: var(--persec-amber);
  text-decoration-thickness: 2px; text-underline-offset: 4px;
}
.site-footer__legal { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- Page header (used on inner pages) ---- */
.page-header { padding: 80px 0 56px; }
.page-header__title { font-family: var(--font-sans); font-weight: 300; font-size: clamp(48px, 6vw, 80px); line-height: 1.0; letter-spacing: -0.025em; margin: 18px 0 18px; }
.page-header__lede { font-size: 18px; line-height: 1.6; color: var(--fg-muted); max-width: 640px; margin: 0; }

/* ---- Filter bar (programs index) ---- */
.filter-bar {
  display: flex; gap: 8px; padding: 16px 0 24px; flex-wrap: wrap;
  border-bottom: 1px solid var(--border-default); margin-bottom: 48px;
}
.filter-chip {
  padding: 8px 14px; border-radius: 999px; border: 1px solid var(--border-strong); background: transparent;
  font-family: var(--font-sans); font-size: 13px; font-weight: 500; color: var(--fg-default);
  cursor: pointer; transition: all var(--dur-fast) var(--ease-standard);
}
.filter-chip:hover { background: var(--persec-cream-warm); }
.filter-chip.is-active { background: var(--persec-ink); color: var(--persec-cream); border-color: var(--persec-ink); }

/* ---- Program detail ---- */
.detail-hero { padding: 72px 0 80px; }
.breadcrumb { display: flex; gap: 8px; font-size: 13px; color: var(--fg-muted); margin-bottom: 28px; flex-wrap: wrap; }
.breadcrumb a { color: var(--fg-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--persec-indigo); }
.detail-hero__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(48px, 6vw, 88px); line-height: 0.98; letter-spacing: -0.03em; margin: 18px 0 24px; max-width: 920px; }
.detail-hero__lede { font-size: 19px; line-height: 1.6; color: var(--fg-muted); max-width: 720px; margin: 0 0 32px; }
.detail-meta { display: flex; gap: 32px; padding: 24px 0; border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); flex-wrap: wrap; }
.detail-meta__item { display: flex; flex-direction: column; gap: 4px; }
.detail-meta__label { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-muted); }
.detail-meta__value { font-size: 16px; font-weight: 500; color: var(--fg-default); }
.detail-body { padding: 72px 0; display: grid; grid-template-columns: 2fr 1fr; gap: 80px; }
@media (max-width: 980px) { .detail-body { grid-template-columns: 1fr; gap: 48px; } }
.detail-body h2 { font-family: var(--font-sans); font-weight: 300; font-size: 32px; line-height: 1.2; letter-spacing: -0.018em; margin: 48px 0 16px; }
.detail-body h2:first-child { margin-top: 0; }
.detail-body p { font-size: 17px; line-height: 1.7; color: var(--fg-default); margin: 0 0 18px; max-width: 640px; }
.detail-body ul.outcomes { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.detail-body ul.outcomes li { padding-left: 28px; position: relative; font-size: 16px; line-height: 1.55; }
.detail-body ul.outcomes li::before { content: ''; position: absolute; left: 0; top: 9px; width: 16px; height: 2px; background: var(--persec-amber); }
.detail-aside {
  background: var(--persec-white); border-radius: 16px; box-shadow: var(--shadow-1);
  padding: 32px; position: sticky; top: 96px; align-self: start;
}
.detail-aside h3 { font-family: var(--font-sans); font-weight: 500; font-size: 18px; margin: 0 0 16px; }
.detail-aside dl { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; margin: 0 0 24px; }
.detail-aside dt { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-muted); margin: 0; }
.detail-aside dd { font-size: 14px; font-weight: 500; color: var(--fg-default); margin: 0; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 80px; padding: 32px 0 128px; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.field label { display: block; font-size: 12px; font-weight: 500; letter-spacing: 0.04em; color: var(--fg-default); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; font-family: var(--font-sans); font-size: 15px; color: var(--fg-default);
  background: var(--persec-white); border: 1px solid var(--border-strong); border-radius: 4px; outline: none;
  transition: border-color var(--dur-fast) var(--ease-standard), box-shadow var(--dur-fast) var(--ease-standard);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--persec-indigo); box-shadow: 0 0 0 3px rgba(61, 79, 184, 0.18); }
.field textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.field-check { display: flex; align-items: center; gap: 10px; }
.field-check input { width: auto; margin: 0; }
.field-check label { margin: 0; font-weight: 400; font-size: 14px; letter-spacing: 0; }

.contact-aside { background: var(--persec-cream-warm); border-radius: 16px; padding: 36px; align-self: start; }
.contact-aside h2 { font-family: var(--font-sans); font-weight: 300; font-size: 28px; margin: 0 0 24px; letter-spacing: -0.015em; }
.contact-row { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--border-default); }
.contact-row:last-child { border-bottom: none; }
.contact-row svg { color: var(--persec-indigo); width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-row .lbl { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 4px; }
.contact-row .val { font-size: 15px; color: var(--fg-default); line-height: 1.4; }
.contact-row .val a { color: var(--fg-default); text-decoration: none; }
.contact-row .val a:hover { color: var(--persec-indigo); }

/* ---- Long-form prose (privacy, terms, etc.) ---- */
.prose {
  max-width: 760px; margin: 0 auto; padding: 32px 0 128px;
}
.prose h2 {
  font-family: var(--font-sans); font-weight: 300;
  font-size: 32px; line-height: 1.2; letter-spacing: -0.015em;
  margin: 56px 0 16px;
}
.prose h2:first-of-type { margin-top: 0; }
.prose h3 {
  font-family: var(--font-sans); font-weight: 500;
  font-size: 19px; line-height: 1.3; margin: 32px 0 12px;
}
.prose p, .prose ul, .prose ol { font-size: 16.5px; line-height: 1.7; color: var(--fg-default); margin: 0 0 16px; }
.prose ul, .prose ol { padding-left: 24px; }
.prose li { margin-bottom: 6px; }
.prose strong { font-weight: 600; }
.prose .meta-stamp { font-size: 13px; color: var(--fg-muted); padding: 12px 16px; background: var(--persec-cream-warm); border-radius: 8px; margin-bottom: 32px; }

/* ---- Industries detail ---- */
.industry-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
@media (max-width: 720px) { .industry-grid { grid-template-columns: 1fr; } }
.industry-card {
  background: var(--persec-white); border-radius: 16px; padding: 36px;
  box-shadow: var(--shadow-1);
  display: flex; flex-direction: column; gap: 16px;
  text-decoration: none; color: var(--fg-default);
  transition: box-shadow var(--dur-base) var(--ease-standard), transform var(--dur-base) var(--ease-standard);
}
.industry-card:hover { box-shadow: var(--shadow-2); transform: translateY(-2px); text-decoration: none; }
.industry-card__icon { width: 36px; height: 36px; color: var(--persec-indigo); }
.industry-card__title { font-family: var(--font-sans); font-weight: 400; font-size: 22px; margin: 0; letter-spacing: -0.005em; }
.industry-card__body { font-size: 15px; line-height: 1.55; color: var(--fg-muted); margin: 0; flex: 1; }

/* ---- Resources ---- */
.resource-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border-default); }
.resource-row {
  display: grid; grid-template-columns: 100px 1fr auto; gap: 24px;
  padding: 28px 0; border-bottom: 1px solid var(--border-default);
  text-decoration: none; color: var(--fg-default);
  transition: background var(--dur-fast) var(--ease-standard);
  align-items: start;
}
.resource-row:hover { background: var(--persec-cream-warm); text-decoration: none; }
.resource-row__type { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--persec-amber-dark); padding-top: 4px; }
.resource-row__title { font-family: var(--font-sans); font-weight: 400; font-size: 20px; letter-spacing: -0.005em; margin: 0 0 6px; }
.resource-row__desc { font-size: 14.5px; line-height: 1.55; color: var(--fg-muted); margin: 0; max-width: 640px; }
.resource-row__cta { font-size: 13px; font-weight: 600; color: var(--fg-default); white-space: nowrap; padding-top: 4px; }
@media (max-width: 720px) {
  .resource-row { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
  .resource-row__cta { padding-top: 4px; }
}

/* ---- Notice/banner card (forms succeeded etc.) ---- */
.notice {
  padding: 16px 18px; border-radius: 8px;
  background: var(--persec-success-soft); color: var(--persec-success);
  border: 1px solid rgba(46, 125, 85, 0.2);
  font-size: 14.5px; font-weight: 500;
  display: none;
}
.notice.is-visible { display: block; }
