/* ==========================================================================
   DSCC GLOBAL DESIGN SYSTEM  v1.0
   Data Sovereignty Council of Canada
   --------------------------------------------------------------------------
   Source of truth: DSCC MVP Design System / UI Kit Document.
   Philosophy: Authority through restraint. Trust through clarity.
               Sovereignty through structure.

   STRUCTURE
   01. Design Tokens
   02. Reset & Base
   03. Typography
   04. Layout (container / grid / sections)
   05. Buttons
   06. Forms
   07. Cards (standard / pillar / feature / article / plan)
   08. Status Badges
   09. Header & Navigation (global component)
   10. Footer (global component)
   11. Page Components (hero / trust row / authority band / CTA band)
   12. Utilities & Accessibility
   ========================================================================== */

/* ==========================================================================
   01. DESIGN TOKENS  (edit here — every component inherits these)
   ========================================================================== */
:root {
  /* --- Brand palette --- */
  --dscc-red:          #E10600;   /* primary brand action + emphasis */
  --dscc-red-hover:    #C90000;
  --dscc-red-pressed:  #A90000;
  --dscc-red-tint:     #FFF0F0;   /* icon circles, light accents */
  --dscc-red-surface:  #FDE5E5;

  --dscc-black:        #050505;   /* institutional black: footer, authority bands */
  --dscc-black-2:      #111111;   /* secondary black: nav links, headings */

  --dscc-white:        #FFFFFF;
  --dscc-gray-bg:      #F7F7F7;   /* platinum gray: section + dashboard backgrounds */
  --dscc-gray-border:  #E5E5E5;   /* card/form borders, dividers */
  --dscc-gray-text:    #555555;   /* supporting text */
  --dscc-gray-muted:   #777777;   /* metadata, disabled */

  /* --- Functional colours --- */
  --dscc-success:        #138A36;
  --dscc-success-light:  #EAF7EE;
  --dscc-warning:        #B7791F;
  --dscc-warning-light:  #FFF7E6;
  --dscc-error:          #B00020;
  --dscc-error-light:    #FDECEC;
  --dscc-info:           #1F4E79;
  --dscc-info-light:     #EAF2FA;

  /* --- Typography --- */
  --dscc-font: "Inter", "SF Pro Display", "SF Pro Text", Arial, Helvetica, sans-serif;

  /* --- Spacing scale --- */
  --sp-1: 4px;  --sp-2: 8px;   --sp-3: 12px;  --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px;  --sp-7: 48px;  --sp-8: 64px;
  --sp-9: 80px; --sp-10: 96px; --sp-11: 128px;

  /* --- Radius --- */
  --rad-sm: 8px;       /* small components, buttons, inputs */
  --rad-md: 12px;      /* dropdowns */
  --rad-lg: 16px;      /* cards, modals */
  --rad-pill: 999px;   /* status badges */

  /* --- Shadows (restrained) --- */
  --shadow-card:   0 8px 24px rgba(0,0,0,0.06);
  --shadow-hover:  0 12px 32px rgba(0,0,0,0.10);
  --shadow-header: 0 4px 16px rgba(0,0,0,0.04);

  /* --- Layout --- */
  --container-max: 1240px;       /* 1200–1280 per spec */
  --container-pad: 80px;         /* desktop outer margins */
  --header-h: 88px;              /* desktop header height (84–96) */

  /* --- Motion --- */
  --ease: cubic-bezier(.2,.6,.2,1);
  --t-fast: 160ms;
  --t-med: 260ms;
}

/* ==========================================================================
   02. RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
@supports (overflow-x: clip) { html { overflow-x: clip; } }
body {
  margin: 0;
  font-family: var(--dscc-font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--dscc-black-2);
  background: var(--dscc-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul[class], ol[class] { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* Visible keyboard focus — required */
:focus-visible {
  outline: 2px solid var(--dscc-red);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ==========================================================================
   03. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5 { margin: 0 0 .4em; color: var(--dscc-black); font-weight: 800; }

.t-display {            /* Homepage hero headline */
  font-size: clamp(34px, 3.3vw, 44px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
}
h1, .t-h1 { font-size: clamp(34px, 4.4vw, 52px); line-height: 1.05; letter-spacing: -0.02em; }
h2, .t-h2 { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.1;  letter-spacing: -0.015em; font-weight: 700; }
h3, .t-h3 { font-size: clamp(22px, 2.4vw, 27px); line-height: 1.2;  font-weight: 700; }
h4, .t-h4 { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.3;  font-weight: 700; }

.t-body-lg { font-size: 19px; line-height: 1.55; color: var(--dscc-gray-text); }
.t-body    { font-size: 16px; line-height: 1.55; color: var(--dscc-gray-text); }
.t-small   { font-size: 13.5px; line-height: 1.45; color: var(--dscc-gray-muted); }

.t-eyebrow {            /* Section labels / category tags */
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dscc-red);
  margin-bottom: var(--sp-4);
}

/* ==========================================================================
   04. LAYOUT
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
@media (max-width: 1100px) { .container { padding-inline: 32px; } }
@media (max-width: 767px)  { .container { padding-inline: 20px; } }

.section       { padding-block: clamp(56px, 8vw, 112px); }
.section--gray { background: var(--dscc-gray-bg); }
.section--tight{ padding-block: clamp(48px, 6vw, 80px); }

.section-head        { max-width: 720px; margin-inline: auto; text-align: center; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head--split { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: var(--sp-5); text-align: left; }

/* Simple responsive grids */
.grid       { display: grid; gap: var(--sp-5); }
.grid--2    { grid-template-columns: repeat(2, 1fr); }
.grid--3    { grid-template-columns: repeat(3, 1fr); }
.grid--4    { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1023px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   05. BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: var(--rad-sm);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid transparent;
  transition: background-color var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
  white-space: nowrap;
}
.btn .btn__arrow { transition: transform var(--t-fast) var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* Primary — one per section */
.btn--primary { background: var(--dscc-red); border-color: var(--dscc-red); color: var(--dscc-white); }
.btn--primary:hover  { background: var(--dscc-red-hover); border-color: var(--dscc-red-hover); box-shadow: 0 6px 18px rgba(225,6,0,.22); }
.btn--primary:active { background: var(--dscc-red-pressed); border-color: var(--dscc-red-pressed); }

/* Secondary */
.btn--secondary { background: var(--dscc-white); border-color: #D0D0D0; color: var(--dscc-black-2); }
.btn--secondary:hover { border-color: var(--dscc-red); color: var(--dscc-red); }

/* On-dark / on-red variants (CTA band) */
.btn--inverse { background: var(--dscc-white); border-color: var(--dscc-white); color: var(--dscc-black); }
.btn--inverse:hover { background: #F2F2F2; }
.btn--ghost-light { background: transparent; border-color: rgba(255,255,255,.55); color: var(--dscc-white); }
.btn--ghost-light:hover { border-color: var(--dscc-white); background: rgba(255,255,255,.08); }

/* Text / link button */
.btn--text {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 0; padding: 0; border: 0; background: none;
  color: var(--dscc-red); font-weight: 700; font-size: 15px;
}
.btn--text:hover .btn__arrow { transform: translateX(3px); }
.btn--text:hover { text-decoration: underline; text-underline-offset: 4px; }

/* Destructive (use sparingly, later phases) */
.btn--destructive { background: var(--dscc-white); border-color: var(--dscc-error); color: var(--dscc-error); }
.btn--destructive:hover { background: var(--dscc-error-light); }

.btn[disabled], .btn--disabled { background: #D0D0D0; border-color: #D0D0D0; color: var(--dscc-gray-muted); cursor: not-allowed; box-shadow: none; }

@media (max-width: 700px) {
  .btn--block-mobile { width: 100%; }
}

/* ==========================================================================
   06. FORMS  (foundation — used from Phase 1 contact onward)
   ========================================================================== */
.field { margin-bottom: var(--sp-5); }
.field__label { display: block; font-size: 14.5px; font-weight: 600; color: var(--dscc-black-2); margin-bottom: 6px; }
.field__label .req { color: var(--dscc-red); }
.field__input, .field__select, .field__textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  font: inherit; font-size: 15.5px;
  color: var(--dscc-black-2);
  background: var(--dscc-white);
  border: 1px solid #DADADA;
  border-radius: var(--rad-sm);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.field__textarea { min-height: 140px; resize: vertical; }
.field__input:focus, .field__select:focus, .field__textarea:focus {
  outline: none;
  border-color: var(--dscc-red);
  box-shadow: 0 0 0 2px var(--dscc-red-tint);
}
.field__help  { font-size: 13px; color: var(--dscc-gray-text); line-height: 1.4; margin-top: 6px; }
.field--error .field__input, .field--error .field__select, .field--error .field__textarea { border-color: var(--dscc-error); }
.field--error .field__help { color: var(--dscc-error); }
.field__input:disabled { background: #F3F3F3; color: var(--dscc-gray-muted); }

.check { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--dscc-gray-text); }
.check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--dscc-red); }

/* ==========================================================================
   07. CARDS
   ========================================================================== */
.card {
  background: var(--dscc-white);
  border: 1px solid var(--dscc-gray-border);
  border-radius: var(--rad-lg);
  padding: 30px;
  box-shadow: var(--shadow-card);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.card--hover:hover, a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card--hover:hover .btn--text, a.card:hover .btn--text { text-decoration: underline; text-underline-offset: 4px; }

/* Pillar card (Data / AI / Indigenous Data Sovereignty) */
.pillar-card { display: flex; flex-direction: column; gap: var(--sp-4); }
.pillar-card__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--dscc-red-tint);
  display: grid; place-items: center;
  color: var(--dscc-red);
}
.pillar-card__icon svg { width: 30px; height: 30px; stroke: currentColor; }
.pillar-card__rule { width: 28px; height: 3px; background: var(--dscc-red); border: 0; margin: 0; border-radius: 2px; }
.pillar-card h3 { margin: 0; }
.pillar-card p { color: var(--dscc-gray-text); font-size: 15.5px; }
.pillar-card .btn--text { margin-top: auto; }

/* Feature card (Standards / Training / Certification / Knowledge & Policy) */
.feature-card { display: flex; flex-direction: column; gap: var(--sp-3); padding: 28px; }
.feature-card__icon { color: var(--dscc-red); margin-bottom: var(--sp-2); }
.feature-card__icon svg { width: 36px; height: 36px; stroke: currentColor; }
.feature-card h3 { font-size: 19px; margin: 0; }
.feature-card p { color: var(--dscc-gray-text); font-size: 14.5px; }
.feature-card .btn--text { margin-top: auto; font-size: 14.5px; }

/* Article card */
.article-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.article-card__media { aspect-ratio: 16/9; overflow: hidden; background: var(--dscc-gray-bg); }
.article-card__media img, .article-card__media svg { width: 100%; height: 100%; object-fit: cover; }
.article-card__body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.article-card__cat { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--dscc-red); }
.article-card h3 { font-size: 19px; line-height: 1.3; margin: 0; }
.article-card p { font-size: 14.5px; color: var(--dscc-gray-text); flex: 1; }
.article-card__meta { font-size: 13px; color: var(--dscc-gray-muted); display: flex; gap: 8px; align-items: center; }

/* ==========================================================================
   08. STATUS BADGES (later phases; defined globally)
   ========================================================================== */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  border-radius: var(--rad-pill);
  padding: 4px 10px;
  font-size: 12.5px; font-weight: 700;
}
.badge--success { background: var(--dscc-success-light); color: var(--dscc-success); }
.badge--warning { background: var(--dscc-warning-light); color: var(--dscc-warning); }
.badge--error   { background: var(--dscc-error-light);   color: var(--dscc-error); }
.badge--info    { background: var(--dscc-info-light);    color: var(--dscc-info); }
.badge--neutral { background: var(--dscc-gray-bg);       color: var(--dscc-gray-text); }

/* ==========================================================================
   09. HEADER & NAVIGATION  (rendered by dscc.js — single source of truth)
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--dscc-white);
  border-bottom: 1px solid var(--dscc-gray-border);
  transition: box-shadow var(--t-med) var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-header); }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-5);
  min-height: var(--header-h);
}
.site-header__logo img { height: 46px; width: auto; }

.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 30px); }
.site-nav a {
  font-size: 14.5px; font-weight: 600; color: var(--dscc-black-2);
  padding: 6px 2px;
  transition: color var(--t-fast) var(--ease);
}
.site-nav a:hover { color: var(--dscc-red); }
.site-nav a.is-active { color: var(--dscc-red); box-shadow: inset 0 -2px 0 var(--dscc-red); }

.site-header__cta { display: inline-flex; }
.site-header__cta .btn { min-height: 46px; padding: 12px 20px; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: none; border: 0;
  align-items: center; justify-content: center;
  color: var(--dscc-black-2);
}
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-burger { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close  { display: block; }

/* Mobile menu panel */
.mobile-menu {
  display: none;
  position: fixed; inset: var(--header-h) 0 0 0;
  z-index: 99;
  background: var(--dscc-white);
  overflow-y: auto;
  padding: var(--sp-5) 20px var(--sp-8);
}
.mobile-menu.is-open { display: block; }
.mobile-menu nav a {
  display: block;
  padding: 16px 4px;
  font-size: 19px; font-weight: 700; color: var(--dscc-black);
  border-bottom: 1px solid var(--dscc-gray-border);
}
.mobile-menu nav a.is-active { color: var(--dscc-red); }
.mobile-menu__cta { margin-top: var(--sp-5); }
.mobile-menu__cta .btn { width: 100%; }
body.menu-open { overflow: hidden; }

@media (max-width: 1023px) {
  :root { --header-h: 72px; }
  .site-header__logo img { height: 40px; }
  .site-nav, .site-header__cta { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ==========================================================================
   10. FOOTER  (rendered by dscc.js — single source of truth)
   ========================================================================== */
.site-footer { background: var(--dscc-black); color: #CCCCCC; }
.site-footer__main {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: clamp(28px, 4vw, 56px);
  padding-block: clamp(56px, 7vw, 88px);
}
.site-footer__brand img { height: 52px; width: auto; margin-bottom: var(--sp-4); }
.site-footer__brand p { font-size: 14px; line-height: 1.6; color: #BBBBBB; max-width: 320px; }
.site-footer__social { display: flex; gap: 12px; margin-top: var(--sp-4); }
.site-footer__social a {
  width: 38px; height: 38px; border-radius: var(--rad-sm);
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  color: #DDDDDD;
  transition: border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.site-footer__social a:hover { border-color: var(--dscc-red); color: var(--dscc-white); }
.site-footer__social svg { width: 17px; height: 17px; fill: currentColor; }

.site-footer h4 { color: var(--dscc-white); font-size: 14.5px; font-weight: 700; margin: 0 0 14px; }
.site-footer__col a {
  display: block;
  font-size: 14px; color: #CCCCCC;
  padding: 5px 0;
  transition: color var(--t-fast) var(--ease);
}
.site-footer__col a:hover { color: var(--dscc-white); text-decoration: underline; text-underline-offset: 3px; }
.site-footer__col address { font-style: normal; font-size: 14px; line-height: 1.7; color: #CCCCCC; }
.site-footer__col address a { display: inline; padding: 0; }

.site-footer__bar {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-block: 22px;
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  font-size: 13px; color: #999999;
}
.site-footer__legal { display: flex; gap: 22px; }
.site-footer__legal a { color: #999999; }
.site-footer__legal a:hover { color: var(--dscc-white); }

@media (max-width: 1023px) {
  .site-footer__main { grid-template-columns: repeat(2, 1fr); }
  .site-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .site-footer__main { grid-template-columns: 1fr; }
  .site-footer__bar { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   11. PAGE COMPONENTS
   ========================================================================== */

/* --- Hero ------------------------------------------------------------- */
.hero { overflow: hidden; background:
  linear-gradient(180deg, #FFFFFF 0%, #FCFBFB 100%); }
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr);
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  padding-block: clamp(48px, 6vw, 88px);
}
.hero__copy .t-eyebrow { margin-bottom: var(--sp-4); }
.hero__copy .t-display { margin-bottom: var(--sp-4); }
.hero__sub { font-size: 18.5px; color: var(--dscc-gray-text); max-width: 520px; margin-bottom: var(--sp-6); }
.hero__actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; }
.hero__visual svg { width: 100%; height: auto; }

/* Hero ambient motion — subtle, futuristic; killed by reduced-motion override */
.hg-halo {
  animation: hgPulse 3.4s ease-in-out infinite;
  transform-box: fill-box; transform-origin: center;
  opacity: .18;
}
@keyframes hgPulse {
  0%, 100% { opacity: .14; transform: scale(1); }
  50%      { opacity: .42; transform: scale(1.55); }
}
.hg-particle {
  animation: hgFloat 7s ease-in-out infinite;
  transform-box: fill-box;
}
@keyframes hgFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}
.hg-bloom { animation: hgBreathe 5.5s ease-in-out infinite; }
@keyframes hgBreathe {
  0%, 100% { opacity: .55; }
  50%      { opacity: 1; }
}
.map-links path, .hg-flow {
  stroke-dasharray: 4 7;
  animation: hgDash 14s linear infinite;
}
@keyframes hgDash { to { stroke-dashoffset: -220; } }

@media (max-width: 1023px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 560px; margin-inline: auto; }
}
@media (max-width: 700px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
}

/* --- Trust indicator row ---------------------------------------------- */
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
  padding-block: clamp(28px, 4vw, 44px);
  border-top: 1px solid var(--dscc-gray-border);
}
.trust-item { display: flex; gap: 14px; align-items: flex-start; }
.trust-item__icon { color: var(--dscc-red); flex: 0 0 auto; margin-top: 2px; }
.trust-item__icon svg { width: 26px; height: 26px; stroke: currentColor; }
.trust-item h3 { font-size: 15px; font-weight: 700; margin: 0 0 3px; }
.trust-item p { font-size: 13.5px; color: var(--dscc-gray-text); line-height: 1.45; margin: 0; }
@media (max-width: 1023px) { .trust-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .trust-row { grid-template-columns: 1fr; } }

/* --- Authority band (institutional black) ------------------------------ */
.authority-band { background: var(--dscc-black); color: var(--dscc-white); }
.authority-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: clamp(48px, 6vw, 72px);
}
.authority-item { padding-inline: clamp(20px, 2.5vw, 36px); }
.authority-item + .authority-item { border-left: 1px solid rgba(255,255,255,.14); }
.authority-item__icon { color: var(--dscc-red); margin-bottom: var(--sp-4); }
.authority-item__icon svg { width: 30px; height: 30px; stroke: currentColor; }
.authority-item h3 { color: var(--dscc-white); font-size: 17px; margin: 0 0 8px; }
.authority-item p { font-size: 13.5px; line-height: 1.55; color: #C9C9C9; margin: 0; }
@media (max-width: 1023px) {
  .authority-band__grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-6) 0; }
  .authority-item:nth-child(3) { border-left: 0; }
}
@media (max-width: 600px) {
  .authority-band__grid { grid-template-columns: 1fr; }
  .authority-item + .authority-item { border-left: 0; border-top: 1px solid rgba(255,255,255,.14); padding-top: var(--sp-5); }
}

/* --- Final CTA band (DSCC red) ----------------------------------------- */
.cta-band { background: var(--dscc-red); color: var(--dscc-white); position: relative; overflow: hidden; }
.cta-band__leaf {
  position: absolute; right: -40px; bottom: -60px;
  width: 340px; opacity: .14; pointer-events: none;
}
.cta-band__inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(24px, 4vw, 56px);
  padding-block: clamp(44px, 5vw, 64px);
}
.cta-band__icon {
  flex: 0 0 auto;
  width: 64px; height: 64px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.5);
  display: grid; place-items: center;
}
.cta-band__icon svg { width: 30px; height: 30px; stroke: var(--dscc-white); }
.cta-band__copy { flex: 1; }
.cta-band__copy h2 { color: var(--dscc-white); font-size: clamp(24px, 2.6vw, 32px); margin: 0 0 8px; }
.cta-band__copy p { color: rgba(255,255,255,.88); font-size: 15px; margin: 0; max-width: 560px; }
.cta-band__actions { display: flex; gap: var(--sp-4); flex: 0 0 auto; }
@media (max-width: 1023px) {
  .cta-band__inner { flex-wrap: wrap; }
  .cta-band__actions { width: 100%; }
}
@media (max-width: 600px) {
  .cta-band__icon { display: none; }
  .cta-band__actions { flex-direction: column; }
  .cta-band__actions .btn { width: 100%; }
}

/* ==========================================================================
   13. INTERIOR PAGE COMPONENTS  (About + all interior pages)
   ========================================================================== */

/* Calmer interior page hero */
.page-hero {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
  border-bottom: 1px solid var(--dscc-gray-border);
}
.page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  padding-block: clamp(48px, 6vw, 84px);
}
.page-hero h1 { font-size: clamp(30px, 3vw, 42px); line-height: 1.12; letter-spacing: -0.015em; max-width: 21em; }
.page-hero__sub { font-size: 17.5px; color: var(--dscc-gray-text); max-width: 600px; margin-block: var(--sp-4) var(--sp-6); }
.page-hero__actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; align-items: center; }
.page-hero__visual svg { width: 100%; height: auto; }
@media (max-width: 1023px) {
  .page-hero__inner { grid-template-columns: 1fr; }
  .page-hero__visual { max-width: 420px; }
}
@media (max-width: 700px) {
  .page-hero__actions .btn { width: 100%; }
}

/* Two-column intro with side card */
.intro-split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 1023px) { .intro-split { grid-template-columns: 1fr; } }

.side-card { background: var(--dscc-gray-bg); border: 1px solid var(--dscc-gray-border); border-radius: var(--rad-lg); padding: 30px; }
.side-card h3 { font-size: 16px; margin-bottom: var(--sp-4); }
.side-card ul li {
  display: flex; align-items: flex-start; gap: 12px;
  padding-block: 9px;
  font-size: 15px; color: var(--dscc-black-2); font-weight: 600;
}
.side-card ul li + li { border-top: 1px solid var(--dscc-gray-border); }
.side-card ul li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px; height: 7px; border-radius: 2px;
  background: var(--dscc-red);
  margin-top: 7px;
}

/* Mission / Vision statement cards */
.mv-card {
  position: relative;
  background: var(--dscc-white);
  border: 1px solid var(--dscc-gray-border);
  border-radius: var(--rad-lg);
  padding: 36px 36px 36px 42px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.mv-card::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 5px; background: var(--dscc-red);
}
.mv-card h3 { font-size: 15px; letter-spacing: .08em; text-transform: uppercase; color: var(--dscc-red); margin-bottom: var(--sp-4); }
.mv-card blockquote { margin: 0 0 var(--sp-4); font-size: clamp(18px, 1.8vw, 21px); font-weight: 700; line-height: 1.4; color: var(--dscc-black); }
.mv-card p { font-size: 15px; color: var(--dscc-gray-text); }

/* Person / leadership cards */
.person-card { text-align: center; padding: 32px 24px 28px; }
.person-card__avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  margin: 0 auto var(--sp-4);
  display: grid; place-items: center;
  background: #EFEFEF;
  border: 1px solid var(--dscc-gray-border);
  color: var(--dscc-gray-text);
  font-size: 26px; font-weight: 800; letter-spacing: .02em;
  overflow: hidden;
}
.person-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.person-card h3 { font-size: 17px; margin-bottom: 4px; }
.person-card .role { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--dscc-red); }

/* Governance blocks */
.gov-block { padding-top: var(--sp-5); border-top: 3px solid var(--dscc-red); }
.gov-block h3 { font-size: 17px; margin-bottom: 8px; }
.gov-block p { font-size: 14.5px; color: var(--dscc-gray-text); }

/* Marked list (responsibilities etc.) */
.list-marked li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: 15px; color: var(--dscc-gray-text);
}
.list-marked li::before {
  content: "";
  position: absolute; left: 2px; top: 16px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--dscc-red);
}

/* Principle cards (ethics) */
.principle-card { padding: 28px; }
.principle-card__icon { color: var(--dscc-red); margin-bottom: var(--sp-3); }
.principle-card__icon svg { width: 30px; height: 30px; stroke: currentColor; }
.principle-card h3 { font-size: 17px; margin-bottom: 6px; }
.principle-card p { font-size: 14.5px; color: var(--dscc-gray-text); margin: 0; }

/* Informational note card (e.g., "in development", critical statements) */
.note-card {
  background: var(--dscc-info-light);
  border: 1px solid #CFE0EF;
  border-radius: var(--rad-md);
  padding: 22px 26px;
  font-size: 15px; color: var(--dscc-info);
}
.note-card--red {
  background: var(--dscc-red-tint);
  border-color: #F3C9C7;
  color: #7A1410;
}
.note-card strong { font-weight: 700; }

/* ==========================================================================
   14. PROCESS & SPECIALTY COMPONENTS (Certification / IDS pages)
   ========================================================================== */

/* Informational notice band (e.g. future application notice) */
.notice-band {
  background: var(--dscc-info-light);
  border: 1px solid #BFD4E8;
  border-left: 4px solid var(--dscc-info);
  border-radius: var(--rad-md);
  padding: 24px 28px;
  display: flex; gap: 18px; align-items: flex-start;
}
.notice-band__icon { color: var(--dscc-info); flex: 0 0 auto; margin-top: 2px; }
.notice-band__icon svg { width: 24px; height: 24px; stroke: currentColor; }
.notice-band h3 { font-size: 16.5px; color: var(--dscc-info); margin-bottom: 6px; }
.notice-band p { font-size: 14.5px; color: #2C516F; margin-bottom: 14px; max-width: 760px; }
.notice-band__actions { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }

/* Numbered process stepper */
.stepper { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.step-card { position: relative; padding: 26px 26px 24px; }
.step-card::before {
  content: "";
  position: absolute; top: 0; left: 26px; right: 26px;
  height: 3px; background: var(--dscc-red); border-radius: 0 0 3px 3px;
}
.step-card__num {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--dscc-red); color: var(--dscc-white);
  font-weight: 800; font-size: 15px;
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.step-card h3 { font-size: 16px; margin-bottom: 6px; }
.step-card p { font-size: 14px; color: var(--dscc-gray-text); margin: 0; }
.stepper--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1180px) { .stepper--5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 1023px) { .stepper { grid-template-columns: repeat(2, 1fr); } .stepper--5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .stepper, .stepper--5 { grid-template-columns: 1fr; } }

/* FAQ accordion (native details/summary — keyboard accessible) */
.faq details {
  background: var(--dscc-white);
  border: 1px solid var(--dscc-gray-border);
  border-radius: var(--rad-md);
  margin-bottom: 12px;
}
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 22px;
  font-weight: 700; font-size: 16px; color: var(--dscc-black);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { color: var(--dscc-red); flex: 0 0 auto; transition: transform var(--t-fast) var(--ease); }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq summary:hover { color: var(--dscc-red); }
.faq__body { padding: 0 22px 20px; font-size: 15px; color: var(--dscc-gray-text); max-width: 880px; }

/* Check / boundary lists (Can–Cannot split, alignment checklists) */
.list-check li, .list-dash li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 8px 0;
  font-size: 15px; color: var(--dscc-gray-text);
}
.list-check svg, .list-dash svg { flex: 0 0 auto; width: 19px; height: 19px; margin-top: 2px; }
.list-check svg { color: var(--dscc-red); }
.list-dash svg  { color: var(--dscc-black-2); }

/* Dark authority section + dark cards (high-seriousness content) */
.dark-section { background: var(--dscc-black); color: var(--dscc-white); }
.dark-section .section-head h2 { color: var(--dscc-white); }
.dark-section .section-head .t-body-lg, .dark-section .section-head .t-body { color: #C9C9C9; }
.dark-card {
  background: #111113;
  border: 1px solid #26262A;
  border-radius: var(--rad-lg);
  padding: 26px;
}
.dark-card__icon { color: var(--dscc-red); margin-bottom: var(--sp-3); }
.dark-card__icon svg { width: 28px; height: 28px; stroke: currentColor; }
.dark-card h3 { color: var(--dscc-white); font-size: 16px; margin-bottom: 6px; }
.dark-card p { color: #BFBFC3; font-size: 14px; margin: 0; }
.dark-callout {
  border-left: 4px solid var(--dscc-red);
  background: #121214;
  border-radius: 0 var(--rad-md) var(--rad-md) 0;
  padding: 20px 26px;
  font-size: 15.5px; font-weight: 600; color: #EDEDED;
  max-width: 880px;
}

/* Verification preview card (future registry mock) */
.verify-card {
  background: var(--dscc-white);
  border: 1px solid var(--dscc-gray-border);
  border-radius: var(--rad-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  max-width: 520px;
}
.verify-card__head {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 16px 24px;
  background: var(--dscc-black); color: var(--dscc-white);
  font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.verify-card dl { margin: 0; padding: 10px 24px 18px; }
.verify-card .row {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--dscc-gray-border);
}
.verify-card .row:last-child { border-bottom: 0; }
.verify-card dt { font-size: 13.5px; color: var(--dscc-gray-muted); }
.verify-card dd { margin: 0; font-size: 14.5px; font-weight: 600; color: var(--dscc-black-2); text-align: right; }

/* Equal-pathway cards (two audiences) */
.pathway-card { display: flex; flex-direction: column; gap: var(--sp-4); padding: 36px; }
.pathway-card h3 { font-size: 21px; margin: 0; }
.pathway-card .pathway-card__audience { font-size: 13.5px; color: var(--dscc-gray-muted); }
.pathway-card__actions { margin-top: auto; display: flex; gap: var(--sp-4); flex-wrap: wrap; align-items: center; }

/* ==========================================================================
   15. CONTACT, LEGAL & 404 COMPONENTS
   ========================================================================== */

/* Contact layout: form + info sidebar */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 1023px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form-card { padding: clamp(26px, 3vw, 40px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
@media (max-width: 700px) { .form-row { grid-template-columns: 1fr; } }

.char-count { font-size: 12.5px; color: var(--dscc-gray-muted); text-align: right; margin-top: 4px; }
.char-count.is-invalid { color: var(--dscc-error); }

/* Form status messages */
.form-status { display: none; border-radius: var(--rad-md); padding: 16px 20px; font-size: 14.5px; margin-bottom: var(--sp-5); }
.form-status.is-error   { display: block; background: var(--dscc-error-light); color: var(--dscc-error); border: 1px solid #EBC3CA; }
.form-status.is-success { display: block; background: var(--dscc-success-light); color: var(--dscc-success); border: 1px solid #C4E5CE; }

/* Confirmation state */
.confirm-state { text-align: center; padding: clamp(40px, 6vw, 72px) 24px; }
.confirm-state__icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--dscc-success-light); color: var(--dscc-success);
  display: grid; place-items: center;
  margin: 0 auto var(--sp-5);
}
.confirm-state__icon svg { width: 34px; height: 34px; stroke: currentColor; }
.confirm-state h2 { margin-bottom: var(--sp-3); }
.confirm-state p { max-width: 560px; margin-inline: auto; }
.confirm-state__actions { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; margin-top: var(--sp-6); }

/* Contact info cards */
.contact-card { display: flex; gap: 16px; align-items: flex-start; padding: 22px 24px; }
.contact-card__icon { color: var(--dscc-red); flex: 0 0 auto; margin-top: 2px; }
.contact-card__icon svg { width: 22px; height: 22px; stroke: currentColor; }
.contact-card h3 { font-size: 14.5px; margin-bottom: 2px; }
.contact-card a { font-size: 14.5px; color: var(--dscc-red); font-weight: 600; }
.contact-card a:hover { text-decoration: underline; text-underline-offset: 3px; }
.contact-card .muted { font-size: 14.5px; color: var(--dscc-gray-muted); }

/* Inquiry type explanation list */
.inquiry-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px var(--sp-6); }
.inquiry-list div { padding: 12px 0; border-bottom: 1px solid var(--dscc-gray-border); }
.inquiry-list dt { font-size: 14.5px; font-weight: 700; color: var(--dscc-black-2); }
.inquiry-list dd { margin: 2px 0 0; font-size: 13.5px; color: var(--dscc-gray-text); }
@media (max-width: 700px) { .inquiry-list { grid-template-columns: 1fr; } }

/* Long-form legal template */
.legal-content { max-width: 780px; }
.legal-content h2 { font-size: 22px; margin: 40px 0 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { font-size: 15.5px; line-height: 1.65; color: var(--dscc-gray-text); }
.legal-content ul { padding-left: 22px; margin: 0 0 1em; list-style: disc; }
.legal-content .last-updated { font-size: 13.5px; color: var(--dscc-gray-muted); margin-bottom: var(--sp-6); }

/* 404 */
.notfound { text-align: center; padding-block: clamp(64px, 9vw, 128px); }
.notfound h1 { max-width: 16em; margin-inline: auto; }
.notfound__visual { max-width: 360px; margin: 0 auto var(--sp-6); }
.notfound__search { display: flex; gap: 12px; max-width: 480px; margin: var(--sp-6) auto 0; }
.notfound__search .field__input { flex: 1; }
.notfound__links { display: flex; gap: 10px 26px; justify-content: center; flex-wrap: wrap; margin-top: var(--sp-7); }
.notfound__links a { font-size: 14.5px; font-weight: 600; color: var(--dscc-black-2); }
.notfound__links a:hover { color: var(--dscc-red); }

/* Comparison table (membership plans) */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--dscc-gray-border); border-radius: var(--rad-lg); background: var(--dscc-white); box-shadow: var(--shadow-card); }
.compare-table { width: 100%; min-width: 760px; border-collapse: collapse; font-size: 14px; }
.compare-table thead th {
  background: var(--dscc-black); color: var(--dscc-white);
  font-size: 13.5px; font-weight: 700; letter-spacing: .02em;
  padding: 16px 18px; text-align: center;
}
.compare-table thead th:first-child { text-align: left; border-radius: 0; }
.compare-table tbody th {
  text-align: left; font-weight: 600; color: var(--dscc-black-2);
  padding: 14px 18px; font-size: 14px;
}
.compare-table tbody td { text-align: center; padding: 14px 18px; color: var(--dscc-gray-text); }
.compare-table tbody tr + tr th, .compare-table tbody tr + tr td { border-top: 1px solid var(--dscc-gray-border); }
.compare-table tbody tr:nth-child(even) { background: #FBFBFB; }
.compare-table .yes svg { width: 18px; height: 18px; color: var(--dscc-success); display: inline-block; vertical-align: middle; }
.compare-table .no { color: var(--dscc-gray-muted); }

/* ==========================================================================
   16. KNOWLEDGE CENTRE & ARTICLE COMPONENTS
   ========================================================================== */

/* Category navigation chips */
.kc-cats { display: flex; gap: 10px; flex-wrap: wrap; }
.kc-cat {
  border: 1px solid var(--dscc-gray-border);
  background: var(--dscc-white);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13.5px; font-weight: 600; color: var(--dscc-black-2);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  white-space: nowrap;
}
.kc-cat:hover { border-color: var(--dscc-red); color: var(--dscc-red); }
.kc-cat.is-active { background: var(--dscc-red); border-color: var(--dscc-red); color: var(--dscc-white); font-weight: 700; }
@media (max-width: 700px) {
  .kc-cats { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
}

/* Search bar */
.kc-toolbar { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: var(--sp-6); }
.kc-search { position: relative; flex: 1 1 320px; max-width: 460px; }
.kc-search .field__input { padding-left: 42px; width: 100%; }
.kc-search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--dscc-gray-muted); pointer-events: none; }

/* Featured article (60/40 split) */
.featured-article {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  background: var(--dscc-white);
  border: 1px solid var(--dscc-gray-border);
  border-radius: var(--rad-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.featured-article__media { min-height: 320px; background: var(--dscc-black); }
.featured-article__media svg { width: 100%; height: 100%; display: block; }
.featured-article__body { padding: clamp(26px, 3vw, 44px); display: flex; flex-direction: column; gap: 14px; }
.featured-article__body h2 { font-size: clamp(22px, 2.2vw, 30px); line-height: 1.2; }
.featured-article__meta { font-size: 13px; color: var(--dscc-gray-muted); }
@media (max-width: 1023px) {
  .featured-article { grid-template-columns: 1fr; }
  .featured-article__media { min-height: 220px; }
}

/* Pagination */
.pagination { display: flex; gap: 8px; justify-content: center; align-items: center; margin-top: var(--sp-7); }
.pagination button {
  min-width: 42px; height: 42px; padding: 0 14px;
  border: 1px solid var(--dscc-gray-border); border-radius: var(--rad-sm);
  background: var(--dscc-white); color: var(--dscc-black-2);
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}
.pagination button:hover:not(:disabled) { border-color: var(--dscc-red); color: var(--dscc-red); }
.pagination button.is-active { background: var(--dscc-red); border-color: var(--dscc-red); color: var(--dscc-white); }
.pagination button:disabled { opacity: .4; cursor: default; }

/* Newsletter band */
.newsletter-band { background: var(--dscc-gray-bg); border-top: 1px solid var(--dscc-gray-border); border-bottom: 1px solid var(--dscc-gray-border); }
.newsletter-band__inner {
  display: flex; gap: clamp(20px, 4vw, 56px); align-items: center; justify-content: space-between;
  padding-block: clamp(36px, 5vw, 56px);
  flex-wrap: wrap;
}
.newsletter-band form { display: flex; gap: 12px; flex: 1 1 380px; max-width: 520px; }
.newsletter-band .field__input { flex: 1; background: var(--dscc-white); }
@media (max-width: 700px) {
  .newsletter-band form { flex-direction: column; }
  .newsletter-band form .btn { width: 100%; }
}

/* Empty state */
.kc-empty { text-align: center; padding: clamp(40px, 6vw, 72px) 20px; display: none; }
.kc-empty.is-visible { display: block; }

/* ----- Article detail ----- */
.article-header { max-width: 780px; margin-inline: auto; }
.article-header h1 { font-size: clamp(28px, 3vw, 40px); line-height: 1.15; letter-spacing: -0.015em; margin-block: 14px 10px; }
.article-header .subtitle { font-size: 18px; color: var(--dscc-gray-text); margin-bottom: 22px; }
.article-meta { display: flex; gap: 10px 22px; align-items: center; flex-wrap: wrap; font-size: 13.5px; color: var(--dscc-gray-muted); }

.author-block { display: flex; gap: 14px; align-items: center; }
.author-block__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: #EFEFEF; border: 1px solid var(--dscc-gray-border);
  display: grid; place-items: center;
  font-size: 15px; font-weight: 800; color: var(--dscc-gray-text);
  overflow: hidden; flex: 0 0 auto;
}
.author-block strong { display: block; font-size: 14.5px; color: var(--dscc-black); }
.author-block span { font-size: 12.5px; color: var(--dscc-gray-muted); }

.share-actions { display: flex; gap: 10px; }
.share-actions a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--dscc-gray-border);
  display: grid; place-items: center;
  color: var(--dscc-black-2);
  transition: all var(--t-fast) var(--ease);
}
.share-actions a:hover { background: var(--dscc-red); border-color: var(--dscc-red); color: var(--dscc-white); }
.share-actions svg { width: 16px; height: 16px; }

.article-figure { max-width: 980px; margin: clamp(28px, 4vw, 44px) auto; }
.article-figure .ratio { aspect-ratio: 16 / 9; border-radius: var(--rad-lg); overflow: hidden; background: var(--dscc-black); }
.article-figure svg, .article-figure img { width: 100%; height: 100%; display: block; object-fit: cover; }
.article-figure figcaption { font-size: 12.5px; color: var(--dscc-gray-muted); margin-top: 10px; text-align: center; }

.article-body { max-width: 720px; margin-inline: auto; }
.article-body p { font-size: 17px; line-height: 1.75; color: #2B2B2B; margin-bottom: 1.35em; }
.article-body h2 { font-size: 25px; margin: 1.9em 0 .7em; letter-spacing: -0.01em; }
.article-body h3 { font-size: 19px; margin: 1.6em 0 .6em; }
.article-body ul, .article-body ol { margin: 0 0 1.35em; padding-left: 26px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { font-size: 16.5px; line-height: 1.7; color: #2B2B2B; margin-bottom: .45em; }
.article-body a { color: var(--dscc-red); font-weight: 600; }
.article-body a:hover { text-decoration: underline; text-underline-offset: 3px; }

.pullquote {
  border-left: 4px solid var(--dscc-red);
  margin: 2em 0;
  padding: 8px 0 8px 28px;
}
.pullquote p {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700; line-height: 1.4;
  color: var(--dscc-black);
  margin: 0;
}

.callout {
  border-radius: var(--rad-md);
  padding: 22px 26px;
  margin: 1.8em 0;
  font-size: 15px;
}
.callout strong { display: block; margin-bottom: 6px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.callout p { font-size: 15px !important; line-height: 1.6 !important; margin: 0 !important; }
.callout--info { background: var(--dscc-info-light); border: 1px solid #CFE0EF; color: #2C516F; }
.callout--info strong { color: var(--dscc-info); }
.callout--standards { background: var(--dscc-red-tint); border: 1px solid #F3C9C7; color: #7A1410; }
.callout--standards strong { color: var(--dscc-red); }
.callout--warning { background: var(--dscc-warning-light); border: 1px solid #EBDCC3; color: #6E4A14; }
.callout--warning strong { color: var(--dscc-warning); }
.callout--success { background: var(--dscc-success-light); border: 1px solid #C4E5CE; color: #0E5F27; }
.callout--success strong { color: var(--dscc-success); }

/* ==========================================================================
   12. UTILITIES & ACCESSIBILITY
   ========================================================================== */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  z-index: 200;
  background: var(--dscc-black); color: var(--dscc-white);
  padding: 12px 18px; border-radius: 0 0 var(--rad-sm) 0;
  font-weight: 700; font-size: 14px;
}
.skip-link:focus { left: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Scroll reveal (progressive enhancement; off when reduced motion) */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
