/* Font Face Definitions */
@font-face {
    font-family: 'Atlas Grotesk';
    src: url('fonts/AtlasGrotesk/AtlasGrotesk-Regular-190618-Web.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Atlas Grotesk';
    src: url('fonts/AtlasGrotesk/AtlasGrotesk-RegularItalic-190618-Web.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Atlas Grotesk';
    src: url('fonts/AtlasGrotesk/AtlasGrotesk-Medium-190618-Web.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Atlas Grotesk';
    src: url('fonts/AtlasGrotesk/AtlasGrotesk-MediumItalic-190618-Web.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Atlas Grotesk';
    src: url('fonts/AtlasGrotesk/AtlasGrotesk-Semi-190618-Web.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Atlas Grotesk';
    src: url('fonts/AtlasGrotesk/AtlasGrotesk-SemiItalic-190618-Web.woff2') format('woff2');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Atlas Grotesk';
    src: url('fonts/AtlasGrotesk/AtlasGrotesk-Bold-190618-Web.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Atlas Grotesk';
    src: url('fonts/AtlasGrotesk/AtlasGrotesk-BoldItalic-190618-Web.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

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

:root {
    --color-amber-400: oklch(82.8% .189 84.429);
    --color-amber-500: oklch(76.9% .188 70.08);
    --color-amber-600: oklch(66.6% .179 58.318);
    --color-amber-700: oklch(55.5% .163 48.998);
    /* --primary-color: var(--color-amber-600); */
    /* --secondary-color: var(--color-amber-500); */
    --text-dark: #1A1A2E;
    --text-light: #4A4A5C;
    --bg-light: #F8F9FC;
    --bg-white: #FFFFFF;
    --accent-gradient: linear-gradient(135deg, var(--color-amber-400) 0%, var(--color-amber-600) 100%);
    --max-width: 1200px;
}

body {
    font-family: 'Atlas Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-links a:active {
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    color: rgb(168 102 4); 
    font-weight: 400;
    text-decoration: none;
}

a.logo {
 text-decoration: none;
}

footer .logo-text {
    color: white;
}

/* .logo-text {
    font-size: 1.5rem;
    color: white;
} */

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

.cta-button {
    background: var(--accent-gradient);
    border-radius: 0.375rem;
    color: white;
    padding: 0.6rem 1.5rem;
    text-decoration: none;
    /* font-weight: 600; */
    transition: transform 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    cursor: pointer;
    /* box-shadow: 0 10px 30px rgba(255, 179, 0, 0.3); */
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--bg-white);
    /* background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%); */
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.25em;
    padding-bottom: 1.3rem;
    letter-spacing: 0.01em;
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
    /* background: var(--accent-gradient); */
    color: var(--bg-white);
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    text-wrap: balance;
    /* text-shadow: 0 0 5px rgba(0, 0, 0, 0.2); */
    font-family: 'Atlas Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.hero .tagline {
    font-size: 2rem;
    color: var(--bg-white);
    margin-bottom: 2rem;
    font-weight: 300;
    text-wrap: balance;
}

.hero-cta {
    display: inline-flex;
    gap: 1rem;
}

.btn-primary {
    /* background: rgba(255, 255, 255, 0.2); */
    background: var(--accent-gradient);
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    /* background: var(--color-amber-500); */
    /* color: var(--color-amber-600); */
    color: white;
    /* opacity: 0.8; */
    padding: 0.75rem 2rem;
    text-decoration: none;
    /* font-weight: 600; */
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 0.375rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    border: solid white 1px; 
    /* box-shadow: 0 15px 40px rgba(255, 179, 0, 0.4); */
}

.btn-secondary {
    background: transparent;
    color: var(--color-amber-600);
    padding: 1rem 2.5rem;
    border: 2px solid var(--color-amber-600);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--color-amber-600);
    color: white;
    transform: translateY(-1px);
}

/* Feature Sections */
.feature {
    padding: 5rem 2rem;
}

.feature:nth-child(even) {
    background: var(--bg-light);
}

.feature-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    align-items: center;
}

.feature:nth-child(odd) .feature-container {
    direction: rtl;
}

.feature:nth-child(odd) .feature-content {
    direction: ltr;
}

.feature h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
    text-wrap: balance;
    line-height: 1.3em;
}

.feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, oklch(82.8% .189 84.429 / 0.15) 0%, oklch(55.5% .163 48.998 / 0.15) 100%);
    color: var(--color-amber-600);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-wrap: pretty;
}

.screenshot-placeholder {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.screenshot-placeholder:has(img[src]:not([src=""])) {
    background: transparent;
}

.screenshot-placeholder video {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    border: 1px solid #e0e0e0;
}


/* Special Sections */
.deployment-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.deployment-container {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.deployment-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.deployment-card {
    cursor: pointer;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deployment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.deployment-card h3 {
    color: var(--color-amber-600);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-wrap: balance;
    font-weight: normal;
}

.deployment-card p {
    color: var(--text-light);
    line-height: 1.6;
    text-wrap: pretty;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    list-style: none;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-links a:hover {
    color: white;
}

/* Pricing Section */
.pricing {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.pricing-container {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.pricing-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card.featured {
    border-color: var(--color-amber-500);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-amber-600);
}

.price-period {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.plan-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
    text-align: left;
}

.plan-features li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.75rem;
    font-size: 1rem;
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-amber-600);
    font-weight: bold;
    font-size: 1.2rem;
}

.plan-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--color-amber-600);
    color: var(--color-amber-600);
    background: transparent;
    cursor: pointer;
}

.plan-button:hover {
    background: var(--color-amber-600);
    color: white;
    transform: translateY(-2px);
}

.plan-button.primary {
    background: var(--accent-gradient);
    color: white;
    border: none;
}

.plan-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 179, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .hero .tagline {
        font-size: 1.5rem;
    }

    .feature-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature:nth-child(odd) .feature-container {
        direction: ltr;
    }

    .deployment-options {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}