/* ── Muskoka Digital Boost — shared styles ── */
:root {
  --navy: #0f172a;
  --blue-950: #14243f;
  --blue-900: #1e3a8a;
  --blue-800: #1e40af;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --blue-300: #93c5fd;
  --blue-200: #bfdbfe;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;
  --tint: #f0f4ff;
  --ink: #111827;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --line: #e5e7eb;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-card: 0 10px 30px rgba(29, 78, 216, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: #f9fafb;
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
.serif { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

/* ── Skip link / a11y ── */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--blue-700); color: #fff; padding: 10px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--blue-500); outline-offset: 2px;
}

/* ── Nav ── */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; max-width: 1200px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand svg { height: 36px; width: auto; }
.brand-name { font-weight: 700; font-size: 16px; line-height: 1.2; color: var(--ink); }
.brand-tag { color: var(--blue-600); font-size: 11.5px; font-weight: 500; line-height: 1.2; }
.nav-links { display: none; align-items: center; gap: 28px; }
.nav-links a { color: var(--gray-500); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a[aria-current="page"] { color: var(--blue-600); }
.nav-toggle { display: block; padding: 6px; color: var(--ink); }
.mob-menu { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background: #fff; border-top: 1px solid #f3f4f6; }
.mob-menu.open { max-height: 460px; }
.mob-menu-inner { display: flex; flex-direction: column; gap: 4px; padding: 14px 24px 22px; }
.mob-menu a { color: var(--gray-600); font-size: 15px; font-weight: 500; padding: 9px 0; }
.mob-menu a[aria-current="page"] { color: var(--blue-600); }
@media (min-width: 860px) {
  .nav-links { display: flex; }
  .nav-toggle, .mob-menu { display: none; }
}

/* ── Buttons ── */
.btn {
  display: inline-block; text-align: center;
  padding: 15px 30px; border-radius: 12px;
  font-weight: 700; font-size: 14px;
  transition: transform 0.2s, box-shadow 0.3s, background 0.2s, border-color 0.2s, color 0.2s;
}
.btn-primary {
  background: var(--blue-700); color: #fff;
  position: relative; overflow: hidden;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4), 0 0 60px rgba(59, 130, 246, 0.1);
}
.btn-primary:hover {
  background: var(--blue-800); transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.7), 0 0 80px rgba(59, 130, 246, 0.3);
}
.btn-light { background: #fff; color: var(--blue-900); box-shadow: 0 0 20px rgba(59, 130, 246, 0.35); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(147, 197, 253, 0.6); }
.btn-ghost { border: 2px solid rgba(96, 165, 250, 0.5); color: var(--blue-200); font-weight: 600; }
.btn-ghost:hover { border-color: var(--blue-300); color: #fff; }
.btn-outline { border: 2px solid var(--line); color: var(--ink); font-weight: 600; }
.btn-outline:hover { border-color: var(--blue-600); color: var(--blue-600); }
.btn-block { display: block; width: 100%; }

/* ── Hero (dark) ── */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(270deg, #0f172a, #1e3a8a, #1e40af, #0f172a);
  background-size: 400% 400%;
  animation: bgMove 12s ease infinite;
}
@keyframes bgMove { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.grid-bg {
  position: absolute; inset: 0; opacity: 0.3; pointer-events: none;
  background-image: linear-gradient(rgba(59,130,246,0.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(59,130,246,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-inner { position: relative; z-index: 2; padding: 90px 24px 70px; max-width: 1200px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(29, 78, 216, 0.6); color: var(--blue-200);
  font-size: 12px; font-weight: 600; padding: 7px 14px; border-radius: 999px; margin-bottom: 28px;
}
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.2rem); line-height: 1.12; margin-bottom: 18px; }
.hero .shimmer,
.shimmer {
  background: linear-gradient(90deg, #93c5fd 0%, #60a5fa 25%, #e0f2fe 50%, #60a5fa 75%, #93c5fd 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
.hero-sub { color: var(--blue-200); font-size: 18px; max-width: 540px; margin-bottom: 36px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.cursor {
  display: inline-block; width: 3px; height: 0.9em; background: var(--blue-400);
  animation: blink 1s infinite; margin-left: 3px; vertical-align: baseline;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 52px; padding-top: 36px; border-top: 1px solid rgba(29, 78, 216, 0.5);
  max-width: 520px;
}
.hero-stats .num { font-family: 'DM Serif Display', Georgia, serif; font-size: 30px; color: #fff; }
.hero-stats .lbl { color: var(--blue-300); font-size: 12px; margin-top: 3px; }
.hero-split { display: flex; flex-direction: column; gap: 56px; align-items: center; }
.hero-left { flex: 1; text-align: center; }
.hero-right { flex: 1; width: 100%; max-width: 440px; display: grid; gap: 16px; }
@media (min-width: 992px) {
  .hero-split { flex-direction: row; text-align: left; }
  .hero-left { text-align: left; }
  .hero-stats { margin-left: 0; }
}
@media (max-width: 991px) { .hero-stats { margin: 52px auto 0; } .hero-ctas { justify-content: center; } }
@media (min-width: 992px) { .hero-ctas { justify-content: flex-start; } }
.float { animation: float 6s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  33% { transform: translateY(-12px); }
  66% { transform: translateY(-6px); }
}
.glass-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius); padding: 20px;
  backdrop-filter: blur(4px);
}
.glass-card .emoji { font-size: 24px; line-height: 1.3; }
.glass-card h3 { color: #fff; font-size: 16px; margin-bottom: 4px; }
.glass-card p { color: var(--blue-200); font-size: 13.5px; }

/* ── Page hero (interior pages) ── */
.page-hero { text-align: center; }
.page-hero .hero-inner { padding: 72px 24px 64px; }
.page-hero h1 { max-width: 780px; margin-left: auto; margin-right: auto; }
.page-hero .hero-sub { margin-left: auto; margin-right: auto; }
.breadcrumbs { position: relative; z-index: 2; font-size: 13px; color: var(--blue-300); margin-bottom: 22px; }
.breadcrumbs a { color: var(--blue-300); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span[aria-current] { color: #fff; }

/* ── Sections ── */
.section { padding: 90px 0; position: relative; }
.section-white { background: #fff; }
.section-tint { background: var(--tint); }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.accent-bar { width: 48px; height: 4px; background: var(--blue-600); border-radius: 4px; margin-bottom: 22px; }
.section-head.center .accent-bar { margin-left: auto; margin-right: auto; }
.eyebrow { color: var(--blue-600); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.15em; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); line-height: 1.15; margin-top: 12px; }
.section-head p { color: var(--gray-500); font-size: 17px; margin-top: 14px; max-width: 640px; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ── Cards / grids ── */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.card:hover { border-color: var(--blue-500); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.card .big-num { font-family: 'DM Serif Display', Georgia, serif; font-size: 64px; line-height: 1; color: #e0e7ff; margin-bottom: 8px; }
.card h3 { font-size: 20px; margin-bottom: 12px; }
.card > p { color: var(--gray-500); font-size: 14.5px; margin-bottom: 18px; }
.checklist { list-style: none; display: grid; gap: 9px; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--gray-600); }
.checklist .tick {
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px;
  background: var(--blue-50); color: var(--blue-600); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900;
}

/* ── Process ── */
.process-card { position: relative; border-radius: var(--radius-lg); padding: 40px; background: #fff; border: 1px solid var(--blue-100); transition: transform 0.25s, box-shadow 0.25s; }
.process-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.process-card .step-num { position: absolute; top: 28px; right: 30px; font-family: 'DM Serif Display', Georgia, serif; font-size: 54px; color: var(--blue-100); user-select: none; }
.process-card .step-icon {
  width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 26px; box-shadow: 0 10px 25px rgba(59, 130, 246, 0.25);
}
.process-card h3 { font-size: 20px; margin-bottom: 10px; }
.process-card p { color: var(--gray-500); font-size: 14.5px; }
.bg-b700 { background: var(--blue-700); }
.bg-sky { background: #0284c7; }
.bg-indigo { background: #4f46e5; }

/* ── Stats band ── */
.stats-band { background: var(--blue-700); color: #fff; padding: 76px 0; position: relative; overflow: hidden; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px; text-align: center; position: relative; z-index: 2; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stats-grid .num { font-family: 'DM Serif Display', Georgia, serif; font-size: 46px; }
.stats-grid .lbl { color: var(--blue-200); font-size: 14px; margin-top: 6px; }
.spin-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(96, 165, 250, 0.25); animation: spin 20s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Pricing ── */
.price-card { position: relative; border-radius: var(--radius-lg); padding: 34px; background: #fff; border: 1px solid var(--line); transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s; }
.price-card:hover { border-color: var(--blue-500); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.price-card.featured { background: var(--blue-900); border-color: var(--blue-900); color: #fff; box-shadow: 0 25px 60px rgba(30, 58, 138, 0.35); }
.price-badge {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--blue-500); color: #fff; font-size: 11px; font-weight: 700;
  padding: 6px 16px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.1em; white-space: nowrap;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}
.price-label { display: inline-block; font-size: 12px; font-weight: 600; padding: 5px 13px; border-radius: 999px; margin-bottom: 20px; background: var(--blue-50); color: var(--blue-600); }
.price-card.featured .price-label { background: rgba(29, 78, 216, 0.5); color: var(--blue-200); }
.price-amount { font-family: 'DM Serif Display', Georgia, serif; font-size: 54px; line-height: 1.05; }
.price-sub { font-size: 14px; color: var(--gray-500); margin: 6px 0 24px; }
.price-card.featured .price-sub { color: var(--blue-300); }
.price-card hr { border: none; border-top: 1px solid var(--line); margin-bottom: 22px; }
.price-card.featured hr { border-color: rgba(29, 78, 216, 0.5); }
.price-card .checklist { margin-bottom: 28px; }
.price-card .checklist li { font-size: 14px; }
.price-card.featured .checklist li { color: var(--blue-100); }
.price-card.featured .tick { background: var(--blue-600); color: #fff; }

/* ── Industries ── */
.industry-tile {
  background: #fff; border: 1px solid var(--blue-100); border-radius: var(--radius);
  padding: 22px 14px; text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.industry-tile:hover { border-color: var(--blue-400); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.industry-tile .emoji { font-size: 28px; margin-bottom: 10px; }
.industry-tile h3 { font-size: 12.5px; font-weight: 600; color: #1f2937; }
.industry-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 640px) { .industry-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .industry-grid { grid-template-columns: repeat(6, 1fr); } }

/* ── Dark area section ── */
.section-dark { background: var(--blue-900); color: #fff; position: relative; overflow: hidden; }
.section-dark .eyebrow { color: var(--blue-300); }
.section-dark .section-head h2 { color: #fff; }
.section-dark .section-head p { color: var(--blue-200); }
.area-card { background: rgba(30, 64, 175, 0.4); border: 1px solid rgba(37, 99, 235, 0.3); border-radius: var(--radius); padding: 26px; transition: border-color 0.25s, transform 0.25s; display: block; }
.area-card:hover { border-color: var(--blue-400); transform: translateY(-3px); }
.area-card h3 { color: #fff; font-size: 18px; margin-bottom: 8px; }
.area-card p { color: var(--blue-200); font-size: 14px; }
.area-card .more { display: inline-block; margin-top: 12px; color: var(--blue-300); font-size: 13px; font-weight: 600; }
.tag-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 44px; position: relative; z-index: 2; }
.tag {
  padding: 8px 18px; border-radius: 999px; font-size: 14px; font-weight: 500;
  background: rgba(30, 64, 175, 0.5); border: 1px solid rgba(37, 99, 235, 0.3); color: var(--blue-200);
  transition: background 0.2s, color 0.2s;
}
.tag:hover { background: rgba(29, 78, 216, 0.5); color: #fff; }

/* ── FAQ ── */
.faq-list { background: #fff; border: 1px solid var(--blue-100); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 4px 20px rgba(30, 58, 138, 0.05); }
.faq-item { border-bottom: 1px solid var(--blue-50); padding: 0 28px; }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; text-align: left; padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-weight: 600; font-size: 15px; color: #1f2937; transition: color 0.2s;
}
.faq-q:hover { color: var(--blue-600); }
.faq-q svg { flex-shrink: 0; transition: transform 0.3s; color: var(--blue-500); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding-bottom: 20px; color: var(--gray-500); font-size: 14.5px; }

/* ── Contact ── */
.contact-grid { display: grid; gap: 48px; grid-template-columns: 1fr; }
@media (min-width: 992px) { .contact-grid { grid-template-columns: 2fr 3fr; } }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-item .ico {
  width: 48px; height: 48px; flex-shrink: 0; font-size: 20px;
  background: var(--blue-50); border: 1px solid var(--blue-100); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.contact-item .lbl { color: var(--gray-400); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 3px; }
.contact-item .val { font-size: 17px; font-weight: 600; color: var(--ink); word-break: break-word; }
.contact-item a.val:hover { color: var(--blue-600); }
.contact-item .sub { color: var(--gray-400); font-size: 12px; margin-top: 3px; }
.note-box { background: var(--blue-50); border: 1px solid var(--blue-100); border-radius: var(--radius); padding: 20px; color: var(--gray-600); font-size: 14px; }
.form-card { background: #fff; border: 2px solid #f3f4f6; border-radius: var(--radius-lg); padding: 34px; box-shadow: 0 4px 20px rgba(30, 58, 138, 0.04); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 11.5px; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.form-group label .opt { color: var(--gray-400); font-weight: 400; text-transform: none; letter-spacing: 0; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; font: inherit; font-size: 14px; color: var(--ink);
  background: #f9fafb; border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 16px; transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue-500); background: #fff; outline: none;
}
.form-group textarea { resize: vertical; min-height: 96px; }
.form-status { text-align: center; font-size: 14px; font-weight: 500; padding: 10px 0; }
.form-status.ok { color: var(--blue-600); }
.form-status.err { color: #dc2626; }
.form-status a { text-decoration: underline; }

/* ── CTA band ── */
.cta-band { background: linear-gradient(270deg, #0f172a, #1e3a8a, #1e40af, #0f172a); background-size: 400% 400%; animation: bgMove 12s ease infinite; color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-band .section-head h2 { color: #fff; }
.cta-band .section-head p { color: var(--blue-200); }
.cta-band .hero-ctas { justify-content: center; position: relative; z-index: 2; }

/* ── Prose (long-form content on location pages) ── */
.prose { max-width: 760px; }
.prose h2 { font-family: 'DM Serif Display', Georgia, serif; font-size: 28px; margin: 40px 0 14px; }
.prose h3 { font-size: 19px; margin: 28px 0 10px; }
.prose p { color: var(--gray-600); font-size: 16px; margin-bottom: 16px; }
.prose ul { margin: 0 0 16px 22px; color: var(--gray-600); }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--blue-600); font-weight: 500; }
.prose a:hover { text-decoration: underline; }

/* ── Footer ── */
.site-footer { background: var(--blue-900); color: var(--blue-300); padding: 56px 0 36px; }
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1fr; margin-bottom: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.site-footer .brand-name { color: #fff; }
.site-footer .brand-tag { color: var(--blue-400); }
.footer-about { font-size: 14px; color: var(--blue-200); max-width: 300px; margin-top: 14px; }
.site-footer h2.foot-h { color: #fff; font-size: 14px; font-family: 'DM Sans', sans-serif; font-weight: 600; margin-bottom: 16px; }
.site-footer ul { list-style: none; display: grid; gap: 9px; font-size: 14px; }
.site-footer ul a { transition: color 0.2s; }
.site-footer ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(29, 78, 216, 0.5); padding-top: 28px;
  display: flex; flex-direction: column; gap: 8px; justify-content: space-between;
  font-size: 12px; color: var(--blue-400);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }

/* ── Reveal animations ── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

/* ── Particles (home hero) ── */
#particle-canvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  #particle-canvas { display: none; }
}
