:root {
  color-scheme: dark;
  --bg: #05070b;
  --panel: rgba(12, 18, 26, 0.76);
  --panel-strong: rgba(17, 26, 38, 0.92);
  --text: #eef5f8;
  --muted: #9eb0b8;
  --line: rgba(179, 229, 255, 0.18);
  --cyan: #72d7ff;
  --gold: #f1c76b;
  --green: #78e4b2;
  --red: #ff8272;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --content-width: 1160px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 18%, rgba(114, 215, 255, 0.18), transparent 30rem),
    radial-gradient(circle at 82% 14%, rgba(241, 199, 107, 0.14), transparent 24rem),
    linear-gradient(180deg, #05070b 0%, #08111a 48%, #06090d 100%);
  color: var(--text);
}

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

#starfield {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 11, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(114, 215, 255, 0.55);
  background: rgba(114, 215, 255, 0.08);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
}

.nav a {
  padding: 9px 12px;
  color: var(--muted);
  font-size: 0.92rem;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.section,
.section-band {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
  align-items: end;
  gap: clamp(24px, 5vw, 72px);
  min-height: calc(100vh - 78px);
  padding: clamp(54px, 9vw, 110px) 0 64px;
}

.hero-copy {
  max-width: 740px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(4.2rem, 11vw, 8.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: #d6e5ea;
  font-size: clamp(1.05rem, 1.8vw, 1.34rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.join-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  padding: 0 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button {
  min-width: 116px;
}

.button.primary,
.join-form button {
  background: var(--cyan);
  color: #061018;
}

.button.ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.status-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.panel-header strong {
  color: var(--green);
}

.status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
}

.status-grid div {
  min-height: 96px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.status-grid div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.status-grid div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

dt {
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.78rem;
}

dd {
  margin: 0;
  font-weight: 800;
}

.section {
  padding: 94px 0;
}

.content-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 6vw, 80px);
  border-top: 1px solid var(--line);
}

.prose {
  color: #c8d5da;
  font-size: 1.05rem;
  line-height: 1.9;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.join-copy p {
  color: #c8d5da;
  line-height: 1.8;
}

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

.principles article,
.division-grid article,
.timeline article,
.join-form {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(16px);
}

.principles article {
  min-height: 230px;
  padding: 24px;
}

.icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid rgba(241, 199, 107, 0.38);
  color: var(--gold);
}

article p {
  color: var(--muted);
  line-height: 1.7;
}

.compact {
  width: 100%;
  max-width: none;
  padding: 88px max(18px, calc((100vw - var(--content-width)) / 2));
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(114, 215, 255, 0.08), transparent 26%),
    rgba(255, 255, 255, 0.025);
}



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

.timeline time {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 800;
}

.join {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: clamp(28px, 7vw, 92px);
}

.join-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.join-form label {
  display: grid;
  gap: 8px;
  color: #d7e2e7;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(1, 6, 12, 0.58);
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(114, 215, 255, 0.74);
  box-shadow: 0 0 0 3px rgba(114, 215, 255, 0.13);
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}


/* ---- Hero 背景纹理 ---- */
.hero {
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(114, 215, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114, 215, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, black, transparent 65%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, black, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* ---- 分区卡片：颜色条 + 图标 + 悬浮 ---- */
.division-grid article {
  position: relative;
  overflow: hidden;
  padding: 28px 28px 32px;
  min-height: 200px;
  transition: border-color 200ms, background 200ms, transform 200ms;
}

/* 左侧颜色条 */
.division-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
}

.division-grid article:nth-child(1)::before { background: var(--cyan); }
.division-grid article:nth-child(2)::before { background: var(--gold); }
.division-grid article:nth-child(3)::before { background: var(--red); }
.division-grid article:nth-child(4)::before { background: var(--green); }

/* 右上角装饰图标 */
.division-grid article::after {
  position: absolute;
  right: 18px;
  top: 16px;
  font-size: 1.8rem;
  line-height: 1;
  opacity: 0.12;
  pointer-events: none;
}

.division-grid article:nth-child(1)::after { content: "⭒"; color: var(--cyan); }
.division-grid article:nth-child(2)::after { content: "⚙"; color: var(--gold); }
.division-grid article:nth-child(3)::after { content: "⛊"; color: var(--red); }
.division-grid article:nth-child(4)::after { content: "⛰"; color: var(--green); }

.division-grid article h3 {
  margin-bottom: 14px;
  font-size: 1.15rem;
}

.division-grid article p {
  font-size: 0.92rem;
  line-height: 1.7;
}

.division-grid article:hover {
  border-color: rgba(114, 215, 255, 0.22);
  background: rgba(255, 255, 255, 0.035);
  transform: translateY(-3px);
}

/* ---- 恢复行动卡片尺寸 ---- */
.timeline article {
  min-height: 172px;
  padding: 22px;
}

/* ---- 原则区悬浮 ---- */
.principles article {
  transition: border-color 200ms, background 200ms, transform 200ms;
}

.principles article:hover {
  border-color: rgba(114, 215, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}

.principles article:hover .icon {
  border-color: rgba(241, 199, 107, 0.6);
}
@media (max-width: 860px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .nav {
    justify-content: flex-start;
    width: 100%;
  }

  .hero,
  .content-split,
  .join {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
    padding-bottom: 56px;
  }

  .status-panel {
    width: min(100%, 560px);
  }

  .principles,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .section,
  .section-band {
    width: min(100% - 32px, 1160px);
  }

  .site-header {
    padding: 16px;
  }

  .brand-mark {
    width: 44px;
    height: 40px;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
  }

  .nav a {
    display: inline-flex;
    justify-content: center;
    min-width: 0;
    padding: 9px 6px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.035);
    font-size: 0.86rem;
  }

  .lead {
    font-size: 1.02rem;
    line-height: 1.75;
  }

  .principles article {
    min-height: 210px;
  }
}

@media (max-width: 560px) {
  .section,
  .section-band {
    width: min(100% - 28px, 1160px);
  }

  .brand {
    min-width: 0;
  }

  .nav a {
    padding: 8px 4px;
  }

  h1 {
    font-size: clamp(3.25rem, 17vw, 4.6rem);
  }

  h2 {
    font-size: clamp(1.8rem, 10vw, 2.6rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .button,
  .join-form button {
    width: 100%;
    padding-inline: 12px;
  }

  .status-grid,
  .principles,
  .timeline {
    grid-template-columns: 1fr;
  }

  .status-grid div,
  .status-grid div:nth-child(odd) {
    border-right: 0;
  }

  .status-grid div:nth-last-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 70px 0;
  }
}

@media (max-width: 390px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand strong {
    font-size: 0.86rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

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

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

  .status-grid div {
    min-height: 82px;
  }
}


[data-content] {
  white-space: pre-line;
}

/* 服务器状态行 - 更紧凑 */
.sc-status-row {
  min-height: 56px !important;
  padding: 12px 18px !important;
}
.sc-status-row dt,
.sc-status-row dd {
  font-size: 0.85rem;
}
.sc-status-row dt {
  margin-bottom: 4px;
}

/* ---- 辅助网站 ---- */
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

.links-grid article {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(16px);
}

.links-grid h3 {
  font-size: 1rem;
  margin: 0;
}

.links-grid p {
  flex: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.links-grid a {
  color: var(--cyan);
  font-size: 0.82rem;
  word-break: break-all;
  transition: opacity 160ms;
}

.links-grid a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.link-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(114, 215, 255, 0.12);
  color: var(--cyan);
}

@media (max-width: 700px) {
  .links-grid {
    grid-template-columns: 1fr;
  }
}

/* =========== 大屏优化 =========== */

@media (min-width: 1400px) {
  :root {
    --content-width: 1400px;
  }

  .section,
  .section-band {
    width: min(var(--content-width), calc(100% - 60px));
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 420px);
    gap: clamp(36px, 6vw, 90px);
    padding: clamp(70px, 10vw, 140px) 0 80px;
  }

  .hero-copy {
    max-width: 880px;
  }

  h1 {
    font-size: clamp(4.8rem, 9vw, 10rem);
  }

  h2 {
    font-size: clamp(2.4rem, 3.6vw, 4.6rem);
  }

  .lead {
    max-width: 800px;
    font-size: clamp(1.15rem, 1.6vw, 1.55rem);
    line-height: 1.85;
  }

  .section {
    padding: 120px 0;
  }

  .content-split {
    gap: clamp(40px, 8vw, 120px);
  }

  .section-heading {
    max-width: 820px;
    margin-bottom: 48px;
  }

  .principles,
  .division-grid,
  .timeline {
    gap: 20px;
  }

  .principles article {
    min-height: 260px;
    padding: 30px;
  }

  .division-grid article,
  .timeline article {
    min-height: 200px;
    padding: 28px;
  }

  .status-grid div {
    min-height: 110px;
    padding: 22px;
  }

  .join {
    gap: clamp(40px, 8vw, 120px);
  }

  .links-grid {
    gap: 18px;
  }

  .links-grid article {
    padding: 24px;
  }
}

@media (min-width: 1800px) {
  :root {
    --content-width: 1600px;
  }

  .section,
  .section-band {
    width: min(var(--content-width), calc(100% - 80px));
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(460px, 500px);
    gap: clamp(60px, 8vw, 120px);
    padding: clamp(90px, 12vw, 180px) 0 100px;
  }

  h1 {
    font-size: clamp(6rem, 8vw, 12rem);
  }

  h2 {
    font-size: clamp(2.8rem, 3.2vw, 5.2rem);
  }

  .lead {
    font-size: clamp(1.25rem, 1.4vw, 1.75rem);
    line-height: 1.9;
    max-width: 880px;
  }

  .section {
    padding: 150px 0;
  }

  .principles,
  .division-grid,
  .timeline {
    gap: 26px;
  }

  .principles article {
    min-height: 290px;
    padding: 34px;
  }

  .links-grid {
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 22px;
  }

  .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 34px;
  }

  .compact {
    padding: 100px max(18px, calc((100vw - var(--content-width)) / 2));
  }

  .status-grid div {
    min-height: 120px;
    padding: 26px;
  }

  .prose {
    font-size: 1.15rem;
  }
}

/* ---- 行动卡片悬浮 ---- */
.timeline article {
  transition: border-color 200ms, background 200ms, transform 200ms;
}

.timeline article:hover {
  border-color: rgba(114, 215, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-3px);
}

/* ---- 辅助网站卡片悬浮 ---- */
.links-grid article {
  transition: border-color 200ms, background 200ms, transform 200ms;
}

.links-grid article:hover {
  border-color: rgba(114, 215, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-3px);
}

.links-grid article:hover .link-badge {
  background: rgba(114, 215, 255, 0.18);
}

/* ---- Hero 装饰轨道环 ---- */
.hero-copy {
  position: relative;
}

.hero-copy::after {
  content: "";
  position: absolute;
  width: min(500px, 50vw);
  height: min(500px, 50vw);
  border: 1px solid rgba(114, 215, 255, 0.05);
  border-radius: 50%;
  top: -120px;
  right: -80px;
  pointer-events: none;
  z-index: -1;
  animation: orbitRing 30s linear infinite;
}

/* 内环 */
.hero-copy::before {
  content: "";
  position: absolute;
  width: min(320px, 35vw);
  height: min(320px, 35vw);
  border: 1px dashed rgba(114, 215, 255, 0.04);
  border-radius: 50%;
  top: -60px;
  right: -40px;
  pointer-events: none;
  z-index: -1;
  animation: orbitRingReverse 40s linear infinite;
}

@keyframes orbitRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes orbitRingReverse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

/* ---- Hero 装饰飞船 ---- */
.hero::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 40px;
  bottom: 18%;
  right: 18%;
  background: linear-gradient(90deg,
    transparent 0%, transparent 30%,
    rgba(114, 215, 255, 0.04) 40%,
    rgba(114, 215, 255, 0.08) 50%,
    rgba(114, 215, 255, 0.04) 60%,
    transparent 70%, transparent 100%
  );
  clip-path: polygon(
    0% 50%, 15% 30%, 35% 35%,
    50% 15%, 65% 30%,
    100% 50%, 65% 70%,
    50% 85%, 35% 65%, 15% 70%
  );
  pointer-events: none;
  z-index: 0;
  animation: shipDrift 12s ease-in-out infinite;
}

/* 飞船引擎光效 */
.hero {
  position: relative;
}
.hero .hero-copy {
  position: relative;
}

.hero::after {
  box-shadow: 
    -120px 0 30px -40px rgba(114, 215, 255, 0.03),
    -80px 0 20px -30px rgba(114, 215, 255, 0.02);
}

@keyframes shipDrift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 1; }
  25% { transform: translate(8px, -6px) rotate(1deg); opacity: 0.9; }
  50% { transform: translate(0, -8px) rotate(0deg); opacity: 1; }
  75% { transform: translate(-8px, -4px) rotate(-1deg); opacity: 0.9; }
}

/* ---- 大屏分区卡片尺寸 ---- */
@media (min-width: 1800px) {
  .division-grid article {
    min-height: 230px;
    padding: 34px 34px 38px;
  }

  .division-grid article::after {
    font-size: 2.4rem;
    right: 24px;
    top: 22px;
    opacity: 0.15;
  }

  .division-grid article h3 {
    font-size: 1.25rem;
  }

  .division-grid article p {
    font-size: 0.96rem;
  }
}

/* ---- 分区卡片：分断点布局 ---- */
.division-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .division-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1000px) {
  .division-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1400px) {
  .division-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1800px) {
  .division-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

/* ---- 超宽屏：内容区继续放大 ---- */
@media (min-width: 2500px) {
  :root {
    --content-width: 1800px;
  }
}

@media (min-width: 3200px) {
  :root {
    --content-width: 2000px;
  }
}

@media (min-width: 3800px) {
  :root {
    --content-width: 2200px;
  }
}

/* ---- Hero 视觉增强 ---- */
.hero {
  background:
    /* 行星辉光（暖色） */
    radial-gradient(ellipse 600px 450px at 40% 38%, rgba(255, 190, 100, 0.06), transparent 70%),
    /* 星云蓝光 */
    radial-gradient(ellipse 700px 500px at 65% 45%, rgba(114, 215, 255, 0.05), transparent 65%),
    /* 悬浮粒子群 */
    radial-gradient(3px 3px at 18% 22%, rgba(114,215,255,0.35), transparent),
    radial-gradient(2px 2px at 35% 12%, rgba(114,215,255,0.3), transparent),
    radial-gradient(4px 4px at 62% 28%, rgba(241,199,107,0.25), transparent),
    radial-gradient(2px 2px at 78% 18%, rgba(114,215,255,0.3), transparent),
    radial-gradient(3px 3px at 12% 52%, rgba(114,215,255,0.25), transparent),
    radial-gradient(4px 4px at 55% 62%, rgba(255,255,255,0.2), transparent),
    radial-gradient(2px 2px at 72% 68%, rgba(114,215,255,0.3), transparent),
    radial-gradient(3px 3px at 40% 72%, rgba(241,199,107,0.2), transparent),
    radial-gradient(4px 4px at 88% 42%, rgba(114,215,255,0.25), transparent),
    radial-gradient(2px 2px at 58% 16%, rgba(255,255,255,0.2), transparent),
    radial-gradient(3px 3px at 38% 42%, rgba(114,215,255,0.2), transparent),
    radial-gradient(4px 4px at 22% 68%, rgba(241,199,107,0.2), transparent);
}

/* ---- 加强飞船 ---- */
.hero::after {
  width: 280px !important;
  height: 56px !important;
  background: linear-gradient(90deg,
    transparent 0%, transparent 20%,
    rgba(114, 215, 255, 0.08) 30%,
    rgba(114, 215, 255, 0.2) 50%,
    rgba(114, 215, 255, 0.08) 70%,
    transparent 80%, transparent 100%
  ) !important;
  box-shadow:
    -180px 0 50px -30px rgba(114, 215, 255, 0.08),
    -100px 0 30px -20px rgba(114, 215, 255, 0.05);
  opacity: 1 !important;
}

/* ---- 加强轨道环 ---- */
.hero-copy::before {
  border-color: rgba(114, 215, 255, 0.1) !important;
}

.hero-copy::after {
  border-color: rgba(114, 215, 255, 0.08) !important;
}

/* ---- 大屏加大飞船 ---- */
@media (min-width: 1400px) {
  .hero::after {
    width: 350px !important;
    height: 70px !important;
    bottom: 15%;
    right: 15%;
  }
}

@media (min-width: 1800px) {
  .hero::after {
    width: 420px !important;
    height: 80px !important;
    bottom: 18%;
    right: 18%;
  }
}
