/* ============================================================
   BASE
   Minimal modern reset + global typography.
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: hsl(var(--border));
}

* {
  margin: 0;
  padding: 0;
}

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

body {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

button {
  background: none;
  border: none;
  cursor: pointer;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
}

ul,
ol {
  list-style: none;
}

::selection {
  background: hsl(var(--primary) / 0.3);
  color: hsl(var(--foreground));
}

/* Utility text gradients */
.text-gradient-primary {
  background-image: linear-gradient(135deg, hsl(195 100% 50%), hsl(195 80% 72%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-gradient-platinum {
  background-image: linear-gradient(135deg, hsl(var(--platinum)), hsl(0 0% 100%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.uppercase {
  text-transform: uppercase;
}
.tracking-wide {
  letter-spacing: 0.05em;
}
.tracking-wider {
  letter-spacing: 0.2em;
}
.tracking-widest {
  letter-spacing: 0.3em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
