/* ─── Shared Base Styles — flin.agency Design ─────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f8fa;
    --bg-card: #ffffff;
    --bg-card-hover: #fafafc;
    --border: #e8e8ed;
    --border-hover: #d0d0d8;
    --text-primary: #1a1a2e;
    --text-secondary: #6b6b80;
    --text-muted: #9e9eb0;
    --accent-purple: #8b5cf6;
    --accent-purple-light: #ede9fe;
    --accent-green: #00d26a;
    --accent-green-light: #e6fbf0;
    --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    --gradient-green: linear-gradient(135deg, #00d26a 0%, #00b85c 100%);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    font-family: var(--font);
    background: var(--bg-secondary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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