:root {
  color-scheme: light;
  --color-petrol: #0a5c7b;
  --color-petrol-dark: #06455e;
  --color-petrol-deep: #063748;
  --color-petrol-light: #dff0f3;
  --color-orange: #f39200;
  --color-orange-dark: #9b5100;
  --color-cream: #faf8f5;
  --color-cream-deep: #f2eee7;
  --color-white: #ffffff;
  --color-ink: #19343e;
  --color-body: #4e6269;
  --color-muted: #62757b;
  --color-border: #d7e2e2;
  --color-blue-light: #e8f4fa;
  --color-green: #27684f;
  --color-green-light: #e7f4ed;
  --color-yellow-light: #fff7df;
  --color-pink: #963951;
  --color-pink-light: #fcebf0;
  --shadow-small: 0 8px 22px rgba(14, 56, 67, 0.08);
  --shadow-medium: 0 18px 50px rgba(14, 56, 67, 0.13);
  --shadow-large: 0 28px 80px rgba(7, 45, 57, 0.2);
  --radius-small: 12px;
  --radius-medium: 20px;
  --radius-large: 32px;
  --font-display: "Trebuchet MS", "Aptos Display", "Segoe UI", sans-serif;
  --font-body: "Segoe UI", "Aptos", Arial, sans-serif;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--color-cream);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body:has(dialog[open]) {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--color-white);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--color-petrol-deep);
}

::selection {
  background: #ffd79d;
  color: var(--color-petrol-deep);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.025em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 5.35rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

p {
  color: var(--color-body);
}

button svg,
a svg,
.topic-icon svg,
.why-icon svg,
.gentle-note svg,
.mini-tip svg,
.help-dialog-icon svg {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: 110px;
  scroll-margin-top: 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;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--color-white);
  color: var(--color-petrol-dark);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--color-petrol);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 26px;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: #bfe7ed;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--color-orange);
  color: #2f220d;
  box-shadow: 0 10px 28px rgba(243, 146, 0, 0.24);
}

.button-primary:hover {
  background: #ffa51d;
  box-shadow: 0 13px 32px rgba(243, 146, 0, 0.33);
}

.button-secondary {
  border-color: var(--color-petrol);
  background: var(--color-petrol);
  color: var(--color-white);
}

.button-light {
  background: var(--color-white);
  color: var(--color-petrol-dark);
  box-shadow: var(--shadow-small);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.07);
  color: var(--color-white);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.13);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
  text-decoration: none;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.brand-name span {
  color: var(--color-orange);
}

.brand-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.34);
}

.brand-context {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.83rem;
}

.hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.1), transparent 27%),
    radial-gradient(circle at 9% 82%, rgba(243, 146, 0, 0.12), transparent 25%),
    linear-gradient(135deg, var(--color-petrol-dark), var(--color-petrol) 68%, #117693);
  color: var(--color-white);
}

.hero::after {
  position: absolute;
  right: -4%;
  bottom: -155px;
  left: -4%;
  height: 210px;
  border-radius: 50% 50% 0 0;
  background: var(--color-cream);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 660px;
  align-items: center;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  gap: 50px;
  padding-top: 55px;
  padding-bottom: 115px;
}

.hero-content {
  max-width: 690px;
}

.hero h1 {
  max-width: 670px;
  margin-bottom: 24px;
  color: var(--color-white);
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 33px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions,
.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-reassurance {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.hero-reassurance svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--color-orange);
  stroke-width: 1.8;
}

.hero-visual svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 45px rgba(1, 37, 49, 0.22));
}

.hero-blob {
  fill: rgba(223, 240, 243, 0.11);
}

.hero-route {
  fill: none;
  stroke: rgba(255, 255, 255, 0.55);
  stroke-dasharray: 6 11;
  stroke-linecap: round;
  stroke-width: 3;
}

.route-dot {
  fill: var(--color-orange);
  stroke: rgba(255, 255, 255, 0.82);
  stroke-width: 5;
}

.route-dot-two {
  fill: #7bc5a5;
}

.route-dot-three {
  fill: #f0d570;
}

.hero-card > rect:first-child,
.hero-card-main > rect:first-child {
  fill: var(--color-white);
}

.hero-card-main {
  filter: drop-shadow(0 16px 22px rgba(4, 42, 55, 0.18));
}

.card-line {
  fill: #dbe6e6;
}

.card-line-title {
  fill: var(--color-petrol);
}

.card-check {
  fill: #e4f2ea;
}

.card-tick {
  fill: none;
  stroke: var(--color-green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.card-button {
  fill: var(--color-orange);
}

.hero-card-calendar rect {
  fill: var(--color-white);
}

.hero-card-calendar path {
  fill: none;
  stroke: var(--color-petrol);
  stroke-linecap: round;
  stroke-width: 3;
}

.hero-card-calendar circle {
  fill: #d9e5e5;
}

.hero-card-calendar .calendar-active {
  fill: var(--color-orange);
}

.hero-bubble path:first-child {
  fill: #fce8c9;
}

.hero-bubble path:last-child {
  fill: none;
  stroke: var(--color-orange-dark);
  stroke-linecap: round;
  stroke-width: 5;
}

.hero-sparkles path,
.hero-sparkles circle {
  fill: var(--color-orange);
}

.system-map-section {
  position: relative;
  z-index: 3;
  margin-top: -80px;
}

.system-map {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(10, 92, 123, 0.1);
  border-radius: var(--radius-large);
  background: var(--color-white);
  box-shadow: var(--shadow-medium);
  grid-template-columns: 0.88fr 1.65fr;
}

.system-map-intro {
  padding: 36px 38px;
  background: var(--color-yellow-light);
}

.system-map-intro .eyebrow {
  margin-bottom: 10px;
  font-size: 0.69rem;
}

.system-map-intro h2 {
  margin-bottom: 8px;
  font-size: 1.7rem;
}

.system-map-intro p:last-child {
  margin-bottom: 0;
  font-size: 0.93rem;
}

.system-map-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.system-item {
  display: flex;
  min-width: 0;
  gap: 14px;
  padding: 35px 25px;
  border-left: 1px solid var(--color-border);
}

.system-number {
  padding-top: 2px;
  color: var(--color-orange-dark);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
}

.system-item h3 {
  margin-bottom: 7px;
  color: var(--color-petrol-dark);
  font-size: 1.05rem;
}

.system-item p {
  margin-bottom: 0;
  font-size: 0.86rem;
  line-height: 1.5;
}

.section-dismissal {
  padding-top: 135px;
  padding-bottom: 80px;
}

.dismissal-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  gap: 76px;
}

.dismissal-intro {
  padding-top: 20px;
}

.dismissal-intro h2 {
  max-width: 560px;
}

.dismissal-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.dismissal-scope {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 28px;
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.dismissal-scope svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 2px;
  fill: none;
  stroke: var(--color-green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.dismissal-path {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  background: var(--color-white);
  box-shadow: var(--shadow-small);
}

.dismissal-steps {
  margin: 0;
  padding: 14px 32px 0;
  list-style: none;
}

.dismissal-steps li {
  display: grid;
  position: relative;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 18px;
  padding: 25px 0;
  border-bottom: 1px solid var(--color-border);
}

.dismissal-steps li:last-child {
  border-bottom: 0;
}

.dismissal-number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-yellow-light);
  color: var(--color-orange-dark);
  font-family: var(--font-display);
  font-weight: 800;
}

.dismissal-steps li:nth-child(2) .dismissal-number {
  background: var(--color-petrol-light);
  color: var(--color-petrol);
}

.dismissal-steps li:nth-child(3) .dismissal-number {
  background: var(--color-green-light);
  color: var(--color-green);
}

.dismissal-time {
  margin-bottom: 5px;
  color: var(--color-orange-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.dismissal-steps h3,
.dismissal-handoff h3 {
  margin-bottom: 7px;
  font-size: 1.2rem;
}

.dismissal-steps p:last-child,
.dismissal-handoff p:last-child {
  margin-bottom: 0;
}

.dismissal-steps p:not(.dismissal-time),
.dismissal-handoff p:not(.dismissal-time) {
  font-size: 0.9rem;
  line-height: 1.55;
}

.dismissal-warning {
  margin-top: 12px;
  padding-left: 12px;
  border-left: 3px solid var(--color-orange);
  color: var(--color-ink);
}

.dismissal-handoff {
  display: grid;
  align-items: center;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 18px;
  padding: 25px 32px;
  background: linear-gradient(135deg, var(--color-petrol-light), #f2f8f7);
}

.dismissal-handoff-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: var(--color-white);
  color: var(--color-petrol);
  box-shadow: var(--shadow-small);
}

.dismissal-handoff-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.dismissal-handoff .button {
  white-space: nowrap;
}

.section-start {
  padding-top: 80px;
}

.start-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.8fr) minmax(540px, 1.2fr);
  gap: 80px;
}

.section-lede {
  max-width: 650px;
  font-size: 1.08rem;
}

.gentle-note {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 30px;
  padding: 20px;
  border-left: 4px solid var(--color-orange);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
  background: var(--color-yellow-light);
}

.gentle-note svg {
  width: 24px;
  height: 24px;
  color: var(--color-orange-dark);
}

.gentle-note p {
  margin-bottom: 0;
  font-size: 0.93rem;
}

.graduate-note {
  margin-top: 12px;
  background: var(--color-green-light);
}

.graduate-note a {
  color: var(--color-petrol-dark);
  font-weight: 800;
  text-underline-offset: 3px;
}

.checklist-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  background: var(--color-white);
  box-shadow: var(--shadow-medium);
}

.checklist-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 30px;
  background: linear-gradient(135deg, var(--color-petrol-light), #f1f8f8);
}

.progress-ring {
  --progress: 0deg;
  position: relative;
  display: grid;
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--color-orange) var(--progress), rgba(10, 92, 123, 0.14) 0);
}

.progress-ring[data-completed="1"] {
  --progress: 72deg;
}

.progress-ring[data-completed="2"] {
  --progress: 144deg;
}

.progress-ring[data-completed="3"] {
  --progress: 216deg;
}

.progress-ring[data-completed="4"] {
  --progress: 288deg;
}

.progress-ring[data-completed="5"] {
  --progress: 360deg;
}

.progress-ring::before {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--color-white);
  content: "";
}

.progress-ring span {
  position: relative;
  z-index: 1;
  color: var(--color-petrol-dark);
  font-size: 0.84rem;
  font-weight: 800;
}

.checklist-kicker {
  margin-bottom: 2px;
  color: var(--color-petrol);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.checklist-header h3 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.checklist {
  margin: 0;
  padding: 0 30px;
  list-style: none;
}

.checklist li {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--color-border);
}

.checklist li:last-child {
  border-bottom: 0;
}

.checklist label {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  gap: 15px;
  padding-block: 13px;
  cursor: pointer;
}

.checklist input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.custom-checkbox {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid #9bb2b7;
  border-radius: 8px;
  background: var(--color-white);
  color: var(--color-white);
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.custom-checkbox svg {
  width: 16px;
  height: 16px;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.checklist input:focus-visible + .custom-checkbox {
  outline: 3px solid var(--color-orange);
  outline-offset: 3px;
}

.checklist input:checked + .custom-checkbox {
  border-color: var(--color-green);
  background: var(--color-green);
  transform: rotate(-2deg);
}

.checklist input:checked + .custom-checkbox svg {
  opacity: 1;
  transform: scale(1);
}

.checklist input:checked ~ .checklist-copy strong {
  color: var(--color-muted);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.checklist-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.checklist-copy strong {
  color: var(--color-ink);
  line-height: 1.35;
}

.checklist-copy small {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.checklist li > a,
.checklist li > button {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--color-petrol);
  cursor: pointer;
  text-decoration: none;
}

.checklist li > a:hover,
.checklist li > button:hover {
  background: var(--color-petrol-light);
}

.checklist-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 30px;
  border-top: 1px solid var(--color-border);
  background: #fbfcfb;
}

.checklist-footer p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  font-size: 0.75rem;
}

.checklist-footer svg {
  width: 16px;
  height: 16px;
}

.text-button,
.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: var(--color-petrol);
  font-weight: 750;
  line-height: 1.35;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.text-button {
  padding: 8px 0;
  font-size: 0.77rem;
  text-decoration: underline;
}

.text-link svg,
.card-link svg {
  transition: transform 160ms ease;
}

.text-link:hover svg,
.card-link:hover svg {
  transform: translateX(4px);
}

.section-timeline {
  background: var(--color-white);
}

.section-heading {
  margin-bottom: 55px;
}

.centered-heading {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.centered-heading > p:last-child,
.split-heading > p {
  margin-bottom: 0;
  font-size: 1.03rem;
}

.timeline {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(6, 1fr);
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 25px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: #cddbdc;
  content: "";
}

.timeline-item {
  position: relative;
  padding: 0 22px;
}

.timeline-marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  margin: 0 auto 23px;
  place-items: center;
  border: 6px solid var(--color-white);
  border-radius: 50%;
  background: var(--color-petrol-light);
  box-shadow: 0 0 0 2px #bcd3d7;
  color: var(--color-petrol-dark);
  font-family: var(--font-display);
  font-weight: 800;
}

.timeline-now .timeline-marker {
  background: var(--color-orange);
  box-shadow: 0 0 0 2px var(--color-orange);
  color: #2e230f;
}

.timeline-early .timeline-marker {
  background: var(--color-green-light);
  box-shadow: 0 0 0 2px #8abfa7;
  color: var(--color-green);
}

.timeline-time {
  margin-bottom: 8px;
  color: var(--color-orange-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-item h3 {
  min-height: 2.7em;
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.timeline-item > p:not(.timeline-time) {
  min-height: 8em;
  margin-bottom: 16px;
  font-size: 0.89rem;
}

.timeline-item .text-link {
  font-size: 0.84rem;
}

.section-topics {
  background: var(--color-cream);
}

.split-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
}

.split-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.topic-card {
  --topic-accent: var(--color-petrol);
  --topic-soft: var(--color-petrol-light);
  position: relative;
  display: flex;
  min-height: 350px;
  flex-direction: column;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  background: var(--color-white);
  box-shadow: 0 5px 16px rgba(14, 56, 67, 0.035);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.topic-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--topic-accent);
  content: "";
}

.topic-card:hover {
  border-color: color-mix(in srgb, var(--topic-accent) 30%, var(--color-border));
  box-shadow: var(--shadow-medium);
  transform: translateY(-5px);
}

.accent-blue {
  --topic-accent: #236a89;
  --topic-soft: var(--color-blue-light);
}

.accent-orange {
  --topic-accent: var(--color-orange-dark);
  --topic-soft: #fff0dc;
}

.accent-green {
  --topic-accent: var(--color-green);
  --topic-soft: var(--color-green-light);
}

.accent-yellow {
  --topic-accent: #805700;
  --topic-soft: var(--color-yellow-light);
}

.accent-pink {
  --topic-accent: var(--color-pink);
  --topic-soft: var(--color-pink-light);
}

.topic-topline {
  display: flex;
  min-height: 30px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.topic-deadline {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--topic-soft);
  color: var(--topic-accent);
}

.topic-system {
  color: var(--color-muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topic-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 16px;
  background: var(--topic-soft);
  color: var(--topic-accent);
}

.topic-icon svg {
  width: 26px;
  height: 26px;
}

.topic-card h3 {
  color: var(--color-petrol-dark);
}

.topic-card > p {
  margin-bottom: 25px;
  font-size: 0.94rem;
}

.topic-card .card-link {
  margin-top: auto;
  color: var(--topic-accent);
  font-size: 0.88rem;
}

.section-joblog {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(78, 171, 183, 0.18), transparent 28%),
    radial-gradient(circle at 0 65%, rgba(243, 146, 0, 0.09), transparent 26%),
    var(--color-petrol-deep);
  color: var(--color-white);
}

.section-joblog::before {
  position: absolute;
  top: 130px;
  right: -70px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.guide-library-header,
.guide-accordion {
  position: relative;
  z-index: 1;
}

.guide-library-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 45px;
  margin-bottom: 42px;
}

.guide-library-header > div {
  max-width: 780px;
}

.guide-library-header h2 {
  color: var(--color-white);
}

.guide-library-header p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.guide-library-count {
  flex: 0 0 auto;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-accordion {
  display: grid;
  gap: 16px;
}

.guide-panel {
  overflow: clip;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.075);
  scroll-margin-top: 12px;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.guide-panel[open] {
  border-color: rgba(255, 255, 255, 0.27);
  background: rgba(255, 255, 255, 0.105);
  box-shadow: 0 24px 60px rgba(1, 25, 33, 0.22);
}

.guide-panel > summary {
  display: grid;
  min-height: 112px;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  color: var(--color-white);
  cursor: pointer;
  grid-template-columns: 58px minmax(0, 1fr) 26px;
  list-style: none;
  transition: background-color 160ms ease;
}

.guide-panel > summary::-webkit-details-marker {
  display: none;
}

.guide-panel > summary:hover {
  background: rgba(255, 255, 255, 0.06);
}

.guide-summary-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 16px;
  background: var(--color-orange);
  color: #34250e;
}

.guide-summary-icon svg {
  width: 25px;
  height: 25px;
}

.guide-summary-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.guide-summary-copy small {
  margin-bottom: 3px;
  color: #ffd08b;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.guide-summary-copy strong {
  font-family: var(--font-display);
  font-size: 1.28rem;
  letter-spacing: -0.02em;
}

.guide-summary-copy > span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.79rem;
}

.guide-summary-chevron {
  width: 22px;
  height: 22px;
  transition: transform 180ms ease;
}

.guide-panel[open] .guide-summary-chevron {
  transform: rotate(90deg);
}

.guide-panel-body {
  padding: 52px 34px 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(1, 31, 41, 0.22);
}

.guide-image-placeholder {
  color: var(--color-white);
}

.guide-placeholder-visual {
  display: grid;
  min-height: 240px;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 28px;
  border: 1px dashed rgba(255, 255, 255, 0.36);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045)),
    repeating-linear-gradient(-45deg, transparent 0 13px, rgba(255, 255, 255, 0.025) 13px 26px);
  text-align: center;
}

.guide-placeholder-visual svg {
  width: 34px;
  height: 34px;
  margin-bottom: 7px;
  color: #ffd08b;
}

.guide-placeholder-visual strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.guide-placeholder-visual span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.83rem;
}

.inline-guide-footer {
  max-width: 1040px;
  margin: 25px auto 0;
  padding: 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.07);
}

.inline-guide-note {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
}

.inline-guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.inline-guide-back {
  color: var(--color-white);
  font-size: 0.8rem;
}

.inline-guide-back svg {
  transform: rotate(180deg);
}

.joblog-header {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 45px;
  margin-bottom: 40px;
}

.joblog-header > div {
  max-width: 750px;
}

.joblog-header h2 {
  color: var(--color-white);
}

.joblog-header p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.joblog-why {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 65px;
  padding: 26px 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.075);
}

.why-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  background: var(--color-orange);
  color: #34250e;
}

.why-icon svg {
  width: 25px;
  height: 25px;
}

.joblog-why h3 {
  margin-bottom: 7px;
  color: var(--color-white);
}

.joblog-why p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.joblog-why strong {
  color: var(--color-white);
}

.visual-guide {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.visual-guide::before {
  position: absolute;
  top: 15px;
  bottom: 30px;
  left: 28px;
  width: 2px;
  background: linear-gradient(var(--color-orange), rgba(255, 255, 255, 0.12));
  content: "";
}

.guide-step {
  position: relative;
  padding-bottom: 32px;
  padding-left: 88px;
}

.guide-number {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 7px solid var(--color-petrol-deep);
  border-radius: 50%;
  background: var(--color-orange);
  color: #33250f;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
}

.guide-content {
  display: grid;
  align-items: center;
  gap: 34px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.08);
  grid-template-columns: minmax(210px, 0.7fr) minmax(0, 1.3fr);
}

.guide-step:nth-child(even) .guide-content {
  background: rgba(255, 255, 255, 0.105);
}

.guide-label {
  margin-bottom: 7px;
  color: var(--color-orange-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guide-copy .guide-label {
  color: #ffc46b;
}

.guide-copy h3 {
  color: var(--color-white);
  font-size: 1.45rem;
}

.guide-copy > p:not(.guide-label) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.94rem;
}

.guide-copy strong {
  color: var(--color-white);
}

.mini-tip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 9px 12px;
  border-radius: 10px;
  background: rgba(243, 146, 0, 0.13);
  color: #ffd28d;
  font-size: 0.79rem;
}

.mini-tip svg {
  width: 17px;
  height: 17px;
}

.login-illustration {
  display: flex;
  min-height: 190px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 30px;
  border-radius: 14px;
  background: linear-gradient(145deg, #edf7f5, #ffffff);
  color: var(--color-petrol-dark);
}

.login-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
}

.login-lock {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-petrol-light);
}

.login-lock svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.login-button {
  padding: 10px 15px;
  border-radius: 8px;
  background: #09836f;
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 750;
}

.screenshot-frame {
  min-width: 0;
  margin: 0;
}

.image-zoom {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 13px;
  background: var(--color-white);
  box-shadow: 0 15px 35px rgba(1, 26, 34, 0.24);
  cursor: zoom-in;
}

.image-zoom img {
  width: 100%;
  height: auto;
  transition: transform 220ms ease;
}

.image-zoom span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(6, 55, 72, 0.91);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.image-zoom:hover img {
  transform: scale(1.015);
}

.screenshot-frame figcaption {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
}

.joblog-bottom-grid {
  display: grid;
  max-width: 1040px;
  margin: 45px auto 0;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
}

.shortcut-card,
.joblog-rhythm {
  border-radius: var(--radius-medium);
}

.shortcut-card {
  display: grid;
  align-items: center;
  gap: 25px;
  padding: 28px;
  background: var(--color-white);
  grid-template-columns: 0.65fr 1.35fr;
}

.shortcut-image {
  display: grid;
  min-height: 120px;
  place-items: center;
  padding: 15px;
  border-radius: 13px;
  background: #edf3f1;
}

.shortcut-image img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.shortcut-card h3,
.joblog-rhythm h3 {
  color: var(--color-petrol-dark);
}

.shortcut-card p:last-child {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.joblog-rhythm {
  padding: 28px;
  background: var(--color-yellow-light);
  color: var(--color-ink);
}

.joblog-rhythm .eyebrow {
  margin-bottom: 10px;
}

.joblog-rhythm ul {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.joblog-rhythm li {
  display: grid;
  padding: 10px 0;
  border-bottom: 1px solid #e7d8b2;
  grid-template-columns: 92px 1fr;
  gap: 12px;
}

.joblog-rhythm li span {
  color: var(--color-orange-dark);
  font-size: 0.77rem;
  font-weight: 800;
}

.joblog-rhythm li p {
  margin-bottom: 0;
  font-size: 0.82rem;
}

.joblog-rhythm .text-link {
  font-size: 0.79rem;
}

.screenshot-note {
  max-width: 850px;
  margin: 35px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.73rem;
  text-align: center;
}

/* Den lyse variant gør de seks billedvejledninger lettere at skimme. */
.section-guide-library {
  padding-block: 96px;
  background:
    radial-gradient(circle at 8% 0, rgba(10, 92, 123, 0.075), transparent 29%),
    radial-gradient(circle at 96% 90%, rgba(39, 104, 79, 0.055), transparent 27%),
    linear-gradient(180deg, #f8faf9, #eef4f1);
  color: var(--color-ink);
}

.section-guide-library::before {
  top: -150px;
  right: -110px;
  width: 330px;
  height: 330px;
  border-color: rgba(10, 92, 123, 0.08);
}

.section-guide-library .eyebrow-light {
  color: var(--guide-accent, var(--color-petrol));
}

.guide-library-header {
  margin-bottom: 32px;
}

.guide-library-header h2 {
  color: var(--color-ink);
}

.guide-library-header p:last-child {
  color: var(--color-body);
}

.guide-library-count {
  border-color: var(--color-border);
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-petrol-dark);
  box-shadow: 0 5px 16px rgba(14, 56, 67, 0.06);
}

.guide-accordion {
  align-items: start;
  gap: 14px 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-panel {
  --guide-accent: var(--color-petrol);
  --guide-soft: var(--color-petrol-light);
  --guide-number-ink: var(--color-white);
  border-color: #d5e1df;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 5px 18px rgba(14, 56, 67, 0.055);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

#trin-meld-ledig {
  --guide-accent: var(--color-petrol);
  --guide-soft: #e3f1f4;
}

#trin-krav {
  --guide-accent: #26718f;
  --guide-soft: var(--color-blue-light);
}

#trin-joblog {
  --guide-accent: #a75a00;
  --guide-soft: #fff0dc;
}

#trin-cv {
  --guide-accent: var(--color-green);
  --guide-soft: var(--color-green-light);
}

#trin-ferie {
  --guide-accent: #8a6500;
  --guide-soft: var(--color-yellow-light);
  --guide-number-ink: #3f3109;
}

#trin-sygdom {
  --guide-accent: var(--color-pink);
  --guide-soft: var(--color-pink-light);
}

.guide-panel:hover {
  border-color: #bfcfcd;
  box-shadow: 0 9px 25px rgba(14, 56, 67, 0.085);
}

.guide-panel[open] {
  border-color: #bfd1ce;
  background: var(--color-white);
  box-shadow: 0 24px 55px rgba(14, 56, 67, 0.13);
  grid-column: 1 / -1;
  order: -1;
}

.guide-panel > summary {
  min-height: 98px;
  gap: 16px;
  padding: 18px 20px;
  color: var(--color-ink);
  grid-template-columns: 48px minmax(0, 1fr) 32px;
}

.guide-panel > summary:hover,
.guide-panel[open] > summary {
  background: linear-gradient(90deg, var(--guide-soft), rgba(255, 255, 255, 0.96) 58%);
}

.guide-summary-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--guide-soft);
  color: var(--guide-accent);
}

.guide-summary-icon svg {
  width: 23px;
  height: 23px;
}

.guide-summary-copy small {
  color: var(--guide-accent);
  font-size: 0.66rem;
  line-height: 1.4;
}

.guide-summary-copy strong {
  color: var(--color-ink);
  font-size: 1.14rem;
}

.guide-summary-copy > span {
  color: var(--color-muted);
}

.guide-summary-chevron {
  width: 30px;
  height: 30px;
  padding: 7px;
  border-radius: 50%;
  background: var(--guide-soft);
  color: var(--guide-accent);
}

.guide-panel-body {
  padding: 46px 34px 36px;
  border-top-color: #e0e8e6;
  background: #fbfcfb;
  color: var(--color-ink);
}

.joblog-header {
  margin-bottom: 32px;
}

.joblog-header h2,
.joblog-why h3,
.guide-copy h3 {
  color: var(--color-ink);
}

.joblog-header p:last-child,
.joblog-why p,
.guide-copy > p:not(.guide-label) {
  color: var(--color-body);
}

.joblog-why strong,
.guide-copy strong {
  color: var(--color-ink);
}

.joblog-why {
  margin-bottom: 45px;
  border-color: #dbe6e3;
  background: var(--guide-soft);
}

.why-icon {
  background: var(--color-white);
  color: var(--guide-accent);
  box-shadow: 0 5px 15px rgba(14, 56, 67, 0.08);
}

.visual-guide::before {
  background: linear-gradient(var(--guide-accent), #d8e3e0);
}

.guide-number {
  border-color: #fbfcfb;
  background: var(--guide-accent);
  color: var(--guide-number-ink);
}

.guide-step {
  padding-bottom: 24px;
}

.guide-content {
  border-color: #dce6e4;
  background: var(--color-white);
  box-shadow: 0 10px 28px rgba(14, 56, 67, 0.055);
}

.guide-step:nth-child(even) .guide-content {
  background: #f7faf8;
}

.guide-copy .guide-label,
.guide-label {
  color: var(--guide-accent);
}

.guide-image-placeholder {
  color: var(--color-ink);
}

.guide-placeholder-visual {
  border-color: #b9cbc7;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(239, 245, 242, 0.9)),
    repeating-linear-gradient(-45deg, transparent 0 13px, rgba(10, 92, 123, 0.025) 13px 26px);
}

.guide-placeholder-visual svg {
  color: var(--guide-accent);
}

.guide-placeholder-visual span,
.screenshot-frame figcaption,
.screenshot-note {
  color: var(--color-muted);
}

.image-zoom {
  box-shadow: 0 12px 28px rgba(14, 56, 67, 0.14);
}

.inline-guide-footer {
  border-color: #dbe5e3;
  background: #f4f7f5;
}

.inline-guide-note {
  color: var(--color-body);
}

.inline-guide-back {
  color: var(--color-petrol-dark);
}

.guide-panel-body .button-light {
  border-color: var(--color-border);
  box-shadow: none;
}

.section-situation {
  background: #edf3ef;
}

.situation-heading {
  display: grid;
  align-items: center;
  gap: 50px;
  margin-bottom: 32px;
  padding: 45px 50px;
  border-radius: var(--radius-large);
  background: linear-gradient(135deg, var(--color-petrol-dark), var(--color-petrol));
  color: var(--color-white);
  grid-template-columns: 1.2fr 0.8fr;
  box-shadow: var(--shadow-medium);
}

.situation-heading h2 {
  color: var(--color-white);
}

.situation-heading > div:first-child > p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.situation-quicklinks {
  display: grid;
  gap: 10px;
}

.situation-quicklinks a,
.situation-quicklinks button {
  display: grid;
  min-height: 58px;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  cursor: pointer;
  grid-template-columns: 25px 1fr 20px;
  text-align: left;
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}

.situation-quicklinks a:hover,
.situation-quicklinks button:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(3px);
}

.situation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.situation-card {
  position: relative;
  min-height: 235px;
  padding: 27px 27px 82px;
  border: 1px solid #d3e0da;
  border-radius: var(--radius-medium);
  background: var(--color-white);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.situation-card:hover {
  box-shadow: var(--shadow-small);
  transform: translateY(-3px);
}

.situation-index {
  display: block;
  margin-bottom: 22px;
  color: var(--color-orange-dark);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
}

.situation-card h3 {
  color: var(--color-petrol-dark);
}

.situation-card p {
  margin-bottom: 0;
  font-size: 0.89rem;
}

.situation-card > button {
  position: absolute;
  left: 27px;
  bottom: 22px;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 0;
  border-radius: 999px;
  background: var(--color-petrol-light);
  color: var(--color-petrol);
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.situation-card > button svg { width: 16px; height: 16px; }

.situation-card > button:hover {
  background: var(--color-petrol);
  color: var(--color-white);
  transform: translateX(3px);
}

.section-support {
  background: var(--color-white);
}

.support-card {
  display: grid;
  min-height: 440px;
  overflow: hidden;
  border-radius: 38px;
  background: linear-gradient(135deg, #0a526c, #0b7088);
  color: var(--color-white);
  grid-template-columns: 0.9fr 1.1fr;
  box-shadow: var(--shadow-large);
}

.support-copy {
  align-self: center;
  padding: 65px 70px 65px 25px;
}

.support-copy h2 {
  color: var(--color-white);
}

.support-copy > p:not(.eyebrow):not(.support-hours) {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.04rem;
}

.support-hours {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
}

.support-visual {
  position: relative;
  min-height: 440px;
  overflow: hidden;
}

.support-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.support-orbit-one {
  top: 25px;
  left: -70px;
  width: 390px;
  height: 390px;
}

.support-orbit-two {
  top: 95px;
  left: 0;
  width: 250px;
  height: 250px;
}

.support-person {
  position: absolute;
  bottom: 0;
  left: 95px;
  width: 225px;
  height: 330px;
}

.support-head {
  position: absolute;
  z-index: 2;
  top: 7px;
  left: 70px;
  width: 87px;
  height: 97px;
  border-radius: 48% 48% 46% 46%;
  background: #f1c19f;
  box-shadow: inset 0 18px 0 #4b302b;
}

.support-head::after {
  position: absolute;
  bottom: 20px;
  left: 31px;
  width: 28px;
  height: 12px;
  border-bottom: 3px solid #744237;
  border-radius: 50%;
  content: "";
}

.support-body {
  position: absolute;
  bottom: -35px;
  left: 16px;
  width: 195px;
  height: 255px;
  border-radius: 95px 95px 25px 25px;
  background: #efaa37;
  transform: rotate(-2deg);
}

.support-wave {
  position: absolute;
  z-index: 1;
  top: 93px;
  right: -8px;
  width: 46px;
  height: 145px;
  border-radius: 24px;
  background: #f1c19f;
  transform: rotate(-34deg);
  transform-origin: bottom;
}

.support-wave::before {
  position: absolute;
  top: -23px;
  left: -4px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #f1c19f;
  content: "";
}

.support-bubble {
  position: absolute;
  z-index: 3;
  top: 58px;
  right: 20px;
  max-width: 180px;
  padding: 14px 17px;
  border-radius: 18px 18px 18px 4px;
  background: var(--color-white);
  color: var(--color-petrol-dark);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.35;
  box-shadow: var(--shadow-small);
}

.section-faq {
  background: var(--color-cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
}

.faq-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-intro > p:last-of-type {
  margin-bottom: 28px;
}

.faq-list {
  border-top: 1px solid var(--color-border);
}

.faq-list details {
  border-bottom: 1px solid var(--color-border);
}

.faq-list summary {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 20px 5px;
  color: var(--color-petrol-dark);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 750;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(90deg);
}

.faq-list details > div {
  padding: 0 50px 23px 5px;
}

.faq-list details p {
  margin-bottom: 0;
}

.site-footer {
  padding-top: 75px;
  background: var(--color-petrol-deep);
  color: var(--color-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr 1.2fr;
  gap: 50px;
}

.brand-footer {
  margin-bottom: 18px;
}

.footer-brand > p,
.footer-note p {
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.84rem;
}

.site-footer h2 {
  margin: 5px 0 16px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer li a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  text-decoration: none;
}

.site-footer li a:hover {
  color: var(--color-white);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 60px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p,
.footer-bottom a {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.75rem;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}

.footer-bottom a svg {
  width: 15px;
  height: 15px;
  transform: rotate(-90deg);
}

.help-fab {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: calc(24px + env(safe-area-inset-bottom));
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 7px 18px 7px 7px;
  border: 0;
  border-radius: 999px;
  background: var(--color-orange);
  color: #30230e;
  font-weight: 800;
  box-shadow: 0 12px 35px rgba(9, 52, 64, 0.25);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.help-fab:hover {
  box-shadow: 0 15px 40px rgba(9, 52, 64, 0.34);
  transform: translateY(-3px);
}

.help-fab-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-petrol-dark);
}

dialog {
  padding: 0;
  border: 0;
}

dialog::backdrop {
  background: rgba(3, 32, 42, 0.72);
  backdrop-filter: blur(5px);
}

.topic-dialog {
  width: min(760px, calc(100% - 30px));
  max-height: calc(100dvh - 32px);
  overflow: hidden;
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: var(--shadow-large);
}

.dialog-shell {
  position: relative;
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
}

.dialog-close {
  position: absolute;
  z-index: 3;
  top: 17px;
  right: 17px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(10, 92, 123, 0.08);
  color: var(--color-petrol-dark);
  cursor: pointer;
}

.dialog-close:hover {
  background: rgba(10, 92, 123, 0.15);
}

.topic-dialog-header {
  padding: 42px 72px 32px 42px;
  background: linear-gradient(140deg, var(--color-petrol-light), #f8fbfa);
}

.topic-dialog-header .eyebrow {
  margin-bottom: 11px;
}

.topic-dialog-header h2 {
  margin-bottom: 13px;
  color: var(--color-petrol-dark);
  font-size: clamp(1.8rem, 5vw, 2.65rem);
}

.topic-dialog-header > p:not(.eyebrow) {
  margin-bottom: 20px;
}

.dialog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.dialog-meta span {
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-petrol-dark);
  font-size: 0.73rem;
  font-weight: 750;
  box-shadow: 0 2px 8px rgba(14, 56, 67, 0.06);
}

.topic-dialog-body {
  padding: 34px 42px 42px;
}

.dialog-important {
  margin-bottom: 30px;
  padding: 18px 20px;
  border-left: 4px solid var(--color-orange);
  border-radius: 0 12px 12px 0;
  background: var(--color-yellow-light);
}

.dialog-important strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-petrol-dark);
}

.dialog-important p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.topic-dialog-body h3 {
  margin-bottom: 18px;
  color: var(--color-petrol-dark);
}

.dialog-steps {
  margin: 0 0 30px;
  padding: 0;
  counter-reset: dialog-step;
  list-style: none;
}

.dialog-steps li {
  position: relative;
  min-height: 58px;
  padding: 0 0 22px 54px;
  counter-increment: dialog-step;
}

.dialog-steps li::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-petrol);
  color: var(--color-white);
  content: counter(dialog-step);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
}

.dialog-steps li:not(:last-child)::after {
  position: absolute;
  top: 34px;
  bottom: 0;
  left: 16px;
  width: 2px;
  background: var(--color-border);
  content: "";
}

.dialog-steps strong {
  display: block;
  margin-bottom: 3px;
  color: var(--color-ink);
}

.dialog-steps p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.dialog-note {
  margin-bottom: 28px;
  padding: 16px 18px;
  border-radius: 12px;
  background: var(--color-cream);
  color: var(--color-body);
  font-size: 0.84rem;
}

.dialog-note:empty,
.dialog-important:empty,
.dialog-actions:empty {
  display: none;
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dialog-actions .button {
  font-size: 0.88rem;
}

.image-dialog {
  width: min(1240px, calc(100% - 24px));
  max-width: none;
  border-radius: 18px;
  background: #071f27;
  color: var(--color-white);
  box-shadow: var(--shadow-large);
}

.image-dialog-shell {
  padding: 14px;
}

.image-dialog-header {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 5px 10px 12px;
}

.image-dialog-header p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.87rem;
}

.dialog-close-image {
  position: static;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

.image-dialog-stage {
  position: relative;
  display: grid;
  min-height: 260px;
  max-height: calc(100vh - 150px);
  max-height: calc(100dvh - 150px);
  overflow: hidden;
  place-items: center;
  border-radius: 12px;
  background: #e9eeee;
}

.image-pan {
  width: 100%;
  max-height: calc(100vh - 150px);
  max-height: calc(100dvh - 150px);
  overflow: auto;
  overscroll-behavior: contain;
}

.image-dialog-stage img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 180px);
  max-height: calc(100dvh - 180px);
  margin: auto;
  object-fit: contain;
}

.image-nav {
  position: fixed;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(6, 55, 72, 0.9);
  color: var(--color-white);
  cursor: pointer;
}

.image-nav-prev {
  left: max(22px, calc(50% - 610px));
  transform: rotate(180deg);
}

.image-nav-next {
  right: max(22px, calc(50% - 610px));
}

.image-counter {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.74rem;
  text-align: center;
}

.help-dialog {
  width: min(520px, calc(100% - 28px));
  border-radius: 25px;
  background: var(--color-white);
  box-shadow: var(--shadow-large);
}

.help-dialog-shell {
  position: relative;
  padding: 38px;
}

.help-dialog-icon {
  display: grid;
  width: 55px;
  height: 55px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 18px;
  background: var(--color-yellow-light);
  color: var(--color-orange-dark);
}

.help-dialog-icon svg {
  width: 28px;
  height: 28px;
}

.help-dialog h2 {
  margin-right: 35px;
  font-size: 2rem;
}

.help-options {
  display: grid;
  gap: 9px;
  margin-top: 28px;
}

.help-options a {
  display: grid;
  min-height: 68px;
  align-items: center;
  gap: 13px;
  padding: 11px 15px;
  border: 1px solid var(--color-border);
  border-radius: 13px;
  text-decoration: none;
  grid-template-columns: 26px 1fr 20px;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.help-options a:hover {
  border-color: #aac7cc;
  background: var(--color-petrol-light);
}

.help-options a > svg:first-child {
  color: var(--color-petrol);
}

.help-options span {
  display: flex;
  flex-direction: column;
}

.help-options strong {
  color: var(--color-petrol-dark);
}

.help-options small {
  color: var(--color-muted);
}

.help-dialog-note {
  margin: 22px 0 0;
  padding: 13px;
  border-radius: 10px;
  background: var(--color-yellow-light);
  font-size: 0.8rem;
}

.toast {
  position: fixed;
  z-index: 200;
  bottom: 26px;
  left: 50%;
  max-width: min(440px, calc(100% - 30px));
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--color-petrol-deep);
  color: var(--color-white);
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: var(--shadow-medium);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 25px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 400px;
  }

  .system-map {
    grid-template-columns: 1fr;
  }

  .system-map-intro {
    display: grid;
    align-items: end;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
  }

  .system-map-intro .eyebrow,
  .system-map-intro h2 {
    grid-column: 1;
  }

  .system-map-intro p:last-child {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .start-grid {
    gap: 45px;
    grid-template-columns: 0.78fr 1.22fr;
  }

  .dismissal-grid {
    gap: 45px;
    grid-template-columns: minmax(0, 0.72fr) minmax(540px, 1.28fr);
  }

  .dismissal-handoff {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .dismissal-handoff .button {
    grid-column: 2;
    justify-self: start;
  }

  .timeline-item {
    padding-inline: 13px;
  }

  .timeline-item > p:not(.timeline-time) {
    min-height: 9.5em;
  }

  .support-copy {
    padding-right: 45px;
  }
}

@media (max-width: 940px) {
  .hero-grid {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) 330px;
  }

  .hero-visual {
    align-self: center;
  }

  .start-grid {
    grid-template-columns: 1fr;
  }

  .dismissal-grid {
    grid-template-columns: 1fr;
  }

  .dismissal-intro {
    max-width: 720px;
    padding-top: 0;
  }

  .start-intro {
    max-width: 720px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .timeline::before {
    top: 20px;
    bottom: 30px;
    left: 25px;
    width: 2px;
    height: auto;
  }

  .timeline-item {
    min-height: 180px;
    padding: 0 0 40px 82px;
  }

  .timeline-marker {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
  }

  .timeline-item h3,
  .timeline-item > p:not(.timeline-time) {
    min-height: 0;
  }

  .timeline-item > p:not(.timeline-time) {
    max-width: 620px;
  }

  .topic-grid,
  .situation-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-heading {
    gap: 35px;
  }

  .guide-content {
    grid-template-columns: 1fr;
  }

  .guide-copy {
    max-width: 700px;
  }

  .situation-heading {
    grid-template-columns: 1fr;
  }

  .support-card {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .support-person {
    left: 45px;
  }

  .support-bubble {
    right: 10px;
    max-width: 150px;
  }

  .faq-grid {
    gap: 50px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 740px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding-block: 80px;
  }

  .brand-context,
  .brand-divider {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 5px;
    padding-top: 65px;
    padding-bottom: 125px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .hero-visual {
    width: min(100%, 500px);
    margin-inline: auto;
  }

  .system-map-section {
    margin-top: -60px;
  }

  .system-map-intro {
    display: block;
    padding: 28px;
  }

  .system-map-items {
    grid-template-columns: 1fr;
  }

  .system-item {
    padding: 22px 25px;
    border-top: 1px solid var(--color-border);
    border-left: 0;
  }

  .section-start {
    padding-top: 70px;
  }

  .section-dismissal {
    padding-top: 100px;
    padding-bottom: 70px;
  }

  .split-heading {
    grid-template-columns: 1fr;
  }

  .topic-grid,
  .situation-grid {
    grid-template-columns: 1fr;
  }

  .topic-card {
    min-height: 320px;
  }

  .guide-library-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .guide-accordion {
    grid-template-columns: 1fr;
  }

  .guide-panel[open] {
    order: 0;
  }

  .guide-panel > summary {
    min-height: 102px;
    padding: 20px 22px;
  }

  .guide-panel-body {
    padding: 38px 20px 30px;
  }

  .guide-placeholder-visual {
    min-height: 205px;
  }

  .joblog-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .joblog-why {
    padding: 22px;
  }

  .visual-guide::before {
    left: 22px;
  }

  .guide-step {
    padding-left: 65px;
  }

  .guide-number {
    width: 46px;
    height: 46px;
    border-width: 5px;
  }

  .guide-content {
    padding: 21px;
  }

  .login-illustration {
    min-height: 160px;
    flex-wrap: wrap;
    padding: 23px;
  }

  .joblog-bottom-grid {
    grid-template-columns: 1fr;
  }

  .shortcut-card {
    grid-template-columns: 1fr;
  }

  .shortcut-image img {
    width: auto;
    max-width: 275px;
  }

  .situation-heading {
    padding: 35px 28px;
  }

  .support-card {
    grid-template-columns: 1fr;
  }

  .support-visual {
    min-height: 360px;
  }

  .support-person {
    left: 50%;
    transform: translateX(-65%);
  }

  .support-bubble {
    right: max(20px, calc(50% - 220px));
  }

  .support-copy {
    padding: 40px 28px 50px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .help-fab {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
  }

  .image-nav {
    position: absolute;
    top: auto;
    bottom: 12px;
  }

  .image-nav-prev {
    left: 12px;
  }

  .image-nav-next {
    right: 12px;
  }

  .image-pan {
    text-align: left;
  }

  .image-dialog-stage img {
    width: 900px;
    max-width: none;
    max-height: none;
    margin: 0;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15.5px;
  }

  .hero-actions,
  .support-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .support-actions .button,
  .dismissal-actions .button {
    width: 100%;
  }

  .dismissal-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .dismissal-actions .text-link {
    justify-content: center;
    padding-block: 8px;
  }

  .dismissal-steps {
    padding-right: 20px;
    padding-left: 20px;
  }

  .dismissal-steps li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 13px;
  }

  .dismissal-number {
    width: 38px;
    height: 38px;
  }

  .dismissal-handoff {
    align-items: start;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 24px 20px;
  }

  .dismissal-handoff-icon {
    width: 38px;
    height: 38px;
  }

  .dismissal-handoff .button {
    width: 100%;
    grid-column: 1 / -1;
  }

  .hero-reassurance {
    align-items: flex-start;
  }

  .hero-visual {
    margin-top: -10px;
  }

  .system-map-section {
    margin-top: -45px;
  }

  .system-map,
  .checklist-card,
  .support-card {
    border-radius: 22px;
  }

  .checklist-header,
  .checklist-footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .checklist {
    padding-inline: 20px;
  }

  .checklist li {
    min-height: 94px;
  }

  .checklist-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .topic-card {
    padding: 24px;
  }

  .topic-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .guide-panel {
    border-radius: 19px;
  }

  .guide-panel > summary {
    min-height: 94px;
    gap: 13px;
    padding: 17px;
    grid-template-columns: 46px minmax(0, 1fr) 20px;
  }

  .guide-summary-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .guide-summary-copy strong {
    font-size: 1.05rem;
  }

  .guide-summary-copy > span {
    font-size: 0.72rem;
  }

  .guide-panel-body {
    padding: 30px 12px 24px;
  }

  .joblog-why {
    flex-direction: column;
  }

  .guide-step {
    padding-bottom: 24px;
    padding-left: 54px;
  }

  .guide-content {
    padding: 18px;
  }

  .guide-number {
    width: 42px;
    height: 42px;
  }

  .visual-guide::before {
    left: 20px;
  }

  .login-illustration {
    flex-direction: column;
  }

  .guide-placeholder-visual {
    min-height: 175px;
    padding: 20px;
  }

  .inline-guide-footer {
    padding: 22px 18px;
  }

  .inline-guide-actions .button {
    width: 100%;
  }

  .joblog-rhythm li {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .situation-card {
    min-height: 220px;
  }

  .support-visual {
    min-height: 325px;
  }

  .support-person {
    bottom: -30px;
    transform: translateX(-60%) scale(0.86);
  }

  .support-bubble {
    top: 36px;
    right: 18px;
    max-width: 140px;
    font-size: 0.78rem;
  }

  .faq-list summary {
    min-height: 72px;
    font-size: 1rem;
  }

  .topic-dialog-header {
    padding: 72px 23px 27px;
  }

  .topic-dialog-body {
    padding: 28px 23px 32px;
  }

  .dialog-actions {
    flex-direction: column;
  }

  .dialog-actions .button {
    width: 100%;
  }

  .help-dialog-shell {
    padding: 72px 22px 28px;
  }

  .help-dialog h2 {
    margin-right: 0;
  }

  .help-fab > span:last-child {
    display: none;
  }

  .help-fab {
    width: 52px;
    padding: 7px;
  }

  .image-dialog-shell {
    padding: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .hero-visual,
  .hero-actions,
  .help-fab,
  dialog,
  .image-zoom span,
  .support-visual,
  .button,
  button {
    display: none !important;
  }

  body,
  .section-joblog,
  .site-footer {
    background: #fff !important;
    color: #000 !important;
  }

  .guide-panel:not([open]) > .guide-panel-body {
    display: block !important;
  }

  .guide-panel > summary,
  .guide-library-count {
    display: none !important;
  }

  .hero {
    min-height: 0;
    background: #fff;
    color: #000;
  }

  .hero::after {
    display: none;
  }

  .hero-grid {
    min-height: 0;
    padding-block: 30px;
    grid-template-columns: 1fr;
  }

  .hero h1,
  .joblog-header h2,
  .guide-copy h3 {
    color: #000;
  }

  .hero p,
  .joblog-header p:last-child,
  .guide-copy > p:not(.guide-label),
  .screenshot-frame figcaption {
    color: #333;
  }

  .section {
    padding-block: 35px;
  }

  .topic-card,
  .guide-content,
  .situation-card {
    break-inside: avoid;
    box-shadow: none;
  }
}
