/* ═══════════════════════════════════════════════════════════════
   PART 06 — AI ETHICS & AWARENESS
   Extends youthworkai.css — always import that first
   ═══════════════════════════════════════════════════════════════ */

/* ── Burgundy palette (Part 06 only) ── */
:root {
  --burg-dark:   #2D0F0F;
  --burg-deeper: #1A0808;
  --burg-mid:    #6B1A1A;
  --burg-accent: #8B1A1A;
  --burg-blush:  #F9EDED;
  --burg-rule:   rgba(255,255,255,0.06);
  --dot-high:    #C0392B;
  --dot-medium:  #D4750A;
  --dot-watch:   #888780;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 1 — HERO (dark burgundy)
   ═══════════════════════════════════════════════════════════════ */
.hero--burg,
.hero--burg .hero-left,
.hero--burg .hero-right { background: var(--burg-dark); }

/* Eyebrow overrides for dark background */
.hero--burg .part-num      { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
.hero--burg .part-divider  { background: rgba(255,255,255,0.12); }
.hero--burg .part-label    { color: rgba(255,255,255,0.35); }
.hero--burg .hero-h1       { color: #fff; }
.hero--burg .hero-lead     { color: rgba(255,255,255,0.65); }

.hero--burg .btn-primary {
  background: var(--burg-accent);
  border-color: var(--burg-accent);
  color: #fff;
}
.hero--burg .btn-primary:hover {
  background: #9E2020;
  border-color: #9E2020;
}
.hero--burg .btn-secondary {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.22);
}
.hero--burg .btn-secondary:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

/* Hero right — TOOL/TOLL animation panel */
.hero-word-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 340px;
  padding: 60px 40px;
  box-sizing: border-box;
  border-left: 1px solid rgba(255,255,255,0.05);
}
.hero-word {
  font-family: 'Playfair Display', serif;
  font-size: clamp(88px, 13vw, 160px);
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  line-height: 1;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  user-select: none;
  aria-label: none;
}
/* Grid-stack trick: morph char keeps correct width while two chars overlay */
.hw-morph  { display: inline-grid; }
.hw-from,
.hw-to     { grid-area: 1 / 1; display: block; }

.hw-from { animation: hwFrom 5s ease-in-out infinite; }
.hw-to   { animation: hwTo   5s ease-in-out infinite; }

@keyframes hwFrom {
  0%,  33%  { opacity: 1; transform: translateY(0)     scale(1);    }
  44%        { opacity: 0; transform: translateY(-14px) scale(0.82); }
  88%,  96%  { opacity: 0; transform: translateY(-14px) scale(0.82); }
  100%       { opacity: 1; transform: translateY(0)     scale(1);    }
}
@keyframes hwTo {
  0%,  39%  { opacity: 0; transform: translateY(14px)  scale(0.82); }
  51%        { opacity: 1; transform: translateY(0)     scale(1);    }
  84%        { opacity: 1; transform: translateY(0)     scale(1);    }
  96%        { opacity: 0; transform: translateY(14px)  scale(0.82); }
  100%       { opacity: 0; transform: translateY(14px)  scale(0.82); }
}

.hero-word-subline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.13em;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
  margin-top: 24px;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   SHARED SECTION WRAPPERS
   ═══════════════════════════════════════════════════════════════ */
.ethics-light {
  padding: var(--section-pad-v) var(--section-pad-h);
  background: var(--burg-blush);
  border-bottom: 1px solid rgba(107,26,26,0.1);
}
.ethics-dark {
  padding: var(--section-pad-v) var(--section-pad-h);
  background: var(--burg-dark);
  border-bottom: 1px solid var(--burg-rule);
}
.ethics-paper {
  padding: var(--section-pad-v) var(--section-pad-h);
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.ethics-closing {
  padding: 110px var(--section-pad-h) 100px;
  background: var(--burg-deeper);
  text-align: center;
}
.ethics-inner {
  max-width: var(--inner-max);
  margin: 0 auto;
}

/* Section utility tag */
.section-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}
.section-tag--dark  { color: var(--teal-lt); }
.section-tag--light { color: var(--burg-mid); }

.section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.6vw, 52px);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 28px;
}
.section-h2--dark  { color: rgba(255,255,255,0.92); }
.section-h2--light { color: var(--ink); }

/* ═══════════════════════════════════════════════════════════════
   SECTION 2 — SCALE OF THE PROBLEM
   ═══════════════════════════════════════════════════════════════ */
.scale-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 64px;
  align-items: start;
}
.scale-header-left {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 600;
  line-height: 1.22;
  color: var(--ink);
}
.scale-header-right {
  font-size: 16px;
  line-height: 1.78;
  color: var(--ink-40);
  padding-top: 4px;
}

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 72px;
  border: 1px solid rgba(107,26,26,0.14);
  border-radius: 6px;
  overflow: hidden;
}
.stat-block {
  padding: 44px 36px;
  background: #fff;
  text-align: center;
  border-right: 1px solid rgba(107,26,26,0.08);
}
.stat-block:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 700;
  color: var(--burg-mid);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}
.stat-label {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-40);
}
.stat-source {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(107,26,26,0.32);
  letter-spacing: 0.06em;
  margin-top: 10px;
  display: block;
}

/* Two-column prose body */
.scale-prose {
  columns: 2;
  column-gap: 3.5rem;
  margin-bottom: 56px;
}
.scale-prose p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink);
  margin-bottom: 1.5rem;
  break-inside: avoid;
}
.scale-prose p:last-child { margin-bottom: 0; }

/* Amber callout */
.amber-callout {
  background: var(--amber-bg);
  border-left: 4px solid var(--amber);
  border-radius: 4px;
  padding: 28px 32px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 3 — SIX RISKS ACCORDION (dark burgundy)
   ═══════════════════════════════════════════════════════════════ */
.risks-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

/* Severity legend */
.risk-legend {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.risk-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
}
.risk-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.risk-dot--high   { background: var(--dot-high); }
.risk-dot--medium { background: var(--dot-medium); }
.risk-dot--watch  { background: var(--dot-watch); }

/* Accordion container */
.risks-list {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--burg-rule);
  border-radius: 6px;
  overflow: hidden;
}
.risk-item {
  border-bottom: 1px solid var(--burg-rule);
  overflow: hidden;
}
.risk-item:last-child { border-bottom: none; }

.risk-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  cursor: pointer;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.risk-header:hover { background: rgba(255,255,255,0.03); }
.risk-item.open > .risk-header { background: rgba(255,255,255,0.04); }

.risk-header-left {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex: 1;
  min-width: 0;
}
.risk-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  margin-top: 3px;
}
.risk-title-block { flex: 1; min-width: 0; }
.risk-severity {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.risk-name {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
}
.risk-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.32);
  margin-top: 4px;
  font-weight: 400;
  line-height: 1.45;
}
.risk-toggle {
  width: 26px; height: 26px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.25);
  font-size: 16px;
  line-height: 1;
  transition: all 0.22s;
  flex-shrink: 0;
  margin-left: 16px;
}
.risk-item.open .risk-toggle {
  background: var(--burg-accent);
  border-color: var(--burg-accent);
  color: #fff;
  transform: rotate(45deg);
}

.risk-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}
.risk-body-inner {
  padding: 4px 32px 28px 68px;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.48);
  font-weight: 300;
}
.risk-body-inner p { margin-bottom: 1.1rem; }
.risk-body-inner p:last-child { margin-bottom: 0; }
.risk-body-inner strong { color: rgba(255,255,255,0.72); font-weight: 500; }

.risk-watch-note {
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  font-size: 13px;
  line-height: 1.72;
  color: rgba(255,255,255,0.38);
  font-style: italic;
}
.risk-watch-note strong {
  font-style: normal;
  color: rgba(255,255,255,0.5) !important;
  display: block;
  margin-bottom: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 4 — HOW AI HAS BEEN USED FOR GOOD
   ═══════════════════════════════════════════════════════════════ */
.good-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 64px;
}
.good-header-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-40);
  margin-top: 16px;
}
.good-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.good-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-top: 3px solid var(--teal);
  border-radius: 6px;
  padding: 32px 28px;
}
.good-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--teal);
  background: var(--teal-bg);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.good-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 14px;
}
.good-card-body {
  font-size: 14px;
  line-height: 1.78;
  color: var(--ink-40);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 5 — EU AI ACT (dark burg, sticky left + timeline)
   ═══════════════════════════════════════════════════════════════ */
.act-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 5rem;
  align-items: start;
}
.act-sticky {
  position: sticky;
  top: 88px;
}
.act-sticky-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--teal-lt);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.act-sticky-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  line-height: 1.28;
  margin-bottom: 18px;
}
.act-sticky-intro {
  font-size: 13px;
  line-height: 1.78;
  color: rgba(255,255,255,0.38);
  margin-bottom: 44px;
}

/* Vertical timeline */
.act-timeline {
  position: relative;
  padding-left: 28px;
}
.act-timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(255,255,255,0.08);
}
.act-tl-item {
  position: relative;
  padding-bottom: 28px;
}
.act-tl-item:last-child { padding-bottom: 0; }
.act-tl-dot {
  position: absolute;
  left: -25px;
  top: 4px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--burg-accent);
  border: 2px solid rgba(255,255,255,0.15);
  z-index: 1;
}
.act-tl-dot--now {
  background: var(--teal);
  border-color: var(--teal-lt);
  box-shadow: 0 0 0 4px rgba(14,138,104,0.2);
}
.act-tl-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.28);
  margin-bottom: 4px;
}
.act-tl-event {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
}

/* Right content blocks */
.act-right { }
.act-block {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--burg-rule);
}
.act-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.act-block-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  margin-bottom: 18px;
  line-height: 1.3;
}
.act-block-body {
  font-size: 15px;
  line-height: 1.87;
  color: rgba(255,255,255,0.48);
  font-weight: 300;
}
.act-block-body p { margin-bottom: 1.2rem; }
.act-block-body p:last-child { margin-bottom: 0; }

.act-teal-callout {
  margin-top: 24px;
  background: rgba(14,138,104,0.1);
  border-left: 3px solid var(--teal);
  border-radius: 4px;
  padding: 22px 26px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 6 — ETHICS CHECKLIST (light burgundy-blush)
   ═══════════════════════════════════════════════════════════════ */
.checklist-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
}
.checklist-header-sub {
  font-size: 16px;
  color: var(--ink-40);
  margin-top: 14px;
  font-style: italic;
}

/* Five checkpoint cards */
.checkpoint-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.875rem;
  margin: 56px 0 72px;
}
.checkpoint-card {
  background: #fff;
  border: 1px solid rgba(107,26,26,0.1);
  border-radius: 6px;
  padding: 24px 20px 28px;
}
.checkpoint-num {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  color: rgba(107,26,26,0.1);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}
.checkpoint-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 10px;
}
.checkpoint-body {
  font-size: 12px;
  line-height: 1.72;
  color: var(--ink-40);
}

/* Interactive checklist */
.checklist-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.07em;
  color: rgba(107,26,26,0.4);
  text-align: center;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.checklist-list {
  list-style: none;
  padding: 0; margin: 0;
  background: #fff;
  border: 1px solid rgba(107,26,26,0.1);
  border-radius: 6px;
  overflow: hidden;
}
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(107,26,26,0.06);
  cursor: pointer;
  transition: background 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.checklist-item:last-child { border-bottom: none; }
.checklist-item:hover { background: rgba(107,26,26,0.02); }

.check-circle {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(107,26,26,0.22);
  flex-shrink: 0;
  margin-top: 1px;
  transition: background 0.2s, border-color 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.check-circle::after {
  content: '';
  width: 6px; height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) scale(0);
  transition: transform 0.18s ease;
  margin-top: -2px;
}
.checklist-item.checked .check-circle {
  background: var(--teal);
  border-color: var(--teal);
}
.checklist-item.checked .check-circle::after {
  transform: rotate(45deg) scale(1);
}
.check-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  transition: opacity 0.2s, color 0.2s;
}
.checklist-item.checked .check-text {
  opacity: 0.38;
  text-decoration: line-through;
  text-decoration-color: var(--teal);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 7 — WORKSHOP ACTIVITIES (dark burg, 2×2 grid)
   ═══════════════════════════════════════════════════════════════ */
.workshop-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 64px;
}
.workshop-header-sub {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.38);
  margin-top: 16px;
}
.workshop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.activity-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--burg-mid);
  border-radius: 6px;
  padding: 40px 36px;
}
.activity-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.activity-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.18);
}
.activity-duration {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.07em;
  color: var(--teal-lt);
  background: rgba(14,138,104,0.12);
  padding: 3px 10px;
  border-radius: 2px;
}
.activity-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  line-height: 1.28;
  margin-bottom: 10px;
}
.activity-objective {
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
  margin-bottom: 26px;
  padding-left: 12px;
  border-left: 2px solid var(--burg-accent);
}
.activity-section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  display: block;
  margin-bottom: 8px;
}
.activity-materials {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.48);
  background: rgba(255,255,255,0.04);
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 26px;
}
.activity-steps {
  list-style: none;
  padding: 0; margin: 0 0 24px;
}
.activity-steps li {
  display: flex;
  gap: 14px;
  margin-bottom: 13px;
  font-size: 14px;
  line-height: 1.72;
  color: rgba(255,255,255,0.55);
}
.activity-steps li:last-child { margin-bottom: 0; }
.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--teal-lt);
  flex-shrink: 0;
  width: 22px;
  padding-top: 1px;
}
.activity-questions {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.32);
  font-style: italic;
}
.activity-questions strong {
  font-style: normal;
  display: block;
  color: rgba(255,255,255,0.42);
  font-weight: 500;
  margin-bottom: 6px;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 8 — CLOSING PULL QUOTE
   ═══════════════════════════════════════════════════════════════ */
.closing-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 110px;
  line-height: 0.7;
  color: rgba(255,255,255,0.05);
  display: block;
  margin-bottom: 12px;
}
.closing-quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(21px, 2.6vw, 36px);
  font-style: italic;
  line-height: 1.58;
  color: rgba(255,255,255,0.88);
  max-width: 800px;
  margin: 0 auto 60px;
}
.closing-colophon {
  font-size: 13px;
  line-height: 1.85;
  color: rgba(255,255,255,0.28);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.closing-colophon span {
  display: block;
}
.closing-colophon span + span {
  margin-top: 10px;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .act-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .act-sticky {
    position: static;
    margin-bottom: 52px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--burg-rule);
  }
  .checkpoint-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .scale-header     { grid-template-columns: 1fr; gap: 1.5rem; }
  .stats-strip      { grid-template-columns: 1fr; }
  .stat-block       { border-right: none; border-bottom: 1px solid rgba(107,26,26,0.08); }
  .stat-block:last-child { border-bottom: none; }
  .scale-prose      { columns: 1; }
  .good-grid        { grid-template-columns: repeat(2, 1fr); }
  .workshop-grid    { grid-template-columns: 1fr; }
  .checkpoint-grid  { grid-template-columns: repeat(2, 1fr); }
  .hero-word-wrap   { display: none; }
}
@media (max-width: 600px) {
  .ethics-light,
  .ethics-dark,
  .ethics-paper { padding: 72px 24px; }
  .ethics-closing { padding: 80px 24px 72px; }
  .good-grid        { grid-template-columns: 1fr; }
  .checkpoint-grid  { grid-template-columns: 1fr; }
  .risk-header      { padding: 18px 20px; }
  .risk-body-inner  { padding: 4px 20px 22px 40px; }
  .activity-card    { padding: 28px 22px; }
}
