@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap");

:root {
    --background: 0 0% 99%;
    --foreground: 215 25% 14%;
    --card: 0 0% 100%;
    --card-foreground: 215 25% 14%;
    --primary: 215 45% 22%;
    --primary-foreground: 45 30% 96%;
    --secondary: 40 18% 94%;
    --secondary-foreground: 215 25% 20%;
    --muted: 220 10% 95%;
    --muted-foreground: 215 14% 34%;
    --accent: 42 65% 50%;
    --accent-strong: 38 85% 28%;
    --accent-on-dark: 44 72% 66%;
    --accent-foreground: 215 45% 14%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;
    --border: 220 12% 90%;
    --input: 220 12% 90%;
    --ring: 215 45% 22%;
    --font-heading: "Raleway", "Helvetica Neue", sans-serif;
    --font-body: "Source Sans 3", "Segoe UI", sans-serif;
}

* {
    border-color: hsl(var(--border));
}

body {
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

.font-heading {
    font-family: var(--font-heading);
}

.font-body {
    font-family: var(--font-body);
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 0.375rem;
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 20px rgba(15, 29, 48, 0.2);
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background-color: rgba(22, 47, 79, 0.9);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 0.375rem;
    border: 2px solid hsl(var(--primary));
    color: hsl(var(--primary));
    background-color: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.bg-background { background-color: hsl(var(--background)) !important; }
.bg-card { background-color: hsl(var(--card)) !important; }
.bg-muted { background-color: hsl(var(--muted)) !important; }
.bg-primary { background-color: hsl(var(--primary)) !important; }
.bg-accent { background-color: hsl(var(--accent)) !important; }
.bg-accent-on-dark { background-color: hsl(var(--accent-on-dark)) !important; }
.bg-foreground { background-color: hsl(var(--foreground)) !important; }

.text-foreground { color: hsl(var(--foreground)) !important; }
.text-primary { color: hsl(var(--primary)) !important; }
.text-primary-foreground { color: hsl(var(--primary-foreground)) !important; }
.text-muted-foreground { color: hsl(var(--muted-foreground)) !important; }
.text-accent { color: hsl(var(--accent-strong)) !important; }
.text-accent-on-dark { color: hsl(var(--accent-on-dark)) !important; }
.text-accent-foreground { color: hsl(var(--accent-foreground)) !important; }
.text-background { color: hsl(var(--background)) !important; }

.border-border { border-color: hsl(var(--border)) !important; }
.border-accent { border-color: hsl(var(--accent-strong)) !important; }
.border-accent-on-dark { border-color: hsl(var(--accent-on-dark)) !important; }

.bg-primary\/20 { background-color: hsla(215, 45%, 22%, 0.2) !important; }
.bg-primary\/30 { background-color: hsla(215, 45%, 22%, 0.3) !important; }
.bg-primary\/90 { background-color: hsla(215, 45%, 22%, 0.9) !important; }
.bg-accent\/10 { background-color: hsla(42, 65%, 50%, 0.1) !important; }
.bg-accent\/90 { background-color: hsla(42, 65%, 50%, 0.9) !important; }
.bg-muted\/50 { background-color: hsla(220, 10%, 95%, 0.5) !important; }
.bg-background\/60 { background-color: hsla(0, 0%, 99%, 0.6) !important; }

.text-primary-foreground\/60 { color: hsla(45, 30%, 96%, 0.78) !important; }
.text-primary-foreground\/70 { color: hsla(45, 30%, 96%, 0.88) !important; }
.text-background\/40 { color: hsla(0, 0%, 99%, 0.74) !important; }
.text-background\/60 { color: hsla(0, 0%, 99%, 0.84) !important; }
.text-background\/70 { color: hsla(0, 0%, 99%, 0.92) !important; }
.text-accent\/30 { color: hsla(40, 78%, 34%, 0.3) !important; }

.border-background\/10 { border-color: hsla(0, 0%, 99%, 0.1) !important; }

.hover\:text-accent:hover { color: hsl(var(--accent-strong)) !important; }
.hover\:text-primary:hover { color: hsl(var(--primary)) !important; }
.hover\:text-foreground:hover { color: hsl(var(--foreground)) !important; }
.hover\:bg-accent\/90:hover { background-color: hsla(42, 65%, 50%, 0.9) !important; }
.hover\:bg-background\/60:hover { background-color: hsla(0, 0%, 99%, 0.6) !important; }

[data-cookie-banner] { position: fixed; left: 0; right: 0; bottom: 0; z-index: 100; }

.cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 2.5rem;
    background: hsl(var(--accent-foreground));
    color: hsl(var(--accent));
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid transparent;
    transition: all 0.25s ease;
}

.cta-primary:hover {
    background: rgba(17, 33, 52, 0.92);
}

.cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 2.5rem;
    border: 2px solid rgba(17, 33, 52, 0.4);
    color: hsl(var(--accent-foreground));
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.875rem;
    transition: all 0.25s ease;
}

.cta-outline:hover {
    background: rgba(17, 33, 52, 0.1);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-enter {
    animation: heroEnter 0.8s ease both;
}

@keyframes heroEnter {
    from {
        opacity: 0;
        transform: translateX(-28px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
