/* Base styles & theme fallbacks */
:root {
    color-scheme: light;
    --kc-bg: #f9fafb;
    --kc-surface: #ffffff;
    --kc-surface-2: #f3f4f6;
    --kc-text: #111827;
    --kc-muted: #6b7280;
    --kc-border: #e5e7eb;
    --kc-primary: #0f766e;
    --kc-primary-contrast: #ffffff;
    --kc-secondary: #115e59;
    --kc-accent: #f59e0b;
    --kc-success: #16a34a;
    --kc-warning: #f59e0b;
    --kc-danger: #ef4444;
    --kc-info: #0f766e;
    --kc-btn-radius: 12px;
    --kc-radius: 14px;
    --kc-spacing: 16px;
    --kc-container-width: 1200px;
    --kc-font-family: "Inter", system-ui, -apple-system, sans-serif;
    --kc-font-size: 16px;
    --kc-font-weight-heading: 700;
}

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

html {
    font-size: var(--kc-font-size, 16px);
}

body {
    margin: 0;
    font-family: var(--kc-font-family, system-ui, -apple-system, sans-serif);
    color: var(--kc-text, #111827);
    background: var(--kc-bg, #f9fafb);
    line-height: 1.5;
}

img,
svg,
video,
canvas {
    max-width: 100%;
    height: auto;
}

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

button,
input,
select,
textarea {
    font: inherit;
    color: inherit;
}
