/* =========================================================
   FlameSync Harmonic Systems — CSS Reset
   Minimal, modern, non-destructive
   ========================================================= */

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

/* ---------- Remove Default Margin ---------- */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
dl,
dd,
ol,
ul,
figure,
hr {
  margin: 0;
  padding: 0;
}

/* ---------- Lists ---------- */
ol,
ul {
  list-style: none;
}

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

/* ---------- Tables ---------- */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ---------- Forms ---------- */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border-radius: 0;
}

button {
  border: none;
  padding: 0;
  cursor: pointer;
}

/* ---------- Links ---------- */
a {
  text-decoration: none;
  color: inherit;
}

/* ---------- Horizontal Rule ---------- */
hr {
  border: none;
  height: 1px;
}

/* ---------- HTML Defaults ---------- */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/* ---------- Body ---------- */
body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}

/* ---------- 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;
  }
}

/* =========================================================
   End of reset.css
   ========================================================= */
