/* ═══════════════════════════════════════════════════════════════
   DEVELOPER VAULT — Clean Premium Showcase
   Sections: Hero · Featured Collection · Newsletter
   All styles scoped to .dv-* — no global collision
   ═══════════════════════════════════════════════════════════════ */

/* ── Scoped tokens ── */
.dv-page {
  --dv-bg:           #010307;
  --dv-surface:      #0c1020;
  --dv-border:       rgba(255, 255, 255, 0.07);
  --dv-border-md:    rgba(255, 255, 255, 0.11);
  --dv-purple:       #7c5cff;
  --dv-cyan:         #00e0ff;
  --dv-text:         #d4e0f5;
  --dv-muted:        #6b7a99;
  --dv-faint:        #3b4560;
  --dv-ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --dv-ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dv-page * { box-sizing: border-box; }

/* ── Container ── */
.dv-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Section spacing ── */
.dv-section { position: relative; }

/* ════════════════════════════════════════════════════════════════
   § 1 — HERO
   ════════════════════════════════════════════════════════════════ */

.dv-hero {
  padding: 48px 0 0;
  text-align: center;
}

/* ════════════════════════════════════════════════════════════════
   § 2 — FEATURED COLLECTION CARD
   Art Direction: Apple Vision Pro / Apple Liquid Glass
   Water-like transparent crystal · Subtle 5px refraction · 28px radius
   ════════════════════════════════════════════════════════════════ */

.dv-featured-section {
  padding: 44px 0 56px;
}

.dv-featured-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* The Liquid Glass Card */
.dv-fc-card {
  display: grid;
  grid-template-columns: 45% 55%;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(18, 22, 34, 0.45) 45%,
    rgba(10, 14, 24, 0.55) 100%
  );
  backdrop-filter: blur(5px) url(#liquid-prism-intense);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top-color: rgba(255, 255, 255, 0.28);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.18),
    0 20px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 1px rgba(255, 255, 255, 0.15),
    inset 0 -1px 1px rgba(255, 255, 255, 0.05);
  transition:
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 700ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 700ms cubic-bezier(0.22, 1, 0.36, 1),
    background 700ms cubic-bezier(0.22, 1, 0.36, 1);
  align-items: center;
}

/* Top-left specular light reflection */
.dv-fc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.02) 50%,
    transparent 100%
  );
  pointer-events: none;
  border-radius: 28px 28px 0 0;
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.dv-fc-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(255, 255, 255, 0.35);
  border-top-color: rgba(255, 255, 255, 0.45);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.25),
    0 32px 88px rgba(0, 0, 0, 0.45),
    inset 0 1px 2px rgba(255, 255, 255, 0.30),
    inset 0 -1px 2px rgba(255, 255, 255, 0.08);
}

.dv-fc-card:hover::before {
  opacity: 1;
}

/* ── Left: Visual Preview ── */
.dv-fc-visual {
  background: linear-gradient(160deg, rgba(255,255,255,0.03) 0%, rgba(13, 21, 48, 0.4) 60%, rgba(6, 10, 26, 0.6) 100%);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  height: 100%;
  justify-content: center;
}

/* Mini browser inside visual — Crystal Glass Frame */
.dv-fc-browser {
  background: rgba(10, 13, 28, 0.55);
    -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top-color: rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.45),
    inset 0 1px 1px rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 1;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), border-color 700ms ease;
}

.dv-fc-card:hover .dv-fc-browser {
  transform: scale(1.015);
  border-color: rgba(255, 255, 255, 0.25);
}

.dv-fc-browser-bar {
  background: rgba(14, 18, 36, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dv-fc-browser-dots { display: flex; gap: 5px; }
.dv-fc-browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dv-fc-browser-dots span:nth-child(1) { background: rgba(255, 95, 87, 0.85); }
.dv-fc-browser-dots span:nth-child(2) { background: rgba(254, 188, 46, 0.85); }
.dv-fc-browser-dots span:nth-child(3) { background: rgba(40, 200, 64, 0.85); }

.dv-fc-browser-addr {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.38);
  font-family: 'SF Mono', 'JetBrains Mono', monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Portfolio grid inside browser */
.dv-fc-portfolio-grid {
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.dv-fc-portfolio-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.dv-fc-card:hover .dv-fc-portfolio-item { transform: scale(1.02); }

.dv-fc-pi-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 4px;
}

.dv-fc-pi-label {
  font-size: 0.52rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  padding: 2px 5px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

/* Stat chips below browser — Glass Crystal Containers */
.dv-fc-visual-stats {
  display: flex;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.dv-fc-vis-stat {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 8px 10px;
  text-align: center;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.12);
}

.dv-fc-vis-stat-num {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.dv-fc-vis-stat-label {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
  font-weight: 500;
}

/* ── Right: Content ── */
.dv-fc-content {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.dv-fc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  padding: 4px 13px;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  width: fit-content;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.dv-fc-badge svg { flex-shrink: 0; }

.dv-fc-title {
  font-size: clamp(1.4rem, 2.1vw, 1.7rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.035em;
  line-height: 1.2;
  margin-bottom: 10px;
}

.dv-fc-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin-bottom: 18px;
}

/* Checklist */
.dv-fc-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.dv-fc-check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.dv-fc-check-icon {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: #ffffff;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.25);
}

/* Stats row */
.dv-fc-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 0;
  margin-bottom: 22px;
}

.dv-fc-stat {
  flex: 1;
  text-align: center;
  position: relative;
}

.dv-fc-stat + .dv-fc-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.dv-fc-stat-num {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.04em;
  line-height: 1;
}

.dv-fc-stat-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 3px;
  font-weight: 500;
  white-space: nowrap;
}

/* Single Liquid Glass Pill Button */
.dv-fc-actions {
  display: flex;
}

.dv-fc-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
  transition:
    background 300ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 300ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 300ms cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}

.dv-fc-btn-primary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.35),
    inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.dv-fc-btn-primary svg {
  flex-shrink: 0;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.dv-fc-btn-primary:hover svg {
  transform: translateX(3px);
}

/* ════════════════════════════════════════════════════════════════
   § 3 — NEWSLETTER
   ════════════════════════════════════════════════════════════════ */

.dv-newsletter-section {
  padding: 64px 0 80px;
}

.dv-newsletter-card {
  max-width: 640px;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    rgba(124, 92, 255, 0.07) 0%,
    rgba(0, 224, 255, 0.035) 100%
  );
  border: 1px solid rgba(124, 92, 255, 0.18);
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.dv-newsletter-card::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 240px;
  background: radial-gradient(ellipse, rgba(124, 92, 255, 0.13) 0%, transparent 70%);
  pointer-events: none;
}

.dv-newsletter-title {
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.dv-newsletter-sub {
  font-size: 0.97rem;
  color: var(--dv-muted);
  max-width: 420px;
  margin: 0 auto 32px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.dv-newsletter-form {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.dv-newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 11px;
  padding: 13px 18px;
  font-size: 0.93rem;
  color: #fff;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  font-family: inherit;
}

.dv-newsletter-input::placeholder { color: rgba(255, 255, 255, 0.28); }

.dv-newsletter-input:focus {
  border-color: rgba(124, 92, 255, 0.48);
  background: rgba(255, 255, 255, 0.07);
}

.dv-newsletter-btn {
  padding: 13px 24px;
  background: #fff;
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  border-radius: 11px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s var(--dv-ease), box-shadow 0.2s ease, background 0.15s ease;
  font-family: inherit;
}

.dv-newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.14);
  background: #f0f4ff;
}

/* ════════════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ════════════════════════════════════════════════════════════════ */

[data-dv-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s var(--dv-ease),
    transform 0.65s var(--dv-ease);
}

[data-dv-reveal].dv-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-dv-delay="1"] { transition-delay: 0.08s; }
[data-dv-delay="2"] { transition-delay: 0.16s; }
[data-dv-delay="3"] { transition-delay: 0.24s; }
[data-dv-delay="4"] { transition-delay: 0.32s; }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .dv-hero-container { grid-template-columns: 1fr; padding: 52px 40px; }
  .dv-hero-right { display: none; }
}

@media (max-width: 900px) {
  .dv-container, .dv-featured-wrap { padding: 0 20px; }
  .dv-fc-card { grid-template-columns: 1fr; }
  .dv-fc-visual { min-height: 260px; }
  .dv-newsletter-card { padding: 40px 28px; }
  .dv-newsletter-form { flex-direction: column; }
}

@media (max-width: 640px) {
  .dv-hero-container { padding: 40px 24px; border-radius: 20px; }
  .dv-hero-h1 { font-size: 2.4rem; }
  .dv-hero-actions { flex-direction: column; align-items: flex-start; }
  .dv-hero-actions a { width: 100%; justify-content: center; }
  .dv-fc-content { padding: 28px 24px; }
  .dv-fc-title { font-size: 1.35rem; }
  .dv-fc-stats { gap: 0; }
  .dv-fc-actions { flex-direction: column; }
  .dv-fc-actions a { width: 100%; justify-content: center; }
}


/* ════════════════════════════════════════════════════════════════
   § 4 — 1,600+ PORTFOLIO TEMPLATES SPECIFIC COMPONENT STYLES
   ════════════════════════════════════════════════════════════════ */

.dv-grid-overlay {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.dv-radial-spotlight {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 224, 255, 0.06) 0%, rgba(124, 92, 255, 0.03) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.dv-editorial-split {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.dv-title-display {
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #d4e0f5 60%, #00e0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dv-sub-display {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin-bottom: 32px;
}

.dv-btn-launch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #00e0ff 0%, #7c5cff 100%);
  color: #030712;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0, 224, 255, 0.25);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.dv-btn-launch:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 44px rgba(0, 224, 255, 0.4);
}

.dv-floating-hud {
  background: rgba(12, 16, 32, 0.65);
    -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.dv-hud-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.88rem;
}

.dv-hud-metric:last-child {
  border-bottom: none;
}

.dv-hud-key {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.dv-hud-val {
  color: #ffffff;
  font-weight: 700;
  text-align: right;
}

.dv-pipeline-stage {
  margin-top: 80px;
  padding: 48px;
  background: rgba(12, 16, 32, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  position: relative;
  z-index: 1;
}

.dv-pipeline-flow {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  padding: 12px 4px 20px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.dv-node-card {
  flex: 0 0 auto;
  min-width: 124px;
  padding: 16px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.dv-node-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 224, 255, 0.4);
}

.dv-node-icon {
  width: 38px;
  height: 38px;
  margin: 0 auto 10px;
  background: rgba(0, 224, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dv-cyan);
}

.dv-node-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.dv-section-spacer {
  margin-top: 80px;
  position: relative;
  z-index: 1;
}

.dv-role-asymmetric {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.dv-role-block {
  background: rgba(12, 16, 32, 0.55);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 36px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.dv-role-block:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 224, 255, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.dv-role-block.col-7 { grid-column: span 7; }
.dv-role-block.col-5 { grid-column: span 5; }
.dv-role-block.col-4 { grid-column: span 4; }
.dv-role-block.col-8 { grid-column: span 8; }

.dv-role-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.dv-role-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 224, 255, 0.15), rgba(124, 92, 255, 0.15));
  border: 1px solid rgba(0, 224, 255, 0.25);
  color: var(--dv-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dv-role-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.dv-role-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.dv-cloud-schematic {
  margin-top: 80px;
  padding: 48px;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.08) 0%, rgba(0, 224, 255, 0.04) 100%);
  border: 1px solid rgba(124, 92, 255, 0.2);
  border-radius: 28px;
  position: relative;
  z-index: 1;
}

.dv-schematic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.dv-schematic-card {
  background: rgba(12, 16, 32, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px;
}

.dv-schematic-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dv-schematic-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.dv-schematic-card code {
  background: rgba(0, 224, 255, 0.1);
  color: var(--dv-cyan);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85em;
}

/* FAQ Styles */
.dv-faq-item {
  background: rgba(12, 16, 32, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.dv-faq-item.active {
  border-color: rgba(0, 224, 255, 0.4);
}

.dv-faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.dv-faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--dv-cyan);
}

.dv-faq-item.active .dv-faq-icon {
  transform: rotate(180deg);
}

.dv-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  opacity: 0;
}

.dv-faq-item.active .dv-faq-content {
  max-height: 600px !important;
  opacity: 1 !important;
}

.dv-faq-inner {
  padding: 0 28px 24px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  font-size: 0.98rem;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .dv-editorial-split {
    grid-template-columns: 1fr;
  }
  .dv-schematic-grid {
    grid-template-columns: 1fr;
  }
  .dv-role-block.col-7,
  .dv-role-block.col-5,
  .dv-role-block.col-4,
  .dv-role-block.col-8 {
    grid-column: span 12;
  }
}

@media (max-width: 640px) {
  .dv-pipeline-stage,
  .dv-cloud-schematic,
  .dv-floating-hud {
    padding: 28px 20px;
  }
}
