/* === VISUAL VARIANTS — design tokens v2 === */
.page-content[class*="vv--"] {
  --vv-bg: #0B0B0C;
  --vv-surface: #0E0E10;
  --vv-surface-alt: #141417;
  --vv-text: #F2F0EB;
  --vv-muted: #9A9A9F;
  --vv-dim: #7E7E84;
  --vv-gold: #C8A24B;
  --vv-border: rgba(255,255,255,0.08);
  --vv-font-heading: 'Space Grotesk', sans-serif;
  --vv-font-body: 'Manrope', sans-serif;
}

.page-content[class*="vv--"] {
  background-image: none;
  background-color: var(--vv-bg);
  font-family: var(--vv-font-body);
  color: var(--vv-text);
  font-size: clamp(14px, 1vw + 12px, 19px);
  line-height: 1.7;
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
  position: relative;
}

.page-content[class*="vv--"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}

.page-content[class*="vv--"] > * {
  position: relative;
  z-index: 1;
}

.page-content[class*="vv--"] h2 {
  font-family: var(--vv-font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  color: var(--vv-text);
  margin: 0 0 1.25rem;
}

.page-content[class*="vv--"] h3 {
  font-family: var(--vv-font-heading);
  font-weight: 600;
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.25;
  color: var(--vv-text);
  margin: 2rem 0 0.75rem;
}

.page-content[class*="vv--"] p {
  color: var(--vv-muted);
  margin: 0 0 1.25rem;
}

.page-content[class*="vv--"] .vv-section--intro p {
  font-size: clamp(16px, 1.1vw + 13px, 21px);
  color: var(--vv-text);
  font-weight: 500;
}

.page-content[class*="vv--"] strong {
  color: var(--vv-text);
  font-weight: 700;
}

.page-content[class*="vv--"] ul,
.page-content[class*="vv--"] ol {
  padding-left: 1.5rem;
  margin: 0 0 1.25rem;
}

.page-content[class*="vv--"] li {
  color: var(--vv-muted);
  margin-bottom: 0.5rem;
  list-style: disc;
}

.page-content[class*="vv--"] ol li { list-style: decimal; }

/* =============================================
   VARIANT: precision — technical blueprint
   ============================================= */
.vv--precision .vv-section {
  border-left: 3px solid var(--vv-gold);
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
}

.vv--precision .vv-section--intro {
  border-left: none;
  padding-left: 0;
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--vv-gold);
}

.vv--precision .vv-section:not(.vv-section--intro) {
  padding-top: 2.5rem;
  border-top: 1px solid var(--vv-border);
}

.vv--precision .vv-section--intro + .vv-section { border-top: none; }

.vv--precision h2::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--vv-gold);
  margin-bottom: 0.75rem;
}

.vv--precision .vv-section--intro {
  position: relative;
}
.vv--precision .vv-section--intro::before,
.vv--precision .vv-section--intro::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: var(--vv-gold);
  border-style: solid;
}
.vv--precision .vv-section--intro::before {
  top: 0; left: 0;
  border-width: 2px 0 0 2px;
}
.vv--precision .vv-section--intro::after {
  bottom: 0; right: 0;
  border-width: 0 2px 2px 0;
}

/* =============================================
   VARIANT: editorial — magazine typography
   ============================================= */
.vv--editorial .vv-section {
  margin-bottom: 0;
  padding: 2.5rem 0;
}

.vv--editorial .vv-section:nth-child(even) {
  background: var(--vv-surface);
  padding: 2.5rem 2rem;
  margin-left: -1.25rem;
  margin-right: -1.25rem;
  border-radius: 4px;
}

.vv--editorial .vv-section--intro {
  padding-bottom: 3rem;
}

.vv--editorial h2 {
  font-size: clamp(32px, 4.5vw, 54px);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.vv--editorial h2::first-letter {
  color: var(--vv-gold);
  font-size: 1.15em;
}

.vv--editorial p {
  max-width: 640px;
}

.vv--editorial .vv-section:last-of-type::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--vv-gold), transparent);
  margin-top: 2rem;
}

/* =============================================
   VARIANT: forge — industrial cards
   ============================================= */
.vv--forge .vv-section {
  background: var(--vv-surface);
  border: 1px solid var(--vv-border);
  border-radius: 4px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.vv--forge .vv-section--intro {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0 0 2rem;
  border-bottom: 3px solid var(--vv-gold);
}

.vv--forge .vv-section:not(.vv-section--intro) + .vv-section:not(.vv-section--intro) {
  position: relative;
  margin-top: 0;
}

.vv--forge .vv-section:not(.vv-section--intro) + .vv-section:not(.vv-section--intro)::before {
  content: '';
  position: absolute;
  top: -0.875rem;
  left: 2rem;
  right: 2rem;
  height: 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.vv--forge h2 {
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--vv-gold);
  margin-bottom: 1.5rem;
}

.vv--forge .vv-section:not(.vv-section--intro):hover {
  border-color: rgba(200,162,75,0.25);
  box-shadow: 0 0 30px rgba(200,162,75,0.06);
}

/* =============================================
   VARIANT: signal — asymmetric accents
   ============================================= */
.vv--signal .vv-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
}

.vv--signal .vv-section:not(.vv-section--intro) + .vv-section {
  border-top: none;
  position: relative;
}

.vv--signal .vv-section:not(.vv-section--intro) + .vv-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, var(--vv-gold), transparent);
}

.vv--signal .vv-section:nth-child(even):not(.vv-section--intro) {
  padding-left: 2.5rem;
}

.vv--signal .vv-section:nth-child(odd):not(.vv-section--intro) {
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  padding: 2rem;
  border-radius: 4px;
  background: var(--vv-surface);
}

.vv--signal .vv-section--intro {
  background: transparent;
  box-shadow: none;
  padding: 0 0 2rem;
}

.vv--signal h2 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.vv--signal h2::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--vv-gold);
  border-radius: 50%;
}

.vv--signal .vv-section--intro::before {
  content: '';
  display: block;
  width: 80px;
  height: 80px;
  border: 1px solid var(--vv-gold);
  border-radius: 50%;
  opacity: 0.15;
  margin: 0 auto 2rem;
}

/* =============================================
   VARIANT: monolith — minimal stark
   ============================================= */
.vv--monolith .vv-section {
  margin-bottom: 0;
  padding: 3rem 0;
}

.vv--monolith .vv-section:nth-child(even):not(.vv-section--intro) {
  background: var(--vv-surface-alt);
  padding: 3rem 2rem;
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}

.vv--monolith .vv-section--intro {
  padding-top: 0;
}

.vv--monolith h2 {
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: clamp(30px, 5vw, 58px);
  margin-bottom: 2rem;
  color: var(--vv-text);
}

.vv--monolith p {
  font-size: clamp(15px, 1.05vw + 12px, 19px);
  line-height: 1.8;
}

.vv--monolith h3 {
  text-transform: uppercase;
  font-size: clamp(13px, 0.9vw + 10px, 16px);
  letter-spacing: 0.12em;
  color: var(--vv-gold);
  margin-top: 3rem;
}

/* === responsive === */
@media (max-width: 760px) {
  .page-content[class*="vv--"] {
    padding: 2rem 1rem 3rem;
  }
  .vv--signal .vv-section:nth-child(even):not(.vv-section--intro) {
    padding-left: 1rem;
  }
  .vv--editorial .vv-section:nth-child(even),
  .vv--monolith .vv-section:nth-child(even):not(.vv-section--intro) {
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .vv--forge .vv-section {
    padding: 1.25rem;
  }
  .vv--precision .vv-section {
    padding-left: 1rem;
  }
}
