/* =========================================
   PURRSONALITY — CSS
   Pink/Rose · Playful · Big Typography
   ========================================= */

:root {
    --pink-50: #FFF0F3;
    --pink-100: #FFE0E8;
    --pink-200: #FFC2D4;
    --pink-300: #FF9DB8;
    --pink-400: #FF6F96;
    --pink-500: #FF3D7F;
    --pink-600: #E91E63;
    --pink-700: #C2185B;
    --rose-50: #FFF1F2;
    --rose-100: #FFE4E6;
    --rose-200: #FECDD3;
    --rose-300: #FDA4AF;
    --rose-400: #FB7185;
    --rose-500: #F43F5E;
    --peach: #FFCBA4;
    --lavender: #E8D5F5;
    --mint: #B8F0D8;
    --cream: #FFF8F0;
    --warm-white: #FFFAF5;
    --dark: #2D1B2E;
    --dark-soft: #3D2B3E;
    --text: #4A2040;
    --text-light: #8A6080;
    --text-muted: #B89AAE;
    --card-bg: rgba(255, 255, 255, 0.75);
    --card-border: rgba(255, 111, 150, 0.15);
    --shadow-sm: 0 2px 8px rgba(233, 30, 99, 0.06);
    --shadow-md: 0 8px 30px rgba(233, 30, 99, 0.1);
    --shadow-lg: 0 20px 60px rgba(233, 30, 99, 0.12);
    --shadow-glow: 0 0 40px rgba(255, 61, 127, 0.15);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--text);
    overflow-x: hidden;
}

/* ---- NOISE TEXTURE OVERLAY ---- */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* ---- NAV ---- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    backdrop-filter: blur(20px);
    background: rgba(255, 248, 240, 0.8);
    border-bottom: 1px solid var(--card-border);
}

.nav-logo {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--pink-600);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--pink-500); }

.nav-cta {
    background: var(--pink-500) !important;
    color: white !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600 !important;
    transition: all 0.3s !important;
}

.nav-cta:hover {
    background: var(--pink-600) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ---- HERO ---- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: linear-gradient(160deg, var(--pink-50) 0%, var(--warm-white) 30%, var(--lavender) 60%, var(--pink-100) 100%);
    padding: 120px 40px 80px;
    overflow: hidden;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.shape-1 { width: 400px; height: 400px; background: var(--pink-200); top: -100px; right: -100px; animation-delay: 0s; }
.shape-2 { width: 300px; height: 300px; background: var(--lavender); bottom: -50px; left: -80px; animation-delay: 2s; }
.shape-3 { width: 200px; height: 200px; background: var(--peach); top: 30%; left: 10%; animation-delay: 4s; }
.shape-4 { width: 250px; height: 250px; background: var(--mint); bottom: 20%; right: 10%; animation-delay: 1s; }
.shape-5 { width: 150px; height: 150px; background: var(--pink-300); top: 50%; right: 30%; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.05); }
    66% { transform: translate(-15px, 15px) scale(0.95); }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 2;
    animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    line-height: 1;
    margin-bottom: 28px;
}

.hero-title-line {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.hero-title-big {
    display: block;
    font-size: clamp(4.5rem, 12vw, 10rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--pink-600) 0%, var(--rose-500) 40%, var(--pink-400) 70%, var(--peach) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.95;
    margin-bottom: 12px;
}

.hero-title-sub {
    display: block;
    font-family: 'Caveat', cursive;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--pink-400);
    font-weight: 600;
    transform: rotate(-2deg);
}

.hero-cat-img {
    margin: 20px auto 28px;
    position: relative;
    z-index: 2;
}

.hero-cat-img img {
    width: 260px;
    height: 260px;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.2), 0 0 60px rgba(255, 61, 127, 0.12);
    transform: rotate(3deg);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s;
    animation: catFloat 4s ease-in-out infinite;
}

.hero-cat-img img:hover {
    transform: rotate(-2deg) scale(1.05);
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.3), 0 0 80px rgba(255, 61, 127, 0.2);
}

@keyframes catFloat {
    0%, 100% { transform: rotate(3deg) translateY(0); }
    50% { transform: rotate(3deg) translateY(-10px); }
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--pink-500);
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 100px;
    font-size: 1.15rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 30px rgba(255, 61, 127, 0.3);
}

.hero-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 50px rgba(255, 61, 127, 0.4);
    background: var(--pink-600);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--pink-300), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}

.hero-cats .floating-cat {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.6;
    animation: floatCat 6s ease-in-out infinite;
    z-index: 1;
}

.cat-1 { top: 18%; left: 8%; animation-delay: 0s; font-size: 3rem; }
.cat-2 { top: 25%; right: 12%; animation-delay: 1.5s; font-size: 2rem; }
.cat-3 { bottom: 25%; left: 15%; animation-delay: 3s; }
.cat-4 { bottom: 30%; right: 8%; animation-delay: 0.8s; font-size: 3.5rem; }
.cat-5 { top: 45%; left: 3%; animation-delay: 2.2s; font-size: 2rem; }

@keyframes floatCat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -15px) rotate(5deg); }
    50% { transform: translate(-5px, -25px) rotate(-3deg); }
    75% { transform: translate(15px, -10px) rotate(4deg); }
}

/* ---- BREEDS SECTION ---- */
.breeds {
    padding: 120px 40px;
    background: var(--warm-white);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-tag {
    display: inline-block;
    font-family: 'Caveat', cursive;
    font-size: 1.4rem;
    color: var(--pink-400);
    margin-bottom: 12px;
    font-weight: 600;
}

.section-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 450px;
    margin: 0 auto;
    line-height: 1.6;
}

.breeds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.breed-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.breed-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pink-300), var(--pink-500), var(--lavender));
    opacity: 0;
    transition: opacity 0.4s;
}

.breed-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--pink-200);
}

.breed-card:hover::before { opacity: 1; }

.breed-emoji {
    font-size: 3.5rem;
    margin-bottom: 16px;
    display: block;
}

.breed-name {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
    color: var(--dark);
}

.breed-tagline {
    font-family: 'Caveat', cursive;
    font-size: 1.15rem;
    color: var(--pink-400);
    margin-bottom: 16px;
    font-weight: 600;
}

.breed-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.breed-traits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.breed-trait {
    background: var(--pink-50);
    color: var(--pink-600);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--pink-100);
}

.breed-mood {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--card-border);
}

.breed-mood-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.mood-bar {
    flex: 1;
    height: 6px;
    background: var(--pink-50);
    border-radius: 100px;
    overflow: hidden;
}

.mood-fill {
    height: 100%;
    border-radius: 100px;
    transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.mood-fill.energy { background: linear-gradient(90deg, var(--peach), var(--rose-400)); }
.mood-fill.affection { background: linear-gradient(90deg, var(--pink-300), var(--pink-600)); }
.mood-fill.sass { background: linear-gradient(90deg, var(--lavender), #9C27B0); }

/* ---- QUIZ SECTION ---- */
.quiz {
    padding: 120px 40px 160px;
    background: linear-gradient(180deg, var(--warm-white) 0%, var(--pink-50) 30%, var(--lavender) 100%);
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.quiz-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.shape-q1 { width: 500px; height: 500px; background: var(--pink-200); top: 10%; right: -150px; }
.shape-q2 { width: 400px; height: 400px; background: var(--peach); bottom: 5%; left: -100px; }

.quiz-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.quiz-progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 48px;
    backdrop-filter: blur(10px);
}

.quiz-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--pink-400), var(--pink-600));
    border-radius: 100px;
    width: 0%;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.quiz-question-wrapper {
    min-height: 420px;
}

.quiz-question {
    animation: questionIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes questionIn {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

.quiz-q-text {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 32px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.quiz-option {
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    font-size: 1.05rem;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 14px;
    line-height: 1.4;
}

.quiz-option:hover {
    transform: translateX(8px);
    border-color: var(--pink-300);
    background: white;
    box-shadow: var(--shadow-md);
}

.quiz-option:active {
    transform: translateX(4px) scale(0.98);
}

.quiz-option .opt-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--pink-50);
    color: var(--pink-500);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.3s;
}

.quiz-option:hover .opt-letter {
    background: var(--pink-500);
    color: white;
}

.quiz-option.selected {
    border-color: var(--pink-500);
    background: var(--pink-50);
    transform: translateX(8px);
}

.quiz-option.selected .opt-letter {
    background: var(--pink-500);
    color: white;
}

.quiz-counter {
    text-align: center;
    margin-top: 32px;
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* ---- RESULT SECTION ---- */
.result {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px;
    background: linear-gradient(160deg, var(--pink-50) 0%, var(--lavender) 40%, var(--pink-100) 100%);
    position: relative;
    overflow: hidden;
}

.result.hidden { display: none; }

.result-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
}

.shape-r1 { width: 600px; height: 600px; background: var(--pink-200); top: -150px; left: -200px; }
.shape-r2 { width: 400px; height: 400px; background: var(--peach); bottom: -100px; right: -100px; }
.shape-r3 { width: 300px; height: 300px; background: var(--mint); top: 40%; right: 20%; }

.result-content {
    z-index: 2;
    width: 100%;
    max-width: 900px;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.result-intro {
    text-align: center;
    margin-bottom: 48px;
}

.result-intro h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--dark);
    margin-bottom: 8px;
}

.result-intro p {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: var(--pink-400);
}

/* Dating Profile Card */
.profile-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border: 1px solid var(--card-border);
    margin-bottom: 40px;
}

.profile-header {
    background: linear-gradient(135deg, var(--pink-400) 0%, var(--pink-600) 50%, var(--rose-500) 100%);
    padding: 48px 40px;
    text-align: center;
    position: relative;
}

.profile-emoji {
    font-size: 5rem;
    display: block;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

.profile-name {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.profile-subtitle {
    font-family: 'Caveat', cursive;
    font-size: 1.4rem;
    color: rgba(255,255,255,0.85);
}

.profile-match-badge {
    position: absolute;
    top: 20px;
    right: 24px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 100px;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid rgba(255,255,255,0.3);
}

.profile-body {
    padding: 40px;
}

.profile-bio {
    font-size: 1.15rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 32px;
    text-align: center;
    font-style: italic;
}

.profile-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.profile-detail {
    padding: 20px;
    background: var(--pink-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--pink-100);
}

.profile-detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 6px;
}

.profile-detail-value {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.profile-traits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 32px;
}

.profile-trait {
    background: linear-gradient(135deg, var(--pink-100), var(--lavender));
    color: var(--pink-700);
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
}

.profile-ick {
    text-align: center;
    padding: 24px;
    background: var(--rose-50);
    border-radius: var(--radius-md);
    border: 1px dashed var(--rose-200);
}

.profile-ick-label {
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
    color: var(--rose-400);
    margin-bottom: 4px;
}

.profile-ick-value {
    font-weight: 600;
    color: var(--text);
}

/* Chaos Card */
.chaos-card {
    background: var(--dark);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--dark-soft);
}

.chaos-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,61,127,0.1), rgba(232,213,245,0.1));
    pointer-events: none;
}

.chaos-label {
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    color: var(--pink-300);
    margin-bottom: 16px;
    display: block;
}

.chaos-emoji {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 12px;
}

.chaos-name {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.chaos-desc {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto 24px;
}

.chaos-reason {
    display: inline-block;
    background: rgba(255,61,127,0.15);
    color: var(--pink-300);
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid rgba(255,61,127,0.2);
}

/* Retake button */
.retake-btn {
    display: block;
    margin: 48px auto 0;
    background: none;
    border: 2px solid var(--pink-300);
    color: var(--pink-600);
    padding: 16px 40px;
    border-radius: 100px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s;
}

.retake-btn:hover {
    background: var(--pink-500);
    color: white;
    border-color: var(--pink-500);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ---- FOOTER ---- */
.footer {
    background: var(--dark);
    padding: 48px 40px;
    text-align: center;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.footer-logo {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--pink-300);
}

.footer-text {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* ---- SCROLL ANIMATIONS ---- */
.breed-card,
.section-header {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.breed-card.visible,
.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger breed cards */
.breed-card:nth-child(1) { transition-delay: 0.05s; }
.breed-card:nth-child(2) { transition-delay: 0.1s; }
.breed-card:nth-child(3) { transition-delay: 0.15s; }
.breed-card:nth-child(4) { transition-delay: 0.2s; }
.breed-card:nth-child(5) { transition-delay: 0.25s; }
.breed-card:nth-child(6) { transition-delay: 0.3s; }
.breed-card:nth-child(7) { transition-delay: 0.35s; }
.breed-card:nth-child(8) { transition-delay: 0.4s; }
.breed-card:nth-child(9) { transition-delay: 0.45s; }
.breed-card:nth-child(10) { transition-delay: 0.5s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .nav { padding: 16px 20px; }
    .nav-links a:not(.nav-cta) { display: none; }
    .hero { padding: 100px 24px 60px; }
    .breeds { padding: 80px 20px; }
    .breeds-grid { grid-template-columns: 1fr; gap: 20px; }
    .quiz { padding: 80px 20px 120px; }
    .result { padding: 80px 20px; }
    .profile-details { grid-template-columns: 1fr; }
    .profile-body { padding: 28px 24px; }
    .profile-header { padding: 36px 24px; }
    .chaos-card { padding: 28px 24px; }
    .hero-cats .floating-cat { display: none; }
}
