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

:root {
    --primary-gold: #F3BA2F;
    --primary-dark: #0B0E11;
    --secondary-gold: #FFD700;
    --text-light: #FFFFFF;
    --text-gray: #E0E0E0;
    --accent-yellow: #FFC107;
    --bg-dark: #0B0E11;
    --bg-darker: #050708;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(11, 14, 17, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--primary-gold);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 30px;
    width: 30px;
    object-fit: contain;
}

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

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

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

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

.order-btn {
    background-color: var(--primary-gold) !important;
    color: var(--bg-dark) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}
.hero {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: var(--bg-dark);
    position: relative;
    overflow: visible;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://res.cloudinary.com/db4ylpbys/image/upload/v1769068904/a624e373-1cff-4ad2-bb93-8c87fbc05f1b_gsjrse.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15%;
    background: linear-gradient(to bottom, transparent, rgba(11, 14, 17, 0.8), rgba(11, 14, 17, 1));
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-image-top {
    display: none;
}

.hero-top-image {
    display: none;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(243, 186, 47, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 186, 47, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
    background-color: var(--primary-gold);
    color: var(--bg-dark);
}

.btn-tertiary {
    background-color: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.btn-tertiary:hover {
    background-color: var(--primary-gold);
    color: var(--bg-dark);
}

.btn-oval {
    border-radius: 25px;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.order-oval {
    background-color: var(--primary-gold);
    color: var(--bg-dark);
}

.stake-oval {
    background-color: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.2rem;
}

.hero-image {
    position: relative;
    z-index: 2;
    display: none;
    justify-content: center;
    align-items: center;
    height: 600px;
}

.phone-mockup {
    width: 280px;
    height: 580px;
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    border-radius: 40px;
    padding: 12px;
    position: relative;
    animation: float-phone 3s ease-in-out infinite;
}

@keyframes float-phone {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    border-radius: 36px;
    object-fit: cover;
}

/* Coming Soon Section */
.coming-soon {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--bg-darker) 0%, rgba(243, 186, 47, 0.03) 100%);
    position: relative;
}

.coming-soon-content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.coming-soon h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 900;
}

.coming-soon p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.coming-soon-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.coming-soon-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-gold);
    animation: pulse 1.5s ease-in-out infinite;
}

.coming-soon-dots span:nth-child(2) {
    animation-delay: 0.3s;
}

.coming-soon-dots span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Hide content after features */
.features-grid {
    display: none;
}

.services,
.ecosystem,
.specs,
.newsletter,
.order,
.footer {
    display: none;
}
.features {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 4rem 2rem;
}

.features h2,
.services h2,
.ecosystem h2,
.specs h2,
.newsletter h2,
.order h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(243, 186, 47, 0.1) 0%, rgba(243, 186, 47, 0.05) 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--primary-gold);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    background: linear-gradient(135deg, rgba(243, 186, 47, 0.15) 0%, rgba(243, 186, 47, 0.08) 100%);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(243, 186, 47, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Services Section */
.services {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--bg-darker) 0%, rgba(243, 186, 47, 0.05) 100%);
    margin: 4rem 0;
}

.services-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.service-tag {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    color: var(--bg-dark);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Ecosystem Section */
.ecosystem {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 4rem 2rem;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.ecosystem-card {
    background: linear-gradient(135deg, rgba(243, 186, 47, 0.1) 0%, rgba(243, 186, 47, 0.05) 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.ecosystem-card:hover {
    background: linear-gradient(135deg, rgba(243, 186, 47, 0.15) 0%, rgba(243, 186, 47, 0.08) 100%);
    transform: translateY(-8px);
}

.ecosystem-card h3 {
    font-size: 1.4rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.ecosystem-subtitle {
    font-size: 0.9rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
    font-weight: 500;
}

.ecosystem-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Specs Section */
.specs {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--bg-darker) 0%, rgba(243, 186, 47, 0.05) 100%);
    border-radius: 12px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.spec-item {
    text-align: center;
    padding: 1.5rem;
    border: 1px solid var(--primary-gold);
    border-radius: 8px;
    background: rgba(243, 186, 47, 0.05);
}

.spec-item h4 {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.spec-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.spec-detail {
    font-size: 0.85rem;
    color: var(--accent-yellow);
}

/* Newsletter Section */
.newsletter {
    max-width: 800px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(243, 186, 47, 0.15) 0%, rgba(243, 186, 47, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid var(--primary-gold);
}

.newsletter p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--primary-gold);
    border-radius: 8px;
    background: rgba(243, 186, 47, 0.1);
    color: var(--text-light);
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: var(--text-gray);
}

.newsletter-disclaimer {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Order Section */
.order {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    text-align: center;
}

.order-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.order-note {
    color: var(--text-gray);
    margin-top: 2rem;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--primary-gold);
    padding: 3rem 2rem 1rem;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(243, 186, 47, 0.2);
    color: var(--text-gray);
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        margin-top: 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-image {
        height: 400px;
    }

    .phone-mockup {
        width: 200px;
        height: 420px;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .features h2,
    .services h2,
    .ecosystem h2,
    .specs h2,
    .newsletter h2,
    .order h2 {
        font-size: 2rem;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .order-btn {
        display: none;
    }

    .features-grid,
    .ecosystem-grid,
    .specs-grid {
        grid-template-columns: 1fr;
    }

    .services-list {
        gap: 0.5rem;
    }

    .service-tag {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }
}
