/* Findzle Go - styles de base */
:root {
    --go-bg: #f4f7fb;
    --go-surface: #ffffff;
    --go-surface-soft: #eef4ff;
    --go-text: #13213a;
    --go-muted: #61708a;
    --go-border: #dbe4f0;
    --go-primary: #2563eb;
    --go-primary-dark: #1d4ed8;
    --go-success: #0f9f6e;
    --go-danger: #d92d20;
    --go-warning: #d97706;
    --go-shadow: 0 18px 50px rgba(28, 55, 90, 0.12);
    --go-radius-lg: 28px;
    --go-radius-md: 18px;
    --go-radius-sm: 12px;
    --go-container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    min-height: 100vh;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    color: var(--go-text);
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 32rem),
        var(--go-bg);
    line-height: 1.55;
}

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

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

a {
    color: inherit;
}

[hidden] {
    display: none !important;
}

.go-main {
    min-height: calc(100vh - 160px);
}

.go-container {
    width: min(calc(100% - 32px), var(--go-container));
    margin: 0 auto;
}

.go-card {
    background: var(--go-surface);
    border: 1px solid var(--go-border);
    border-radius: var(--go-radius-lg);
    box-shadow: var(--go-shadow);
}

.go-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (max-width: 720px) {
    .go-container {
        width: min(calc(100% - 20px), var(--go-container));
    }
}
