.layout-shell {
  background: var(--color-black);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(12, 12, 13, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-line);
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--color-gold);
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  padding: 0.6rem 1rem;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--color-gold);
}

.site-main {
  padding: 40px 0 80px;
}

.hero {
  position: relative;
  padding: 80px 0;
  background: radial-gradient(circle at top, #2c2214, transparent 55%),
    linear-gradient(120deg, #0c0c0d 0%, #151516 100%);
  border-bottom: 1px solid var(--color-line);
}

.hero-content {
  max-width: 760px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero-subtitle {
  color: var(--color-mute);
  font-size: 18px;
  margin-bottom: 32px;
}

.hero-panel {
  background: var(--color-ink);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.section-title {
  font-family: var(--font-display);
  font-size: 32px;
  margin-bottom: 20px;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.gold-line {
  width: 48px;
  height: 3px;
  background: var(--color-gold);
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.stat-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.stat-card {
  background: var(--color-ink);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
}

.stat-value {
  font-size: 28px;
  color: var(--color-gold);
  font-weight: 700;
}

.stat-label {
  color: var(--color-mute);
  margin-top: 4px;
}

.feature-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  background: var(--color-ink);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(214, 167, 74, 0.15);
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.article-card {
  background: var(--color-ink);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 18px;
}

.article-meta {
  color: var(--color-mute);
  font-size: 13px;
}

.order-card {
  background: var(--color-ink);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.order-progress {
  position: relative;
  padding: 18px 0 6px;
  margin: 18px 0 12px;
}

.order-progress::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 26px;
  height: 2px;
  background: var(--color-line);
}

.order-progress .progress-line {
  position: absolute;
  left: 0;
  top: 26px;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-mid);
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 90px;
  color: var(--color-mute);
  font-size: 12px;
}

.progress-step .step-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-ink-2);
  border: 2px solid var(--color-line);
}

.progress-step.done,
.progress-step.active {
  color: var(--color-gold);
}

.progress-step.done .step-dot,
.progress-step.active .step-dot {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.order-status-pill {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 12px;
}

.status-paid {
  background: rgba(70, 211, 154, 0.2);
  color: var(--color-success);
}

.status-pending {
  background: rgba(242, 178, 85, 0.2);
  color: var(--color-warning);
}

.status-failed {
  background: rgba(240, 107, 107, 0.2);
  color: var(--color-danger);
}

.status-cancelled {
  background: rgba(160, 160, 166, 0.2);
  color: var(--color-mute);
}

.article-content {
  color: #e6e6e8;
  line-height: 1.8;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4 {
  font-family: var(--font-display);
  margin-top: 24px;
}

.article-content a {
  color: var(--color-gold);
}

.site-footer {
  border-top: 1px solid var(--color-line);
  padding: 40px 0;
  background: #0a0a0b;
}

.footer-top {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 24px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.footer-title {
  color: var(--color-gold);
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
  color: var(--color-mute);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  color: var(--color-mute);
  font-size: 13px;
}

.footer-badges span {
  margin-left: 16px;
}

.cs-float {
  position: fixed;
  right: 20px;
  bottom: 80px;
  width: 220px;
  background: var(--color-ink);
  border: 1px solid var(--color-line);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  display: none;
  z-index: 999;
}

.cs-header {
  padding: 10px 12px;
  font-weight: 600;
  border-bottom: 1px solid var(--color-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cs-close {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-mute);
}

.cs-body {
  padding: 10px 12px;
}

.cs-item {
  display: block;
  padding: 6px 0;
  color: var(--color-mute);
  text-decoration: none;
}

.cs-item:hover {
  color: var(--color-gold);
}

.cs-toggle {
  position: fixed;
  right: 20px;
  bottom: 30px;
  background: var(--color-gold);
  color: #1a1407;
  padding: 10px 16px;
  border-radius: 20px;
  cursor: pointer;
  z-index: 999;
  font-weight: 600;
}
