* {
  -webkit-tap-highlight-color: transparent;
}

/* ===== DESIGN TOKENS ===== */
:root {
    /* Colors */
    --color-text-primary: #121212;
    --color-text-secondary: #444444;
    --color-text-tertiary: #666666;
    --color-text-muted: #999999;
    --color-bg-page: #ffffff;
    --color-bg-subtle: #f5f5f5;
    --color-border: #f0f0f0;

    /* Typography — sizes */
    --font-size-xs: 11px;
    --font-size-sm: 12px;
    --font-size-base: 13px;
    --font-size-md: 14px;
    --font-size-body: 16px;
    --font-size-lg: 24px;
    --font-size-h2: 28px;
    --font-size-h1: 42px;

    /* Typography — weights */
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-full: 100px;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 36px;
    --space-3xl: 48px;
    --space-4xl: 70px;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--color-bg-page);
    color: var(--color-text-primary);
    line-height: 1.6;
}

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

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