:root {
    --app-bg: #f2f2f7;
    --app-surface: #ffffff;
    --app-border: #e5e5ea;
    --app-text: #1c1c1e;
    --app-text-secondary: #8e8e93;
    --app-accent: #ea580c;
    --app-accent-dark: #c2410c;
    --app-radius: 12px;
    --app-radius-sm: 10px;
    --app-shadow: 0 1px 3px rgba(0,0,0,.06);
    --app-header-h: 48px;
    --app-safe-b: env(safe-area-inset-bottom, 0px);
    --app-safe-t: env(safe-area-inset-top, 0px);
    --app-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--app-font);
    font-size: 15px;
    line-height: 1.45;
    color: var(--app-text);
    background: var(--app-bg);
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
