/* ─────────────────────────────────────────────────────────────────────
   URN — AI-feel hero visual + design-token hero unification
   v1.0 · 2026-05-14
   Pure CSS + SVG. Drop-in replacement for .hero-impact-visual.
   ───────────────────────────────────────────────────────────────────── */

:root {
  --ai-teal: #083d44;
  --ai-electric: #0000ee;
  --ai-pulse: #25D366;
  --ai-cream: #fcfcf8;
  --ai-mesh: linear-gradient(135deg, var(--ai-teal) 0%, var(--ai-electric) 55%, var(--ai-pulse) 100%);
}

/* ─── HERO SECTION SCAFFOLD ───────────────────────────────────────── */
.hero-section {
  position: relative;
  background: #061f24;
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(0, 0, 238, 0.18), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(37, 211, 102, 0.12), transparent 55%),
    radial-gradient(700px 400px at 50% 50%, rgba(8, 61, 68, 0.6), transparent 70%);
  overflow: hidden;
  isolation: isolate;
}
.hero-section::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px, 64px 64px;
  background-position: 0 0, 16px 16px;
  z-index: 0;
  pointer-events: none;
  animation: urnDotBreath 6s ease-in-out infinite;
}
.hero-section > .container { position: relative; z-index: 2; }

.hero-title {
  font-family: 'Funnel Display', system-ui, sans-serif !important;
  color: var(--ai-cream);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.hero-title .text-gradient {
  /* High-contrast bright gradient for dark hero background.
     Cream → mint → sky — all bright, readable on #061f24. */
  background: linear-gradient(135deg, #fcfcf8 0%, #25D366 45%, #38BDF8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 24px rgba(37, 211, 102, 0.25);
  position: relative;
}
.hero-subtitle {
  font-family: 'Inter', system-ui, sans-serif !important;
  color: rgba(252, 252, 248, 0.85);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.65;
  max-width: 60ch;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 0, 238, 0.15);
  border: 1px solid rgba(0, 0, 238, 0.4);
  color: var(--ai-cream);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.2px;
  backdrop-filter: blur(8px);
}
.hero-trust { color: rgba(252, 252, 248, 0.7); font-size: 13.5px; }
.hero-trust .trust-item i { margin-right: 6px; }

/* Refresh primary CTA to brand-coherent gradient */
.btn-primary-custom {
  background: var(--ai-mesh) !important;
  background-size: 200% 200% !important;
  border: 0 !important;
  color: #fff !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.2px;
  padding: 14px 28px !important;
  border-radius: 100px !important;
  transition: background-position 600ms ease, transform 200ms ease, box-shadow 300ms ease;
  box-shadow: 0 6px 24px rgba(0, 0, 238, 0.35);
}
.btn-primary-custom:hover {
  background-position: 100% 0% !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 0, 238, 0.45);
}
.btn-outline-light {
  border: 1.5px solid rgba(252, 252, 248, 0.3) !important;
  color: var(--ai-cream) !important;
  background: rgba(252, 252, 248, 0.04) !important;
  padding: 13px 26px !important;
  border-radius: 100px !important;
  font-weight: 500 !important;
  backdrop-filter: blur(8px);
  transition: all 200ms ease;
}
.btn-outline-light:hover {
  background: rgba(252, 252, 248, 0.10) !important;
  border-color: rgba(252, 252, 248, 0.6) !important;
}

/* ─── AI VISUAL (right column) ────────────────────────────────────── */
.urn-ai-hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 540px;
  margin-left: auto;
}

/* Concentric pulse rings */
.urn-ai-rings { position: absolute; inset: 0; }
.urn-ai-ring {
  position: absolute; inset: 0; margin: auto;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 238, 0.4);
  opacity: 0;
  animation: urnRingPulse 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.urn-ai-ring:nth-child(1) { animation-delay: 0s; }
.urn-ai-ring:nth-child(2) { animation-delay: 1s; border-color: rgba(37, 211, 102, 0.45); }
.urn-ai-ring:nth-child(3) { animation-delay: 2s; border-color: rgba(252, 252, 248, 0.25); }
.urn-ai-ring:nth-child(4) { animation-delay: 3s; border-color: rgba(0, 0, 238, 0.3); }

/* Central AI core — breathing dotted cluster */
.urn-ai-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 200px; height: 200px;
  display: grid;
  place-items: center;
}
.urn-ai-core::before {
  content: "";
  position: absolute; inset: 18%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 0, 238, 0.35) 0%, rgba(8, 61, 68, 0.15) 40%, transparent 70%);
  filter: blur(18px);
  z-index: -1;
  animation: urnClusterGlow 4s ease-in-out infinite;
}
.urn-ai-cluster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  overflow: visible;
}
.urn-ai-cluster .cd {
  fill: var(--ai-cream);
  transform-origin: center;
  transform-box: fill-box;
  animation: urnClusterPulse 3.6s cubic-bezier(0.4, 0, 0.4, 1) infinite;
}
/* Center dot — brightest, leads the breath */
.urn-ai-cluster .r0 { fill: var(--ai-pulse); animation-delay: 0s; }
/* Ring 1 — electric blue, slight delay */
.urn-ai-cluster .r1 { fill: var(--ai-electric); animation-delay: 0.25s; }
/* Ring 2 — cream, more delay */
.urn-ai-cluster .r2 { fill: var(--ai-cream); animation-delay: 0.55s; opacity: 0.85; }
/* Ring 3 — outer cream/blue mix, most delay (creates outward wave) */
.urn-ai-cluster .r3 { fill: var(--ai-electric); animation-delay: 0.85s; opacity: 0.55; }
/* Tiny per-dot stagger inside each ring for organic feel */
.urn-ai-cluster .r1:nth-child(2)  { animation-delay: 0.20s; }
.urn-ai-cluster .r1:nth-child(3)  { animation-delay: 0.30s; }
.urn-ai-cluster .r1:nth-child(4)  { animation-delay: 0.25s; }
.urn-ai-cluster .r1:nth-child(5)  { animation-delay: 0.35s; }
.urn-ai-cluster .r1:nth-child(6)  { animation-delay: 0.20s; }
.urn-ai-cluster .r1:nth-child(7)  { animation-delay: 0.30s; }
.urn-ai-cluster .r2:nth-child(8)  { animation-delay: 0.50s; }
.urn-ai-cluster .r2:nth-child(10) { animation-delay: 0.60s; }
.urn-ai-cluster .r2:nth-child(12) { animation-delay: 0.55s; }
.urn-ai-cluster .r2:nth-child(14) { animation-delay: 0.65s; }
.urn-ai-cluster .r2:nth-child(16) { animation-delay: 0.50s; }
.urn-ai-cluster .r2:nth-child(18) { animation-delay: 0.60s; }
.urn-ai-cluster-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: var(--ai-cream);
  font-family: 'Funnel Display', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-align: center;
  line-height: 1.15;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

/* Orbiting AI-tool chips */
.urn-ai-orbit {
  position: absolute; inset: 0;
  animation: urnOrbit 30s linear infinite;
}
.urn-ai-orbit.reverse { animation-direction: reverse; animation-duration: 40s; }
.urn-ai-chip {
  position: absolute;
  background: rgba(252, 252, 248, 0.95);
  color: var(--ai-teal);
  padding: 8px 14px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(8, 61, 68, 0.25);
  border: 1px solid rgba(8, 61, 68, 0.08);
  animation: urnChipBob 4s ease-in-out infinite;
  display: inline-flex; align-items: center; gap: 6px;
}
.urn-ai-chip i { color: var(--ai-electric); font-size: 11px; }
.urn-ai-chip.green i { color: var(--ai-pulse); }
.urn-ai-chip:nth-child(odd) { animation-delay: -2s; }

/* Position chips around the orbit */
.chip-1 { top: 4%;  left: 50%; transform: translateX(-50%); }
.chip-2 { top: 28%; right: -2%; }
.chip-3 { bottom: 26%; right: 0%; }
.chip-4 { bottom: 4%; left: 50%; transform: translateX(-50%); }
.chip-5 { bottom: 26%; left: 0%; }
.chip-6 { top: 28%; left: -2%; }

/* Floating dot particles inside the visual */
.urn-ai-dots { position: absolute; inset: 0; pointer-events: none; }
.urn-ai-dot {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--ai-electric);
  border-radius: 50%;
  opacity: 0.6;
  box-shadow: 0 0 8px rgba(0, 0, 238, 0.6);
  animation: urnDotFloat 8s ease-in-out infinite;
}

/* SVG connecting lines */
.urn-ai-lines {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.6;
  pointer-events: none;
}
.urn-ai-lines line {
  stroke: rgba(0, 0, 238, 0.3);
  stroke-width: 1;
  stroke-dasharray: 4 6;
  animation: urnLineFlow 6s linear infinite;
}

/* ─── KEYFRAMES ───────────────────────────────────────────────────── */
@keyframes urnDotBreath {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.02); }
}
@keyframes urnRingPulse {
  0% { width: 25%; height: 25%; opacity: 0.8; }
  100% { width: 100%; height: 100%; opacity: 0; }
}
/* Cluster breathes — each dot fades + scales, staggered by ring → outward wave */
@keyframes urnClusterPulse {
  0%, 100% { opacity: 0.25; transform: scale(0.7); }
  45%, 55% { opacity: 1;    transform: scale(1.25); }
}
@keyframes urnClusterGlow {
  0%, 100% { opacity: 0.5; transform: scale(0.95); }
  50%      { opacity: 0.9; transform: scale(1.1); }
}
@keyframes urnOrbit {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
/* Counter-rotate the chip text so it stays upright */
.urn-ai-orbit .urn-ai-chip { animation-name: urnChipBob, urnChipCounter; animation-duration: 4s, 30s; animation-iteration-count: infinite; animation-timing-function: ease-in-out, linear; }
.urn-ai-orbit.reverse .urn-ai-chip { animation-duration: 4s, 40s; animation-direction: normal, normal; }
@keyframes urnChipCounter {
  from { rotate: 0deg; }
  to   { rotate: -360deg; }
}
.urn-ai-orbit.reverse .urn-ai-chip { animation-name: urnChipBob, urnChipCounterRev; }
@keyframes urnChipCounterRev {
  from { rotate: 0deg; }
  to   { rotate: 360deg; }
}
@keyframes urnChipBob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -4px; }
}
@keyframes urnDotFloat {
  0%, 100% { transform: translate(0, 0); opacity: 0.4; }
  33% { transform: translate(8px, -12px); opacity: 0.9; }
  66% { transform: translate(-6px, 6px); opacity: 0.7; }
}
@keyframes urnLineFlow {
  to { stroke-dashoffset: -20; }
}

/* ─── MISSION 100K — brand-mesh recolor + breathing dot bg ────────── */
.mission-100k-section {
  background: linear-gradient(135deg, #061f24 0%, #083d44 40%, #0000ee 100%) !important;
  position: relative;
  overflow: hidden;
}
.mission-100k-section::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(252, 252, 248, 0.07) 1px, transparent 1px),
    radial-gradient(rgba(37, 211, 102, 0.05) 1px, transparent 1px);
  background-size: 32px 32px, 64px 64px;
  background-position: 0 0, 16px 16px;
  pointer-events: none;
  animation: urnDotBreath 6s ease-in-out infinite;
}
.mission-100k-section::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 90% 10%, rgba(37, 211, 102, 0.18), transparent 55%),
    radial-gradient(700px 400px at 10% 90%, rgba(0, 0, 238, 0.20), transparent 55%);
  pointer-events: none;
}
.mission-100k-section > .container { position: relative; z-index: 2; }
.mission-100k-number {
  background: linear-gradient(135deg, #fcfcf8 0%, #25D366 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mission-100k-ring { border-color: rgba(37, 211, 102, 0.45) !important; }

/* ─── PUBLISHING-WHY section gets the same breathing dot bg ────────── */
.urn-publish-section {
  position: relative;
  background: var(--ai-cream);
  overflow: hidden;
}
.urn-publish-section::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(8, 61, 68, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  animation: urnDotBreath 7s ease-in-out infinite;
}
.urn-publish-section > .container { position: relative; z-index: 2; }

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
  .urn-ai-ring, .urn-ai-core, .urn-ai-orbit, .urn-ai-chip, .urn-ai-dot, .urn-ai-lines line, .hero-section::before {
    animation: none !important;
  }
}

/* ─── FIVE-MOVES SCENES — replace cartoon look with clean SaaS UI ────── */
.urn-toon-section {
  background: linear-gradient(180deg, #FAFBFF 0%, #f1f5f9 100%) !important;
  position: relative;
}
.urn-toon-section::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(8, 61, 68, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.7;
  animation: urnDotBreath 7s ease-in-out infinite;
}
.urn-toon-section > .container { position: relative; z-index: 2; }
.urn-toon-scene {
  background: #fff !important;
  border: 1px solid rgba(8, 61, 68, 0.08) !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 24px rgba(8, 61, 68, 0.06) !important;
  padding: 26px 22px 22px !important;
  position: relative;
}
.urn-toon-scene:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 48px rgba(0, 0, 238, 0.14) !important;
  border-color: rgba(0, 0, 238, 0.25) !important;
}
.urn-toon-scene .urn-scene-num {
  width: 36px !important; height: 36px !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #083d44 0%, #0000ee 100%) !important;
  color: #fff !important;
  font-family: 'Funnel Display', sans-serif !important;
  font-weight: 800 !important;
  font-size: 16px !important;
  display: grid !important;
  place-items: center !important;
  box-shadow: 0 6px 16px rgba(0, 0, 238, 0.32) !important;
  position: absolute !important;
  top: 18px; left: 18px;
}
.urn-toon-scene .urn-scene-art {
  width: 100%;
  min-height: 150px;
  display: grid;
  place-items: center;
  margin: 12px 0 14px;
  padding: 16px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
  border-radius: 12px;
  border: 1px solid rgba(8, 61, 68, 0.06);
  position: relative;
  overflow: hidden;
}
/* Avatar styles tuned to look like a clean modern persona, not a cartoon */
.urn-toon-scene .urn-avatar { width: 70px !important; height: 90px !important; }
.urn-toon-scene .urn-avatar-head {
  background: linear-gradient(135deg, #083d44 0%, #0000ee 100%) !important;
  width: 36px !important; height: 36px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 238, 0.3);
}
.urn-toon-scene .urn-avatar-body {
  background: linear-gradient(180deg, #0000ee 0%, #1e3a8a 100%) !important;
  width: 60px !important;
  border-radius: 30px 30px 8px 8px !important;
}
.urn-toon-scene .urn-thought-bubble {
  background: #fff !important;
  border: 2px solid #0000ee !important;
  color: #0000ee !important;
  font-weight: 800 !important;
  font-family: 'Funnel Display', sans-serif !important;
  box-shadow: 0 8px 20px rgba(0, 0, 238, 0.25);
}
.urn-toon-scene .urn-doc-icon {
  background: linear-gradient(135deg, #25D366 0%, #047857 100%) !important;
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4) !important;
}
.urn-toon-scene .urn-confetti { background: #25D366 !important; }
.urn-toon-scene .urn-confetti:nth-child(odd) { background: #0000ee !important; }
.urn-toon-scene .urn-mockup {
  background: #fff !important;
  border: 1px solid rgba(8, 61, 68, 0.12) !important;
  box-shadow: 0 6px 16px rgba(8, 61, 68, 0.08) !important;
}
.urn-toon-scene .urn-mockup-bar {
  background: linear-gradient(90deg, #f1f5f9 0%, #e2e8f0 100%) !important;
}
.urn-toon-scene .urn-mockup-q {
  color: #0000ee !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 9.5px !important;
}
.urn-toon-scene .urn-mockup-label {
  color: #083d44 !important;
  font-family: 'Funnel Display', sans-serif !important;
  font-size: 11.5px !important;
}
.urn-toon-scene .urn-mockup-input {
  background: linear-gradient(90deg, #e0e7ff 0%, #c7d2fe 100%) !important;
}
.urn-toon-scene .urn-critique-pill {
  background: linear-gradient(135deg, #25D366 0%, #047857 100%) !important;
  color: #fff !important;
  font-family: 'Funnel Display', sans-serif !important;
  font-weight: 800 !important;
  padding: 4px 10px !important;
  border-radius: 99px !important;
  font-size: 10.5px !important;
}
.urn-toon-scene .urn-critique-pass span { color: #25D366 !important; }
.urn-toon-scene .urn-critique-warn span { color: #f59e0b !important; }
.urn-toon-scene h4 {
  font-family: 'Funnel Display', sans-serif !important;
  font-size: 15px !important;
  color: #083d44 !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em;
}
.urn-toon-scene p {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  color: #475569 !important;
  line-height: 1.6 !important;
}
.urn-toon-cta-btn {
  background: linear-gradient(135deg, #083d44 0%, #0000ee 55%, #25D366 100%) !important;
  background-size: 200% 200% !important;
  border-radius: 100px !important;
  font-family: 'Inter', sans-serif !important;
  box-shadow: 0 10px 28px rgba(0, 0, 238, 0.35) !important;
  transition: background-position 600ms ease, transform 200ms ease, box-shadow 300ms ease !important;
}
.urn-toon-cta-btn:hover {
  background-position: 100% 0% !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 36px rgba(0, 0, 238, 0.45) !important;
}

/* ─── TOOLBOX GALLERY — make screens look like real product UI ───────── */
.urn-gallery-card {
  background: #fff !important;
  border: 1px solid rgba(8, 61, 68, 0.08) !important;
  border-radius: 16px !important;
  box-shadow: 0 12px 32px rgba(8, 61, 68, 0.10) !important;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.urn-gallery-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 24px 56px rgba(0, 0, 238, 0.16) !important;
  border-color: rgba(0, 0, 238, 0.25) !important;
}
.urn-browser {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%) !important;
  border-radius: 14px 14px 0 0 !important;
  border-bottom: 1px solid rgba(8, 61, 68, 0.10) !important;
  overflow: hidden;
}
.urn-browser-chrome {
  background: linear-gradient(180deg, #fcfcf8 0%, #f1f5f9 100%) !important;
  border-bottom: 1px solid rgba(8, 61, 68, 0.08) !important;
  padding: 9px 12px !important;
}
.urn-browser-chrome span:nth-child(1) { background: #ff5f57 !important; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08); }
.urn-browser-chrome span:nth-child(2) { background: #ffbd2e !important; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08); }
.urn-browser-chrome span:nth-child(3) { background: #28c940 !important; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08); }
.urn-browser-url {
  background: #fff !important;
  border: 1px solid rgba(8, 61, 68, 0.10) !important;
  border-radius: 6px !important;
  font-family: 'Inter', system-ui, monospace !important;
  font-size: 11px !important;
  color: #083d44 !important;
  padding: 4px 12px !important;
}
.urn-browser-screen { background: #fcfcf8 !important; padding: 16px !important; }
.urn-rob-screen, .urn-wizard-screen, .urn-project-screen, .urn-drill-screen {
  font-family: 'Inter', sans-serif !important;
}
.urn-rob-title, .urn-project-title, .urn-drill-question {
  color: #083d44 !important;
  font-weight: 700 !important;
  font-family: 'Funnel Display', sans-serif !important;
}
.urn-rob-cell { font-family: 'Funnel Display', sans-serif !important; font-weight: 800 !important; }
.urn-rob-low  { background: linear-gradient(135deg, #25D366 0%, #047857 100%) !important; color: #fff !important; box-shadow: 0 2px 6px rgba(37, 211, 102, 0.4); }
.urn-rob-some { background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%) !important; color: #fff !important; box-shadow: 0 2px 6px rgba(245, 158, 11, 0.4); }
.urn-rob-high { background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%) !important; color: #fff !important; box-shadow: 0 2px 6px rgba(239, 68, 68, 0.4); }
.urn-wizard-aside .active { background: #0000ee !important; }
.urn-wizard-step {
  color: #0000ee !important;
  font-weight: 800 !important;
  font-family: 'Inter', sans-serif !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 9.5px !important;
}
.urn-wizard-btn {
  background: linear-gradient(135deg, #083d44 0%, #0000ee 100%) !important;
  color: #fff !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 238, 0.3) !important;
}
.urn-project-cell.urn-done { background: linear-gradient(135deg, #25D366 0%, #047857 100%) !important; color: #fff !important; }
.urn-project-cell.urn-progress { background: linear-gradient(135deg, #0000ee 0%, #1e3a8a 100%) !important; color: #fff !important; }
.urn-project-stats strong { color: #083d44 !important; font-family: 'Funnel Display', sans-serif !important; }
.urn-drill-tag {
  background: linear-gradient(135deg, #083d44 0%, #0000ee 100%) !important;
  color: #fff !important;
  border-radius: 99px !important;
  padding: 3px 10px !important;
  font-size: 9.5px !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
  display: inline-block !important;
}
.urn-drill-correct { background: linear-gradient(135deg, #25D366 0%, #047857 100%) !important; color: #fff !important; border-color: transparent !important; }
.urn-drill-bar-fill { background: linear-gradient(90deg, #0000ee 0%, #25D366 100%) !important; }
.urn-gallery-meta h5 {
  font-family: 'Funnel Display', sans-serif !important;
  color: #083d44 !important;
  font-weight: 700 !important;
}
.urn-gallery-meta p {
  font-family: 'Inter', sans-serif !important;
  color: #475569 !important;
}
.urn-gallery-link {
  color: #0000ee !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
}

/* ─── REAL-CONTENT MOCKUPS — credible product UI for the gallery ───── */

/* RoB tool — proper data table */
.urn-rob-real { padding: 14px 14px 12px !important; }
.urn-rob-real .urn-rob-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.urn-rob-real .urn-rob-export { font-size: 10px; color: #0000ee; font-weight: 600; cursor: pointer; }
.urn-rob-real .urn-rob-domains { display: grid; grid-template-columns: 1.4fr repeat(6, 1fr); gap: 4px; padding-bottom: 6px; border-bottom: 1px solid rgba(8, 61, 68, 0.10); margin-bottom: 6px; }
.urn-rob-real .urn-rob-domains span { font-family: 'Inter', sans-serif; font-size: 9.5px; font-weight: 700; color: #64748b; text-align: center; letter-spacing: 0.4px; }
.urn-rob-real .urn-rob-domains span:last-child { color: #083d44; }
.urn-rob-real .urn-rob-row { display: grid; grid-template-columns: 1.4fr repeat(6, 1fr); gap: 4px; align-items: center; padding: 4px 0; }
.urn-rob-real .urn-rob-study { font-family: 'Inter', sans-serif; font-size: 10.5px; font-weight: 600; color: #083d44; padding-left: 2px; }
.urn-rob-real .urn-rob-cell { width: 22px; height: 22px; border-radius: 5px; font-size: 11px; line-height: 22px; text-align: center; margin: 0 auto; font-weight: 800; font-family: 'Funnel Display', sans-serif; }
.urn-rob-real .urn-rob-legend { display: flex; gap: 12px; font-family: 'Inter', sans-serif; font-size: 9.5px; color: #64748b; padding-top: 8px; border-top: 1px solid rgba(8, 61, 68, 0.08); margin-top: 6px; align-items: center; }
.urn-rob-real .urn-rob-saved { margin-left: auto; color: #25D366; font-weight: 600; }
.urn-rob-real .urn-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 3px; vertical-align: middle; }
.urn-rob-real .urn-dot.urn-low { background: #25D366; }
.urn-rob-real .urn-dot.urn-some { background: #f59e0b; }
.urn-rob-real .urn-dot.urn-high { background: #ef4444; }

/* Wizard tool — sidebar steps + Q with caret + live preview */
.urn-wizard-real { display: grid !important; grid-template-columns: 1.2fr 1.5fr 1.3fr; gap: 0 !important; padding: 0 !important; min-height: 220px; }
.urn-wizard-real .urn-wizard-aside { background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%); padding: 12px 10px; border-right: 1px solid rgba(8, 61, 68, 0.08); display: flex; flex-direction: column; gap: 4px; }
.urn-wizard-real .urn-wiz-step { font-family: 'Inter', sans-serif; font-size: 10px; padding: 5px 8px; border-radius: 6px; color: #64748b; }
.urn-wizard-real .urn-wiz-step.done { color: #25D366; font-weight: 600; }
.urn-wizard-real .urn-wiz-step.active { background: linear-gradient(135deg, #083d44 0%, #0000ee 100%); color: #fff; font-weight: 700; box-shadow: 0 4px 10px rgba(0, 0, 238, 0.3); }
.urn-wizard-real .urn-wizard-main { padding: 12px; }
.urn-wizard-real .urn-wizard-step { color: #0000ee !important; font-weight: 800 !important; font-size: 9.5px !important; letter-spacing: 0.6px; text-transform: uppercase; font-family: 'Inter', sans-serif; margin-bottom: 6px; }
.urn-wizard-real .urn-wiz-q { font-family: 'Funnel Display', sans-serif; font-size: 12px; color: #083d44; font-weight: 700; line-height: 1.35; margin-bottom: 8px; }
.urn-wizard-real .urn-wiz-textarea { background: #fff; border: 1.5px solid #0000ee; border-radius: 6px; padding: 8px 10px; font-family: 'Inter', sans-serif; font-size: 9.5px; color: #1e293b; line-height: 1.5; min-height: 64px; box-shadow: 0 0 0 3px rgba(0, 0, 238, 0.08); position: relative; }
.urn-wizard-real .urn-wiz-caret { display: inline-block; width: 1px; height: 11px; background: #0000ee; vertical-align: middle; margin-left: 1px; animation: urnCaretBlink 1s steps(2) infinite; }
.urn-wizard-real .urn-wizard-btn { display: inline-block; margin-top: 8px; padding: 6px 12px !important; font-size: 10px !important; }
.urn-wizard-real .urn-wizard-preview { background: linear-gradient(180deg, #fcfcf8 0%, #f8fafc 100%); padding: 12px; border-left: 1px solid rgba(8, 61, 68, 0.08); }
.urn-wizard-real .urn-wiz-pv-title { font-family: 'Inter', sans-serif; font-size: 9px; color: #64748b; text-transform: uppercase; letter-spacing: 0.6px; font-weight: 700; margin-bottom: 6px; }
.urn-wizard-real .urn-wiz-pv-h { font-family: 'Funnel Display', sans-serif; font-size: 11px; color: #083d44; font-weight: 700; margin-bottom: 6px; }
.urn-wizard-real .urn-wiz-pv-line, .urn-wizard-real .urn-wiz-pv-line.short { background: linear-gradient(90deg, #cbd5e1 0%, #e2e8f0 100%); height: 5px; border-radius: 99px; margin-bottom: 4px; }
.urn-wizard-real .urn-wiz-pv-line.short { width: 70%; }
.urn-wizard-real .urn-wiz-pv-table-cap { font-family: 'Inter', sans-serif; font-size: 8.5px; color: #64748b; margin: 8px 0 4px; }
.urn-wizard-real .urn-wizard-preview-table { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.urn-wizard-real .urn-wizard-preview-table > div { background: linear-gradient(90deg, #e0e7ff 0%, #c7d2fe 100%); height: 9px; border-radius: 3px; }

/* Project workspace — vertical pipeline */
.urn-project-real { padding: 14px !important; }
.urn-project-real .urn-project-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.urn-project-real .urn-project-meta { font-family: 'Inter', sans-serif; font-size: 9.5px; color: #64748b; margin-top: 2px; }
.urn-project-real .urn-project-progress-pill { background: linear-gradient(135deg, #25D366 0%, #047857 100%); color: #fff; padding: 4px 10px; border-radius: 99px; font-family: 'Funnel Display', sans-serif; font-size: 10px; font-weight: 800; box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3); }
.urn-project-real .urn-project-stats { display: grid !important; grid-template-columns: repeat(4, 1fr); gap: 6px !important; margin: 8px 0 12px !important; padding-bottom: 10px; border-bottom: 1px solid rgba(8, 61, 68, 0.08); }
.urn-project-real .urn-project-stats > div { background: #f8fafc; border-radius: 6px; padding: 6px 4px; text-align: center; }
.urn-project-real .urn-project-stats strong { display: block; font-family: 'Funnel Display', sans-serif; font-size: 16px; line-height: 1; color: #083d44; }
.urn-project-real .urn-project-stats span { font-family: 'Inter', sans-serif; font-size: 9px; color: #64748b; text-transform: uppercase; letter-spacing: 0.4px; }
.urn-project-real .urn-project-pipeline { display: flex; flex-direction: column; gap: 4px; }
.urn-project-real .urn-project-row { display: grid; grid-template-columns: 28px 1fr auto; gap: 8px; align-items: center; padding: 6px 8px; background: #f8fafc; border-radius: 6px; font-family: 'Inter', sans-serif; }
.urn-project-real .urn-project-row.urn-done { background: linear-gradient(90deg, rgba(37, 211, 102, 0.12) 0%, rgba(37, 211, 102, 0.04) 100%); }
.urn-project-real .urn-project-row.urn-progress { background: linear-gradient(90deg, rgba(0, 0, 238, 0.10) 0%, rgba(0, 0, 238, 0.03) 100%); }
.urn-project-real .urn-project-icon { width: 26px; height: 26px; border-radius: 6px; background: #fff; display: grid; place-items: center; color: #64748b; font-size: 11px; box-shadow: 0 1px 4px rgba(8, 61, 68, 0.08); }
.urn-project-real .urn-done .urn-project-icon { background: linear-gradient(135deg, #25D366 0%, #047857 100%); color: #fff; }
.urn-project-real .urn-progress .urn-project-icon { background: linear-gradient(135deg, #0000ee 0%, #1e3a8a 100%); color: #fff; }
.urn-project-real .urn-project-name { font-size: 11px; color: #083d44; font-weight: 600; }
.urn-project-real .urn-project-status { font-size: 9.5px; color: #64748b; font-weight: 600; }
.urn-project-real .urn-done .urn-project-status { color: #047857; }
.urn-project-real .urn-progress .urn-project-status { color: #0000ee; }

/* Drill — quiz card with feedback */
.urn-drill-real { padding: 14px !important; }
.urn-drill-real .urn-drill-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.urn-drill-real .urn-drill-streak { font-family: 'Inter', sans-serif; font-size: 10px; color: #f59e0b; font-weight: 700; }
.urn-drill-real .urn-drill-q-num { font-family: 'Inter', sans-serif; font-size: 9px; color: #64748b; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 4px; }
.urn-drill-real .urn-drill-question { font-family: 'Funnel Display', sans-serif; font-size: 12px; color: #083d44; font-weight: 700; line-height: 1.4; margin-bottom: 10px; }
.urn-drill-real .urn-drill-opt { display: flex !important; align-items: center; gap: 8px; padding: 7px 10px !important; border: 1px solid rgba(8, 61, 68, 0.12) !important; border-radius: 6px !important; background: #fcfcf8 !important; margin-bottom: 4px !important; font-family: 'Inter', sans-serif !important; font-size: 10px !important; color: #475569 !important; }
.urn-drill-real .urn-drill-letter { display: inline-grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; background: #fff; border: 1px solid rgba(8, 61, 68, 0.15); font-weight: 800; font-size: 9.5px; color: #475569; flex-shrink: 0; }
.urn-drill-real .urn-drill-correct { background: linear-gradient(90deg, rgba(37, 211, 102, 0.18) 0%, rgba(37, 211, 102, 0.06) 100%) !important; border-color: rgba(37, 211, 102, 0.5) !important; color: #047857 !important; font-weight: 600 !important; }
.urn-drill-real .urn-drill-correct .urn-drill-letter { background: linear-gradient(135deg, #25D366 0%, #047857 100%); color: #fff; border-color: transparent; }
.urn-drill-real .urn-drill-tick { margin-left: auto; color: #25D366; font-weight: 800; }
.urn-drill-real .urn-drill-feedback { background: rgba(37, 211, 102, 0.10); border-left: 3px solid #25D366; padding: 6px 10px; border-radius: 4px; font-family: 'Inter', sans-serif; font-size: 9.5px; color: #047857; line-height: 1.45; margin: 8px 0; }
.urn-drill-real .urn-drill-bar { background: rgba(8, 61, 68, 0.08); height: 4px; border-radius: 99px; margin-top: 8px; }
.urn-drill-real .urn-drill-bar-fill { width: 60%; height: 100%; background: linear-gradient(90deg, #0000ee 0%, #25D366 100%); border-radius: 99px; }
.urn-drill-real .urn-drill-bar-meta { font-family: 'Inter', sans-serif; font-size: 9px; color: #64748b; margin-top: 4px; text-align: right; }

@keyframes urnCaretBlink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }

/* Mobile sizing */
@media (max-width: 991px) {
  .urn-ai-hero-visual { max-width: 380px; margin: 32px auto 0; }
  .urn-ai-core { width: 160px; height: 160px; }
  .urn-ai-cluster-label { font-size: 10.5px; }
  .urn-ai-chip { font-size: 11px; padding: 6px 10px; }
}
@media (max-width: 575px) {
  .urn-ai-hero-visual { max-width: 320px; }
  .chip-2, .chip-3, .chip-5, .chip-6 { display: none; }
}
