:root {
  --bg: #0b1020;
  --bg-soft: #11182d;
  --panel: rgba(13, 19, 38, 0.82);
  --panel-strong: rgba(16, 24, 47, 0.96);
  --panel-light: rgba(255, 255, 255, 0.92);
  --line: rgba(255, 255, 255, 0.08);
  --line-dark: rgba(18, 25, 48, 0.08);
  --text: #eff3ff;
  --text-dark: #11162a;
  --muted: #99a6c7;
  --muted-dark: #5a6588;
  --brand: #fe4c55;
  --brand-soft: rgba(254, 76, 85, 0.14);
  --accent: #3fd0c9;
  --accent-soft: rgba(63, 208, 201, 0.16);
  --gold: #ffca70;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.26);
  --radius-xxl: 34px;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --font-main: "Avenir Next", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", sans-serif;
  --font-display: "Iowan Old Style", "Songti SC", "Source Han Serif SC", "Noto Serif SC", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 168px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-main);
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 202, 112, 0.08), transparent 28%),
    radial-gradient(circle at 8% 10%, rgba(63, 208, 201, 0.18), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(254, 76, 85, 0.18), transparent 24%),
    radial-gradient(circle at 50% 80%, rgba(55, 92, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #060a16 0%, #0b1020 45%, #0f1731 100%);
}

.story-page {
  overflow-x: hidden;
}

.page-glow {
  position: fixed;
  inset: auto;
  border-radius: 999px;
  filter: blur(36px);
  pointer-events: none;
  opacity: 0.42;
  z-index: 0;
}

.page-glow-a {
  top: 10%;
  right: -140px;
  width: 360px;
  height: 360px;
  background: rgba(254, 76, 85, 0.2);
}

.page-glow-b {
  bottom: 12%;
  left: -120px;
  width: 300px;
  height: 300px;
  background: rgba(63, 208, 201, 0.16);
}

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

img {
  display: block;
  max-width: 100%;
}

.page-noise {
  position: fixed;
  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: 36px 36px;
  mask-image: radial-gradient(circle at center, black 38%, transparent 85%);
  pointer-events: none;
  opacity: 0.32;
}

.site-header,
.site-main,
.app-frame {
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 18px 24px 0;
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled .site-header-inner {
  background: rgba(9, 14, 28, 0.84);
  border-color: rgba(255, 255, 255, 0.12);
}

.site-header-inner {
  position: relative;
  z-index: 41;
  width: min(1400px, calc(100% - 16px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    rgba(9, 14, 28, 0.72);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.site-main,
.app-frame {
  z-index: 1;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: 164px;
  height: auto;
}

.site-nav,
.site-actions,
.hero-cta,
.hero-badges,
.workspace-switcher {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-nav a,
.ghost-link,
.solid-link,
.workspace-btn {
  transition: 180ms ease;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.96rem;
  padding: 8px 12px;
  border-radius: 999px;
}

.site-nav a:hover,
.ghost-link:hover,
.solid-link:hover,
.workspace-btn:hover {
  transform: translateY(-1px);
}

.site-nav a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.solid-link,
.ghost-link,
.workspace-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
}

.solid-link {
  color: #fff;
  background: linear-gradient(135deg, #fe4c55 0%, #f23068 100%);
  box-shadow: 0 16px 32px rgba(254, 76, 85, 0.28);
}

.ghost-link {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.ghost-link-dark {
  background: rgba(255, 255, 255, 0.08);
}

.site-main {
  width: min(1400px, calc(100% - 24px));
  margin: 42px auto 88px;
  display: grid;
  gap: 52px;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.56fr) minmax(360px, 0.8fr);
  gap: 26px;
}

.hero-shell-refined {
  align-items: stretch;
}

.hero-panel {
  border-radius: var(--radius-xxl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 36px 84px rgba(0, 0, 0, 0.3);
  position: relative;
}

.hero-panel-primary {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  background:
    linear-gradient(140deg, rgba(9, 15, 29, 0.98), rgba(11, 17, 34, 0.84)),
    radial-gradient(circle at top left, rgba(63, 208, 201, 0.2), transparent 25%);
}

.hero-panel-master,
.hero-panel-side {
  background:
    linear-gradient(140deg, rgba(9, 15, 29, 0.98), rgba(11, 17, 34, 0.88)),
    radial-gradient(circle at top left, rgba(63, 208, 201, 0.16), transparent 26%);
}

.hero-panel-investor {
  background:
    linear-gradient(140deg, rgba(7, 11, 22, 0.98), rgba(11, 18, 37, 0.92)),
    radial-gradient(circle at top left, rgba(255, 202, 112, 0.14), transparent 22%),
    radial-gradient(circle at right top, rgba(254, 76, 85, 0.12), transparent 24%);
}

.hero-panel-investor::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.hero-panel-master::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 208, 201, 0.14), transparent 65%);
}

.hero-panel-master {
  padding: 28px 42px 48px;
  display: grid;
  gap: 12px;
  align-content: start;
}

.hero-panel-investor {
  isolation: isolate;
}

.hero-brand-watermark {
  position: absolute;
  right: 28px;
  top: 24px;
  width: 92px;
  opacity: 0.92;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.26));
  transform: none;
  pointer-events: none;
  z-index: 0;
}

.hero-brand-watermark img {
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.hero-panel-investor > * {
  position: relative;
  z-index: 1;
}

.hero-panel-side {
  padding: 28px;
}

.hero-ecosystem-panel {
  display: grid;
  gap: 18px;
}

.hero-brandline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.hero-lockup-logo {
  width: min(100%, 184px);
}

.hero-brandmeta {
  display: grid;
  gap: 4px;
  justify-items: start;
  text-align: left;
}

.hero-brandmeta .eyebrow {
  margin-bottom: 0;
}

.hero-brandmeta span {
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: 0.05em;
}

.hero-master-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(390px, 0.84fr);
  gap: 30px;
  align-items: stretch;
}

.hero-copy {
  padding: 70px 64px;
}

.hero-panel-master .hero-copy {
  padding: 0;
}

.hero-visual {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    linear-gradient(180deg, rgba(63, 208, 201, 0.06), rgba(254, 76, 85, 0.02));
}

.signal-stack {
  display: grid;
  gap: 14px;
  height: 100%;
}

.ecosystem-map {
  position: relative;
  min-height: 460px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at center, rgba(63, 208, 201, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(7, 12, 25, 0.76);
  overflow: hidden;
}

.ecosystem-map::before,
.ecosystem-map::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.ecosystem-map::after {
  inset: 42px;
}

.ecosystem-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 72%;
  aspect-ratio: 1;
}

.orbit-two {
  width: 88%;
  aspect-ratio: 1;
  border-style: dashed;
  opacity: 0.56;
  animation: orbitSpin 36s linear infinite;
}

.ecosystem-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 220px;
  padding: 28px 24px;
  border-radius: 28px;
  transform: translate(-50%, -50%);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(254, 76, 85, 0.12), rgba(63, 208, 201, 0.08)),
    rgba(16, 24, 47, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.28);
}

.ecosystem-core .signal-label {
  margin-bottom: 8px;
}

.ecosystem-core strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-family: var(--font-display);
}

.ecosystem-core p {
  margin: 0;
  color: rgba(239, 243, 255, 0.8);
  line-height: 1.68;
}

.ecosystem-node {
  position: absolute;
  width: 168px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.ecosystem-node span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ecosystem-node strong {
  display: block;
  font-size: 1.05rem;
}

.node-supply {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation: nodeFloatCentered 7s ease-in-out infinite;
}

.node-seller {
  left: 8%;
  bottom: 18%;
  animation: nodeFloat 8.5s ease-in-out infinite 0.4s;
}

.node-engine {
  right: 8%;
  bottom: 18%;
  animation: nodeFloat 8s ease-in-out infinite 0.8s;
}

.ecosystem-brief .signal-panel {
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(254, 76, 85, 0.08), rgba(63, 208, 201, 0.05)),
    rgba(255, 255, 255, 0.04);
}

.signal-panel {
  padding: 22px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-proof {
  display: grid;
  gap: 14px;
}

.hero-proof-investor {
  gap: 16px;
}

.proof-card-hero {
  background:
    linear-gradient(135deg, rgba(255, 202, 112, 0.08), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
}

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

.thesis-mini-card,
.inflection-card,
.economics-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.thesis-mini-card span,
.inflection-card span,
.economics-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.thesis-mini-card strong,
.economics-card h3,
.inflection-card h3 {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
}

.thesis-mini-card p,
.inflection-card p,
.economics-card p,
.formula-summary {
  margin: 0;
  color: rgba(239, 243, 255, 0.8);
  line-height: 1.68;
  font-size: 0.95rem;
}

.hero-thesis-panel {
  display: grid;
  gap: 20px;
}

.thesis-board {
  padding: 30px 28px;
  border-radius: 28px;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at right top, rgba(255, 202, 112, 0.14), transparent 26%),
    rgba(9, 14, 28, 0.8);
}

.thesis-board h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.3vw, 2.35rem);
  line-height: 1.2;
  max-width: 12ch;
}

.traction-board h2 {
  max-width: 14ch;
}

.thesis-brand-mark {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.thesis-brand-mark img {
  width: 96px;
  height: 96px;
  border-radius: 28px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
}

.traction-brand-mark {
  margin-top: 14px;
}

.traction-brand-mark img {
  width: 82px;
  height: 82px;
}

.traction-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.traction-metric {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.traction-metric span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.traction-metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.2;
}

.traction-metric-wide {
  grid-column: 1 / -1;
}

.traction-list {
  margin-top: 22px;
}

.thesis-board-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.thesis-board-list article {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.thesis-board-list article:first-child {
  padding-top: 0;
  border-top: 0;
}

.thesis-board-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(255, 202, 112, 0.1);
  color: var(--gold);
  font-weight: 700;
}

.thesis-board-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.thesis-board-list p {
  margin: 0;
  color: rgba(239, 243, 255, 0.8);
  line-height: 1.68;
}

.hero-signal-panel {
  background:
    linear-gradient(135deg, rgba(254, 76, 85, 0.1), rgba(63, 208, 201, 0.05)),
    rgba(255, 255, 255, 0.04);
}

.proof-card {
  padding: 22px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.proof-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.24rem;
}

.proof-card:hover,
.signal-panel:hover,
.thesis-card:hover,
.strategy-card:hover,
.workspace-tile:hover,
.ai-card:hover,
.cockpit-card:hover,
.edge-card:hover,
.roadmap-card:hover,
.metric-band article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.signal-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-panel strong {
  display: block;
  font-size: 1.22rem;
  margin-bottom: 10px;
}

.signal-panel p,
.hero-summary,
.section-summary,
.narrative-card p,
.strategy-card p,
.workspace-tile p,
.edge-card p,
.roadmap-card p,
.metric-band p,
.metric-tile span,
.metric-tile strong,
.sidebar-footer-card p,
.hero-text,
.data-table td,
.module-card p,
.score-box p,
.loop-card p,
.kpi-card p,
.insight-note,
.timeline-list li {
  line-height: 1.72;
}

.hero-panel-secondary {
  display: grid;
  grid-template-rows: 1fr auto;
  background: linear-gradient(180deg, rgba(12, 18, 34, 0.92), rgba(14, 21, 40, 0.82));
}

.hero-side-top {
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 40px 32px 20px;
}

.hero-side-logo {
  width: min(100%, 360px);
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.36));
}

.hero-side-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 0 22px 22px;
}

.metric-tile {
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.metric-tile span {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.metric-tile strong {
  display: block;
  font-size: 1.08rem;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-copy h1,
.section-header h2,
.final-banner h2,
.app-hero h1,
.surface-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-copy h1 {
  font-size: clamp(3.45rem, 5vw, 5rem);
  max-width: 11ch;
  line-height: 1.01;
  text-wrap: pretty;
}

.hero-summary {
  margin: 24px 0 0;
  max-width: 48ch;
  color: rgba(239, 243, 255, 0.82);
  font-size: 1.14rem;
  text-wrap: pretty;
}

.hero-mission-line {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  color: rgba(239, 243, 255, 0.78);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-title-line {
  display: inline-block;
}

.hero-baseline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.hero-baseline-card {
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
}

.hero-baseline-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-baseline-card strong {
  display: block;
  font-size: 1.16rem;
  line-height: 1.5;
}

.hero-mission-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--gold));
}

.hero-cta {
  margin-top: 28px;
}

.hero-badge {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.92rem;
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.story-ribbon {
  padding: 4px 0 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.ribbon-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: ribbonFlow 18s linear infinite;
}

.ribbon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(239, 243, 255, 0.82);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.ribbon-track-wide {
  padding-right: 18px;
}

.metric-band article,
.narrative-card,
.strategy-card,
.thesis-card,
.diagram-card,
.edge-card,
.roadmap-card,
.workspace-tile,
.final-banner,
.surface-card,
.sidebar-footer-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    var(--panel);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.2);
}

.metric-band article {
  padding: 24px;
}

.metric-band span,
.workspace-tile span,
.roadmap-card span,
.kpi-card span,
.module-meta,
.loop-step,
.score-box span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-band strong,
.workspace-tile strong,
.kpi-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.28rem;
}

.content-section {
  display: grid;
  gap: 28px;
  position: relative;
  padding-top: 6px;
}

.content-section::before {
  content: "";
  width: 140px;
  height: 1px;
  justify-self: center;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 202, 112, 0.72), rgba(63, 208, 201, 0));
}

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

.manifesto-panel {
  padding: 42px 44px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at right top, rgba(254, 76, 85, 0.12), transparent 32%),
    radial-gradient(circle at left bottom, rgba(63, 208, 201, 0.1), transparent 36%),
    rgba(13, 19, 38, 0.9);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.24);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.manifesto-panel::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.manifesto-panel-investor {
  padding-block: 46px;
}

.manifesto-quote {
  margin: 0 auto;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.55vw, 2.8rem);
  line-height: 1.34;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.manifesto-subcopy {
  margin: 18px auto 0;
  max-width: 48ch;
  color: rgba(239, 243, 255, 0.74);
  line-height: 1.72;
}

.section-header {
  display: grid;
  gap: 10px;
}

.section-header-centered .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.section-header-centered .eyebrow::before,
.section-header-centered .eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 202, 112, 0.7), rgba(63, 208, 201, 0));
}

.section-header h2 {
  font-size: clamp(2.2rem, 3vw, 3.5rem);
  max-width: 22ch;
  text-wrap: balance;
  text-wrap: pretty;
  line-height: 1.14;
}

.section-header-centered {
  justify-items: center;
  text-align: center;
}

.section-header-centered h2 {
  max-width: 24ch;
}

.section-header-centered .section-summary {
  max-width: 58ch;
}

.section-header-centered {
  padding-inline: 24px;
}

.section-summary {
  max-width: 76ch;
  color: rgba(239, 243, 255, 0.74);
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.78;
}

.section-title-wide {
  max-width: 30ch !important;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.inflection-grid,
.breakpoint-grid,
.economics-grid {
  display: grid;
  gap: 18px;
}

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

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

.narrative-card,
.strategy-card,
.workspace-tile,
.thesis-card,
.ai-card,
.cockpit-card,
.edge-card,
.roadmap-card,
.diagram-card,
.final-banner,
.surface-card {
  padding: 28px;
}

.narrative-card h3,
.strategy-card h3,
.workspace-tile h3,
.edge-card h3,
.roadmap-card h3,
.diagram-column h3,
.surface-head h2,
.command-layout h3 {
  margin: 0 0 14px;
}

.accent-card {
  background:
    linear-gradient(135deg, rgba(254, 76, 85, 0.1), transparent 58%),
    rgba(13, 19, 38, 0.9);
}

.ai-card,
.cockpit-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.ai-card span,
.cockpit-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ai-card h3,
.cockpit-card h3 {
  margin: 0 0 14px;
  font-size: 1.32rem;
}

.cockpit-card-highlight {
  background:
    linear-gradient(135deg, rgba(254, 76, 85, 0.1), rgba(63, 208, 201, 0.08)),
    rgba(13, 19, 38, 0.92);
}

.plain-list,
.sidebar-nav,
.timeline-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plain-list li,
.sidebar-nav li,
.timeline-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(239, 243, 255, 0.84);
}

.plain-list li:last-child,
.sidebar-nav li:last-child,
.timeline-list li:last-child {
  border-bottom: 0;
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.strategy-card.large {
  grid-column: span 2;
}

.card-index {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 700;
}

.workspace-band,
.edge-grid,
.roadmap-grid,
.ai-grid,
.cockpit-grid,
.advantage-grid,
.thesis-grid,
.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.quote-banner {
  padding: 24px 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(63, 208, 201, 0.08), rgba(254, 76, 85, 0.08)),
    rgba(255, 255, 255, 0.03);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-banner::after {
  content: "";
  position: absolute;
  inset: auto 28px 0 28px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 202, 112, 0.9), rgba(63, 208, 201, 0.24));
}

.quote-banner p {
  margin: 0 auto;
  max-width: 52ch;
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 1.55vw, 1.58rem);
  line-height: 1.62;
}

.system-fracture-card,
.formula-board,
.platform-architecture,
.ai-command-panel {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.system-fracture-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.9fr) minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(13, 19, 38, 0.9);
}

.fracture-column,
.fracture-break {
  padding: 22px;
  border-radius: var(--radius-lg);
}

.fracture-column {
  background: rgba(255, 255, 255, 0.04);
}

.fracture-break {
  display: grid;
  place-content: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(254, 76, 85, 0.14), rgba(255, 202, 112, 0.08)),
    rgba(255, 255, 255, 0.05);
}

.fracture-column span,
.fracture-break span,
.rail-band-title {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fracture-column strong,
.fracture-break strong,
.architecture-hero strong {
  display: block;
  font-size: 1.18rem;
  line-height: 1.48;
}

.formula-board {
  padding: 30px 32px;
  background:
    linear-gradient(135deg, rgba(255, 202, 112, 0.08), rgba(63, 208, 201, 0.06)),
    rgba(255, 255, 255, 0.03);
  text-align: center;
}

.formula-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.formula-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.96rem;
}

.formula-track .formula-mark {
  min-height: auto;
  padding: 0;
  border: 0;
  background: none;
  color: var(--accent);
  font-size: 1.4rem;
}

.formula-summary {
  max-width: 54ch;
  margin: 18px auto 0;
  font-size: 1rem;
}

.edge-thesis-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.45fr);
  gap: 20px;
  align-items: stretch;
}

.edge-origin-card,
.product-thesis-card,
.cockpit-thesis-card,
.defense-statement,
.economics-thesis-card,
.roadmap-intro-card,
.ai-thesis-panel {
  padding: 32px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.edge-origin-card {
  background:
    radial-gradient(circle at left top, rgba(255, 202, 112, 0.14), transparent 28%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(13, 19, 38, 0.9);
}

.edge-origin-card h3,
.product-thesis-card h3,
.cockpit-thesis-card h3,
.defense-statement h3,
.economics-thesis-card h3,
.roadmap-intro-card h3,
.ai-thesis-panel h3 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  line-height: 1.48;
  letter-spacing: -0.02em;
}

.edge-origin-card p,
.product-thesis-card p,
.cockpit-thesis-card p,
.defense-statement p,
.economics-thesis-card p,
.roadmap-intro-card p,
.ai-thesis-panel p {
  margin: 0;
  color: rgba(239, 243, 255, 0.8);
  line-height: 1.78;
}

.edge-origin-card p + p,
.product-thesis-card p + p,
.cockpit-thesis-card p + p,
.defense-statement p + p,
.economics-thesis-card p + p,
.roadmap-intro-card p + p,
.ai-thesis-panel p + p {
  margin-top: 14px;
}

.edge-origin-note {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold);
  letter-spacing: 0.06em;
}

.advantage-grid-refined {
  align-content: stretch;
}

.window-shell,
.validation-shell {
  display: grid;
  gap: 20px;
}

.window-shell {
  grid-template-columns: minmax(320px, 0.94fr) minmax(0, 1.2fr);
  align-items: stretch;
}

.window-thesis-card,
.validation-intro,
.forecast-card,
.risk-card {
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.window-thesis-card {
  background:
    linear-gradient(135deg, rgba(254, 76, 85, 0.12), rgba(255, 202, 112, 0.08)),
    rgba(13, 19, 38, 0.9);
}

.window-thesis-card h3,
.validation-intro h3,
.forecast-card h3,
.risk-card h3 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.9vw, 1.95rem);
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.window-thesis-card p,
.validation-intro p,
.forecast-card p,
.risk-card p {
  margin: 0;
  color: rgba(239, 243, 255, 0.8);
  line-height: 1.76;
}

.window-grid,
.validation-grid,
.forecast-shell,
.risk-shell {
  display: grid;
  gap: 18px;
}

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

.window-card,
.validation-card {
  padding: 26px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(13, 19, 38, 0.88);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.window-card span,
.validation-card span,
.forecast-card span,
.risk-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.window-card h3,
.validation-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
}

.window-card p,
.validation-card p {
  margin: 0;
  color: rgba(239, 243, 255, 0.8);
  line-height: 1.72;
}

.validation-intro {
  background:
    radial-gradient(circle at left top, rgba(63, 208, 201, 0.14), transparent 30%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(13, 19, 38, 0.9);
}

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

.validation-card-number {
  background:
    linear-gradient(135deg, rgba(255, 202, 112, 0.12), rgba(254, 76, 85, 0.08)),
    rgba(13, 19, 38, 0.9);
}

.validation-card-number strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.7vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.platform-architecture {
  padding: 28px;
  display: grid;
  gap: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(13, 19, 38, 0.9);
  position: relative;
  overflow: hidden;
}

.platform-architecture::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.architecture-hero {
  padding: 28px;
  border-radius: 28px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(254, 76, 85, 0.1), rgba(63, 208, 201, 0.08)),
    rgba(255, 255, 255, 0.04);
}

.architecture-hero strong {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.1vw, 2.1rem);
}

.architecture-hero p {
  max-width: 50ch;
  margin: 0 auto;
  color: rgba(239, 243, 255, 0.78);
  line-height: 1.7;
}

.architecture-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.workspace-tile-platform,
.workspace-tile-supplier,
.workspace-tile-seller {
  position: relative;
  overflow: hidden;
}

.workspace-tile-platform::after,
.workspace-tile-supplier::after,
.workspace-tile-seller::after {
  content: "";
  position: absolute;
  inset: auto 28px 0 28px;
  height: 3px;
  border-radius: 999px;
}

.workspace-tile-platform::after {
  background: linear-gradient(90deg, rgba(254, 76, 85, 0.95), rgba(254, 76, 85, 0.22));
}

.workspace-tile-supplier::after {
  background: linear-gradient(90deg, rgba(255, 202, 112, 0.95), rgba(255, 202, 112, 0.22));
}

.workspace-tile-seller::after {
  background: linear-gradient(90deg, rgba(63, 208, 201, 0.95), rgba(63, 208, 201, 0.22));
}

.rail-band {
  padding: 22px 24px 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.rail-chip-group,
.command-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rail-chip-group span,
.command-chip-group span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(239, 243, 255, 0.86);
}

.thesis-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
    var(--panel);
  box-shadow: var(--shadow);
}

.thesis-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.thesis-card h3 {
  margin: 0 0 14px;
  font-size: 1.34rem;
}

.thesis-card p {
  margin: 0;
  color: rgba(239, 243, 255, 0.82);
  line-height: 1.74;
}

.flywheel-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 22px;
  align-items: center;
}

.flywheel-ring,
.flywheel-note,
.flywheel-hub {
  box-shadow: var(--shadow);
}

.flywheel-ring {
  position: relative;
  min-height: 560px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at center, rgba(63, 208, 201, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(13, 19, 38, 0.88);
  overflow: hidden;
}

.flywheel-ring::before,
.flywheel-ring::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.flywheel-ring::before {
  width: 72%;
  aspect-ratio: 1;
}

.flywheel-ring::after {
  width: 92%;
  aspect-ratio: 1;
  border-style: dashed;
  opacity: 0.5;
  animation: orbitSpin 40s linear infinite reverse;
}

.flywheel-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 250px;
  padding: 34px 26px;
  transform: translate(-50%, -50%);
  border-radius: 28px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(254, 76, 85, 0.14), rgba(63, 208, 201, 0.08)),
    rgba(16, 24, 47, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.flywheel-hub span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flywheel-hub strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 1.64rem;
}

.flywheel-hub p {
  margin: 0;
  color: rgba(239, 243, 255, 0.78);
  line-height: 1.68;
}

.flywheel-step {
  position: absolute;
  width: 190px;
  padding: 18px 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}

.flywheel-step span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(254, 76, 85, 0.12);
  color: var(--brand);
  font-weight: 700;
}

.flywheel-step strong {
  display: block;
  line-height: 1.52;
}

.flywheel-step-1 {
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
}

.flywheel-step-2 {
  top: 22%;
  right: 6%;
}

.flywheel-step-3 {
  bottom: 16%;
  right: 10%;
}

.flywheel-step-4 {
  bottom: 12%;
  left: 10%;
}

.flywheel-step-5 {
  top: 24%;
  left: 5%;
}

.flywheel-notes {
  display: grid;
  gap: 18px;
}

.flywheel-note {
  padding: 26px 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(13, 19, 38, 0.88);
}

.flywheel-note span,
.final-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flywheel-note strong {
  display: block;
  margin: 14px 0 10px;
  font-size: 1.22rem;
}

.flywheel-note p {
  margin: 0;
  color: rgba(239, 243, 255, 0.78);
  line-height: 1.7;
}

.route-shell {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.route-step,
.stack-card {
  padding: 26px 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(13, 19, 38, 0.88);
  box-shadow: var(--shadow);
}

.route-step {
  position: relative;
  overflow: hidden;
}

.route-step::after {
  content: "";
  position: absolute;
  inset: auto 20px 0 20px;
  height: 2px;
  background: linear-gradient(90deg, rgba(254, 76, 85, 0.9), rgba(63, 208, 201, 0.7));
  opacity: 0.9;
}

.route-step span,
.stack-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route-step span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.route-step h3,
.stack-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  line-height: 1.46;
}

.route-step p,
.stack-card p {
  margin: 0;
  color: rgba(239, 243, 255, 0.8);
  line-height: 1.72;
}

.product-thesis-shell,
.cockpit-shell,
.economics-shell,
.roadmap-shell {
  display: grid;
  gap: 20px;
}

.product-thesis-shell,
.economics-shell {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.3fr);
  align-items: start;
}

.route-shell-timeline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.route-step-wide {
  min-height: 100%;
}

.cockpit-thesis-card {
  background:
    linear-gradient(135deg, rgba(63, 208, 201, 0.1), rgba(255, 202, 112, 0.08)),
    rgba(13, 19, 38, 0.9);
}

.ai-thesis-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 22px;
  align-items: center;
  background:
    radial-gradient(circle at right top, rgba(63, 208, 201, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(13, 19, 38, 0.9);
}

.ai-thesis-marks {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.ai-thesis-marks span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(239, 243, 255, 0.9);
  letter-spacing: 0.08em;
}

.defense-shell {
  display: grid;
  gap: 20px;
}

.defense-statement {
  background:
    linear-gradient(135deg, rgba(254, 76, 85, 0.1), rgba(63, 208, 201, 0.06)),
    rgba(13, 19, 38, 0.9);
}

.economics-thesis-card {
  background:
    radial-gradient(circle at left top, rgba(254, 76, 85, 0.12), transparent 26%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(13, 19, 38, 0.9);
}

.economics-ladder {
  display: grid;
  gap: 16px;
}

.economics-formula {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.economics-formula span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(239, 243, 255, 0.88);
}

.economics-formula .formula-mark {
  min-height: auto;
  padding: 0;
  border: 0;
  background: none;
  color: var(--accent);
  font-size: 1.2rem;
}

.model-context-card,
.assumption-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.model-context-card {
  background:
    linear-gradient(135deg, rgba(255, 202, 112, 0.1), rgba(254, 76, 85, 0.07)),
    rgba(13, 19, 38, 0.9);
}

.model-context-card h3,
.assumption-card h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.32rem, 1.8vw, 1.76rem);
  line-height: 1.5;
}

.model-context-card p,
.assumption-card p {
  margin: 0;
  color: rgba(239, 243, 255, 0.8);
  line-height: 1.76;
}

.economics-stage,
.roadmap-stage {
  padding: 26px 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(13, 19, 38, 0.88);
  box-shadow: var(--shadow);
}

.economics-stage span,
.roadmap-stage-head span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.economics-stage h3,
.roadmap-stage h3 {
  margin: 0 0 12px;
  font-size: 1.22rem;
  line-height: 1.5;
}

.economics-stage p,
.roadmap-stage p {
  margin: 0;
  color: rgba(239, 243, 255, 0.8);
  line-height: 1.72;
}

.roadmap-shell {
  grid-template-columns: minmax(320px, 0.94fr) minmax(0, 1.2fr);
  align-items: start;
}

.roadmap-intro-card {
  background:
    linear-gradient(135deg, rgba(255, 202, 112, 0.1), rgba(63, 208, 201, 0.08)),
    rgba(13, 19, 38, 0.9);
}

.roadmap-timeline {
  display: grid;
  gap: 16px;
}

.roadmap-stage {
  position: relative;
  overflow: hidden;
}

.roadmap-stage::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(254, 76, 85, 0.95), rgba(63, 208, 201, 0.75));
}

.roadmap-stage-head {
  position: relative;
  padding-left: 18px;
}

.roadmap-stage p {
  padding-left: 18px;
}

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

.forecast-card {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(13, 19, 38, 0.9);
}

.finance-table-shell {
  margin-top: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.2);
}

.finance-table-shell .data-table tbody tr:last-child td {
  font-weight: 700;
  color: #fff;
}

.finance-table-shell .data-table td:first-child,
.finance-table-shell .data-table th:first-child {
  padding-left: 18px;
}

.finance-table-shell .data-table td:last-child,
.finance-table-shell .data-table th:last-child {
  padding-right: 18px;
}

.finance-table-shell .data-table tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.02);
}

.finance-table-shell .data-table th {
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(10px);
}

.assumption-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.assumption-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(13, 19, 38, 0.9);
}

.risk-shell {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.risk-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(13, 19, 38, 0.88);
}

.risk-card-highlight {
  background:
    linear-gradient(135deg, rgba(254, 76, 85, 0.1), rgba(255, 202, 112, 0.08)),
    rgba(13, 19, 38, 0.92);
}

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

.stack-card ul {
  margin-top: 4px;
}

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

.advantage-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.advantage-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.advantage-card::before {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--brand), rgba(63, 208, 201, 0.8));
}

.advantage-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.advantage-card h3 {
  margin: 0 0 14px;
  font-size: 1.3rem;
}

.advantage-card p {
  margin: 0;
  color: rgba(239, 243, 255, 0.82);
  line-height: 1.72;
}

.diagram-card {
  display: grid;
  grid-template-columns: 1fr 240px 1fr;
  gap: 24px;
  align-items: center;
}

.diagram-core {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  padding: 24px;
  border-radius: 50%;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.32rem;
  background:
    radial-gradient(circle at top, rgba(63, 208, 201, 0.28), transparent 42%),
    linear-gradient(180deg, rgba(254, 76, 85, 0.16), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
}

.final-banner {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at right top, rgba(255, 202, 112, 0.16), transparent 22%),
    linear-gradient(135deg, rgba(254, 76, 85, 0.12), rgba(63, 208, 201, 0.08)),
    rgba(13, 19, 38, 0.88);
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.26);
}

.final-banner::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 208, 201, 0.16), transparent 68%);
  pointer-events: none;
}

.final-banner-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 132px minmax(0, 1.25fr) minmax(320px, 0.9fr);
  gap: 26px;
  align-items: center;
}

.final-brand-mark {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.final-brand-mark img {
  width: 108px;
  height: 108px;
  opacity: 0.92;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.28));
}

.final-content {
  max-width: 60ch;
}

.final-proof-panel {
  padding: 28px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(7, 12, 25, 0.54);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.18);
}

.final-proof-panel strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  line-height: 1.52;
  letter-spacing: -0.02em;
}

.final-proof-panel p {
  margin: 0;
  color: rgba(239, 243, 255, 0.78);
  line-height: 1.74;
}

.final-proof-panel .hero-cta {
  margin-top: 24px;
}

.ai-command-panel {
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(63, 208, 201, 0.1), rgba(255, 202, 112, 0.08)),
    rgba(255, 255, 255, 0.03);
}

.ai-command-panel h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.7vw, 1.75rem);
  line-height: 1.5;
}

.final-summary {
  margin: 16px 0 0;
  max-width: 54ch;
  color: rgba(239, 243, 255, 0.76);
  line-height: 1.8;
}

.final-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.closing-statement {
  padding: 26px 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(254, 76, 85, 0.08), rgba(63, 208, 201, 0.06)),
    rgba(255, 255, 255, 0.03);
  text-align: center;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.closing-statement p {
  margin: 0 auto;
  max-width: 48ch;
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 1.85vw, 1.92rem);
  line-height: 1.6;
}

.motion-ready .reveal-block {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.motion-ready .reveal-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ribbonFlow {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-20%);
  }
}

@keyframes orbitSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

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

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

@keyframes liquidDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(24px, -18px, 0) scale(1.08);
  }
}

@keyframes liquidPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.42;
  }
  50% {
    transform: scale(1.14);
    opacity: 0.66;
  }
}

@keyframes liquidWaveA {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-16deg);
    opacity: 0.24;
  }
  50% {
    transform: translate3d(-24px, 18px, 0) rotate(-7deg);
    opacity: 0.44;
  }
}

@keyframes liquidWaveB {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(12deg);
    opacity: 0.24;
  }
  50% {
    transform: translate3d(20px, -18px, 0) rotate(18deg);
    opacity: 0.42;
  }
}

.app-body {
  padding: 18px;
}

.app-frame {
  min-height: calc(100vh - 36px);
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    radial-gradient(circle at 18% 14%, rgba(63, 208, 201, 0.12), transparent 24%),
    radial-gradient(circle at 78% 12%, rgba(254, 76, 85, 0.12), transparent 22%),
    radial-gradient(circle at 60% 72%, rgba(255, 202, 112, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(14, 21, 42, 0.96), rgba(10, 16, 31, 0.96)),
    rgba(9, 14, 28, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.app-frame::before,
.app-frame::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(34px);
  pointer-events: none;
  opacity: 0.48;
  z-index: 0;
}

.app-frame::before {
  top: 12%;
  left: -120px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(63, 208, 201, 0.2), transparent 68%);
}

.app-frame::after {
  right: -90px;
  bottom: 10%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(254, 76, 85, 0.22), transparent 66%);
}

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

.ambient-orb,
.ambient-stream {
  position: absolute;
  pointer-events: none;
}

.ambient-orb {
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.42;
  mix-blend-mode: screen;
}

.ambient-orb-a {
  top: 14%;
  left: 24%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(63, 208, 201, 0.32), transparent 68%);
}

.ambient-orb-b {
  top: 46%;
  right: 18%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 202, 112, 0.24), transparent 70%);
}

.ambient-orb-c {
  bottom: 10%;
  left: 42%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(254, 76, 85, 0.24), transparent 68%);
}

.ambient-stream {
  border-radius: 999px;
  opacity: 0.32;
  filter: blur(10px);
}

.ambient-stream-a {
  top: 22%;
  right: -8%;
  width: 420px;
  height: 120px;
  transform: rotate(-16deg);
  background: linear-gradient(90deg, transparent, rgba(63, 208, 201, 0.28), rgba(255, 255, 255, 0.03), transparent);
}

.ambient-stream-b {
  bottom: 14%;
  left: -10%;
  width: 460px;
  height: 110px;
  transform: rotate(12deg);
  background: linear-gradient(90deg, transparent, rgba(254, 76, 85, 0.22), rgba(255, 202, 112, 0.08), transparent);
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(10, 15, 30, 0.66);
  backdrop-filter: blur(10px) saturate(118%);
  position: relative;
  z-index: 2;
}

.app-topbar::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(63, 208, 201, 0.4), rgba(254, 76, 85, 0.34), transparent);
  opacity: 0.8;
}

.app-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.app-brand-logo {
  width: 150px;
}

.app-brand-copy strong,
.app-brand-copy span {
  display: block;
}

.app-brand-copy strong {
  margin-bottom: 4px;
  font-size: 1rem;
}

.app-brand-copy span,
.search-shell,
.org-chip,
.avatar-chip,
.sidebar-caption,
.surface-head .eyebrow,
.kpi-card p,
.module-card p,
.score-box p,
.loop-card p,
.sidebar-footer-card span {
  color: var(--muted);
}

.app-topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.search-shell,
.org-chip,
.avatar-chip {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 16px;
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.search-shell {
  min-width: 280px;
}

.app-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: calc(100vh - 110px);
  position: relative;
  z-index: 1;
}

.app-sidebar {
  padding: 22px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(8, 13, 26, 0.42);
  backdrop-filter: blur(10px) saturate(118%);
  position: relative;
}

.app-sidebar::after {
  content: "";
  position: absolute;
  top: 26px;
  bottom: 26px;
  right: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.sidebar-section + .sidebar-section {
  margin-top: 24px;
}

.sidebar-caption {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.workspace-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--text);
  cursor: pointer;
}

.workspace-btn.active {
  background: linear-gradient(135deg, rgba(254, 76, 85, 0.18), rgba(63, 208, 201, 0.14));
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 12px 26px rgba(0, 0, 0, 0.16);
}

.sidebar-nav li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.sidebar-nav li::after {
  content: "→";
  color: var(--accent);
}

.sidebar-footer-card {
  margin-top: 28px;
}

.sidebar-footer-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sidebar-footer-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.app-main {
  padding: 26px;
  display: grid;
  gap: 18px;
  position: relative;
}

.app-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0 4px;
}

.toolbar-group,
.toolbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.toolbar-chip,
.toolbar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.92rem;
}

.toolbar-chip {
  color: var(--muted);
}

.toolbar-chip-active {
  color: var(--accent);
  background: rgba(63, 208, 201, 0.12);
}

.toolbar-btn {
  cursor: pointer;
  transition: 180ms ease;
}

.toolbar-btn:hover {
  transform: translateY(-1px);
}

.toolbar-btn-primary {
  border-color: transparent;
  background: linear-gradient(135deg, #fe4c55 0%, #f23068 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(254, 76, 85, 0.22);
}

.app-hero,
.surface-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.app-hero {
  padding: 10px 4px 2px;
}

.app-hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.hero-text {
  margin: 14px 0 0;
  max-width: 62ch;
  color: rgba(239, 243, 255, 0.78);
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.kpi-card {
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.kpi-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.86rem;
  font-family: var(--font-display);
}

.kpi-card p {
  font-size: 0.94rem;
}

.main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
  gap: 18px;
}

.surface-card {
  background: rgba(255, 255, 255, 0.035);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
}

.status-pill-alt {
  background: var(--brand-soft);
  color: var(--brand);
}

.command-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.surface-head .eyebrow {
  margin-bottom: 8px;
}

.surface-head h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.timeline-list li {
  padding-left: 22px;
  position: relative;
}

.timeline-list li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #8ffff6);
  box-shadow: 0 0 0 6px rgba(63, 208, 201, 0.12);
}

.insight-stack,
.module-grid,
.loop-board,
.score-grid {
  display: grid;
  gap: 14px;
}

.insight-item,
.module-card,
.loop-card,
.score-box {
  padding: 18px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.insight-item h3,
.module-card h3,
.score-box h3 {
  margin: 0 0 10px;
  font-size: 1.02rem;
}

.module-grid {
  margin-top: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.module-card {
  display: grid;
  gap: 8px;
}

.module-meta {
  margin: 0;
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.loop-board {
  margin-top: 18px;
}

.loop-card {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.loop-step {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(63, 208, 201, 0.12);
  border: 1px solid rgba(63, 208, 201, 0.16);
  font-weight: 700;
}

.score-grid {
  margin-top: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.score-box ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.score-box li {
  margin-bottom: 8px;
  color: rgba(239, 243, 255, 0.82);
}

.table-shell {
  overflow: auto;
  margin-top: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.data-table th,
.data-table td {
  padding: 16px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.data-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.data-table th {
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.badge-inline {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.badge-green {
  background: rgba(63, 208, 201, 0.12);
  color: var(--accent);
}

.badge-red {
  background: rgba(254, 76, 85, 0.12);
  color: var(--brand);
}

.badge-gold {
  background: rgba(255, 202, 112, 0.12);
  color: var(--gold);
}

.sidebar-role-card,
.sidebar-page-nav,
.surface-card-rich,
.assistant-note,
.mini-card,
.preview-mock {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px) saturate(112%);
}

.sidebar-role-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  display: grid;
  gap: 14px;
}

.sidebar-role-card::after,
.preview-surface::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 72px;
  height: 72px;
  background-image: url("./彼柚logo/图标logo（中+英）上下布局（带R）@3x.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.12;
  pointer-events: none;
  filter: saturate(0.9);
}

.sidebar-role-card > strong {
  display: block;
  font-size: 1.05rem;
}

.sidebar-role-card > p {
  margin: 0;
  color: rgba(239, 243, 255, 0.74);
  line-height: 1.76;
  font-size: 0.94rem;
}

.sidebar-role-list,
.sidebar-page-nav,
.assistant-feed,
.prompt-chip-row,
.mini-card-grid {
  display: grid;
  gap: 12px;
}

.sidebar-role-list article,
.page-nav-btn {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.sidebar-role-list span,
.page-nav-btn span,
.surface-subtitle,
.preview-meta,
.mini-card span {
  display: inline-block;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sidebar-role-list strong,
.page-nav-btn strong,
.mini-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  color: var(--text);
}

.page-nav-btn {
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.page-nav-btn:hover,
.page-nav-btn.active {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(254, 76, 85, 0.12), rgba(63, 208, 201, 0.08)),
    rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 14px 32px rgba(0, 0, 0, 0.16);
}

.app-main-immersive {
  align-content: start;
  overflow: auto;
  isolation: isolate;
}

.app-main-immersive::before {
  content: "";
  position: absolute;
  top: 34px;
  right: 42px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(63, 208, 201, 0.12), transparent 70%);
  filter: blur(24px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.workspace-page-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(340px, 0.9fr);
  gap: 22px;
  padding: 30px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.08), transparent 18%),
    radial-gradient(circle at top right, rgba(63, 208, 201, 0.18), transparent 24%),
    radial-gradient(circle at left bottom, rgba(254, 76, 85, 0.18), transparent 24%),
    linear-gradient(145deg, rgba(9, 15, 29, 0.88), rgba(14, 22, 42, 0.78));
  backdrop-filter: blur(8px) saturate(112%);
}

.workspace-page-hero::before,
.workspace-page-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.workspace-page-hero::before {
  width: 340px;
  height: 180px;
  right: -40px;
  top: -40px;
  background: linear-gradient(90deg, rgba(63, 208, 201, 0.14), rgba(255, 255, 255, 0.02), transparent);
  filter: blur(14px);
  transform: rotate(-8deg);
}

.workspace-page-hero::after {
  left: 18%;
  bottom: -72px;
  width: 320px;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 202, 112, 0.12), transparent 70%);
  filter: blur(20px);
}

.workspace-page-hero > * {
  position: relative;
  z-index: 1;
}

.workspace-page-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.14;
  max-width: 13ch;
}

.workspace-hero-ai {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(254, 76, 85, 0.12), rgba(63, 208, 201, 0.08)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.workspace-hero-ai::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 66%);
  filter: blur(20px);
  opacity: 0.7;
}

.workspace-hero-ai h3 {
  margin: 10px 0 18px;
  font-family: var(--font-display);
  font-size: 1.38rem;
  line-height: 1.52;
}

.page-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.page-badge,
.prompt-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px) saturate(108%);
}

.page-badge {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(239, 243, 255, 0.84);
  font-size: 0.92rem;
}

.surface-card-rich {
  position: relative;
  overflow: hidden;
  padding: 26px;
  background:
    radial-gradient(circle at top right, rgba(63, 208, 201, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(10, 16, 31, 0.84);
}

.surface-card-rich::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.34), transparent);
  opacity: 0.48;
}

.surface-card-rich::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(63, 208, 201, 0.08), transparent 70%);
  filter: blur(18px);
  opacity: 0.7;
}

.surface-card-rich > * {
  position: relative;
  z-index: 1;
}

.surface-subtitle {
  color: var(--accent);
}

.assistant-note {
  padding: 16px 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
}

.assistant-note span {
  color: var(--accent);
}

.assistant-note strong {
  display: block;
  margin: 8px 0 10px;
  font-size: 1rem;
}

.assistant-note p,
.preview-copy,
.mini-card-meta {
  margin: 0;
  color: rgba(239, 243, 255, 0.76);
  line-height: 1.72;
}

.assistant-note-plain {
  min-height: 100%;
}

.prompt-chip-row {
  grid-template-columns: repeat(1, minmax(0, 1fr));
  margin-top: 16px;
}

.prompt-chip {
  justify-content: flex-start;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.prompt-chip:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
}

.app-main-grid,
.bottom-grid,
.preview-grid {
  display: grid;
  gap: 18px;
}

.app-main-grid,
.bottom-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.preview-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  align-items: stretch;
}

.preview-mock {
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(7, 12, 25, 0.88);
  transform: none;
}

.preview-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px 14px;
}

.preview-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.preview-browser-bar span:nth-child(1) {
  background: rgba(254, 76, 85, 0.9);
}

.preview-browser-bar span:nth-child(2) {
  background: rgba(255, 202, 112, 0.9);
}

.preview-browser-bar span:nth-child(3) {
  background: rgba(63, 208, 201, 0.9);
}

.preview-surface {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: 18px;
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(255, 202, 112, 0.09), transparent 20%),
    linear-gradient(145deg, rgba(17, 25, 47, 0.96), rgba(11, 17, 34, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.preview-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.preview-nav span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(239, 243, 255, 0.72);
  font-size: 0.84rem;
}

.preview-hero-title {
  margin: 12px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.42;
  max-width: 16ch;
}

.mini-card {
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.mini-card-meta {
  margin-top: 8px;
  font-size: 0.9rem;
}

.kpi-card-emerald {
  border-color: rgba(63, 208, 201, 0.2);
  background: linear-gradient(180deg, rgba(63, 208, 201, 0.14), rgba(255, 255, 255, 0.03));
}

.kpi-card-cyan {
  border-color: rgba(111, 203, 255, 0.22);
  background: linear-gradient(180deg, rgba(92, 181, 255, 0.14), rgba(255, 255, 255, 0.03));
}

.kpi-card-amber {
  border-color: rgba(255, 202, 112, 0.22);
  background: linear-gradient(180deg, rgba(255, 202, 112, 0.14), rgba(255, 255, 255, 0.03));
}

.kpi-card-rose {
  border-color: rgba(254, 76, 85, 0.22);
  background: linear-gradient(180deg, rgba(254, 76, 85, 0.14), rgba(255, 255, 255, 0.03));
}

@media (max-width: 1180px) {
  .hero-shell,
  .hero-panel-primary,
  .hero-master-grid,
  .metric-band,
  .thesis-grid,
  .strategy-grid,
  .workspace-band,
  .edge-grid,
  .roadmap-grid,
  .ai-grid,
  .cockpit-grid,
  .main-grid,
  .data-grid,
  .score-grid,
  .flywheel-shell,
  .route-shell,
  .inflection-grid,
  .breakpoint-grid,
  .economics-grid,
  .hero-thesis-grid,
  .architecture-grid,
  .edge-thesis-shell,
  .window-shell,
  .product-thesis-shell,
  .economics-shell,
  .roadmap-shell,
  .final-banner-grid,
  .ai-thesis-panel,
  .window-grid,
  .validation-grid,
  .forecast-shell,
  .risk-shell,
  .assumption-grid,
  .hero-baseline-grid,
  .traction-metric-grid {
    grid-template-columns: 1fr;
  }

  .diagram-card,
  .app-layout,
  .system-fracture-card {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workspace-page-hero,
  .preview-grid,
  .app-main-grid,
  .bottom-grid {
    grid-template-columns: 1fr;
  }

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

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

  .ecosystem-map,
  .flywheel-ring {
    min-height: 520px;
  }

  .hero-brand-watermark {
    width: 250px;
    right: -18px;
    top: 72px;
  }

  .final-brand-mark {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 10px 0;
  }

  .site-header-inner,
  .app-topbar,
  .app-toolbar,
  .surface-head,
  .final-banner,
  .app-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-main,
  .app-main {
    width: min(100% - 12px, 1320px);
  }

  .site-main {
    margin-top: 18px;
  }

  .hero-copy,
  .hero-visual,
  .hero-panel-master,
  .hero-panel-side,
  .narrative-card,
  .strategy-card,
  .workspace-tile,
  .ai-card,
  .cockpit-card,
  .edge-card,
  .roadmap-card,
  .diagram-card,
  .final-banner,
  .surface-card,
  .app-sidebar,
  .app-main {
    padding: 22px;
  }

  .brand-logo,
  .app-brand-logo {
    width: 128px;
  }

  .hero-copy h1,
  .section-header h2,
  .final-banner h2,
  .app-hero h1 {
    max-width: none;
  }

  .hero-brandline {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-brandmeta {
    justify-items: start;
    text-align: left;
  }

  .edge-origin-card,
  .window-thesis-card,
  .validation-intro,
  .product-thesis-card,
  .cockpit-thesis-card,
  .defense-statement,
  .economics-thesis-card,
  .roadmap-intro-card,
  .ai-thesis-panel,
  .model-context-card,
  .assumption-card,
  .forecast-card,
  .risk-card,
  .economics-stage,
  .roadmap-stage,
  .final-proof-panel {
    padding: 22px;
  }

  .hero-brand-watermark {
    position: absolute;
    right: -30px;
    top: auto;
    bottom: -28px;
    width: 180px;
    opacity: 0.1;
    transform: rotate(-5deg);
  }

  .thesis-board,
  .formula-board,
  .platform-architecture,
  .ai-command-panel,
  .system-fracture-card {
    padding: 22px;
  }

  .formula-track,
  .economics-formula,
  .rail-chip-group,
  .command-chip-group {
    justify-content: flex-start;
  }

  .ai-thesis-marks {
    justify-content: flex-start;
  }

  .route-shell-timeline {
    grid-template-columns: 1fr;
  }

  .hero-baseline-card,
  .traction-metric {
    padding: 16px;
  }

  .roadmap-stage-head,
  .roadmap-stage p {
    padding-left: 14px;
  }

  .final-brand-mark {
    display: none;
  }

  .ecosystem-map,
  .flywheel-ring {
    min-height: auto;
    padding: 24px;
  }

  .ecosystem-map::before,
  .ecosystem-map::after,
  .flywheel-ring::before,
  .flywheel-ring::after {
    display: none;
  }

  .ecosystem-core,
  .ecosystem-node,
  .flywheel-hub,
  .flywheel-step {
    position: static;
    transform: none;
    width: 100%;
  }

  .ecosystem-map,
  .flywheel-ring {
    display: grid;
    gap: 14px;
  }

  .ecosystem-orbit,
  .node-supply,
  .node-seller,
  .node-engine,
  .flywheel-ring::after {
    animation: none;
  }

  .kpi-grid,
  .command-layout,
  .score-grid,
  .module-grid,
  .stack-grid,
  .advantage-grid,
  .economics-grid,
  .app-main-grid,
  .bottom-grid,
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .ribbon-track {
    animation-duration: 24s;
  }

  .search-shell {
    min-width: 0;
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Interactive Demo: Upload & Order Flows
   ═══════════════════════════════════════════════════════════════ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.4rem;
  background: #fe4c55;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
  white-space: nowrap;
}
.btn-primary:hover:not(:disabled) { opacity: 0.85; }
.btn-primary:active:not(:disabled) { transform: scale(0.98); }
.btn-primary:disabled { opacity: 0.35; cursor: not-allowed; }
.btn-primary.btn-sm { padding: 0.38rem 0.9rem; font-size: 0.8rem; border-radius: 6px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.35); color: #fff; }

/* ── Product list (upload page) ──────────────────────────────── */
.product-list-table {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.product-list-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  transition: background 0.15s;
}
.product-list-row:hover { background: rgba(255,255,255,0.07); }

.product-list-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.product-list-info strong { font-size: 0.9rem; color: #fff; }
.product-list-info span { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

.product-perf { font-size: 0.78rem; color: rgba(255,255,255,0.38); white-space: nowrap; }

.product-status-badge {
  padding: 0.22rem 0.7rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}
.status-active  { background: rgba(16,185,129,0.12); color: #34d399; }
.status-warning { background: rgba(245,158,11,0.12);  color: #fbbf24; }
.status-pending { background: rgba(139,92,246,0.12);  color: #c4b5fd; }

.product-list-actions { display: flex; gap: 0.5rem; }

/* ── Upload form ─────────────────────────────────────────────── */
.upload-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-top: 1.25rem;
}

.form-field { display: flex; flex-direction: column; gap: 0.45rem; }
.form-field-full { grid-column: 1 / -1; }

.form-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.form-required { font-size: 0.68rem; color: #fe4c55; font-weight: 500; }

.form-input {
  padding: 0.65rem 0.9rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: #fff;
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}
.form-input:focus { border-color: rgba(63,208,201,0.45); background: rgba(255,255,255,0.08); }
.form-input::placeholder { color: rgba(255,255,255,0.2); }

.form-hint { font-size: 0.73rem; color: rgba(255,255,255,0.28); margin-top: -0.2rem; }

.ai-form-value {
  padding: 0.65rem 0.9rem;
  background: rgba(63,208,201,0.05);
  border: 1px solid rgba(63,208,201,0.18);
  border-radius: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  line-height: 1.55;
  min-height: 2.5rem;
}

.ai-placeholder { color: rgba(255,255,255,0.2); font-style: italic; }

.ai-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.08rem 0.4rem;
  background: rgba(63,208,201,0.15);
  color: #3fd0c9;
  border-radius: 4px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ai-typing { position: relative; }
.ai-typing::after {
  content: '|';
  color: #3fd0c9;
  animation: cursor-blink 0.65s infinite;
}
@keyframes cursor-blink { 0%,100%{opacity:1} 50%{opacity:0} }

.form-actions {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* ── Order flow ──────────────────────────────────────────────── */
.order-steps-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.order-step {
  padding: 0.28rem 0.8rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
}
.order-step.active { background: rgba(254,76,85,0.12); color: #fe4c55; border-color: rgba(254,76,85,0.3); }
.order-step.done   { background: rgba(16,185,129,0.1);  color: #34d399; border-color: rgba(16,185,129,0.22); }
.step-arrow { color: rgba(255,255,255,0.18); font-size: 0.75rem; }

.order-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.order-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  transition: border-color 0.18s, background 0.18s;
}
.order-product-card:hover { background: rgba(255,255,255,0.07); }
.order-product-hot { border-color: rgba(254,76,85,0.28); background: rgba(254,76,85,0.03); }

.hot-tag {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  padding: 0.18rem 0.6rem;
  background: rgba(254,76,85,0.15);
  color: #fe4c55;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
}

.order-product-info { display: flex; flex-direction: column; gap: 0.25rem; }
.order-product-info strong { font-size: 0.9rem; color: #fff; padding-right: 3.5rem; }
.order-product-info > span { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.order-product-reason { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 0.2rem; line-height: 1.45; }

.order-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.order-margin { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.order-margin strong { color: #34d399; font-size: 0.88rem; }

.order-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.order-summary-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
}
.order-summary-item span   { font-size: 0.73rem; color: rgba(255,255,255,0.4); }
.order-summary-item strong { font-size: 0.92rem; color: #fff; }
.color-emerald { color: #34d399 !important; }

/* ── Success state ───────────────────────────────────────────── */
.success-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3.5rem 2rem 2.5rem;
  gap: 0.9rem;
}

.success-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(16,185,129,0.12);
  border: 2px solid rgba(16,185,129,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #34d399;
  margin-bottom: 0.5rem;
}
.success-shell h2 { font-size: 1.4rem; color: #fff; margin: 0; }
.success-shell > p { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin: 0; }
.success-shell > p strong { color: #fff; }

.success-details {
  display: flex;
  gap: 1.2rem;
  margin: 0.5rem 0;
  flex-wrap: wrap;
  justify-content: center;
}

.success-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: center;
  padding: 0.7rem 1.4rem;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
}
.success-detail-item span   { font-size: 0.72rem; color: rgba(255,255,255,0.4); }
.success-detail-item strong { font-size: 0.9rem;  color: #fff; }
.success-note { font-size: 0.76rem; color: rgba(255,255,255,0.28); }

.btn-confirm { min-width: 11rem; justify-content: center; }
