/* ============================================
   Editor Eye LP — Design Tokens & Base
   ============================================ */

:root {
  --bg: #FFFFFF;
  --bg-soft: #FAFAF7;
  --bg-tint: #F4F1EC;
  --ink: #1A1A2E;
  --ink-2: #3A3A4E;
  --ink-3: #6B6B7B;
  --ink-4: #9C9CA8;
  --rule: #E7E4DD;
  --rule-2: #D9D5CC;

  --blue: #1B6CA8;
  --blue-soft: #E6F0F7;
  --orange: #F5821F;
  --orange-soft: #FDEDD9;
  --ultramarine: #2B4590;
  --red: #E8192C;
  --red-hover: #C81021;

  --font-sans: "Inter", "Noto Sans JP", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --font-display: "Inter", "Noto Sans JP", system-ui, sans-serif;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;

  --shadow-1: 0 1px 2px rgba(26, 26, 46, 0.04), 0 0 0 1px rgba(26, 26, 46, 0.04);
  --shadow-2: 0 4px 16px rgba(26, 26, 46, 0.06), 0 1px 2px rgba(26, 26, 46, 0.04);
  --shadow-3: 0 12px 32px rgba(26, 26, 46, 0.08), 0 2px 6px rgba(26, 26, 46, 0.04);

  --container: 1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  letter-spacing: -0.005em;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---- Type scale ---- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.h-display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.04;
  text-wrap: balance;
}

.h-section {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-wrap: balance;
}

/* ---- Layout ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

.section { padding: 120px 0; }
.section-tight { padding: 80px 0; }
@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .section-tight { padding: 56px 0; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn-cta {
  background: var(--red);
  color: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 8px 20px rgba(232, 25, 44, 0.18);
}
.btn-cta:hover { background: var(--red-hover); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(232,25,44,0.28); }
.btn-cta-sm { padding: 9px 16px; font-size: 13.5px; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-2);
}
.btn-ghost:hover { background: var(--bg-tint); border-color: var(--ink-3); }
.btn-quiet {
  padding: 8px 12px;
  background: transparent;
  color: var(--ink-2);
  font-weight: 500;
  font-size: 14px;
}
.btn-quiet:hover { color: var(--ink); }

/* ---- Misc ---- */
.brand-editor { color: var(--blue); }
.brand-eye { color: var(--orange); }
.text-blue { color: var(--blue); }
.text-orange { color: var(--orange); }
.text-ultramarine { color: var(--ultramarine); }
.text-muted { color: var(--ink-3); }

.mono { font-family: var(--font-mono); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  background: var(--bg-tint);
  color: var(--ink-2);
  border: 1px solid var(--rule);
}
.tag-blue { background: var(--blue-soft); color: var(--blue); border-color: rgba(27,108,168,0.15); }
.tag-orange { background: var(--orange-soft); color: #B85F0F; border-color: rgba(245,130,31,0.18); }

.divider {
  height: 1px;
  background: var(--rule);
  border: 0;
  margin: 0;
}

/* ---- Tone variants (controlled via data-tone on body) ---- */
body[data-tone="dev"] {
  --bg: #0E1116;
  --bg-soft: #14181F;
  --bg-tint: #1A1F28;
  --ink: #F0EEE6;
  --ink-2: #C8C5BB;
  --ink-3: #8A8A95;
  --ink-4: #5A5A66;
  --rule: #232830;
  --rule-2: #2E343F;
  --blue-soft: rgba(27,108,168,0.16);
  --orange-soft: rgba(245,130,31,0.14);
}

body[data-tone="game"] {
  --bg: #FFFDF9;
  --bg-soft: #FBF6EE;
  --bg-tint: #F2EADC;
  --ultramarine: #5B2BD0;
  --orange: #FF6A1A;
}

/* ---- Section dividers ---- */
.section-rule {
  border-top: 1px solid var(--rule);
}

/* ---- Animations ---- */
@keyframes pulse-soft {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}
.pulse { animation: pulse-soft 2.4s ease-in-out infinite; }

@keyframes blink-cursor {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
.cursor::after {
  content: "▍";
  margin-left: 2px;
  animation: blink-cursor 1s steps(1) infinite;
  color: var(--blue);
}

/* ---- Scroll-margin for nav anchors ---- */
section[id] { scroll-margin-top: 84px; }

/* ============================================
   PRO POLISH — added pass
   ============================================ */

/* ---- (4) Pill CTA with brand gradient + lift ---- */
.btn-cta {
  background: linear-gradient(135deg, #FF4D4D 0%, #FF8C00 100%) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 9999px !important;
  font-weight: 700;
  letter-spacing: 0.005em;
  box-shadow:
    0 8px 32px rgba(255, 77, 0, 0.45),
    inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 42px rgba(255, 77, 0, 0.55),
    inset 0 1px 0 rgba(255,255,255,0.22);
  filter: saturate(1.05);
}
.btn-cta:active { transform: translateY(0); }

/* ---- (1) Hero dark canvas ---- */
.hero-dark {
  position: relative;
  background: #0A0E1A;
  color: #F5F4EE;
  overflow: hidden;
  isolation: isolate;
}
/* dot grid */
.hero-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 1.5px);
  background-size: 22px 22px;
  background-position: 0 0;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
/* radial center glow */
.hero-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 38%, rgba(255, 140, 0, 0.10) 0%, rgba(255, 77, 77, 0.04) 35%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,255,255,0.04) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-dark > * { position: relative; z-index: 1; }

.hero-dark .h-display { color: #FFFFFF; letter-spacing: -0.03em; }
.hero-dark .eyebrow { color: rgba(245,244,238,0.55); }
.hero-dark .tag { background: rgba(255,255,255,0.06); color: #F5F4EE; border-color: rgba(255,255,255,0.10); }
.hero-dark .tag-blue { background: rgba(255,140,0,0.10); color: #FFB14D; border-color: rgba(255,140,0,0.25); }
.hero-dark .btn-quiet { color: rgba(245,244,238,0.7); }
.hero-dark .btn-quiet:hover { color: #fff; }

/* In-hero subcards (arch + LLM badges) re-skinned for dark */
.hero-dark .arch-card,
.hero-dark .llm-card {
  background: rgba(255,255,255,0.03) !important;
  border-color: rgba(255,255,255,0.08) !important;
  box-shadow: 0 2px 24px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(6px);
}
.hero-dark .arch-cell-default {
  background: rgba(255,255,255,0.03) !important;
  border-color: rgba(255,255,255,0.10) !important;
}
.hero-dark .arch-cell-featured {
  background: linear-gradient(135deg, rgba(255,77,77,0.18), rgba(255,140,0,0.18)) !important;
  border-color: rgba(255,140,0,0.45) !important;
}
.hero-dark .arch-cell-featured .arch-label { color: #FFA94D !important; }
.hero-dark .arch-cell-default .arch-label { color: #B6D4FF !important; }
.hero-dark .arch-cell-default:nth-child(5) .arch-label { color: #9DC8FF !important; }
.hero-dark .arch-cell-arrow { color: rgba(255,255,255,0.45) !important; }
.hero-dark .arch-cell-default .arch-sub,
.hero-dark .arch-cell-featured .arch-sub { color: rgba(245,244,238,0.55) !important; }

/* "Compatible with" badges in hero */
.hero-dark .llm-card .tag {
  background: rgba(255,255,255,0.04);
  color: #E0DED5;
  border-color: rgba(255,255,255,0.08);
}

/* Gradient text for "エキスパート / expert" highlight */
.grad-text {
  background: linear-gradient(135deg, #FF4D4D 0%, #FF8C00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  /* keep weight crisp */
  font-weight: 900;
  letter-spacing: -0.03em;
}

/* meta dots in hero get warmer color on dark */
.hero-dark .hero-meta-dot { background: #FF8C00 !important; }
.hero-dark p { color: rgba(245,244,238,0.78); }

/* ---- (2) Section rhythm — alternating dark sections ---- */
.section-dark {
  background: #0F1624;
  color: #F0EEE6;
  position: relative;
}
.section-dark .h-section,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: #FFFFFF; }
.section-dark p { color: rgba(240,238,230,0.78); }
.section-dark .eyebrow { color: rgba(240,238,230,0.55); }
.section-dark .tag {
  background: rgba(255,255,255,0.05);
  color: #E0DED5;
  border-color: rgba(255,255,255,0.10);
}
.section-dark .tag-blue { background: rgba(96,165,250,0.12); color: #93C5FD; border-color: rgba(96,165,250,0.25); }
.section-dark .tag-orange { background: rgba(255,140,0,0.12); color: #FFB14D; border-color: rgba(255,140,0,0.30); }
.section-dark article,
.section-dark .card,
.section-dark .panel {
  background: rgba(255,255,255,0.03) !important;
  border-color: rgba(255,255,255,0.08) !important;
  color: #F0EEE6;
}
.section-dark article p,
.section-dark .card p { color: rgba(240,238,230,0.72) !important; }
.section-dark article h3,
.section-dark .card h3 { color: #FFFFFF !important; }
.section-dark .text-muted,
.section-dark [style*="--ink-3"] { color: rgba(240,238,230,0.55) !important; }
.section-dark .btn-ghost {
  color: #F0EEE6;
  border-color: rgba(255,255,255,0.18);
  background: transparent;
}
.section-dark .btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.35); }

/* Dark-section soft variant when alternating with bg-soft */
.section-dark--soft { background: #0A0E1A; }

/* Smooth seam: subtle SVG wave divider between light↔dark sections */
.section-seam-top {
  position: relative;
  padding-top: 144px;
}
.section-seam-top::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 56px;
  background: inherit;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'><path d='M0,28 C240,56 480,0 720,28 C960,56 1200,0 1440,28 L1440,56 L0,56 Z' fill='black'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'><path d='M0,28 C240,56 480,0 720,28 C960,56 1200,0 1440,28 L1440,56 L0,56 Z' fill='black'/></svg>");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transform: translateY(-100%);
}

/* ---- (3) Big section heading scale + keyword highlight ---- */
.h-section.h-mega {
  font-size: clamp(2.5rem, 6vw, 5rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.035em;
  line-height: 1.05;
}
.kw-underline {
  background-image: linear-gradient(120deg, rgba(255,77,77,0.0) 0%, rgba(255,140,0,0.45) 100%);
  background-repeat: no-repeat;
  background-size: 100% 36%;
  background-position: 0 88%;
  padding: 0 0.05em;
  border-radius: 2px;
}
.section-dark .kw-underline {
  background-image: linear-gradient(120deg, rgba(255,140,0,0.0) 0%, rgba(255,140,0,0.55) 100%);
}
.kw-grad {
  background: linear-gradient(135deg, #FF4D4D 0%, #FF8C00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

/* ---- (5) Reveal-on-scroll ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- (6) Mega stat numbers ---- */
.stat-mega {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.9;
  background: linear-gradient(135deg, #FF4D4D 0%, #FF8C00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.stat-mega-blue {
  background: linear-gradient(135deg, #3B82F6 0%, #2B4590 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-top: 8px;
}
.section-dark .stat-label { color: rgba(240,238,230,0.45); }

/* ============================================
   UNIFY STYLE A — Light, white cards, color header bars
   ============================================ */
body[data-unify="A"] { background: #F8F9FA; color: #1A1A2E; }
body[data-unify="A"] .hero-dark { background: #FFFFFF !important; color: #1A1A2E !important; }
body[data-unify="A"] .hero-dark::before { opacity: 0.35; background-image: radial-gradient(circle at 1px 1px, rgba(26,26,46,0.10) 1px, transparent 1.5px); }
body[data-unify="A"] .hero-dark::after { background: radial-gradient(ellipse 80% 60% at 50% 38%, rgba(255,140,0,0.08) 0%, transparent 70%); }
body[data-unify="A"] .hero-dark .h-display,
body[data-unify="A"] .hero-dark h1,
body[data-unify="A"] .hero-dark h2,
body[data-unify="A"] .hero-dark h3 { color: #1A1A2E !important; }
body[data-unify="A"] .hero-dark p { color: #3A3A4E !important; }
body[data-unify="A"] .hero-dark .arch-card,
body[data-unify="A"] .hero-dark .llm-card { background: #FFFFFF !important; border-color: #E5E7EB !important; box-shadow: 0 4px 20px rgba(26,26,46,0.06) !important; }
body[data-unify="A"] .hero-dark .arch-cell-default { background: #F8F9FA !important; border-color: #E5E7EB !important; }
body[data-unify="A"] .hero-dark .llm-card .tag { background: #F4F1EC; color: #3A3A4E; border-color: #E5E7EB; }
body[data-unify="A"] .hero-dark .eyebrow { color: #6B6B7B; }
body[data-unify="A"] .hero-dark .arch-cell-default .arch-label { color: #1B6CA8 !important; }
body[data-unify="A"] .hero-dark .arch-cell-default .arch-sub,
body[data-unify="A"] .hero-dark .arch-cell-featured .arch-sub { color: #6B6B7B !important; }
body[data-unify="A"] .hero-dark .hero-meta-dot { background: #F5821F !important; }
body[data-unify="A"] .hero-dark .btn-quiet { color: #3A3A4E; }
body[data-unify="A"] .hero-dark .tag { background: #F4F1EC; color: #3A3A4E; border-color: #E5E7EB; }
body[data-unify="A"] .hero-dark .tag-blue { background: #FDEDD9; color: #B85F0F; border-color: rgba(245,130,31,0.18); }

/* Kill section-dark in A — back to light */
body[data-unify="A"] .section-dark { background: #FFFFFF !important; color: #1A1A2E !important; }
body[data-unify="A"] .section-dark--soft { background: #F8F9FA !important; }
body[data-unify="A"] .section-dark .h-section,
body[data-unify="A"] .section-dark h2,
body[data-unify="A"] .section-dark h3,
body[data-unify="A"] .section-dark h4 { color: #1A1A2E !important; }
body[data-unify="A"] .section-dark p { color: #3A3A4E !important; }
body[data-unify="A"] .section-dark .eyebrow { color: #6B6B7B !important; }
body[data-unify="A"] .section-dark article,
body[data-unify="A"] .section-dark .card,
body[data-unify="A"] .section-dark .panel { background: #FFFFFF !important; border-color: #E5E7EB !important; color: #1A1A2E !important; }
body[data-unify="A"] .section-dark article p,
body[data-unify="A"] .section-dark .card p { color: #3A3A4E !important; }
body[data-unify="A"] .section-dark article h3 { color: #1A1A2E !important; }
body[data-unify="A"] .section-dark .tag { background: #F4F1EC; color: #3A3A4E; border-color: #E5E7EB; }
body[data-unify="A"] .section-dark .tag-blue { background: #E6F0F7; color: #1B6CA8; border-color: rgba(27,108,168,0.15); }
body[data-unify="A"] .section-dark .btn-ghost { color: #1A1A2E; border-color: #D9D5CC; background: transparent; }

/* Final CTA section back to light */
body[data-unify="A"] section#cta { background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%) !important; color: #1A1A2E !important; }
body[data-unify="A"] section#cta h2 { color: #1A1A2E !important; }
body[data-unify="A"] section#cta p { color: #3A3A4E !important; }
body[data-unify="A"] section#cta .eyebrow { color: #6B6B7B !important; }

/* Color header bars on cards */
body[data-unify="A"] #problem article { border-top: 4px solid #E05A6A !important; border-radius: 12px !important; }
body[data-unify="A"] #solution article { border-top: 4px solid #2A9D8F !important; border-radius: 12px !important; }
body[data-unify="A"] #steps article { border-top: 4px solid #FF6B35 !important; border-radius: 12px !important; }
body[data-unify="A"] #features article { border-top: 4px solid #1E3A5F !important; border-radius: 12px !important; }

/* Catalog stats in A — light */
body[data-unify="A"] #features .stat-mega { background: linear-gradient(135deg, #1E3A5F 0%, #1B6CA8 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
body[data-unify="A"] #features .reveal > div[style*="background"] { background: #FFFFFF !important; color: #1A1A2E !important; border-color: #E5E7EB !important; }
body[data-unify="A"] #features .stat-label { color: #6B6B7B !important; }

/* Round badges for villain/solution numbers (visual unity with knowledge cats) */
body[data-unify="A"] #problem .mono[style*="font-size: 28px"],
body[data-unify="A"] #solution .mono[style*="font-size: 28px"] {
  display: inline-flex !important; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid currentColor;
  font-size: 14px !important; opacity: 1 !important;
}
/* STEP labels into circular badges */
body[data-unify="A"] #steps .mono[style*="STEP"] {
  display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 999px;
  background: #FDEDD9; color: #B85F0F; border: 1px solid rgba(245,130,31,0.18);
}

/* ============================================
   UNIFY STYLE B — Dark unified, color accent bars on cards
   ============================================ */
body[data-unify="B"] { background: #0A0E1A; color: #F0EEE6; }
/* knowledge categories section → dark */
body[data-unify="B"] #features { background: #0A0E1A; color: #F0EEE6; }
body[data-unify="B"] #features .h-section,
body[data-unify="B"] #features h2,
body[data-unify="B"] #features h3 { color: #FFFFFF !important; }
body[data-unify="B"] #features p { color: rgba(255,255,255,0.75) !important; }
body[data-unify="B"] #features .kcat-grid > article { background: #141B2D !important; border: 1px solid rgba(255,255,255,0.08) !important; box-shadow: none !important; }
body[data-unify="B"] #features .kcat-grid > article > div:last-child p { color: rgba(255,255,255,0.75) !important; }
/* Tool catalog cards in B */
body[data-unify="B"] #features article { background: #141B2D !important; border-color: rgba(255,255,255,0.08) !important; color: #F0EEE6; }
body[data-unify="B"] #features article h3 { color: #FFFFFF !important; }
body[data-unify="B"] #features article p,
body[data-unify="B"] #features article li { color: rgba(255,255,255,0.75) !important; }
body[data-unify="B"] #features .tag { background: rgba(255,255,255,0.05); color: #E0DED5; border-color: rgba(255,255,255,0.10); }

/* Add 3px top accent bars across LP cards */
body[data-unify="B"] #problem article { border-top: 3px solid #E05A6A !important; }
body[data-unify="B"] #solution article { border-top: 3px solid #2A9D8F !important; }
body[data-unify="B"] #steps article { border-top: 3px solid #FF6B35 !important; }
body[data-unify="B"] #features article { border-top: 3px solid #2A5298 !important; }

/* Round badges for villain/solution numbers in B */
body[data-unify="B"] #problem .mono[style*="font-size: 28px"],
body[data-unify="B"] #solution .mono[style*="font-size: 28px"] {
  display: inline-flex !important; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid currentColor;
  font-size: 14px !important; opacity: 1 !important;
}

/* Outcome story in B */
body[data-unify="B"] #story { background: #0F1624 !important; color: #F0EEE6; }
body[data-unify="B"] #story article { background: #141B2D !important; border-color: rgba(255,255,255,0.08) !important; }
body[data-unify="B"] #story h2,
body[data-unify="B"] #story h3 { color: #FFFFFF !important; }
body[data-unify="B"] #story p { color: rgba(255,255,255,0.72) !important; }
