.spawnpk-starter-guide {
  --starter-accent: #f0a72f;
  --starter-accent-bright: #ffc760;
  --starter-blue: #64a4d8;
  --starter-green: #63ca9b;
  --starter-red: #ef7e73;
  --starter-surface: #0a1220;
  --starter-surface-raised: #0d1929;
  --starter-border: rgba(129, 166, 204, 0.22);
  overflow-x: clip;
}

.spawnpk-starter-guide main {
  overflow: clip;
}

.spawnpk-starter-guide .skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 6px;
  color: #07101c;
  background: var(--starter-accent-bright);
  font-weight: 900;
  transform: translateY(-160%);
}

.spawnpk-starter-guide .skip-link:focus {
  transform: translateY(0);
}

.starter-hero {
  position: relative;
  border-bottom: 1px solid rgba(129, 166, 204, 0.16);
  background:
    radial-gradient(circle at 78% 30%, rgba(240, 167, 47, 0.13), transparent 25%),
    radial-gradient(circle at 92% 90%, rgba(49, 105, 157, 0.2), transparent 32%),
    linear-gradient(120deg, #070b14 0%, #09111e 56%, #0d1425 100%);
  isolation: isolate;
}

.starter-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(116, 147, 179, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116, 147, 179, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to right, transparent, #000 65%);
}

.starter-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  align-items: center;
  gap: clamp(44px, 7vw, 88px);
  min-height: 520px;
  padding-block: clamp(52px, 6vw, 72px);
}

.starter-hero__copy {
  max-width: 720px;
}

.starter-hero__copy .eyebrow {
  margin: 0 0 16px;
  color: var(--starter-accent-bright);
}

.starter-hero h1 {
  max-width: 18ch;
  margin: 0;
  color: #f6f8fc;
  font-size: clamp(40px, 4.7vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.starter-hero__lead {
  max-width: 65ch;
  margin: 24px 0 0;
  color: #afbed2;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.75;
}

.starter-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.starter-hero__quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 15px;
  margin-top: 18px;
}

.starter-hero__quick-links a {
  color: #9fb0c5;
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(159, 176, 197, 0.28);
  text-underline-offset: 4px;
}

.starter-hero__quick-links a:hover {
  color: var(--starter-accent-bright);
  text-decoration-color: currentColor;
}

.starter-hero__quick-links a:focus-visible {
  outline: 3px solid var(--starter-accent-bright);
  outline-offset: 3px;
  border-radius: 3px;
}

.starter-hero__verified {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 20px 0 0;
  color: #8fa3bc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.starter-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--starter-green);
  box-shadow: 0 0 0 4px rgba(99, 202, 155, 0.12);
}

.starter-hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 390px;
  border: 1px solid rgba(129, 166, 204, 0.26);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, rgba(35, 64, 95, 0.92), rgba(7, 13, 24, 0.9) 68%),
    #08111f;
  box-shadow:
    inset 0 0 0 18px rgba(11, 23, 39, 0.6),
    0 36px 90px rgba(0, 0, 0, 0.35);
}

.starter-hero__visual::before {
  content: "";
  position: absolute;
  inset: -22px;
  z-index: -1;
  border: 1px dashed rgba(240, 167, 47, 0.34);
  border-radius: 50%;
}

.starter-hero__visual img {
  width: min(58%, 230px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.45));
}

.starter-hero__route {
  position: absolute;
  right: 5%;
  bottom: 2%;
  left: 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  margin: 0;
  border: 1px solid rgba(240, 167, 47, 0.28);
  border-radius: 999px;
  padding: 9px 12px;
  list-style: none;
  color: #c4cfde;
  background: rgba(6, 12, 22, 0.92);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.starter-hero__route li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.starter-hero__route span {
  color: var(--starter-accent-bright);
}

.starter-layout {
  grid-template-columns: minmax(210px, 236px) minmax(0, 1fr);
  max-width: 1160px;
  gap: clamp(34px, 5vw, 58px);
}

.starter-toc nav {
  max-height: calc(100vh - 190px);
  overflow-y: auto;
  scrollbar-width: thin;
}

.starter-article {
  max-width: 820px;
}

.starter-article > section,
.starter-sources {
  scroll-margin-top: 132px;
}

.starter-article > .starter-section,
.starter-article > .guide-faq {
  margin-top: clamp(68px, 8vw, 92px);
  padding-top: 0;
}

.starter-section__heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.starter-section__heading .kicker {
  margin: 0 0 9px;
  color: var(--starter-accent-bright);
}

.starter-section__heading h2,
.starter-answer h2 {
  margin: 0;
  color: #f2f5fa;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.starter-section__heading > p:last-child {
  max-width: 68ch;
  margin: 14px 0 0;
  color: #aebace;
  font-size: 16px;
  line-height: 1.75;
}

.starter-answer {
  display: grid;
  grid-template-columns: minmax(210px, 0.68fr) minmax(0, 1.32fr);
  gap: 32px;
  border: 1px solid rgba(240, 167, 47, 0.28);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(240, 167, 47, 0.09), transparent 48%),
    rgba(10, 18, 32, 0.9);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.2);
}

.starter-answer .kicker {
  margin: 0 0 8px;
}

.starter-answer h2 {
  font-size: clamp(25px, 3vw, 34px);
}

.starter-answer > p {
  align-self: center;
  margin: 0;
  color: #c2ccda;
  font-size: 16px;
  line-height: 1.8;
}

.starter-answer strong {
  color: #fff;
}

.starter-route {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.starter-route li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border: 1px solid var(--starter-border);
  border-radius: 12px;
  padding: 18px 20px;
  background: linear-gradient(105deg, rgba(13, 25, 41, 0.96), rgba(8, 16, 28, 0.8));
}

.starter-route__number {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(240, 167, 47, 0.48);
  border-radius: 10px;
  color: var(--starter-accent-bright);
  background: rgba(240, 167, 47, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.starter-route h3,
.starter-mode-card h3,
.starter-feature-card h3,
.starter-mini-card h3,
.starter-buy-grid h3,
.starter-hour-grid h3,
.starter-readiness-grid h3,
.starter-interface-grid h3,
.starter-decision-card h3 {
  margin: 0;
  color: #eef3fa;
}

.starter-route p {
  margin: 6px 0 0;
  color: #a9b6c8;
  line-height: 1.65;
}

.starter-route__link {
  display: inline-flex;
  margin-top: 9px;
  color: var(--starter-accent-bright);
  font-size: 12px;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(255, 199, 96, 0.35);
  text-underline-offset: 3px;
}

.starter-route__link:hover {
  color: #ffe0a1;
  text-decoration-color: currentColor;
}

.starter-route__link:focus-visible {
  outline: 3px solid var(--starter-accent-bright);
  outline-offset: 3px;
  border-radius: 3px;
}

.starter-mode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.starter-mode-card {
  min-width: 0;
  border: 1px solid var(--starter-border);
  border-radius: 16px;
  padding: 26px;
  background: linear-gradient(145deg, rgba(14, 28, 46, 0.94), rgba(7, 15, 27, 0.94));
}

.starter-mode-card--accent {
  border-color: rgba(240, 167, 47, 0.34);
  background:
    linear-gradient(145deg, rgba(240, 167, 47, 0.08), transparent 52%),
    rgba(8, 17, 30, 0.96);
}

.starter-mode-card__tag,
.starter-feature-card__label,
.starter-buy-grid article > span,
.starter-interface-grid article > span,
.starter-command-callout__label {
  display: block;
  margin-bottom: 11px;
  color: #8eabc7;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.starter-mode-card h3 {
  font-size: 25px;
}

.starter-mode-card__stat {
  margin: 12px 0 0;
  color: var(--starter-accent-bright);
}

.starter-mode-card ul,
.starter-security ul,
.starter-readiness-grid ul {
  margin: 18px 0 0;
  padding-left: 19px;
  color: #abb8c9;
  line-height: 1.72;
}

.starter-mode-card li + li,
.starter-security li + li,
.starter-readiness-grid li + li {
  margin-top: 7px;
}

.starter-mode-card__decision {
  margin: 20px 0 0;
  border-top: 1px solid rgba(129, 166, 204, 0.16);
  padding-top: 17px;
  color: #d6deea;
  font-weight: 750;
  line-height: 1.6;
}

.starter-note {
  margin-top: 18px;
  border-left: 3px solid var(--starter-blue);
  border-radius: 0 10px 10px 0;
  padding: 16px 18px;
  color: #aebbd0;
  background: rgba(34, 72, 108, 0.15);
  line-height: 1.7;
}

.starter-note strong {
  color: #e9f0f8;
}

.starter-note--warning {
  border-left-color: var(--starter-accent);
  background: rgba(240, 167, 47, 0.08);
}

.starter-security {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 22px;
  border: 1px solid var(--starter-border);
  border-radius: 14px;
  padding: clamp(22px, 4vw, 30px);
  background: rgba(10, 20, 35, 0.86);
}

.starter-security__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(99, 202, 155, 0.38);
  border-radius: 12px;
  color: var(--starter-green);
  background: rgba(99, 202, 155, 0.08);
}

.starter-security h3 {
  margin: 0;
  color: #eff5fb;
  font-size: 23px;
}

.starter-security ul {
  margin-top: 12px;
}

.starter-inline-link {
  margin: 16px 0 0;
}

.starter-inline-link a {
  color: var(--starter-accent-bright);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(255, 199, 96, 0.45);
  text-underline-offset: 4px;
}

.starter-inline-link a:hover {
  color: #ffe0a1;
  text-decoration-color: currentColor;
}

.starter-inline-link a:focus-visible {
  outline: 3px solid var(--starter-accent-bright);
  outline-offset: 4px;
  border-radius: 3px;
}

.starter-command-callout {
  display: grid;
  grid-template-columns: minmax(150px, 0.5fr) minmax(0, 1.5fr);
  align-items: center;
  gap: 26px;
  margin-bottom: 20px;
  border: 1px solid rgba(240, 167, 47, 0.34);
  border-radius: 14px;
  padding: 18px 22px;
  background:
    linear-gradient(90deg, rgba(240, 167, 47, 0.12), transparent 58%),
    rgba(8, 16, 28, 0.95);
}

.starter-command-callout__label {
  margin-bottom: 5px;
  color: #ad8b4c;
}

.starter-command-callout code {
  color: var(--starter-accent-bright);
  font-size: 26px;
  font-weight: 900;
}

.starter-command-callout p {
  margin: 0;
  color: #c3cddd;
  line-height: 1.65;
}

.starter-event-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.starter-decision-card {
  position: relative;
  min-width: 0;
  border: 1px solid var(--starter-border);
  border-radius: 14px;
  padding: 24px;
  background: rgba(9, 19, 33, 0.9);
}

.starter-decision-card__step {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 15px;
  border: 1px solid rgba(240, 167, 47, 0.4);
  border-radius: 50%;
  color: var(--starter-accent-bright);
  font-size: 12px;
  font-weight: 900;
}

.starter-decision-card h3 {
  font-size: 20px;
}

.starter-decision-card p {
  margin: 12px 0 0;
  color: #aab7c9;
  line-height: 1.65;
}

.starter-decision-card strong {
  color: #e9eff7;
}

.starter-event-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.starter-event-process li {
  min-width: 0;
  border: 1px solid rgba(129, 166, 204, 0.16);
  border-radius: 9px;
  padding: 12px;
  color: #aab7c8;
  background: rgba(7, 14, 25, 0.72);
  font-size: 12px;
  font-weight: 720;
  line-height: 1.5;
}

.starter-event-process span {
  display: block;
  margin-bottom: 6px;
  color: var(--starter-accent-bright);
  font-weight: 900;
}

.starter-risk-banner {
  margin-top: 18px;
  border: 1px solid rgba(239, 126, 115, 0.3);
  border-radius: 10px;
  padding: 15px 18px;
  color: #c6b8ba;
  background: rgba(100, 35, 32, 0.13);
  line-height: 1.65;
}

.starter-risk-banner strong {
  color: #f1cac7;
}

.starter-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--starter-border);
  border-radius: 14px;
  background: rgba(8, 16, 28, 0.82);
}

.starter-table-wrap:focus-visible {
  outline: 3px solid var(--starter-accent-bright);
  outline-offset: 3px;
}

.starter-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  color: #b4c0d0;
  font-size: 14px;
  line-height: 1.55;
}

.starter-table caption {
  padding: 16px 18px;
  color: #e4ebf4;
  font-weight: 850;
  text-align: left;
}

.starter-table th,
.starter-table td {
  border-top: 1px solid rgba(129, 166, 204, 0.14);
  padding: 15px 17px;
  text-align: left;
  vertical-align: top;
}

.starter-table thead th {
  color: #8fa7c1;
  background: rgba(24, 42, 62, 0.42);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.starter-table tbody th {
  color: #e4eaf3;
}

.starter-tier,
.starter-readiness {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border: 1px solid;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.starter-tier--easy,
.starter-readiness--green {
  border-color: rgba(99, 202, 155, 0.38);
  color: #86ddb7;
  background: rgba(99, 202, 155, 0.08);
}

.starter-tier--medium,
.starter-readiness--gold {
  border-color: rgba(240, 167, 47, 0.4);
  color: var(--starter-accent-bright);
  background: rgba(240, 167, 47, 0.08);
}

.starter-tier--hard,
.starter-readiness--red {
  border-color: rgba(239, 126, 115, 0.42);
  color: #f1aaa3;
  background: rgba(239, 126, 115, 0.08);
}

.starter-fine-print {
  margin: 14px 0 0;
  color: #8798ad;
  font-size: 13px;
  line-height: 1.65;
}

.starter-card-grid {
  display: grid;
  gap: 13px;
  margin-top: 20px;
}

.starter-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.starter-mini-card {
  border: 1px solid rgba(129, 166, 204, 0.17);
  border-radius: 12px;
  padding: 19px;
  background: rgba(8, 16, 28, 0.68);
}

.starter-mini-card h3 {
  font-size: 17px;
}

.starter-mini-card p {
  margin: 9px 0 0;
  color: #9eacbf;
  font-size: 13px;
  line-height: 1.65;
}

.starter-vote-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--starter-border);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(9, 18, 31, 0.86);
}

.starter-vote-flow > div {
  min-width: 0;
  padding: 22px 18px;
}

.starter-vote-flow > div + div {
  border-left: 1px solid rgba(129, 166, 204, 0.16);
}

.starter-vote-flow span {
  color: var(--starter-accent-bright);
  font-size: 11px;
  font-weight: 900;
}

.starter-vote-flow h3 {
  margin: 10px 0 0;
  color: #eaf0f7;
  font-size: 16px;
}

.starter-vote-flow p {
  margin: 9px 0 0;
  color: #9eacbf;
  font-size: 13px;
  line-height: 1.65;
}

.starter-interface-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.starter-interface-grid article {
  min-width: 0;
  border: 1px solid var(--starter-border);
  border-radius: 12px;
  padding: 20px;
  background: rgba(9, 18, 31, 0.82);
}

.starter-interface-grid article > span {
  margin-bottom: 8px;
  color: var(--starter-accent);
}

.starter-interface-grid h3 {
  font-size: 17px;
}

.starter-interface-grid p {
  margin: 9px 0 0;
  color: #9fadc0;
  font-size: 13px;
  line-height: 1.65;
}

.starter-command-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.starter-command-strip > div {
  min-width: 0;
  border: 1px solid rgba(129, 166, 204, 0.16);
  border-radius: 9px;
  padding: 12px;
  background: rgba(7, 14, 25, 0.74);
  text-align: center;
}

.starter-command-strip code {
  display: block;
  color: var(--starter-accent-bright);
  font-weight: 900;
}

.starter-command-strip span {
  display: block;
  margin-top: 5px;
  color: #8698ae;
  font-size: 10px;
  line-height: 1.4;
}

.starter-economy-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.65fr) minmax(0, 1.35fr);
  gap: 18px;
}

.starter-economy-rule {
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(240, 167, 47, 0.28);
  border-radius: 14px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(240, 167, 47, 0.09), transparent 58%),
    rgba(8, 16, 28, 0.9);
}

.starter-economy-rule__number {
  color: var(--starter-accent-bright);
  font-size: 64px;
  font-weight: 950;
  line-height: 1;
}

.starter-economy-rule strong {
  color: #edf2f9;
  font-size: 18px;
  line-height: 1.35;
}

.starter-economy-rule p {
  margin: 8px 0 0;
  color: #98a8bc;
  font-size: 13px;
  line-height: 1.6;
}

.starter-check-sequence {
  display: grid;
  gap: 0;
  margin: 0;
  border: 1px solid var(--starter-border);
  border-radius: 14px;
  padding: 8px 24px;
  color: #a7b5c7;
  background: rgba(9, 18, 31, 0.82);
  line-height: 1.6;
}

.starter-check-sequence li {
  padding: 13px 0 13px 6px;
}

.starter-check-sequence li + li {
  border-top: 1px solid rgba(129, 166, 204, 0.14);
}

.starter-check-sequence strong {
  color: #e3eaf3;
}

.starter-upgrade-roadmap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.starter-upgrade-roadmap li {
  position: relative;
  min-width: 0;
  border-top: 2px solid rgba(240, 167, 47, 0.36);
  padding: 18px 18px 0 0;
}

.starter-upgrade-roadmap li::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  width: 12px;
  height: 12px;
  border: 2px solid var(--starter-accent);
  border-radius: 50%;
  background: #09121f;
}

.starter-upgrade-roadmap li > span {
  color: var(--starter-accent-bright);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.starter-upgrade-roadmap h3 {
  margin: 8px 0 0;
  color: #e9eff7;
  font-size: 17px;
}

.starter-upgrade-roadmap p {
  margin: 8px 0 0;
  color: #94a4b9;
  font-size: 12px;
  line-height: 1.6;
}

.starter-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.starter-feature-card {
  min-width: 0;
  border: 1px solid var(--starter-border);
  border-radius: 14px;
  padding: 23px;
  background:
    linear-gradient(150deg, rgba(42, 77, 111, 0.16), transparent 54%),
    rgba(8, 17, 30, 0.9);
}

.starter-feature-card__label {
  color: var(--starter-accent);
}

.starter-feature-card h3 {
  color: var(--starter-accent-bright);
  font-size: 24px;
}

.starter-feature-card p {
  margin: 14px 0 0;
  color: #a1afc2;
  font-size: 13px;
  line-height: 1.66;
}

.starter-feature-card strong {
  color: #e2e9f2;
}

.starter-hour-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.starter-hour-grid > article {
  min-width: 0;
  border: 1px solid var(--starter-border);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(9, 18, 31, 0.88);
}

.starter-hour-grid__head {
  border-bottom: 1px solid rgba(129, 166, 204, 0.17);
  padding: 20px 23px;
  background: rgba(29, 54, 80, 0.26);
}

.starter-hour-grid__head span {
  color: var(--starter-accent-bright);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.starter-hour-grid__head h3 {
  margin-top: 7px;
  font-size: 22px;
}

.starter-hour-grid ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 10px 23px 14px 46px;
  color: #a7b4c6;
}

.starter-hour-grid li {
  padding: 11px 0 11px 6px;
  line-height: 1.6;
}

.starter-hour-grid li + li {
  border-top: 1px solid rgba(129, 166, 204, 0.12);
}

.starter-hour-grid li::marker {
  color: var(--starter-accent);
  font-weight: 900;
}

.starter-hour-grid__caveat {
  margin: 0 23px 22px;
  border-top: 1px solid rgba(129, 166, 204, 0.12);
  padding-top: 15px;
  color: #8798ad;
  font-size: 12px;
  line-height: 1.6;
}

.starter-readiness-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.starter-readiness-grid > article {
  min-width: 0;
  border: 1px solid var(--starter-border);
  border-radius: 14px;
  padding: 22px;
  background: rgba(9, 18, 31, 0.86);
}

.starter-readiness-grid h3 {
  margin-top: 16px;
  font-size: 20px;
}

.starter-readiness-grid p {
  margin: 10px 0 0;
  color: #a1aec0;
  font-size: 13px;
  line-height: 1.65;
}

.starter-readiness-grid ul {
  margin-top: 13px;
  font-size: 12px;
}

.starter-pvp-guidance {
  margin-top: 17px;
  border: 1px solid rgba(239, 126, 115, 0.27);
  border-radius: 14px;
  padding: 24px;
  background: rgba(72, 29, 29, 0.12);
}

.starter-pvp-guidance h3 {
  margin: 0;
  color: #f0d6d3;
  font-size: 20px;
}

.starter-pvp-guidance > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 22px;
  margin-top: 16px;
}

.starter-pvp-guidance p {
  margin: 0;
  color: #b6aaad;
  font-size: 13px;
  line-height: 1.65;
}

.starter-pvp-guidance strong {
  color: #efd7d4;
}

.starter-buy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.starter-buy-grid article {
  min-width: 0;
  border: 1px solid var(--starter-border);
  border-radius: 12px;
  padding: 21px;
  background: rgba(8, 17, 30, 0.86);
}

.starter-buy-grid article > span {
  margin-bottom: 8px;
  color: var(--starter-accent);
}

.starter-buy-grid h3 {
  font-size: 19px;
}

.starter-buy-grid p {
  margin: 9px 0 0;
  color: #9eacbf;
  font-size: 13px;
  line-height: 1.65;
}

.starter-buy-grid a {
  color: var(--starter-accent-bright);
  font-weight: 800;
}

.starter-buy-grid a:focus-visible {
  outline: 3px solid var(--starter-accent-bright);
  outline-offset: 3px;
}

.starter-section--checklist {
  border: 1px solid rgba(240, 167, 47, 0.28);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 34px) !important;
  background:
    linear-gradient(140deg, rgba(240, 167, 47, 0.07), transparent 42%),
    rgba(8, 17, 30, 0.93);
}

.starter-checklist__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(190px, 0.6fr);
  gap: 28px;
  align-items: end;
}

.starter-checklist__heading .kicker {
  margin: 0 0 8px;
}

.starter-checklist__heading h2 {
  margin: 0;
  color: #f2f5fa;
  font-size: clamp(27px, 3.8vw, 38px);
  line-height: 1.13;
}

.starter-checklist__heading p {
  margin: 11px 0 0;
  color: #9baabd;
  line-height: 1.65;
}

.starter-checklist__progress > span {
  display: block;
  margin-bottom: 8px;
  color: #d9e1eb;
  font-size: 12px;
  font-weight: 850;
  text-align: right;
}

.starter-checklist__bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.starter-checklist__bar > span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--starter-accent), var(--starter-accent-bright));
  transition: width 180ms ease;
}

.starter-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.starter-checklist label {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-width: 0;
  min-height: 76px;
  border: 1px solid rgba(129, 166, 204, 0.18);
  border-radius: 10px;
  padding: 15px;
  color: #9eacbf;
  background: rgba(7, 15, 27, 0.74);
  cursor: pointer;
}

.starter-checklist label:has(input:checked) {
  border-color: rgba(99, 202, 155, 0.35);
  background: rgba(99, 202, 155, 0.06);
}

.starter-checklist input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--starter-accent);
}

.starter-checklist input:focus-visible {
  outline: 3px solid var(--starter-accent-bright);
  outline-offset: 3px;
}

.starter-checklist label > span {
  min-width: 0;
  font-size: 12px;
  line-height: 1.55;
}

.starter-checklist strong {
  display: block;
  margin-bottom: 3px;
  color: #e0e7f0;
  font-size: 14px;
}

.starter-checklist label:has(input:checked) strong {
  color: #a7e2c6;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.starter-checklist__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.starter-reset {
  min-height: 44px;
  border: 1px solid rgba(129, 166, 204, 0.26);
  border-radius: 8px;
  padding: 9px 14px;
  color: #b3c0d1;
  background: rgba(7, 15, 27, 0.74);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.starter-reset:hover {
  border-color: rgba(240, 167, 47, 0.42);
  color: #f2f5fa;
}

.starter-reset:focus-visible {
  outline: 3px solid var(--starter-accent-bright);
  outline-offset: 3px;
}

.starter-checklist__status {
  min-height: 20px;
  margin: 10px 0 0;
  color: #8fa1b7;
  font-size: 12px;
}

.starter-sources {
  margin-top: clamp(68px, 8vw, 92px);
}

.spawnpk-starter-guide :is(a, button, summary):focus-visible {
  scroll-margin-top: 140px;
}

@media (max-width: 1180px) {
  .starter-hero__inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
    gap: 48px;
  }

  .starter-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 38px;
  }
}

@media (max-width: 1024px) {
  .starter-hero__inner {
    min-height: 520px;
  }

  .starter-hero h1 {
    font-size: clamp(42px, 5.8vw, 60px);
  }

  .starter-layout {
    display: block;
    padding-top: 46px;
  }

  .starter-toc {
    position: static;
    margin-bottom: 46px;
  }

  .starter-toc nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-height: none;
    overflow: visible;
  }

  .starter-article {
    max-width: none;
  }

  .starter-vote-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .starter-vote-flow > div + div {
    border-left: 0;
  }

  .starter-vote-flow > div:nth-child(even) {
    border-left: 1px solid rgba(129, 166, 204, 0.16);
  }

  .starter-vote-flow > div:nth-child(n + 3) {
    border-top: 1px solid rgba(129, 166, 204, 0.16);
  }

  .starter-command-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .starter-hero__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 62px;
    padding-bottom: 90px;
  }

  .starter-hero__copy {
    max-width: 760px;
  }

  .starter-hero h1 {
    max-width: 17ch;
  }

  .starter-hero__visual {
    width: min(430px, 78vw);
    min-height: auto;
    aspect-ratio: 1;
    margin-inline: auto;
  }

  .starter-event-process,
  .starter-upgrade-roadmap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 0;
  }

  .starter-feature-grid,
  .starter-readiness-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .starter-card-grid--three,
  .starter-interface-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .starter-hero__inner {
    padding-top: 58px;
  }

  .starter-hero h1 {
    font-size: clamp(40px, 8vw, 56px);
  }

  .starter-toc nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .starter-answer,
  .starter-economy-layout,
  .starter-checklist__heading {
    grid-template-columns: minmax(0, 1fr);
  }

  .starter-mode-grid,
  .starter-hour-grid,
  .starter-buy-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .starter-checklist__progress > span {
    text-align: left;
  }

  .starter-pvp-guidance > div {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .spawnpk-starter-guide .shell {
    width: min(100% - 24px, 1120px);
  }

  .starter-hero__inner {
    gap: 52px;
    padding-block: 48px 74px;
  }

  .starter-hero__lead {
    font-size: 16px;
  }

  .starter-hero__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .starter-hero__actions .btn {
    width: 100%;
  }

  .starter-hero__visual {
    width: min(380px, 84vw);
  }

  .starter-hero__route {
    right: -3%;
    bottom: -4%;
    left: -3%;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 14px;
    border-radius: 12px;
  }

  .starter-toc {
    padding: 16px;
  }

  .starter-toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .starter-route li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }

  .starter-route__number {
    width: 42px;
    height: 42px;
  }

  .starter-event-grid,
  .starter-card-grid--three,
  .starter-interface-grid,
  .starter-checklist {
    grid-template-columns: minmax(0, 1fr);
  }

  .starter-command-callout {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .starter-vote-flow {
    grid-template-columns: minmax(0, 1fr);
  }

  .starter-vote-flow > div:nth-child(even) {
    border-left: 0;
  }

  .starter-vote-flow > div + div {
    border-top: 1px solid rgba(129, 166, 204, 0.16);
  }

  .starter-command-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .starter-checklist__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .starter-reset {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .starter-hero h1 {
    font-size: clamp(36px, 10.5vw, 46px);
  }

  .starter-hero__verified {
    align-items: flex-start;
    font-size: 10px;
  }

  .starter-hero__visual {
    width: min(310px, 82vw);
  }

  .starter-hero__route {
    font-size: 9px;
  }

  .starter-layout {
    padding-top: 32px;
  }

  .starter-toc nav {
    grid-template-columns: minmax(0, 1fr);
  }

  .starter-answer,
  .starter-mode-card,
  .starter-decision-card,
  .starter-feature-card,
  .starter-pvp-guidance,
  .starter-buy-grid article,
  .starter-section--checklist {
    padding: 20px !important;
  }

  .starter-security {
    grid-template-columns: minmax(0, 1fr);
  }

  .starter-event-process,
  .starter-upgrade-roadmap {
    grid-template-columns: minmax(0, 1fr);
  }

  .starter-upgrade-roadmap li {
    padding: 17px 0 7px 18px;
    border-top: 0;
    border-left: 2px solid rgba(240, 167, 47, 0.36);
  }

  .starter-upgrade-roadmap li::before {
    top: 20px;
    left: -7px;
  }

  .starter-command-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .starter-economy-rule {
    align-items: flex-start;
    flex-direction: column;
  }

  .starter-checklist label {
    min-height: 80px;
  }
}

@media (max-width: 380px) {
  .spawnpk-starter-guide .shell {
    width: min(100% - 18px, 1120px);
  }

  .starter-hero h1 {
    font-size: 34px;
  }

  .starter-hero__visual {
    width: min(274px, 80vw);
  }

  .starter-hero__route {
    right: -5%;
    left: -5%;
  }

  .starter-route h3,
  .starter-mode-card h3,
  .starter-feature-card h3 {
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  .spawnpk-starter-guide *,
  .spawnpk-starter-guide *::before,
  .spawnpk-starter-guide *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
