/* ============================================================
   WPS Office — Solar Bauhaus / Modernist Print Theme
   Palette:
   - Paper:    #fcfaf5 (cream paper)
   - Ink:      #0a0a0a (charcoal black)
   - Crimson:  #e11d48 (postal red)    primary
   - Indigo:   #3730a3 (deep indigo)   secondary
   - Mustard:  #ca8a04 (goldenrod)     accent
   - Sage:     #15803d (forest green)  highlight
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Roboto, Arial, sans-serif;
  line-height: 1.65;
  color: #1c1917;
  background: #fcfaf5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
button:disabled { cursor: not-allowed; opacity: 0.85; }
ul, ol { list-style: none; }

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shapeBob { 0%,100% { transform: translateY(0) rotate(var(--rot,0deg)); } 50% { transform: translateY(-10px) rotate(var(--rot,0deg)); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.55; } }

/* ===== Layout helpers ===== */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== Top Navigation ===== */
.bn-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 250, 245, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 2px solid #0a0a0a;
}
.bn-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.bn-brand { display: flex; align-items: center; gap: 12px; }
.bn-brand-mark {
  width: 38px; height: 38px;
  background: #e11d48;
  display: grid; place-items: center;
  position: relative;
  flex-shrink: 0;
}
.bn-brand-mark::after {
  content: "";
  position: absolute;
  right: -6px; bottom: -6px;
  width: 14px; height: 14px;
  background: #ca8a04;
  border-radius: 50%;
}
.bn-brand-mark svg { width: 22px; height: 22px; }
.bn-brand-text {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: #0a0a0a;
}
.bn-brand-text span { color: #e11d48; }
.bn-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.bn-link {
  position: relative;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #525252;
  border-radius: 0;
  transition: color 0.18s;
}
.bn-link:hover { color: #0a0a0a; }
.bn-link.bn-on {
  color: #0a0a0a;
}
.bn-link.bn-on::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 3px;
  background: #e11d48;
}
.bn-dl-btn {
  background: #0a0a0a;
  color: #fcfaf5;
  padding: 11px 22px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.18s, transform 0.18s;
  border: 2px solid #0a0a0a;
}
.bn-dl-btn:hover { background: #e11d48; border-color: #e11d48; transform: translateY(-1px); }
.bn-dl-btn svg { width: 14px; height: 14px; }
.bn-mob {
  display: none;
  width: 44px; height: 44px;
  border: 2px solid #0a0a0a;
  background: transparent;
  align-items: center;
  justify-content: center;
}
.bn-mob svg { width: 20px; height: 20px; }
.bn-mob-menu { display: none; }
.bn-mob-menu.show { display: block; }
.bn-mob-menu {
  border-top: 2px solid #0a0a0a;
  background: #fcfaf5;
  padding: 12px 24px;
}
.bn-mob-menu .bn-link {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #e7e5e0;
}
.bn-mob-menu .bn-link:last-child { border-bottom: none; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.16s, background 0.16s, color 0.16s, border-color 0.16s, box-shadow 0.16s;
  border: 2px solid transparent;
  text-align: center;
}
.btn svg { width: 16px; height: 16px; }
.btn-lg { padding: 16px 32px; font-size: 1.02rem; }
.btn-sm { padding: 9px 18px; font-size: 0.86rem; }
.btn-crimson { background: #e11d48; color: #fff; border-color: #e11d48; }
.btn-crimson:hover { background: #be123c; border-color: #be123c; transform: translateY(-2px); box-shadow: 6px 6px 0 #0a0a0a; }
.btn-indigo { background: #3730a3; color: #fff; border-color: #3730a3; }
.btn-indigo:hover { background: #312e81; border-color: #312e81; transform: translateY(-2px); box-shadow: 6px 6px 0 #ca8a04; }
.btn-mustard { background: #ca8a04; color: #0a0a0a; border-color: #ca8a04; }
.btn-mustard:hover { background: #a16207; border-color: #a16207; color: #fff; transform: translateY(-2px); box-shadow: 6px 6px 0 #0a0a0a; }
.btn-ink { background: #0a0a0a; color: #fcfaf5; border-color: #0a0a0a; }
.btn-ink:hover { background: transparent; color: #0a0a0a; transform: translateY(-2px); box-shadow: 6px 6px 0 #e11d48; }
.btn-outline { background: transparent; color: #0a0a0a; border-color: #0a0a0a; }
.btn-outline:hover { background: #0a0a0a; color: #fcfaf5; transform: translateY(-2px); }
.btn-outline-w { background: transparent; color: #fcfaf5; border-color: #fcfaf5; }
.btn-outline-w:hover { background: #fcfaf5; color: #0a0a0a; transform: translateY(-2px); }
.btn-white { background: #fcfaf5; color: #0a0a0a; border-color: #fcfaf5; }
.btn-white:hover { background: #ca8a04; color: #0a0a0a; border-color: #ca8a04; transform: translateY(-2px); box-shadow: 6px 6px 0 rgba(0,0,0,0.4); }
.btn-ghost { background: transparent; color: #0a0a0a; border-color: transparent; }
.btn-ghost:hover { color: #e11d48; }

/* ===== Section base ===== */
.sec { padding: 96px 0; }
.sec-sm { padding: 64px 0; }
.sec-cream { background: #fcfaf5; }
.sec-paper { background: #f5f1e8; }
.sec-ink { background: #0a0a0a; color: #f5f1e8; }
.sec-crimson { background: #e11d48; color: #fff; }
.sec-indigo { background: #3730a3; color: #fff; }
.sec-mustard { background: #ca8a04; color: #0a0a0a; }

.sec-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.sec-head.left { text-align: left; margin-left: 0; }
.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0a0a0a;
  color: #fcfaf5;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.sec-eyebrow.ey-crimson { background: #e11d48; color: #fff; }
.sec-eyebrow.ey-indigo { background: #3730a3; color: #fff; }
.sec-eyebrow.ey-mustard { background: #ca8a04; color: #0a0a0a; }
.sec-eyebrow.ey-paper { background: #fcfaf5; color: #0a0a0a; }
.sec-eyebrow .ey-dot { width: 8px; height: 8px; background: currentColor; }
.sec-title {
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #0a0a0a;
  margin-bottom: 18px;
}
.sec-title.light { color: #fcfaf5; }
.sec-sub {
  font-size: 1.06rem;
  color: #525252;
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
}
.sec-sub.light { color: rgba(252,250,245,0.78); }
.sec-head.left .sec-sub { margin-left: 0; }
.hl-crimson { color: #e11d48; }
.hl-indigo { color: #3730a3; }
.hl-mustard { color: #ca8a04; }
.hl-sage { color: #15803d; }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: #fcfaf5;
  overflow: hidden;
  border-bottom: 2px solid #0a0a0a;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(to right, rgba(10,10,10,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10,10,10,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 24px 100px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}
.hero-text { animation: fadeUp 0.6s ease both; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fcfaf5;
  border: 2px solid #0a0a0a;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 26px;
  box-shadow: 4px 4px 0 #e11d48;
}
.hero-eyebrow-dot {
  width: 8px; height: 8px;
  background: #e11d48;
  animation: blink 2s ease-in-out infinite;
}
.hero-h1 {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #0a0a0a;
  margin-bottom: 24px;
}
.hero-h1 .hl-block {
  position: relative;
  display: inline-block;
  background: #ca8a04;
  color: #0a0a0a;
  padding: 0 8px;
}
.hero-h1 .hl-und {
  position: relative;
  display: inline-block;
  color: #e11d48;
}
.hero-h1 .hl-und::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 6px;
  background: #e11d48;
  opacity: 0.3;
}
.hero-p {
  font-size: 1.15rem;
  color: #404040;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 28px;
  border-top: 2px solid #0a0a0a;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #404040;
}
.hero-trust-ico {
  width: 28px; height: 28px;
  display: grid; place-items: center;
}
.hero-trust-ico.tc-crimson { background: #fee2e7; color: #e11d48; }
.hero-trust-ico.tc-indigo { background: #e0e7ff; color: #3730a3; }
.hero-trust-ico.tc-mustard { background: #fef3c7; color: #ca8a04; }
.hero-trust-ico.tc-sage { background: #dcfce7; color: #15803d; }
.hero-trust-ico svg { width: 16px; height: 16px; }

.hero-vis {
  position: relative;
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.1s;
}
.hero-stage {
  position: relative;
  height: 480px;
}
/* Bauhaus geometric shapes */
.hero-shape { position: absolute; }
.hero-circle {
  width: 220px; height: 220px;
  border-radius: 50%;
  background: #e11d48;
  top: 20px; left: 30px;
  z-index: 1;
  --rot: 0deg;
  animation: shapeBob 6s ease-in-out infinite;
}
.hero-square {
  width: 180px; height: 180px;
  background: #3730a3;
  bottom: 30px; right: 60px;
  z-index: 2;
  --rot: 0deg;
  animation: shapeBob 7s ease-in-out infinite;
  animation-delay: -2s;
}
.hero-tri {
  width: 0; height: 0;
  border-left: 90px solid transparent;
  border-right: 90px solid transparent;
  border-bottom: 156px solid #ca8a04;
  top: 80px; right: 30px;
  z-index: 3;
}
/* Document mock card on top */
.hero-card {
  position: absolute;
  top: 70px; left: 100px;
  width: 320px;
  background: #fcfaf5;
  border: 3px solid #0a0a0a;
  box-shadow: 12px 12px 0 #0a0a0a;
  padding: 22px;
  z-index: 4;
}
.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 2px solid #0a0a0a;
}
.hero-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e11d48;
  color: #fff;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-card-dots { display: flex; gap: 6px; }
.hero-card-dot { width: 10px; height: 10px; border-radius: 50%; }
.hero-card-dot.r { background: #e11d48; }
.hero-card-dot.y { background: #ca8a04; }
.hero-card-dot.g { background: #15803d; }
.hero-card-rows { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.hero-card-row { display: flex; align-items: center; gap: 10px; }
.hero-card-bar {
  height: 10px;
  background: #e7e5e0;
  flex: 1;
  position: relative;
  overflow: hidden;
}
.hero-card-bar::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: var(--w, 60%);
  background: var(--c, #e11d48);
}
.hero-card-pct { font-size: 0.78rem; font-weight: 700; color: #0a0a0a; min-width: 36px; text-align: right; }
.hero-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.hero-card-stat {
  background: #f5f1e8;
  border: 2px solid #0a0a0a;
  padding: 10px;
}
.hero-card-stat-num { font-size: 1.2rem; font-weight: 800; color: #0a0a0a; line-height: 1; margin-bottom: 4px; }
.hero-card-stat-num.crimson { color: #e11d48; }
.hero-card-stat-num.indigo { color: #3730a3; }
.hero-card-stat-num.mustard { color: #ca8a04; }
.hero-card-stat-lbl { font-size: 0.7rem; color: #525252; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

/* ===== Marquee Ticker ===== */
.ticker-bar {
  background: #0a0a0a;
  color: #fcfaf5;
  padding: 14px 0;
  overflow: hidden;
  border-bottom: 2px solid #e11d48;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.ticker-sep {
  width: 8px; height: 8px;
  background: #ca8a04;
  flex-shrink: 0;
}
.ticker-item.cr { color: #e11d48; }
.ticker-item.in { color: #a5b4fc; }
.ticker-item.mu { color: #ca8a04; }
.ticker-item.sg { color: #6ee7b7; }

/* ===== Stats Strip ===== */
.stats-strip {
  background: #fcfaf5;
  padding: 60px 0;
  border-bottom: 2px solid #0a0a0a;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 8px 16px;
  border-right: 2px solid #0a0a0a;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num.crimson { color: #e11d48; }
.stat-num.indigo { color: #3730a3; }
.stat-num.mustard { color: #ca8a04; }
.stat-num.sage { color: #15803d; }
.stat-num.ink { color: #0a0a0a; }
.stat-lbl {
  font-size: 0.85rem;
  font-weight: 600;
  color: #525252;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ===== Feature Cards ===== */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feat-card {
  background: #fcfaf5;
  border: 2px solid #0a0a0a;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feat-card::before {
  content: "";
  position: absolute;
  top: -2px; left: -2px; right: -2px;
  height: 8px;
  background: var(--bar, #e11d48);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.feat-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 #0a0a0a;
}
.feat-card:hover::before { transform: scaleX(1); }
.feat-card.fc-crimson { --bar: #e11d48; }
.feat-card.fc-indigo { --bar: #3730a3; }
.feat-card.fc-mustard { --bar: #ca8a04; }
.feat-card.fc-sage { --bar: #15803d; }
.feat-card.fc-rose { --bar: #f43f5e; }
.feat-card.fc-sky { --bar: #0284c7; }
.feat-num {
  font-family: "Inter", monospace;
  font-size: 0.78rem;
  font-weight: 800;
  color: #a3a3a3;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}
.feat-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  margin-bottom: 20px;
  border: 2px solid #0a0a0a;
}
.feat-icon.fi-crimson { background: #fee2e7; color: #e11d48; }
.feat-icon.fi-indigo { background: #e0e7ff; color: #3730a3; }
.feat-icon.fi-mustard { background: #fef3c7; color: #ca8a04; }
.feat-icon.fi-sage { background: #dcfce7; color: #15803d; }
.feat-icon.fi-rose { background: #ffe4e6; color: #f43f5e; }
.feat-icon.fi-sky { background: #e0f2fe; color: #0284c7; }
.feat-icon svg { width: 28px; height: 28px; }
.feat-name {
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #0a0a0a;
  margin-bottom: 12px;
}
.feat-desc {
  font-size: 0.94rem;
  color: #525252;
  line-height: 1.7;
}

/* ===== Pillar Modules ===== */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pillar-card {
  background: #fcfaf5;
  border: 2px solid #0a0a0a;
  padding: 28px 24px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pillar-card:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 #0a0a0a; }
.pillar-icon {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.pillar-icon svg { width: 32px; height: 32px; }
.pillar-card.pc-crimson .pillar-icon { background: #e11d48; color: #fff; }
.pillar-card.pc-indigo .pillar-icon { background: #3730a3; color: #fff; }
.pillar-card.pc-mustard .pillar-icon { background: #ca8a04; color: #0a0a0a; }
.pillar-card.pc-sage .pillar-icon { background: #15803d; color: #fff; }
.pillar-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 8px;
}
.pillar-sub {
  font-size: 0.82rem;
  font-weight: 700;
  color: #a3a3a3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pillar-desc {
  font-size: 0.92rem;
  color: #404040;
  line-height: 1.7;
  margin-bottom: 18px;
}
.pillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pillar-tag {
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 10px;
  border: 1px solid #0a0a0a;
  background: #f5f1e8;
  color: #0a0a0a;
}

/* ===== Tab Showcase ===== */
.tab-section { background: #f5f1e8; padding: 96px 0; border-top: 2px solid #0a0a0a; border-bottom: 2px solid #0a0a0a; }
.tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.tab-btn {
  padding: 12px 24px;
  font-weight: 700;
  font-size: 0.94rem;
  background: #fcfaf5;
  color: #0a0a0a;
  border: 2px solid #0a0a0a;
  letter-spacing: 0.02em;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.tab-btn:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 #0a0a0a; }
.tab-btn.active { background: #e11d48; color: #fff; border-color: #e11d48; }
.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; animation: fadeUp 0.4s ease both; }
.tab-info { padding: 16px 0; }
.tab-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #fff;
}
.tab-chip.tc-crimson { background: #e11d48; }
.tab-chip.tc-indigo { background: #3730a3; }
.tab-chip.tc-mustard { background: #ca8a04; color: #0a0a0a; }
.tab-chip.tc-sage { background: #15803d; }
.tab-h3 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0a0a0a;
  margin-bottom: 14px;
  line-height: 1.2;
}
.tab-desc {
  font-size: 1rem;
  color: #404040;
  line-height: 1.7;
  margin-bottom: 20px;
}
.tab-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tab-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.94rem;
  color: #1c1917;
}
.tab-list-dot {
  width: 8px; height: 8px;
  background: #e11d48;
  flex-shrink: 0;
  margin-top: 8px;
}
.tab-list-item.indigo .tab-list-dot { background: #3730a3; }
.tab-list-item.mustard .tab-list-dot { background: #ca8a04; }
.tab-list-item.sage .tab-list-dot { background: #15803d; }
.tab-visual {
  background: #fcfaf5;
  border: 2px solid #0a0a0a;
  padding: 28px;
  position: relative;
  box-shadow: 8px 8px 0 #0a0a0a;
}
.tab-vis-title {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0a0a0a;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tab-vis-title::before {
  content: "";
  width: 24px; height: 4px;
  background: #e11d48;
}
.bar-row {
  display: grid;
  grid-template-columns: 110px 1fr 50px;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.bar-label { font-size: 0.84rem; font-weight: 600; color: #0a0a0a; }
.bar-track {
  height: 16px;
  background: #f5f1e8;
  border: 2px solid #0a0a0a;
  position: relative;
  overflow: hidden;
}
.bar-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: var(--w, 60%);
  background: var(--c, #e11d48);
}
.bar-pct { font-size: 0.84rem; font-weight: 800; color: #0a0a0a; text-align: right; }
.bf-crimson { background: #e11d48; }
.bf-indigo { background: #3730a3; }
.bf-mustard { background: #ca8a04; }
.bf-sage { background: #15803d; }
.tab-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 2px solid #0a0a0a;
}
.tab-stat-item { text-align: center; }
.tab-stat-num {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.tab-stat-num.crimson { color: #e11d48; }
.tab-stat-num.indigo { color: #3730a3; }
.tab-stat-num.mustard { color: #ca8a04; }
.tab-stat-num.sage { color: #15803d; }
.tab-stat-lbl { font-size: 0.74rem; color: #525252; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }

/* ===== Platform Grid ===== */
.plat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.plat-card {
  background: #fcfaf5;
  border: 2px solid #0a0a0a;
  padding: 28px 22px;
  text-align: center;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.plat-card:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 #0a0a0a; }
.plat-card.featured {
  background: #0a0a0a;
  color: #fcfaf5;
}
.plat-card.featured .plat-name { color: #fcfaf5; }
.plat-card.featured .plat-ver { color: #d4d4d4; }
.plat-card.featured .plat-meta { color: #a3a3a3; }
.plat-badge {
  position: absolute;
  top: -2px; right: -2px;
  background: #e11d48;
  color: #fff;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.plat-icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  margin: 0 auto 16px;
  border: 2px solid #0a0a0a;
  background: #fef3c7;
}
.plat-card.featured .plat-icon {
  background: #fcfaf5;
  border-color: #fcfaf5;
}
.plat-icon svg { width: 32px; height: 32px; }
.plat-name {
  font-size: 1.12rem;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 4px;
}
.plat-ver {
  font-size: 0.84rem;
  color: #525252;
  font-weight: 600;
  margin-bottom: 8px;
}
.plat-meta {
  font-size: 0.78rem;
  color: #737373;
  margin-bottom: 16px;
  line-height: 1.5;
}
.plat-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  justify-content: center;
}

/* ===== Deep Dive Rows ===== */
.deep-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.deep-row:last-child { margin-bottom: 0; }
.deep-row.flip { direction: rtl; }
.deep-row.flip > * { direction: ltr; }
.deep-info { padding: 20px 0; }
.deep-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.deep-chip.dc-crimson { background: #e11d48; }
.deep-chip.dc-indigo { background: #3730a3; }
.deep-chip.dc-mustard { background: #ca8a04; color: #0a0a0a; }
.deep-h3 {
  font-size: 1.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0a0a0a;
  line-height: 1.2;
  margin-bottom: 14px;
}
.deep-desc {
  font-size: 1.02rem;
  color: #404040;
  line-height: 1.75;
  margin-bottom: 22px;
}
.deep-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.deep-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: #1c1917;
  line-height: 1.6;
}
.deep-item-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: #0a0a0a;
  color: #fcfaf5;
  display: grid; place-items: center;
  font-size: 0.82rem;
  font-weight: 800;
}
.deep-row .deep-item-num.crimson { background: #e11d48; }
.deep-row .deep-item-num.indigo { background: #3730a3; }
.deep-row .deep-item-num.mustard { background: #ca8a04; color: #0a0a0a; }
.deep-vis {
  background: #fcfaf5;
  border: 2px solid #0a0a0a;
  padding: 30px;
  box-shadow: 10px 10px 0 #0a0a0a;
}
.deep-row.flip .deep-vis { box-shadow: -10px 10px 0 #0a0a0a; }
.dv-title {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0a0a0a;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid #0a0a0a;
}
.dv-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}
.dv-stat-item {
  background: #f5f1e8;
  border: 2px solid #0a0a0a;
  padding: 14px;
  text-align: center;
}
.dv-stat-num { font-size: 1.5rem; font-weight: 900; letter-spacing: -0.015em; line-height: 1; margin-bottom: 4px; }
.dv-stat-num.crimson { color: #e11d48; }
.dv-stat-num.indigo { color: #3730a3; }
.dv-stat-num.mustard { color: #ca8a04; }
.dv-stat-num.sage { color: #15803d; }
.dv-stat-lbl { font-size: 0.74rem; color: #525252; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }

/* ===== Reviews ===== */
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.rev-card {
  background: #fcfaf5;
  border: 2px solid #0a0a0a;
  padding: 28px 24px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.rev-card:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 #0a0a0a; }
.rev-stars { display: flex; gap: 4px; margin-bottom: 14px; color: #ca8a04; }
.rev-stars svg { width: 18px; height: 18px; fill: currentColor; }
.rev-text {
  font-size: 0.95rem;
  color: #1c1917;
  line-height: 1.7;
  margin-bottom: 22px;
}
.rev-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 2px solid #0a0a0a;
}
.rev-avatar {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  border: 2px solid #0a0a0a;
}
.rev-avatar.av-crimson { background: #e11d48; }
.rev-avatar.av-indigo { background: #3730a3; }
.rev-avatar.av-mustard { background: #ca8a04; color: #0a0a0a; }
.rev-avatar.av-sage { background: #15803d; }
.rev-avatar.av-rose { background: #f43f5e; }
.rev-avatar.av-sky { background: #0284c7; }
.rev-name { font-size: 0.96rem; font-weight: 800; color: #0a0a0a; margin-bottom: 2px; }
.rev-role { font-size: 0.82rem; color: #525252; }

/* ===== Comparison Table ===== */
.cmp-wrap {
  background: #fcfaf5;
  border: 2px solid #0a0a0a;
  overflow-x: auto;
  box-shadow: 8px 8px 0 #0a0a0a;
}
.cmp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.cmp-table th, .cmp-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 2px solid #0a0a0a;
}
.cmp-table thead {
  background: #0a0a0a;
  color: #fcfaf5;
}
.cmp-table th {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-table tbody tr:nth-child(even) { background: #f5f1e8; }
.cmp-hl {
  background: #fee2e7 !important;
  color: #e11d48;
  font-weight: 700;
}
.cmp-table .yes { color: #15803d; font-weight: 800; }
.cmp-table .no { color: #a3a3a3; }
.cmp-table .part { color: #ca8a04; font-weight: 700; }
.cmp-table td:first-child { font-weight: 700; color: #0a0a0a; }

/* ===== FAQ Accordion ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: #fcfaf5;
  border: 2px solid #0a0a0a;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item.open {
  box-shadow: 6px 6px 0 #e11d48;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 1.02rem;
  font-weight: 700;
  color: #0a0a0a;
  background: transparent;
}
.faq-q:hover { background: #f5f1e8; }
.faq-chevron {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: #0a0a0a;
  color: #fcfaf5;
  flex-shrink: 0;
  transition: transform 0.25s, background 0.25s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); background: #e11d48; }
.faq-chevron svg { width: 14px; height: 14px; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner {
  padding: 4px 24px 22px;
  font-size: 0.96rem;
  color: #404040;
  line-height: 1.75;
  border-top: 2px solid #f5f1e8;
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: #0a0a0a;
  color: #fcfaf5;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: #e11d48;
  border-radius: 50%;
  opacity: 0.18;
}
.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: #ca8a04;
  border-radius: 50%;
  opacity: 0.15;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e11d48;
  color: #fff;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.cta-h2 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #fcfaf5;
  margin-bottom: 18px;
}
.cta-h2 .hl-block {
  background: #ca8a04;
  color: #0a0a0a;
  padding: 0 8px;
}
.cta-p {
  font-size: 1.06rem;
  color: rgba(252,250,245,0.78);
  line-height: 1.75;
  margin-bottom: 30px;
}
.cta-btns {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ===== DOWNLOAD PAGE ===== */
.dl-hero {
  background: #fcfaf5;
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 2px solid #0a0a0a;
  position: relative;
  overflow: hidden;
}
.dl-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(to right, rgba(10,10,10,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10,10,10,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.dl-hero-inner { position: relative; z-index: 1; }
.dl-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fcfaf5;
  border: 2px solid #0a0a0a;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
  box-shadow: 4px 4px 0 #e11d48;
}
.dl-hero-tag .ey-dot { width: 8px; height: 8px; background: #e11d48; }
.dl-hero-h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #0a0a0a;
  margin-bottom: 16px;
}
.dl-hero-h1 .hl-block { background: #ca8a04; padding: 0 8px; }
.dl-hero-sub { font-size: 1.08rem; color: #525252; max-width: 640px; margin: 0 auto; }

.dl-win-wrap {
  max-width: 880px;
  margin: -40px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 5;
}
.dl-win-card {
  background: #fcfaf5;
  border: 3px solid #0a0a0a;
  box-shadow: 16px 16px 0 #0a0a0a;
  overflow: hidden;
  position: relative;
}
.dl-win-top {
  background: #e11d48;
  padding: 8px 0;
  display: flex;
  gap: 8px;
}
.dl-win-top span {
  flex: 1;
  height: 4px;
  background: #fff;
  opacity: 0.4;
}
.dl-win-top span:nth-child(1) { background: #fff; }
.dl-win-top span:nth-child(2) { background: #ca8a04; }
.dl-win-top span:nth-child(3) { background: #fcfaf5; opacity: 0.8; }
.dl-win-head {
  padding: 32px 40px 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  border-bottom: 2px solid #0a0a0a;
}
.dl-win-icon {
  width: 70px; height: 70px;
  background: #ca8a04;
  display: grid; place-items: center;
  border: 2px solid #0a0a0a;
  flex-shrink: 0;
}
.dl-win-icon svg { width: 38px; height: 38px; color: #0a0a0a; }
.dl-win-info { flex: 1; }
.dl-win-name { font-size: 1.5rem; font-weight: 900; letter-spacing: -0.02em; color: #0a0a0a; margin-bottom: 4px; }
.dl-win-meta { font-size: 0.92rem; color: #525252; }
.dl-win-meta strong { color: #e11d48; }
.dl-win-body { padding: 32px 40px; }
.dl-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 26px;
  border: 2px solid #0a0a0a;
}
.dl-spec {
  padding: 16px 18px;
  border-right: 2px solid #0a0a0a;
  border-bottom: 2px solid #0a0a0a;
}
.dl-spec:nth-child(3n) { border-right: none; }
.dl-spec:nth-last-child(-n+3) { border-bottom: none; }
.dl-spec-label {
  font-size: 0.74rem;
  color: #525252;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.dl-spec-val {
  font-size: 0.96rem;
  font-weight: 800;
  color: #0a0a0a;
  letter-spacing: -0.01em;
}
.dl-sec-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #dcfce7;
  border: 2px solid #15803d;
  padding: 14px 18px;
  margin-bottom: 22px;
}
.dl-sec-badge-icon {
  width: 32px; height: 32px;
  background: #15803d;
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.dl-sec-badge-icon svg { width: 16px; height: 16px; }
.dl-sec-badge-title { font-size: 0.92rem; font-weight: 800; color: #166534; }
.dl-sec-badge-desc { font-size: 0.82rem; color: #15803d; }
.dl-win-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.dl-win-btns .btn { flex: 1; min-width: 200px; }

/* ===== Other Platform Grid ===== */
.op-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.op-card {
  background: #fcfaf5;
  border: 2px solid #0a0a0a;
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.op-card:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 #0a0a0a; }
.op-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 2px solid #0a0a0a;
  margin-bottom: 20px;
}
.op-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border: 2px solid #0a0a0a;
  flex-shrink: 0;
}
.op-icon.opi-mac { background: #e0e7ff; color: #3730a3; }
.op-icon.opi-ios { background: #fef3c7; color: #ca8a04; }
.op-icon.opi-and { background: #dcfce7; color: #15803d; }
.op-icon svg { width: 28px; height: 28px; }
.op-info { flex: 1; }
.op-name { font-size: 1.12rem; font-weight: 800; color: #0a0a0a; margin-bottom: 2px; }
.op-ver { font-size: 0.82rem; color: #525252; font-weight: 600; }
.op-req { font-size: 0.82rem; color: #525252; line-height: 1.55; margin-bottom: 16px; }
.op-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.op-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: #1c1917;
  line-height: 1.55;
}
.op-step-n {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: #0a0a0a;
  color: #fcfaf5;
  display: grid; place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
}

/* ===== Install Guide ===== */
.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.guide-col {
  background: #fcfaf5;
  border: 2px solid #0a0a0a;
  padding: 30px;
}
.guide-col-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.guide-col-title-dot {
  width: 14px; height: 14px;
}
.guide-col-title-dot.gct-crimson { background: #e11d48; }
.guide-col-title-dot.gct-indigo { background: #3730a3; }
.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gstep {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.gstep-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  font-size: 0.88rem;
  font-weight: 900;
  border: 2px solid #0a0a0a;
}
.gstep-num.gn-crimson { background: #e11d48; color: #fff; border-color: #e11d48; }
.gstep-num.gn-indigo { background: #3730a3; color: #fff; border-color: #3730a3; }
.gstep-body { flex: 1; }
.gstep-title { font-size: 0.98rem; font-weight: 800; color: #0a0a0a; margin-bottom: 4px; }
.gstep-desc { font-size: 0.88rem; color: #525252; line-height: 1.65; }

/* ===== Requirements Grid ===== */
.req-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.req-card {
  background: #fcfaf5;
  border: 2px solid #0a0a0a;
  padding: 22px;
  text-align: center;
}
.req-icon {
  width: 48px; height: 48px;
  margin: 0 auto 14px;
  display: grid; place-items: center;
  border: 2px solid #0a0a0a;
}
.req-icon.ri-win { background: #fee2e7; color: #e11d48; }
.req-icon.ri-mac { background: #e0e7ff; color: #3730a3; }
.req-icon.ri-ios { background: #fef3c7; color: #ca8a04; }
.req-icon.ri-and { background: #dcfce7; color: #15803d; }
.req-icon svg { width: 24px; height: 24px; }
.req-title { font-size: 0.96rem; font-weight: 800; color: #0a0a0a; margin-bottom: 12px; }
.req-list { display: flex; flex-direction: column; gap: 6px; text-align: left; }
.req-item { font-size: 0.84rem; color: #404040; line-height: 1.5; padding-left: 14px; position: relative; }
.req-item::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 2px;
  background: #0a0a0a;
}

/* ===== Version Timeline ===== */
.ver-list { display: flex; flex-direction: column; gap: 0; }
.ver-item { display: flex; gap: 22px; align-items: flex-start; }
.ver-dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  padding-top: 2px;
}
.ver-dot {
  width: 18px; height: 18px;
  border: 2px solid #0a0a0a;
  flex-shrink: 0;
}
.ver-dot.vd-crimson { background: #e11d48; }
.ver-dot.vd-indigo { background: #3730a3; }
.ver-dot.vd-mustard { background: #ca8a04; }
.ver-dot.vd-sage { background: #15803d; }
.ver-dot.vd-rose { background: #f43f5e; }
.ver-line {
  width: 2px;
  flex: 1;
  background: #0a0a0a;
  margin-top: 6px;
  min-height: 30px;
}
.ver-item:last-child .ver-line { display: none; }
.ver-body {
  flex: 1;
  background: #fcfaf5;
  border: 2px solid #0a0a0a;
  padding: 22px 26px;
  margin-bottom: 22px;
}
.ver-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.ver-num { font-size: 1.18rem; font-weight: 900; color: #0a0a0a; letter-spacing: -0.01em; }
.ver-tag {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ver-tag.vt-stable { background: #15803d; color: #fff; }
.ver-tag.vt-lts { background: #3730a3; color: #fff; }
.ver-tag.vt-beta { background: #ca8a04; color: #0a0a0a; }
.ver-date { font-size: 0.84rem; color: #525252; font-weight: 600; }
.ver-desc { font-size: 0.94rem; color: #404040; line-height: 1.7; }

/* ===== Security Banner ===== */
.sec-banner {
  background: #15803d;
  color: #fff;
  padding: 40px 0;
  border-top: 2px solid #0a0a0a;
  border-bottom: 2px solid #0a0a0a;
}
.sec-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.sec-banner-icon {
  width: 64px; height: 64px;
  background: #fcfaf5;
  color: #15803d;
  display: grid; place-items: center;
  border: 2px solid #0a0a0a;
  flex-shrink: 0;
}
.sec-banner-icon svg { width: 32px; height: 32px; }
.sec-banner-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 4px; }
.sec-banner-desc { font-size: 0.96rem; color: rgba(255,255,255,0.88); line-height: 1.55; }

/* ===== Article (zh-cn) ===== */
.art-hero {
  background: #fcfaf5;
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #0a0a0a;
}
.art-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(to right, rgba(10,10,10,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10,10,10,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.art-hero-inner { max-width: 980px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.art-hero-crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: #525252;
  margin-bottom: 22px;
  font-weight: 600;
}
.art-hero-crumb a:hover { color: #e11d48; }
.art-hero-crumb-sep { color: #a3a3a3; }
.art-hero-title {
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #0a0a0a;
  margin-bottom: 18px;
}
.art-hero-title .hl-block { background: #ca8a04; padding: 0 8px; }
.art-hero-sub { font-size: 1.06rem; color: #525252; line-height: 1.75; max-width: 760px; }

.kw-strip {
  background: #f5f1e8;
  padding: 22px 0;
  border-bottom: 2px solid #0a0a0a;
}
.kw-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.kw-strip-label {
  font-size: 0.78rem;
  font-weight: 800;
  color: #0a0a0a;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.kw {
  background: #fcfaf5;
  color: #0a0a0a;
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  border: 2px solid #0a0a0a;
  transition: background 0.18s, color 0.18s;
}
.kw:hover { background: #e11d48; color: #fff; border-color: #e11d48; }

.art-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  align-items: flex-start;
}
.art-body { font-size: 1rem; line-height: 1.85; color: #1c1917; }
.art-body h2 {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0a0a0a;
  margin: 44px 0 18px;
  padding-left: 14px;
  border-left: 6px solid #e11d48;
  line-height: 1.3;
}
.art-body h2:first-child { margin-top: 0; }
.art-body h2.h-indigo { border-color: #3730a3; }
.art-body h2.h-mustard { border-color: #ca8a04; }
.art-body h2.h-sage { border-color: #15803d; }
.art-body h3 {
  font-size: 1.18rem;
  font-weight: 800;
  color: #0a0a0a;
  margin: 22px 0 10px;
}
.art-body p { margin-bottom: 14px; }
.art-body ul, .art-body ol {
  list-style: none;
  margin: 12px 0 18px;
  padding-left: 0;
}
.art-body ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
}
.art-body ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 14px; height: 2px;
  background: #e11d48;
}
.art-body ol { counter-reset: art-ol; }
.art-body ol li {
  counter-increment: art-ol;
  position: relative;
  padding-left: 36px;
  margin-bottom: 10px;
}
.art-body ol li::before {
  content: counter(art-ol);
  position: absolute;
  left: 0; top: 0;
  width: 24px; height: 24px;
  background: #0a0a0a;
  color: #fcfaf5;
  display: grid; place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
}
.art-body strong { font-weight: 800; color: #0a0a0a; }
.art-body em { color: #e11d48; font-style: normal; font-weight: 700; }

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 32px 0;
  padding: 24px 28px;
  border: 2px solid #0a0a0a;
  background: #fcfaf5;
  position: relative;
}
.inline-cta::before {
  content: "";
  position: absolute;
  left: -2px; top: -2px; bottom: -2px;
  width: 8px;
  background: #e11d48;
}
.inline-cta.ic-indigo::before { background: #3730a3; }
.inline-cta.ic-mustard::before { background: #ca8a04; }
.inline-cta.ic-sage::before { background: #15803d; }
.inline-cta-body { flex: 1; }
.inline-cta-title { font-size: 1.1rem; font-weight: 800; color: #0a0a0a; margin-bottom: 4px; }
.inline-cta-desc { font-size: 0.92rem; color: #525252; line-height: 1.6; }

.tips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 22px 0 18px;
}
.tip-card {
  background: #fcfaf5;
  border: 2px solid #0a0a0a;
  padding: 18px 20px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.tip-card:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 #0a0a0a; }
.tip-num {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  background: #e11d48;
  padding: 3px 10px;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.tip-card:nth-child(2n) .tip-num { background: #3730a3; }
.tip-card:nth-child(3n) .tip-num { background: #ca8a04; color: #0a0a0a; }
.tip-card:nth-child(4n) .tip-num { background: #15803d; }
.tip-title { font-size: 1.02rem; font-weight: 800; color: #0a0a0a; margin-bottom: 6px; }
.tip-desc { font-size: 0.9rem; color: #525252; line-height: 1.65; }

.art-cmp {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid #0a0a0a;
  margin: 16px 0 22px;
  font-size: 0.92rem;
}
.art-cmp th, .art-cmp td {
  padding: 12px 16px;
  border-bottom: 2px solid #0a0a0a;
  text-align: left;
}
.art-cmp thead { background: #0a0a0a; color: #fcfaf5; }
.art-cmp th {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.art-cmp tbody tr:last-child td { border-bottom: none; }
.art-cmp tbody tr:nth-child(even) { background: #f5f1e8; }
.art-cmp .cmp-hl { background: #fee2e7 !important; color: #e11d48; font-weight: 700; }
.art-cmp .yes { color: #15803d; font-weight: 800; }
.art-cmp .no { color: #a3a3a3; }
.art-cmp .part { color: #ca8a04; font-weight: 700; }

/* Sidebar */
.sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 20px; }
.sbox {
  background: #fcfaf5;
  border: 2px solid #0a0a0a;
  padding: 22px;
}
.sbox-title {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a0a0a;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #0a0a0a;
  display: flex; align-items: center; gap: 10px;
}
.sbox-title-dot { width: 14px; height: 14px; background: #e11d48; flex-shrink: 0; }
.sdl-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 2px solid #0a0a0a;
  background: #fcfaf5;
  color: #0a0a0a;
  margin-bottom: 10px;
  width: 100%;
  text-align: left;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.sdl-btn:last-child { margin-bottom: 0; }
.sdl-btn:hover { background: #0a0a0a; color: #fcfaf5; transform: translate(-2px, -2px); box-shadow: 4px 4px 0 #e11d48; }
.sdl-btn.primary { background: #e11d48; color: #fff; border-color: #e11d48; }
.sdl-btn.primary:hover { background: #be123c; box-shadow: 4px 4px 0 #ca8a04; }
.sdl-btn-icon {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  flex-shrink: 0;
  background: rgba(0,0,0,0.06);
}
.sdl-btn.primary .sdl-btn-icon { background: rgba(255,255,255,0.18); }
.sdl-btn-icon svg { width: 16px; height: 16px; }
.sdl-btn-info { flex: 1; min-width: 0; }
.sdl-btn-name { font-size: 0.92rem; font-weight: 800; line-height: 1.2; }
.sdl-btn-ver { font-size: 0.74rem; opacity: 0.8; margin-top: 2px; }

.stoc { display: flex; flex-direction: column; gap: 4px; }
.stoc a {
  display: block;
  padding: 8px 12px;
  font-size: 0.88rem;
  color: #404040;
  border-left: 3px solid transparent;
  transition: all 0.15s;
  font-weight: 600;
}
.stoc a:hover { color: #e11d48; border-left-color: #e11d48; background: #f5f1e8; }

.sstat { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sstat-item {
  text-align: center;
  background: #f5f1e8;
  border: 2px solid #0a0a0a;
  padding: 12px 8px;
}
.sstat-num { font-size: 1.2rem; font-weight: 900; letter-spacing: -0.02em; line-height: 1; margin-bottom: 4px; color: #e11d48; }
.sstat-item:nth-child(2) .sstat-num { color: #3730a3; }
.sstat-item:nth-child(3) .sstat-num { color: #ca8a04; }
.sstat-item:nth-child(4) .sstat-num { color: #15803d; }
.sstat-lbl { font-size: 0.72rem; color: #525252; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }

.side-security {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f5f1e8;
  border: 2px solid #0a0a0a;
  padding: 16px;
}
.side-security-icon {
  width: 32px; height: 32px;
  background: #15803d;
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.side-security-icon svg { width: 16px; height: 16px; }
.side-security-text { font-size: 0.86rem; color: #1c1917; line-height: 1.6; }
.side-security-text strong { color: #0a0a0a; font-weight: 800; }

/* ===== Footer ===== */
.bn-footer {
  background: #0a0a0a;
  color: #fcfaf5;
  padding: 50px 0 30px;
  border-top: 2px solid #e11d48;
}
.bn-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.bn-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding-bottom: 28px;
  border-bottom: 2px solid #2a2a2a;
}
.bn-footer-brand { display: flex; align-items: center; gap: 12px; }
.bn-footer-brand-mark {
  width: 36px; height: 36px;
  background: #e11d48;
  display: grid; place-items: center;
}
.bn-footer-brand-mark svg { width: 20px; height: 20px; }
.bn-footer-brand-text { font-size: 1.1rem; font-weight: 800; }
.bn-footer-sec {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #d4d4d4;
}
.bn-footer-sec-ico {
  width: 24px; height: 24px;
  background: #15803d;
  display: grid; place-items: center;
}
.bn-footer-sec-ico svg { width: 14px; height: 14px; }
.bn-footer-note {
  padding-top: 24px;
  font-size: 0.82rem;
  color: #a3a3a3;
  line-height: 1.7;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px 70px; }
  .hero-stage { height: 360px; }
  .hero-card { width: 280px; left: 50%; top: 60px; transform: translateX(-50%); }
  .hero-circle { width: 160px; height: 160px; left: 0; }
  .hero-square { width: 130px; height: 130px; right: 20px; }
  .hero-tri { border-left-width: 60px; border-right-width: 60px; border-bottom-width: 100px; right: 0; top: 50px; }
  .feat-grid, .rev-grid, .op-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-grid, .plat-grid, .req-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item { border-bottom: 2px solid #0a0a0a; padding: 14px 16px; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .tab-panel.active { grid-template-columns: 1fr; gap: 30px; }
  .deep-row { grid-template-columns: 1fr; gap: 30px; margin-bottom: 60px; }
  .deep-row.flip { direction: ltr; }
  .deep-row.flip .deep-vis { box-shadow: 10px 10px 0 #0a0a0a; }
  .art-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .guide-grid { grid-template-columns: 1fr; }
  .dl-win-head { padding: 24px 24px 22px; flex-direction: column; align-items: flex-start; }
  .dl-win-body { padding: 24px; }
  .dl-specs { grid-template-columns: 1fr 1fr; }
  .dl-spec:nth-child(3n) { border-right: 2px solid #0a0a0a; }
  .dl-spec:nth-child(2n) { border-right: none; }
}
@media (max-width: 680px) {
  .bn-menu { display: none; }
  .bn-dl-btn { display: none; }
  .bn-mob { display: inline-flex; }
  .feat-grid, .rev-grid, .op-grid, .pillar-grid, .plat-grid, .req-grid, .tips-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 2px solid #0a0a0a; }
  .stat-item:last-child { border-bottom: none; }
  .sec { padding: 64px 0; }
  .tab-section { padding: 64px 0; }
  .hero-inner { padding: 50px 24px 60px; }
  .hero-h1 { font-size: 2.2rem; }
  .hero-stage { height: 320px; }
  .hero-circle { width: 120px; height: 120px; }
  .hero-square { width: 100px; height: 100px; right: 0; }
  .hero-card { width: 240px; }
  .dl-win-card { box-shadow: 10px 10px 0 #0a0a0a; }
  .dl-specs { grid-template-columns: 1fr; }
  .dl-spec { border-right: none !important; border-bottom: 2px solid #0a0a0a !important; }
  .dl-spec:last-child { border-bottom: none !important; }
  .dl-win-btns .btn { flex: 1 1 100%; }
  .ticker-track { animation-duration: 25s; }
  .inline-cta { flex-direction: column; align-items: flex-start; }
  .sec-banner-inner { flex-direction: column; text-align: center; }
}

/* ===== News Center ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 44px;
}
.news-card {
  background: #fff;
  border: 2px solid #0a0a0a;
  box-shadow: 8px 8px 0 #0a0a0a;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.news-card:hover { transform: translate(-4px, -4px); box-shadow: 12px 12px 0 #0a0a0a; }
.news-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  color: #fff;
  border-bottom: 2px solid #0a0a0a;
  overflow: hidden;
}
.news-cover svg { width: 72px; height: 72px; opacity: 0.9; }
.news-cover.nc-crimson { background: linear-gradient(135deg, #e11d48 0%, #be123c 100%); }
.news-cover.nc-indigo { background: linear-gradient(135deg, #3730a3 0%, #1e1b4b 100%); }
.news-cover.nc-mustard { background: linear-gradient(135deg, #ca8a04 0%, #854d0e 100%); color: #0a0a0a; }
.news-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.14) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  pointer-events: none;
}
.news-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #fcfaf5;
  color: #0a0a0a;
  border: 2px solid #0a0a0a;
  padding: 5px 12px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
}
.news-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: #525252;
  font-weight: 700;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.news-meta-dot { width: 4px; height: 4px; background: #a3a3a3; border-radius: 50%; }
.news-title {
  font-size: 1.12rem;
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.4;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.news-title a { color: inherit; }
.news-title a:hover { color: #e11d48; }
.news-excerpt {
  font-size: 0.92rem;
  color: #525252;
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}
.news-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 800;
  color: #e11d48;
  border-bottom: 2px solid #e11d48;
  padding-bottom: 2px;
  align-self: flex-start;
  transition: gap 0.18s ease;
}
.news-read:hover { gap: 10px; color: #be123c; border-color: #be123c; }
.news-read svg { width: 14px; height: 14px; }
.news-more-row { text-align: center; }

/* News list hero */
.news-hero {
  background: #fcfaf5;
  padding: 80px 0 60px;
  border-bottom: 2px solid #0a0a0a;
  position: relative;
  overflow: hidden;
}
.news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#0a0a0a 1px, transparent 1px),
                    linear-gradient(90deg, #0a0a0a 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.04;
}
.news-hero-inner { max-width: 980px; margin: 0 auto; padding: 0 24px; position: relative; }
.news-hero-crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: #525252;
  margin-bottom: 22px;
  font-weight: 600;
}
.news-hero-crumb a:hover { color: #e11d48; }
.news-hero-title {
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #0a0a0a;
  margin-bottom: 18px;
}
.news-hero-sub { font-size: 1.06rem; color: #525252; line-height: 1.75; max-width: 760px; }

/* Article page (news1/2/3) */
.post-hero {
  background: #fcfaf5;
  padding: 60px 0 50px;
  border-bottom: 2px solid #0a0a0a;
}
.post-hero-inner { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.post-hero-crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: #525252;
  margin-bottom: 18px;
  font-weight: 600;
  flex-wrap: wrap;
}
.post-hero-crumb a:hover { color: #e11d48; }
.post-hero-crumb .sep { color: #a3a3a3; }
.post-tag {
  display: inline-block;
  background: #e11d48;
  color: #fff;
  padding: 5px 12px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid #0a0a0a;
  box-shadow: 3px 3px 0 #0a0a0a;
  margin-bottom: 16px;
}
.post-tag.pt-indigo { background: #3730a3; }
.post-tag.pt-mustard { background: #ca8a04; color: #0a0a0a; }
.post-hero-title {
  font-size: clamp(1.85rem, 3.8vw, 2.55rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #0a0a0a;
  margin-bottom: 16px;
}
.post-meta {
  display: flex;
  gap: 14px;
  font-size: 0.86rem;
  color: #525252;
  font-weight: 700;
  flex-wrap: wrap;
}
.post-meta-item { display: inline-flex; align-items: center; gap: 6px; }
.post-meta-item svg { width: 14px; height: 14px; }

.post-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  align-items: flex-start;
}
.post-body { font-size: 1rem; line-height: 1.85; color: #1c1917; }
.post-body .lead {
  font-size: 1.14rem;
  color: #0a0a0a;
  line-height: 1.7;
  padding: 20px 22px;
  background: #fcfaf5;
  border-left: 6px solid #e11d48;
  margin-bottom: 28px;
  font-weight: 500;
}
.post-body h2 {
  font-size: 1.55rem;
  font-weight: 800;
  color: #0a0a0a;
  margin: 42px 0 16px;
  padding-left: 16px;
  border-left: 6px solid #e11d48;
  line-height: 1.3;
}
.post-body h2.h-indigo { border-color: #3730a3; }
.post-body h2.h-mustard { border-color: #ca8a04; }
.post-body h3 { font-size: 1.18rem; font-weight: 800; color: #0a0a0a; margin: 24px 0 10px; }
.post-body p { margin-bottom: 14px; }
.post-body a { color: #e11d48; font-weight: 700; border-bottom: 1px solid #e11d48; }
.post-body a:hover { color: #be123c; border-color: #be123c; }
.post-body strong { font-weight: 800; color: #0a0a0a; }
.post-body ul, .post-body ol { list-style: none; padding-left: 0; margin: 12px 0 18px; }
.post-body ul li { position: relative; padding-left: 26px; margin-bottom: 10px; }
.post-body ul li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 14px; height: 2px; background: #e11d48;
}
.post-body ol { counter-reset: post-ol; }
.post-body ol li {
  counter-increment: post-ol; position: relative;
  padding-left: 36px; margin-bottom: 10px;
}
.post-body ol li::before {
  content: counter(post-ol);
  position: absolute; left: 0; top: 0;
  width: 26px; height: 26px;
  background: #e11d48; color: #fff;
  display: grid; place-items: center;
  font-size: 0.78rem; font-weight: 800;
}
.post-body blockquote {
  margin: 18px 0;
  padding: 16px 20px;
  background: #f5f1e8;
  border-left: 4px solid #ca8a04;
  font-style: italic;
  color: #1c1917;
}
.post-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.92rem;
  border: 2px solid #0a0a0a;
}
.post-body th, .post-body td {
  padding: 10px 14px;
  border: 1px solid #0a0a0a;
  text-align: left;
}
.post-body th { background: #0a0a0a; color: #fff; font-weight: 800; }
.post-body td.yes { background: #dcfce7; font-weight: 700; }
.post-body td.no { background: #fee2e2; }

.post-share {
  margin-top: 40px;
  padding: 22px;
  background: #fcfaf5;
  border: 2px solid #0a0a0a;
  box-shadow: 6px 6px 0 #e11d48;
}
.post-share-title { font-weight: 800; color: #0a0a0a; margin-bottom: 10px; font-size: 1rem; }
.post-related {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 2px solid #0a0a0a;
}
.post-related h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.post-related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.post-related-card {
  display: block;
  padding: 14px 16px;
  background: #fcfaf5;
  border: 2px solid #0a0a0a;
  transition: transform 0.15s ease;
}
.post-related-card:hover { transform: translate(-3px, -3px); box-shadow: 5px 5px 0 #0a0a0a; }
.post-related-card .rc-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: #e11d48;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.post-related-card .rc-title {
  display: block;
  margin-top: 6px;
  font-size: 0.96rem;
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.45;
}

/* Sidebar enhancements shared with news pages */
.stoc-list { display: flex; flex-direction: column; gap: 2px; }
.stoc-list a {
  display: block;
  padding: 8px 12px;
  font-size: 0.88rem;
  color: #1c1917;
  border-left: 2px solid transparent;
  transition: all 0.15s;
  font-weight: 600;
}
.stoc-list a:hover { color: #e11d48; border-left-color: #e11d48; background: #f5f1e8; }

@media (max-width: 960px) {
  .news-grid { grid-template-columns: 1fr; }
  .post-layout { grid-template-columns: 1fr; }
  .post-related-grid { grid-template-columns: 1fr; }
}
