The Canine Microbiome & Vitality Assessment
:root {
–royal-blue: #0A2342;
–vibrant-blue: #1E40AF;
–gold-light: #F5E3B5;
–gold-main: #D4AF37;
–gold-dark: #B8860B;
}
body {
font-family: ‘Montserrat’, sans-serif;
background: radial-gradient(circle at top right, #1e3a8a, #0A2342);
color: #ffffff;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
h1, h2, .serif { font-family: ‘Playfair Display’, serif; }
.glass-container {
background: rgba(255, 255, 255, 0.03);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
border-radius: 2rem;
overflow: hidden;
}
.gold-gradient-text {
background: linear-gradient(to right, #F5E3B5, #D4AF37, #F5E3B5);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: 800;
}
.option-card {
background: rgba(255, 255, 255, 0.05);
border: 2px solid rgba(255, 255, 255, 0.1);
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
font-size: 1.1rem;
}
.option-card:hover {
background: rgba(255, 255, 255, 0.15);
border-color: var(–gold-main);
transform: scale(1.02);
box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}
.btn-gold {
background: linear-gradient(135deg, var(–gold-light), var(–gold-main), var(–gold-dark));
color: var(–royal-blue);
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}
.btn-gold:hover {
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}
.progress-track {
background: rgba(255, 255, 255, 0.1);
height: 12px;
border-radius: 10px;
}
.progress-fill {
background: linear-gradient(90deg, #D4AF37, #F5E3B5);
box-shadow: 0 0 10px var(–gold-main);
transition: width 0.5s ease-in-out;
}
.animate-in { animation: fadeInUp 0.8s ease forwards; }
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
.step-label { color: var(–gold-light); letter-spacing: 2px; }
The Canine Microbiome Assessment
Diagnostic insights for Chronic Enteropathy and Gut Resilience.
Identify signs of Dysbiosis or Leaky Gut in minutes.
Methodology: Frontiers in Veterinary Science
Analysis 01 / 10
Diagnostic Progress
Analyzing Microbial Markers…
Analysis Complete.
We have identified your dog’s Gut Health Score. Where should we send the detailed clinical report?
const questions = [
{ q: “What is the primary stool consistency?”, options: [{t: “Consistently Firm”, p: 0}, {t: “Occasional ‘Pudding’ or Mucus”, p: 2}, {t: “Frequent Liquid or Urgent”, p: 5}, {t: “Chronic Constipation”, p: 3}] },
{ q: “Describe the abdominal profile.”, options: [{t: “Lean & Ideal Weight”, p: 0}, {t: “Frequent Bloating/Gas”, p: 3}, {t: “Swollen or Distended (Ascites)”, p: 5}, {t: “Rapid Weight Loss”, p: 5}] },
{ q: “Are digestive gurgling sounds audible?”, options: [{t: “Rarely / Quiet”, p: 0}, {t: “Occasional Gurgling”, p: 2}, {t: “Constant Loud Sounds”, p: 4}] },
{ q: “Evaluate emotional stability.”, options: [{t: “Calm & Stable”, p: 0}, {t: “Mild Anxiety”, p: 2}, {t: “Restless, Pica, or Agitation”, p: 4}] },
{ q: “Does your dog show sleep discomfort?”, options: [{t: “Sleeps Soundly”, p: 0}, {t: “Frequent Readjusting”, p: 2}, {t: “Pacing or Play-Bowing in pain”, p: 4}] },
{ q: “Current dietary foundation?”, options: [{t: “Raw or Fresh Food”, p: 0}, {t: “High-Quality Kibble”, p: 1}, {t: “Mixed Foundation”, p: 2}, {t: “Prescription / Hydrolyzed”, p: 3}] },
{ q: “History of antibiotic intervention?”, options: [{t: “None in 6+ Months”, p: 0}, {t: “One Course in Last Year”, p: 2}, {t: “Chronic / Multiple Courses”, p: 5}] },
{ q: “Appetite resilience & pickiness?”, options: [{t: “Enthusiastic Eater”, p: 0}, {t: “Intermittent Pickiness”, p: 2}, {t: “Highly Sensitive / Reactive”, p: 4}] },
{ q: “Breed Genetic Predisposition?”, options: [{t: “Low-Risk / Mixed Breed”, p: 0}, {t: “Yorkie, GSD, or Wheaten”, p: 4}, {t: “Boxer or French Bulldog”, p: 4}] },
{ q: “Condition of skin and coat?”, options: [{t: “Shiny & Non-Itchy”, p: 0}, {t: “Occasional Itching”, p: 2}, {t: “Chronic Infections / Yeasty”, p: 4}] }
];
let step = 0;
let score = 0;
function startQuiz() {
document.getElementById(‘welcome-screen’).classList.add(‘hidden’);
document.getElementById(‘question-screen’).classList.remove(‘hidden’);
renderQuestion();
}
function renderQuestion() {
const q = questions[step];
document.getElementById(‘step-label’).innerText = `Analysis ${String(step + 1).padStart(2, ‘0’)} / 10`;
document.getElementById(‘progress-fill’).style.width = ((step + 1) / 10 * 100) + ‘%’;
document.getElementById(‘question-text’).innerText = q.q;
const grid = document.getElementById(‘options-grid’);
grid.innerHTML = ”;
q.options.forEach(opt => {
const btn = document.createElement(‘button’);
btn.className = ‘option-card w-full p-6 rounded-2xl text-left font-semibold hover:text-white’;
btn.innerText = opt.t;
btn.onclick = () => next(opt.p);
grid.appendChild(btn);
});
}
function next(pts) {
score += pts;
if (step {
document.getElementById(‘loading-screen’).classList.add(‘hidden’);
document.getElementById(‘lead-gen-screen’).classList.remove(‘hidden’);
}, 2500);
}
}
function showResults(e) {
e.preventDefault();
document.getElementById(‘lead-gen-screen’).classList.add(‘hidden’);
document.getElementById(‘results-screen’).classList.remove(‘hidden’);
const status = document.getElementById(‘result-status’);
const desc = document.getElementById(‘result-desc’);
const list = document.getElementById(‘recommendations-list’);
list.innerHTML = ”;
let content = {};
if (score <= 10) {
content = {
title: "Normobiosis",
desc: "Balanced and diverse microbial ecosystem. Preservation is your current focus.",
recs: ["Daily Synbiotic (Pro+Pre+Postbiotic) sachet", "Preserve Gut-Lining Tight Junctions", "Maintain nature-like diet foundation"]
};
} else if (score {
const item = document.createElement(‘div’);
item.className = ‘flex items-center p-4 bg-white/5 rounded-xl border border-white/5’;
item.innerHTML = `
${r}
`;
list.appendChild(item);
});
}