/* =========================================================
   reset.css / 2026
   ========================================================= */

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

/* --- root --- */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- reset --- */
body,
h1, h2, h3, h4, h5, h6,
p,
ul, ol,
li,
dl, dt, dd,
figure,
blockquote,
pre,
table,
th, td,
form,
fieldset,
legend {
  margin: 0;
  padding: 0;
}

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

/* --- heading --- */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* --- link --- */
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}

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

img {
  height: auto;
  border-style: none;
}

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

/* --- form --- */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  margin: 0;
}

button,
input,
select,
textarea {
  background: transparent;
  border: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

input,
textarea,
select {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

textarea {
  resize: vertical;
}

fieldset {
  border: 0;
}

legend {
  display: table;
  max-width: 100%;
  white-space: normal;
  color: inherit;
}

/* --- placeholder --- */
::placeholder {
  color: inherit;
  opacity: 0.6;
}

/* --- hr --- */
hr {
  margin: 0;
  padding: 0;
  border: 0;
  border-top: 1px solid currentColor;
  opacity: 0.2;
}

/* --- details --- */
summary {
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

/* --- code --- */
code,
kbd,
samp,
pre {
  font: inherit;
}

/* --- hidden --- */
[hidden] {
  display: none !important;
}

/* --- quote --- */
blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

/* --- state --- */
:disabled,
[aria-disabled="true"] {
  cursor: not-allowed;
}

[aria-busy="true"] {
  cursor: progress;
}

/* --- reduce motion --- */
@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;
    scroll-behavior: auto !important;
  }
}