: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;
  }
}

/* Star-orbit A4 recruitment poster */
.poster-body {
  background: #050814;
}

.poster-sheet {
  height: 297mm;
  min-height: 297mm;
  color: #ffffff;
  background: #050814;
  isolation: isolate;
}

.poster-sheet::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background:
    radial-gradient(circle at 78% 12%, rgba(68, 230, 255, 0.2), transparent 20%),
    radial-gradient(circle at 18% 63%, rgba(255, 220, 103, 0.12), transparent 18%),
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 1px, transparent 1.6px);
  background-size: auto, auto, 28mm 28mm;
  pointer-events: none;
}

.poster-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  filter: contrast(1.04) saturate(0.92);
}

.poster-sheet::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(3, 7, 18, 0.08), rgba(3, 7, 18, 0.34) 54%, rgba(3, 7, 18, 0.16)),
    radial-gradient(ellipse at 52% 30%, rgba(65, 240, 255, 0.12), transparent 34%),
    radial-gradient(ellipse at 50% 94%, rgba(255, 220, 103, 0.18), transparent 28%);
  pointer-events: none;
}

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

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

.poster-planet-blue {
  left: 18mm;
  top: 34mm;
  width: 34mm;
  opacity: 0.78;
  filter: drop-shadow(0 0 10mm rgba(65, 140, 255, 0.2));
}

.poster-planet-teal {
  left: -28mm;
  top: 95mm;
  width: 70mm;
  opacity: 0.72;
  filter: drop-shadow(0 0 12mm rgba(69, 240, 255, 0.16));
}

.poster-planet-gold {
  left: 50%;
  bottom: -38mm;
  width: 142mm;
  opacity: 0.72;
  transform: translateX(-50%);
  filter: drop-shadow(0 0 14mm rgba(255, 220, 103, 0.18));
}

.poster-planet-purple {
  right: -25mm;
  top: 57mm;
  width: 56mm;
  opacity: 0.74;
  filter: drop-shadow(0 0 12mm rgba(172, 92, 255, 0.18));
}

.poster-ip {
  right: 19mm;
  top: 38mm;
  width: 35mm;
  opacity: 0.92;
  filter: none;
}

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

.poster-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(238, 251, 255, 0.9);
  font-size: 14px;
  font-weight: 900;
}

.poster-logo span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #68f3ff, #ffe073);
  box-shadow: 0 0 18px rgba(104, 243, 255, 0.65);
}

.poster-logo strong {
  text-shadow: 0 0 18px rgba(104, 243, 255, 0.2);
}

.poster-year {
  border: 1px solid rgba(104, 243, 255, 0.26);
  padding: 6px 12px;
  color: #dffcff;
  background: rgba(5, 18, 42, 0.48);
  clip-path: polygon(9% 0, 100% 0, 91% 100%, 0 100%);
  box-shadow: inset 0 0 18px rgba(104, 243, 255, 0.1);
  font-size: 13px;
  font-weight: 900;
}

.poster-hero-copy {
  width: 120mm;
  margin: 20mm 0 0 13mm;
}

.poster-hero-copy h1 {
  margin: 0;
  color: #ffffff;
  font-family: "DouyinMeihao", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 53px;
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow:
    0 5px 0 rgba(54, 126, 255, 0.9),
    0 0 26px rgba(56, 231, 255, 0.34),
    0 14px 28px rgba(0, 0, 0, 0.34);
}

.poster-hero-copy p {
  max-width: 92mm;
  margin: 7mm 0 0;
  color: rgba(238, 251, 255, 0.86);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.7;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.44);
}

.poster-ribbon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 82mm;
  margin-top: 7mm;
  border: 2px solid rgba(188, 252, 255, 0.76);
  border-radius: 999px;
  padding: 9px 20px;
  color: #041328;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0 12%, transparent 13%),
    linear-gradient(90deg, #fff06b 0%, #36f2ff 48%, #1888ff 100%);
  box-shadow:
    inset 0 -6px 0 rgba(0, 63, 122, 0.18),
    0 0 0 5px rgba(30, 217, 255, 0.08),
    0 0 26px rgba(75, 235, 255, 0.42);
  font-size: 16px;
  font-weight: 900;
}

.poster-info-panel {
  position: absolute;
  left: 11mm;
  right: 11mm;
  bottom: 11mm;
  display: grid;
  gap: 5mm;
}

.poster-about-card,
.poster-role-panel,
.poster-growth-card,
.poster-qr {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(104, 243, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(5, 17, 41, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 0 26px rgba(104, 243, 255, 0.06),
    0 12px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.poster-about-card {
  padding: 6mm 7mm 5.5mm;
}

.poster-card-title {
  display: flex;
  align-items: center;
  gap: 4mm;
  margin-bottom: 3.8mm;
}

.poster-card-title h2 {
  margin: 0;
  color: #ffffff;
  font-family: "DouyinMeihao", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 29px;
  line-height: 1;
  text-shadow:
    0 3px 0 rgba(47, 119, 255, 0.72),
    0 0 18px rgba(56, 231, 255, 0.24);
}

.poster-card-title span {
  flex: 0 0 32mm;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffdc67, #ff57c1, #38e7ff);
  transform: skewX(-18deg);
  box-shadow: 0 0 16px rgba(56, 231, 255, 0.3);
}

.poster-about-card p {
  margin: 0;
  color: rgba(238, 251, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.72;
}

.poster-role-panel {
  padding: 5.5mm 6mm 5mm;
}

.poster-role-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4mm 3mm;
}

.poster-role-grid article {
  min-height: 31mm;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
}

.poster-role-grid img {
  width: 16mm;
  height: 16mm;
  object-fit: contain;
  filter: drop-shadow(0 0 5mm rgba(104, 243, 255, 0.24));
}

.poster-role-grid b {
  margin-top: 1.6mm;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.22;
}

.poster-role-grid small {
  margin-top: 1mm;
  color: rgba(191, 246, 255, 0.72);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.2;
}

.poster-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 42mm;
  gap: 5mm;
  align-items: stretch;
}

.poster-growth-card {
  padding: 5.5mm 6mm;
}

.poster-growth-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5mm;
}

.poster-growth-grid div {
  min-height: 20mm;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 7px;
  padding: 3mm;
  background: rgba(255, 255, 255, 0.045);
}

.poster-growth-grid div:last-child {
  grid-column: 1 / -1;
  min-height: 15mm;
}

.poster-growth-grid b {
  display: block;
  color: #ffffff;
  font-family: "DouyinMeihao", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 19px;
  line-height: 1.05;
  text-shadow: 0 3px 0 rgba(47, 119, 255, 0.56);
}

.poster-growth-grid span {
  display: block;
  margin-top: 1.8mm;
  color: rgba(238, 251, 255, 0.78);
  font-size: 10px;
  font-weight: 800;
}

.poster-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5mm 4mm;
  text-align: center;
}

.poster-qr img {
  width: 31mm;
  height: 31mm;
  padding: 5px;
  border: 2px solid rgba(104, 243, 255, 0.52);
  border-radius: 8px;
  background: #ffffff;
  box-shadow:
    0 0 0 4px rgba(104, 243, 255, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.22);
}

.poster-qr strong {
  margin-top: 3.2mm;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.18;
}

.poster-qr span {
  margin-top: 1.5mm;
  color: rgba(238, 251, 255, 0.72);
  font-size: 9.5px;
  font-weight: 800;
  line-height: 1.35;
}

.poster-qr em {
  margin-top: 2.4mm;
  color: #fff0a6;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
}

.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, rgba(255, 255, 255, 0.92), rgba(86, 239, 255, 0.42) 34%, transparent);
  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(96px + 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: hidden;
  overscroll-behavior: contain;
  touch-action: pan-x;
}

.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: 36px;
  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;
}

.screen-logo {
  display: block;
  width: clamp(96px, 30vw, 132px);
  height: auto;
  max-height: 48px;
  max-width: 42vw;
  object-fit: contain;
  object-position: left center;
}

.role-explorer .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: 34px;
  font-weight: 900;
  line-height: 0.82;
}

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

.landing-transition {
  position: absolute;
  inset: 0;
  z-index: 30;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 68%, hsla(var(--landing-hue, 196), 90%, 58%, 0.28), transparent 28%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.16), transparent 11%),
    rgba(3, 7, 18, 0);
}

.landing-transition.is-active {
  visibility: visible;
  animation: landingBackdrop 1300ms linear both;
}

.landing-transition img {
  position: absolute;
  left: var(--start-x, 50%);
  top: var(--start-y, 50%);
  z-index: 2;
  display: block;
  width: var(--start-size, 96px);
  height: var(--start-size, 96px);
  object-fit: contain;
  filter:
    drop-shadow(0 0 22px hsla(var(--landing-hue, 196), 92%, 62%, 0.64))
    drop-shadow(0 22px 28px rgba(0, 0, 0, 0.34));
  transform: translate(-50%, -50%);
  transform-origin: center;
}

.landing-warp-ring {
  position: absolute;
  left: 50%;
  top: 67%;
  width: 150px;
  height: 150px;
  border: 1px solid hsla(var(--landing-hue, 196), 92%, 62%, 0.5);
  border-radius: 50%;
  box-shadow:
    inset 0 0 36px hsla(var(--landing-hue, 196), 92%, 62%, 0.16),
    0 0 34px hsla(var(--landing-hue, 196), 92%, 62%, 0.34);
  transform: translate(-50%, -50%) rotate(-18deg) scale(0.2);
  opacity: 0;
  animation: landingWarpRing 1300ms linear both;
}

.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;
  min-height: 48px;
  align-items: flex-start;
}

.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: auto;
  bottom: calc(20px + env(safe-area-inset-bottom));
}

.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(-430px, calc(18svh - 590px), -160px);
  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: 1.02;
  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: absolute;
  left: 22px;
  right: 22px;
  bottom: calc(20px + env(safe-area-inset-bottom));
  z-index: 12;
  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: 0;
}

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

.neon-button {
  min-height: 56px;
  border: 2px solid rgba(188, 252, 255, 0.86);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #eaffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0 10%, transparent 11%),
    rgba(6, 22, 48, 0.72);
  box-shadow:
    inset 0 -7px 0 rgba(0, 63, 122, 0.12),
    inset 0 0 20px rgba(56, 231, 255, 0.14),
    0 0 0 5px rgba(30, 217, 255, 0.07),
    0 16px 34px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  font-size: 16px;
  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: 0;
  border-color: rgba(188, 252, 255, 0.92);
  color: #041328;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0 8%, transparent 9%),
    linear-gradient(90deg, #63f0ff 0%, #ffffff 48%, #ffcf5d 100%);
  box-shadow:
    inset 0 -8px 0 rgba(0, 63, 122, 0.18),
    inset 0 0 20px rgba(255, 255, 255, 0.34),
    0 0 0 5px rgba(30, 217, 255, 0.1),
    0 0 28px rgba(75, 235, 255, 0.48),
    0 18px 42px rgba(0, 0, 0, 0.3);
}

.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: 25px;
  line-height: 1.2;
}

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

.explorer-screen[data-screen="map"] {
  padding-top: calc(28px + env(safe-area-inset-top));
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: calc(28px + env(safe-area-inset-bottom));
}

.explorer-screen[data-screen="map"] .screen-topbar {
  position: absolute;
  left: 22px;
  top: calc(20px + env(safe-area-inset-top));
  z-index: 6;
}

.explorer-screen[data-screen="map"] .section-title-block {
  flex: 0 0 auto;
  margin: 4px 0 8px;
  padding: 0 24px;
}

.explorer-screen[data-screen="map"] .section-title-block h2 {
  font-size: clamp(22px, 5.6vw, 27px);
  line-height: 1.16;
}

.explorer-screen[data-screen="map"] .section-title-block i {
  width: 82px;
  height: 5px;
}

.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-breaker,
.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: 6px;
  margin: 2px 0 12px;
}

.about-screen .section-title-block span,
.growth-screen .section-title-block span {
  color: #ffffff;
  font-size: 12px;
  text-shadow: none;
}

.about-screen .section-title-block h2,
.growth-screen .section-title-block h2 {
  font-size: clamp(34px, 10.5vw, 48px);
  line-height: 0.98;
  text-shadow: none;
}

.about-screen .section-title-block h2 {
  font-size: 24px;
  line-height: 1;
  text-shadow: none;
}

.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: 92px;
  height: 6px;
  background: linear-gradient(90deg, #ffdc67, #ff57c1, #38e7ff);
  box-shadow: none;
}

.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: 20px;
  padding: 13px 13px 14px;
  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: 11.6px;
  font-weight: 800;
  line-height: 1.56;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
}

.about-breaker {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 10px;
  margin: 16px 0 4px;
  padding: 0 2px;
}

.about-breaker b {
  color: #ffffff;
  font-family: "DouyinMeihao", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.08;
  text-align: center;
  text-shadow: none;
}

.about-breaker div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.about-breaker span {
  border: 1px solid rgba(104, 243, 255, 0.18);
  border-radius: 999px;
  padding: 8px 8px;
  color: rgba(238, 251, 255, 0.88);
  background:
    linear-gradient(90deg, rgba(104, 243, 255, 0.12), rgba(255, 220, 103, 0.06)),
    rgba(255, 255, 255, 0.035);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.about-screen .growth-title,
.about-screen .growth-grid {
  position: relative;
  z-index: 3;
}

.growth-title {
  display: grid;
  gap: 5px;
  margin: 18px 0 11px;
  text-align: center;
}

.growth-title b {
  color: #ffffff;
  font-family: "DouyinMeihao", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  text-shadow: none;
}

.growth-title span {
  color: rgba(238, 251, 255, 0.86);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
}

.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 {
  display: none;
}

.about-proof-grid .about-proof-icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-bottom: 9px;
  border: 1px solid rgba(104, 243, 255, 0.42);
  border-radius: 9px;
  color: #68f3ff;
  background: rgba(104, 243, 255, 0.1);
  box-shadow: 0 0 15px rgba(104, 243, 255, 0.14);
}

.about-proof-grid article:nth-child(2) .about-proof-icon,
.about-proof-grid article:nth-child(4) .about-proof-icon {
  border-color: rgba(255, 220, 103, 0.42);
  color: #ffe073;
  background: rgba(255, 220, 103, 0.1);
  box-shadow: 0 0 15px rgba(255, 220, 103, 0.12);
}

.about-proof-grid .about-proof-icon svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.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: 0 12px;
  border: 1px solid rgba(104, 243, 255, 0.22);
  border-radius: 18px;
  padding: 8px 12px;
  background:
    linear-gradient(145deg, rgba(104, 243, 255, 0.1), rgba(255, 220, 103, 0.04)),
    rgba(7, 20, 48, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 0 28px rgba(104, 243, 255, 0.06);
  backdrop-filter: blur(16px);
}

.growth-grid article {
  position: relative;
  overflow: visible;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: start;
  align-items: center;
  column-gap: 8px;
  border: 0;
  border-bottom: 1px solid rgba(104, 243, 255, 0.1);
  border-radius: 0;
  padding: 10px 0 9px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.growth-grid article::after {
  display: none;
}

.growth-grid article.wide {
  grid-column: 1 / -1;
  min-height: 0;
  border-bottom: 0;
}

.growth-grid b {
  display: block;
  min-width: 0;
  color: #ffffff;
  font-family: "DouyinMeihao", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 18px;
  line-height: 1.06;
  text-shadow: none;
}

.growth-grid span {
  display: inline-flex;
  justify-self: end;
  margin-top: 0;
  border-radius: 999px;
  padding: 3px 7px;
  color: #05142a;
  background: linear-gradient(90deg, #68f3ff, #ffe073);
  font-size: 9px;
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
}

.growth-grid p {
  grid-column: 1 / -1;
  display: none;
  margin: 5px 0 0;
  color: rgba(238, 251, 255, 0.78);
  font-size: 10.4px;
  font-weight: 750;
  line-height: 1.34;
}

.growth-slogan {
  margin: 18px 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: none;
}

.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;
  scrollbar-width: none;
}

.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: 92px;
  height: 6px;
  background: linear-gradient(90deg, #ffdc67, #ff57c1, #38e7ff);
  box-shadow: none;
}

.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-explorer .screen-actions,
.role-explorer .about-screen .screen-actions,
.role-explorer .growth-screen .screen-actions,
.role-explorer .requirements-screen .screen-actions,
.role-explorer [data-screen="detail"] .screen-actions,
.role-explorer .apply-screen .screen-actions,
.generated-home.role-explorer [data-screen="intro"] .screen-actions {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: calc(20px + env(safe-area-inset-bottom));
  z-index: 12;
  margin-top: 0;
  padding-top: 0;
}

.role-explorer .screen-actions .neon-button,
.role-explorer .screen-actions .neon-button.primary,
.generated-home.role-explorer [data-screen="intro"] .neon-button.primary,
.role-explorer .requirements-screen .neon-button.primary {
  min-height: 56px;
  border-width: 2px;
  border-color: rgba(188, 252, 255, 0.92);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
}

.role-explorer .screen-actions .neon-button.primary,
.generated-home.role-explorer [data-screen="intro"] .neon-button.primary,
.role-explorer .requirements-screen .neon-button.primary {
  color: #041328;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0 8%, transparent 9%),
    linear-gradient(90deg, #63f0ff 0%, #ffffff 48%, #ffcf5d 100%);
  box-shadow:
    inset 0 -8px 0 rgba(0, 63, 122, 0.18),
    inset 0 0 20px rgba(255, 255, 255, 0.34),
    0 0 0 5px rgba(30, 217, 255, 0.1),
    0 0 28px rgba(75, 235, 255, 0.48),
    0 18px 42px rgba(0, 0, 0, 0.3);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.42);
}

.role-orbit {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  height: clamp(520px, calc(100svh - 140px), 690px);
  margin: 0 -8px 10px;
  overflow: visible;
  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-explorer .neon-button,
.role-explorer .neon-button.primary,
.generated-home.role-explorer [data-screen="intro"] .neon-button.primary,
.role-explorer .requirements-screen .neon-button.primary,
.role-explorer .icon-button,
.role-explorer .copy-email-button,
.role-explorer .detail-tabs button,
.role-explorer .choice-button {
  box-shadow: none;
}

.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: 0;
  justify-items: center;
  width: min(144px, 36vw);
  border: 1px solid rgba(80, 234, 255, 0.18);
  border-radius: 18px;
  padding: 7px 8px 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: 0;
  overflow: visible;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.18;
  text-align: center;
  white-space: normal;
  font-weight: 900;
  text-shadow: 0 0 10px hsla(var(--hue), 92%, 62%, 0.32);
  text-overflow: clip;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.planet-copy small {
  display: none;
  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 {
  --ticket-perforation: 12px;
  --ticket-notch-y: 49%;
  z-index: 6;
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  min-height: auto;
  max-height: none;
  margin-top: 8px;
  border: 0;
  border-radius: 18px;
  padding: 16px 12px 18px;
  overflow: hidden;
  clip-path: none;
  color: #172133;
  background: transparent;
  mask:
    radial-gradient(circle at 50% 0, transparent calc(var(--ticket-perforation) - 5px), #000 calc(var(--ticket-perforation) - 4px)),
    radial-gradient(circle at 50% 100%, transparent calc(var(--ticket-perforation) - 5px), #000 calc(var(--ticket-perforation) - 4px)),
    radial-gradient(circle 10px at left var(--ticket-notch-y), transparent 98%, #000 100%),
    radial-gradient(circle 10px at right var(--ticket-notch-y), transparent 98%, #000 100%),
    linear-gradient(#000, #000);
  mask-repeat: repeat-x, repeat-x, no-repeat, no-repeat, no-repeat;
  mask-size:
    calc(var(--ticket-perforation) * 2) 100%,
    calc(var(--ticket-perforation) * 2) 100%,
    20px 20px,
    20px 20px,
    100% 100%;
  mask-position:
    calc(0.5 * var(--ticket-perforation)) top,
    calc(0.5 * var(--ticket-perforation)) bottom,
    left var(--ticket-notch-y),
    right var(--ticket-notch-y),
    center;
  mask-composite: intersect;
  -webkit-mask:
    radial-gradient(circle at 50% 0, transparent calc(var(--ticket-perforation) - 5px), #000 calc(var(--ticket-perforation) - 4px)),
    radial-gradient(circle at 50% 100%, transparent calc(var(--ticket-perforation) - 5px), #000 calc(var(--ticket-perforation) - 4px)),
    radial-gradient(circle 10px at left var(--ticket-notch-y), transparent 98%, #000 100%),
    radial-gradient(circle 10px at right var(--ticket-notch-y), transparent 98%, #000 100%),
    linear-gradient(#000, #000);
  -webkit-mask-repeat: repeat-x, repeat-x, no-repeat, no-repeat, no-repeat;
  -webkit-mask-size:
    calc(var(--ticket-perforation) * 2) 100%,
    calc(var(--ticket-perforation) * 2) 100%,
    20px 20px,
    20px 20px,
    100% 100%;
  -webkit-mask-position:
    calc(0.5 * var(--ticket-perforation)) top,
    calc(0.5 * var(--ticket-perforation)) bottom,
    left var(--ticket-notch-y),
    right var(--ticket-notch-y),
    center;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.66),
    inset 0 0 0 2px rgba(79, 112, 145, 0.14);
  backdrop-filter: none;
  filter: none;
  animation: ticketHover 4.2s ease-in-out infinite;
  will-change: transform;
}

.role-detail-panel::before,
.role-detail-panel::after {
  position: absolute;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.role-detail-panel::before {
  inset: 0;
  border-radius: 17px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(249, 253, 255, 0.72) 48%, rgba(247, 251, 255, 0.78) 100%),
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.64), transparent 18%),
    linear-gradient(116deg, rgba(255, 255, 255, 0.42), transparent 34%, rgba(57, 226, 255, 0.1) 54%, transparent 70%);
  mix-blend-mode: normal;
  opacity: 0.92;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.76),
    inset 0 0 0 2px rgba(79, 112, 145, 0.2);
}

.role-detail-panel::after {
  display: none;
}

.role-detail-panel > * {
  position: relative;
  z-index: 2;
}

.detail-ticket-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background-color: #f7fbff;
  filter: url("#detailTicketBump");
  opacity: 0.88;
  pointer-events: none;
}

.holographic {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.44) 42%, rgba(245, 250, 255, 0.72) 100%),
    radial-gradient(circle at 12% 8%, rgba(198, 255, 228, 0.52), transparent 24%),
    radial-gradient(circle at 94% 7%, rgba(255, 148, 220, 0.4), transparent 20%),
    radial-gradient(circle at 87% 92%, rgba(69, 137, 255, 0.26), transparent 28%),
    conic-gradient(
      at 82% 82%,
      #f8fbff,
      rgba(255, 125, 243, 0.48),
      rgba(53, 241, 255, 0.52),
      #f6f7fb,
      rgba(22, 134, 255, 0.42),
      rgba(255, 242, 185, 0.58),
      rgba(22, 134, 255, 0.38),
      rgba(255, 116, 239, 0.44),
      rgba(3, 7, 18, 0.04),
      rgba(22, 134, 255, 0.34),
      #f7f9ff,
      rgba(48, 255, 246, 0.42),
      #f8fbff
    );
}

.holographic::before,
.holographic::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.holographic::before {
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 0, 255, 0.22), transparent 20%),
    repeating-radial-gradient(circle at 22% 90%, rgba(255, 255, 255, 0.72), rgba(255, 85, 178, 0.14) 52px, rgba(238, 238, 238, 0.62) 156px);
  mix-blend-mode: color-burn;
  opacity: 0.38;
}

.holographic::after {
  background:
    linear-gradient(180deg, rgba(255, 36, 128, 0.08), rgba(48, 255, 246, 0.09), rgba(255, 220, 103, 0.1), rgba(255, 36, 128, 0.07));
  mix-blend-mode: difference;
  background-position: 0 0;
  background-size: 100% 280%;
  animation: ticketHolo 3.8s ease-in-out infinite alternate;
}

.detail-ticket-note {
  position: absolute;
  left: 14px;
  right: 14px;
  z-index: 1;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.44);
  font-family: "DouyinMeihao", "PingFang SC", sans-serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  mix-blend-mode: color-burn;
  pointer-events: none;
}

.detail-ticket-note-a {
  top: 23%;
  transform: rotate(-10deg);
}

.detail-ticket-note-b {
  top: 58%;
  opacity: 0.48;
  transform: rotate(8deg);
}

.detail-ticket-header {
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: 20px;
  margin: 0 4px 12px;
  color: rgba(17, 24, 39, 0.78);
}

.detail-ticket-header span {
  font-family: "DouyinMeihao", "PingFang SC", sans-serif;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #152132;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.78);
}

.detail-ticket-header b {
  display: none;
  border: 1px solid rgba(7, 17, 32, 0.16);
  border-radius: 999px 0;
  padding: 6px 10px;
  color: #344154;
  background: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.detail-ticket-footer {
  z-index: 3;
  display: flex;
  align-items: end;
  justify-content: flex-end;
  margin: 12px 14px 0;
  padding-top: 11px;
  border-top: 1px solid rgba(14, 27, 44, 0.14);
  color: rgba(10, 23, 41, 0.42);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.detail-ticket-footer i {
  width: 74px;
  height: 28px;
  background:
    repeating-linear-gradient(90deg, #0a1626 0 2px, transparent 2px 5px, #0a1626 5px 7px, transparent 7px 11px);
  opacity: 0.66;
}

.ticket-filter {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

@keyframes ticketHover {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateX(0deg);
  }
  50% {
    transform: translate3d(0, -4px, 0) rotateX(0.35deg);
  }
}

@keyframes ticketHolo {
  to {
    background-position: 0 420px;
  }
}

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

.role-landing-stage {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  height: clamp(176px, 25svh, 220px);
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 70%, hsla(var(--hue, 190), 92%, 62%, 0.22), transparent 34%),
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.09), transparent 26%),
    repeating-radial-gradient(ellipse at 50% 52%, transparent 0 42px, rgba(128, 240, 255, 0.08) 43px, transparent 45px),
    linear-gradient(180deg, rgba(7, 19, 43, 0.72), rgba(2, 8, 22, 0.96));
}

.role-landing-stage::before,
.role-landing-stage::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.role-landing-stage::before {
  left: 50%;
  bottom: 20px;
  z-index: 1;
  width: min(410px, 104vw);
  height: min(180px, 46vw);
  border: 1px solid rgba(128, 240, 255, 0.18);
  border-radius: 50%;
  box-shadow:
    inset 0 0 46px rgba(88, 226, 255, 0.08),
    0 0 42px rgba(88, 226, 255, 0.16);
  transform: translateX(-50%) rotate(-9deg);
}

.role-landing-stage::after {
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  height: 28px;
  background: linear-gradient(180deg, transparent, rgba(5, 17, 41, 0.34));
}

.detail-planet {
  position: absolute;
  left: 50%;
  right: auto;
  top: auto;
  bottom: clamp(-270px, -52vw, -190px);
  z-index: 2;
  width: min(430px, 106vw);
  height: min(430px, 106vw);
  border-radius: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  box-shadow: none;
  filter:
    drop-shadow(0 0 34px hsla(var(--hue), 92%, 62%, 0.42))
    drop-shadow(0 28px 34px rgba(0, 0, 0, 0.36));
  transform: translateX(-50%) rotate(-7deg);
  animation: detailPlanetSurface 7s ease-in-out infinite;
}

.detail-role-ip {
  position: absolute;
  left: 50%;
  bottom: clamp(8px, 2svh, 22px);
  z-index: 3;
  display: block;
  width: auto;
  height: min(208px, 24svh);
  max-width: 62vw;
  object-fit: contain;
  object-position: center bottom;
  user-select: none;
  pointer-events: none;
  filter:
    drop-shadow(0 0 20px hsla(var(--hue), 92%, 62%, 0.2))
    drop-shadow(0 20px 24px rgba(0, 0, 0, 0.16));
  transform: translateX(-50%);
  opacity: 1;
  transition: opacity 180ms ease;
  animation: detailIpFloat 6.4s ease-in-out infinite;
  will-change: transform;
}

.detail-role-ip.is-switching {
  opacity: 0;
}

.detail-orbit-line {
  position: absolute;
  left: 50%;
  z-index: 1;
  width: 330px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transform: translateX(-50%) rotate(-16deg);
  pointer-events: none;
}

.detail-orbit-line-a {
  bottom: 42px;
}

.detail-orbit-line-b {
  bottom: 82px;
  width: 440px;
  height: 198px;
  border-color: rgba(128, 240, 255, 0.12);
  transform: translateX(-50%) rotate(12deg);
}

.role-detail-head {
  margin-top: 0;
  padding: 17px 16px 14px;
}

.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: #111827;
  background: none;
  font-size: 28px;
  line-height: 1.14;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.62);
}

.role-detail-head p {
  margin: 10px 0 0;
  color: rgba(18, 31, 49, 0.88);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.62;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  margin-top: 12px;
}

.tag-row span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: rgba(18, 31, 49, 0.78);
  background: transparent;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.35;
  pointer-events: none;
  user-select: none;
}

.tag-row span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #20d4e8, #ffdc67);
  box-shadow: none;
}

.detail-tabs {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 0 16px 10px;
  padding-top: 18px;
}

.detail-tabs::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, rgba(12, 24, 38, 0.26) 0 10px, transparent 10px 18px);
  opacity: 0.52;
}

.detail-tabs button {
  min-height: 34px;
  border: 1px solid rgba(26, 45, 70, 0.18);
  border-radius: 999px;
  color: rgba(19, 31, 49, 0.68);
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

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

.detail-scroll {
  min-height: 238px;
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  margin: 0 16px;
  padding-right: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.detail-scroll::-webkit-scrollbar,
.apply-flow-card::-webkit-scrollbar,
.requirements-panel::-webkit-scrollbar {
  display: none;
}

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

.detail-list li {
  counter-increment: detail;
  position: relative;
  border: 0;
  border-radius: 0;
  padding: 12px 0 13px 38px;
  color: rgba(16, 27, 43, 0.9);
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.58;
}

.detail-list li::after {
  content: "";
  position: absolute;
  left: 38px;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(38, 67, 96, 0.24), rgba(38, 67, 96, 0.1), transparent);
}

.detail-list li::before {
  content: counter(detail, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 12px;
  color: #0ba8d6;
  background: none;
  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: 1 1 auto;
  min-height: 0;
  max-height: calc(100svh - 176px);
  display: grid;
  gap: 10px;
  padding: 0 2px 8px;
  background: transparent;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.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: 92px;
  padding: 8px 136px 0 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 landingBackdrop {
  0% {
    opacity: 0;
    backdrop-filter: blur(0);
  }

  16%,
  86% {
    opacity: 1;
    backdrop-filter: blur(3px);
  }

  100% {
    opacity: 0;
    backdrop-filter: blur(0);
  }
}

@keyframes landingPlanetDive {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }

  34% {
    opacity: 1;
    transform:
      translate(-50%, -50%)
      translate3d(var(--mid-x, 0), var(--mid-y, 0), 0)
      rotate(-5deg)
      scale(var(--mid-scale, 3));
  }

  76% {
    opacity: 1;
    transform:
      translate(-50%, -50%)
      translate3d(var(--land-x, 0), var(--land-y, 0), 0)
      rotate(-8deg)
      scale(calc(var(--land-scale, 5) * 0.88));
    filter:
      drop-shadow(0 0 34px hsla(var(--landing-hue, 196), 92%, 62%, 0.82))
      drop-shadow(0 30px 34px rgba(0, 0, 0, 0.38));
  }

  88% {
    opacity: 1;
    transform:
      translate(-50%, -50%)
      translate3d(var(--land-x, 0), var(--land-y, 0), 0)
      rotate(-9deg)
      scale(calc(var(--land-scale, 5) * 1.02));
  }

  100% {
    opacity: 0;
    transform:
      translate(-50%, -50%)
      translate3d(var(--land-x, 0), var(--land-y, 0), 0)
      rotate(-9deg)
      scale(calc(var(--land-scale, 5) * 1.08));
  }
}

@keyframes landingWarpRing {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-18deg) scale(0.18);
  }

  36% {
    opacity: 0.95;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-18deg) scale(2.85);
  }
}

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

  50% {
    transform: translateX(-50%) translate3d(6px, -9px, 0) rotate(-3deg);
  }
}

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

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

@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(500px, calc(100svh - 132px), 630px);
    margin-right: -8px;
    margin-left: -8px;
  }

  .explorer-screen[data-screen="map"] {
    padding-top: calc(28px + env(safe-area-inset-top));
    padding-left: 8px;
    padding-right: 8px;
  }

  .explorer-screen[data-screen="map"] .screen-topbar {
    left: 18px;
    top: calc(18px + env(safe-area-inset-top));
  }

  .explorer-screen[data-screen="map"] .section-title-block {
    margin-top: 6px;
    padding: 0 28px;
  }

  .explorer-screen[data-screen="map"] .section-title-block h2 {
    font-size: 22px;
  }

  .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: min(132px, 34vw);
    padding: 6px 8px 7px;
  }

  .planet-copy b {
    min-height: 0;
    font-size: 11px;
    line-height: 1.16;
  }

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

  .role-detail-head {
    padding-right: 0;
  }

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

  .detail-planet {
    bottom: -248px;
    width: min(420px, 108vw);
    height: min(420px, 108vw);
  }

  .role-landing-stage {
    height: clamp(166px, 24svh, 208px);
    margin-right: 0;
    margin-left: 0;
  }

  .detail-role-ip {
    bottom: clamp(8px, 2svh, 20px);
    height: min(196px, 23svh);
    max-width: 62vw;
  }

  .apply-flow-hero {
    min-height: 82px;
    padding: 4px 104px 0 0;
  }

  .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;
  }
}

@media (max-height: 720px) {
  .explorer-screen {
    padding-top: calc(14px + env(safe-area-inset-top));
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }

  .role-explorer .screen-actions,
  .role-explorer .about-screen .screen-actions,
  .role-explorer .growth-screen .screen-actions,
  .role-explorer .requirements-screen .screen-actions,
  .role-explorer [data-screen="detail"] .screen-actions,
  .role-explorer .apply-screen .screen-actions,
  .generated-home.role-explorer [data-screen="intro"] .screen-actions {
    bottom: calc(14px + env(safe-area-inset-bottom));
  }

  .generated-home [data-screen="intro"] {
    --intro-copy-top: clamp(276px, 34svh, 320px);
  }

  .story-copy h1 {
    font-size: clamp(58px, 15.4vw, 68px);
  }

  .story-copy p:not(.story-kicker) {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.58;
  }

  .home-company-ip {
    top: clamp(94px, 12svh, 128px);
    width: clamp(176px, 45vw, 204px);
  }

  .home-planet-gold {
    bottom: -446px;
  }

  .about-screen .section-title-block,
  .growth-screen .section-title-block {
    margin-bottom: 10px;
  }

  .about-screen .section-title-block h2,
  .growth-screen .section-title-block h2 {
    font-size: clamp(32px, 9.2vw, 40px);
  }

  .about-screen .section-title-block h2 {
    font-size: 24px;
  }

  .about-statement {
    gap: 6px;
    margin-bottom: 8px;
  }

  .about-statement b {
    font-size: clamp(28px, 8.2vw, 36px);
  }

  .about-statement span {
    display: none;
  }

  .about-card {
    padding: 12px 12px 13px;
  }

  .about-card p {
    font-size: 11px;
    line-height: 1.48;
  }

  .about-proof-grid {
    gap: 8px;
    margin-top: 8px;
  }

  .about-proof-grid article {
    min-height: 70px;
    padding: 9px 10px;
  }

  .about-proof-grid span {
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.28;
  }

  .about-chip-row {
    display: none;
  }

  .growth-grid {
    gap: 0 10px;
    padding: 7px 11px;
  }

  .growth-grid article {
    min-height: 0;
    padding: 9px 0 8px;
  }

  .growth-grid article.wide {
    min-height: 0;
  }

  .growth-grid b {
    font-size: 18px;
  }

  .growth-grid p {
    display: none;
  }

  .growth-slogan {
    margin-top: 9px;
    font-size: 15px;
    line-height: 1.32;
  }

  .role-landing-stage {
    height: clamp(154px, 23svh, 188px);
  }

  .detail-role-ip {
    height: min(172px, 21svh);
    max-width: 62vw;
  }

  .detail-planet {
    bottom: -218px;
    width: min(380px, 100vw);
    height: min(380px, 100vw);
  }

  .role-detail-panel {
    max-height: none;
    margin-top: 8px;
    padding: 14px 10px 16px;
  }

  .detail-ticket-header {
    min-height: 28px;
    margin-bottom: 8px;
  }

  .detail-ticket-header span {
    font-size: 21px;
  }

  .role-detail-head {
    padding: 14px 14px 0;
  }

  .role-detail-head h2 {
    font-size: 27px;
  }

  .role-detail-head p {
    margin-top: 7px;
    font-size: 11px;
    line-height: 1.46;
  }

  .tag-row {
    margin-top: 9px;
  }

  .detail-tabs {
    margin: 0 14px 8px;
    padding-top: 14px;
  }

  .detail-scroll {
    margin: 0 14px;
    min-height: 172px;
  }

  .detail-tabs button {
    min-height: 30px;
    font-size: 11px;
  }

  .detail-list li {
    padding-top: 9px;
    padding-bottom: 10px;
    font-size: 11px;
    line-height: 1.45;
  }

  .apply-flow-card {
    max-height: calc(100svh - 176px);
    gap: 12px;
  }

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

  .apply-flow-hero h2 {
    font-size: clamp(30px, 8.4vw, 36px);
  }

  .apply-planet {
    right: -34px;
    width: 164px;
    height: 164px;
  }

  .apply-flow-list li {
    min-height: 56px;
    padding: 7px 0;
  }

  .apply-flow-list li > div > span {
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.42;
  }

  .apply-mail-panel {
    padding: 11px;
  }
}

.role-explorer .screen-actions .neon-button,
.role-explorer .screen-actions .neon-button.primary,
.generated-home.role-explorer [data-screen="intro"] .neon-button.primary,
.role-explorer .requirements-screen .neon-button.primary,
.role-explorer .icon-button,
.role-explorer .copy-email-button,
.role-explorer .detail-tabs button,
.role-explorer .choice-button,
.role-explorer .choice-button.is-selected {
  box-shadow: none !important;
  text-shadow: none;
}

.role-explorer .neon-button svg,
.role-explorer .copy-email-button svg {
  filter: none;
}

.role-explorer .screen-actions .neon-button.primary,
.generated-home.role-explorer [data-screen="intro"] .neon-button.primary,
.role-explorer .requirements-screen .neon-button.primary {
  border: 0 !important;
}

.generated-home.role-explorer [data-screen="intro"] {
  --intro-copy-top: clamp(250px, 28svh, 360px);
}

.generated-home.role-explorer [data-screen="intro"] .story-copy {
  z-index: 5;
  max-width: 390px;
}

.generated-home.role-explorer [data-screen="intro"] .story-copy .screen-actions {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 5;
  margin-top: 18px;
  display: grid;
  width: min(340px, 100%);
}

.generated-home.role-explorer [data-screen="intro"] .story-copy .neon-button.primary {
  min-height: 54px;
}

.generated-home.role-explorer .home-company-ip {
  left: 50%;
  right: auto;
  top: auto;
  bottom: clamp(-170px, -13svh, -82px);
  z-index: 2;
  width: min(520px, 122vw);
  max-width: none;
  opacity: 1;
  transform: translateX(-50%);
  transform-origin: 50% 100%;
  filter: none;
  animation: none;
}

@keyframes homeIpBottomFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

@media (max-height: 720px) {
  .generated-home.role-explorer [data-screen="intro"] {
    --intro-copy-top: clamp(218px, 27svh, 282px);
  }

  .generated-home.role-explorer .home-company-ip {
    bottom: -174px;
    width: min(470px, 116vw);
  }

  .generated-home.role-explorer [data-screen="intro"] .story-copy .screen-actions {
    margin-top: 14px;
    width: min(318px, 100%);
  }
}

/* H5 launch loader: same visual world as the H5 intro */
.launch-loader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  width: min(100vw, 430px);
  z-index: 999;
  --launch-progress: 0%;
  display: block;
  overflow: hidden;
  color: #eefbff;
  background:
    radial-gradient(ellipse at 48% 50%, rgba(52, 138, 255, 0.16), transparent 38%),
    radial-gradient(circle at 14% 22%, rgba(255, 255, 255, 0.08), transparent 22%),
    radial-gradient(circle at 84% 64%, rgba(61, 226, 255, 0.1), transparent 26%),
    linear-gradient(180deg, #101826 0%, #07101f 44%, #030713 100%);
  opacity: 1;
  box-shadow: 0 0 0 100vw #030713;
  transform: translateX(-50%);
  transition: opacity 420ms cubic-bezier(0.25, 1, 0.5, 1);
}

.launch-loader::before {
  position: absolute;
  inset: -12% -30%;
  content: "";
  border: 1px solid rgba(86, 239, 255, 0.14);
  border-radius: 50%;
  background:
    repeating-radial-gradient(ellipse at 50% 48%, transparent 0 54px, rgba(88, 223, 255, 0.08) 55px, transparent 57px);
  opacity: 0.78;
  transform: rotate(-16deg);
}

.launch-loader::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.5;
  background:
    linear-gradient(180deg, rgba(3, 7, 18, 0.02), rgba(3, 7, 18, 0.62)),
    radial-gradient(circle at 50% 88%, rgba(255, 210, 91, 0.16), transparent 30%);
  pointer-events: none;
}

.launch-loader.is-leaving {
  opacity: 0;
  pointer-events: none;
}

.launch-loader-stars {
  position: absolute;
  inset: -12%;
  opacity: 0.64;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.92) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(74, 229, 255, 0.76) 0 1px, transparent 1.5px);
  background-position: 0 0, 36px 24px;
  background-size: 74px 74px, 118px 118px;
  animation: launchStars 22s linear infinite;
}

.launch-logo {
  position: absolute;
  left: 22px;
  top: calc(22px + env(safe-area-inset-top));
  z-index: 4;
  display: block;
  width: clamp(92px, 30%, 128px);
  max-width: 38%;
  height: auto;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
  opacity: 0.92;
}

.launch-planet {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: clamp(-360px, calc(18svh - 520px), -150px);
  z-index: 1;
  width: min(430px, 108%);
  max-width: none;
  opacity: 0.94;
  filter:
    drop-shadow(0 0 34px rgba(255, 207, 80, 0.34))
    drop-shadow(0 -12px 26px rgba(255, 232, 150, 0.18));
  transform: translateX(-50%);
  animation: homeGoldFloat 8s ease-in-out infinite;
}

.launch-planet-blue {
  left: 42px;
  top: clamp(96px, 11svh, 150px);
  bottom: auto;
  z-index: 1;
  width: clamp(64px, 19%, 82px);
  opacity: 0.72;
  filter: drop-shadow(0 0 22px rgba(51, 128, 255, 0.22));
  transform: none;
  animation: explorerPlanetFloat 7s ease-in-out infinite;
}

.launch-planet-teal {
  left: -58px;
  top: clamp(340px, 37svh, 470px);
  bottom: auto;
  z-index: 1;
  width: clamp(142px, 42%, 178px);
  opacity: 0.66;
  filter: drop-shadow(0 0 22px rgba(51, 226, 255, 0.18));
  transform: none;
  animation: explorerPlanetFloat 7.8s ease-in-out infinite reverse;
}

.launch-flight {
  --flight-distance: calc(min(100vw, 430px) - min(48vw, 184px) - 18px);
  position: absolute;
  left: 0;
  top: clamp(176px, 24svh, 250px);
  bottom: auto;
  z-index: 3;
  width: min(48vw, 184px);
  transform: translate3d(-118%, 0, 0) scale(0.9);
  animation: launchTravel 2.2s cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
  will-change: transform;
}

.launch-flight img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 12px 22px rgba(0, 0, 0, 0.32))
    drop-shadow(0 0 18px rgba(62, 219, 255, 0.18));
}

.launch-flame {
  position: absolute;
  left: 13.2%;
  top: 57%;
  z-index: 1;
  display: block;
  border-radius: 100% 18% 18% 100%;
  clip-path: polygon(0 50%, 26% 12%, 100% 28%, 100% 72%, 26% 88%);
  transform: translate(-90%, -50%);
  transform-origin: right center;
  will-change: transform, opacity;
  display: none;
}

.launch-flame-outer {
  width: 24%;
  height: 17%;
  background: linear-gradient(90deg, rgba(97, 65, 255, 0), #7e5cff 36%, #42dcff 74%, #e8fbff 100%);
  filter: blur(2px);
  opacity: 0.76;
  animation: launchFlameOuter 440ms cubic-bezier(0.25, 1, 0.5, 1) infinite alternate;
}

.launch-flame-core {
  width: 17%;
  height: 8%;
  background: linear-gradient(90deg, rgba(65, 213, 255, 0), #35dfff 52%, #ffffff 100%);
  opacity: 0.94;
  animation: launchFlameCore 280ms cubic-bezier(0.25, 1, 0.5, 1) infinite alternate;
}

.launch-loader-copy {
  position: absolute;
  left: 50%;
  bottom: calc(54px + env(safe-area-inset-bottom));
  z-index: 4;
  width: min(330px, calc(100% - 42px));
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transform: translateX(-50%);
  text-align: center;
}

.launch-loader-copy b {
  display: block;
  color: rgba(238, 251, 255, 0.94);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.launch-loader-copy em {
  display: block;
  margin: 6px 0 13px;
  color: #ffffff;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.launch-loader-copy > span {
  display: block;
  height: 44px;
  overflow: hidden;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0 8%, transparent 9%),
    rgba(5, 17, 38, 0.82);
  box-shadow:
    inset 0 -8px 0 rgba(0, 63, 122, 0.12),
    inset 0 0 0 1px rgba(126, 241, 255, 0.36);
}

.launch-loader-copy i {
  display: block;
  width: var(--launch-progress, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #63f0ff 0%, #ffffff 48%, #ffcf5d 100%);
  box-shadow: none;
  transition: width 120ms linear;
}

@keyframes launchHover {
  0%,
  100% {
    transform: translate3d(0, -4px, 0) rotate(-0.7deg);
  }
  50% {
    transform: translate3d(0, 5px, 0) rotate(0.7deg);
  }
}

@keyframes launchStars {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-68px, 0, 0);
  }
}

@keyframes launchPlanetFloat {
  from {
    transform: translate3d(0, 0, 0) rotate(-8deg) scale(1);
  }
  to {
    transform: translate3d(-2vw, -1.2svh, 0) rotate(-6deg) scale(1.025);
  }
}

@keyframes launchTravel {
  0% {
    transform: translate3d(-118%, 8px, 0) scale(0.9);
  }
  42% {
    transform: translate3d(calc(min(100vw, 430px) * 0.38), -6px, 0) scale(0.98);
  }
  100% {
    transform: translate3d(var(--flight-distance), -2px, 0) scale(1.02);
  }
}

@keyframes launchFlameOuter {
  from {
    opacity: 0.58;
    transform: translate(-88%, -50%) scaleX(0.78) scaleY(0.9);
  }
  to {
    opacity: 0.86;
    transform: translate(-96%, -50%) scaleX(1.08) scaleY(1.04);
  }
}

@keyframes launchFlameCore {
  from {
    transform: translate(-88%, -50%) scaleX(0.84);
  }
  to {
    transform: translate(-96%, -50%) scaleX(1.12);
  }
}

@keyframes launchProgress {
  from {
    transform: translateX(-110%);
  }
  to {
    transform: translateX(340%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .launch-loader-stars,
  .launch-flight,
  .launch-flame,
  .launch-loader-copy i {
    animation: none !important;
  }

  .launch-loader-copy i {
    width: var(--launch-progress, 100%);
  }
}

.role-explorer .screen-actions .neon-button,
.role-explorer .screen-actions .neon-button.primary,
.generated-home.role-explorer [data-screen="intro"] .neon-button.primary,
.role-explorer .requirements-screen .neon-button.primary,
.role-explorer .icon-button,
.role-explorer .copy-email-button,
.role-explorer .detail-tabs button,
.role-explorer .choice-button,
.role-explorer .choice-button.is-selected {
  box-shadow: none !important;
  text-shadow: none;
}

.role-explorer .neon-button svg,
.role-explorer .copy-email-button svg {
  filter: none;
}
