/* ── Reset & Base ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand colors from logo */
    --color-cyan: #00AEEF;
    --color-magenta: #EC008C;
    --color-yellow: #FFF200;
    --color-black: #1a1a1a;

    /* UI colors */
    --color-bg: #ffffff;
    --color-text: #1a1a1a;
    --color-text-light: #666666;
    --color-primary: #00AEEF;
    --color-accent: #EC008C;
    --color-border: #e5e5e5;
    --color-bg-alt: #f7f7f7;
    --color-header: #ffffff;
    --color-header-text: #1a1a1a;
    --color-footer: #1a1a1a;
    --color-footer-text: #aaaaaa;

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Layout */
    --max-width: 1200px;
    --gap: 2rem;
    --radius: 8px;
    --transition: 0.2s ease;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

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

/* ── Container ── */
.taf-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}
