/* Wildflover - Base: Variables, Reset, Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ═══════════════════════════════════════
   CSS Variables - Maki (Anime / Cyan-Ice)
   ═══════════════════════════════════════ */
:root {
  --bg-primary: #050a14;
  --bg-secondary: #0a121f;
  --bg-card: rgba(14,22,38,0.72);
  --bg-card-solid: #0e1828;
  --bg-card-hover: rgba(165,243,252,0.08);
  --bg-input: rgba(165,243,252,0.06);
  --bg-glass: rgba(10,18,31,0.7);
  --border-color: rgba(165,243,252,0.10);
  --border-hover: rgba(165,243,252,0.22);
  --text-primary: #f0f9ff;
  --text-secondary: #9fb6d6;
  --text-muted: #5d748f;
  --accent: #22d3ee;
  --accent-hover: #67e8f9;
  --accent-glow: rgba(34,211,238,0.32);
  --accent-soft: rgba(34,211,238,0.10);
  --brand: #38bdf8;
  --brand-hover: #7dd3fc;
  --brand-glow: rgba(56,189,248,0.35);
  --brand-soft: rgba(56,189,248,0.10);
  --ice-1: #ecfeff;
  --ice-2: #a5f3fc;
  --ice-3: #67e8f9;
  --ice-4: #22d3ee;
  --ice-5: #06b6d4;
  --ice-6: #0e7490;
  --ice-deep: #082233;
  --maki-1: #cffafe;
  --maki-2: #67e8f9;
  --maki-3: #06b6d4;
  --maki-4: #0891b2;
  --success: #34d399;
  --error: #f87171;
  --warning: #fbbf24;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 40px var(--accent-glow);
  /* Site-wide transition presets.
     We deliberately avoid `all` — it forces the browser to
     transition every property that changes, including layout-
     heavy ones (width, height, font-size) that nothing here
     intends to animate. Listing the compositor-friendly set
     (color / background / border-color / opacity / transform /
     box-shadow) keeps hover work on the GPU. */
  --transition:
    color 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    opacity 0.18s ease,
    transform 0.18s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.18s ease;
  --transition-fast:
    color 0.12s ease,
    background-color 0.12s ease,
    opacity 0.12s ease,
    transform 0.12s ease;
  --font-main: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* ═══════════════════════════════════════
   Reset & Base
   ═══════════════════════════════════════ */
*, *::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-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  cursor: default;
  -webkit-user-select: none;
  user-select: none;
}

input, textarea, select, [contenteditable] { cursor: text; -webkit-user-select: text; user-select: text; }
button, a, label[for], [role="button"], .btn { cursor: pointer; }

a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-hover); }
img, video { max-width: 100%; display: block; }
::selection { background: var(--accent); color: white; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(186,224,255,0.12); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
