:root {
    --bg: #f9f9f9;
    --text: #1e293b;
    --text-muted: #64748b;
    --accent: #d97706;
    /* amber-600 */
    --accent-hover: #b45309;
    /* amber-700 */
    --border: #f1f5f9;
    --card-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --display-font: 'Outfit', sans-serif;
    --body-font: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--body-font);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
nav {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--display-font);
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--text);
}

.logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-icon.round {
    border-radius: 50%;
    border: 1px solid var(--border);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text);
}

/* Hero Section */
.hero {
    padding: 6rem 0 2rem;
    text-align: center;
    background-color: #f9f9f9;
}

.hero-container.centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4.5rem;
    /* Increased gap as requested */
}

.hero-content {
    max-width: 800px;
}

.hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.character-img {
    display: block;
    width: 100%;
    max-width: 350px;
    height: auto;
    animation: breathe 4s ease-in-out infinite;
    filter: none;
    /* Explicitly remove any color-shifting filters */
}

@keyframes breathe {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}

.display-title {
    font-family: var(--display-font);
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.cta-group {
    display: flex;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(217, 119, 6, 0.2);
}

/* Features Section */
.features {
    padding: 4rem 0 6rem;
    background-color: #fafafa;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: white;
    padding: 3rem;
    border-radius: 2rem;
    border: 1px solid var(--border);
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card .icon {
    width: 48px;
    height: 48px;
    color: var(--accent);
    margin-bottom: 2rem;
}

.feature-card h3 {
    font-family: var(--display-font);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 300;
}

/* Footer */
footer {
    padding: 6rem 0 4rem;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.business-info {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 300;
}

.copyright {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: right;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        padding: 4rem 0;
        text-align: center;
    }

    .hero-container {
        flex-direction: column;
        gap: 3rem;
    }

    .hero-text {
        order: 1;
    }

    .hero-image {
        order: 2;
    }

    .character-img {
        max-width: 280px;
    }

    .display-title {
        font-size: 2.75rem;
    }

    .subtitle {
        margin: 0 auto 3rem;
    }

    .footer-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 3rem;
    }

    .footer-links {
        text-align: center;
    }
}

/* Support Page */
.support-page {
    padding: 6rem 0;
    max-width: 630px;
    margin: 0 auto;
    text-align: center;
}

.support-card {
    background: white;
    padding: 4rem 3rem;
    border-radius: 3rem;
    border: 1px solid var(--border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.04);
    margin-top: 2rem;
}

.support-card h1 {
    font-family: var(--display-font);
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--text);
    letter-spacing: -0.02em;
}

.support-card p {
    color: var(--text-muted);
    font-size: 1.125rem;
    font-weight: 300;
    margin-bottom: 3.5rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 2rem;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    margin-left: 1.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1.5rem 1.75rem;
    border-radius: 2rem;
    border: 1px solid var(--border);
    background: #fcfcfc;
    font-family: inherit;
    font-size: 1.125rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    color: var(--text);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.03);
}

.form-textarea {
    height: 15rem;
    resize: none;
    line-height: 1.7;
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
    cursor: pointer;
    border: none;
}

.success-message {
    display: none;
    padding: 4rem 2rem;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 3rem;
    color: var(--text);
    margin-top: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.04);
}

.back-link {
    display: inline-block;
    margin-bottom: 3rem;
    text-decoration: none;
    color: var(--accent);
    font-weight: 500;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: transform 0.2s;
}

.back-link:hover {
    transform: translateX(-4px);
}

/* Hidden elements */
.hidden {
    display: none;
}