:root {
  --ink: #111827;
  --muted: #5f6876;
  --line: #d9dee8;
  --paper: #f6f7f9;
  --white: #ffffff;
  --blue: #1f8cff;
  --cyan: #3ed8ff;
  --orange: #f5a633;
  --graphite: #15181e;
  --soft-blue: #eaf5ff;
  --soft-orange: #fff3df;
}

@font-face {
  font-family: "DouyinMeihao";
  src: url("./assets/fonts/DouyinSansBold.otf") format("opentype");
  font-weight: 800 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: #e7ebf1;
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
  letter-spacing: 0;
}

body {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.a4-body {
  padding: 24px;
}

.sheet {
  width: 210mm;
  min-height: 297mm;
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 24px 80px rgba(22, 29, 45, 0.16);
  position: relative;
}

.sheet::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 140, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 140, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, black 0, transparent 54%);
}

.a4-hero {
  height: 128mm;
  position: relative;
  color: var(--white);
  background: var(--graphite);
  overflow: hidden;
}

.a4-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.a4-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 14, 20, 0.88) 0%, rgba(10, 14, 20, 0.64) 38%, rgba(10, 14, 20, 0.06) 72%),
    linear-gradient(180deg, rgba(10, 14, 20, 0.2), rgba(10, 14, 20, 0.54));
}

.a4-hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 18mm 16mm;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 136mm;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--white);
}

.brand-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--orange));
  box-shadow: 0 0 24px rgba(62, 216, 255, 0.64);
}

.kicker {
  margin: 0 0 16px;
  color: #9fe5ff;
  font-size: 13px;
  font-weight: 700;
}

.a4-title {
  margin: 0;
  font-size: 49px;
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
}

.a4-subtitle {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.75;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-tags span,
.pill {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
  color: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 700;
}

.sheet-main {
  position: relative;
  z-index: 1;
  padding: 11mm 14mm 13mm;
}

.top-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}

.section-label {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.role-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.88);
}

.role-card h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.22;
}

.role-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.74;
}

.qr-card {
  border: 1px solid #c9d5e5;
  border-radius: 8px;
  padding: 14px;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.qr-wrap {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  align-items: center;
}

.qr-wrap img {
  width: 88px;
  height: 88px;
  border-radius: 6px;
  border: 1px solid var(--line);
}

.qr-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  white-space: nowrap;
}

.qr-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.salary-panel {
  margin-top: 18px;
  border: 1px solid #cfd8e6;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
}

.salary-header,
.salary-grid {
  display: grid;
  grid-template-columns: 1fr 86px;
}

.salary-header {
  background: #111827;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.salary-header span {
  padding: 8px 12px;
}

.salary-grid > div,
.salary-grid > strong {
  min-height: 29px;
  padding: 7px 12px;
  border-top: 1px solid #edf1f6;
  font-size: 12px;
  line-height: 1.25;
}

.salary-grid > div {
  color: #293241;
}

.salary-grid > strong {
  color: #0f6fbd;
  text-align: right;
  white-space: nowrap;
}

.info-block {
  min-height: 142px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.9);
}

.info-block h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.info-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.info-block li {
  position: relative;
  padding-left: 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.48;
}

.info-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.a4-bottom {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
}

.process {
  border-radius: 8px;
  padding: 16px;
  background: var(--graphite);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.process::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -48px;
  width: 144px;
  height: 144px;
  border: 1px solid rgba(62, 216, 255, 0.26);
  border-radius: 50%;
}

.process h3 {
  margin: 0 0 12px;
  font-size: 17px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.step {
  border-top: 2px solid var(--orange);
  padding-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.45;
}

.step strong {
  display: block;
  color: var(--white);
  margin-bottom: 4px;
  font-size: 12px;
}

.footer-note {
  border: 1px solid #f1d49c;
  border-radius: 8px;
  padding: 14px;
  background: var(--soft-orange);
}

.footer-note h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.footer-note p {
  margin: 0;
  color: #7a5618;
  font-size: 12px;
  line-height: 1.6;
}

.print-hint {
  width: 210mm;
  margin: 12px auto 0;
  color: #687180;
  font-size: 12px;
}

.mobile-body {
  min-height: 100vh;
  background: #0f141b;
  color: var(--white);
  overflow-x: hidden;
}

.h5-shell {
  width: 100vw;
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  background: #f7f8fb;
  color: var(--ink);
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.h5-hero {
  min-height: 640px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #10151c;
}

.h5-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.h5-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(8, 12, 18, 0.5) 0%, rgba(8, 12, 18, 0.76) 52%, #10151c 100%),
    linear-gradient(90deg, rgba(8, 12, 18, 0.68), rgba(8, 12, 18, 0.12));
  pointer-events: none;
}

.h5-hero-inner {
  position: relative;
  z-index: 3;
  min-height: 640px;
  padding: 24px 30px 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.h5-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.h5-title {
  margin: 0;
  max-width: min(350px, calc(100vw - 64px));
  font-size: clamp(32px, 8.4vw, 39px);
  line-height: 1.02;
  font-weight: 900;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.h5-lead {
  margin: 18px 0 0;
  max-width: min(350px, calc(100vw - 64px));
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.72;
}

.h5-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
  max-width: min(360px, calc(100vw - 72px));
}

.button {
  min-height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}

.button.primary {
  background: var(--white);
  color: #10151c;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.h5-section {
  position: relative;
  padding: 28px 30px 28px 22px;
  overflow: hidden;
}

.h5-section.dark {
  background: #10151c;
  color: var(--white);
}

.h5-section h2 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.24;
}

.h5-section > p {
  max-width: min(360px, calc(100vw - 72px));
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.h5-section.dark > p {
  color: rgba(255, 255, 255, 0.66);
}

.cards {
  display: grid;
  gap: 10px;
  max-width: min(360px, calc(100vw - 72px));
}

.job-list {
  display: grid;
  gap: 10px;
  max-width: min(360px, calc(100vw - 72px));
}

.job-card {
  border: 1px solid #dfe5ee;
  border-radius: 8px;
  padding: 15px;
  background: var(--white);
  display: block;
}

.job-card strong {
  display: block;
  font-size: 16px;
  line-height: 1.35;
}

.job-card span {
  display: inline-block;
  margin: 9px 0 8px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: #0d71c8;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.job-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
}

.job-detail {
  border: 1px solid #dfe5ee;
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.job-detail summary {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: center;
  min-height: 76px;
  padding: 15px 42px 15px 15px;
  cursor: pointer;
  list-style: none;
}

.job-detail summary::-webkit-details-marker {
  display: none;
}

.job-detail summary::after {
  content: "+";
  position: absolute;
  right: 15px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #0d71c8;
  background: var(--soft-blue);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}

.job-detail[open] summary::after {
  content: "";
  display: none;
}

.job-detail[open] summary::before {
  content: "";
  position: absolute;
  right: 19px;
  top: 50%;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: #0d71c8;
  transform: translateY(-50%);
}

.job-detail summary strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
}

.job-detail summary em {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
}

.job-detail summary b {
  align-self: start;
  border-radius: 999px;
  background: var(--soft-blue);
  color: #0d71c8;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.job-detail-body {
  border-top: 1px solid #e8edf4;
  padding: 0 15px 16px;
}

.job-detail-body h3 {
  margin: 15px 0 8px;
  color: #13204a;
  font-size: 14px;
  line-height: 1.35;
}

.job-detail-body ol,
.job-detail-body ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 7px;
}

.job-detail-body li {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.h5-card {
  border: 1px solid #dfe5ee;
  border-radius: 8px;
  padding: 15px;
  background: var(--white);
}

.h5-card.dark-card {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
}

.h5-card h3 {
  margin: 0 0 7px;
  font-size: 16px;
}

.h5-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.h5-card.dark-card p {
  color: rgba(255, 255, 255, 0.64);
}

.skill-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: min(360px, calc(100vw - 72px));
}

.skill-tile {
  border: 1px solid #dfe5ee;
  border-radius: 8px;
  padding: 14px;
  background: var(--white);
}

.skill-tile strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.skill-tile span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.timeline {
  display: grid;
  gap: 12px;
  counter-reset: item;
  max-width: min(360px, calc(100vw - 72px));
}

.timeline-item {
  counter-increment: item;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
}

.timeline-item::before {
  content: counter(item, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(62, 216, 255, 0.12);
  color: #8ee8ff;
  font-size: 12px;
  font-weight: 800;
}

.timeline-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 15px;
}

.timeline-item span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.55;
}

.apply-box {
  max-width: min(360px, calc(100vw - 72px));
  border-radius: 8px;
  padding: 18px;
  background: linear-gradient(135deg, #111827, #0e4c7d);
  color: var(--white);
}

.apply-box h2 {
  margin: 0 0 10px;
}

.apply-box p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.65;
}

.apply-list {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.apply-list li {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.apply-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--orange);
  vertical-align: 2px;
}

.h5-footer {
  padding: 22px;
  background: #0b0f14;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.6;
}

@page {
  size: A4;
  margin: 0;
}

@media print {
  html,
  body {
    width: 210mm;
    height: 297mm;
    background: white;
  }

  .a4-body {
    padding: 0;
  }

  .sheet {
    width: 210mm;
    height: 297mm;
    min-height: 297mm;
    box-shadow: none;
  }

  .print-hint {
    display: none;
  }
}

@media (max-width: 760px) {
  .a4-body {
    padding: 0;
    background: white;
  }

  .sheet {
    width: 100%;
    min-height: auto;
    box-shadow: none;
  }
}

/* Playful campus recruitment poster style */
.poster-body {
  background: #eaf0ff;
}

.poster-sheet {
  height: 297mm;
  min-height: 297mm;
  color: #ffffff;
  background: #1462ff;
}

.poster-sheet::before {
  display: none;
}

.poster-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-sheet::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 60, 210, 0.2) 0%, transparent 22%),
    radial-gradient(circle at 50% 29%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(20, 94, 255, 0) 0%, rgba(20, 94, 255, 0.06) 40%, rgba(14, 86, 244, 0.72) 60%, rgba(11, 74, 225, 0.98) 100%);
  pointer-events: none;
}

.poster-topbar,
.poster-hero-copy,
.poster-info-panel {
  position: relative;
  z-index: 2;
}

.poster-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13mm 16mm 0;
}

.poster-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ffffff;
  font-size: 14px;
  padding: 5px 11px 5px 5px;
  border-radius: 999px;
  background: rgba(0, 68, 190, 0.22);
  backdrop-filter: blur(8px);
}

.poster-logo span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #1749df;
  background: #ffffff;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(0, 40, 160, 0.22);
}

.poster-logo strong {
  text-shadow: 0 2px 8px rgba(0, 40, 160, 0.28);
}

.poster-year {
  padding: 8px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 800;
}

.poster-hero-copy {
  margin: 22mm auto 0;
  text-align: center;
  width: 166mm;
}

.poster-kicker {
  display: inline-block;
  margin: 0 0 6mm;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(31, 216, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #bff4ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 8px rgba(0, 40, 160, 0.4);
}

.poster-hero-copy h1 {
  margin: 0;
  font-size: 68px;
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
  color: #ffffff;
  text-shadow:
    0 6px 0 rgba(95, 168, 255, 0.98),
    0 0 2px #135aff,
    0 15px 26px rgba(0, 34, 142, 0.46);
}

.poster-ribbon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 100mm;
  margin-top: 8mm;
  padding: 10px 22px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(90deg, #ff4eb1, #ff9a33);
  border: 3px solid rgba(255, 255, 255, 0.44);
  box-shadow: 0 10px 22px rgba(0, 44, 170, 0.28);
  font-size: 21px;
  font-weight: 900;
}

.poster-info-panel {
  position: absolute;
  left: 12mm;
  right: 12mm;
  bottom: 12mm;
  padding: 0 11mm 9mm;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(18, 96, 255, 0.82), rgba(10, 77, 228, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 44px rgba(0, 30, 160, 0.18);
}

.poster-section-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: -13mm 0 6mm;
}

.poster-section-title h2 {
  margin: 0;
  padding: 0 0 4px;
  font-size: 39px;
  line-height: 1;
  color: #ffffff;
  text-shadow:
    0 4px 0 #ff4fb4,
    0 10px 14px rgba(0, 30, 130, 0.32);
}

.poster-section-title span {
  width: 72px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffe65b, #45f2de, #ff66bf);
  transform: skewX(-18deg);
}

.poster-info-layout {
  display: grid;
  grid-template-columns: 1fr 33mm;
  gap: 8mm;
  align-items: end;
}

.poster-block {
  padding-top: 4.5mm;
  border-top: 2px dotted rgba(255, 255, 255, 0.56);
}

.poster-block h3 {
  margin: 0 0 3.2mm;
  color: #ffe65b;
  font-size: 21px;
  line-height: 1.1;
}

.poster-salary-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3mm 6mm;
}

.poster-salary-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 22px;
  padding: 2px 0;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.24;
}

.poster-salary-list strong {
  flex: 0 0 auto;
  min-width: 44px;
  color: #ffe65b;
  text-align: right;
  font-size: 13px;
}

.poster-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9mm;
  margin-top: 4.5mm;
}

.poster-split p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.65;
}

.poster-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.poster-qr img {
  width: 31mm;
  height: 31mm;
  padding: 4px;
  border-radius: 10px;
  background: #ffffff;
  border: 6px solid #ff5bbb;
  box-shadow: 0 10px 22px rgba(0, 35, 150, 0.28);
}

.poster-qr strong {
  margin-top: 4mm;
  color: #ffffff;
  font-size: 19px;
  line-height: 1.1;
  text-shadow: 0 3px 0 rgba(0, 40, 160, 0.36);
}

.poster-qr span {
  margin-top: 2mm;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  line-height: 1.4;
}

.playful-mobile {
  background: #0b42d8;
}

.playful-h5 {
  background: #1764ff;
}

.playful-hero {
  min-height: 620px;
  background: #1764ff;
}

.playful-hero::after {
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(13, 80, 230, 0.02) 0%, rgba(13, 80, 230, 0.12) 36%, rgba(13, 80, 230, 0.9) 72%, rgba(13, 80, 230, 1) 100%);
}

.playful-hero .h5-title {
  color: #ffffff;
  text-shadow:
    0 4px 0 rgba(85, 157, 255, 0.95),
    0 10px 18px rgba(0, 34, 142, 0.42);
}

.playful-hero .h5-lead {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.playful-h5 .h5-section {
  background: #1764ff;
  color: #ffffff;
}

.playful-h5 .h5-section::before {
  content: "";
  position: absolute;
  right: -72px;
  top: 18px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 232, 86, 0.26), rgba(255, 91, 187, 0.08) 48%, transparent 70%);
  pointer-events: none;
}

.playful-h5 .h5-section h2 {
  color: #ffffff;
  text-shadow: 0 3px 0 rgba(255, 72, 178, 0.72);
}

.playful-h5 .h5-section > p {
  color: rgba(255, 255, 255, 0.88);
}

.playful-h5 .job-card,
.playful-h5 .job-detail,
.playful-h5 .h5-card,
.playful-h5 .skill-tile {
  border: 2px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(0, 42, 160, 0.16);
}

.playful-h5 .job-card strong,
.playful-h5 .job-detail summary strong,
.playful-h5 .job-detail-body h3,
.playful-h5 .h5-card h3,
.playful-h5 .skill-tile strong {
  color: #13204a;
}

.playful-h5 .job-card span,
.playful-h5 .job-detail summary b {
  background: linear-gradient(90deg, #ff4eb1, #ff9a33);
  color: #ffffff;
}

.playful-h5 .job-detail summary::after {
  color: #ffffff;
  background: linear-gradient(90deg, #ff4eb1, #ff9a33);
}

.playful-h5 .job-detail[open] summary::before {
  background: #ff5da8;
}

.playful-h5 .job-detail summary em,
.playful-h5 .job-detail-body li {
  color: #4c5a75;
}

.playful-h5 .job-detail-body {
  border-top-color: rgba(23, 100, 255, 0.16);
}

.playful-h5 .h5-section.dark {
  background: #0d4ee0;
}

.playful-h5 .apply-box {
  background: linear-gradient(135deg, #ff4eb1, #ff9a33);
  border: 3px solid rgba(255, 255, 255, 0.52);
}

.playful-h5 .h5-footer {
  background: #0b42d8;
  color: rgba(255, 255, 255, 0.78);
}

.section-heading,
.h5-section > p,
.job-list,
.skill-grid,
.cards,
.timeline,
.apply-box {
  position: relative;
  z-index: 1;
}

.section-heading {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 112px;
  margin-bottom: 14px;
  text-align: center;
}

.section-heading > div {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(330px, calc(100vw - 76px));
}

.section-heading > div::after {
  content: "";
  order: 3;
  display: block;
  width: 118px;
  height: 9px;
  margin-top: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffe85a, #ff5bbb 54%, #57f3e4);
  box-shadow: 0 6px 12px rgba(0, 43, 160, 0.2);
  transform: skewX(-18deg);
}

.section-heading h2 {
  position: relative;
  order: 1;
  margin: 0;
  padding-bottom: 0;
  font-family: "DouyinMeihao", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
}

.section-heading h2::after {
  display: none;
}

.section-kicker {
  order: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  margin-top: 8px;
  margin-bottom: 0;
  color: #ffe85a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.section-kicker::before {
  display: none;
}

.section-art {
  position: absolute;
  right: 0;
  top: 4px;
  z-index: 1;
  width: 86px;
  height: 86px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0, 38, 150, 0.24));
  transform-origin: center;
  animation: titleStickerFloat 5.2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

.art-rocket {
  width: 92px;
  transform: rotate(10deg);
}

.art-ufo {
  width: 96px;
  animation-delay: -1.4s;
}

.art-cube {
  width: 88px;
  animation-delay: -2.1s;
}

.art-plane {
  width: 92px;
  animation-delay: -0.7s;
}

.art-ip-think,
.art-ip-thumbs,
.art-ip-point {
  width: 96px;
  height: 96px;
}

.art-ip-think {
  animation-delay: -1.4s;
}

.art-ip-thumbs {
  animation-delay: -2.1s;
}

.art-ip-point {
  animation-delay: -0.7s;
}

.hero-title-lockup {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.hero-title-sticker {
  position: absolute;
  z-index: 0;
  display: block;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 12px 18px rgba(0, 38, 150, 0.25));
}

.sticker-title-cube {
  width: 86px;
  right: -54px;
  top: -62px;
  animation: titleStickerFloat 5.8s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

.sticker-title-plane {
  width: 104px;
  right: -82px;
  bottom: -34px;
  opacity: 0.86;
  transform: rotate(-8deg);
  animation: titlePlaneDrift 5.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.apply-title {
  display: grid;
  grid-template-columns: 1fr 86px;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.apply-title h2 {
  margin: 0;
}

.apply-title img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(82, 28, 94, 0.24));
  animation: ipMascotFloat 5.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.job-detail summary {
  background: linear-gradient(90deg, rgba(87, 243, 228, 0.36) 0 7px, transparent 7px);
}

.dynamic-hero {
  isolation: isolate;
}

.dynamic-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.scene-sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 12%, rgba(102, 244, 255, 0.32), transparent 17%),
    radial-gradient(circle at 78% 18%, rgba(255, 95, 190, 0.32), transparent 18%),
    radial-gradient(circle at 50% 64%, rgba(255, 233, 94, 0.22), transparent 20%),
    linear-gradient(160deg, #315dff 0%, #1c6eff 42%, #0d55e8 100%);
}

.scene-sky::before,
.scene-sky::after {
  content: "";
  position: absolute;
  left: -15%;
  right: -15%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.scene-sky::before {
  top: 96px;
  height: 170px;
  transform: rotate(-9deg);
}

.scene-sky::after {
  top: 430px;
  height: 210px;
  background: linear-gradient(180deg, rgba(176, 230, 255, 0.7), rgba(255, 255, 255, 0.18));
  transform: rotate(-13deg);
}

.scene-beam {
  position: absolute;
  width: 150px;
  height: 380px;
  top: 64px;
  border-radius: 80px;
  background: linear-gradient(180deg, rgba(119, 255, 241, 0.42), rgba(255, 255, 255, 0));
  filter: blur(1px);
  mix-blend-mode: screen;
  transform-origin: top center;
  animation: beamSweep 5.8s var(--ease-out-quart, cubic-bezier(0.25, 1, 0.5, 1)) infinite;
}

.beam-left {
  left: 48px;
  transform: rotate(19deg);
}

.beam-right {
  right: 42px;
  top: 78px;
  height: 330px;
  background: linear-gradient(180deg, rgba(255, 103, 194, 0.34), rgba(255, 255, 255, 0));
  transform: rotate(-22deg);
  animation-delay: -2s;
}

.scene-star {
  position: absolute;
  z-index: 2;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.85);
  animation: starTwinkle 2.8s ease-in-out infinite;
}

.star-a {
  left: 24%;
  top: 92px;
}

.star-b {
  right: 22%;
  top: 134px;
  animation-delay: -0.8s;
}

.star-c {
  left: 76%;
  top: 302px;
  width: 5px;
  height: 5px;
  animation-delay: -1.4s;
}

.star-d {
  left: 12%;
  top: 374px;
  width: 5px;
  height: 5px;
  animation-delay: -2s;
}

.scene-layer {
  position: absolute;
  z-index: 1;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(0, 38, 150, 0.24));
  user-select: none;
  will-change: transform;
}

.layer-ufo {
  width: 178px;
  left: 6px;
  top: 42px;
  opacity: 0.92;
  animation: ufoDrift 6.4s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

.layer-plane {
  width: 158px;
  right: 36px;
  top: 328px;
  z-index: 2;
  animation: planeGlide 5.6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.layer-student-left {
  width: 238px;
  left: -75px;
  top: 265px;
  z-index: 2;
  animation: jetFloatLeft 4.9s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

.layer-student-right {
  width: 202px;
  right: -66px;
  top: 368px;
  z-index: 2;
  animation: jetFloatRight 5.2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

.layer-rocket {
  width: 152px;
  right: -20px;
  top: 190px;
  opacity: 0.95;
  animation: rocketCruise 4.7s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.layer-cube {
  width: 168px;
  left: 50%;
  top: 444px;
  z-index: 1;
  animation: cubeHover 6.2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

.layer-company-ip {
  width: 152px;
  right: 48px;
  top: 150px;
  z-index: 2;
  filter:
    drop-shadow(0 10px 18px rgba(0, 42, 160, 0.26))
    drop-shadow(0 0 18px rgba(87, 243, 228, 0.28));
  animation: ipMascotFloat 5.6s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

video.layer-company-ip {
  aspect-ratio: 1;
  background: transparent;
}

.hero-copy-wrap {
  position: relative;
  max-width: 360px;
  padding-top: 62px;
  animation: heroCopyIn 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.playful-hero .kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #c9fbff;
  background: rgba(7, 72, 196, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(10px);
}

.playful-hero .h5-title {
  position: relative;
  z-index: 1;
  max-width: 100%;
  font-size: clamp(48px, 14vw, 66px);
  line-height: 0.94;
}

.hero-salary-badge {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 38px;
  margin-top: 18px;
  padding: 7px 15px;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.48);
  color: #ffffff;
  background: linear-gradient(90deg, #ff4eb1, #ff9a33);
  box-shadow: 0 10px 22px rgba(0, 44, 170, 0.24);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  overflow-wrap: anywhere;
}

.playful-h5 .h5-lead,
.playful-h5 .h5-actions,
.playful-h5 .h5-section > p,
.playful-h5 .cards,
.playful-h5 .job-list,
.playful-h5 .skill-grid,
.playful-h5 .timeline,
.playful-h5 .apply-box {
  width: 100%;
  max-width: 100%;
}

.playful-h5 .h5-actions .button {
  min-width: 0;
  white-space: nowrap;
}

.playful-hero .h5-actions .button {
  box-shadow: 0 10px 22px rgba(0, 42, 160, 0.2);
  transition:
    transform 180ms cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 180ms cubic-bezier(0.25, 1, 0.5, 1);
}

.playful-hero .h5-actions .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 42, 160, 0.28);
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes ufoDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-7deg);
  }

  50% {
    transform: translate3d(14px, -12px, 0) rotate(-3deg);
  }
}

@keyframes planeGlide {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-10deg);
  }

  50% {
    transform: translate3d(-18px, -16px, 0) rotate(-15deg);
  }
}

@keyframes jetFloatLeft {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-7deg);
  }

  50% {
    transform: translate3d(12px, -20px, 0) rotate(-3deg);
  }
}

@keyframes jetFloatRight {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(8deg);
  }

  50% {
    transform: translate3d(-10px, -18px, 0) rotate(4deg);
  }
}

@keyframes rocketCruise {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(14deg);
  }

  50% {
    transform: translate3d(-12px, -22px, 0) rotate(18deg);
  }
}

@keyframes cubeHover {
  0%,
  100% {
    transform: translate3d(-50%, 0, 0) rotate(-7deg) scale(1);
  }

  50% {
    transform: translate3d(calc(-50% + 8px), -14px, 0) rotate(5deg) scale(1.04);
  }
}

@keyframes beamSweep {
  0%,
  100% {
    opacity: 0.72;
  }

  50% {
    opacity: 0.38;
  }
}

@keyframes starTwinkle {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.78);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes ipMascotFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(4deg) scale(1);
  }

  50% {
    transform: translate3d(-8px, -12px, 0) rotate(-4deg) scale(1.04);
  }
}

@keyframes titleStickerFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }

  50% {
    transform: translate3d(8px, -10px, 0) rotate(4deg) scale(1.04);
  }
}

@keyframes titlePlaneDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-8deg);
  }

  50% {
    transform: translate3d(-12px, -8px, 0) rotate(-14deg);
  }
}

@media (max-width: 390px) {
  .layer-student-left {
    width: 218px;
    left: -82px;
  }

  .layer-student-right {
    width: 188px;
    right: -78px;
  }

  .layer-cube {
    width: 150px;
    top: 462px;
  }

  .layer-company-ip {
    width: 124px;
    right: 58px;
    top: 168px;
  }

  .hero-copy-wrap {
    padding-top: 52px;
  }

  .sticker-title-cube {
    width: 72px;
    right: -28px;
    top: -54px;
  }

  .sticker-title-plane {
    width: 86px;
    right: -64px;
    bottom: -30px;
  }

  .section-heading {
    min-height: 104px;
  }

  .section-art {
    width: 72px;
    height: 72px;
    right: -8px;
    top: 10px;
  }

  .art-ip-think,
  .art-ip-thumbs,
  .art-ip-point {
    width: 82px;
    height: 82px;
  }

  .apply-title {
    grid-template-columns: 1fr 74px;
  }

  .apply-title img {
    width: 76px;
    height: 76px;
  }
}

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

/* H5 interaction prototype */
.explorer-body {
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: #040816;
  color: #eefbff;
}

.role-explorer {
  --panel: rgba(9, 24, 52, 0.68);
  --panel-strong: rgba(12, 34, 75, 0.86);
  --neon: #38e7ff;
  --warm: #ffbd4a;
  --pink: #ff57c1;
  --copy: rgba(238, 251, 255, 0.78);
  position: relative;
  width: 100vw;
  max-width: 480px;
  height: 100vh;
  height: 100svh;
  min-height: 100svh;
  margin: 0 auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 16%, rgba(36, 224, 255, 0.22), transparent 25%),
    radial-gradient(circle at 14% 72%, rgba(255, 87, 193, 0.22), transparent 28%),
    linear-gradient(180deg, #07122c 0%, #081b43 52%, #030715 100%);
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.5);
  isolation: isolate;
}

.generated-home.role-explorer {
  background: #050814;
}

.generated-home.role-explorer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(3, 7, 18, 0.02), rgba(3, 7, 18, 0.34)),
    url("./assets/generated/scenes/dark-orbit-bg-clean-v1.png") center / cover no-repeat;
  transform: scale(1.01);
  pointer-events: none;
}

.role-explorer button {
  font: inherit;
}

.explorer-bg,
.explorer-bg span {
  position: absolute;
  pointer-events: none;
}

.explorer-bg {
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.starfield {
  inset: -20%;
  opacity: 0.72;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(56, 231, 255, 0.75) 0 1px, transparent 1.4px);
  background-size: 74px 74px, 118px 118px;
  animation: explorerStarDrift 22s linear infinite;
}

.starfield-b {
  opacity: 0.38;
  background-size: 48px 48px, 142px 142px;
  animation-duration: 34s;
  animation-direction: reverse;
}

.orbit-ring {
  width: 580px;
  height: 580px;
  border: 1px solid rgba(86, 239, 255, 0.16);
  border-radius: 50%;
  transform: rotate(-16deg);
}

.orbit-ring-a {
  top: -180px;
  left: -120px;
}

.orbit-ring-b {
  right: -260px;
  bottom: -190px;
  border-color: rgba(255, 189, 74, 0.13);
}

.meteor {
  width: 96px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9));
  filter: drop-shadow(0 0 10px rgba(56, 231, 255, 0.7));
  transform: rotate(-34deg);
  animation: explorerMeteor 5.6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.meteor-a {
  top: 118px;
  right: 28px;
}

.meteor-b {
  top: 432px;
  left: 4px;
  animation-delay: -2.4s;
}

.explorer-screen {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: calc(20px + env(safe-area-inset-top)) 22px calc(20px + env(safe-area-inset-bottom));
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 24px, 0) scale(0.985);
  transition:
    opacity 360ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.explorer-screen.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}

.screen-topbar {
  position: relative;
  z-index: 3;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(238, 251, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
}

.screen-topbar b {
  display: none;
}

.icon-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 34px;
  border: 0;
  border-radius: 0;
  clip-path: polygon(14% 0, 100% 0, 86% 100%, 0 100%);
  color: #061125;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0 14%, transparent 15%),
    linear-gradient(135deg, #68f3ff 0%, #ffffff 48%, #ffe073 100%);
  box-shadow:
    inset 0 -5px 0 rgba(10, 63, 108, 0.18),
    0 0 22px rgba(104, 243, 255, 0.24);
  cursor: pointer;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

.apply-screen .icon-button {
  color: #061125;
}

.intro-stage {
  position: relative;
  flex: 1 1 auto;
  min-height: 285px;
}

.generated-home .starfield,
.generated-home .orbit-ring {
  display: none;
}

.generated-home .meteor {
  opacity: 0.42;
}

.generated-home .intro-stage {
  z-index: 1;
  min-height: 330px;
  pointer-events: none;
}

.generated-home [data-screen="intro"] {
  --intro-copy-top: clamp(330px, 36svh, 520px);
  display: block;
}

.generated-home [data-screen="intro"] .screen-topbar {
  position: relative;
  z-index: 4;
}

.generated-home [data-screen="intro"] .intro-stage {
  position: absolute;
  inset: 0;
  min-height: 0;
}

.generated-home [data-screen="intro"] .story-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  top: var(--intro-copy-top);
  padding-bottom: 0;
}

.generated-home [data-screen="intro"] .screen-actions {
  position: absolute;
  left: 22px;
  right: 22px;
  top: calc(var(--intro-copy-top) + clamp(276px, 28svh, 326px));
}

.home-asset {
  position: absolute;
  z-index: 1;
  display: block;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
  filter:
    drop-shadow(0 0 18px rgba(37, 218, 255, 0.2))
    drop-shadow(0 22px 26px rgba(0, 0, 0, 0.24));
}

.home-planet-moon {
  left: 40px;
  top: clamp(88px, 10svh, 140px);
  width: 82px;
  opacity: 0.78;
  animation: explorerPlanetFloat 7s ease-in-out infinite;
}

.home-planet-crystal {
  right: -76px;
  top: clamp(286px, 31svh, 500px);
  width: 118px;
  opacity: 0.76;
  animation: explorerPlanetFloat 6.5s ease-in-out infinite reverse;
}

.home-planet-teal {
  left: -76px;
  top: calc(var(--intro-copy-top) - clamp(110px, 10svh, 150px));
  bottom: auto;
  width: 190px;
  opacity: 0.78;
  animation: explorerPlanetFloat 7.8s ease-in-out infinite;
}

.home-planet-gold {
  left: 50%;
  bottom: clamp(-380px, calc(24svh - 573px), -80px);
  width: min(480px, 116vw);
  max-width: none;
  opacity: 0.94;
  transform: translateX(-50%);
  filter:
    drop-shadow(0 0 34px rgba(255, 207, 80, 0.34))
    drop-shadow(0 -12px 26px rgba(255, 232, 150, 0.18));
  animation: homeGoldFloat 8s ease-in-out infinite;
}

.home-company-ip {
  right: -8px;
  top: clamp(116px, 13svh, 226px);
  z-index: 2;
  width: clamp(196px, 50vw, 226px);
  opacity: 0.98;
  transform-origin: 54% 92%;
  filter: none;
  animation: homeIpFloat 5.6s ease-in-out infinite;
}

.prototype-planet,
.detail-planet,
.result-planet,
.planet-shape {
  display: block;
  border-radius: 50%;
  background:
    radial-gradient(circle at 31% 24%, rgba(255, 255, 255, 0.95), transparent 0 11%, transparent 24%),
    linear-gradient(135deg, hsl(var(--hue, 196) 95% 64%), hsl(calc(var(--hue, 196) + 52) 92% 50%) 58%, hsl(calc(var(--hue, 196) + 98) 84% 36%));
  box-shadow:
    inset -18px -20px 34px rgba(0, 0, 0, 0.28),
    0 0 34px hsla(var(--hue, 196), 90%, 58%, 0.54);
}

.planet-core {
  --hue: 190;
  position: absolute;
  right: -74px;
  top: 28px;
  width: 260px;
  height: 260px;
  animation: explorerPlanetFloat 6.8s ease-in-out infinite;
}

.planet-mini {
  position: absolute;
  width: 62px;
  height: 62px;
  opacity: 0.9;
}

.planet-mini-a {
  --hue: 315;
  left: 12px;
  top: 82px;
}

.planet-mini-b {
  --hue: 42;
  left: 92px;
  bottom: 28px;
}

.ip-placeholder {
  position: absolute;
  right: 56px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 30px;
  color: #061832;
  background: linear-gradient(135deg, #ffffff, #bdfaff);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24), 0 0 30px rgba(56, 231, 255, 0.38);
  font-family: "DouyinMeihao", "PingFang SC", sans-serif;
  font-size: 34px;
  font-weight: 900;
  transform: rotate(5deg);
  animation: ipMascotFloat 5.4s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

.story-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 18px;
}

.story-kicker {
  margin: 0 0 10px;
  color: #66f1ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-shadow: 0 0 18px rgba(83, 240, 255, 0.52);
}

.story-copy h1,
.section-title-block h2,
.match-panel h2,
.result-card h2,
.role-detail-head h2 {
  font-family: "DouyinMeihao", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

.story-copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(68px, 18vw, 88px);
  line-height: 0.88;
  text-shadow:
    0 5px 0 rgba(54, 126, 255, 0.88),
    0 12px 26px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(56, 231, 255, 0.42);
}

.story-copy p:not(.story-kicker) {
  max-width: 360px;
  margin: 22px 0 0;
  color: rgba(238, 251, 255, 0.88);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.72;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.48),
    0 0 18px rgba(58, 180, 255, 0.18);
}

.screen-actions {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 10px;
}

.generated-home [data-screen="intro"] .neon-button.primary {
  min-height: 58px;
  border-width: 2px;
  border-color: rgba(188, 252, 255, 0.92);
  color: #022848;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0 8%, transparent 9%),
    linear-gradient(90deg, #fff06b 0%, #36f2ff 46%, #1888ff 100%);
  box-shadow:
    inset 0 -8px 0 rgba(0, 63, 122, 0.2),
    inset 0 0 20px rgba(255, 255, 255, 0.34),
    0 0 0 6px rgba(30, 217, 255, 0.1),
    0 0 28px rgba(75, 235, 255, 0.55),
    0 18px 42px rgba(0, 0, 0, 0.34);
  font-size: 18px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.screen-actions.split {
  grid-template-columns: 1fr 1fr;
}

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

.screen-actions.compact {
  margin-top: 12px;
}

.neon-button {
  min-height: 48px;
  border: 1px solid rgba(56, 231, 255, 0.44);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #dffcff;
  background: rgba(6, 22, 48, 0.64);
  box-shadow:
    inset 0 0 18px rgba(56, 231, 255, 0.13),
    0 0 24px rgba(56, 231, 255, 0.12);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.neon-button.iconed {
  position: relative;
  gap: 8px;
  overflow: hidden;
}

.neon-button.iconed::before {
  content: "";
  position: absolute;
  inset: 2px 16px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  opacity: 0.7;
}

.neon-button.iconed svg {
  position: relative;
  z-index: 1;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(0, 66, 120, 0.28));
}

.neon-button.iconed span {
  position: relative;
  z-index: 1;
}

.neon-button.primary {
  border-color: rgba(255, 255, 255, 0.5);
  color: #041328;
  background: linear-gradient(90deg, #63f0ff, #ffffff 48%, #ffcf5d);
  box-shadow: 0 14px 34px rgba(56, 231, 255, 0.2);
}

.neon-button.mail {
  border-color: rgba(255, 189, 74, 0.42);
  color: #ffeec1;
}

.section-title-block {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 8px;
  margin: 8px 0 16px;
  text-align: center;
}

.section-title-block span {
  color: #ffdc67;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.role-explorer .story-kicker,
.role-explorer .section-title-block > span {
  display: none;
}

.section-title-block h2 {
  margin: 0;
  color: #ffffff;
  font-size: 27px;
  line-height: 1.2;
}

.section-title-block i {
  width: 124px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffdc67, #ff57c1, #38e7ff);
  transform: skewX(-18deg);
}

.about-screen,
.growth-screen {
  background:
    radial-gradient(circle at 82% 16%, rgba(84, 239, 255, 0.18), transparent 25%),
    radial-gradient(circle at 6% 76%, rgba(255, 220, 103, 0.12), transparent 24%);
}

.about-screen::before,
.growth-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(3, 7, 18, 0.04), rgba(3, 7, 18, 0.46)),
    radial-gradient(circle at 50% 30%, rgba(58, 180, 255, 0.1), transparent 38%);
  pointer-events: none;
}

.about-screen .screen-topbar,
.about-screen .section-title-block,
.about-screen .about-statement,
.about-screen .about-card,
.about-screen .about-proof-grid,
.about-screen .about-chip-row,
.about-screen .screen-actions,
.growth-screen .screen-topbar,
.growth-screen .section-title-block,
.growth-screen .growth-grid,
.growth-screen .growth-slogan,
.growth-screen .screen-actions {
  position: relative;
  z-index: 3;
}

.about-screen .section-title-block,
.growth-screen .section-title-block {
  gap: 7px;
  margin: 6px 0 18px;
}

.about-screen .section-title-block span,
.growth-screen .section-title-block span {
  color: #68f4ff;
  font-size: 12px;
  text-shadow: 0 0 18px rgba(56, 231, 255, 0.54);
}

.about-screen .section-title-block h2,
.growth-screen .section-title-block h2 {
  font-size: clamp(38px, 12vw, 56px);
  line-height: 0.98;
  text-shadow:
    0 5px 0 rgba(47, 119, 255, 0.72),
    0 0 28px rgba(56, 231, 255, 0.34);
}

.growth-screen .section-title-block p {
  margin: 3px 0 0;
  color: rgba(238, 251, 255, 0.82);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.42;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}

.about-screen .section-title-block i,
.growth-screen .section-title-block i {
  width: 146px;
  height: 7px;
  background: linear-gradient(90deg, transparent 0 6%, #ffdc67 7% 34%, #ff57c1 40% 58%, #38e7ff 66% 94%, transparent 95%);
  box-shadow: 0 0 18px rgba(56, 231, 255, 0.42);
}

.about-scene-art,
.growth-scene-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.about-planet,
.growth-planet,
.growth-server,
.about-chipmunk {
  position: absolute;
  display: block;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

.about-planet-blue {
  right: -70px;
  top: 74px;
  width: 176px;
  opacity: 0.62;
  filter: drop-shadow(0 0 24px rgba(75, 170, 255, 0.22));
  animation: explorerPlanetFloat 7.4s ease-in-out infinite reverse;
}

.about-planet-gold {
  left: -150px;
  bottom: -118px;
  width: 330px;
  opacity: 0.36;
  filter: drop-shadow(0 0 28px rgba(255, 220, 103, 0.2));
  animation: homeGoldFloat 9s ease-in-out infinite;
}

.about-chipmunk {
  right: -34px;
  bottom: 106px;
  width: 104px;
  opacity: 0.72;
  filter: none;
  animation: homeIpFloat 6.2s ease-in-out infinite;
}

.about-statement {
  display: grid;
  gap: 10px;
  margin: -2px 0 12px;
  text-align: center;
}

.about-statement b {
  display: block;
  color: #ffffff;
  font-family: "DouyinMeihao", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(35px, 10.5vw, 50px);
  font-weight: 900;
  line-height: 0.98;
  text-shadow:
    0 5px 0 rgba(47, 119, 255, 0.72),
    0 0 28px rgba(56, 231, 255, 0.32);
}

.about-statement span {
  justify-self: center;
  max-width: 330px;
  color: rgba(238, 251, 255, 0.84);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.52;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}

.about-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(105, 243, 255, 0.26);
  border-radius: 22px;
  padding: 16px 16px 17px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(5, 17, 41, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 0 34px rgba(75, 235, 255, 0.08),
    0 18px 46px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(104, 243, 255, 0.16), transparent 38%),
    radial-gradient(circle at 92% 12%, rgba(255, 220, 103, 0.16), transparent 30%);
  pointer-events: none;
}

.about-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  max-width: 100%;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 6px 10px;
  color: #061125;
  background: linear-gradient(90deg, #68f3ff, #ffffff 50%, #ffe073);
  box-shadow:
    inset 0 -3px 0 rgba(10, 63, 108, 0.12),
    0 0 18px rgba(104, 243, 255, 0.2);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
}

.about-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(241, 251, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.68;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
}

.about-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.about-proof-grid article {
  position: relative;
  overflow: hidden;
  min-height: 92px;
  border: 1px solid rgba(104, 243, 255, 0.2);
  border-radius: 16px;
  padding: 12px 11px;
  background:
    linear-gradient(145deg, rgba(104, 243, 255, 0.12), transparent 42%),
    rgba(7, 20, 48, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 0 22px rgba(104, 243, 255, 0.06);
  backdrop-filter: blur(14px);
}

.about-proof-grid article:nth-child(2),
.about-proof-grid article:nth-child(4) {
  border-color: rgba(255, 220, 103, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 220, 103, 0.11), transparent 42%),
    rgba(7, 20, 48, 0.76);
}

.about-proof-grid article::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 10px;
  width: 24px;
  height: 8px;
  border-top: 2px solid rgba(104, 243, 255, 0.68);
  border-right: 2px solid rgba(104, 243, 255, 0.68);
  border-radius: 0 8px 0 0;
  opacity: 0.68;
}

.about-proof-grid b {
  display: block;
  color: #65f1ff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.about-proof-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(238, 251, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.38;
}

.about-chip-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 11px;
}

.about-chip-row span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 8px 10px;
  color: #dffcff;
  background:
    linear-gradient(90deg, rgba(104, 243, 255, 0.16), rgba(255, 220, 103, 0.08)),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 18px rgba(104, 243, 255, 0.07);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.growth-server {
  right: -26px;
  top: 72px;
  width: 118px;
  opacity: 0.74;
  filter: drop-shadow(0 0 22px rgba(104, 243, 255, 0.2));
  animation: explorerPlanetFloat 7s ease-in-out infinite;
}

.growth-planet {
  left: -96px;
  bottom: 62px;
  width: 210px;
  opacity: 0.38;
  filter: drop-shadow(0 0 26px rgba(175, 98, 255, 0.28));
  animation: explorerPlanetFloat 8.4s ease-in-out infinite reverse;
}

.growth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.growth-grid article {
  position: relative;
  overflow: hidden;
  min-height: 136px;
  border: 1px solid rgba(104, 243, 255, 0.23);
  border-radius: 18px;
  padding: 14px 13px 13px;
  background:
    linear-gradient(145deg, rgba(104, 243, 255, 0.13), transparent 42%),
    rgba(7, 20, 48, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 0 26px rgba(104, 243, 255, 0.06);
  backdrop-filter: blur(16px);
}

.growth-grid article::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 10px;
  width: 28px;
  height: 8px;
  border-top: 2px solid rgba(255, 220, 103, 0.74);
  border-right: 2px solid rgba(255, 220, 103, 0.74);
  border-radius: 0 8px 0 0;
  opacity: 0.72;
}

.growth-grid article.wide {
  grid-column: 1 / -1;
  min-height: 104px;
}

.growth-grid b {
  display: block;
  color: #ffffff;
  font-family: "DouyinMeihao", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 24px;
  line-height: 1.08;
  text-shadow:
    0 4px 0 rgba(47, 119, 255, 0.52),
    0 0 20px rgba(104, 243, 255, 0.26);
}

.growth-grid span {
  display: inline-flex;
  margin-top: 8px;
  border-radius: 999px;
  padding: 4px 8px;
  color: #05142a;
  background: linear-gradient(90deg, #68f3ff, #ffe073);
  font-size: 10px;
  font-weight: 900;
}

.growth-grid p {
  margin: 9px 0 0;
  color: rgba(238, 251, 255, 0.78);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.48;
}

.growth-slogan {
  margin: 14px 0 0;
  color: #ffffff;
  font-family: "DouyinMeihao", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.42;
  text-align: center;
  text-shadow:
    0 3px 0 rgba(47, 119, 255, 0.58),
    0 0 20px rgba(104, 243, 255, 0.3);
}

.about-screen .screen-actions,
.growth-screen .screen-actions {
  margin-top: auto;
  padding-top: 18px;
}

.requirements-panel {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
  padding-right: 2px;
  -webkit-overflow-scrolling: touch;
}

.requirement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.requirement-card,
.requirement-note {
  border: 1px solid rgba(56, 231, 255, 0.22);
  border-radius: 18px;
  background: rgba(9, 25, 55, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 24px rgba(56, 231, 255, 0.07);
  backdrop-filter: blur(16px);
}

.requirement-card {
  min-height: 146px;
  padding: 13px 12px;
}

.requirement-card span {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 4px 8px;
  color: #061832;
  background: #ffdc67;
  font-size: 11px;
  font-weight: 900;
}

.requirement-card strong {
  display: block;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.25;
}

.requirement-card p {
  margin: 8px 0 0;
  color: rgba(238, 251, 255, 0.72);
  font-size: 12px;
  line-height: 1.55;
}

.requirement-note {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
}

.requirement-note b {
  color: #65f1ff;
  font-size: 13px;
  line-height: 1.35;
}

.requirement-note span {
  color: rgba(238, 251, 255, 0.78);
  font-size: 12px;
  line-height: 1.55;
}

.requirement-note.accent b {
  color: #ffdc67;
}

.requirements-screen {
  background:
    radial-gradient(circle at 72% 18%, rgba(65, 240, 255, 0.14), transparent 26%),
    radial-gradient(circle at 10% 74%, rgba(255, 210, 88, 0.13), transparent 24%);
}

.requirements-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(3, 7, 18, 0.06), rgba(4, 10, 25, 0.42)),
    radial-gradient(circle at 50% 34%, rgba(50, 162, 255, 0.12), transparent 38%);
  pointer-events: none;
}

.requirements-screen .screen-topbar,
.requirements-screen .section-title-block,
.requirements-screen .requirements-panel,
.requirements-screen .screen-actions {
  position: relative;
  z-index: 3;
}

.requirements-scene-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.requirements-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(73, 227, 255, 0.18);
  transform: rotate(-18deg);
  filter: drop-shadow(0 0 18px rgba(62, 224, 255, 0.16));
}

.requirements-orbit-a {
  width: 420px;
  height: 210px;
  left: -52px;
  top: 116px;
}

.requirements-orbit-b {
  width: 560px;
  height: 280px;
  right: -210px;
  top: 310px;
  border-color: rgba(255, 219, 112, 0.13);
}

.requirements-beam {
  position: absolute;
  left: 38px;
  right: 38px;
  top: 246px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(86, 239, 255, 0.58), transparent);
  box-shadow: 0 0 22px rgba(86, 239, 255, 0.36);
  opacity: 0.78;
}

.requirements-planet,
.requirements-ip {
  position: absolute;
  display: block;
  object-fit: contain;
  user-select: none;
}

.requirements-planet-ring {
  right: -86px;
  top: 86px;
  width: 188px;
  opacity: 0.68;
  filter:
    drop-shadow(0 0 20px rgba(188, 114, 255, 0.28))
    drop-shadow(0 20px 28px rgba(0, 0, 0, 0.24));
  animation: explorerPlanetFloat 7.4s ease-in-out infinite reverse;
}

.requirements-planet-teal {
  left: -120px;
  bottom: 78px;
  width: 238px;
  opacity: 0.46;
  filter:
    drop-shadow(0 0 20px rgba(65, 240, 255, 0.24))
    drop-shadow(0 26px 30px rgba(0, 0, 0, 0.28));
  animation: explorerPlanetFloat 8.2s ease-in-out infinite;
}

.requirements-ip {
  right: -86px;
  top: 132px;
  z-index: 2;
  width: 142px;
  opacity: 0.56;
  filter: none;
  animation: homeIpFloat 6s ease-in-out infinite;
}

.requirements-screen .section-title-block {
  gap: 6px;
  margin: 6px 0 14px;
  padding: 0 18px;
}

.requirements-screen .section-title-block::before,
.requirements-screen .section-title-block::after {
  content: "";
  position: absolute;
  top: 34px;
  width: 42px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 220, 103, 0.9), rgba(56, 231, 255, 0.92));
  box-shadow: 0 0 18px rgba(56, 231, 255, 0.34);
}

.requirements-screen .section-title-block::before {
  left: 16px;
  transform: skewX(-18deg);
}

.requirements-screen .section-title-block::after {
  right: 16px;
  transform: skewX(18deg);
}

.requirements-screen .section-title-block span {
  color: #68f4ff;
  font-size: 12px;
  text-shadow: 0 0 18px rgba(56, 231, 255, 0.54);
}

.requirements-screen .section-title-block h2 {
  font-size: clamp(34px, 10vw, 46px);
  line-height: 0.98;
  text-shadow:
    0 4px 0 rgba(47, 119, 255, 0.72),
    0 0 28px rgba(56, 231, 255, 0.34);
}

.requirements-screen .section-title-block p {
  margin: 2px 0 0;
  color: rgba(238, 251, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}

.requirements-screen .section-title-block i {
  width: 146px;
  height: 7px;
  background: linear-gradient(90deg, transparent 0 6%, #ffdc67 7% 34%, #ff57c1 40% 58%, #38e7ff 66% 94%, transparent 95%);
  box-shadow: 0 0 18px rgba(56, 231, 255, 0.42);
}

.requirements-screen .requirements-panel {
  flex: 0 0 auto;
  min-height: auto;
  gap: 12px;
  overflow: visible;
  padding: 6px 2px 4px;
  mask-image: none;
}

.requirements-screen .requirement-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.requirements-screen .requirement-grid::before {
  content: "";
  position: absolute;
  left: 33px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 220, 103, 0.24), rgba(56, 231, 255, 0.66), rgba(255, 87, 193, 0.24));
  box-shadow: 0 0 18px rgba(56, 231, 255, 0.42);
}

.requirements-screen .requirement-card {
  --card-accent: #38e7ff;
  position: relative;
  min-height: 92px;
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-rows: auto 1fr;
  gap: 6px 12px;
  align-items: center;
  overflow: hidden;
  padding: 13px 13px 13px 12px;
  border-color: color-mix(in srgb, var(--card-accent) 58%, transparent);
  border-radius: 18px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--card-accent) 18%, transparent), transparent 42%),
    linear-gradient(180deg, rgba(10, 28, 64, 0.92), rgba(5, 15, 36, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 0 28px color-mix(in srgb, var(--card-accent) 14%, transparent),
    0 16px 34px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.requirements-screen .requirement-card:nth-child(2) {
  --card-accent: #ffdc67;
}

.requirements-screen .requirement-card:nth-child(3) {
  --card-accent: #ff57c1;
}

.requirements-screen .requirement-card:nth-child(4) {
  --card-accent: #7cffbd;
}

.requirements-screen .requirement-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.13), transparent 30%),
    radial-gradient(circle at 90% 22%, color-mix(in srgb, var(--card-accent) 28%, transparent), transparent 30%);
  opacity: 0.8;
  pointer-events: none;
}

.requirements-screen .requirement-card::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 12px;
  width: 34px;
  height: 10px;
  border-top: 2px solid color-mix(in srgb, var(--card-accent) 70%, transparent);
  border-right: 2px solid color-mix(in srgb, var(--card-accent) 70%, transparent);
  border-radius: 0 8px 0 0;
  opacity: 0.7;
}

.requirements-screen .requirement-card span {
  position: relative;
  z-index: 1;
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  padding: 0;
  color: #041328;
  background: radial-gradient(circle at 30% 22%, #ffffff, var(--card-accent));
  box-shadow:
    0 0 0 7px color-mix(in srgb, var(--card-accent) 12%, transparent),
    0 0 24px color-mix(in srgb, var(--card-accent) 46%, transparent);
  font-size: 13px;
  font-weight: 900;
}

.requirements-screen .requirement-card strong,
.requirements-screen .requirement-card p {
  position: relative;
  z-index: 1;
}

.requirements-screen .requirement-card strong {
  font-size: 18px;
  line-height: 1.18;
  text-shadow: 0 0 18px color-mix(in srgb, var(--card-accent) 34%, transparent);
}

.requirements-screen .requirement-card p {
  margin: 0;
  color: rgba(238, 251, 255, 0.78);
  font-size: 12px;
  line-height: 1.52;
}

.requirements-screen .requirement-note {
  position: relative;
  overflow: hidden;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  align-items: center;
  border-radius: 16px;
  border-color: rgba(87, 239, 255, 0.3);
  padding: 12px 13px;
  background:
    linear-gradient(90deg, rgba(56, 231, 255, 0.16), transparent 40%),
    rgba(8, 23, 52, 0.9);
}

.requirements-screen .requirement-note::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #38e7ff, #ffdc67);
  box-shadow: 0 0 16px rgba(56, 231, 255, 0.62);
}

.requirements-screen .requirement-note b {
  color: #72f5ff;
  font-size: 15px;
}

.requirements-screen .requirement-note span {
  color: rgba(238, 251, 255, 0.82);
  font-size: 12px;
  line-height: 1.55;
}

.requirements-screen .requirement-note.accent {
  border-color: rgba(255, 220, 103, 0.32);
  background:
    linear-gradient(90deg, rgba(255, 220, 103, 0.17), transparent 42%),
    rgba(8, 23, 52, 0.9);
}

.requirements-screen .requirement-note.accent::before {
  background: linear-gradient(180deg, #ffdc67, #ff57c1);
  box-shadow: 0 0 16px rgba(255, 220, 103, 0.48);
}

.requirements-screen .requirement-note.accent b {
  color: #ffdc67;
}

.requirements-screen .neon-button.primary {
  min-height: 54px;
  border-width: 2px;
  border-color: rgba(194, 253, 255, 0.86);
  color: #041328;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0 8%, transparent 9%),
    linear-gradient(90deg, #ffdf62 0%, #46f0ff 48%, #238bff 100%);
  box-shadow:
    inset 0 -7px 0 rgba(0, 63, 122, 0.18),
    inset 0 0 18px rgba(255, 255, 255, 0.32),
    0 0 0 5px rgba(30, 217, 255, 0.09),
    0 0 26px rgba(75, 235, 255, 0.46);
  font-size: 16px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.42);
}

.role-orbit {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  height: clamp(500px, calc(100svh - 292px), 610px);
  margin: -6px 0 10px;
  overflow: hidden;
  isolation: isolate;
}

.role-orbit::before,
.role-orbit::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.role-orbit::before {
  background:
    radial-gradient(circle at 58% 20%, rgba(69, 237, 255, 0.16), transparent 18%),
    radial-gradient(circle at 22% 72%, rgba(255, 217, 91, 0.12), transparent 20%),
    radial-gradient(circle at 78% 70%, rgba(255, 87, 193, 0.12), transparent 18%);
  animation: roleStarMist 12s ease-in-out infinite;
}

.role-orbit::after {
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.78) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(92, 240, 255, 0.7) 0 1px, transparent 1.5px);
  background-size: 82px 82px, 132px 132px;
  opacity: 0.44;
  animation: explorerStarDrift 32s linear infinite;
}

.role-field-depth {
  position: absolute;
  z-index: 1;
  display: block;
  border-radius: 50%;
  pointer-events: none;
}

.role-field-depth-a {
  left: 46%;
  top: 39%;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(56, 231, 255, 0.16), transparent 62%);
  filter: blur(2px);
  transform: translate(-50%, -50%);
}

.role-field-depth-b {
  right: -46px;
  top: 112px;
  width: 126px;
  height: 126px;
  border: 1px solid rgba(255, 220, 103, 0.18);
  transform: rotate(-16deg);
}

.role-field-depth-c {
  left: -36px;
  bottom: 90px;
  width: 150px;
  height: 150px;
  border: 1px dashed rgba(80, 234, 255, 0.14);
  transform: rotate(22deg);
}

.role-planet-button {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: var(--depth);
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  min-width: 0;
  min-height: 112px;
  border: 0;
  border-radius: 18px;
  padding: 0;
  color: #ffffff;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  opacity: var(--planet-opacity);
  filter: blur(var(--planet-blur));
  transform: translate(-50%, -50%) scale(var(--planet-scale));
  animation: rolePlanetScatterFloat 6.2s ease-in-out infinite;
  animation-delay: var(--delay);
  will-change: transform;
}

.role-planet-button:hover {
  filter: brightness(1.12);
}

.choice-button:active,
.neon-button:active {
  transform: scale(0.98);
}

.role-planet-button:active {
  animation-play-state: paused;
  transform: translate(-50%, -50%) scale(calc(var(--planet-scale) - 0.04));
}

.planet-shape {
  --hue: inherit;
  position: relative;
  display: grid;
  place-items: center;
  width: 94px;
  height: 88px;
  margin: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.planet-shape::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1px;
  width: 70px;
  height: 16px;
  border-radius: 50%;
  background: hsla(var(--hue), 92%, 62%, 0.24);
  filter: blur(8px);
  transform: translateX(-50%);
}

.planet-shape img {
  position: relative;
  z-index: 1;
  display: block;
  width: 96px;
  height: 96px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 12px hsla(var(--hue), 92%, 62%, 0.34))
    drop-shadow(0 12px 14px rgba(0, 0, 0, 0.24));
}

.planet-copy {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 2;
  display: grid;
  gap: 2px;
  justify-items: center;
  width: 138px;
  border: 1px solid rgba(80, 234, 255, 0.18);
  border-radius: 18px;
  padding: 6px 10px 8px;
  background:
    linear-gradient(180deg, rgba(8, 24, 54, 0.86), rgba(5, 15, 35, 0.64));
  box-shadow:
    inset 0 0 18px hsla(var(--hue), 92%, 62%, 0.08),
    0 8px 18px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  transform: translate(-50%, calc(-100% - 2px));
}

.planet-copy::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 1px;
  height: 8px;
  background: linear-gradient(180deg, rgba(80, 234, 255, 0.62), rgba(80, 234, 255, 0));
  box-shadow: 0 0 10px hsla(var(--hue), 92%, 62%, 0.52);
  transform: translateX(-50%);
}

.planet-copy b {
  display: block;
  max-width: 100%;
  min-height: 14px;
  overflow: hidden;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.18;
  text-align: center;
  white-space: nowrap;
  font-weight: 900;
  text-shadow: 0 0 10px hsla(var(--hue), 92%, 62%, 0.32);
  text-overflow: ellipsis;
}

.planet-copy small {
  display: block;
  max-width: 100%;
  overflow: hidden;
  color: rgba(185, 246, 255, 0.76);
  font-size: 9px;
  line-height: 1.12;
  text-align: center;
  white-space: nowrap;
  font-weight: 800;
  letter-spacing: 0;
  text-overflow: ellipsis;
}

.map-hint {
  position: relative;
  z-index: 2;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  padding: 10px 12px;
  color: rgba(238, 251, 255, 0.68);
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
  line-height: 1.55;
}

.role-detail-panel,
.match-panel,
.result-card {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(56, 231, 255, 0.22);
  border-radius: 22px;
  background: var(--panel);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 54px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.role-detail-panel {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  min-height: auto;
  padding: 16px;
  overflow: visible;
}

.explorer-screen[data-screen="detail"],
.explorer-screen[data-screen="apply"] {
  padding-bottom: calc(28px + env(safe-area-inset-bottom));
}

.role-detail-visual {
  position: relative;
  height: 118px;
  flex: 0 0 auto;
}

.detail-planet {
  position: absolute;
  right: 16px;
  top: 8px;
  width: 104px;
  height: 104px;
  border-radius: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  box-shadow: none;
  filter:
    drop-shadow(0 0 18px hsla(var(--hue), 92%, 62%, 0.36))
    drop-shadow(0 18px 18px rgba(0, 0, 0, 0.24));
  animation: explorerPlanetFloat 6s ease-in-out infinite;
}

.detail-orbit-line {
  position: absolute;
  right: 4px;
  top: 12px;
  width: 132px;
  height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.role-detail-head {
  margin-top: -28px;
  padding-right: 104px;
}

.salary-chip {
  display: inline-flex;
  margin-bottom: 9px;
  border-radius: 999px;
  padding: 6px 11px;
  color: #051225;
  background: #ffdc67;
  font-size: 12px;
  font-weight: 900;
}

.role-detail-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.14;
}

.role-detail-head p {
  margin: 10px 0 0;
  color: var(--copy);
  font-size: 13px;
  line-height: 1.62;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 11px;
}

.tag-row span {
  border: 1px solid rgba(56, 231, 255, 0.24);
  border-radius: 999px;
  padding: 5px 8px;
  color: #bdfaff;
  background: rgba(56, 231, 255, 0.08);
  font-size: 11px;
  font-weight: 800;
}

.detail-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 14px 0 10px;
}

.detail-tabs button {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(238, 251, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.detail-tabs button.is-active {
  color: #051225;
  background: linear-gradient(90deg, #63f0ff, #ffffff);
}

.detail-scroll {
  min-height: auto;
  overflow: visible;
  padding-right: 0;
}

.detail-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
  counter-reset: detail;
}

.detail-list li {
  counter-increment: detail;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 10px 10px 10px 38px;
  color: rgba(238, 251, 255, 0.82);
  background: rgba(255, 255, 255, 0.055);
  font-size: 12px;
  line-height: 1.58;
}

.detail-list li::before {
  content: counter(detail, decimal-leading-zero);
  position: absolute;
  left: 10px;
  top: 10px;
  color: #ffdc67;
  font-size: 11px;
  font-weight: 900;
}

.match-panel {
  flex: 1 1 auto;
  min-height: 0;
  margin-top: 38px;
  padding: 20px 16px;
}

.match-progress {
  height: 6px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.match-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffdc67, #38e7ff);
  transition: width 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.match-panel h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.22;
}

.choice-list {
  display: grid;
  gap: 12px;
}

.choice-button {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 66px;
  border: 1px solid rgba(56, 231, 255, 0.42);
  border-radius: 16px;
  padding: 10px;
  color: #dffcff;
  background: rgba(37, 88, 134, 0.36);
  box-shadow: inset 0 0 24px rgba(56, 231, 255, 0.08);
  cursor: pointer;
  text-align: left;
}

.choice-button span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #041328;
  background: #63f0ff;
  font-weight: 900;
}

.choice-button b {
  font-size: 14px;
  line-height: 1.45;
}

.choice-button.is-selected {
  border-color: #ffffff;
  background: rgba(56, 231, 255, 0.46);
  box-shadow:
    0 0 26px rgba(56, 231, 255, 0.28),
    inset 0 0 30px rgba(255, 255, 255, 0.18);
}

.result-card {
  flex: 1 1 auto;
  min-height: 0;
  margin-top: 32px;
  padding: 26px 18px 20px;
  text-align: center;
  overflow: hidden;
}

.result-planet {
  width: 150px;
  height: 150px;
  margin: 0 auto 24px;
  animation: explorerPlanetFloat 6s ease-in-out infinite;
}

.result-card h2 {
  margin: 0;
  color: #ffffff;
  font-size: 31px;
  line-height: 1.2;
}

.result-card h2 span {
  color: #65f1ff;
}

.result-card p:not(.story-kicker) {
  margin: 14px 0 0;
  color: rgba(238, 251, 255, 0.76);
  font-size: 14px;
  line-height: 1.7;
}

.result-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.result-meta span {
  border-radius: 999px;
  padding: 7px 10px;
  color: #061832;
  background: #ffdc67;
  font-size: 12px;
  font-weight: 900;
}

.result-actions {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.apply-card {
  display: flex;
  flex-direction: column;
}

.apply-screen {
  gap: 18px;
}

.apply-screen::before {
  content: "";
  display: none;
  position: fixed;
  left: 50%;
  bottom: -180px;
  z-index: 0;
  width: min(520px, 122vw);
  height: min(520px, 122vw);
  background:
    radial-gradient(circle at 48% 38%, rgba(255, 239, 166, 0.9), rgba(244, 182, 79, 0.76) 34%, rgba(255, 196, 84, 0.12) 58%, transparent 72%);
  filter: blur(0.2px);
  opacity: 0.34;
  transform: translateX(-50%);
  pointer-events: none;
}

.apply-screen::after {
  content: "";
  display: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 82% 22%, rgba(88, 226, 255, 0.18), transparent 28%),
    radial-gradient(circle at 14% 62%, rgba(255, 220, 103, 0.1), transparent 24%);
  pointer-events: none;
}

.apply-flow-card {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  display: grid;
  gap: 18px;
  padding: 0 2px 4px;
  background: transparent;
  overflow: visible;
}

.apply-flow-card::before {
  content: "";
  display: none;
  position: absolute;
  top: 80px;
  right: -72px;
  z-index: 0;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(128, 240, 255, 0.16);
  border-radius: 50%;
  box-shadow:
    inset 0 0 44px rgba(88, 226, 255, 0.06),
    0 0 38px rgba(88, 226, 255, 0.08);
  transform: rotate(-16deg);
  pointer-events: none;
}

.apply-flow-card::after {
  content: "";
  display: none;
  position: absolute;
  top: 144px;
  right: 12px;
  z-index: 0;
  width: 172px;
  height: 68px;
  border-top: 1px solid rgba(128, 240, 255, 0.16);
  border-radius: 50%;
  transform: rotate(-18deg);
  pointer-events: none;
}

.apply-flow-card > * {
  position: relative;
  z-index: 1;
}

.apply-flow-hero {
  min-height: 154px;
  padding: 18px 154px 10px 0;
}

.apply-flow-hero h2 {
  margin: 0;
  color: #ffffff;
  font-family: "DouyinMeihao", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(34px, 9.2vw, 44px);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-shadow:
    0 18px 34px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(118, 236, 255, 0.22);
}

.apply-planet {
  position: absolute;
  top: -4px;
  right: -42px;
  width: 204px;
  height: 204px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter:
    drop-shadow(0 0 28px hsla(var(--hue), 92%, 62%, 0.42))
    drop-shadow(0 24px 22px rgba(0, 0, 0, 0.34));
  animation: explorerPlanetFloat 6s cubic-bezier(0.32, 0.72, 0, 1) infinite;
}

.apply-salary {
  display: inline-flex;
  margin-top: 16px;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: #fff2ad;
  background: transparent;
  box-shadow: none;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  text-shadow:
    0 0 18px rgba(255, 220, 103, 0.34),
    0 0 10px rgba(104, 243, 255, 0.18);
}

.apply-flow-list {
  position: relative;
  display: grid;
  gap: 2px;
  margin: -6px 0 2px;
  padding: 6px 0 8px;
  list-style: none;
  counter-reset: applyFlow;
}

.apply-flow-list::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  bottom: 20px;
  width: 1px;
  background:
    linear-gradient(180deg, transparent, rgba(128, 240, 255, 0.28), transparent);
  box-shadow: none;
}

.apply-flow-list li {
  counter-increment: applyFlow;
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: start;
  min-height: 66px;
  border: 0;
  border-radius: 0;
  padding: 9px 0 9px;
  background: transparent;
  box-shadow: none;
  clip-path: none;
}

.apply-flow-list li::before {
  content: "";
  display: none;
}

.apply-flow-list li::after {
  content: "";
  position: absolute;
  left: 42px;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(128, 240, 255, 0.18), transparent);
}

.kolo-step-icon,
.kolo-inline-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.kolo-step-icon {
  position: relative;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 0;
  color: #b6fbff;
  background: transparent;
  box-shadow: none;
}

.kolo-step-icon::before {
  content: "";
  display: none;
}

.kolo-step-icon::after {
  content: "";
  display: none;
}

.kolo-step-icon svg,
.kolo-inline-icon svg,
.copy-email-button svg {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke: none;
  filter:
    drop-shadow(0 0 10px rgba(104, 243, 255, 0.28))
    drop-shadow(0 4px 8px rgba(0, 0, 0, 0.18));
}

.apply-flow-list b,
.apply-material-panel b {
  display: block;
  padding-right: 0;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.3;
}

.apply-flow-list li > div {
  padding-top: 2px;
}

.apply-flow-list li > div > span {
  display: block;
  max-width: 296px;
  margin-top: 8px;
  color: rgba(226, 247, 255, 0.7);
  font-size: 12px;
  line-height: 1.62;
}

.apply-mail-panel {
  position: relative;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(184, 247, 255, 0.2);
  border-radius: 20px;
  padding: 14px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.1), transparent 18% 78%, rgba(128, 240, 255, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(5, 15, 33, 0.32));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 46px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.apply-mail-panel::before,
.apply-mail-panel::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #061125;
  transform: translateY(-50%);
}

.apply-mail-panel::before {
  left: -9px;
}

.apply-mail-panel::after {
  right: -9px;
}

.apply-mail-panel > span,
.apply-mail-line div span {
  color: rgba(173, 248, 255, 0.72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.apply-mail-panel > b {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.55;
}

.apply-mail-panel strong {
  color: #fff2ad;
  font-size: 18px;
  line-height: 1.24;
  text-shadow: 0 0 18px rgba(255, 220, 103, 0.18);
}

.apply-mail-line {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 10px;
  align-items: center;
}

.kolo-inline-icon {
  width: 32px;
  height: 32px;
  color: #bcfbff;
}

.copy-email-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 70px;
  height: 34px;
  border: 1px solid rgba(255, 230, 147, 0.42);
  border-radius: 999px;
  padding: 0 11px;
  color: #fff2ad;
  background:
    linear-gradient(180deg, rgba(255, 240, 174, 0.13), rgba(255, 220, 103, 0.04));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 0 16px rgba(255, 220, 103, 0.06);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.copy-email-button svg {
  width: 14px;
  height: 14px;
  color: currentColor;
  filter: none;
}

.copy-email-button svg path {
  fill: currentColor;
}

.copy-email-button.is-copied {
  border-color: rgba(173, 248, 255, 0.62);
  color: #061125;
  background: linear-gradient(90deg, #bcfbff, #ffffff 58%, #fff2ad);
}

.copy-email-button b {
  color: inherit;
  font: inherit;
  line-height: 1;
}

.copy-feedback {
  min-height: 17px;
  margin: -3px 0 0 44px;
  color: rgba(255, 220, 103, 0.78);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.45;
}

.apply-material-panel {
  border: 0;
  border-top: 1px solid rgba(128, 240, 255, 0.14);
  padding: 2px 0 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.apply-material-panel b {
  padding-right: 0;
}

.apply-material-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.apply-material-panel li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(128, 240, 255, 0.12);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(238, 251, 255, 0.76);
  background: rgba(255, 255, 255, 0.035);
  font-size: 11px;
  line-height: 1.35;
  text-align: center;
}

.apply-material-panel li::before {
  content: "";
  display: none;
}

.apply-card .result-planet {
  flex: 0 0 auto;
}

.apply-checklist {
  min-height: 0;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  overflow: auto;
  list-style: none;
  counter-reset: apply;
  -webkit-overflow-scrolling: touch;
}

.apply-checklist li {
  counter-increment: apply;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  padding: 9px 10px 9px 38px;
  color: rgba(238, 251, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
}

.apply-checklist li::before {
  content: counter(apply, decimal-leading-zero);
  position: absolute;
  left: 10px;
  top: 9px;
  color: #ffdc67;
  font-size: 11px;
  font-weight: 900;
}

@keyframes explorerStarDrift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-74px, 74px, 0);
  }
}

@keyframes explorerMeteor {
  0%,
  42% {
    opacity: 0;
    transform: translate3d(120px, -80px, 0) rotate(-34deg);
  }

  52% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(-160px, 110px, 0) rotate(-34deg);
  }
}

@keyframes explorerPlanetFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-5deg);
  }

  50% {
    transform: translate3d(8px, -12px, 0) rotate(4deg);
  }
}

@keyframes homeGoldFloat {
  0%,
  100% {
    transform: translate3d(-50%, 0, 0) rotate(-2deg);
  }

  50% {
    transform: translate3d(calc(-50% + 6px), -10px, 0) rotate(2deg);
  }
}

@keyframes homeIpFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(-4px, -8px, 0) rotate(-2deg);
  }
}

@keyframes roleStarMist {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes rolePlanetScatterFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(var(--planet-scale));
  }

  50% {
    transform: translate(-50%, -50%) translate3d(6px, -10px, 0) scale(calc(var(--planet-scale) + 0.03));
  }
}

@keyframes explorerCardIn {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (max-width: 390px) {
  .role-explorer {
    min-height: 100svh;
  }

  .explorer-screen {
    padding-left: 18px;
    padding-right: 18px;
  }

  .role-orbit {
    height: clamp(470px, calc(100svh - 282px), 560px);
  }

  .requirement-grid {
    gap: 8px;
  }

  .requirement-card {
    min-height: 138px;
    padding: 11px 10px;
  }

  .requirement-card strong {
    font-size: 15px;
  }

  .role-planet-button {
    width: 98px;
    height: 98px;
    min-height: 98px;
  }

  .planet-shape {
    width: 80px;
    height: 76px;
  }

  .planet-shape img {
    width: 84px;
    height: 84px;
  }

  .planet-copy {
    width: 122px;
    padding: 6px 7px 7px;
  }

  .planet-copy b {
    min-height: 13px;
    font-size: 12px;
  }

  .planet-copy small {
    font-size: 8px;
  }

  .role-detail-head {
    padding-right: 84px;
  }

  .role-detail-head h2,
  .match-panel h2,
  .result-card h2,
  .apply-flow-hero h2 {
    font-size: 31px;
  }

  .detail-planet {
    width: 90px;
    height: 90px;
  }

  .apply-flow-hero {
    min-height: 150px;
    padding-right: 112px;
  }

  .apply-planet {
    right: -36px;
    width: 152px;
    height: 152px;
  }

  .apply-mail-line {
    grid-template-columns: 38px 1fr;
  }

  .copy-email-button {
    grid-column: 2;
    justify-self: start;
  }

  .copy-feedback {
    margin-left: 48px;
  }

  .detail-actions {
    grid-template-columns: 0.92fr 1.08fr;
  }
}
