/* ================================
   CSS Reset & Base Styles
   ================================ */

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

/* HTML & Body */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #1e293b;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Remove default list styles */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Remove default link styles */
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Remove default button styles */
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  padding: 0;
  margin: 0;
}

/* Image defaults */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Heading defaults */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: 600;
  line-height: 1.2;
}

/* Paragraph defaults */
p {
  margin: 0;
  padding: 0;
}

/* Input defaults */
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* Remove default focus outline (we'll add custom ones) */
:focus {
  outline: none;
}

/* Accessibility: Keep focus visible for keyboard navigation */
:focus-visible {
  outline: 2px solid #6340de;
  outline-offset: 2px;
}
