@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Noto+Sans+SC:wght@400;500;700;900&display=swap');

:root {
  --poster-bg: #000;
  --body-bg: #0a0a0a;
  --brand-primary: #00e5a0;
  --brand-secondary: #00b4d8;
  --text-main: #fff;
  --text-muted: rgba(255, 255, 255, 0.62);
  --text-soft: rgba(255, 255, 255, 0.42);
  --line-soft: rgba(255, 255, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--body-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
}

body.lang-zh {
  font-family: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
}

body.is-preview {
  min-height: auto;
  align-items: flex-start;
  padding: 12px;
  overflow: hidden;
}

body.is-preview .toolbar {
  display: none;
}

.poster-stage {
  position: relative;
  width: 1080px;
  height: 1350px;
  transform-origin: top left;
}

.toolbar {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10;
}

.toolbar button {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 13, 13, 0.85);
  color: var(--brand-primary);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.toolbar button:hover {
  border-color: rgba(0, 229, 160, 0.6);
}

.poster {
  width: 1080px;
  height: 1350px;
  background: var(--poster-bg);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 80px 72px;
  transform-origin: top left;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.glow-top {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 229, 160, 0.15) 0%, rgba(0, 180, 216, 0.06) 40%, transparent 70%);
  pointer-events: none;
}

.glow-bottom {
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.12) 0%, rgba(0, 229, 160, 0.04) 40%, transparent 70%);
  pointer-events: none;
}

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

.poster-figure-svg {
  position: absolute;
  opacity: 0.2;
  filter: blur(1px);
  mix-blend-mode: screen;
}

.poster-figure-image {
  position: absolute;
  height: auto;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: screen;
  filter: saturate(0.92) contrast(1.04);
}

.people-layer--outcome .poster-figure-svg {
  right: -30px;
  bottom: 92px;
  width: 470px;
  height: auto;
  opacity: 0.24;
}

.people-layer--outcome .poster-figure-image {
  right: -10px;
  bottom: 0;
  width: 520px;
  opacity: 0.22;
}

.people-layer--build .poster-figure-svg {
  right: 182px;
  bottom: 86px;
  width: 370px;
  height: auto;
  opacity: 0.17;
}

.people-layer--build .poster-figure-image {
  right: 108px;
  bottom: 0;
  width: 430px;
  opacity: 0.17;
}

.people-layer--adopt .poster-figure-svg {
  right: -36px;
  bottom: 40px;
  width: 560px;
  height: auto;
  opacity: 0.19;
}

.people-layer--adopt .poster-figure-image {
  right: -24px;
  bottom: 64px;
  width: 620px;
  opacity: 0.15;
}

.accent-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-primary) 0%, var(--brand-secondary) 60%, transparent 100%);
}

.node {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.node-1 {
  width: 18px;
  height: 18px;
  top: 560px;
  right: 190px;
  background: rgba(0, 229, 160, 0.55);
}

.node-2 {
  width: 8px;
  height: 8px;
  top: 640px;
  right: 420px;
  background: rgba(0, 180, 216, 0.35);
}

.node-3 {
  width: 6px;
  height: 6px;
  top: 720px;
  right: 290px;
  background: rgba(0, 229, 160, 0.25);
}

.connection-line {
  position: absolute;
  top: 618px;
  right: 198px;
  width: 170px;
  height: 170px;
  pointer-events: none;
  z-index: 0;
}

.connection-line line {
  stroke: rgba(0, 229, 160, 0.12);
  stroke-width: 1;
}

.logo-area,
.section-label,
.eyebrow,
.headline,
.subtitle,
.service-tags,
.proof-strip,
.stats,
.bottom-bar {
  position: relative;
  z-index: 1;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 54px;
}

.poster-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
}

.poster-body--outcome {
  flex-direction: column;
}

.poster-body--build {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 310px;
  gap: 34px;
  align-items: stretch;
}

.poster-body--adopt {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
}

.poster-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.poster-side,
.adopt-rail {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.side-panel,
.adopt-card {
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  padding: 22px 24px;
  backdrop-filter: blur(8px);
}

.side-label {
  font-size: 14px;
  color: var(--text-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: 'Geist Mono', 'SF Mono', 'Monaco', monospace;
}

.poster-side .service-tags,
.adopt-card .stats {
  margin-bottom: 0;
}

.poster-side .service-tags {
  flex-direction: column;
  gap: 12px;
}

.poster-side .tag {
  width: 100%;
  justify-content: flex-start;
  font-size: 18px;
  padding: 12px 16px;
}

.poster-side .stats,
.adopt-card .stats {
  flex-direction: column;
  gap: 16px;
}

.poster-side .stat-item,
.adopt-card .stat-item {
  padding-top: 16px;
}

.poster-side .stat-value,
.adopt-card .stat-value {
  font-size: 44px;
}

.poster-side .stat-label,
.adopt-card .stat-label {
  font-size: 18px;
}

.adopt-card .proof-copy {
  font-size: 22px;
  line-height: 1.52;
}

.adopt-card--stats {
  margin-top: auto;
}

.logo-mark {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
}

.logo-text {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 8px;
}

.logo-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.section-label {
  font-size: 15px;
  color: var(--text-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: 'Geist Mono', 'SF Mono', 'Monaco', monospace;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 10px 16px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.03);
  font-size: 16px;
  font-weight: 600;
}

.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
}

.headline {
  margin-bottom: 32px;
  max-width: 820px;
}

.headline h1 {
  font-size: 96px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--text-main);
}

body.lang-zh .headline h1 {
  font-family: 'Noto Sans SC', 'Inter', sans-serif;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.headline .accent {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.52;
  color: var(--text-muted);
  max-width: 850px;
  margin-bottom: 34px;
}

body.lang-zh .subtitle {
  font-size: 31px;
  line-height: 1.58;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--line-soft);
  border-radius: 50px;
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
}

body.lang-zh .tag {
  font-size: 21px;
}

.tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
}

.proof-strip {
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(0, 229, 160, 0.06), rgba(255, 255, 255, 0.02));
  border-radius: 24px;
  padding: 24px 28px;
  margin-bottom: 34px;
}

.proof-label {
  font-size: 15px;
  color: var(--text-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: 'Geist Mono', 'SF Mono', 'Monaco', monospace;
}

.proof-copy {
  font-size: 24px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 500;
}

body.lang-zh .proof-copy {
  font-size: 25px;
  line-height: 1.5;
}

.stats {
  display: flex;
  gap: 22px;
  margin-bottom: auto;
}

.stat-item {
  flex: 1 1 0;
  min-width: 0;
  border-top: 1px solid var(--line-soft);
  padding-top: 20px;
}

.stat-value {
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 20px;
  line-height: 1.38;
  color: rgba(255, 255, 255, 0.56);
}

body.lang-zh .stat-label {
  font-size: 19px;
}

.bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-site {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main);
}

.footer-line {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.58);
}

.footer-note {
  max-width: 360px;
  text-align: right;
  font-size: 18px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.52);
}
