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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #ffffff;
  color: var(--sy-text-dark);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.admin-bar .sy-site-header {
  top: 32px;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.sy-container {
  width: min(calc(100% - 48px), var(--sy-container));
  margin-inline: auto;
}

.sy-content-width {
  width: min(100%, 900px);
}

.sy-site-main {
  min-height: 60vh;
}

.sy-page-shell {
  padding: 150px 0 90px;
}

.sy-card {
  padding: 28px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--sy-radius-md);
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.sy-content-grid,
.sy-content-list {
  display: grid;
  gap: 28px;
}

.sy-content-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sy-button,
.sy-header-cta {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sy-primary), var(--sy-secondary));
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 15px 35px rgba(47, 107, 255, 0.28);
  transition: transform var(--sy-transition), box-shadow var(--sy-transition), opacity var(--sy-transition);
}

.sy-button:hover,
.sy-header-cta:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(47, 107, 255, 0.38);
}

.sy-skip-link {
  position: fixed;
  z-index: 99999;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  transform: translateY(-140%);
  border-radius: 10px;
  background: #ffffff;
  color: #111827;
}

.sy-skip-link:focus {
  transform: translateY(0);
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.sy-404 {
  text-align: center;
}

.sy-404-code {
  display: block;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--sy-primary), var(--sy-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(80px, 15vw, 180px);
  font-weight: 800;
  line-height: 1;
}
