/* 1. Global Box Sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Core Root Defaults */
html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  overflow-wrap: break-word;
}

/* 3. Margin & Padding Normalization */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
  margin: 0;
  padding: 0;
}

/* 4. List Style Reset */
ul[class],
ol[class] {
  list-style: none;
}

/* 5. Media Elements Responsive Defaults */
img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  display: block;
}

/* 6. Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* 7. Button Reset */
button {
  font: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* 9. Anchor (Link) Reset */
a {
  text-decoration: none;
  color: inherit;
}