/* 宇播 · 傲世数字人口播视频工作台 · 官网 — 对齐小宇助理（青云 teal / navy / mist） */
:root {
  --bg: #ffffff;
  --muted: #f4f8f7;
  --teal: #2f9ede;
  --teal-dark: #1f80c4;
  --teal-soft: #e6f3fd;
  --navy: #245f8f;
  --ink: #2f4650;
  --steel: #5285ad;
  --text: #586a71;
  --tmuted: #93a3a8;
  --border: #e4ecec;
  --footer-bg: #33383d;
  --serif: "Microsoft YaHei", "微软雅黑", -apple-system, "PingFang SC", sans-serif;
  --sans: "Microsoft YaHei", "微软雅黑", -apple-system, BlinkMacSystemFont, "PingFang SC", "Segoe UI", sans-serif;
  --wrap: 1180px;
  --shadow: 0 1px 4px rgb(29 92 134 / 0.05);
  --shadow-md: 0 8px 28px rgb(29 92 134 / 0.08);
  --radius-md: 10px;
  --radius-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
/* 顶部阅读进度条（对齐 hive-ops / spec-factory） */
body.planet-home::after {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 999;
  background: linear-gradient(90deg, rgba(47, 158, 222, 0.16) 0%, rgba(98, 198, 245, 0.16) 45%, rgba(59, 130, 246, 0.16) 100%);
  pointer-events: none;
}
body.planet-home::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 1000;
  background: linear-gradient(90deg, #2f9ede 0%, #62c6f5 45%, #3b82f6 100%);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  will-change: transform;
  pointer-events: none;
}
body.planet-home {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

/* ── Nav ── */
.planet-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.planet-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}
.planet-nav .brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.planet-nav .brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--teal-soft);
  display: grid;
  place-items: center;
}
.planet-nav .brand-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--teal-dark);
}
.planet-nav .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}
.planet-nav .brand-text strong {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.planet-nav .brand-text em {
  font-style: normal;
  font-size: 10px;
  font-weight: 600;
  color: var(--steel);
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-claim {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  background: var(--teal);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-claim:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgb(47 158 222 / 0.22);
}
.btn-nav-ghost {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
  background: #fff;
}
.btn-nav-ghost:hover { border-color: var(--teal); color: var(--teal); }
@media (max-width: 640px) {
  .btn-nav-ghost { display: none; }
  .planet-nav .brand-text strong { font-size: 14px; }
}

/* ── Pills ── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.pill::before { content: "↗"; font-size: 13px; line-height: 1; }
.pill:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgb(47 158 222 / 0.22);
}
.pill.pill-lg { padding: 14px 26px; font-size: 15px; }
.pill.line {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--border);
}
.pill.line::before { content: none; }
.pill.line:hover {
  border-color: var(--teal);
  color: var(--teal);
  box-shadow: none;
  transform: none;
}

/* ── Hero ── */
.hero-planet {
  position: relative;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='1' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E") repeat,
    linear-gradient(180deg, #ffffff 0%, #e7f4fd 100%);
  background-size: 200px 200px, auto;
  color: var(--ink);
  padding: 48px 0 88px;
  min-height: calc(100dvh - 74px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  right: -80px;
  top: 10%;
  background: radial-gradient(circle, rgb(47 158 222 / 0.14) 0%, transparent 68%);
  pointer-events: none;
}
.hero-planet > .wrap {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}
.hero-copy h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: #2f4650;
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--teal);
}
.hero-copy .brand-full {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0.02em;
  color: var(--steel);
}
.hero-copy .lead {
  font-size: 18px;
  color: #586a71;
  max-width: 540px;
  line-height: 1.65;
  font-weight: 500;
}
.hero-sells {
  list-style: none;
  margin: 24px 0 8px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
}
.hero-sells li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.55;
  color: #2f4650;
}
.hero-sells li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2f9ede, #1f80c4);
  box-shadow: 0 0 0 3px rgb(47 158 222 / 0.15);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}
.hero-age-note {
  margin: 14px 0 0;
  max-width: 440px;
  font-size: 13px;
  line-height: 1.55;
  color: #7a8f99;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.hero-visual-inner {
  position: relative;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-glow-ring {
  position: absolute;
  left: 50%;
  top: 28%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px dashed rgb(47 158 222 / 0.28);
  pointer-events: none;
}
.hero-glow-ring::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(47 158 222 / 0.2) 0%, rgb(230 243 253 / 0.4) 45%, transparent 72%);
}
.hero-figure {
  position: relative;
  z-index: 2;
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.hero-figure::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 28px;
  background: radial-gradient(ellipse, rgb(47 158 222 / 0.28) 0%, transparent 72%);
  filter: blur(10px);
  z-index: -1;
}
.hero-figure img {
  width: auto;
  height: min(540px, 52vh);
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 24px 48px rgb(29 92 134 / 0.16));
}
.hero-caption {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 320px;
  margin-top: 18px;
  text-align: center;
}
.hero-caption-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: #2f4650;
  line-height: 1.3;
}
.hero-caption-handle {
  font-size: 13px;
  font-weight: 600;
  color: #93a3a8;
}
.hero-caption-tagline {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.55;
  color: #586a71;
}

.wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}
.wave svg { width: 100%; height: 80px; display: block; }

@media (prefers-reduced-motion: no-preference) {
  .hero-figure img {
    animation: hero-float 7s ease-in-out infinite;
  }
  @keyframes hero-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
}

/* ── Sections ── */
.section-white { background: #fff; padding: 96px 0; }
.section-muted { background: var(--muted); padding: 96px 0; }
.sec-wm { position: relative; overflow: hidden; }
.sec-watermark {
  position: absolute;
  width: 220px;
  height: 220px;
  color: var(--teal);
  opacity: 0.06;
  pointer-events: none;
}
.sec-watermark svg { width: 100%; height: 100%; fill: currentColor; }
.sec-watermark.br { right: -20px; bottom: -30px; }
.sec-watermark.bl { left: -30px; bottom: -20px; }
.sec-watermark.tr { right: -10px; top: -20px; }

.sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 1;
}
.eyebrow-tech {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 10px;
}
.sec-head h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.sec-head p { font-size: 16px; color: var(--text); }

/* 三步流程 */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}
.flow-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.flow-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgb(47 158 222 / 0.35);
}
.flow-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  min-width: 0;
}
.flow-idx {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin: 0;
}
.flow-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
  min-width: 0;
}
.flow-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

/* 能力卖点 bento */
.skill-bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  position: relative;
  z-index: 1;
}
.skill-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 160px;
}
.skill-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgb(47 158 222 / 0.35);
}
.skill-card-hero {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 280px;
  background: linear-gradient(160deg, #fff 0%, #eef7fd 100%);
  padding: 28px 26px;
}
.skill-card-wide { grid-column: span 2; }
.skill-head {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.skill-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.skill-ico svg { width: 20px; height: 20px; }
.skill-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin: 0;
  min-width: 0;
}
.skill-card-hero .skill-ico {
  width: 42px;
  height: 42px;
}
.skill-card-hero .skill-ico svg { width: 22px; height: 22px; }
.skill-card-hero h3 { font-size: 20px; }
.skill-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  flex: 1;
  margin: 0;
}
.skill-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--steel);
}
@media (max-width: 960px) {
  .skill-bento { grid-template-columns: 1fr 1fr; }
  .skill-card-hero,
  .skill-card-wide { grid-column: span 2; grid-row: auto; min-height: 0; }
}
@media (max-width: 560px) {
  .skill-bento { grid-template-columns: 1fr; }
  .skill-card-hero,
  .skill-card-wide { grid-column: span 1; }
}

/* Quote band */
.band-quote {
  position: relative;
  min-height: 80dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background:
    linear-gradient(180deg, #1f80c4 0%, #2f9ede 100%);
  color: #fff;
  padding: 48px 0 88px;
  text-align: center;
  overflow: hidden;
}
.band-quote-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 12px;
}
.band-quote .q {
  font-family: var(--serif);
  font-size: clamp(18px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.35;
  max-width: none;
  margin: 0;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.band-wave-down {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}
.band-wave-down svg { width: 100%; height: 72px; display: block; }

/* Account / security */
.security-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.security-copy h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--ink);
  margin-bottom: 18px;
}
.security-copy .ci {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.security-copy .ci svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
}
.security-copy p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 12px;
}
.security-copy p strong { color: var(--ink); font-weight: 700; }
.security-note {
  margin-top: 8px;
  font-size: 13px !important;
  color: var(--tmuted) !important;
}
.security-panel {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.security-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
}
.flow-step .flow-idx {
  margin: 0;
  flex-shrink: 0;
}
.flow-lbl {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
  color: var(--ink);
}
.flow-lbl b { font-weight: 700; }
.flow-lbl em {
  font-style: normal;
  font-size: 12px;
  color: var(--tmuted);
}
.flow-step-core {
  border-color: rgb(47 158 222 / 0.4);
  box-shadow: 0 0 0 3px rgb(47 158 222 / 0.08);
}
.flow-arw {
  width: 2px;
  height: 14px;
  margin: 4px 0 4px 30px;
  background: linear-gradient(180deg, var(--teal), transparent);
}

/* CTA embrace */
.section-muted.section-flow-tall,
.section-white.section-account-tall,
.section-muted.section-cta-tall {
  min-height: 80dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 48px 0;
  box-sizing: border-box;
}
.section-flow-tall > .wrap,
.section-account-tall > .wrap,
.section-cta-tall > .wrap {
  width: 100%;
}
.section-flow-tall .sec-head {
  margin-bottom: 40px;
}
.embrace-cta {
  text-align: center;
  position: relative;
  z-index: 1;
}
.embrace-cta h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 40px);
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

/* Footer */
.planet-footer {
  background: var(--footer-bg);
  color: #aab4bb;
  padding: 28px 0;
  font-size: 13px;
  text-align: center;
}
.planet-footer .icp { margin-left: 10px; }
.planet-footer a { color: inherit; }
.planet-footer a:hover { color: #fff; }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { justify-content: center; order: -1; }
  .hero-visual-inner { max-width: 360px; margin: 0 auto; }
  .hero-glow-ring { width: 300px; height: 300px; top: 22%; }
  .hero-figure img { height: min(420px, 48vh); }
  .hero-planet {
    padding: 36px 0 80px;
    min-height: 0;
    justify-content: flex-start;
  }
  .hero-copy h1,
  .hero-copy .lead,
  .hero-sells,
  .hero-actions { text-align: left; }
  .flow-steps { grid-template-columns: 1fr; }
  .security-split { grid-template-columns: 1fr; }
  .section-white,
  .section-muted { padding: 72px 0; }
  .section-muted.section-flow-tall,
  .section-white.section-account-tall,
  .section-muted.section-cta-tall { padding: 48px 0; }
}
