/* ═══════════════════════════════════════════════════
   ZYPAWAY — Base Styles
   Reset, typography, global elements
   ═══════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  color: var(--text-primary);
  background: var(--bg-page);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--weight-bold);
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: var(--text-5xl); letter-spacing: -1.5px; }
h2 { font-size: var(--text-3xl); letter-spacing: -0.8px; }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }

p { color: var(--text-secondary); line-height: 1.7; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}

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

button {
  font-family: var(--font-family);
  cursor: pointer;
  border: none;
  background: none;
  font-size: var(--text-sm);
}

input, textarea, select {
  font-family: var(--font-family);
  font-size: var(--text-base);
}

::selection {
  background: var(--primary);
  color: white;
}

/* ─── Utility ─── */
.hidden { display: none !important; }
.w-full { width: 100%; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: var(--border-medium);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover { background: var(--text-tertiary); }

/* ─── Focus styles ─── */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
