:root {
  --color-black: #0C0C0E;
  --color-near-black: #18181B;
  --color-dark-gray: #27272A;
  --color-mid-gray: #71717A;
  --color-light-gray: #A1A1AA;
  --color-silver: #D4D4D8;
  --color-border: #E4E4E7;
  --color-bg-light: #FAFAFA;
  --color-white: #FFFFFF;
  --color-accent: #F97316;
  --color-accent-hover: #EA580C;
  --font-primary: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-japanese: 'Noto Sans JP', sans-serif;
  --text-primary: #18181B;
  --text-secondary: #52525B;
  --text-muted: #A1A1AA;
  --bg-page: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-surface: #f8f8fa;
  --bg-nav: rgba(255, 255, 255, 0.85);
  --bg-hero: #FAFAFA;
  --bg-cta: #18181B;
  --border: #E4E4E7;
  --accent: #F97316;
  --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.06);
}

[data-theme="dark"] {
  --color-border: #2A2A4E;
  --color-bg-light: #1A1A2E;
  --color-white: #0D0D1A;
  --text-primary: #F4F1DE;
  --text-secondary: #8D99AE;
  --text-muted: #565a6e;
  --bg-page: #0D0D1A;
  --bg-card: #16162A;
  --bg-surface: #16162a;
  --bg-nav: rgba(13, 13, 26, 0.9);
  --bg-hero: #0D0D1A;
  --bg-cta: #1A1A2E;
  --border: #2A2A4E;
  --accent: #F97316;
  --shadow-card: 0 1px 3px rgba(0,0,0,0.2), 0 4px 16px rgba(0,0,0,0.3);
}

[data-theme="dark"] .footer-social-link:nth-child(1) { color: #FF6B35; }
[data-theme="dark"] .footer-social-link:nth-child(1):hover { background: rgba(252, 76, 2, 0.15); }
[data-theme="dark"] .footer-social-link:nth-child(2) { color: #FFB74D; }
[data-theme="dark"] .footer-social-link:nth-child(3) { color: #4A9FE5; }
[data-theme="dark"] .footer-social-link:nth-child(3):hover { background: rgba(10, 102, 194, 0.15); }
[data-theme="dark"] .footer-social-link-disabled { opacity: 0.3; }

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--text-primary);
  background: var(--bg-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--bg-nav);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.landing-nav.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.nav-brand-jp {
  font-family: var(--font-japanese);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.nav-brand-en {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--text-primary);
}

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

.nav-link {
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-cta {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  background: var(--color-near-black);
  padding: 7px 18px;
  border-radius: 8px;
  transition: opacity 0.2s ease;
}

[data-theme="dark"] .nav-cta {
  background: var(--color-accent);
  color: #FFFFFF;
}

.nav-cta:hover {
  opacity: 0.85;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.landing-theme-toggle {
  background: none;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  padding: 5px 7px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: border-color 0.2s ease, color 0.2s ease;
  margin-left: 6px;
}

.landing-theme-toggle:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
}

.theme-icon-moon { display: none; }
[data-theme="dark"] .theme-icon-sun { display: none; }
[data-theme="dark"] .theme-icon-moon { display: block; }

.hero {
  padding: 100px 28px 56px;
  background: var(--bg-hero);
}

.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(249, 115, 22, 0.08);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

[data-theme="dark"] .hero-badge {
  background: rgba(249, 115, 22, 0.15);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.hero-accent {
  color: var(--color-accent);
  font-style: italic;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 460px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.hero-trust {
  font-family: var(--font-primary);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
  letter-spacing: 0.02em;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-primary);
  color: #FFFFFF;
  background: var(--color-near-black);
  border: none;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

[data-theme="dark"] .btn-primary {
  background: var(--color-accent);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-primary);
  color: var(--text-primary);
  background: transparent;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.15s ease;
}

.btn-secondary:hover {
  border-color: var(--text-primary);
  transform: translateY(-1px);
}

.hero-visual {
  flex-shrink: 0;
  width: 420px;
}

.hero-app-mockup {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.06);
}

.mockup-toolbar {
  background: #1E1E2A;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3A3A4A;
}

.mockup-dots span:first-child { background: #FF5F57; }
.mockup-dots span:nth-child(2) { background: #FEBC2E; }
.mockup-dots span:nth-child(3) { background: #28C840; }

.mockup-url {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-primary);
  background: rgba(255,255,255,0.06);
  padding: 3px 12px;
  border-radius: 4px;
  flex: 1;
  text-align: center;
}

.mockup-screen {
  display: flex;
  background: #12121E;
  height: 260px;
}

.mockup-map {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 60% 40%, #1a1a32 0%, #10101c 100%);
}

.map-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.route-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.route-draw {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawRoute 4s ease forwards 0.3s;
}

@keyframes drawRoute {
  to { stroke-dashoffset: 0; }
}

.route-cursor,
.route-cursor-glow {
  opacity: 0;
  animation: cursorFadeIn 0.3s ease forwards 0.3s;
}

@keyframes cursorFadeIn {
  to { opacity: 1; }
}

.map-badge-tokyo {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-primary);
}

.mockup-sidebar {
  width: 120px;
  background: #1A1A2E;
  border-left: 1px solid rgba(255,255,255,0.06);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar-shape-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
}

.sidebar-shape-name {
  font-family: var(--font-display);
  font-size: 26px;
  color: #F97316;
  font-style: italic;
  line-height: 1;
}

.sidebar-meta {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
}

.sidebar-dot {
  color: rgba(255,255,255,0.2);
}

.sidebar-bar {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 4px 0;
}

.sidebar-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-stat-label {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
}

.sidebar-stat-val {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.sidebar-export-btn {
  margin-top: auto;
  background: #F97316;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  padding: 7px;
  border-radius: 6px;
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

.activities-section {
  padding: 40px 0 0;
  background: var(--bg-page);
}

.activities-strip {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.activity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.activity-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--bg-hero);
  border: 1px solid var(--color-border);
  color: var(--color-accent);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.activity-item:hover .activity-icon {
  transform: translateY(-3px);
  border-color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.12);
}

.activity-label {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  text-align: center;
}

.examples-section {
  padding: 64px 0;
}

.section-heading {
  font-family: 'Instrument Serif', serif;
  font-size: 32px;
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.section-subheading {
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 40px;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.example-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.example-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

[data-theme="dark"] .example-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.example-visual {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  padding: 24px;
}

.example-shape {
  width: 120px;
  height: 120px;
}

.example-info {
  padding: 14px 16px;
}

.example-name {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
}

.example-distance {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.faq-section {
  padding: 64px 0;
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--text-muted);
  transition: transform 0.2s;
  font-weight: 300;
}

.faq-item[open] .faq-question::after {
  content: '−';
}

.faq-answer {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 0 0 18px 0;
}

.features-section {
  padding: 56px 0;
  background: var(--bg-page);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-card);
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 115, 22, 0.08);
  border-radius: 10px;
  color: var(--color-accent);
  flex-shrink: 0;
}

[data-theme="dark"] .feature-icon {
  background: rgba(249, 115, 22, 0.12);
}

.feature-body {
  min-width: 0;
}

.feature-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.feature-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.how-section {
  padding: 48px 0 56px;
  background: var(--bg-page);
  border-top: 1px solid var(--color-border);
}

.how-heading {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 36px;
}

.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 200px;
  padding: 0 8px;
}

.step-num {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-near-black);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  flex-shrink: 0;
}

[data-theme="dark"] .step-num {
  background: var(--color-accent);
}

.step-body {
  min-width: 0;
}

.step-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.step-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.step-arrow {
  display: flex;
  align-items: center;
  color: var(--color-border);
  padding-top: 6px;
  flex-shrink: 0;
}

.cta-section {
  padding: 0 0 56px;
  background: var(--bg-page);
}

.cta-card {
  background: var(--bg-cta);
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.cta-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.cta-footnote {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 16px;
}

.btn-cta {
  background: var(--color-accent);
  color: #FFFFFF;
}

.btn-cta:hover {
  opacity: 0.9;
}

.landing-footer {
  padding: 28px 28px;
  background: var(--bg-page);
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}

.footer-middle {
  text-align: center;
}

.footer-tagline {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.5;
  margin: 0 auto;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.footer-brand-jp {
  font-family: var(--font-japanese);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.footer-brand-en {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--text-primary);
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-end;
  align-items: center;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  justify-content: flex-end;
  margin-top: 4px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: all 0.2s ease;
  text-decoration: none;
}

.footer-social-link:nth-child(1) {
  color: #FC4C02;
}
.footer-social-link:nth-child(1):hover {
  color: #FF5722;
  background: rgba(252, 76, 2, 0.1);
  transform: translateY(-2px);
}

.footer-social-link:nth-child(2) {
  color: #E4405F;
}
.footer-social-link:nth-child(2):hover {
  color: #F56040;
  background: rgba(228, 64, 95, 0.1);
  transform: translateY(-2px);
}

.footer-social-link:nth-child(3) {
  color: #0A66C2;
}
.footer-social-link:nth-child(3):hover {
  color: #0077B5;
  background: rgba(10, 102, 194, 0.1);
  transform: translateY(-2px);
}

.footer-social-link-disabled {
  cursor: not-allowed !important;
  opacity: 0.4;
  pointer-events: none;
}

.footer-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card.animate-on-scroll:nth-child(2) { transition-delay: 0.08s; }
.feature-card.animate-on-scroll:nth-child(3) { transition-delay: 0.16s; }
.feature-card.animate-on-scroll:nth-child(4) { transition-delay: 0.24s; }

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--bg-nav);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 20px 28px;
    gap: 16px;
    border-bottom: 1px solid var(--color-border);
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero {
    padding: 88px 20px 40px;
  }

  .hero-inner {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-visual {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }

  .mockup-screen {
    height: 200px;
  }

  .mockup-sidebar {
    width: 100px;
    padding: 12px 10px;
  }

  .sidebar-shape-name {
    font-size: 22px;
  }

  .activities-strip {
    gap: 20px;
    flex-wrap: wrap;
  }

  .activity-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .activity-icon svg {
    width: 22px;
    height: 22px;
  }

  .activity-label {
    font-size: 11px;
  }

  .examples-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps-row {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .step-arrow {
    transform: rotate(90deg);
    padding-top: 0;
  }

  .step {
    max-width: 260px;
  }

  .how-heading {
    font-size: 26px;
  }

  .cta-card {
    padding: 36px 20px;
  }

  .cta-title {
    font-size: 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
    gap: 4px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 30px;
  }

  .nav-inner {
    padding: 0 16px;
  }

  .section-inner {
    padding: 0 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .route-draw, .route-cursor, .route-cursor-glow { animation: none !important; }
  .route-cursor, .route-cursor-glow { display: none; }
  .animate-on-scroll { opacity: 1 !important; transform: none !important; transition: none !important; }
  .animate-on-scroll.visible { animation: none !important; }
  * { scroll-behavior: auto !important; transition-duration: 0s !important; animation-duration: 0s !important; }
}
