/* =====================================================
   369YAX – Automation & Design
   app-base.css (CLEAN)
   Global reset, typography, color tokens, layout helpers
   ===================================================== */

/* ==========
   RESET / BASE
   ========== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    transition: background 0.25s ease, color 0.25s ease;
}

/* ==========
   COLOR SYSTEM – LIGHT THEME (DEFAULT)
   ========== */

:root {
    --bg-main: #ffffff;
    --bg-alt: #f5f5f7;
    --card-bg: #ffffff;
    --border-soft: #d0d3dd;

    --accent: #d60000;
    --accent-soft: rgba(214, 0, 0, 0.10);

    --text-main: #111111;
    --text-muted: #5f6470;

    --pill-bg: #f0f1f5;
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.08);

    --radius-lg: 18px;
    --radius-pill: 999px;
}

/* ==========
   LAYOUT HELPERS
   ========== */

.container {
    width: min(1120px, 100% - 32px);
    margin-inline: auto;
}
