/* ===== Aquia — Design Tokens & Reset ===== */

:root {
    /* App color palette (from Constants.swift) */
    --initial-top: rgb(199, 184, 225);
    --initial-mid: rgb(242, 237, 245);
    --initial-bottom: rgb(230, 199, 210);
    --filled-top: rgb(158, 210, 230);
    --filled-mid: rgb(210, 237, 245);
    --filled-bottom: rgb(173, 225, 237);
    --water: rgba(140, 199, 235, 0.7);

    /* Semantic colors */
    --primary: rgb(158, 210, 230);
    --primary-muted: rgb(199, 184, 225);
    --text: #3a3545;
    --text-secondary: #7a7088;
    --text-tertiary: #a89db8;
    --bg: #f8f6fb;
    --bg-white: #ffffff;
    --card-border: rgba(0, 0, 0, 0.05);
    --border: #e2dde8;
    --border-soft: #eee9f2;
}

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

body {
    font-family: "Outfit", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 200;
    letter-spacing: 0.04em;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--text);
}

img {
    max-width: 100%;
    display: block;
}
