:root {
    /* Light Theme Colors - Adjusted for Lighter Feel */
    --background: 0 0% 100%;
    --foreground: 0 0% 10%;
    /* Slightly darker for better contrast on light */
    --card: 0 0% 100%;
    --card-foreground: 0 0% 14.5%;
    --popover: 0 0% 100%;
    --popover-foreground: 0 0% 14.5%;
    --primary: 0 0% 20.5%;
    --primary-foreground: 0 0% 98.5%;
    --secondary: 0 0% 98%;
    /* Lighter secondary */
    --secondary-foreground: 0 0% 20.5%;
    --muted: 0 0% 98.5%;
    /* Lighter muted */
    --muted-foreground: 0 0% 40%;
    --accent: 0 0% 98%;
    --accent-foreground: 0 0% 20.5%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98.5%;
    --border: 0 0% 94%;
    /* Lighter border */
    --input: 0 0% 94%;
    --ring: 0 0% 20.5%;

    /* Custom Design Tokens */
    --subtle-accent: 185 32% 60%;
    --highlight-bg: 45 80% 85%;
    /* Lighter Gold/Yellow */

    /* Typography */
    --font-sans: "Raleway", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-heading: "Raleway", sans-serif;

    /* Spacing & Radius */
    --radius: 0.625rem;
    --radius-lg: calc(0.625rem + 4px);
    --radius-sm: calc(0.625rem - 4px);
    --container-padding: 2rem;
    --container-max-width: 1400px;
}



* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: hsl(var(--foreground));
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
}

@media (max-width: 640px) {
    h1 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        word-break: break-word;
        hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
    }

    h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
}

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

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    border: 1px solid hsl(var(--border));
}

.btn-secondary:hover {
    background-color: hsl(var(--secondary));
}

.section {
    padding: 5rem 0;
}

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 3rem;
    background: radial-gradient(circle at top right, hsl(var(--highlight-bg) / 0.3), transparent 50%),
        radial-gradient(circle at bottom left, hsl(var(--subtle-accent) / 0.1), transparent 50%);
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding-top: 5rem;
        padding-bottom: 4rem;
    }
}

.hero-content {
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: hsl(var(--highlight-bg));
    color: hsl(var(--foreground));
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-title {
    margin-bottom: 1.5rem;
    color: hsl(var(--foreground));
}

.hero-description {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.card {
    background-color: hsl(var(--card));
    color: hsl(var(--card-foreground));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    border-color: hsl(var(--highlight-bg));
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background-color: hsl(var(--highlight-bg) / 0.5);
    color: hsl(var(--foreground));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cta-section {
    background-color: hsl(var(--highlight-bg));
    color: hsl(var(--foreground));
    text-align: center;
    border-radius: var(--radius-lg);
    padding: 5rem 2rem;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.01);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.4), transparent 60%);
    pointer-events: none;
}

@media (max-width: 640px) {
    .cta-section {
        padding: 3rem 1.5rem;
    }
}

.form-group {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto 0;
}

@media (max-width: 640px) {
    .form-group {
        flex-direction: column;
        gap: 0.75rem;
    }

    .form-group .btn {
        width: 100%;
    }
}

.input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    border: 1px solid hsl(var(--border));
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-size: 1rem;
    transition: border-color 0.2s;
}

.input:focus {
    outline: none;
    box-shadow: 0 0 0 3px hsl(var(--highlight-bg) / 0.5);
    border-color: hsl(var(--highlight-bg));
}

.footer {
    border-top: 1px solid hsl(var(--border));
    padding: 4rem 0;
    margin-top: 4rem;
    color: hsl(var(--muted-foreground));
}

/* Utilities */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.text-highlight {
    color: hsl(var(--subtle-accent));
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}