﻿/* ─── Global scroll-reveal system ─── */
@keyframes fpa-reveal-up { from { opacity: 0; transform: translateY(38px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fpa-reveal-drop { from { opacity: 0; transform: translateY(-28px) rotate(var(--pcard-tilt,0deg)); } to { opacity: 1; transform: translateY(0) rotate(var(--pcard-tilt,0deg)); } }
[data-fpa-reveal] { opacity: 0; }
[data-fpa-reveal].fpa-revealed { animation: fpa-reveal-up 0.55s cubic-bezier(0.22,1,0.36,1) both; }
/* Polaroid items use the drop-in variant */
.polaroid-item[data-fpa-reveal].fpa-revealed .polaroid-card { animation: fpa-reveal-drop 0.55s cubic-bezier(0.22,1,0.36,1) both; }
.polaroid-item[data-fpa-reveal].fpa-revealed { animation: none; opacity: 1; }
@media (prefers-reduced-motion: reduce) { [data-fpa-reveal] { opacity: 1; } [data-fpa-reveal].fpa-revealed { animation: none; } .polaroid-item[data-fpa-reveal].fpa-revealed .polaroid-card { animation: none; } }

/* Consolidated CSS for Home Page Snippets */

/* Font fallback @font-face declarations moved to critical.css
   so they are available on first paint (inlined in <head>). */

/* ==========================
   Hero Section (hero.html)
   ========================== */
.hero-section {
	position: relative;
	background: linear-gradient(135deg, #E8F4FD 0%, #F0F8FF 100%);
	padding: 80px 0;
	min-height: 70vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.1;
    pointer-events: none;
}

.hero-particles {
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: 
		radial-gradient(circle at 20% 20%, #FF8A65 2px, transparent 2px),
		radial-gradient(circle at 80% 80%, #B39DDB 2px, transparent 2px),
		radial-gradient(circle at 40% 60%, #81C784 1px, transparent 1px);
	background-size: 100px 100px, 150px 150px, 200px 200px;
	animation: hero-float 20s ease-in-out infinite;
	will-change: transform;
}

.hero-container {
	width: 100%;
    max-width: min(100%, 1200px);
	margin: 0 auto;
    padding: 0 clamp(14px, 3vw, 20px);
    position: relative;
    z-index: 2;
}

.hero-content {
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
	align-items: center;
    gap: clamp(24px, 4vw, 48px);
	position: relative;
	z-index: 2;
    max-width: min(100%, 1200px);
	margin: 0 auto;
    padding: 0 clamp(14px, 3vw, 20px);
}

.hero-text { text-align: left; }
.hero-title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; color: #2C3E50; margin-bottom: 24px; line-height: 1.1; font-family: 'Poppins', 'Poppins Fallback', Arial, sans-serif; }
.hero-subtitle { font-size: clamp(1rem, 2.4vw, 1.2rem); color: #5A6C7D; margin-bottom: 32px; line-height: 1.5; width: min(100%, 700px); }
.hero-stats { display: flex; flex-wrap: wrap; gap: clamp(18px, 3vw, 32px); margin-bottom: 40px; min-height: 110px; }
.hero-stat-item { text-align: center; flex: 1; }
.hero-stat-number { display: block; font-size: 2rem; font-weight: 700; color: #4A90E2; font-family: 'Poppins', 'Poppins Fallback', Arial, sans-serif; white-space: nowrap; min-height: 38px; }
.hero-stat-label { display: block; font-size: 0.9rem; color: #5A6C7D; margin-top: 8px; line-height: 1.4; min-height: 50px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-cta-button { display: inline-flex; align-items: center; gap: 12px; padding: 16px 24px; border: none; border-radius: 50px; font-family: inherit; font-size: 1rem; font-weight: 600; text-decoration: none; cursor: pointer; transition: opacity 0.3s ease, transform 0.3s ease; position: relative; overflow: hidden; }
.hero-cta-button--primary { background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%); color: white; }
.hero-cta-button--secondary { background: linear-gradient(135deg, #FF8A65 0%, #FF7043 100%); color: white; }
.hero-cta-button:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(74, 144, 226, 0.3); }
.hero-cta-button--primary:hover { color: #FF8A65; }
.hero-visual { display: flex; flex-direction: column; align-items: center; }
.hero-pet-illustration { position: relative; width: clamp(240px, 32vw, 400px); height: clamp(240px, 32vw, 400px); display: flex; justify-content: center; align-items: center; flex-shrink: 0; }
.hero-pet-image { box-shadow: 0 8px 30px rgba(74, 144, 226, 0.15); transition: opacity 0.4s ease, transform 0.4s ease; }
.hero-caption-box { background: rgba(255,255,255,0.85); backdrop-filter: blur(6px); border: 1px solid #e0e0e0; border-radius: 12px; padding: 10px 18px; margin-top: 12px; width: min(100%, 340px); }
.hero-caption { margin: 0; font-size: 0.9rem; font-style: italic; color: #4f657f; text-align: center; line-height: 1.4; }
.hero-comfort-indicators { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.hero-indicator { position: absolute; border: 2px solid #4A90E2; border-radius: 50%; opacity: 0.6; will-change: transform, opacity; }
.hero-pulse-slow { width: 77.5%; height: 77.5%; top: 11.25%; left: 11.25%; animation: hero-pulse 3s ease-in-out infinite; }
.hero-pulse-medium { width: 88.75%; height: 88.75%; top: 5.625%; left: 5.625%; animation: hero-pulse 3s ease-in-out infinite 1s; }
.hero-pulse-fast { width: 100%; height: 100%; top: 0; left: 0; animation: hero-pulse 3s ease-in-out infinite 2s; }

@media (max-width: 992px) {
	.hero-content { grid-template-columns: 1fr; text-align: center; }
	.hero-text { text-align: center; }
	.hero-stats { justify-content: center; }
	.hero-cta { justify-content: center; }
	.hero-subtitle { margin-left: auto; margin-right: auto; }
	.hero-caption-box { margin-left: auto; margin-right: auto; }
}

/* ── Firework glow & sparkle on hero title ─────────────────────────────────── */
.hero-title {
    position: relative;
}

/* Warm glow that pulses on the heading */
.hero-title::before {
    content: '';
    position: absolute;
    inset: -18px -32px;
    border-radius: 20px;
    background: radial-gradient(ellipse at center, rgba(255,138,101,0.12) 0%, transparent 70%);
    animation: fpa-glow 4s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
    will-change: transform, opacity;
}

/* Sparkle burst — composited (transform + opacity instead of box-shadow) */
.hero-title::after {
    content: '';
    position: absolute;
    inset: -20px -32px;
    border-radius: 20px;
    background-image:
        radial-gradient(circle 2px at 10% 15%, rgba(255,138,101,0.85) 50%, transparent 51%),
        radial-gradient(circle 2px at 88% 18%, rgba(74,144,226,0.85) 50%, transparent 51%),
        radial-gradient(circle 2px at  5% 60%, rgba(179,157,219,0.85) 50%, transparent 51%),
        radial-gradient(circle 2px at 92% 68%, rgba(129,199,132,0.85) 50%, transparent 51%),
        radial-gradient(circle 2px at 50%  3%, rgba(255,183,77,0.85) 50%, transparent 51%),
        radial-gradient(circle 2px at 28% 92%, rgba(77,208,225,0.85) 50%, transparent 51%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    animation: fpa-sparkle 6s ease-out 1s infinite;
    pointer-events: none;
    z-index: 1;
    will-change: transform, opacity;
    contain: layout style;
}

@keyframes fpa-glow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.04); }
}

@keyframes fpa-sparkle {
    0%        { opacity: 0; transform: scale(0.6); }
    8%        { opacity: 1; transform: scale(1.2); }
    22%       { opacity: 0; transform: scale(1.7); }
    23%, 100% { opacity: 0; transform: scale(1); }
}

/* Accessibility: disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero-title::before,
    .hero-title::after {
        animation: none;
        display: none;
    }
}

@keyframes hero-float { 0%, 100% { transform: translateY(0) rotate(0deg); } 33% { transform: translateY(-10px) rotate(1deg); } 66% { transform: translateY(5px) rotate(-1deg); } }
@keyframes hero-pulse { 0%, 100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.05); opacity: 0.3; } }

@media (max-width: 992px) { .hero-title { font-size: 2.5rem; } .hero-stats { justify-content: center; } }
@media (max-width: 768px) { .hero-section { padding: 60px 0; min-height: 60vh; } .hero-title { font-size: clamp(1.9rem, 7vw, 2.2rem); } .hero-subtitle { font-size: 1.05rem; } .hero-stats { flex-direction: column; gap: 20px; min-height: 240px; } .hero-cta { flex-direction: column; align-items: center; } .hero-cta-button { width: 100%; max-width: 300px; justify-content: center; } .hero-pet-image { width: min(100%, 200px); height: auto; } }
@media (max-width: 480px) { .hero-content { padding: 0 15px; } .hero-title { font-size: 1.8rem; } .hero-subtitle { font-size: 1rem; } .hero-stat-number { font-size: 1.5rem; min-height: 30px; } .hero-stat-label { font-size: 0.8rem; min-height: 68px; } .hero-cta-button { padding: 14px 20px; font-size: 0.95rem; } .hero-stats { min-height: 220px; } }

/* ==========================
   Hero — Dual-Lane Layout
   ========================== */
.hero-unify { text-align: center; margin-bottom: 48px; }
.hero-unify .hero-title { font-size: clamp(2rem, 4vw, 2.8rem); }
.hero-unify .hero-subtitle { margin: 0 auto; width: min(100%, 680px); }

/* Anonymity pill — sits directly under the h1 */
.hero-anon-pill { display: inline-flex; align-items: center; gap: 7px; font-size: 0.82rem; font-weight: 600; color: #5A6C7D; background: rgba(74,144,226,0.07); border: 1px solid rgba(74,144,226,0.18); border-radius: 50px; padding: 6px 16px; margin-bottom: 14px; letter-spacing: 0.2px; }
.hero-anon-pill i { color: #4A90E2; font-size: 0.76rem; }

/* ─── Real Pets, Real Stories — polaroid clothesline ─── */
.pet-story-section { padding: 10px 20px 40px; background: transparent; }
.pet-story-inner { width: min(100%, 1000px); margin: 0 auto; text-align: center; }
.pet-story-title { display: block; margin: 0 0 8px; font-size: clamp(1.65rem, 2.6vw, 2.2rem); line-height: 1.1; letter-spacing: -0.02em; color: #223548; font-family: 'Poppins', 'Poppins Fallback', Arial, sans-serif; font-weight: 700; }
.pet-story-subtitle { margin: 0 auto; max-width: 560px; font-size: 0.95rem; color: #5A6C7D; }

/* Clothesline — rope via ::before, polaroids hang below */
.pet-story-line { position: relative; margin-top: 24px; padding-top: 58px; }
.pet-story-line::before { content: ''; position: absolute; top: 0; left: 4%; right: 4%; height: 4px; background: linear-gradient(to right, transparent 0%, #8B6914 3%, #C4962A 20%, #8B6914 40%, #C4962A 60%, #8B6914 80%, #C4962A 97%, transparent 100%); border-radius: 2px; box-shadow: 0 2px 6px rgba(139,105,20,0.35); }

/* Row of polaroids */
.pet-story-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 28px; align-items: flex-start; }

/* Desktop/tablet hanging pattern: spread left/center/right with gentle offsets */
@media (min-width: 769px) {
    .pet-story-row {
        justify-content: space-between;
        gap: 18px;
        max-width: 920px;
        margin: 0 auto;
    }

    .polaroid-item {
        --hang-shift-x: 0px;
        --hang-shift-y: 0px;
        transform: translate(var(--hang-shift-x), var(--hang-shift-y));
    }

    .polaroid-item--1 {
        --hang-shift-x: -12px;
        --hang-shift-y: 10px;
    }

    .polaroid-item--2 {
        --hang-shift-x: -4px;
        --hang-shift-y: -8px;
    }

    .polaroid-item--3 {
        --hang-shift-x: 0px;
        --hang-shift-y: 6px;
    }

    .polaroid-item--4 {
        --hang-shift-x: 6px;
        --hang-shift-y: -10px;
    }

    .polaroid-item--5 {
        --hang-shift-x: 14px;
        --hang-shift-y: 8px;
    }
}

/* Individual hanging item */
.polaroid-item { position: relative; display: flex; flex-direction: column; align-items: center; }

/* Bug peg — sits above the card, pinned to rope */
.polaroid-peg { position: absolute; top: -54px; left: 50%; transform: translateX(-50%); z-index: 2; filter: drop-shadow(0 2px 3px rgba(0,0,0,0.25)); }

/* Polaroid card */
.polaroid-card { margin-top: -8px; background: #fff; padding: 8px 8px 34px; border-radius: 1px; box-shadow: 0 6px 22px rgba(0,0,0,0.18), 0 1px 4px rgba(0,0,0,0.1); width: 166px; transform: rotate(var(--pcard-tilt, 0deg)); transition: transform 0.32s ease, box-shadow 0.32s ease; cursor: default; }
.polaroid-card:hover { transform: rotate(var(--pcard-tilt, 0deg)) translateY(-8px) scale(1.05); box-shadow: 0 14px 32px rgba(0,0,0,0.26); }

/* Photo */
.polaroid-img-wrap { width: 150px; height: 150px; overflow: hidden; background: #edf2f7; }
.polaroid-img-wrap img { width: 150px; height: 150px; object-fit: cover; display: block; }

/* Caption in Polaroid white strip */
.polaroid-caption { margin: 10px 0 0; font-size: 0.71rem; color: #4A5568; font-style: italic; line-height: 1.35; text-align: center; padding: 0 6px; min-height: 2.7em; font-family: 'Georgia', serif; }

.hero-dual-lanes { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: stretch; width: min(100%, 900px); margin: 0 auto 40px; }
.hero-lane { background: white; border-radius: 24px; padding: 36px 32px; display: flex; flex-direction: column; align-items: center; text-align: center; box-shadow: 0 8px 30px rgba(0,0,0,0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.hero-lane:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.hero-lane--pet { border-top: 4px solid #4A90E2; }
.hero-lane--organiser { border-top: 4px solid #FF8A65; }
.hero-lane-icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 1.6rem; }
.hero-lane--pet .hero-lane-icon { background: linear-gradient(135deg, #e8f4fd, #cce4f7); color: #4A90E2; }
.hero-lane--organiser .hero-lane-icon { background: linear-gradient(135deg, #fff0ea, #ffd5c2); color: #FF8A65; }
.hero-lane-title { font-size: 1.5rem; font-weight: 700; color: #2C3E50; margin-bottom: 12px; font-family: 'Poppins', 'Poppins Fallback', Arial, sans-serif; }
.hero-lane-desc { font-size: 0.95rem; color: #5A6C7D; line-height: 1.6; margin-bottom: 28px; flex: 1; }
.hero-lane-cta { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; border-radius: 50px; font-size: 0.95rem; font-weight: 700; text-decoration: none; transition: transform 0.2s ease, box-shadow 0.2s ease; margin-bottom: 12px; width: 100%; justify-content: center; }
.hero-lane-cta--pet { background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%); color: white; }
.hero-lane-cta--pet:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,144,226,0.4); color: white; }
.hero-lane-cta--organiser { background: linear-gradient(135deg, #FF8A65 0%, #FF7043 100%); color: white; }
.hero-lane-cta--organiser:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,138,101,0.4); color: white; }
.hero-lane-reassurance { font-size: 0.78rem; color: #8fa4b5; letter-spacing: 0.3px; }

.hero-lane-divider { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0 20px; gap: 10px; }
.hero-lane-divider::before,
.hero-lane-divider::after { content: ''; flex: 1; width: 1px; background: linear-gradient(to bottom, transparent, rgba(74,144,226,0.2), transparent); }
.hero-lane-divider span { font-size: 0.8rem; font-weight: 600; color: #a0b4c6; text-transform: uppercase; letter-spacing: 1px; background: white; padding: 8px 12px; border-radius: 20px; border: 1px solid rgba(74,144,226,0.15); white-space: nowrap; }

.hero-trust-bar { display: flex; justify-content: center; gap: 48px; padding: 32px 0 0; border-top: 1px solid rgba(74,144,226,0.12); width: min(100%, 900px); margin: 0 auto; }
.hero-trust-bar .hero-stat-item { text-align: center; flex: 1; max-width: 320px; }
.hero-trust-bar .hero-stat-number { font-size: 1.8rem; }

@media (max-width: 860px) {
    .hero-dual-lanes { grid-template-columns: 1fr; max-width: 440px; gap: 0; }
    .hero-lane-divider { flex-direction: row; padding: 12px 0; }
    .hero-lane-divider::before, .hero-lane-divider::after { height: 1px; width: auto; flex: 1; background: linear-gradient(to right, transparent, rgba(74,144,226,0.2), transparent); }
    .hero-trust-bar { flex-direction: column; align-items: center; gap: 24px; }
    .hero-trust-bar .hero-stat-item { max-width: 100%; }
}
@media (max-width: 480px) {
    .hero-unify .hero-title { font-size: 1.9rem; }
    .hero-lane { padding: 28px 20px; }
    .hero-lane-title { font-size: 1.3rem; }
    .pet-story-section { padding: 8px 0 30px; }
    .pet-story-title { font-size: 1.5rem; }
    .pet-story-line { padding-top: 52px; }
    .pet-story-line::before { left: 0; right: 0; }
    .pet-story-row { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding: 0 20px 12px; gap: 16px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .pet-story-row::-webkit-scrollbar { display: none; }
    .polaroid-item { transform: none; }
    .polaroid-card { width: 140px; }
    .polaroid-img-wrap, .polaroid-img-wrap img { width: 124px; height: 124px; }
}

/* ==========================
   Split Benefits Section
   ========================== */
.fpa-split-section { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); padding: 80px 0; }
.fpa-split-container { width: min(100%, 1100px); margin: 0 auto; padding: 0 clamp(14px, 3vw, 20px); }
.fpa-split-lanes { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: clamp(18px, 2.5vw, 28px); align-items: start; }
.fpa-split-lane { background: white; border-radius: 24px; padding: 40px 36px; box-shadow: 0 8px 30px rgba(0,0,0,0.07); transition: transform 0.28s ease, box-shadow 0.28s ease; min-width: 0; }
.fpa-split-lane:hover { transform: translateY(-5px); box-shadow: 0 16px 38px rgba(0,0,0,0.12); }
.fpa-split-lane--pet { border-top: 4px solid #4A90E2; }
.fpa-split-lane--organiser { border-top: 4px solid #FF8A65; }
.fpa-split-lane-header { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.fpa-split-lane-icon { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.fpa-split-lane--pet .fpa-split-lane-icon { background: linear-gradient(135deg, #e8f4fd, #cce4f7); color: #4A90E2; }
.fpa-split-lane--organiser .fpa-split-lane-icon { background: linear-gradient(135deg, #fff0ea, #ffd5c2); color: #FF8A65; }
.fpa-split-lane-header h3 { font-size: 1.35rem; font-weight: 700; color: #2C3E50; margin: 0; font-family: 'Poppins', 'Poppins Fallback', Arial, sans-serif; }
.fpa-split-benefits { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; }
.fpa-split-benefits li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: #4a5568; line-height: 1.5; }
.fpa-split-lane--pet .fpa-split-benefits li i { color: #4A90E2; margin-top: 3px; flex-shrink: 0; }
.fpa-split-lane--organiser .fpa-split-benefits li i { color: #FF8A65; margin-top: 3px; flex-shrink: 0; }
.fpa-split-stat { background: rgba(74,144,226,0.06); border-radius: 16px; padding: 16px 20px; margin-bottom: 28px; text-align: center; }
.fpa-split-stat-number { display: block; font-size: 2rem; font-weight: 700; color: #4A90E2; font-family: 'Poppins', 'Poppins Fallback', Arial, sans-serif; }
.fpa-split-stat-label { display: block; font-size: 0.85rem; color: #5A6C7D; margin-top: 4px; line-height: 1.4; }
.fpa-split-occasions { margin-bottom: 28px; }
.fpa-split-occasions-label { font-size: 0.88rem; color: #5A6C7D; line-height: 1.8; margin: 0; }
.fpa-split-occasions-label i { color: #FF8A65; margin-right: 4px; }
.fpa-split-cta { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 28px; border-radius: 50px; font-size: 0.95rem; font-weight: 700; text-decoration: none; transition: transform 0.2s ease, box-shadow 0.2s ease; width: 100%; }
.fpa-split-cta--pet { background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%); color: white; }
.fpa-split-cta--pet:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,144,226,0.4); color: white; }
.fpa-split-cta--organiser { background: linear-gradient(135deg, #FF8A65 0%, #FF7043 100%); color: white; }
.fpa-split-cta--organiser:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,138,101,0.4); color: white; }
.fpa-split-bridge { display: none; }
.fpa-split-bridge-line { flex: 1; width: 1px; background: linear-gradient(to bottom, transparent, rgba(74,144,226,0.25), transparent); }
.fpa-split-bridge-icon { width: 48px; height: 48px; background: white; border-radius: 50%; border: 2px solid rgba(74,144,226,0.2); display: flex; align-items: center; justify-content: center; color: #4A90E2; font-size: 1.1rem; box-shadow: 0 4px 16px rgba(74,144,226,0.1); flex-shrink: 0; }
.fpa-split-message { text-align: center; margin-top: 48px; padding: clamp(22px, 3vw, 28px) clamp(18px, 4vw, 40px); background: white; border-radius: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); width: min(100%, 700px); margin-left: auto; margin-right: auto; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.fpa-split-message:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
.fpa-split-message p { font-size: 1.1rem; color: #5A6C7D; line-height: 1.7; margin: 0; }
.fpa-split-message strong { color: #2C3E50; }

@media (max-width: 900px) {
    .fpa-split-lanes { gap: 24px; }
}
@media (max-width: 768px) {
    .fpa-split-section { padding: 60px 0; }
    .fpa-split-lane { padding: 28px 24px; }
    .fpa-split-message { padding: 24px 20px; margin-top: 32px; }
    .fpa-split-message p { font-size: 1rem; }
}

/* ==========================
   Source Citation Tooltips
   ========================== */
/* Visible source label â€” shows on hover via title attribute */
.fpa-source-cite { font-style: normal; cursor: help; position: relative; }
.fpa-source-visible { font-size: 0.8em; color: #8899AA; font-weight: 400; }
/* Hidden backlink â€” stays in DOM for SEO crawlers */
.fpa-source-backlink { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; padding: 0 !important; margin: -1px !important; pointer-events: none !important; }
/* Improve visibility in dark containers */
.dyk-community-impact .fpa-source-visible { color: rgba(255, 255, 255, 0.55); }

/* Accessibility, print */
.hero-cta-button:focus-visible { outline: 2px solid #4A90E2; outline-offset: 2px; }
@media print { .hero-section { background: white; color: black; } .hero-particles, .hero-comfort-indicators { display: none; } .hero-cta-button { display: none; } }


/* ==========================
   How It Works (3steps.html)
   ========================== */
.steps-section { padding: 80px 0; background: linear-gradient(135deg, #F8F9FA 0%, #E8F4FD 100%); position: relative; }
.steps-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workpattern" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="25" cy="25" r="1" fill="rgba(74,144,226,0.08)"/><circle cx="75" cy="75" r="1.5" fill="rgba(255,138,101,0.06)"/><circle cx="50" cy="10" r="0.8" fill="rgba(179,157,219,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23workpattern)"/></svg>') repeat; opacity: 0.4; pointer-events: none; }
.steps-container { width: min(100%, 1200px); margin: 0 auto; padding: 0 clamp(14px, 3vw, 20px); position: relative; z-index: 2; }
.steps-header { text-align: center; margin-bottom: 60px; }
.steps-header h2 { font-size: 2rem; color: #4A90E2; margin-bottom: 16px; font-family: 'Poppins', sans-serif; font-weight: 600; text-shadow: 0 2px 4px rgba(74, 144, 226, 0.1); }
.steps-header p { font-size: 1.1rem; color: #357ABD; max-width: 800px; margin: 0 auto; line-height: 1.7; font-weight: 400; }
.steps-header .steps-header-cta { margin-top: 16px; font-size: 1.05rem; font-weight: 500; }
.steps-inline-link { color: #FF7043; text-decoration: underline; text-underline-offset: 3px; font-weight: 700; transition: color 0.2s ease; }
.steps-inline-link:hover { color: #E64A19; }
.steps-step-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; padding: 10px 22px; background: linear-gradient(135deg, #FF8A65 0%, #FF7043 100%); color: #fff; border-radius: 50px; font-size: 0.95rem; font-weight: 600; text-decoration: none; transition: opacity 0.3s ease, transform 0.3s ease; }
.steps-step-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 112, 67, 0.35); color: #fff; }
.steps-process-flow { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 60px; }
.steps-process-step { flex: 1; text-align: center; padding: 40px 28px; background: linear-gradient(135deg, #FFFFFF 0%, #F0F8FF 100%); border-radius: 20px; transition: opacity 0.4s ease, transform 0.4s ease; position: relative; cursor: pointer; border: 2px solid rgba(74, 144, 226, 0.1); box-shadow: 0 4px 20px rgba(74, 144, 226, 0.08); }
.steps-process-step:hover { transform: translateY(-12px); box-shadow: 0 20px 50px rgba(74, 144, 226, 0.2); background: linear-gradient(135deg, #FFFFFF 0%, #E8F4FD 100%); border-color: rgba(74, 144, 226, 0.2); }
.steps-icon-wrapper { position: relative; display: inline-block; margin-bottom: 28px; }
.steps-icon-background { width: 90px; height: 90px; background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; box-shadow: 0 8px 30px rgba(74, 144, 226, 0.25); transition: opacity 0.3s ease, transform 0.3s ease; position: relative; }
.steps-icon-background::before { content: ''; position: absolute; top: -3px; left: -3px; right: -3px; bottom: -3px; background: linear-gradient(135deg, rgba(74, 144, 226, 0.3), rgba(53, 122, 189, 0.3)); border-radius: 50%; z-index: -1; opacity: 0; transition: opacity 0.3s ease; }
.steps-process-step:hover .steps-icon-background { transform: scale(1.15) rotate(5deg); box-shadow: 0 15px 40px rgba(74, 144, 226, 0.35); }
.steps-process-step:hover .steps-icon-background::before { opacity: 1; }
.steps-icon-background i { font-size: 2rem; color: #FFFFFF; z-index: 2; }
.steps-number { position: absolute; top: -10px; right: -10px; width: 36px; height: 36px; background: linear-gradient(135deg, #FF8A65 0%, #FF7043 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #FFFFFF; font-size: 1rem; box-shadow: 0 4px 15px rgba(255, 138, 101, 0.4); border: 3px solid #FFFFFF; }
.steps-content h3 { color: #4A90E2; margin-bottom: 16px; font-size: 1.4rem; font-weight: 600; font-family: 'Poppins', sans-serif; }
.steps-content p { color: #357ABD; line-height: 1.7; margin-bottom: 24px; font-size: 1rem; }
.steps-features { display: flex; flex-direction: column; gap: 12px; }
.steps-feature-item { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 0.95rem; color: #4A90E2; background: rgba(74, 144, 226, 0.05); padding: 8px 16px; border-radius: 20px; font-weight: 500; }
.steps-feature-item i { color: #FF8A65; width: 18px; text-align: center; font-size: 1rem; }
.steps-process-arrow { display: flex; align-items: center; color: #4A90E2; margin: 0 16px; align-self: center; }
.steps-arrow-line { width: 70px; height: 3px; background: linear-gradient(90deg, #4A90E2, #FF8A65); position: relative; border-radius: 2px; }
.steps-arrow-head { width: 0; height: 0; border-left: 10px solid #FF8A65; border-top: 8px solid transparent; border-bottom: 8px solid transparent; margin-left: -2px; }
.steps-community-message { background: linear-gradient(135deg, #FFFFFF 0%, #E8F4FD 100%); border-radius: 25px; padding: 50px 40px; text-align: center; border: 2px solid rgba(74, 144, 226, 0.15); box-shadow: 0 8px 30px rgba(74, 144, 226, 0.1); position: relative; overflow: hidden; }
.steps-community-message::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(74, 144, 226, 0.03) 0%, transparent 70%); animation: steps-rotate 20s linear infinite; pointer-events: none; }
.steps-message-content { display: flex; align-items: center; justify-content: center; gap: 24px; margin-bottom: 35px; position: relative; z-index: 2; }
.steps-message-icon { width: 70px; height: 70px; background: linear-gradient(135deg, #4A90E2, #357ABD); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3); border: 4px solid rgba(255, 255, 255, 0.8); }
.steps-message-icon i { font-size: 1.6rem; color: white; }
.steps-message-text { text-align: left; max-width: 500px; }
.steps-message-text h4 { font-size: 1.6rem; color: #4A90E2; margin-bottom: 12px; font-family: 'Poppins', sans-serif; font-weight: 600; }
.steps-message-text p { color: #357ABD; line-height: 1.7; margin: 0; font-size: 1.05rem; }
.steps-community-stats { display: flex; justify-content: center; gap: 50px; position: relative; z-index: 2; }
.steps-community-stat { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 20px; background: rgba(255, 255, 255, 0.6); border-radius: 15px; transition: opacity 0.3s ease, transform 0.3s ease; border: 1px solid rgba(74, 144, 226, 0.1); }
.steps-community-stat:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.9); box-shadow: 0 8px 25px rgba(74, 144, 226, 0.15); }
.steps-stat-icon { font-size: 2.2rem; display: block; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); }
.steps-stat-text { font-size: 1rem; color: #4A90E2; font-weight: 600; font-family: 'Poppins', sans-serif; }

@keyframes steps-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes steps-fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes steps-bounce { 0%, 20%, 60%, 100% { transform: translateY(0); } 40% { transform: translateY(-10px); } 80% { transform: translateY(-5px); } }
@keyframes steps-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
/* Animation applied via JS IntersectionObserver â€” not CSS (avoids non-composited conflict) */
.steps-icon-wrapper:hover { animation: steps-bounce 0.6s ease; }
.steps-community-stat:hover .steps-stat-icon { animation: steps-pulse 0.6s ease; }

@media (max-width: 992px) { .steps-process-flow { flex-direction: column; gap: 40px; } .steps-process-arrow { transform: rotate(90deg); margin: 20px 0; align-self: center; } .steps-arrow-line { width: 50px; } .steps-header h2 { font-size: 1.8rem; } .steps-message-content { flex-direction: column; text-align: center; } .steps-message-text { text-align: center; } .steps-community-stats { gap: 35px; } }
@media (max-width: 768px) { .steps-section { padding: 60px 0; } .steps-header { margin-bottom: 50px; } .steps-header h2 { font-size: 1.6rem; } .steps-header p { font-size: 1rem; } .steps-process-step { padding: 32px 24px; } .steps-icon-background { width: 75px; height: 75px; } .steps-icon-background i { font-size: 1.7rem; } .steps-number { width: 32px; height: 32px; font-size: 0.9rem; } .steps-content h3 { font-size: 1.3rem; } .steps-community-message { padding: 40px 30px; } .steps-message-text h4 { font-size: 1.4rem; } .steps-community-stats { flex-direction: column; gap: 25px; } .steps-community-stat { padding: 15px; } }
@media (max-width: 480px) { .steps-container { padding: 0 15px; } .steps-header h2 { font-size: 1.45rem; } .steps-header p { font-size: 0.95rem; } .steps-process-step { padding: 28px 20px; } .steps-icon-background { width: 65px; height: 65px; } .steps-icon-background i { font-size: 1.5rem; } .steps-number { width: 28px; height: 28px; font-size: 0.8rem; top: -8px; right: -8px; } .steps-content h3 { font-size: 1.2rem; } .steps-content p { font-size: 0.95rem; } .steps-feature-item { font-size: 0.9rem; padding: 6px 12px; } .steps-community-message { padding: 30px 20px; } .steps-message-icon { width: 60px; height: 60px; } .steps-message-icon i { font-size: 1.4rem; } .steps-message-text h4 { font-size: 1.3rem; } .steps-message-text p { font-size: 1rem; } .steps-stat-icon { font-size: 1.8rem; } .steps-stat-text { font-size: 0.9rem; } .steps-arrow-line { width: 40px; height: 2px; } .steps-arrow-head { border-left: 8px solid #FF8A65; border-top: 6px solid transparent; border-bottom: 6px solid transparent; } }

/* Focus, print, contrast */
.steps-process-step:focus-visible { outline: 3px solid #4A90E2; outline-offset: 3px; }
.steps-community-stat:focus-visible { outline: 2px solid #4A90E2; outline-offset: 2px; }
@media print { .steps-section { background: white; color: black; } .steps-section::before, .steps-community-message::before { display: none; } .steps-process-step { background: white; border: 1px solid #ccc; box-shadow: none; } .steps-icon-background { background: #f0f0f0; color: black; } .steps-number { background: #ccc; color: black; } .steps-header h2, .steps-content h3, .steps-message-text h4 { color: black; } .steps-header p, .steps-content p, .steps-message-text p, .steps-feature-item, .steps-stat-text { color: #333; } }
@media (prefers-contrast: high) { .steps-process-step { border: 3px solid #4A90E2; } .steps-icon-background { background: #000; color: #fff; } .steps-number { background: #000; color: #fff; } .steps-process-arrow .steps-arrow-line { background: #000; } .steps-process-arrow .steps-arrow-head { border-left-color: #000; } .steps-community-message { border: 3px solid #4A90E2; } }
@media (prefers-reduced-motion: reduce) { .steps-process-step, .steps-icon-background, .steps-icon-wrapper, .steps-community-stat, .steps-community-message::before { transition: none; animation: none; } .steps-process-step:hover { transform: none; } .steps-process-step:hover .steps-icon-background { transform: none; } .steps-community-stat:hover { transform: none; } }

/* ==========================
   See It In Action (seeit.html)
   ========================== */
.see-it-in-action-section { padding: 80px 0; background: linear-gradient(135deg, #F8F9FA 0%, #E8F4FD 100%); position: relative; }
.container { width: min(100%, 1200px); margin: 0 auto; padding: 0 clamp(14px, 3vw, 20px); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; color: #2C3E50; margin-bottom: 16px; font-family: 'Poppins', sans-serif; font-weight: 600; }
.section-header p { font-size: 1.1rem; color: #5A6C7D; max-width: 600px; margin: 0 auto; line-height: 1.6; }
.demo-preview { max-width: 800px; margin: 0 auto; }
.demo-timeline { position: relative; margin-bottom: 40px; }
.timeline-step { display: none; opacity: 0; transform: translateX(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.timeline-step.active { display: block; opacity: 1; transform: translateX(0); }
.timeline-dot { width: 60px; height: 60px; background: linear-gradient(135deg, #4A90E2, #357ABD); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 30px; box-shadow: 0 8px 25px rgba(74, 144, 226, 0.2); }
.timeline-dot i { font-size: 1.5rem; color: white; }
.demo-card { background: white; border-radius: 16px; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1); overflow: hidden; border: 1px solid rgba(74, 144, 226, 0.1); }
.card-header { background: linear-gradient(135deg, #4A90E2, #357ABD); color: white; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; }
.card-header h4 { margin: 0; font-size: 1.3rem; font-weight: 600; }
.step-badge { background: rgba(255, 255, 255, 0.2); padding: 4px 12px; border-radius: 20px; font-size: 0.9rem; font-weight: 500; }
.card-body { padding: 24px; }
.demo-mockup { background: #F8F9FA; border-radius: 12px; padding: 20px; }
.form-preview { display: flex; flex-direction: column; gap: 16px; }
.form-field label { display: block; font-size: 0.9rem; color: #5A6C7D; margin-bottom: 4px; font-weight: 500; }
.input-preview { background: white; border: 2px solid #E9ECEF; border-radius: 8px; padding: 12px 16px; color: #2C3E50; font-weight: 500; }
.success-indicator { display: flex; align-items: center; gap: 8px; color: #28A745; font-weight: 500; margin-top: 8px; }
.notification-preview { display: flex; gap: 16px; align-items: flex-start; }
.notification-icon { width: 40px; height: 40px; background: #4A90E2; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.notification-icon i { color: white; font-size: 1rem; }
.notification-content h5 { margin: 0 0 8px 0; color: #2C3E50; font-size: 1.1rem; font-weight: 600; }
.notification-content p { margin: 0 0 12px 0; color: #5A6C7D; line-height: 1.5; }
.notification-details { display: flex; flex-direction: column; gap: 6px; }
.detail-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: #6C757D; }
.detail-item i { color: #4A90E2; width: 16px; }
.checklist-preview h5 { margin: 0 0 16px 0; color: #2C3E50; font-size: 1.1rem; font-weight: 600; }
.checklist-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.checklist-item { display: flex; align-items: center; gap: 12px; padding: 8px 0; }
.checklist-item.completed i { color: #28A745; font-size: 1.1rem; }
.checklist-item span { color: #2C3E50; font-weight: 500; }
.preparation-status { display: flex; align-items: center; gap: 8px; color: #28A745; font-weight: 600; padding: 12px 16px; background: rgba(40, 167, 69, 0.1); border-radius: 8px; border-left: 4px solid #28A745; }
.demo-controls { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.demo-nav-btn { display: flex; align-items: center; gap: 8px; padding: 12px 20px; background: white; border: 2px solid #4A90E2; border-radius: 25px; color: #4A90E2; font-weight: 500; cursor: pointer; transition: opacity 0.3s ease, transform 0.3s ease; }
.demo-nav-btn:hover:not(:disabled) { background: #4A90E2; color: white; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3); }
.demo-nav-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.step-indicators { display: flex; gap: 12px; }
.indicator { width: 12px; height: 12px; border-radius: 50%; background: #E9ECEF; cursor: pointer; transition: opacity 0.3s ease, transform 0.3s ease; }
.indicator.active { background: #4A90E2; transform: scale(1.2); }
.indicator:hover { background: #4A90E2; opacity: 0.7; }
.demo-cta { text-align: center; padding: 40px 20px; background: white; border-radius: 16px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); }
.demo-cta p { font-size: 1.2rem; color: #2C3E50; margin-bottom: 20px; font-weight: 500; }
.cta-button { display: inline-flex; align-items: center; gap: 12px; padding: 16px 32px; background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%); color: white; border: none; border-radius: 50px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: opacity 0.3s ease, transform 0.3s ease; text-decoration: none; }
.cta-button:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(74, 144, 226, 0.3); }
.cta-button:hover i { transform: translateX(4px); }

@media (max-width: 768px) { .see-it-in-action-section { padding: 60px 0; } .section-header { margin-bottom: 40px; } .section-header h2 { font-size: 2rem; } .section-header p { font-size: 1rem; } .timeline-dot { width: 50px; height: 50px; margin-bottom: 20px; } .timeline-dot i { font-size: 1.2rem; } .card-header { padding: 16px 20px; flex-direction: column; gap: 8px; text-align: center; } .card-header h4 { font-size: 1.2rem; } .card-body { padding: 20px; } .demo-mockup { padding: 16px; } .notification-preview { flex-direction: column; gap: 12px; } .notification-details { gap: 8px; } .demo-controls { flex-direction: column; gap: 20px; } .demo-nav-btn { padding: 10px 16px; font-size: 0.9rem; } .demo-cta { padding: 30px 15px; } .demo-cta p { font-size: 1.1rem; } .cta-button { padding: 14px 24px; font-size: 0.95rem; } }
@media (max-width: 480px) { .container { padding: 0 15px; } .section-header h2 { font-size: 1.8rem; } .timeline-dot { width: 45px; height: 45px; } .timeline-dot i { font-size: 1.1rem; } .card-header h4 { font-size: 1.1rem; } .step-badge { font-size: 0.8rem; padding: 3px 8px; } .notification-content h5 { font-size: 1rem; } .checklist-preview h5 { font-size: 1rem; } .demo-nav-btn { width: 100%; justify-content: center; } .cta-button { width: 100%; max-width: 280px; justify-content: center; } }

@keyframes slideIn { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.timeline-step.active { animation: slideIn 0.5s ease-out; }
.demo-card { animation: fadeIn 0.3s ease-out 0.2s both; }

.demo-nav-btn:focus-visible, .indicator:focus-visible, .cta-button:focus-visible { outline: 2px solid #4A90E2; outline-offset: 2px; }
@media print { .see-it-in-action-section { background: white; color: black; } .demo-controls, .demo-cta { display: none; } .timeline-step { display: block !important; opacity: 1 !important; transform: none !important; margin-bottom: 30px; } .demo-card { box-shadow: none; border: 1px solid #ccc; } .card-header { background: #f0f0f0 !important; color: black !important; } }
@media (prefers-contrast: high) { .demo-card { border: 2px solid #000; } .timeline-dot { background: #000; color: #fff; } .card-header { background: #000 !important; color: #fff !important; } .demo-nav-btn { border-color: #000; color: #000; } .demo-nav-btn:hover:not(:disabled) { background: #000; color: #fff; } }
@media (prefers-reduced-motion: reduce) { .timeline-step, .demo-card, .cta-button, .demo-nav-btn { transition: none; animation: none; } .cta-button:hover, .demo-nav-btn:hover:not(:disabled) { transform: none; } }

/* ==========================
   Did You Know (didyouknow.html)
   ========================== */
.dyk-section { padding: 80px 0; background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%); position: relative; }
.dyk-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="knowpattern" patternUnits="userSpaceOnUse" width="80" height="80"><circle cx="20" cy="20" r="1" fill="rgba(74,144,226,0.03)"/><circle cx="60" cy="60" r="1.5" fill="rgba(255,138,101,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23knowpattern)"/></svg>') repeat; opacity: 0.5; pointer-events: none; }
.dyk-container { width: min(100%, 1200px); margin: 0 auto; padding: 0 clamp(14px, 3vw, 20px); position: relative; z-index: 2; }
.dyk-header { text-align: center; margin-bottom: 60px; }
.dyk-header h2 { font-size: 2.5rem; color: #2C3E50; margin-bottom: 16px; font-family: 'Poppins', sans-serif; font-weight: 600; }
.dyk-header p { font-size: 1.1rem; color: #5A6C7D; max-width: 600px; margin: 0 auto; line-height: 1.6; }
.dyk-awareness-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; margin-bottom: 60px; }
.dyk-awareness-card { background: white; border-radius: 20px; padding: 32px; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08); border: 1px solid rgba(74, 144, 226, 0.1); transition: opacity 0.3s ease, transform 0.3s ease; }
.dyk-awareness-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12); }
.dyk-card-icon { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; box-shadow: 0 4px 15px rgba(74, 144, 226, 0.2); }
.dyk-pets-card .dyk-card-icon { background: linear-gradient(135deg, #4A90E2, #357ABD); }
.dyk-people-card .dyk-card-icon { background: linear-gradient(135deg, #FF8A65, #FF7043); }
.dyk-card-icon i { font-size: 1.5rem; color: white; }
.dyk-card-content h3 { font-size: 1.5rem; color: #2C3E50; margin-bottom: 20px; font-family: 'Poppins', sans-serif; font-weight: 600; }
.dyk-stats { background: linear-gradient(135deg, #E8F4FD, #F0F8FF); padding: 20px; border-radius: 12px; text-align: center; margin-bottom: 24px; border-left: 4px solid #4A90E2; }
.dyk-stat-number { display: block; font-size: 2.5rem; font-weight: 700; color: #4A90E2; font-family: 'Poppins', sans-serif; line-height: 1; }
.dyk-stat-text { font-size: 0.95rem; color: #5A6C7D; font-weight: 500; }
.dyk-impact-list { list-style: none; padding: 0; margin: 0; }
.dyk-impact-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; color: #5A6C7D; line-height: 1.5; }
.dyk-impact-list li::before { content: '\2022'; color: #4A90E2; font-weight: bold; font-size: 1.2rem; margin-top: -2px; }
.dyk-affected-groups { display: grid; grid-template-columns: 1fr; gap: 20px; }
.dyk-group-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px; background: #F8F9FA; border-radius: 12px; transition: opacity 0.3s ease, transform 0.3s ease; border-left: 3px solid transparent; }
.dyk-group-item:hover { background: white; border-left-color: #FF8A65; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); }
.dyk-group-icon { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #FF8A65, #FF7043); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dyk-group-icon i { font-size: 1rem; color: white; }
.dyk-group-info h4 { margin: 0 0 6px 0; font-size: 1rem; color: #2C3E50; font-weight: 600; }
.dyk-group-info p { margin: 0; font-size: 0.9rem; color: #5A6C7D; line-height: 1.4; }
.dyk-community-impact { background: linear-gradient(135deg, #2C3E50, #34495E); border-radius: 20px; padding: 40px; margin-bottom: 60px; text-align: center; }
.dyk-impact-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.dyk-impact-stat { color: white; }
.dyk-impact-number { display: block; font-size: 2.5rem; font-weight: 700; font-family: 'Poppins', sans-serif; margin-bottom: 8px; background: linear-gradient(135deg, #4A90E2, #FF8A65); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.dyk-impact-label { font-size: 0.95rem; color: rgba(255, 255, 255, 0.9); font-weight: 500; line-height: 1.3; }
.dyk-inclusive-message { background: white; border-radius: 20px; padding: 40px; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08); margin-bottom: 40px; border: 1px solid rgba(74, 144, 226, 0.1); }
.dyk-message-content { display: flex; align-items: flex-start; gap: 24px; margin-bottom: 32px; }
.dyk-message-icon { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, #81C784, #66BB6A); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 15px rgba(129, 199, 132, 0.3); }
.dyk-message-icon i { font-size: 1.5rem; color: white; }
.dyk-message-text h3 { font-size: 1.5rem; color: #2C3E50; margin-bottom: 16px; font-family: 'Poppins', sans-serif; font-weight: 600; }
.dyk-message-text p { color: #5A6C7D; line-height: 1.6; margin-bottom: 16px; font-size: 1rem; }
.dyk-support-note { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: rgba(129, 199, 132, 0.1); border-radius: 8px; border-left: 3px solid #81C784; }
.dyk-support-note i { color: #81C784; font-size: 1rem; }
.dyk-support-note span { color: #2C3E50; font-weight: 500; font-size: 0.95rem; }
.dyk-cta-container { text-align: center; padding-top: 32px; border-top: 1px solid #E9ECEF; }
.dyk-cta-text { font-size: 1.2rem; color: #2C3E50; margin-bottom: 24px; font-weight: 500; }
.dyk-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.dyk-cta-button { display: inline-flex; align-items: center; gap: 8px; padding: 14px 24px; border: none; border-radius: 50px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: opacity 0.3s ease, transform 0.3s ease; text-decoration: none; font-family: inherit; }
.dyk-cta-button--primary { background: linear-gradient(135deg, #4A90E2, #357ABD); color: white; }
.dyk-cta-button--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3); background: linear-gradient(135deg, #FF8A65, #FF7043); color: #fff; }
.dyk-cta-button--secondary { background: linear-gradient(135deg, #FF8A65 0%, #FF7043 100%); color: white; }
.dyk-cta-button--secondary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255, 112, 67, 0.3); }
.dyk-resources-preview { background: #F8F9FA; border-radius: 16px; padding: 32px; text-align: center; }
.dyk-resources-preview h4 { font-size: 1.3rem; color: #2C3E50; margin-bottom: 24px; font-family: 'Poppins', sans-serif; font-weight: 600; }
.dyk-resource-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.dyk-resource-link { display: flex; align-items: center; gap: 12px; padding: 16px 20px; background: white; border-radius: 12px; text-decoration: none; color: #2C3E50; transition: opacity 0.3s ease, transform 0.3s ease; border: 1px solid #E9ECEF; }
.dyk-resource-link:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); border-color: #4A90E2; }
.dyk-resource-link i { color: #4A90E2; font-size: 1.1rem; width: 20px; text-align: center; }
.dyk-resource-link span { font-weight: 500; font-size: 0.95rem; }

@media (max-width: 992px) { .dyk-awareness-grid { grid-template-columns: 1fr; gap: 30px; } .dyk-impact-stats { grid-template-columns: 1fr; gap: 30px; } .dyk-message-content { flex-direction: column; text-align: center; } .dyk-cta-buttons { flex-direction: column; align-items: center; } .dyk-cta-button { width: 100%; max-width: 280px; justify-content: center; } }
@media (max-width: 768px) { .dyk-section { padding: 60px 0; } .dyk-header { margin-bottom: 40px; } .dyk-header h2 { font-size: 2rem; } .dyk-header p { font-size: 1rem; } .dyk-awareness-card { padding: 24px; } .dyk-card-content h3 { font-size: 1.3rem; } .dyk-stat-number { font-size: 2rem; } .dyk-group-item { padding: 12px; } .dyk-group-icon { width: 35px; height: 35px; } .dyk-group-icon i { font-size: 0.9rem; } .dyk-group-info h4 { font-size: 0.95rem; } .dyk-group-info p { font-size: 0.85rem; } .dyk-community-impact { padding: 30px 20px; } .dyk-impact-number { font-size: 2rem; } .dyk-impact-label { font-size: 0.9rem; } .dyk-inclusive-message { padding: 30px 20px; } .dyk-message-text h3 { font-size: 1.3rem; } .dyk-message-text p { font-size: 0.95rem; } .dyk-cta-text { font-size: 1.1rem; } .dyk-resources-preview { padding: 24px 16px; } .dyk-resource-links { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .dyk-container { padding: 0 15px; } .dyk-header h2 { font-size: 1.8rem; } .dyk-awareness-card { padding: 20px; } .dyk-card-icon { width: 50px; height: 50px; } .dyk-card-icon i { font-size: 1.2rem; } .dyk-card-content h3 { font-size: 1.2rem; } .dyk-stats { padding: 16px; } .dyk-stat-number { font-size: 1.8rem; } .dyk-stat-text { font-size: 0.9rem; } .dyk-group-item { flex-direction: column; text-align: center; gap: 12px; } .dyk-community-impact { padding: 24px 16px; } .dyk-impact-number { font-size: 1.8rem; } .dyk-inclusive-message { padding: 24px 16px; } .dyk-message-icon { width: 50px; height: 50px; } .dyk-message-icon i { font-size: 1.2rem; } .dyk-message-text h3 { font-size: 1.2rem; } .dyk-support-note { flex-direction: column; text-align: center; gap: 8px; } .dyk-cta-text { font-size: 1rem; } .dyk-cta-button { padding: 12px 20px; font-size: 0.95rem; } .dyk-resources-preview h4 { font-size: 1.2rem; } .dyk-resource-link { padding: 14px 16px; } .dyk-resource-link span { font-size: 0.9rem; } }

@keyframes dyk-fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes dyk-slideInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes dyk-slideInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
/* Animation applied via JS IntersectionObserver â€” not CSS (avoids non-composited conflict) */

.dyk-cta-button:focus-visible, .dyk-resource-link:focus-visible { outline: 2px solid #4A90E2; outline-offset: 2px; }
@media (prefers-contrast: high) { .dyk-awareness-card, .dyk-inclusive-message { border: 2px solid #000; } .dyk-card-icon, .dyk-group-icon, .dyk-message-icon { background: #000 !important; color: #fff !important; } .dyk-cta-button { border: 2px solid #000; } .dyk-cta-button--primary { background: #000 !important; color: #fff !important; } }
@media (prefers-reduced-motion: reduce) { .dyk-awareness-card, .dyk-group-item, .dyk-cta-button, .dyk-resource-link { animation: none; transition: none; } .dyk-awareness-card:hover, .dyk-cta-button:hover, .dyk-resource-link:hover { transform: none; } }
@media print { .dyk-section { background: white; color: black; } .dyk-section::before { display: none; } .dyk-cta-buttons, .dyk-resources-preview { display: none; } .dyk-awareness-card, .dyk-inclusive-message { box-shadow: none; border: 1px solid #ccc; } .dyk-community-impact { background: #f0f0f0 !important; color: black !important; } .dyk-impact-number { color: black !important; } .dyk-impact-label { color: black !important; } }

/* ==========================
   Our Mission (story.html)
   ========================== */
.story-section { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); color: #2c3e50; position: relative; overflow: hidden; padding: 80px 0; }
.story-container { width: min(100%, 1200px); margin: 0 auto; padding: 0 clamp(14px, 3vw, 20px); position: relative; z-index: 2; }
.story-hero { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; align-items: center; margin-bottom: 100px; }
.story-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(74, 144, 226, 0.1); color: #4a90e2; padding: 12px 24px; border-radius: 50px; border: 2px solid rgba(74, 144, 226, 0.2); margin-bottom: 24px; font-weight: 600; }
.story-badge i { font-size: 1.2rem; }
.story-title { font-size: 3.5rem; font-weight: 700; line-height: 1.1; margin-bottom: 24px; font-family: 'Poppins', sans-serif; color: #2c3e50; }
.story-subtitle { font-size: 1.3rem; line-height: 1.6; color: #5a6c7d; max-width: 600px; }
.story-visual { display: flex; justify-content: center; align-items: center; }

/* ── Firework Canvas ── */
.story-firework-canvas {
    display: block;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,138,101,0.06) 0%, transparent 70%);
}
.story-mission { margin-bottom: 100px; }
.story-header { text-align: center; margin-bottom: 60px; }
.story-header h3 { font-size: 2.5rem; font-weight: 600; margin-bottom: 20px; color: #2c3e50; font-family: 'Poppins', sans-serif; }
.story-heritage-line { width: 100px; height: 4px; background: linear-gradient(90deg, #4a90e2, #ff8a65); margin: 0 auto; border-radius: 2px; }
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px; }
.story-card { background: white; border-radius: 20px; padding: 40px 30px; box-shadow: 0 8px 30px rgba(74, 144, 226, 0.1); border: 1px solid rgba(74, 144, 226, 0.1); transition: opacity 0.3s ease, transform 0.3s ease; position: relative; overflow: hidden; }
.story-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #4a90e2, #ff8a65); }
.story-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(74, 144, 226, 0.15); }
.story-icon { width: 70px; height: 70px; background: linear-gradient(135deg, #4a90e2, #357abd); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3); }
.story-icon i { font-size: 1.8rem; color: white; }
.story-content-inner h4 { font-size: 1.4rem; font-weight: 600; margin-bottom: 16px; color: #2c3e50; }
.story-content-inner p { line-height: 1.6; color: #5a6c7d; margin-bottom: 20px; }
.story-tradition-date { background: rgba(255, 138, 101, 0.1); color: #ff8a65; padding: 8px 16px; border-radius: 20px; font-size: 0.9rem; font-weight: 600; display: inline-block; }
.story-celebration-icons { display: flex; flex-wrap: wrap; gap: 8px; font-size: 1.15rem; }
.story-celebration-icons span { padding: 5px; width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; background: rgba(74, 144, 226, 0.1); border-radius: 50%; transition: transform 0.3s ease; }
.story-celebration-icons span:hover { transform: scale(1.15); }
.story-memory-badge { display: flex; align-items: center; gap: 8px; background: rgba(179, 157, 219, 0.1); padding: 10px 16px; border-radius: 25px; font-size: 0.9rem; color: #b39ddb; }
.story-memory-badge i { color: #ff8a65; }
.register-pitch-section { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); padding: 80px 0; }
.register-pitch-divider { border: none; border-top: 2px solid rgba(74, 144, 226, 0.15); margin: 40px auto; max-width: 200px; }
@media (max-width: 768px) { .register-pitch-section { padding: 60px 0; } .register-pitch-divider { margin: 30px auto; } }
.story-solution { margin-bottom: 80px; }
.story-solution-header { text-align: center; margin-bottom: 60px; }
.story-solution-header h3 { font-size: 2.5rem; font-weight: 600; margin-bottom: 16px; color: #2c3e50; font-family: 'Poppins', sans-serif; }
.story-solution-header p { font-size: 1.2rem; color: #5a6c7d; max-width: 700px; margin: 0 auto; }
.story-solution-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px; }
.story-pillar { background: white; border-radius: 20px; padding: 40px 30px; box-shadow: 0 8px 30px rgba(74, 144, 226, 0.1); border: 1px solid rgba(74, 144, 226, 0.1); text-align: center; transition: opacity 0.3s ease, transform 0.3s ease; }
.story-pillar:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(74, 144, 226, 0.15); }
.story-pillar-icon { width: 80px; height: 80px; background: linear-gradient(135deg, #4a90e2, #357abd); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3); }
.story-pillar-icon i { font-size: 2rem; color: white; }
.story-pillar h4 { font-size: 1.4rem; font-weight: 600; margin-bottom: 16px; color: #2c3e50; }
.story-pillar p { line-height: 1.6; color: #5a6c7d; margin-bottom: 24px; }
.story-pillar-features { display: flex; flex-direction: column; gap: 10px; }
.story-pillar-features span { background: rgba(74, 144, 226, 0.1); color: #1D5A94; padding: 8px 16px; border-radius: 20px; font-size: 0.9rem; font-weight: 500; }
.story-industry-support { background: linear-gradient(135deg, #2c3e50, #34495e); border-radius: 20px; padding: 60px 40px; margin-bottom: 80px; color: white; position: relative; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.story-industry-support:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2); }
.story-industry-support::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pattern" patternUnits="userSpaceOnUse" width="50" height="50"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23pattern)"/></svg>') repeat; opacity: 0.2; pointer-events: none; }
.story-industry-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; text-align: center; }
.story-industry-text p { font-size: 1.3rem; line-height: 1.7; color: rgba(255, 255, 255, 0.9); }
.story-cta { background: white; border-radius: 20px; padding: 60px 40px; box-shadow: 0 8px 30px rgba(74, 144, 226, 0.1); text-align: center; position: relative; overflow: hidden; transition: transform 0.28s ease, box-shadow 0.28s ease; }
.story-cta:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(74, 144, 226, 0.16); }
.story-cta::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: linear-gradient(90deg, #4a90e2, #ff8a65); }
.story-cta-content { max-width: 700px; margin: 0 auto; }
.story-cta h3 { font-size: 2.2rem; font-weight: 600; margin-bottom: 20px; color: #2c3e50; font-family: 'Poppins', sans-serif; }
.story-cta p { font-size: 1.2rem; line-height: 1.6; color: #5a6c7d; margin-bottom: 40px; }
.story-cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.story-cta-btn { display: inline-flex; align-items: center; gap: 12px; padding: 16px 32px; border-radius: 50px; font-size: 1.1rem; font-weight: 600; text-decoration: none; transition: opacity 0.3s ease, transform 0.3s ease; cursor: pointer; }
.story-primary { background: linear-gradient(135deg, #4a90e2, #357abd); color: white; box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3); }
.story-primary:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(74, 144, 226, 0.4); }
.story-secondary { background: white; color: #4a90e2; border: 2px solid #4a90e2; }
.story-secondary:hover { background: rgba(74, 144, 226, 0.1); transform: translateY(-5px); }
/* Accent pillar — draws the eye to the "60 seconds" card */
.story-pillar--accent { border: 2px solid rgba(255, 138, 101, 0.35); background: linear-gradient(135deg, #fff8f5 0%, #ffffff 100%); }
.story-pillar--accent::after { content: 'Quick & Easy'; position: absolute; top: 14px; right: 14px; background: #ff8a65; color: white; font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.story-pillar--accent { position: relative; }
.story-pillar-icon--accent { background: linear-gradient(135deg, #ff8a65, #e67e5a) !important; box-shadow: 0 8px 25px rgba(255, 138, 101, 0.35) !important; }
/* Accent CTA button — event registration hero */
.story-accent { background: linear-gradient(135deg, #ff8a65, #e67e5a); color: white; box-shadow: 0 8px 25px rgba(255, 138, 101, 0.35); font-size: 1.15rem; }
.story-accent:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(255, 138, 101, 0.45); }
/* CTA reassurance line */
.story-cta-reassurance { font-size: 0.95rem; color: #81c784; margin-top: 20px; margin-bottom: 0; font-weight: 500; }
.story-cta-reassurance i { margin-right: 4px; }
/* Occasions showcase ribbon */
.story-occasions { margin-bottom: 80px; text-align: center; }
.story-occasions-inner { background: white; border-radius: 20px; padding: 36px 40px; box-shadow: 0 4px 20px rgba(74, 144, 226, 0.08); border: 1px solid rgba(74, 144, 226, 0.1); }
.story-occasions-label { font-size: 1.1rem; font-weight: 600; color: #2c3e50; margin-bottom: 20px; font-family: 'Poppins', sans-serif; }
.story-occasions-label i { color: #ff8a65; margin-right: 6px; }
.story-occasions-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.story-occasions-list span { background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(255, 138, 101, 0.08) 100%); color: #2c3e50; padding: 8px 18px; border-radius: 25px; font-size: 0.9rem; font-weight: 500; border: 1px solid rgba(74, 144, 226, 0.12); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.story-occasions-list span:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(74, 144, 226, 0.15); }
@media (max-width: 992px) { .story-hero { grid-template-columns: 1fr; gap: 40px; text-align: center; } .story-title { font-size: 2.8rem; } .story-subtitle { margin: 0 auto; } .story-grid, .story-solution-pillars { grid-template-columns: 1fr; gap: 30px; } .story-badge { margin: 0 auto 24px; } }
@media (max-width: 768px) { .story-section { padding: 60px 0; } .story-title { font-size: 2.2rem; } .story-subtitle { font-size: 1.1rem; } .story-header h3, .story-solution-header h3 { font-size: 2rem; } .story-card, .story-pillar { padding: 30px 20px; } .story-icon, .story-pillar-icon { width: 60px; height: 60px; } .story-icon i, .story-pillar-icon i { font-size: 1.5rem; } .story-content-inner h4, .story-pillar h4 { font-size: 1.2rem; } .story-industry-support, .story-cta { padding: 40px 30px; } .story-industry-text p { font-size: 1.1rem; } .story-cta h3 { font-size: 1.8rem; } .story-cta p { font-size: 1.1rem; } .story-cta-btn { padding: 14px 28px; font-size: 1rem; } .story-occasions-inner { padding: 28px 20px; } .story-occasions-label { font-size: 1rem; } .story-occasions-list span { font-size: 0.85rem; padding: 6px 14px; } }
@media (max-width: 480px) { .story-container { padding: 0 15px; } .story-title { font-size: 1.8rem; } .story-subtitle { font-size: 1rem; } .story-badge { padding: 8px 16px; font-size: 0.9rem; } .story-header h3, .story-solution-header h3 { font-size: 1.6rem; } .story-solution-header p { font-size: 1rem; } .story-card, .story-pillar { padding: 25px 15px; } .story-icon, .story-pillar-icon { width: 50px; height: 50px; margin-bottom: 16px; } .story-icon i, .story-pillar-icon i { font-size: 1.2rem; } .story-content-inner h4, .story-pillar h4 { font-size: 1.1rem; margin-bottom: 12px; } .story-content-inner p, .story-pillar p { font-size: 0.95rem; margin-bottom: 16px; } .story-industry-text p { font-size: 1rem; } .story-cta h3 { font-size: 1.5rem; } .story-cta p { font-size: 1rem; margin-bottom: 30px; } .story-cta-buttons { flex-direction: column; gap: 15px; } .story-cta-btn { width: 100%; justify-content: center; padding: 12px 20px; font-size: 0.95rem; } .story-pillar--accent::after { font-size: 0.65rem; top: 10px; right: 10px; } .story-occasions-inner { padding: 24px 15px; } .story-occasions-list { gap: 8px; } .story-occasions-list span { font-size: 0.8rem; padding: 5px 12px; } .story-cta-reassurance { font-size: 0.85rem; } }
@keyframes story-fadeIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes story-slideInLeft { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes story-slideInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
.story-hero-content { /* animation via JS IntersectionObserver */ }
.story-visual { /* animation via JS IntersectionObserver */ }
/* On-load story card animations removed â€” hover transitions preserved */
.story-cta-btn:focus-visible { outline: 3px solid #4a90e2; outline-offset: 3px; }
@media (prefers-contrast: high) { .story-card, .story-pillar, .story-cta { border: 2px solid #000; } .story-icon, .story-pillar-icon { background: #000; } .story-primary { background: #000; color: #fff; } .story-secondary { border-color: #000; color: #000; } }
@media (prefers-reduced-motion: reduce) { .story-hero-content, .story-visual, .story-card, .story-pillar, .story-cta-btn { animation: none; transition: none; } .story-card:hover, .story-pillar:hover, .story-cta-btn:hover { transform: none; } .story-fw-glow, .story-fw-trail, .story-fw-burst, .story-fw-shimmer, .story-fw-ring { animation: none; } }
@media print { .story-section { background: white; color: black; } .story-card, .story-pillar, .story-cta { box-shadow: none; border: 1px solid #ccc; } .story-industry-support { background: #f0f0f0; color: black; } .story-industry-support::before, .story-firework-animation { display: none; } .story-cta-buttons { display: none; } }

/* New hover effects: reduce motion fallback */
@media (prefers-reduced-motion: reduce) {
    .fpa-split-lane,
    .fpa-split-message,
    .story-industry-support,
    .story-cta,
    .polaroid-card {
        transition: none;
    }
    .fpa-split-lane:hover,
    .fpa-split-message:hover,
    .story-industry-support:hover,
    .story-cta:hover,
    .polaroid-card:hover {
        transform: none;
        box-shadow: 0 6px 22px rgba(0,0,0,0.18);
    }
}

/* Performance: browser-level lazy rendering for below-the-fold homepage sections */
@supports (content-visibility: auto) {
    .fpa-split-section,
    .dyk-section,
    .story-section {
        content-visibility: auto;
        contain-intrinsic-size: 900px;
    }
}

/* End of consolidated CSS */
