/* ═══ BASE — Reset, Variables, Typography ═══ */

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

:root {
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --radius-pill: 999px;
  --radius-xl: 2rem;
  --radius-lg: 1.2rem;
  --ease-expo: cubic-bezier(.16, 1, .3, 1);
  --ease-quart: cubic-bezier(.25, 1, .5, 1);
  --ease-smooth: cubic-bezier(.4, 0, .2, 1);
  
  /* Colors */
  --bg-dark: #101010;
  --text-primary: #fff;
  --text-secondary: rgba(255, 255, 255, .55);
  --text-muted: rgba(255, 255, 255, .35);
  --text-ghost: rgba(255, 255, 255, .15);
  --border-subtle: rgba(255, 255, 255, .07);
  --border-medium: rgba(255, 255, 255, .12);
  --glass-bg: rgba(255, 255, 255, .04);
  --glass-bg-strong: rgba(255, 255, 255, .08);
  
  /* Seasons */
  --spring-accent: #7ec96a;
  --summer-accent: #e8a838;
  --autumn-accent: #d4633a;
  --winter-accent: #7eb8d4;
}

/* iOS 26 Safari Liquid Glass transparency — #101010, NOT #000 */
html {
  background-color: var(--bg-dark);
  height: 100%;
  overflow: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, .15) transparent;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-dark);
  height: 100%;
  overflow: visible;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  cursor: none;
}

::selection {
  background: rgba(255, 255, 255, .2);
  color: #fff;
}

/* Typography scale */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
}

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

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