/* ==========================================================================
   Base Styles — Open State (Light Theme)
   ========================================================================== */

/* Vintage pointing-hand cursor (classic HyperCard/Web 1.0 style) */
html, body {
  cursor: url("assets/cursor/pixel-hand@2x.png") 10 2, pointer;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--color-text);
  background:
    radial-gradient(circle at 20% 30%, rgba(196, 101, 58, 0.06), transparent 50%),
    radial-gradient(circle at 80% 65%, rgba(155, 126, 200, 0.05), transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(26, 58, 106, 0.04), transparent 50%),
    linear-gradient(135deg, var(--color-hero-bg) 0%, var(--color-hero-bg-dark) 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

/* Headlines */
h1, h2, h3 {
  font-family: var(--font-headline);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: var(--tracking-tight);
  line-height: 1.1;
}

h1 {
  font-size: clamp(3rem, 14vw, 12rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

/* Body copy */
p {
  line-height: 1.75;
  max-width: 60ch;
  color: var(--color-text);
}

p + p {
  margin-top: var(--space-sm);
}

/* Links */
a {
  color: var(--color-text);
  transition: opacity var(--duration-hover) ease;
}

a:hover {
  opacity: 0.7;
}

/* Skip link (accessibility) */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-text);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  z-index: 200;
  border-radius: 2px;
}

.skip-link:focus {
  top: var(--space-sm);
}

/* Selection */
::selection {
  background-color: var(--color-light-purple);
  color: var(--color-white);
}
