:root {
  --bg: #12392f;
  --panel: rgba(235, 250, 241, 0.08);
  --panel-2: rgba(255, 90, 53, 0.12);
  --text: #f6fff9;
  --muted: rgba(235, 250, 241, 0.84);
  --line: rgba(235, 250, 241, 0.18);
  --brand-navy: #12392f;
  --brand-navy-rgb: 18, 57, 47;
  --brand-blue: #1f5a46;
  --brand-blue-rgb: 31, 90, 70;
  --accent: #ff5a35;
  --accent-dark: #12392f;
  --brand-orange: #ff5a35;
  --brand-orange-rgb: 255, 90, 53;
  --brand-orange-warm: #ff9f45;
  --brand-orange-dark: #8f321c;
  --danger: #8f321c;
  --danger-soft: rgba(var(--brand-orange-rgb), 0.11);
  --shadow: 0 28px 88px rgba(0, 0, 0, 0.34);
  --radius: 28px;
  --mobile-demo-width: 430px;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 10%, rgba(152, 211, 181, 0.16), transparent 28rem),
    radial-gradient(circle at bottom right, rgba(var(--brand-orange-rgb),0.20), transparent 30rem),
    linear-gradient(135deg, #12392f 0%, #1f5a46 56%, #2f7160 100%);
  line-height: 1.5;
  min-height: 100dvh;
}

button, textarea { font: inherit; }
button { cursor: pointer; }

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  min-height: 100vh;
  padding: 28px;
  color: #f6fff9;
  background:
    radial-gradient(circle at 50% 34%, rgba(152, 211, 181, 0.16), transparent 22rem),
    linear-gradient(135deg, #12392f 0%, #1f5a46 56%, #2f7160 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity .55s ease, visibility .55s ease;
  animation: splashDismiss .45s ease 5.55s forwards;
}
.splash-screen.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.splash-mark-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(132px, 30vw, 190px);
  height: clamp(132px, 30vw, 190px);
}
.splash-pulse {
  position: absolute;
  inset: 9%;
  border-radius: 30%;
  border: 1.5px solid rgba(235, 250, 241, 0.48);
  box-shadow: 0 0 26px rgba(152, 211, 181, 0.16);
  opacity: 0;
  animation: splashPulse 2.25s ease forwards;
}
.splash-pulse-1 { animation-delay: .08s; }
.splash-pulse-2 { inset: 3%; animation-delay: .32s; border-color: rgba(235, 250, 241, 0.34); }
.splash-pulse-3 { inset: -3%; animation-delay: .58s; border-color: rgba(152, 211, 181, 0.24); }
.splash-logo {
  width: clamp(112px, 25vw, 166px);
  height: clamp(112px, 25vw, 166px);
  border-radius: 26%;
  display: block;
  background: transparent;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.20);
  transform: scale(.22) rotate(-10deg);
  opacity: 0;
  animation: splashLogoBuild 1.45s cubic-bezier(.18, .9, .2, 1.08) .15s forwards;
}
.splash-wordmark {
  font-size: clamp(2.7rem, 9vw, 5.8rem);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -0.075em;
  opacity: 0;
  transform: translateY(14px);
  animation: splashTextIn .55s ease 1.25s forwards;
}
.splash-claim {
  margin: 0;
  color: rgba(235, 250, 241, 0.86);
  font-size: clamp(1.05rem, 3.6vw, 1.45rem);
  font-weight: 750;
  letter-spacing: -0.025em;
  opacity: 0;
  transform: translateY(10px);
  animation: splashTextIn .55s ease 1.52s forwards;
}
@keyframes splashLogoBuild {
  0% { opacity: 0; transform: scale(.22) rotate(-10deg); }
  58% { opacity: 1; transform: scale(1.08) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
@keyframes splashTextIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes splashPulse {
  0% { opacity: 0; transform: scale(.42); }
  22% { opacity: .92; }
  62% { opacity: .42; }
  100% { opacity: 0; transform: scale(1.72); }
}
@keyframes splashDismiss {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}
@media (prefers-reduced-motion: reduce) {
  .splash-pulse, .splash-logo, .splash-wordmark, .splash-claim { animation: none; opacity: 1; transform: none; }
}

.shell {
  width: min(var(--mobile-demo-width), calc(100% - 44px));
  margin: 0 auto;
  padding: 9px 0 18px;
  container-type: inline-size;
}

.hero, .panel {
  background: rgba(18, 57, 47, 0.68);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 22px;
  backdrop-filter: blur(12px);
}

.hero {
  min-height: calc(100dvh - 27px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.badge {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  justify-content: center;
  text-align: center;
  color: #f6fff9;
  border: 1px solid rgba(var(--brand-orange-rgb),0.42);
  background: rgba(var(--brand-orange-rgb),0.16);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 700;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.brand-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}
.brand-logo {
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
  border-radius: 26%;
  box-shadow: 0 18px 42px rgba(var(--brand-navy-rgb), 0.22);
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(2.35rem, 11.5vw, 3.25rem);
  line-height: 0.9;
  letter-spacing: -0.058em;
  margin-bottom: 0;
}
.wordmark-krisen {
  color: var(--brand-orange);
  text-shadow: 0 0 22px rgba(var(--brand-orange-rgb), 0.24);
}
.wordmark-pilot {
  color: currentColor;
}
h2 {
  font-size: clamp(1.55rem, 7cqw, 2rem);
  line-height: 1.02;
  letter-spacing: -0.038em;
  margin-bottom: 12px;
}
h3 { margin-bottom: 10px; }
.claim {
  font-size: clamp(1.35rem, 6.5cqw, 1.75rem);
  line-height: 1.08;
  letter-spacing: -0.032em;
  margin-bottom: 16px;
}
.intro {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 30px;
}
.small-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 16px 0 0;
}

.actions, .feedback-buttons, .chips, .status-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.bottom-actions { margin-top: 20px; }
.actions button, .actions .link-button, .feedback-buttons button {
  width: 100%;
  justify-content: center;
}

button, .link-button {
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 800;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
button:hover, .link-button:hover { transform: translateY(-1px); }
button:disabled { cursor: wait; opacity: .72; transform: none; }
.primary {
  color: #fffaf2;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
  box-shadow: 0 14px 30px rgba(var(--brand-orange-rgb),0.28);
}
.primary:hover { background: var(--brand-orange-dark); }
.secondary {
  color: #f6fff9;
  background: rgba(235, 250, 241, 0.08);
  border: 1px solid rgba(var(--brand-navy-rgb),0.22);
}
.danger {
  color: #ffc1aa;
  background: rgba(var(--brand-orange-rgb),0.10);
  border: 1px solid rgba(var(--brand-orange-rgb),0.34);
}
.ghost, .chips button, .feedback-buttons button, .back {
  color: var(--text);
  background: rgba(235, 250, 241, 0.10);
  border: 1px solid var(--line);
}
.back { margin-bottom: 24px; }

.hidden { display: none !important; }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.step {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.section-head p { color: var(--muted); margin-bottom: 0; }

textarea {
  width: 100%;
  resize: vertical;
  min-height: 170px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  background: rgba(247, 252, 255, 0.08);
  color: var(--text);
  outline: none;
  font-size: 1.03rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}
textarea:focus {
  border-color: rgba(var(--brand-orange-rgb),0.55);
  box-shadow: 0 0 0 4px rgba(var(--brand-navy-rgb),0.07);
}
.validation { min-height: 24px; color: var(--danger); margin: 8px 0 12px; }

.chips { margin-bottom: 8px; }
.chips button { font-weight: 750; padding: 10px 14px; color: var(--muted); }

.demo-limit-box {
  background: rgba(var(--brand-orange-rgb),0.16);
  border: 1px solid rgba(var(--brand-navy-rgb),0.18);
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--muted);
  margin: 12px 0 18px;
}
.demo-limit-box strong { color: #f6fff9; }
.field-label {
  display: block;
  font-weight: 900;
  color: #f6fff9;
  margin: 18px 0 8px;
}
.topic-toggle {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 0 10px;
  padding: 14px 16px;
  border: 1px solid rgba(var(--brand-orange-rgb),0.46);
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
  color: var(--brand-cream);
  font-weight: 950;
  box-shadow: 0 16px 32px rgba(var(--brand-orange-rgb),0.22);
}
.topic-toggle-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  transition: transform 180ms ease;
}
.topic-toggle[aria-expanded="true"] .topic-toggle-icon { transform: rotate(180deg); }
.topic-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 12px 0 18px;
}
.topic-grid.collapsed {
  display: none;
}
.topic-grid button {
  min-height: 66px;
  text-align: left;
  color: var(--text);
  background: rgba(247, 252, 255, 0.09);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px 13px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.16);
}
.topic-grid button span { font-weight: 900; line-height: 1.15; }
.topic-grid button:hover {
  border-color: rgba(var(--brand-orange-rgb),0.44);
  background: rgba(var(--brand-orange-rgb),0.16);
}
.topic-grid .wide {
  grid-column: 1 / -1;
  text-align: center;
  min-height: 52px;
  background: rgba(var(--brand-orange-rgb),0.10);
  border-color: rgba(var(--brand-orange-rgb),0.24);
}

.status-row {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: center;
  justify-items: center;
  gap: 5px;
  margin-bottom: 18px;
}
.pill {
  display: inline-flex;
  justify-content: center;
  white-space: nowrap;
  border-radius: 999px;
  border: 1px solid rgba(247,252,255,0.12);
  padding: 5px 6px;
  background: rgba(var(--brand-navy-rgb),0.07);
  color: #f6fff9;
  font-weight: 850;
  font-size: clamp(0.52rem, 2.15cqw, 0.62rem);
  letter-spacing: -0.015em;
}
.pill.risk { background: rgba(var(--brand-orange-rgb),0.13); color: #ffc1aa; }
.pill.candidate { background: rgba(var(--brand-navy-rgb),0.08); color: #d6f1ff; }
.pill.muted { color: var(--muted); background: rgba(234,248,255,0.08); }

.answer-card {
  background: rgba(247, 252, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(20px, 4vw, 34px);
}
.speak-answer-button {
  width: 100%;
  margin: 2px 0 18px;
  border: 1px solid rgba(var(--brand-orange-rgb),0.45);
  border-radius: 999px;
  background: rgba(var(--brand-orange-rgb),0.14);
  color: var(--brand-cream);
  font-weight: 850;
  box-shadow: 0 14px 28px rgba(var(--brand-orange-rgb),0.12);
}
.speak-answer-button:hover,
.speak-answer-button.speaking {
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
  color: var(--brand-cream);
}
.answer-block {
  color: var(--muted);
  font-size: 1.04rem;
  margin-bottom: 16px;
}
.reassurance {
  color: var(--text);
  font-size: 1.16rem;
  font-weight: 750;
}
.next-step {
  border-left: 5px solid var(--accent);
  background: rgba(var(--brand-orange-rgb),0.16);
  padding: 16px 18px;
  border-radius: 16px;
  margin: 18px 0;
  font-weight: 800;
}
.checklist-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  margin: 20px 0;
}
.action-options {
  background: rgba(var(--brand-orange-rgb),0.055);
  border: 1px solid rgba(var(--brand-navy-rgb),0.13);
  border-radius: 20px;
  padding: 14px;
  margin: 20px 0;
}
.action-options h3 { margin-top: 0; }
.action-option-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.action-option-card {
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  border-radius: 16px;
  background: rgba(247, 252, 255, 0.08);
  border: 1px solid rgba(var(--brand-navy-rgb),0.14);
  padding: 13px 14px;
  min-height: 86px;
  box-shadow: none;
}
.action-option-card strong,
.action-option-card span { display: block; }
.action-option-card strong { color: #f6fff9; margin-bottom: 5px; }
.action-option-card span { color: var(--muted); font-size: 0.88rem; line-height: 1.35; }
.action-option-card.selected {
  border-color: rgba(var(--brand-orange-rgb),0.55);
  background: rgba(var(--brand-orange-rgb),0.12);
}
.action-option-detail {
  margin-top: 14px;
  background: rgba(247, 252, 255, 0.10);
  border: 1px solid rgba(var(--brand-navy-rgb),0.10);
  border-radius: 16px;
  padding: 16px;
}
.action-option-detail h4 { margin: 0 0 6px; }
.action-option-detail p { color: var(--muted); margin: 0 0 12px; }
ol { margin: 0; padding-left: 22px; }
li + li { margin-top: 8px; }
.context-info {
  background: linear-gradient(135deg, rgba(247,252,255,0.10), rgba(18,57,47,0.42));
  border: 1px solid rgba(var(--brand-navy-rgb),0.17);
  border-radius: 18px;
  padding: 16px;
  margin: 18px 0;
}
.context-info h3 { margin: 0 0 8px; color: #f6fff9; }
.context-info p { margin: 0 0 10px; color: var(--text); line-height: 1.45; }
.context-info ul { margin: 0 0 10px; padding-left: 20px; color: var(--muted); }
.context-info-calm {
  color: var(--brand-orange-dark) !important;
  font-size: 0.94rem;
  font-weight: 650;
}
.resources-wrap {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin: 22px 0;
}
.video-wrap {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin: 22px 0;
}
.video-wrap h3 { margin-bottom: 10px; }
.video-card {
  overflow: hidden;
  background: linear-gradient(145deg, rgba(var(--brand-orange-rgb),0.14), rgba(247,252,255,0.08));
  border: 1px solid rgba(var(--brand-orange-rgb),0.30);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(0,0,0,0.18);
}
.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: #12392f;
  aspect-ratio: 16 / 9;
}
.video-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
}
.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,57,47,0.06), rgba(18,57,47,0.46));
}
.video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  color: #fffaf2;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
  box-shadow: 0 16px 36px rgba(0,0,0,0.28);
  font-size: 1.45rem;
  line-height: 1;
  padding-left: 3px;
}
.video-copy {
  display: grid;
  gap: 7px;
  padding: 15px;
}
.video-kicker {
  width: fit-content;
  color: #ffc1aa;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.video-copy strong { color: #f6fff9; line-height: 1.22; }
.video-copy span { color: var(--muted); font-size: 0.92rem; }
.video-copy p { margin: 2px 0 0; color: var(--muted); font-size: 0.92rem; line-height: 1.4; }
.video-copy small { color: #ffc1aa; font-size: 0.8rem; line-height: 1.35; }
.video-embed {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #12392f;
}
.resources-wrap h3 { margin-bottom: 6px; }
.resource-intro {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.resource-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.resource-card {
  display: grid;
  gap: 7px;
  text-decoration: none;
  color: inherit;
  background: rgba(247, 252, 255, 0.08);
  border: 1px solid rgba(var(--brand-navy-rgb),0.15);
  border-radius: 16px;
  padding: 14px;
}
.resource-card:hover {
  border-color: rgba(var(--brand-orange-rgb),0.50);
  background: rgba(var(--brand-orange-rgb),0.06);
}
.resource-card strong { color: #f6fff9; }
.resource-card span { color: var(--muted); font-size: 0.92rem; line-height: 1.35; }
.resource-card small { color: #ffc1aa; font-size: 0.82rem; line-height: 1.35; }
.safety-note {
  background: var(--panel-2);
  color: #ffc1aa;
  border: 1px solid rgba(var(--brand-orange-rgb),0.2);
  border-radius: 18px;
  padding: 15px 16px;
}
.feedback {
  margin-top: 20px;
  background: rgba(247, 252, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
}
.feedback-buttons button:hover { background: rgba(247, 252, 255, 0.10); }

.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.review-cards {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.review-card {
  border: 1px solid var(--line);
  background: rgba(247, 252, 255, 0.10);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 14px 35px rgba(54,44,35,0.08);
}

.active-template-card {
  border-color: rgba(var(--brand-orange-rgb),0.26);
  background: linear-gradient(135deg, rgba(var(--brand-orange-rgb),0.09), #fff 58%);
}

.inactive-template-card {
  opacity: 0.78;
  background: rgba(234,248,255,0.06);
}

.review-card h3 {
  margin: 0;
}

.review-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.review-badges, .review-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.review-actions {
  margin-top: 14px;
}

.review-action {
  color: #f6fff9;
  background: rgba(235, 250, 241, 0.08);
  border: 1px solid rgba(var(--brand-navy-rgb),0.22);
  padding: 10px 13px;
}

.review-action.primary-lite {
  color: #fffaf2;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
  box-shadow: 0 10px 22px rgba(var(--brand-orange-rgb),0.22);
}

.sample-box {
  background: rgba(234,248,255,0.08);
  border-radius: 14px;
  padding: 12px 14px;
}

.template-draft {
  margin-top: 14px;
  background: rgba(var(--brand-orange-rgb),0.16);
  border: 1px solid rgba(var(--brand-navy-rgb),0.14);
  border-radius: 16px;
  padding: 14px;
}

.template-draft h4 {
  margin: 0 0 8px;
}

.template-draft ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.sample-box ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.learning-box {
  margin-top: 20px;
  background: rgba(var(--brand-orange-rgb),0.06);
  border: 1px solid rgba(var(--brand-navy-rgb),0.16);
  border-radius: 22px;
  padding: 20px;
}
.learning-box h3 { color: #f6fff9; }
.learning-box p { color: var(--muted); margin-bottom: 0; }
.review-box { background: rgba(var(--brand-orange-rgb),0.06); }
.review-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.review-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(247, 252, 255, 0.08);
  color: var(--muted);
}
.review-list strong { color: var(--text); }
.review-list span { font-size: 0.9rem; }

.emergency {
  border-color: rgba(var(--brand-orange-rgb),0.32);
  background: rgba(var(--brand-orange-rgb),0.06);
}
.emergency-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--danger);
  color: white;
  font-weight: 1000;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.emergency-box {
  background: var(--danger-soft);
  border: 1px solid rgba(var(--brand-orange-rgb),0.30);
  border-radius: 20px;
  padding: 18px;
  color: #ffc1aa;
}

@media (max-width: 640px) {
  .shell { width: min(100% - 32px, 960px); padding: 12px 0; }
  .hero, .panel { border-radius: 22px; padding: 24px; }
  .hero { min-height: calc(100vh - 18px); }
  .brand-lockup { align-items: center; gap: 12px; }
  .brand-main { gap: 10px; }
  .brand-logo { width: 68px; height: 68px; }
  .badge { margin-bottom: 0; }
  .actions button, .feedback-buttons button { width: 100%; justify-content: center; }
  .topic-grid { grid-template-columns: 1fr; }
  .topic-grid .wide { grid-column: auto; }
  .action-option-grid, .resource-grid { grid-template-columns: 1fr; }
  .action-options { padding: 14px; }
  .section-head { flex-direction: column; }
}
