:root {
    --background: #ffffff;
    --accent: #bfa14a;
    --accent-hover: #e6c86a;
    --text-main: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #6b7280;
    --card-bg: #fafafa;
    --card-border: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

body {
    background: var(--background);
    color: var(--text-main);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    min-height: unset;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.logo-img {
    width: 130px;
    height: 130px;
    transition: transform 0.2s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text,
.footer-logo {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a,
.footer-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.2s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .cta-nav {
    background: linear-gradient(135deg, var(--text-main) 0%, var(--accent) 100%);
    color: var(--background);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: all 0.2s ease;
}

.nav-links .cta-nav:hover {
    color: var(--background);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.nav-links .cta-nav::after {
    display: none;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: var(--background);
    text-align: center;
    padding: 0;
    margin-top: 1rem;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-brand {
    color: var(--text-main);
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-top: 0 !important;
    margin-bottom: 0.5rem !important;
    text-align: center;
    background: linear-gradient(135deg, var(--text-main) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-top: 0 !important;
    margin-bottom: 0.5rem !important;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-content p {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-top: 0 !important;
    margin-bottom: 0.5rem !important;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content>*:first-child {
    margin-top: 0 !important;
}

.hero-content>*:last-child {
    margin-bottom: 0 !important;
}

.cta-main,
.cta-form {
    background: linear-gradient(135deg, var(--text-main) 0%, var(--accent) 100%);
    color: var(--background);
    font-weight: 700;
    padding: 1.25rem 3rem;
    border: none;
    border-radius: 3rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-sales {
    background: transparent;
    color: var(--text-main);
    font-weight: 600;
    padding: 1.25rem 3rem;
    border: 2px solid var(--text-main);
    border-radius: 3rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.cta-sales:hover {
    background: var(--text-main);
    color: var(--background);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-main::before,
.cta-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-main:hover::before,
.cta-form:hover::before {
    left: 100%;
}

.cta-main:hover,
.cta-form:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.hero-content .cta-main {
    margin-top: 3rem;
}

/* About Section */
.about {
    background: var(--background);
    color: var(--text-secondary);
    text-align: center;
    padding: 6rem 2rem 4rem 2rem;
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.about h2 {
    color: var(--text-main);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.about p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Features Section */
.features {
    background: var(--background);
    padding: 6rem 2rem 4rem 2rem;
}

.features h2 {
    text-align: center;
    color: var(--text-main);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

.feature-card ul {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
}

.feature-card ul li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-card ul li::before {
    content: '•';
    color: var(--accent);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: left;
}

/* Waitlist Section */
.waitlist {
    background: var(--card-bg);
    color: var(--text-main);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 2rem;
    margin: 4rem auto 2rem auto;
    max-width: 500px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--card-border);
}

.waitlist h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.waitlist p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.waitlist input,
.waitlist select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--card-border);
    border-radius: 1rem;
    font-size: 1rem;
    margin-bottom: 1rem;
    background: var(--background);
    color: var(--text-main);
    transition: all 0.2s ease;
    font-family: inherit;
}

.waitlist input:focus,
.waitlist select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(191, 161, 74, 0.1);
}

.waitlist input::placeholder {
    color: var(--text-muted);
}

.cta-form {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    min-height: 48px;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.cta-buttons {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.cta-sales {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    min-height: 48px;
    border-radius: 8px;
}

/* New Footer Styles */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.footer-logo .logo-img {
    width: 80px;
    height: 80px;
}

.copyright {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-right a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-right a:hover {
    color: var(--text-main);
}

.social-icon {
    width: 24px;
    height: 24px;
}

.footer-left a {
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.footer-left a:hover {
    color: var(--text-main);
}

/* End New Footer Styles */

footer {
    background: #f8f9fa;
    color: var(--text-secondary);
    padding: 3rem 2rem;
    border-top: 1px solid var(--card-border);
}

/* Responsive Design */
@media (max-width: 900px) {
    .feature-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    nav {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 16px;
    }

    header {
        padding: 0.75rem 0;
    }

    nav {
        padding: 0 1rem;
        flex-direction: row;
        gap: 0;
        justify-content: space-between;
    }

    .logo-area {
        justify-content: flex-start;
    }

    .logo-img {
        width: 80px;
        height: 80px;
    }

    .logo-text {
        font-size: 1.8rem;
    }

    .nav-links {
        gap: 0.5rem;
        flex-wrap: nowrap;
        justify-content: flex-end;
    }

    .nav-links a {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .nav-links .cta-nav {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        border-radius: 1.5rem;
    }

    .hero {
        padding: 120px 1rem 3rem 1rem;
        min-height: 85vh;
    }

    .hero-content {
        padding: 0 0.5rem;
    }

    .hero-brand {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }

    .hero-content .cta-main {
        margin-top: 1.5rem;
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .features {
        padding: 3rem 1rem 2rem 1rem;
    }

    .features h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .feature-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .feature-card {
        padding: 1.5rem 1.25rem;
        border-radius: 12px;
    }

    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .feature-card ul {
        margin-left: 0;
        padding-left: 1.25rem;
    }

    .feature-card ul li {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }

    .feature-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .about {
        padding: 3rem 1rem 2rem 1rem;
        font-size: 1rem;
    }

    .about h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .about p {
        line-height: 1.6;
    }

    .waitlist {
        margin: 2rem 1rem 1.5rem 1rem;
        padding: 2rem 1.25rem;
        border-radius: 16px;
    }

    .waitlist h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .waitlist p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .waitlist input,
    .waitlist select {
        width: 100%;
        padding: 1rem 1.25rem;
        font-size: 1rem;
        min-height: 48px;
        border-radius: 8px;
        margin-bottom: 1rem;
    }

    .waitlist input:focus,
    .waitlist select:focus {
        outline: none;
        border-color: var(--accent);
        box-shadow: 0 0 0 3px rgba(191, 161, 74, 0.1);
    }

    .cta-form {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 48px;
        border-radius: 8px;
        margin-top: 0.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .cta-sales {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 48px;
        border-radius: 8px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero-brand {
        font-size: 4rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 2rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    nav {
        padding: 0 0.75rem;
    }

    .logo-img {
        width: 50px;
        height: 50px;
    }

    .logo-text {
        font-size: 1.6rem;
    }

    .nav-links a {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }

    .nav-links .cta-nav {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .hero {
        padding: 110px 0.75rem 2rem 0.75rem;
    }

    .hero-brand {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1.25rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-content .cta-main {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }

    .features {
        padding: 2.5rem 0.75rem 1.5rem 0.75rem;
    }

    .features h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .feature-cards {
        gap: 1rem;
    }

    .feature-card {
        padding: 1.25rem 1rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.875rem;
    }

    .feature-card ul li {
        font-size: 0.9rem;
        margin-bottom: 0.625rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .about {
        padding: 2.5rem 0.75rem 1.5rem 0.75rem;
    }

    .about h2 {
        font-size: 1.6rem;
    }

    .waitlist {
        margin: 1.5rem 0.75rem 1rem 0.75rem;
        padding: 1.5rem 1rem;
    }

    .waitlist h2 {
        font-size: 1.6rem;
    }

    .waitlist input,
    .waitlist select {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .cta-form {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.875rem;
        margin-top: 1.25rem;
    }

    .cta-sales {
        width: 100%;
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
        min-height: 44px;
        border-radius: 8px;
    }

    .footer-container {
        padding: 1.5rem 0.75rem 0.75rem 0.75rem;
    }

    .footer-links {
        gap: 1.25rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding: 0.75rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* Ultra Small Mobile Devices */
@media (max-width: 360px) {
    .hero-brand {
        font-size: 2.2rem;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .nav-links {
        gap: 0.25rem;
    }

    .nav-links a {
        font-size: 0.75rem;
        padding: 0.35rem 0.5rem;
    }

    .nav-links .cta-nav {
        padding: 0.35rem 0.7rem;
        font-size: 0.7rem;
    }

    .feature-card {
        padding: 1rem 0.875rem;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    .feature-card ul li {
        font-size: 0.85rem;
    }

    .waitlist {
        padding: 1.25rem 0.875rem;
    }

    .waitlist input,
    .waitlist select {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 600px) and (orientation: landscape) {
    .hero {
        min-height: 70vh;
        padding: 100px 1rem 2rem 1rem;
    }

    .hero-brand {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .features {
        padding: 2rem 1rem 1.5rem 1rem;
    }

    .about {
        padding: 2rem 1rem 1.5rem 1rem;
    }

    .waitlist {
        margin: 1.5rem 1rem 1rem 1rem;
        padding: 1.5rem 1.25rem;
    }
}

/* Touch-friendly improvements */
@media (max-width: 600px) {

    /* Ensure minimum touch target size */
    .nav-links a,
    .footer-links a,
    .cta-main,
    .cta-form {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Improve form usability */
    .waitlist input,
    .waitlist select {
        -webkit-appearance: none;
        appearance: none;
        border-radius: 8px;
    }

    .waitlist select {
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 1rem center;
        background-size: 1em;
        padding-right: 2.5rem;
    }

    /* Improve scrolling performance */
    .feature-cards {
        -webkit-overflow-scrolling: touch;
    }

    /* Better focus states for accessibility */
    .nav-links a:focus,
    .footer-links a:focus,
    .cta-main:focus,
    .cta-form:focus {
        outline: 2px solid var(--accent);
        outline-offset: 2px;
    }

    /* Prevent zoom on input focus for iOS */
    .waitlist input,
    .waitlist select {
        font-size: 16px;
    }

    /* Better mobile form spacing */
    .waitlist form {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Improve mobile navigation touch targets */
    .nav-links {
        touch-action: manipulation;
    }

    .nav-links a {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    /* Better mobile button feedback */
    .cta-main:active,
    .cta-form:active,
    .nav-links a:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    /* Improve mobile scrolling */
    body {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    /* Better mobile text selection */
    ::selection {
        background: rgba(191, 161, 74, 0.2);
        color: var(--text-main);
    }

    /* Mobile-specific feature card improvements */
    .feature-card {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .feature-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    /* Mobile form validation improvements */
    .waitlist input:invalid,
    .waitlist select:invalid {
        border-color: #ef4444;
    }

    .waitlist input:valid,
    .waitlist select:valid {
        border-color: #10b981;
    }

    /* Mobile loading state improvements */
    .cta-form.loading {
        position: relative;
        overflow: hidden;
    }

    .cta-form.loading::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        animation: loading-shimmer 1.5s infinite;
    }

    @keyframes loading-shimmer {
        0% {
            left: -100%;
        }

        100% {
            left: 100%;
        }
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    /* Account for fixed header */
}

/* Ensure sections have proper spacing for navigation */
section {
    scroll-margin-top: 0 !important;
}

#about {
    scroll-margin-top: 120px;
}

#features {
    scroll-margin-top: 120px;
}

#waitlist {
    scroll-margin-top: 120px;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Success animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Enhanced animations and effects */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out forwards;
}

/* Enhanced feature card animations */
.feature-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.feature-card.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced button states */
.cta-main:active,
.cta-form:active {
    transform: translateY(0) scale(0.98);
}

.cta-main.loading,
.cta-form.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.cta-main.loading::after,
.cta-form.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Enhanced form styling */
.waitlist input:focus,
.waitlist select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(191, 161, 74, 0.1);
    transform: translateY(-1px);
}

.waitlist input:hover,
.waitlist select:hover {
    border-color: var(--accent-hover);
}

/* Enhanced hero section */
.hero-content {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-brand {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-content h1 {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.7s forwards;
}

.hero-subtitle {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.hero-content .cta-main {
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.1s forwards;
}

/* Enhanced navigation */
.nav-links a {
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(191, 161, 74, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-links a:hover::before {
    left: 100%;
}

/* Enhanced logo */
.logo-img {
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(1.1);
}

/* Enhanced feature cards */
.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(191, 161, 74, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Enhanced about section */
.about {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.about.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced waitlist section */
.waitlist {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.waitlist.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced footer */
.footer-links a {
    position: relative;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    transform: translateY(-2px);
}

/* Responsive enhancements */
@media (max-width: 768px) {
    .hero-brand {
        font-size: 3.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .feature-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }
}

/* Print styles */
@media print {

    .hero,
    .features,
    .waitlist {
        page-break-inside: avoid;
    }

    .cta-main,
    .cta-form,
    .nav-links {
        display: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --accent: #000000;
        --text-main: #000000;
        --text-secondary: #000000;
        --card-border: #000000;
    }

    .feature-card {
        border-width: 2px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-content,
    .feature-card,
    .about,
    .waitlist {
        animation: none;
    }
}

main {
    padding-top: 200px !important;
}

html {
    scroll-behavior: auto !important;
}