
:root {
  /* Palette Tokens — Bright Warm Light & Glowing Violet accents */
  --bg: #f4f3ef;
  /* Signature warm beige canvas */
  --bg-card: #ffffff;
  /* Pure white card panels */
  --bg-card-hover: #fbfbfa;
  --bg-light: #ffffff;
  --bg-card-light: #ffffff;

  --border: rgba(11, 10, 15, 0.08);
  /* Dark subtle border */
  --border-hover: rgba(110, 71, 255, 0.4);
  --border-light: rgba(11, 10, 15, 0.08);

  --ink: #0b0a0f;
  /* Deep obsidian typography */
  --ink-muted: #5b5866;
  /* Crisp soft slate slate-gray */
  --ink-light: #0b0a0f;
  --ink-light-muted: #5b5866;

  --accent: #6e47ff;
  /* Signature glowing violet remains */
  --accent-glow: rgba(110, 71, 255, 0.08);
  --accent-light: #f3efff;
  --accent-dark: #5a36e2;
  --green: #2a7a4a;

  /* Typography & Spacing Scales */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;

  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4.5rem;
  --space-3xl: 7rem;

  --dur-short: 180ms;
  --dur-medium: 300ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --radius-card: 24px;
  --radius-pill: 100px;
  --radius-input: 12px;

  --z-cursor: 9999;
  --z-nav: 9000;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

/* Tactile Paper Texture Overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 5;
}

section,
header,
footer {
  position: relative;
  z-index: 10;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Custom Follower Cursor */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: calc(var(--z-cursor) - 1);
  transform: translate(-50%, -50%);
  opacity: 0.3;
  transition: width 0.2s, height 0.2s, border-color 0.2s, opacity 0.2s;
}

/* Floating Glassmorphic Nav Pill (Hallmark N5 Archetype) */

/* SCROLL REVEAL STYLES */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

